Add TapeGenerator source code and EXE package with assets.
Include QRdoubletape scripts, packaged executables, and code_ims/QRTape resources for running the tape generator. Co-authored-by: Cursor <cursoragent@cursor.com>
@@ -0,0 +1,352 @@
|
|||||||
|
from concurrent.futures import ThreadPoolExecutor
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
import threading
|
||||||
|
import tkinter as tk
|
||||||
|
from tkinter import messagebox
|
||||||
|
|
||||||
|
|
||||||
|
def get_app_dir():
|
||||||
|
if getattr(sys, 'frozen', False):
|
||||||
|
return os.path.dirname(os.path.abspath(sys.executable))
|
||||||
|
return os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
|
|
||||||
|
# 定义常量
|
||||||
|
i = 1
|
||||||
|
j = 0
|
||||||
|
scale_count = 0
|
||||||
|
# 489300
|
||||||
|
n = 700
|
||||||
|
m2cm = 100
|
||||||
|
Segments = int((n*m2cm//2)/5000) + 1
|
||||||
|
|
||||||
|
APP_DIR = get_app_dir()
|
||||||
|
SOURCE_HTML_PATH = os.path.join(APP_DIR, 'code_ims')
|
||||||
|
OUTPUT_FOLDER = os.path.join(APP_DIR, 'QRTape')
|
||||||
|
|
||||||
|
# 修改二维码的SVG值
|
||||||
|
def data_scaling(svg_content):
|
||||||
|
replacements = {
|
||||||
|
"40": "7.092198581560284",
|
||||||
|
"80": "14.18439716312057",
|
||||||
|
"120": "21.27659574468085",
|
||||||
|
"160": "28.36879432624113",
|
||||||
|
"200": "35.46099290780142",
|
||||||
|
"240": "42.55319148936170",
|
||||||
|
"280": "49.64539007092199",
|
||||||
|
"320": "56.73758865248227",
|
||||||
|
"400": "56.73758865248227",
|
||||||
|
"420": "56.73758865248227"
|
||||||
|
}
|
||||||
|
|
||||||
|
# 替换函数
|
||||||
|
def replace_text(text):
|
||||||
|
for old, new in replacements.items():
|
||||||
|
text = re.sub(r'\b' + re.escape(old) + r'\b', new, text)
|
||||||
|
return text
|
||||||
|
|
||||||
|
return replace_text(svg_content)
|
||||||
|
|
||||||
|
|
||||||
|
# 将svg与二维码的起点对齐
|
||||||
|
subtract_value = 7.092198581560284
|
||||||
|
# 定义正则表达式模式,用于匹配 x 和 y 属性
|
||||||
|
pattern = re.compile(r'(x|y)="\d+(\.\d+)?"')
|
||||||
|
|
||||||
|
|
||||||
|
# 定义一个替换函数,用于减去指定值
|
||||||
|
def subtract_coords(match):
|
||||||
|
attr = match.group(1)
|
||||||
|
value = float(match.group(0).split('=')[1].strip('"'))
|
||||||
|
new_value = value - subtract_value
|
||||||
|
return f'{attr}="{new_value:.4f}"'
|
||||||
|
|
||||||
|
|
||||||
|
# 获取二维码的 SVG 数据
|
||||||
|
def get_qr_code_svg(html_file):
|
||||||
|
with open(html_file, 'r', encoding='utf-8') as file:
|
||||||
|
html_content = file.read()
|
||||||
|
soup = BeautifulSoup(html_content, 'html.parser')
|
||||||
|
for text_tag in soup.find_all('text'):
|
||||||
|
text_tag.decompose()
|
||||||
|
svgs = soup.find_all('svg')
|
||||||
|
all_svg_content = ""
|
||||||
|
for svg in svgs:
|
||||||
|
all_svg_content += str(svg) + "\n"
|
||||||
|
return all_svg_content
|
||||||
|
|
||||||
|
|
||||||
|
def save_svg_to_html(svg_content, output_path, segment, length):
|
||||||
|
"""将 SVG 内容保存到 HTML 文件中"""
|
||||||
|
# if segment == Segments:
|
||||||
|
tick_mark_html = ""
|
||||||
|
tick_interval = 189.1252955082742 # 每隔189像素一个刻度线
|
||||||
|
total_width = n*(n-1)*75.65011820330969 # outer-container 的宽度
|
||||||
|
outer_container_width = length*56.73758865248227 + (length - 1)*18.91252955082742 + 18.91252955082742
|
||||||
|
for i in range(0, int(total_width // tick_interval) + 1):
|
||||||
|
scale_line_left = i * 189.1252955082742
|
||||||
|
if scale_line_left <= outer_container_width:
|
||||||
|
tick_position = i * tick_interval
|
||||||
|
# 刻度线
|
||||||
|
tick_mark_html += f'<div class="line" style="left: {tick_position}px;"></div>\n'
|
||||||
|
tick_label = int(int(require_length_start * m2cm) + 5 * i + 10000 * (segment - 1))
|
||||||
|
# 刻度数
|
||||||
|
tick_mark_html += f'<div class="scale-value" style="left: {tick_position + 3}px;">{tick_label}</div>\n'
|
||||||
|
|
||||||
|
html_content = f"""
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<style>
|
||||||
|
.outer-container1 {{
|
||||||
|
border-top: 2px solid black; /* 上边框 */
|
||||||
|
border-right: 2px solid black; /* 右边框 */
|
||||||
|
border-left: 6px solid black; /* 左边框加粗 */
|
||||||
|
border-bottom: 6px solid black; /* 下边框加粗 */
|
||||||
|
display: flex;
|
||||||
|
justify-content: center; /* 居中对齐内容 */
|
||||||
|
align-items: center; /* 居中对齐内容 */
|
||||||
|
margin: 0px; /* 可选:外边距以确保大框与页面其他部分之间有距离 */
|
||||||
|
position: absolute; /* 使用绝对定位 */
|
||||||
|
top: 10%; /* 从页面顶部 % 的位置开始 */
|
||||||
|
left: 2%; /* 从页面左侧 % 的位置开始 */
|
||||||
|
# width: {n*(n-1)/2/Segments*56.73758865248227 + (n*(n-1)/2/Segments-1)*18.91252955082742 + 18.91252955082742}px; /* 显式设置大框的宽度 */
|
||||||
|
width: {outer_container_width}px; /* 显式设置大框的宽度 */
|
||||||
|
height: 169.4167px; /* 显式设置大框的高度 */
|
||||||
|
}}
|
||||||
|
.grid-container1 {{
|
||||||
|
display: grid;
|
||||||
|
position: absolute;
|
||||||
|
grid-template-columns: repeat({length}, 56.73758865248227px);
|
||||||
|
grid-template-rows: repeat(2, 56.73758865248227px);
|
||||||
|
grid-gap: 18.91252955082742px 18.91252955082742px;
|
||||||
|
padding: 0px;
|
||||||
|
left: 9.456264775413712px;
|
||||||
|
top: 18.91252955082742px;
|
||||||
|
}}
|
||||||
|
.line {{
|
||||||
|
position: absolute;
|
||||||
|
width: 2px; /* 刻度线的宽度 */
|
||||||
|
height: 10px; /* 刻度线的高度 */
|
||||||
|
background-color: black; /* 刻度线的颜色 */
|
||||||
|
bottom: 0; /* 将刻度线放置在容器的底部 */
|
||||||
|
}}
|
||||||
|
.scale-value {{
|
||||||
|
position: absolute;
|
||||||
|
bottom: -1px; /* 将数字放置在刻度线的上方 */
|
||||||
|
font-size: 12px; /* 字体大小 */
|
||||||
|
color: black; /* 字体颜色 */
|
||||||
|
# left: 0; /* 设置初始 left 属性,稍后会在每个数字上覆盖 */
|
||||||
|
transform: translateX(45%); /* 水平居中对齐数字 */
|
||||||
|
}}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="outer-container1">
|
||||||
|
<div class="grid-container1" id="outerContainer">
|
||||||
|
{svg_content}
|
||||||
|
</div>
|
||||||
|
{tick_mark_html}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
"""
|
||||||
|
with open(output_path, 'w', encoding='utf-8') as file:
|
||||||
|
file.write(html_content)
|
||||||
|
print(f"html 文件已保存至" + output_path)
|
||||||
|
|
||||||
|
|
||||||
|
def process_segment(segment_num, result_dict, output_path):
|
||||||
|
"""处理单个段的二维码生成"""
|
||||||
|
all_scaled_svg_content = ""
|
||||||
|
count = 0
|
||||||
|
segment_size = len(result_dict[f"result_{segment_num}_1"])
|
||||||
|
|
||||||
|
for k in range(1, 3): # 处理两排
|
||||||
|
for j in range(segment_size):
|
||||||
|
html_file = os.path.join(SOURCE_HTML_PATH, f'im{result_dict[f"result_{segment_num}_{k}"][j]}.html')
|
||||||
|
svg_contents = get_qr_code_svg(html_file)
|
||||||
|
scaled_svg_content = data_scaling(svg_contents)
|
||||||
|
updated_svg_content = pattern.sub(subtract_coords, scaled_svg_content)
|
||||||
|
all_scaled_svg_content += updated_svg_content
|
||||||
|
count += 1
|
||||||
|
|
||||||
|
save_svg_to_html(all_scaled_svg_content, output_path, segment_num, len(result_dict[f"result_{segment_num}_{k}"]))
|
||||||
|
print(f"码带段{segment_num}处理完成")
|
||||||
|
|
||||||
|
|
||||||
|
def create_html_with_qrcodes(output_path, segments = Segments):
|
||||||
|
try:
|
||||||
|
# result_all代表700个码生成的码带的所有ID:1,2,1,3,...,699,700;
|
||||||
|
result_all = []
|
||||||
|
# result_all_1代表result_all的第一排码ID
|
||||||
|
result_all_1 = []
|
||||||
|
# result_all_2代表result_all的第二排码ID
|
||||||
|
result_all_2 = []
|
||||||
|
result_dict = {}
|
||||||
|
for i in range(1, segments + 1):
|
||||||
|
# result_dict表示一个 包含多个列表的字典。例如:
|
||||||
|
# "result_1_1": [1, 2, 3], # 第一段,第一排码
|
||||||
|
# "result_1_2": [7, 8, 9], # 第一段,第二排码
|
||||||
|
# "result_2_1": [4, 5], # 第二段,第一排码
|
||||||
|
# "result_2_2": [10, 11] # 第二段,第二排码
|
||||||
|
result_dict[f"result_{i}_1"] = []
|
||||||
|
result_dict[f"result_{i}_2"] = []
|
||||||
|
|
||||||
|
global scale_count
|
||||||
|
for i in range(1, n+1):
|
||||||
|
for j in range(i+1, n+1):
|
||||||
|
result_all.append(i)
|
||||||
|
result_all.append(j)
|
||||||
|
|
||||||
|
for i in range(0, len(result_all)):
|
||||||
|
if(i < n*(n-1) // 2):
|
||||||
|
result_all_1.append(result_all[i])
|
||||||
|
else:
|
||||||
|
result_all_2.append(result_all[i])
|
||||||
|
|
||||||
|
for i in range(0, segments):
|
||||||
|
for j in range(int(require_length_start * m2cm // 2), 5000 + int(require_length_start * m2cm // 2)):
|
||||||
|
j = j + 5000 * i
|
||||||
|
if(j >= len(result_all_1) or j >= require_length_end * m2cm // 2):
|
||||||
|
break
|
||||||
|
result_dict[f"result_{i+1}_1"].append(result_all_1[j])
|
||||||
|
result_dict[f"result_{i+1}_2"].append(result_all_2[j])
|
||||||
|
|
||||||
|
# for i in range(1, segments + 1):
|
||||||
|
# print(f"第{i}段第1排:" + f" length:" + str(len(result_dict[f"result_{i}_1"])))
|
||||||
|
# print(f"第{i}段第2排:" + f" length:" + str(len(result_dict[f"result_{i}_2"])))
|
||||||
|
|
||||||
|
start_time = time.perf_counter()
|
||||||
|
print("开始处理,请稍等...")
|
||||||
|
with ThreadPoolExecutor(max_workers=min(segments, os.cpu_count() * 2)) as executor:
|
||||||
|
futures = []
|
||||||
|
for i in range(1, segments + 1):
|
||||||
|
if len(result_dict[f"result_{i}_1"]) == 0 :
|
||||||
|
continue
|
||||||
|
future = executor.submit(
|
||||||
|
process_segment,
|
||||||
|
i,
|
||||||
|
result_dict,
|
||||||
|
output_path
|
||||||
|
)
|
||||||
|
futures.append(future)
|
||||||
|
|
||||||
|
# 等待所有任务完成
|
||||||
|
for future in futures:
|
||||||
|
future.result()
|
||||||
|
|
||||||
|
print("所有码带段处理完成")
|
||||||
|
end_time = time.perf_counter()
|
||||||
|
elapsed_time = (end_time - start_time) * 1000
|
||||||
|
print(f"段落处理执行耗时: {elapsed_time:.4f} 毫秒")
|
||||||
|
except Exception as e:
|
||||||
|
# 捕获生成码带时的错误
|
||||||
|
print(f"生成码带时发生错误: {str(e)}")
|
||||||
|
|
||||||
|
def run_gui():
|
||||||
|
def on_generate():
|
||||||
|
try:
|
||||||
|
global require_length_start, require_length_end
|
||||||
|
# 获取用户输入的码带长度
|
||||||
|
require_length_start = float(entry_start.get())
|
||||||
|
require_length_end = float(entry_end.get())
|
||||||
|
|
||||||
|
if len(str(require_length_start).split('.')[1]) > 2 or len(str(require_length_end).split('.')[1]) > 2:
|
||||||
|
raise ValueError("最多保留小数点后两位,请重新输入!")
|
||||||
|
if require_length_start < 0:
|
||||||
|
raise ValueError("码带起点必须大于或等于零")
|
||||||
|
if require_length_end < 0:
|
||||||
|
raise ValueError("码带终点必须大于零")
|
||||||
|
if require_length_end >= 4800:
|
||||||
|
raise ValueError("码带终点必须小于或等于4800")
|
||||||
|
if require_length_end < require_length_start:
|
||||||
|
raise ValueError("码带终点必须大于起点")
|
||||||
|
|
||||||
|
|
||||||
|
output_html_path = os.path.normpath(OUTPUT_FOLDER)
|
||||||
|
if not os.path.exists(output_html_path):
|
||||||
|
os.makedirs(output_html_path)
|
||||||
|
file_name = f"{require_length_start}_{require_length_end}.html"
|
||||||
|
OUTPUT_HTML_PATH = os.path.normpath(os.path.join(output_html_path, file_name))
|
||||||
|
|
||||||
|
if not os.path.exists(output_html_path):
|
||||||
|
messagebox.showerror("错误", f"输出文件夹路径不存在: {output_html_path}")
|
||||||
|
return
|
||||||
|
|
||||||
|
if not os.path.exists(SOURCE_HTML_PATH):
|
||||||
|
messagebox.showerror("错误", f"请将 code_ims 文件夹放在程序同一目录下:\n{SOURCE_HTML_PATH}")
|
||||||
|
return
|
||||||
|
|
||||||
|
def show_open_folder_button():
|
||||||
|
last_output_dir["path"] = output_html_path
|
||||||
|
if not btn_open.winfo_ismapped():
|
||||||
|
btn_open.pack(pady=5)
|
||||||
|
|
||||||
|
def show_loading_window():
|
||||||
|
loading_window = tk.Toplevel(root)
|
||||||
|
loading_window.title("生成码带")
|
||||||
|
loading_window.geometry("300x100")
|
||||||
|
label = tk.Label(loading_window, text="正在生成码带中,请稍等......", font=("Arial", 14))
|
||||||
|
label.pack(pady=30)
|
||||||
|
loading_window.update_idletasks()
|
||||||
|
create_html_with_qrcodes(OUTPUT_HTML_PATH)
|
||||||
|
loading_window.destroy()
|
||||||
|
root.after(0, show_open_folder_button)
|
||||||
|
messagebox.showinfo("成功", "码带生成成功,文件已保存至程序目录下QRTape文件夹")
|
||||||
|
threading.Thread(target=show_loading_window, daemon=True).start()
|
||||||
|
except ValueError as e:
|
||||||
|
# 如果输入的长度无效,弹出错误提示框
|
||||||
|
messagebox.showerror("错误", f"输入的码带长度无效: {str(e)}")
|
||||||
|
except Exception as e:
|
||||||
|
# 其他异常处理
|
||||||
|
messagebox.showerror("错误", f"发生错误: {str(e)}")
|
||||||
|
|
||||||
|
last_output_dir = {"path": None}
|
||||||
|
|
||||||
|
def on_open_folder():
|
||||||
|
folder_path = last_output_dir["path"]
|
||||||
|
if not folder_path or not os.path.exists(folder_path):
|
||||||
|
messagebox.showerror("错误", "还没有生成码带,或文件夹不存在")
|
||||||
|
return
|
||||||
|
os.startfile(folder_path)
|
||||||
|
|
||||||
|
# 创建主窗口
|
||||||
|
root = tk.Tk()
|
||||||
|
root.title("新码带生成器")
|
||||||
|
|
||||||
|
root.geometry("300x300")
|
||||||
|
|
||||||
|
label_start = tk.Label(root, text="请输入码带起点(m):", font=("Arial", 14))
|
||||||
|
label_start.pack(padx=10, pady=5)
|
||||||
|
|
||||||
|
# 输入框:输入码带起点
|
||||||
|
entry_start = tk.Entry(root, width=10, font=("Arial", 14))
|
||||||
|
entry_start.pack(padx=10, pady=5)
|
||||||
|
|
||||||
|
# 标签:提示输入码带终点
|
||||||
|
label_end = tk.Label(root, text="请输入码带终点(m):", font=("Arial", 14))
|
||||||
|
label_end.pack(padx=10, pady=5)
|
||||||
|
|
||||||
|
# 输入框:输入码带终点
|
||||||
|
entry_end = tk.Entry(root, width=10, font=("Arial", 14))
|
||||||
|
entry_end.pack(padx=10, pady=5)
|
||||||
|
|
||||||
|
# 按钮:点击生成码带
|
||||||
|
btn_generate = tk.Button(root, text="Click to Generate", command=on_generate, font=("Arial", 15))
|
||||||
|
btn_generate.pack(pady=20)
|
||||||
|
|
||||||
|
btn_open = tk.Button(root, text="打开生成文件夹", command=on_open_folder, font=("Arial", 14))
|
||||||
|
|
||||||
|
# 运行GUI
|
||||||
|
root.mainloop()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
run_gui()
|
||||||
@@ -0,0 +1,427 @@
|
|||||||
|
from concurrent.futures import ThreadPoolExecutor
|
||||||
|
import math
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
import threading
|
||||||
|
import tkinter as tk
|
||||||
|
from tkinter import messagebox
|
||||||
|
|
||||||
|
|
||||||
|
# 这个是旧码带生成。组合顺序不变:1,2, 1,3, 1,4, ...
|
||||||
|
# 码带实际长度只由输入的起点、终点决定,码本大小按终点自动计算
|
||||||
|
|
||||||
|
def get_app_dir():
|
||||||
|
if getattr(sys, 'frozen', False):
|
||||||
|
return os.path.dirname(os.path.abspath(sys.executable))
|
||||||
|
return os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
|
|
||||||
|
# 定义常量
|
||||||
|
i = 1
|
||||||
|
j = 0
|
||||||
|
scale_count = 0
|
||||||
|
m2cm = 100
|
||||||
|
APP_DIR = get_app_dir()
|
||||||
|
HTML_FOLDER = os.path.join(APP_DIR, 'code_ims')
|
||||||
|
OUTPUT_FOLDER = os.path.join(APP_DIR, 'QRTape')
|
||||||
|
|
||||||
|
# 每个码的 SVG 只解析、缩放一次
|
||||||
|
_processed_svg_cache = {}
|
||||||
|
|
||||||
|
# 修改二维码的SVG值
|
||||||
|
def data_scaling(svg_content):
|
||||||
|
replacements = {
|
||||||
|
"40": "7.092198581560284",
|
||||||
|
"80": "14.18439716312057",
|
||||||
|
"120": "21.27659574468085",
|
||||||
|
"160": "28.36879432624113",
|
||||||
|
"200": "35.46099290780142",
|
||||||
|
"240": "42.55319148936170",
|
||||||
|
"280": "49.64539007092199",
|
||||||
|
"320": "56.73758865248227",
|
||||||
|
"400": "56.73758865248227",
|
||||||
|
"420": "56.73758865248227"
|
||||||
|
}
|
||||||
|
|
||||||
|
# 替换函数
|
||||||
|
def replace_text(text):
|
||||||
|
for old, new in replacements.items():
|
||||||
|
text = re.sub(r'\b' + re.escape(old) + r'\b', new, text)
|
||||||
|
return text
|
||||||
|
|
||||||
|
return replace_text(svg_content)
|
||||||
|
|
||||||
|
|
||||||
|
# 将svg与二维码的起点对齐
|
||||||
|
subtract_value = 7.092198581560284
|
||||||
|
# 定义正则表达式模式,用于匹配 x 和 y 属性
|
||||||
|
pattern = re.compile(r'(x|y)="\d+(\.\d+)?"')
|
||||||
|
|
||||||
|
|
||||||
|
# 定义一个替换函数,用于减去指定值
|
||||||
|
def subtract_coords(match):
|
||||||
|
attr = match.group(1)
|
||||||
|
value = float(match.group(0).split('=')[1].strip('"'))
|
||||||
|
new_value = value - subtract_value
|
||||||
|
return f'{attr}="{new_value:.4f}"'
|
||||||
|
|
||||||
|
|
||||||
|
# 获取二维码的 SVG 数据
|
||||||
|
def get_qr_code_svg(html_file):
|
||||||
|
with open(html_file, 'r', encoding='utf-8') as file:
|
||||||
|
html_content = file.read()
|
||||||
|
soup = BeautifulSoup(html_content, 'html.parser')
|
||||||
|
for text_tag in soup.find_all('text'):
|
||||||
|
text_tag.decompose()
|
||||||
|
svgs = soup.find_all('svg')
|
||||||
|
all_svg_content = ""
|
||||||
|
for svg in svgs:
|
||||||
|
all_svg_content += str(svg) + "\n"
|
||||||
|
return all_svg_content
|
||||||
|
|
||||||
|
|
||||||
|
def get_processed_svg(code_id):
|
||||||
|
"""同一编号的码只读取并处理一次。"""
|
||||||
|
cached = _processed_svg_cache.get(code_id)
|
||||||
|
if cached is not None:
|
||||||
|
return cached
|
||||||
|
html_file = os.path.join(HTML_FOLDER, f'im{code_id}.html')
|
||||||
|
svg_contents = get_qr_code_svg(html_file)
|
||||||
|
scaled_svg_content = data_scaling(svg_contents)
|
||||||
|
updated_svg_content = pattern.sub(subtract_coords, scaled_svg_content)
|
||||||
|
_processed_svg_cache[code_id] = updated_svg_content
|
||||||
|
return updated_svg_content
|
||||||
|
|
||||||
|
|
||||||
|
def save_svg_to_html(svg_content, output_path, length):
|
||||||
|
"""将 SVG 内容保存到 HTML 文件中"""
|
||||||
|
tick_mark_html = []
|
||||||
|
tick_interval = 189.1252955082742 # 每隔188像素一个刻度线
|
||||||
|
outer_container_width = length * 56.73758865248227 + (length - 1) * 18.91252955082742 + 18.91252955082742
|
||||||
|
max_ticks = int(outer_container_width // tick_interval) + 1
|
||||||
|
start_cm = int(require_length_start * m2cm)
|
||||||
|
for i in range(0, max_ticks):
|
||||||
|
tick_position = i * tick_interval
|
||||||
|
if tick_position <= outer_container_width:
|
||||||
|
tick_mark_html.append(f'<div class="line" style="left: {tick_position}px;"></div>\n')
|
||||||
|
tick_label = start_cm + 5 * i
|
||||||
|
tick_mark_html.append(f'<div class="scale-value" style="left: {tick_position + 3}px;">{tick_label}</div>\n')
|
||||||
|
|
||||||
|
html_content = f"""
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<style>
|
||||||
|
.outer-container1 {{
|
||||||
|
border-top: 2px solid black; /* 上边框 */
|
||||||
|
border-right: 2px solid black; /* 右边框 */
|
||||||
|
border-left: 6px solid black; /* 左边框加粗 */
|
||||||
|
border-bottom: 6px solid black; /* 下边框加粗 */
|
||||||
|
display: flex;
|
||||||
|
justify-content: center; /* 居中对齐内容 */
|
||||||
|
align-items: center; /* 居中对齐内容 */
|
||||||
|
margin: 0px; /* 可选:外边距以确保大框与页面其他部分之间有距离 */
|
||||||
|
position: absolute; /* 使用绝对定位 */
|
||||||
|
top: 10%; /* 从页面顶部 % 的位置开始 */
|
||||||
|
left: 2%; /* 从页面左侧 % 的位置开始 */
|
||||||
|
width: {outer_container_width}px; /* 显式设置大框的宽度 */
|
||||||
|
height: 169.4167px; /* 显式设置大框的高度 */
|
||||||
|
}}
|
||||||
|
.grid-container1 {{
|
||||||
|
display: grid;
|
||||||
|
position: absolute;
|
||||||
|
grid-template-columns: repeat({length}, 56.73758865248227px);
|
||||||
|
grid-template-rows: repeat(2, 56.73758865248227px);
|
||||||
|
grid-gap: 18.91252955082742px 18.91252955082742px;
|
||||||
|
padding: 0px;
|
||||||
|
left: 9.456264775413712px;
|
||||||
|
top: 18.91252955082742px;
|
||||||
|
}}
|
||||||
|
.line {{
|
||||||
|
position: absolute;
|
||||||
|
width: 2px; /* 刻度线的宽度 */
|
||||||
|
height: 10px; /* 刻度线的高度 */
|
||||||
|
background-color: black; /* 刻度线的颜色 */
|
||||||
|
bottom: 0; /* 将刻度线放置在容器的底部 */
|
||||||
|
}}
|
||||||
|
.scale-value {{
|
||||||
|
position: absolute;
|
||||||
|
bottom: -1px; /* 将数字放置在刻度线的上方 */
|
||||||
|
font-size: 12px; /* 字体大小 */
|
||||||
|
color: black; /* 字体颜色 */
|
||||||
|
transform: translateX(45%); /* 水平居中对齐数字 */
|
||||||
|
}}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="outer-container1">
|
||||||
|
<div class="grid-container1" id="outerContainer">
|
||||||
|
{svg_content}
|
||||||
|
</div>
|
||||||
|
{''.join(tick_mark_html)}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
"""
|
||||||
|
with open(output_path, 'w', encoding='utf-8') as file:
|
||||||
|
file.write(html_content)
|
||||||
|
print(f"html 文件已保存至" + output_path)
|
||||||
|
|
||||||
|
|
||||||
|
def codebook_size_for_end(end_m):
|
||||||
|
"""旧组合下,覆盖到终点所需的最小码数量:n*(n-1) 厘米 >= 终点厘米。"""
|
||||||
|
end_idx = int(end_m * m2cm // 2)
|
||||||
|
needed = 2 * end_idx
|
||||||
|
if needed <= 2:
|
||||||
|
return 2
|
||||||
|
n = math.ceil((1 + math.sqrt(1 + 4 * needed)) / 2)
|
||||||
|
while n * (n - 1) < needed:
|
||||||
|
n += 1
|
||||||
|
return n
|
||||||
|
|
||||||
|
|
||||||
|
def build_code_rows(code_count):
|
||||||
|
"""按旧逻辑生成双排码 ID:先 (i,j) 依次展开,再对半拆成上下两排。"""
|
||||||
|
result_all = []
|
||||||
|
for i in range(1, code_count + 1):
|
||||||
|
for j in range(i + 1, code_count + 1):
|
||||||
|
result_all.append(i)
|
||||||
|
result_all.append(j)
|
||||||
|
|
||||||
|
half = code_count * (code_count - 1) // 2
|
||||||
|
return result_all[:half], result_all[half:]
|
||||||
|
|
||||||
|
|
||||||
|
def create_html_with_qrcodes(output_path, codebook_end=None):
|
||||||
|
try:
|
||||||
|
start_idx = int(require_length_start * m2cm // 2)
|
||||||
|
end_idx = int(require_length_end * m2cm // 2)
|
||||||
|
row_len = end_idx - start_idx
|
||||||
|
if row_len <= 0:
|
||||||
|
raise ValueError("所选区间没有可生成的码带内容")
|
||||||
|
|
||||||
|
if codebook_end is None:
|
||||||
|
codebook_end = require_length_end
|
||||||
|
code_count = codebook_size_for_end(codebook_end)
|
||||||
|
max_code_file = os.path.join(HTML_FOLDER, f'im{code_count}.html')
|
||||||
|
if not os.path.exists(max_code_file):
|
||||||
|
raise ValueError(f"终点过长,缺少码文件 im{code_count}.html")
|
||||||
|
|
||||||
|
result_all_1, result_all_2 = build_code_rows(code_count)
|
||||||
|
|
||||||
|
row1 = result_all_1[start_idx:start_idx + row_len]
|
||||||
|
row2 = result_all_2[start_idx:start_idx + row_len]
|
||||||
|
|
||||||
|
start_time = time.perf_counter()
|
||||||
|
print("开始处理,请稍等...")
|
||||||
|
|
||||||
|
needed_ids = set(row1)
|
||||||
|
needed_ids.update(row2)
|
||||||
|
|
||||||
|
def preload(code_id):
|
||||||
|
get_processed_svg(code_id)
|
||||||
|
|
||||||
|
with ThreadPoolExecutor(max_workers=min(8, os.cpu_count() or 4)) as executor:
|
||||||
|
list(executor.map(preload, needed_ids))
|
||||||
|
|
||||||
|
svg_parts = [get_processed_svg(code_id) for code_id in row1]
|
||||||
|
svg_parts.extend(get_processed_svg(code_id) for code_id in row2)
|
||||||
|
save_svg_to_html(''.join(svg_parts), output_path, row_len)
|
||||||
|
|
||||||
|
print("所有码带段处理完成")
|
||||||
|
elapsed_time = (time.perf_counter() - start_time) * 1000
|
||||||
|
print(f"段落处理执行耗时: {elapsed_time:.4f} 毫秒")
|
||||||
|
except Exception as e:
|
||||||
|
print(f"生成码带时发生错误: {str(e)}")
|
||||||
|
raise
|
||||||
|
|
||||||
|
|
||||||
|
def _decimal_places(value):
|
||||||
|
text = str(value)
|
||||||
|
if '.' not in text:
|
||||||
|
return 0
|
||||||
|
return len(text.split('.')[1])
|
||||||
|
|
||||||
|
|
||||||
|
def _format_m(value):
|
||||||
|
return f"{value:.1f}"
|
||||||
|
|
||||||
|
|
||||||
|
def _parse_range(start_text, end_text, start_label="码带起点", end_label="码带终点"):
|
||||||
|
start = float(start_text)
|
||||||
|
end = float(end_text)
|
||||||
|
if _decimal_places(start) > 2 or _decimal_places(end) > 2:
|
||||||
|
raise ValueError("最多保留小数点后两位,请重新输入!")
|
||||||
|
if start < 0:
|
||||||
|
raise ValueError(f"{start_label}必须大于或等于零")
|
||||||
|
if end <= 0:
|
||||||
|
raise ValueError(f"{end_label}必须大于零")
|
||||||
|
if end <= start:
|
||||||
|
raise ValueError(f"{end_label}必须大于{start_label}")
|
||||||
|
return start, end
|
||||||
|
|
||||||
|
|
||||||
|
def _output_dir():
|
||||||
|
output_html_path = os.path.normpath(OUTPUT_FOLDER)
|
||||||
|
if not os.path.exists(output_html_path):
|
||||||
|
os.makedirs(output_html_path)
|
||||||
|
if not os.path.exists(output_html_path):
|
||||||
|
raise FileNotFoundError(f"输出文件夹路径不存在: {output_html_path}")
|
||||||
|
if not os.path.exists(HTML_FOLDER):
|
||||||
|
raise FileNotFoundError(f"请将 code_ims 文件夹放在程序同一目录下:\n{HTML_FOLDER}")
|
||||||
|
return output_html_path
|
||||||
|
|
||||||
|
|
||||||
|
def run_gui():
|
||||||
|
mode = {"value": "parent"}
|
||||||
|
parent_range = {"start": None, "end": None}
|
||||||
|
|
||||||
|
last_output_dir = {"path": None}
|
||||||
|
|
||||||
|
def show_open_folder_button(folder_path):
|
||||||
|
last_output_dir["path"] = folder_path
|
||||||
|
if not btn_open.winfo_ismapped():
|
||||||
|
btn_open.pack(pady=5)
|
||||||
|
|
||||||
|
def on_open_folder():
|
||||||
|
folder_path = last_output_dir["path"]
|
||||||
|
if not folder_path or not os.path.exists(folder_path):
|
||||||
|
messagebox.showerror("错误", "还没有生成码带,或文件夹不存在")
|
||||||
|
return
|
||||||
|
os.startfile(folder_path)
|
||||||
|
|
||||||
|
def start_generate(file_name, codebook_end):
|
||||||
|
output_html_path = _output_dir()
|
||||||
|
output_file = os.path.normpath(os.path.join(output_html_path, file_name))
|
||||||
|
|
||||||
|
def show_loading_window():
|
||||||
|
loading_window = tk.Toplevel(root)
|
||||||
|
loading_window.title("生成码带")
|
||||||
|
loading_window.geometry("300x100")
|
||||||
|
label = tk.Label(loading_window, text="正在生成码带中,请稍等......", font=("Arial", 14))
|
||||||
|
label.pack(pady=30)
|
||||||
|
loading_window.update_idletasks()
|
||||||
|
try:
|
||||||
|
create_html_with_qrcodes(output_file, codebook_end=codebook_end)
|
||||||
|
except Exception as e:
|
||||||
|
loading_window.destroy()
|
||||||
|
messagebox.showerror("错误", f"生成码带时发生错误: {str(e)}")
|
||||||
|
return
|
||||||
|
loading_window.destroy()
|
||||||
|
root.after(0, show_open_folder_button, output_html_path)
|
||||||
|
messagebox.showinfo("成功", "码带生成成功,文件已保存至程序目录下QRTape文件夹")
|
||||||
|
|
||||||
|
threading.Thread(target=show_loading_window, daemon=True).start()
|
||||||
|
|
||||||
|
def on_generate():
|
||||||
|
try:
|
||||||
|
global require_length_start, require_length_end
|
||||||
|
if mode["value"] == "parent":
|
||||||
|
require_length_start, require_length_end = _parse_range(
|
||||||
|
entry_start.get(), entry_end.get()
|
||||||
|
)
|
||||||
|
file_name = f"{_format_m(require_length_start)}_{_format_m(require_length_end)}.html"
|
||||||
|
start_generate(file_name, codebook_end=require_length_end)
|
||||||
|
return
|
||||||
|
|
||||||
|
sub_start, sub_end = _parse_range(
|
||||||
|
entry_start.get(), entry_end.get(), "子码带起点", "子码带终点"
|
||||||
|
)
|
||||||
|
parent_start = parent_range["start"]
|
||||||
|
parent_end = parent_range["end"]
|
||||||
|
if sub_start < parent_start or sub_end > parent_end:
|
||||||
|
raise ValueError(
|
||||||
|
f"子码带必须在母码带 {_format_m(parent_start)}~{_format_m(parent_end)} m 范围内"
|
||||||
|
)
|
||||||
|
require_length_start = sub_start
|
||||||
|
require_length_end = sub_end
|
||||||
|
file_name = (
|
||||||
|
f"{_format_m(parent_start)}_{_format_m(parent_end)}"
|
||||||
|
f"_sub_{_format_m(sub_start)}_{_format_m(sub_end)}.html"
|
||||||
|
)
|
||||||
|
start_generate(file_name, codebook_end=parent_end)
|
||||||
|
except ValueError as e:
|
||||||
|
messagebox.showerror("错误", f"输入的码带长度无效: {str(e)}")
|
||||||
|
except Exception as e:
|
||||||
|
messagebox.showerror("错误", f"发生错误: {str(e)}")
|
||||||
|
|
||||||
|
def show_sub_page():
|
||||||
|
try:
|
||||||
|
parent_start, parent_end = _parse_range(entry_start.get(), entry_end.get())
|
||||||
|
except ValueError as e:
|
||||||
|
messagebox.showerror("错误", f"请先输入有效的母码带起点和终点: {str(e)}")
|
||||||
|
return
|
||||||
|
except Exception as e:
|
||||||
|
messagebox.showerror("错误", f"发生错误: {str(e)}")
|
||||||
|
return
|
||||||
|
|
||||||
|
parent_range["start"] = parent_start
|
||||||
|
parent_range["end"] = parent_end
|
||||||
|
mode["value"] = "sub"
|
||||||
|
label_start.config(text="请输入子码带起点(m):")
|
||||||
|
label_end.config(text="请输入子码带终点(m):")
|
||||||
|
parent_info.config(text=f"母码带: {_format_m(parent_start)} ~ {_format_m(parent_end)} m")
|
||||||
|
entry_start.delete(0, tk.END)
|
||||||
|
entry_end.delete(0, tk.END)
|
||||||
|
btn_sub.pack_forget()
|
||||||
|
btn_back.pack(pady=5)
|
||||||
|
if last_output_dir["path"]:
|
||||||
|
if btn_open.winfo_ismapped():
|
||||||
|
btn_open.pack_forget()
|
||||||
|
btn_open.pack(pady=5)
|
||||||
|
|
||||||
|
def show_parent_page():
|
||||||
|
mode["value"] = "parent"
|
||||||
|
label_start.config(text="请输入码带起点(m):")
|
||||||
|
label_end.config(text="请输入码带终点(m):")
|
||||||
|
parent_info.config(text="")
|
||||||
|
entry_start.delete(0, tk.END)
|
||||||
|
entry_end.delete(0, tk.END)
|
||||||
|
if parent_range["start"] is not None:
|
||||||
|
entry_start.insert(0, str(parent_range["start"]))
|
||||||
|
entry_end.insert(0, str(parent_range["end"]))
|
||||||
|
btn_back.pack_forget()
|
||||||
|
btn_sub.pack(pady=5)
|
||||||
|
if last_output_dir["path"]:
|
||||||
|
if btn_open.winfo_ismapped():
|
||||||
|
btn_open.pack_forget()
|
||||||
|
btn_open.pack(pady=5)
|
||||||
|
|
||||||
|
root = tk.Tk()
|
||||||
|
root.title("旧码带生成器")
|
||||||
|
root.geometry("320x380")
|
||||||
|
|
||||||
|
label_start = tk.Label(root, text="请输入码带起点(m):", font=("Arial", 14))
|
||||||
|
label_start.pack(padx=10, pady=5)
|
||||||
|
|
||||||
|
entry_start = tk.Entry(root, width=10, font=("Arial", 14))
|
||||||
|
entry_start.pack(padx=10, pady=5)
|
||||||
|
|
||||||
|
label_end = tk.Label(root, text="请输入码带终点(m):", font=("Arial", 14))
|
||||||
|
label_end.pack(padx=10, pady=5)
|
||||||
|
|
||||||
|
entry_end = tk.Entry(root, width=10, font=("Arial", 14))
|
||||||
|
entry_end.pack(padx=10, pady=5)
|
||||||
|
|
||||||
|
parent_info = tk.Label(root, text="", font=("Arial", 11), fg="#444444")
|
||||||
|
parent_info.pack(padx=10, pady=2)
|
||||||
|
|
||||||
|
btn_generate = tk.Button(root, text="Click to Generate", command=on_generate, font=("Arial", 15))
|
||||||
|
btn_generate.pack(pady=10)
|
||||||
|
|
||||||
|
btn_sub = tk.Button(root, text="生成子码带", command=show_sub_page, font=("Arial", 14))
|
||||||
|
btn_sub.pack(pady=5)
|
||||||
|
|
||||||
|
btn_back = tk.Button(root, text="返回", command=show_parent_page, font=("Arial", 14))
|
||||||
|
btn_open = tk.Button(root, text="打开生成文件夹", command=on_open_folder, font=("Arial", 14))
|
||||||
|
|
||||||
|
root.mainloop()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
run_gui()
|
||||||
@@ -0,0 +1,332 @@
|
|||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<style>
|
||||||
|
.outer-container1 {
|
||||||
|
border-top: 2px solid black; /* 上边框 */
|
||||||
|
border-right: 2px solid black; /* 右边框 */
|
||||||
|
border-left: 6px solid black; /* 左边框加粗 */
|
||||||
|
border-bottom: 6px solid black; /* 下边框加粗 */
|
||||||
|
display: flex;
|
||||||
|
justify-content: center; /* 居中对齐内容 */
|
||||||
|
align-items: center; /* 居中对齐内容 */
|
||||||
|
margin: 0px; /* 可选:外边距以确保大框与页面其他部分之间有距离 */
|
||||||
|
position: absolute; /* 使用绝对定位 */
|
||||||
|
top: 10%; /* 从页面顶部 % 的位置开始 */
|
||||||
|
left: 2%; /* 从页面左侧 % 的位置开始 */
|
||||||
|
# width: 2313475.177304965px; /* 显式设置大框的宽度 */
|
||||||
|
width: 1891.2529550827423px; /* 显式设置大框的宽度 */
|
||||||
|
height: 169.4167px; /* 显式设置大框的高度 */
|
||||||
|
}
|
||||||
|
.grid-container1 {
|
||||||
|
display: grid;
|
||||||
|
position: absolute;
|
||||||
|
grid-template-columns: repeat(25, 56.73758865248227px);
|
||||||
|
grid-template-rows: repeat(2, 56.73758865248227px);
|
||||||
|
grid-gap: 18.91252955082742px 18.91252955082742px;
|
||||||
|
padding: 0px;
|
||||||
|
left: 9.456264775413712px;
|
||||||
|
top: 18.91252955082742px;
|
||||||
|
}
|
||||||
|
.line {
|
||||||
|
position: absolute;
|
||||||
|
width: 2px; /* 刻度线的宽度 */
|
||||||
|
height: 10px; /* 刻度线的高度 */
|
||||||
|
background-color: black; /* 刻度线的颜色 */
|
||||||
|
bottom: 0; /* 将刻度线放置在容器的底部 */
|
||||||
|
}
|
||||||
|
.scale-value {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -1px; /* 将数字放置在刻度线的上方 */
|
||||||
|
font-size: 12px; /* 字体大小 */
|
||||||
|
color: black; /* 字体颜色 */
|
||||||
|
# left: 0; /* 设置初始 left 属性,稍后会在每个数字上覆盖 */
|
||||||
|
transform: translateX(45%); /* 水平居中对齐数字 */
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="outer-container1">
|
||||||
|
<div class="grid-container1" id="outerContainer">
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="line" style="left: 0.0px;"></div>
|
||||||
|
<div class="scale-value" style="left: 3.0px;">0</div>
|
||||||
|
<div class="line" style="left: 189.1252955082742px;"></div>
|
||||||
|
<div class="scale-value" style="left: 192.1252955082742px;">5</div>
|
||||||
|
<div class="line" style="left: 378.2505910165484px;"></div>
|
||||||
|
<div class="scale-value" style="left: 381.2505910165484px;">10</div>
|
||||||
|
<div class="line" style="left: 567.3758865248226px;"></div>
|
||||||
|
<div class="scale-value" style="left: 570.3758865248226px;">15</div>
|
||||||
|
<div class="line" style="left: 756.5011820330968px;"></div>
|
||||||
|
<div class="scale-value" style="left: 759.5011820330968px;">20</div>
|
||||||
|
<div class="line" style="left: 945.6264775413711px;"></div>
|
||||||
|
<div class="scale-value" style="left: 948.6264775413711px;">25</div>
|
||||||
|
<div class="line" style="left: 1134.7517730496452px;"></div>
|
||||||
|
<div class="scale-value" style="left: 1137.7517730496452px;">30</div>
|
||||||
|
<div class="line" style="left: 1323.8770685579195px;"></div>
|
||||||
|
<div class="scale-value" style="left: 1326.8770685579195px;">35</div>
|
||||||
|
<div class="line" style="left: 1513.0023640661936px;"></div>
|
||||||
|
<div class="scale-value" style="left: 1516.0023640661936px;">40</div>
|
||||||
|
<div class="line" style="left: 1702.1276595744678px;"></div>
|
||||||
|
<div class="scale-value" style="left: 1705.1276595744678px;">45</div>
|
||||||
|
<div class="line" style="left: 1891.2529550827421px;"></div>
|
||||||
|
<div class="scale-value" style="left: 1894.2529550827421px;">50</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
@@ -0,0 +1,116 @@
|
|||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<style>
|
||||||
|
.outer-container1 {
|
||||||
|
border-top: 2px solid black; /* 上边框 */
|
||||||
|
border-right: 2px solid black; /* 右边框 */
|
||||||
|
border-left: 6px solid black; /* 左边框加粗 */
|
||||||
|
border-bottom: 6px solid black; /* 下边框加粗 */
|
||||||
|
display: flex;
|
||||||
|
justify-content: center; /* 居中对齐内容 */
|
||||||
|
align-items: center; /* 居中对齐内容 */
|
||||||
|
margin: 0px; /* 可选:外边距以确保大框与页面其他部分之间有距离 */
|
||||||
|
position: absolute; /* 使用绝对定位 */
|
||||||
|
top: 10%; /* 从页面顶部 % 的位置开始 */
|
||||||
|
left: 2%; /* 从页面左侧 % 的位置开始 */
|
||||||
|
# width: 2313475.177304965px; /* 显式设置大框的宽度 */
|
||||||
|
width: 378.2505910165484px; /* 显式设置大框的宽度 */
|
||||||
|
height: 169.4167px; /* 显式设置大框的高度 */
|
||||||
|
}
|
||||||
|
.grid-container1 {
|
||||||
|
display: grid;
|
||||||
|
position: absolute;
|
||||||
|
grid-template-columns: repeat(5, 56.73758865248227px);
|
||||||
|
grid-template-rows: repeat(2, 56.73758865248227px);
|
||||||
|
grid-gap: 18.91252955082742px 18.91252955082742px;
|
||||||
|
padding: 0px;
|
||||||
|
left: 9.456264775413712px;
|
||||||
|
top: 18.91252955082742px;
|
||||||
|
}
|
||||||
|
.line {
|
||||||
|
position: absolute;
|
||||||
|
width: 2px; /* 刻度线的宽度 */
|
||||||
|
height: 10px; /* 刻度线的高度 */
|
||||||
|
background-color: black; /* 刻度线的颜色 */
|
||||||
|
bottom: 0; /* 将刻度线放置在容器的底部 */
|
||||||
|
}
|
||||||
|
.scale-value {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -1px; /* 将数字放置在刻度线的上方 */
|
||||||
|
font-size: 12px; /* 字体大小 */
|
||||||
|
color: black; /* 字体颜色 */
|
||||||
|
# left: 0; /* 设置初始 left 属性,稍后会在每个数字上覆盖 */
|
||||||
|
transform: translateX(45%); /* 水平居中对齐数字 */
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="outer-container1">
|
||||||
|
<div class="grid-container1" id="outerContainer">
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="42.5532"></rect></svg>
|
||||||
|
<svg height="56.73758865248227" width="56.73758865248227">
|
||||||
|
<rect height="56.73758865248227" style="fill:black;" width="56.73758865248227" x="0.0000" y="0.0000"></rect>
|
||||||
|
<rect height="42.55319148936170" style="fill:white;" width="42.55319148936170" x="7.0922" y="7.0922"></rect>
|
||||||
|
|
||||||
|
<rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="7.0922"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="14.1844"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="21.2766"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="14.1844" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="28.3688"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="42.5532" y="35.4610"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="7.0922" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="21.2766" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="28.3688" y="42.5532"></rect><rect height="7.092198581560284" style="fill:black;" width="7.092198581560284" x="35.4610" y="42.5532"></rect></svg>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="line" style="left: 0.0px;"></div>
|
||||||
|
<div class="scale-value" style="left: 3.0px;">40</div>
|
||||||
|
<div class="line" style="left: 189.1252955082742px;"></div>
|
||||||
|
<div class="scale-value" style="left: 192.1252955082742px;">45</div>
|
||||||
|
<div class="line" style="left: 378.2505910165484px;"></div>
|
||||||
|
<div class="scale-value" style="left: 381.2505910165484px;">50</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">1:0x335359</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10:0x33470c</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">100:0x36c08e</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">1000:0x6330e4</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10000:0x5878284</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10001:0x587b1a6</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10002:0x587a622</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10003:0x58641d3</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10004:0x5863118</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10005:0x586d512</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10006:0x586c058</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10007:0x586c5ea</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10008:0x586e72c</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10009:0x586b355</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">1001:0x6323dc</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10010:0x58576d1</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10011:0x585616a</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10012:0x5851387</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10013:0x5851511</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10014:0x585d11c</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10015:0x585e359</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10016:0x585a7c5</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10017:0x58455d4</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10018:0x584412d</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10019:0x5844643</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">1002:0x63203d</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10020:0x584734f</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10021:0x58465a0</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10022:0x584175a</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10023:0x58434ad</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10024:0x5849005</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10025:0x584b442</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10026:0x58b5252</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10027:0x58b462c</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10028:0x58b719c</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10029:0x58b3492</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">1003:0x63d6ae</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10030:0x58bc1da</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10031:0x58b9081</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10032:0x58b97b0</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10033:0x58a4548</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10034:0x58a62a0</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10035:0x58a33ae</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10036:0x58af417</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10037:0x58ae03c</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10038:0x58aa79a</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10039:0x5895068</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">1004:0x63c5bb</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10040:0x58943bb</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10041:0x589740e</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10042:0x58982cd</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10043:0x589b2d0</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10044:0x589b783</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10045:0x589b569</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10046:0x5885384</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10047:0x5887051</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10048:0x588773c</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10049:0x58817c9</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">1005:0x63e169</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10050:0x588031e</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10051:0x5882160</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10052:0x588f225</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10053:0x588f2cb</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10054:0x588e1e7</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10055:0x588e66e</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10056:0x58894d6</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10057:0x588b319</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10058:0x58f71c1</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10059:0x58f701b</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">1006:0x63e615</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10060:0x58f0326</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10061:0x58f3634</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10062:0x58fc230</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10063:0x58fa293</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10064:0x58e52f8</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10065:0x58e60f6</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10066:0x58e909a</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10067:0x58e960f</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10068:0x58ea189</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10069:0x58ea45e</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">1007:0x6396e1</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10070:0x58d63f0</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10071:0x58d3202</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10072:0x58d2657</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10073:0x58d24e8</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10074:0x58dd0c4</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10075:0x58da26b</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10076:0x58c739a</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10077:0x58c11ce</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10078:0x58c0037</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10079:0x58c0694</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">1008:0x6380cd</text>
|
||||||
|
<rect x="120" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10080:0x58c23bd</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
<svg width = "400" height = "420">
|
||||||
|
<rect width = "320" height = "320" x="40" y="40" style="fill:black;" />
|
||||||
|
<rect x="80" y="80" width = "240" height = "240" style="fill:white;" />
|
||||||
|
<text x="200" y="420" style="text-anchor: middle">10081:0x58c252b</text>
|
||||||
|
<rect x="80" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="80" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="120" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="160" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="120" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="200" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="240" width = "40" height = "40" style = "fill:black;" /><rect x="80" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="160" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="200" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="240" y="280" width = "40" height = "40" style = "fill:black;" /><rect x="280" y="280" width = "40" height = "40" style = "fill:black;" /></svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |