Персональные инструменты
 

Машина Тьюринга:Распознавание строки, с одинаковым количеством 0 и 1 — различия между версиями

Материал из CustisWiki

Перейти к: навигация, поиск
м (1 версия)
м (Содержимое страницы заменено на «#REDIRECT [[discopal:{{PAGENAME}}]]»)
 
Строка 1: Строка 1:
Приведем пример [[машина Тьюринга|машины Тьюринга]], распознающей строчки с одинаковым количеством нулей и единиц.
+
#REDIRECT [[discopal:{{PAGENAME}}]]
 
+
==Табличное представление МТ==
+
<latex>
+
\begin{tabular}{|cc|c|ccc|}
+
\hline
+
   
+
2fail & * & $\Rightarrow$ & fail & * & R \\ \hline
+
2fail & . & $\Rightarrow$ & 2fail & * & L \\ \hline
+
2fail & 0 & $\Rightarrow$ & 2fail & * & L \\ \hline
+
2fail & 1 & $\Rightarrow$ & 2fail & * & L \\ \hline
+
2ok & * & $\Rightarrow$ & ok & * & R \\ \hline
+
2ok & . & $\Rightarrow$ & 2ok & * & L \\ \hline
+
2start & * & $\Rightarrow$ & <\textcolor{blue}{s}> & * & R \\ \hline
+
2start & . & $\Rightarrow$ & 2start & . & L \\ \hline
+
2start & 0 & $\Rightarrow$ & 2start & 0 & L \\ \hline
+
2start & 1 & $\Rightarrow$ & 2start & 1 & L \\ \hline
+
fail & * & $\Rightarrow$ & [\textcolor{red}{q}] & 0 & R \\ \hline
+
ok & * & $\Rightarrow$ & [\textcolor{red}{q}] & 1 & R \\ \hline
+
<\textcolor{blue}{s}> & * & $\Rightarrow$ & 2ok & * & L \\ \hline
+
<\textcolor{blue}{s}> & . & $\Rightarrow$ & <\textcolor{blue}{s}> & . & R \\ \hline
+
<\textcolor{blue}{s}> & 0 & $\Rightarrow$ & skip0 & . & R \\ \hline
+
<\textcolor{blue}{s}> & 1 & $\Rightarrow$ & skip1 & . & R \\ \hline
+
skip0 & * & $\Rightarrow$ & 2fail & * & L \\ \hline
+
skip0 & . & $\Rightarrow$ & skip0 & . & R \\ \hline
+
skip0 & 0 & $\Rightarrow$ & skip0 & 0 & R \\ \hline
+
skip0 & 1 & $\Rightarrow$ & 2start & . & L \\ \hline
+
skip1 & * & $\Rightarrow$ & 2fail & * & L \\ \hline
+
skip1 & . & $\Rightarrow$ & skip1 & . & R \\ \hline
+
skip1 & 0 & $\Rightarrow$ & 2start & . & L \\ \hline
+
skip1 & 1 & $\Rightarrow$ & skip1 & 1 & R \\ \hline
+
\end{tabular}
+
</latex>
+
<code-python>
+
MT={
+
'k':1,
+
'start': 's',
+
'stop': 'q',
+
'program': {
+
#(Состояние, символы на лентах) -> (новое состояние, (действия по каждой ленте))
+
  ('s', ('.')):        ('s', (('.','R'))), #проматываем уничтоженные символы
+
  ('s', ('0')):        ('skip0', (('.','R'))), #стираем один ноль,
+
  ('s', ('1')):        ('skip1', (('.','R'))), #стираем одну единицу
+
  ('s', ('*')):        ('2ok',  (('*','L'))),  #не нашли 1 и 0 - видимо все ок...
+
  ('skip0', ('0')):    ('skip0', (('0','R'))), #проматываем 0-ли
+
  ('skip0', ('.')):    ('skip0', (('.','R'))), #проматываем уничтоженные символы
+
  ('skip0', ('*')):    ('2fail',  (('*','L'))), #так и не нашли симметричную единицу
+
  ('skip0', ('1')):    ('2start',  (('.','L'))), #стираем симметричную единицу
+
  ('skip1', ('1')):    ('skip1', (('1','R'))), #проматываем 1-цы.
+
  ('skip1', ('.')):    ('skip1', (('.','R'))), #проматываем уничтоженные символы
+
  ('skip1', ('*')):    ('2fail',  (('*','L'))), #так и не нашли симметричный ноль
+
  ('skip1', ('0')):    ('2start',  (('.','L'))), #стираем симметричный ноль
+
  ('2start', ('0')):    ('2start', (('0','L'))), #проматываем, все,
+
  ('2start', ('1')):    ('2start', (('1','L'))), #кроме маркера начала данных
+
  ('2start', ('.')):    ('2start', (('.','L'))),
+
  ('2start', ('*')):    ('s', (('*','R'))),      #тогда становимся на первый символ 
+
  ('2ok', ('.')):      ('2ok', (('*','L'))),    #проматываем, в начало.
+
  ('2ok', ('*')):      ('ok', (('*','R'))),    #
+
  ('ok', ('*')):        ('q', (('1','R'))),      # пишем "1" и выходим.
+
  ('2fail', ('.')):    ('2fail', (('*','L'))),    #проматываем в начало.
+
  ('2fail', ('0')):    ('2fail', (('*','L'))),    #проматываем в начало.
+
  ('2fail', ('1')):    ('2fail', (('*','L'))),    #проматываем в начало.
+
  ('2fail', ('*')):    ('fail', (('*','R'))),    # до начала
+
  ('fail', ('*')):    ('q', (('0','R')))    # до начала
+
}
+
+
</code-python>
+
 
+
==Графовое представление МТ==
+
 
+
<graph>
+
digraph G{rankdir=LR; edge[fontcolor="blue", fontsize="12", minlen="2", labeldistance="2", arrowhead="empty"];
+
 
+
 
+
"s"[shape="diamond"];
+
"q"[shape="box"];"s"->"s" [headlabel=".R",taillabel="."];
+
"2start"->"s" [headlabel="*R",taillabel="*"];
+
"2fail"->"2fail" [headlabel="*L",taillabel="0"];
+
"2start"->"2start" [headlabel=".L",taillabel="."];
+
"skip0"->"2fail" [headlabel="*L",taillabel="*"];
+
"2start"->"2start" [headlabel="1L",taillabel="1"];
+
"2ok"->"2ok" [headlabel="*L",taillabel="."];
+
"skip0"->"skip0" [headlabel=".R",taillabel="."];
+
"skip1"->"2start" [headlabel=".L",taillabel="0"];
+
"2ok"->"ok" [headlabel="*R",taillabel="*"];
+
"s"->"skip1" [headlabel=".R",taillabel="1"];
+
"2fail"->"2fail" [headlabel="*L",taillabel="1"];
+
"2fail"->"fail" [headlabel="*R",taillabel="*"];
+
"fail"->"q" [headlabel="0R",taillabel="*"];
+
"2start"->"2start" [headlabel="0L",taillabel="0"];
+
"2fail"->"2fail" [headlabel="*L",taillabel="."];
+
"skip1"->"skip1" [headlabel="1R",taillabel="1"];
+
"s"->"skip0" [headlabel=".R",taillabel="0"];
+
"skip0"->"2start" [headlabel=".L",taillabel="1"];
+
"ok"->"q" [headlabel="1R",taillabel="*"];
+
"skip0"->"skip0" [headlabel="0R",taillabel="0"];
+
"skip1"->"skip1" [headlabel=".R",taillabel="."];
+
"s"->"2ok" [headlabel="*L",taillabel="*"];
+
"skip1"->"2fail" [headlabel="*L",taillabel="*"];
+
}
+
</graph>
+
 
+
==Примеры выполнения МТ==
+
 
+
=== На пустой строке ===
+
<pic-svg>
+
<svg
+
xmlns:svg="http://www.w3.org/2000/svg"
+
xmlns="http://www.w3.org/2000/svg"
+
xmlns:xlink="http://www.w3.org/1999/xlink"
+
version="1.0"
+
width="160px"
+
height="100px"
+
>
+
<ellipse
+
cx="50.0px"
+
cy="30.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="50.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="70.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="90.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="40px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="60px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
q</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="80px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
1</text>
+
</svg>
+
</pic-svg>
+
 
+
=== На «10» ===
+
<pic-svg>
+
<svg
+
xmlns:svg="http://www.w3.org/2000/svg"
+
xmlns="http://www.w3.org/2000/svg"
+
xmlns:xlink="http://www.w3.org/1999/xlink"
+
version="1.0"
+
width="180px"
+
height="260px"
+
>
+
<ellipse
+
cx="50.0px"
+
cy="30.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="50.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="70.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="90.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="110.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="130.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="150.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="170.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="190.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="210.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="230.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="250.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
1</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
skip1</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="60px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="80px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="100px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="120px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="140px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="160px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="180px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="200px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="220px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
q</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="240px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
1</text>
+
</svg>
+
</pic-svg>
+
 
+
=== На «00» ===
+
<pic-svg>
+
<svg
+
xmlns:svg="http://www.w3.org/2000/svg"
+
xmlns="http://www.w3.org/2000/svg"
+
xmlns:xlink="http://www.w3.org/1999/xlink"
+
version="1.0"
+
width="180px"
+
height="180px"
+
>
+
<ellipse
+
cx="50.0px"
+
cy="30.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="50.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="70.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="90.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="110.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="130.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="150.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="170.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
0</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
skip0</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
skip0</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="60px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
2fail</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="80px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
2fail</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="100px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
2fail</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="120px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
fail</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="140px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
q</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="160px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
0</text>
+
</svg>
+
</pic-svg>
+
 
+
=== На «110» ===
+
<pic-svg>
+
<svg
+
xmlns:svg="http://www.w3.org/2000/svg"
+
xmlns="http://www.w3.org/2000/svg"
+
xmlns:xlink="http://www.w3.org/1999/xlink"
+
version="1.0"
+
width="200px"
+
height="340px"
+
>
+
<ellipse
+
cx="50.0px"
+
cy="30.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="50.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="70.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="90.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="110.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="130.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="150.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="170.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="190.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="210.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="230.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="250.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="270.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="290.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="310.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="330.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
1</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
skip1</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
skip1</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="60px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="80px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="100px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="120px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="140px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="160px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
skip1</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="180px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
skip1</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="200px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
2fail</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="220px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
2fail</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="240px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
2fail</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="260px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
2fail</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="280px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
fail</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="300px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
q</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="320px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
0</text>
+
</svg>
+
</pic-svg>
+
 
+
=== На «1001» ===
+
<pic-svg>
+
<svg
+
xmlns:svg="http://www.w3.org/2000/svg"
+
xmlns="http://www.w3.org/2000/svg"
+
xmlns:xlink="http://www.w3.org/1999/xlink"
+
version="1.0"
+
width="220px"
+
height="500px"
+
>
+
<ellipse
+
cx="50.0px"
+
cy="30.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="50.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="70.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="90.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="110.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="130.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="150.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="170.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="190.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="210.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="230.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="250.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="270.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="290.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="310.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="330.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="350.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="370.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="390.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="410.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="430.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="450.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="470.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="490.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
1</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
0</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
0</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
1</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
skip1</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
0</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
0</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
1</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="60px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
0</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
1</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="80px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
0</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
1</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="100px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
0</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
1</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="120px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
0</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
1</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="140px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
0</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
1</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
skip0</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="160px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
1</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="180px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="200px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="220px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="240px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="260px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="280px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="300px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="320px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="340px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="360px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="380px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="400px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="420px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="455px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="440px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="475px" >
+
ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="460px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="495px" >
+
q</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="480px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="495px" >
+
1</text>
+
</svg>
+
</pic-svg>
+
 
+
=== На «1100» ===
+
<pic-svg>
+
<svg
+
xmlns:svg="http://www.w3.org/2000/svg"
+
xmlns="http://www.w3.org/2000/svg"
+
xmlns:xlink="http://www.w3.org/1999/xlink"
+
version="1.0"
+
width="220px"
+
height="540px"
+
>
+
<ellipse
+
cx="50.0px"
+
cy="30.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="20px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="50.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="40px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="70.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="60px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="90.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="80px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="110.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="100px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="130.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="120px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="150.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="140px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="170.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="160px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="190.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="180px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="210.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="200px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="230.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="220px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="250.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="240px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="270.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="260px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="290.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="280px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="310.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="300px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="330.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="320px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="350.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="340px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="370.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="360px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="390.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="380px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="410.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="400px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="430.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="420px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="450.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="440px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="470.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="460px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="490.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="480px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="510.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="500px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="500px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="500px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="500px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="500px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="500px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<ellipse
+
cx="50.0px"
+
cy="530.0px"
+
rx="28px"
+
ry="8px"
+
style="fill:yellow;stroke:black;stroke-width:1"
+
/>
+
<g>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="520px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="520px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="520px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="520px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="520px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="520px"
+
style="fill:none;stroke:#0a14e4;stroke-opacity:1.0000000;"
+
/>
+
</g>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="20px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
1</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
0</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="35px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
skip1</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="40px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
0</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="55px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
skip1</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="60px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
0</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="75px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="80px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="95px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="100px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="115px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="120px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="135px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="140px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="155px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="160px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
1</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="175px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
skip1</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="180px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="195px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
skip1</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="200px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="215px" >
+
0</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="220px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="235px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="240px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="255px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="260px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="275px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
2start</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="280px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="295px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="300px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="315px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="320px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="335px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="340px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="355px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="360px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="375px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" >
+
s</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="180px"
+
y="380px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="395px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="160px"
+
y="400px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" >
+
.</text>
+
<text x="170.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="415px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="140px"
+
y="420px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" >
+
.</text>
+
<text x="150.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="435px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="455px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="440px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="455px" >
+
.</text>
+
<text x="130.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="455px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="475px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="460px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="475px" >
+
.</text>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="495px" >
+
2ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="80px"
+
y="480px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="515px" >
+
ok</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="100px"
+
y="500px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="50.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="535px" >
+
q</text>
+
<rect
+
width="20px"
+
height="18.0px"
+
x="120px"
+
y="520px"
+
style="fill:none;stroke:darkblue;stroke-opacity:1.0000000;stroke-width:2px;"
+
/>
+
<text x="110.0px" font-family="Tahoma" fontsize="10px" fill="black" text-anchor="middle" y="535px" >
+
1</text>
+
</svg>
+
</pic-svg>
+
 
+
 
+
[[Category:Алгоритмы]]
+
{{replicate-from-custiswiki-to-lib}}
+

Текущая версия на 20:44, 13 июня 2011

  1. REDIRECT discopal:Машина Тьюринга:Распознавание строки, с одинаковым количеством 0 и 1