Add oscilloscope chapter

This commit is contained in:
Nathanaël Restori 2012-10-31 21:34:36 +01:00
parent 4110d5e447
commit ae4d714f57
16 changed files with 2849 additions and 88 deletions

View File

@ -24,95 +24,17 @@
*/
#include <Wire.h>
#include "Chronodot.h"
#define CHRONODOT_ADDRESS 0x68
static uint8_t bcd2bin (uint8_t val) { return val - 6 * (val >> 4); }
// no-cost stream operator as described at
// http://sundial.org/arduino/?page_id=119
template<class T>
inline Print &operator <<(Print &obj, T arg)
{ obj.print(arg); return obj; }
template<class T>
inline Print &operator >>(Print &obj, T arg)
{
for (unsigned int mask = 0x80; mask; mask >>= 1) {
obj.print(mask&arg?'1':'0');
}
return obj;
}
template<class T>
inline Print &operator +(Print &obj, T arg)
{ obj.print(arg, HEX); return obj; }
void setup() {
Serial.begin(9600);
Wire.begin();
Serial.println("BEGIN transmission");
Wire.beginTransmission(CHRONODOT_ADDRESS);
Wire.write((byte)0);
Wire.endTransmission();
Wire.requestFrom(CHRONODOT_ADDRESS, 7);
byte blah[8];
int i;
for(i=0; i<8; i++) {
blah[i] = Wire.read();
}
Serial.println("END transmission");
uint8_t ss = bcd2bin(blah[0] & 0x7F);
uint8_t mm = bcd2bin(blah[1]);
uint8_t hh = bcd2bin(blah[2]);
uint8_t d = bcd2bin(blah[4]);
uint8_t m = bcd2bin(blah[5]);
uint16_t y = bcd2bin(blah[6]) + 2000;
Serial.println();
Serial.println("What\tByte\tCorrespondance");
Serial.println("------------------------------");
Serial
<< "seconds\t" << blah[0] << "\t" << ss << "\r\n"
<< "minutes\t" << blah[1] << "\t" << mm << "\r\n"
<< "hours\t" << blah[2] << "\t" << hh << "\r\n"
<< "days\t" << blah[4] << "\t" << d << "\r\n"
<< "months\t" << blah[5] << "\t" << m << "\r\n"
<< "years\t" << blah[6] << "\t" << y << "\r\n";
Serial.println();
Serial
<< y << "-" << m << "-" << d << " "
<< hh << ":" << mm << ":" << ss << "\r\n";
Serial.println();
Serial.println("Address\tDecimal\tBinary");
Serial.println("----------------------");
Serial + CHRONODOT_ADDRESS << "\t" << CHRONODOT_ADDRESS << "\t" >> CHRONODOT_ADDRESS << "\r\n";
Serial.println();
Serial.println("Byte\tDecimal\tBinary");
Serial.println("----------------------");
Serial
<< "0\t" << blah[0] << "\t" >> blah[0] << "\r\n"
<< "1\t" << blah[1] << "\t" >> blah[1] << "\r\n"
<< "2\t" << blah[2] << "\t" >> blah[2] << "\r\n"
<< "3\t" << blah[3] << "\t" >> blah[3] << "\r\n"
<< "4\t" << blah[4] << "\t" >> blah[4] << "\r\n"
<< "5\t" << blah[5] << "\t" >> blah[5] << "\r\n"
<< "6\t" << blah[6] << "\t" >> blah[6] << "\r\n"
<< "7\t" << blah[7] << "\t" >> blah[7] << "\r\n";
}
void loop() {
delay(1000);
Wire.beginTransmission(CHRONODOT_ADDRESS);
Wire.write((byte)0);
//Wire.write((byte)170);
//Wire.write((byte)255);
Wire.endTransmission();
}

View File

@ -43,8 +43,6 @@ Je tient à remercier M.~Salanon pour ses conseils, son aide et pour m'avoir sui
Je remercie aussi mes parents et ma sœur pour leur aide et leur relecture.
Merci aussi à l'équipe d'Adafruit pour son engagement envers le libre et pour sa documentation.
\vfill
Image de couverture par \enquote{oomlout}, sous licence \emph{Creative Commons Attribution-Share Alike 2.0 Generic (CC BY-SA 2.0)}.
@ -137,6 +135,8 @@ L'état logique \enquote{0} ou \enquote{LOW} est l'état \enquote{dominant} tand
\section{Le protocole I²C}
\subsection{L'encodage}
Tout d'abord, en informatique, les informations sont envoyée sous forme de 0 et de 1. Un 0 ou un 1 s'appelle un bit. Souvent, les informations sont envoyées sous forme de paquets du 8 bits. On appelle ses 8 bits un octet (ou \emph{byte} en anglais).
Pour transmettre un bit, le maître doit d'abord placer la ligne SCL au niveau \enquote{LOW} puis placer la ligne SDA au niveau voulu (LOW pour transmettre un 1 ou \enquote{HIGH} pour transmettre un 0). Ensuite, il place la ligne SCL au niveau \enquote{HIGH} attend un temps défini par la vitesse et la norme utilisée puis replace la ligne SCL au niveau LOW. Un bit vient d'être transmis. Il recommence pour transmettre le bit suivant. Tant que la ligne SCL est au niveau \enquote{HIGH} la ligne SDA ne doit pas changer d'état.
\begin{figure}[H]
\centering
@ -196,6 +196,55 @@ Pour aire un pause, l'esclave maintient la ligne SCL au niveau \enquote{LOW} tan
\label{fig:I2C_Pause}
\end{figure}
\subsection{L'addresse}
Pour savoir à qui un maître veux parler, chaque esclave possède une adresse unique. Celle-ci peut être encodée sur 7 ou 10 bits.
\subsubsection{L'adressage sur 7 bits}
L'octet est composé de deux parties :
\begin{enumerate}
\item les 7 premiers bits correspondent à l'adresse
\item le dernier bit est appelé bit R/W (Read/Write) :
\begin{itemize}
\item si le maître envoie un 1, il demande une lecture et l'esclave lui envoie des données.
\item si le maître envoie un 0, il demande une écriture et le maître lui envoie des données.
\end{itemize}
\end{enumerate}
Il y a quelques adresses \enquote{spéciales}\footnote{Les X tout à gauche correspondent au bit R/W. Les autres X, l'y et le z peuvent être soit un 1, soit un 0} :
\begin{itemize}
\item 00000000 : utilisée pour parler à tous les esclaves (appelé \emph{broadcast} en anglais)
\item 0000001X : utilisée pour accéder aux composants CBUS (ancêtre de lI²C)
\item 0000010X : réservée pour dautres systèmes de bus
\item 0000011X : réservée pour des utilisations futures
\item 00001XXX : utilisée pour les composants haute-vitesse
\item 11111XXX : réservée pour des utilisations futures
\item 11110yz0 : utilisée pour l'adressage sur 10 bits
\end{itemize}
\subsubsection{L'adressage sur 10 bits}
Cette fois ci, deux octets sont nécessaires :
\begin{itemize}
\item Le premier est l'octet \enquote{11110yz0}. Les bits y et z sont les bits de poids fort de l'adresse (autrement dit, ceux le plus à gauche). Le bit R/W est toujours à 0.
\item Le deuxième octet contient la suite de l'adresse sur 8 bits. Il n'y a donc pas de bit R/W.
\end{itemize}
\begin{figure}[H]
\centering
\includegraphics{figures/I2C/I2C_Adresse10bitsEcriture.eps}
\caption{Adressage d'un esclave I²C sur 10 bits en écriture}
\label{fig:I2C_Adresse10bitsEcriture}
\end{figure}
Plusieurs esclaves peuvent avoir une adresse qui commence par yz. Si c'est le cas, ils répondent tous par un ACK en même temps. Une fois la suite de l'adresse envoyée, un seul esclave répondra par un ACK, l'adresse étant unique.
Si le maître veux demander un lecture, il doit envoyer un RESTART à la fin du deuxième octet de l'adresse puis envoyer l'octet \enquote{11110yz1}. Cette fois ci, le bit R/W est à 1 et l'esclave saura que le maître demande une lecture.
\begin{figure}[H]
\centering
\includegraphics[width=1\textwidth]{figures/I2C/I2C_Adresse10bitsLecture.eps}
\caption{Adressage d'un esclave I²C sur 10 bits en lecture}
\label{fig:I2C_Adresse10bitsLecture}
\end{figure}
\subsection{Un échange complet}
Tout d'abord, tout les maîtres écoutent en permanence les deux lignes. S'ils détectent un START, ils savent qu'ils doivent attendre un STOP avant de tenter de parler à un esclave. Cette écoute permanente permet aussi de détecter les pauses et les conflits (plusieurs maîtres qui tentent de parler en même temps).
@ -314,9 +363,84 @@ J'ai essayé de réunir les deux programmes en un seul en allégeant les \glspl{
J'ai aussi cherché s'il était possible de mettre un système d'exploitation sur l'Arduino et qu'il puisse charger les programmes sur la carte SD, mais je n'ai rien trouvé.
\section{Le programme pour tester en pratique l'I²C}
Cette fois-ci, l'entièreté du programme se situe dans la fonction \verb|setup()|. On commence par initialiser la classe \verb|Wire| puis commencer à transmettre sur le bus. D'abord, l'adresse de l'horloge est transmise, puis on positionne le curseur du registre à zéro et on lit les huit premiers octets du registre qui continent l'heure et la date. Ces données sont traitées pour être lisible puis on les affiche dans un tableau et dans le format habituel afin de savoir si la communication c'est bien passée. Pour finir, on affiche l'adresse de l'horloge sous forme hexadécimale, décimale et binaire ainsi qu'un tableau des huit octets sous leurs formes décimales et binaires. %TODO: mettre un exemple en annexe
La fonction \verb|setup()| se contente d'initialiser la classe \verb|Wire| pour pouvoir utiliser le bus.
La fonction \verb|loop()| va envoyer en boucle le nombre 0, 170 ou 255 à un esclave (ici, l'horloge) en mode d'écriture. L'opération est effectuée en boucle car un seul envoi est trop rapide pour être lu sur l'oscilloscope.
\chapter{Test de l'I²C en pratique}
\section{Le choix des nombres envoyé}
Les trois nombre envoyé on été choisi pour à cause de leur écriture en binaire\footnote{Voir tableau \ref{dec-bin}}. Ce sont un peu des cas \enquote{extrêmes} qui permettent de bien voir certaines choses sur les graphes de l'oscilloscope.
\begin{table}[h]
\begin{center}
\begin{tabular}{|c|c|}
\hline
Notation décimale & Notation binaire \\
\hline
0 & 00000000 \\
\hline
170 & 10101010 \\
\hline
255 & 11111111 \\
\hline
\end{tabular}
\end{center}
\caption{Équivalence décimal-binaire}
\label{dec-bin}
\end{table}
\section{Analyse des graphes}
Pour pouvoir lire les graphes facilement, j'ai rajouté le numéro ou le nom de bits sur la ligne d'horloge et la bit envoyé sur la ligne des données ainsi que le START et le STOP. Les originaux sont disponible à l'annexe \ref{app:oscillo}.
\subsection{Avec 0}
La figure \ref{fig:oscillo-0} montre l'écriture d'un 0 vue à l'oscilloscope. Le premier canal (en orange) montre la ligne des données (SDA) et le deuxième canal montre la ligne d'horloge (SCL).
On voit que la communication commence par l'envoi d'un START par le maître, suivi des 7 bits de l'adresse (ici, \enquote{1101000}) puis du bit d'écriture (l'avant-dernier 0). L'esclave envoie ensuite le bit d'acquittement (le dernier 0). On remarque ensuite une crête, mais elle ne correspond pas à un RESTART. En effet : cette crête se situe alors que la ligne d'horloge est au niveau bas. Ensuite, on voit l'envoi du 0 (les huit premiers 0) par le maître puis du bit d'acquittement par l'esclave. Le maître termine la communication par un STOP.
\begin{figure}[H]
\centering
\includegraphics[scale=1]{oscillo/0.png}
\caption{Écriture d'un 0 à l'oscilloscope}
\label{fig:oscillo-0}
\end{figure}
\subsection{Avec 255}
La figure \ref{fig:oscillo-255} montre l'écriture d'un 255 vue à l'oscilloscope.
La communication commence de la même manière : envoi du START, de l'adresse, du bit d'écriture et pour finir, le bit d'acquittement. Pour le deuxième octet, on voit l'envoi des huit 1, puis le bit d'acquittement. Mais cette fois ci, ce dernier est positionné à 1. L'esclave envoie donc un NACK (autrement dit, un non-acquittement). Le maître termine la communication avec un STOP. On remarque un creux entre le deuxième octet et le STOP. C'est pour pouvoir effectuer ce dernier. En effet : pour pouvoir effectuer le STOP, la ligne des données doit passer de bas à haut quand la ligne d'horloge est à haut. La crête est toujours présente, mais \enquote{fusionnée} avec les 1 du deuxième octet.
\begin{figure}[H]
\centering
\includegraphics[scale=1]{oscillo/255.png}
\caption{Écriture d'un 255 à l'oscilloscope}
\label{fig:oscillo-255}
\end{figure}
\subsection{Avec 170}
La figure \ref{fig:oscillo-170} montre l'écriture d'un 170 vue à l'oscilloscope.
Encore une fois, la communication commence de la même manière. Pour le deuxième octet, on voit l'envoi de \enquote{10101010}, puis le bit d'acquittement. Mais cette fois ci encore, ce dernier est positionné à 1. L'esclave envoie à nouveau un NACK. Le maître termine la communication avec un STOP.
\begin{figure}[H]
\centering
\includegraphics[scale=1]{oscillo/170.png}
\caption{Écriture d'un 170 à l'oscilloscope}
\label{fig:oscillo-170}
\end{figure}
\subsection{Explication du NACK}
Pour expliquer les deux dernier NACK, il faut s'intéresser au fonctionnement de l'horloge (pas la ligne mais le périphérique).
L'horloge contient un registre qui contient des valeurs qui correspondent à l'heure, la date, la température et d'autres choses. Ici, deux cas sont possible : la lecture et l'écriture.
Si on veux lire une partie du registre, il faut commencer par envoyer en écriture la case à partir de laquelle on veux commencer à lire puis un STOP. Ensuite, on envoie une demande de lecture. L'horloge va réponde en envoyant un octet contenant le contenu de la case sélectionnée. Ensuite, on peux soit envoyer un ACK pour recevoir la case suivante, soit envoyer un NACK pour arrêter la lecture.
Si l'on veut écrire, après avoir sélectionner la case, il faut continuer à écrire un octet. Cet octet sera écrit à l'endroit sélectionné. Deux choix s'offrent ensuite : soit écrire encore un octet qui sera placé dans la case suivante, soit envoyer un STOP.
Les nombres envoyés pour mes essais sont donc des sélections de case. L'horloge a donc renvoyé un NACK car la case n° 170 ou 255 n'existe pas et la sélection a donc échouée. Elle a au contraire renvoyé un ACK pour la case n° 0 car celle-ci existe. En effet : en informatique, les tableaux et les registres sont numérotés à partir de 0 et non de 1.
\chapter{Le cas du frigo}
\section{Les mesures}
@ -348,13 +472,13 @@ La figure \ref{fig:t-h} représente l'humidité en fonction de la température e
Mais d'où peux donc venir cette différence ? Faisons un peu de calcul :
Par définition\footnote{Une table des symboles est disponible à la page \pageref{ref:symboles}} :
Par définition de l'humidité absolue\footnote{Une table des symboles est disponible à la page \pageref{ref:symboles}} :
\[H = \frac{m}{V}\]
Or, \(m = M\cdot{}n\) (cours de chimie). Nous avons donc :
\[H = \frac{n}{V}\cdot{}M_{eau}\]
Or, \(\frac{n}{V} = \frac{P}{R\cdot{}T}\) (loi des gaz parfaits). Donc :
\[H_{\acute{e}q} = \frac{P_{\acute{e}q}\cdot{}M_{eau}}{R\cdot{}T}\]
Par définition :
Par définition de l'humidité relative:
\[H_r = \frac{H}{H_{\acute{e}q}}\]
En remaniant les formules, on trouve :
@ -423,6 +547,27 @@ Si l'on part du principe que le frigo est étanche, la pente de la courbe peux d
\label{app:i2cpractise}
\inputminted[linenos]{cpp}{../arduino/I2CPractise/I2CPractise.ino}
\chapter{Originaux de l'oscilloscope}
\label{app:oscillo}
\begin{figure}[h]
\centering
\includegraphics[scale=1]{oscillo/TEK0002.png}
\caption{Écriture d'un 0 à l'oscilloscope (original)}
\end{figure}
\begin{figure}[h]
\centering
\includegraphics[scale=1]{oscillo/TEK0001.png}
\caption{Écriture d'un 255 à l'oscilloscope (original)}
\end{figure}
\begin{figure}[h]
\centering
\includegraphics[scale=1]{oscillo/TEK0000.png}
\caption{Écriture d'un 170 à l'oscilloscope (original)}
\end{figure}
\chapter{Graphiques}
\label{app:graphs}

View File

@ -61,6 +61,20 @@
keywords = "image"
}
@misc{fig:I2C_Adresse10bitsEcriture,
author = "Emiaille",
title = "Adressage d'un esclave I²C sur 10 bits en écriture",
url ="https://commons.wikimedia.org/wiki/File:I2C_Adresse10bitsEcriture.svg",
keywords = "image"
}
@misc{fig:I2C_Adresse10bitsLecture,
author = "Emiaille",
title = "Adressage d'un esclave I²C sur 10 bits en lecture",
url ="https://commons.wikimedia.org/wiki/File:I2C_Adresse10bitsLecture.svg",
keywords = "image"
}
@misc{free-sw,
author = "FSF",
title = "Qu'est-ce que le logiciel libre ?",

View File

@ -0,0 +1,606 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.12.2 (http://cairographics.org)
%%CreationDate: Wed Oct 31 20:27:20 2012
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 357 92
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 357 92
%%EndPageSetup
q 0 -1 357 93 rectclip q
0 g
1.489551 w
0 J
0 j
[] 0.0 d
4 M q 1 0 0 -1 0 91.900002 cm
0.75 0.746 16.902 90.406 re S Q
0 0 1 rg
3.285 28.068 m 4.816 28.068 l 4.535 27.474 4.328 26.912 4.191 26.38 c 4.047
25.849 3.973 25.334 3.973 24.834 c 3.973 23.978 4.141 23.318 4.473 22.849
c 4.809 22.38 5.281 22.146 5.895 22.146 c 6.406 22.146 6.797 22.302 7.066
22.615 c 7.328 22.927 7.535 23.513 7.691 24.38 c 7.895 25.334 l 8.113 26.509
8.512 27.373 9.082 27.927 c 9.645 28.49 10.402 28.771 11.348 28.771 c 12.473
28.771 13.332 28.388 13.926 27.63 c 14.512 26.88 14.801 25.771 14.801 24.302
c 14.801 23.748 14.73 23.162 14.598 22.537 c 14.473 21.92 14.293 21.279
14.051 20.615 c 12.426 20.615 l 12.781 21.248 13.051 21.873 13.238 22.49
c 13.418 23.103 13.504 23.709 13.504 24.302 c 13.504 25.209 13.328 25.904
12.973 26.396 c 12.621 26.884 12.113 27.13 11.457 27.13 c 10.887 27.13
10.438 26.951 10.113 26.599 c 9.793 26.244 9.551 25.666 9.395 24.865 c 9.207
23.912 l 8.969 22.732 8.598 21.88 8.098 21.349 c 7.598 20.826 6.906 20.568
6.02 20.568 c 4.988 20.568 4.176 20.927 3.582 21.646 c 2.988 22.373 2.691
23.38 2.691 24.662 c 2.691 25.201 2.746 25.755 2.848 26.318 c 2.941 26.888
3.09 27.474 3.285 28.068 c h
2.895 29.615 m 2.895 39.49 l 4.223 39.49 l 4.223 35.349 l 14.566 35.349
l 14.566 33.755 l 4.223 33.755 l 4.223 29.615 l h
4.457 43.662 m 10.254 41.521 l 10.254 45.818 l h
2.895 42.771 m 2.895 44.568 l 14.566 49.005 l 14.566 47.365 l 11.566 46.302
l 11.566 41.052 l 14.566 39.99 l 14.566 38.318 l h
9.098 56.24 m 9.215 56.572 9.457 56.9 9.832 57.224 c 10.207 57.545 10.723
57.869 11.379 58.193 c 14.566 59.787 l 14.566 58.099 l 11.566 56.599 l
10.785 56.213 10.27 55.838 10.02 55.474 c 9.762 55.119 9.629 54.63 9.629
54.005 c 9.629 52.287 l 14.566 52.287 l 14.566 50.709 l 2.895 50.709 l
2.895 54.271 l 2.895 55.603 3.176 56.599 3.738 57.255 c 4.293 57.912 5.129
58.24 6.254 58.24 c 6.996 58.24 7.609 58.068 8.098 57.724 c 8.578 57.38
8.91 56.884 9.098 56.24 c h
4.191 52.287 m 8.332 52.287 l 8.332 54.271 l 8.332 55.029 8.16 55.603 7.816
55.99 c 7.465 56.373 6.941 56.568 6.254 56.568 c 5.578 56.568 5.066 56.373
4.723 55.99 c 4.371 55.603 4.191 55.029 4.191 54.271 c h
2.895 59.052 m 2.895 68.927 l 4.223 68.927 l 4.223 64.787 l 14.566 64.787
l 14.566 63.193 l 4.223 63.193 l 4.223 59.052 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
17.668 0.746 16.902 90.406 re S Q
0 0 1 rg
30.176 44.084 m 30.176 46.662 l 21.27 46.662 l 21.832 43.865 l 20.395 43.865
l 19.832 46.646 l 19.832 48.224 l 30.176 48.224 l 30.176 50.802 l 31.504
50.802 l 31.504 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
34.422 0.746 16.902 90.406 re S Q
0 0 1 rg
46.945 44.084 m 46.945 46.662 l 38.039 46.662 l 38.602 43.865 l 37.164
43.865 l 36.602 46.646 l 36.602 48.224 l 46.945 48.224 l 46.945 50.802 l
48.273 50.802 l 48.273 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
51.375 0.746 16.902 90.406 re S Q
0 0 1 rg
63.918 44.084 m 63.918 46.662 l 55.012 46.662 l 55.574 43.865 l 54.137
43.865 l 53.574 46.646 l 53.574 48.224 l 63.918 48.224 l 63.918 50.802 l
65.246 50.802 l 65.246 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
68.324 0.746 16.906 90.406 re S Q
0 0 1 rg
80.887 44.084 m 80.887 46.662 l 71.98 46.662 l 72.543 43.865 l 71.105 43.865
l 70.543 46.646 l 70.543 48.224 l 80.887 48.224 l 80.887 50.802 l 82.215
50.802 l 82.215 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
85.277 0.746 16.902 90.406 re S Q
0 0 1 rg
88.562 46.646 m 88.562 45.834 88.965 45.216 89.766 44.802 c 90.559 44.396
91.758 44.193 93.359 44.193 c 94.965 44.193 96.168 44.396 96.969 44.802
c 97.762 45.216 98.156 45.834 98.156 46.646 c 98.156 47.459 97.762 48.068
96.969 48.474 c 96.168 48.888 94.965 49.099 93.359 49.099 c 91.758 49.099
90.559 48.888 89.766 48.474 c 88.965 48.068 88.562 47.459 88.562 46.646
c h
87.312 46.646 m 87.312 47.947 87.828 48.943 88.859 49.63 c 89.891 50.326
91.391 50.677 93.359 50.677 c 95.328 50.677 96.836 50.326 97.875 49.63
c 98.906 48.943 99.422 47.947 99.422 46.646 c 99.422 45.334 98.906 44.334
97.875 43.646 c 96.836 42.959 95.328 42.615 93.359 42.615 c 91.391 42.615
89.891 42.959 88.859 43.646 c 87.828 44.334 87.312 45.334 87.312 46.646
c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
102.434 0.746 16.902 90.406 re S Q
0 0 1 rg
106.25 36.209 m 112.047 34.068 l 112.047 38.365 l h
104.688 35.318 m 104.688 37.115 l 116.359 41.552 l 116.359 39.912 l 113.359
38.849 l 113.359 33.599 l 116.359 32.537 l 116.359 30.865 l h
105.984 44.834 m 115.062 44.834 l 115.062 46.74 l 115.062 48.341 114.699
49.521 113.969 50.271 c 113.242 51.021 112.09 51.396 110.516 51.396 c 108.953
51.396 107.809 51.021 107.078 50.271 c 106.352 49.521 105.984 48.341 105.984
46.74 c h
104.688 43.255 m 104.688 46.49 l 104.688 48.748 105.164 50.404 106.109
51.459 c 107.047 52.521 108.516 53.052 110.516 53.052 c 112.527 53.052 114.008
52.521 114.953 51.459 c 115.891 50.396 116.359 48.74 116.359 46.49 c 116.359
43.255 l h
116.109 55.755 m 114.672 55.755 l 114.859 56.15 115.008 56.552 115.109
56.959 c 115.203 57.365 115.25 57.759 115.25 58.146 c 115.25 59.185 114.902
59.982 114.203 60.537 c 113.508 61.088 112.445 61.4 111.016 61.474 c 111.465
61.17 111.809 60.787 112.047 60.318 c 112.289 59.857 112.406 59.349 112.406
58.787 c 112.406 57.619 112.055 56.697 111.344 56.021 c 110.637 55.341
109.672 55.005 108.453 55.005 c 107.258 55.005 106.297 55.357 105.578 56.068
c 104.852 56.775 104.484 57.716 104.484 58.896 c 104.484 60.24 105 61.263
106.031 61.974 c 107.062 62.693 108.562 63.052 110.531 63.052 c 112.375
63.052 113.852 62.615 114.953 61.74 c 116.047 60.865 116.594 59.693 116.594
58.224 c 116.594 57.826 116.551 57.427 116.469 57.021 c 116.383 56.615
116.266 56.193 116.109 55.755 c h
111.172 58.896 m 111.172 59.603 110.934 60.162 110.453 60.568 c 109.965
60.982 109.297 61.193 108.453 61.193 c 107.609 61.193 106.949 60.982 106.469
60.568 c 105.98 60.162 105.734 59.603 105.734 58.896 c 105.734 58.185 105.98
57.623 106.469 57.209 c 106.949 56.791 107.609 56.584 108.453 56.584 c
109.297 56.584 109.965 56.791 110.453 57.209 c 110.934 57.623 111.172 58.185
111.172 58.896 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
119.383 0.746 16.906 90.406 re S Q
0 0 1 rg
123.219 36.209 m 129.016 34.068 l 129.016 38.365 l h
121.656 35.318 m 121.656 37.115 l 133.328 41.552 l 133.328 39.912 l 130.328
38.849 l 130.328 33.599 l 133.328 32.537 l 133.328 30.865 l h
122.953 44.834 m 132.031 44.834 l 132.031 46.74 l 132.031 48.341 131.668
49.521 130.938 50.271 c 130.211 51.021 129.059 51.396 127.484 51.396 c
125.922 51.396 124.777 51.021 124.047 50.271 c 123.32 49.521 122.953 48.341
122.953 46.74 c h
121.656 43.255 m 121.656 46.49 l 121.656 48.748 122.133 50.404 123.078
51.459 c 124.016 52.521 125.484 53.052 127.484 53.052 c 129.496 53.052 130.977
52.521 131.922 51.459 c 132.859 50.396 133.328 48.74 133.328 46.49 c 133.328
43.255 l h
127.781 59.084 m 127.781 58.334 127.984 57.74 128.391 57.302 c 128.789
56.873 129.34 56.662 130.047 56.662 c 130.746 56.662 131.297 56.873 131.703
57.302 c 132.102 57.74 132.297 58.334 132.297 59.084 c 132.297 59.834 132.102
60.42 131.703 60.849 c 131.297 61.287 130.746 61.505 130.047 61.505 c 129.34
61.505 128.789 61.287 128.391 60.849 c 127.984 60.42 127.781 59.834 127.781
59.084 c h
127.109 57.505 m 126.945 56.826 126.633 56.295 126.172 55.912 c 125.703
55.537 125.137 55.349 124.469 55.349 c 123.543 55.349 122.809 55.681 122.266
56.349 c 121.727 57.013 121.453 57.927 121.453 59.084 c 121.453 60.24 121.727
61.146 122.266 61.802 c 122.809 62.466 123.543 62.802 124.469 62.802 c
125.137 62.802 125.703 62.615 126.172 62.24 c 126.633 61.865 126.945 61.338
127.109 60.662 c 127.289 61.42 127.637 62.013 128.156 62.443 c 128.668
62.869 129.297 63.084 130.047 63.084 c 131.172 63.084 132.043 62.732 132.656
62.037 c 133.262 61.349 133.562 60.365 133.562 59.084 c 133.562 57.791
133.262 56.802 132.656 56.115 c 132.043 55.427 131.172 55.084 130.047 55.084
c 129.297 55.084 128.668 55.295 128.156 55.724 c 127.637 56.15 127.289
56.744 127.109 57.505 c h
124.625 56.927 m 125.23 56.927 125.703 57.115 126.047 57.49 c 126.383 57.865
126.547 58.396 126.547 59.084 c 126.547 59.759 126.383 60.287 126.047 60.662
c 125.703 61.045 125.23 61.24 124.625 61.24 c 124.023 61.24 123.555 61.045
123.219 60.662 c 122.875 60.287 122.703 59.759 122.703 59.084 c 122.703
58.396 122.875 57.865 123.219 57.49 c 123.555 57.115 124.023 56.927 124.625
56.927 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
136.336 0.746 16.902 90.406 re S Q
0 0 1 rg
144.832 23.709 m 144.949 24.041 145.191 24.369 145.566 24.693 c 145.941
25.013 146.457 25.338 147.113 25.662 c 150.301 27.255 l 150.301 25.568
l 147.301 24.068 l 146.52 23.681 146.004 23.306 145.754 22.943 c 145.496
22.588 145.363 22.099 145.363 21.474 c 145.363 19.755 l 150.301 19.755
l 150.301 18.177 l 138.629 18.177 l 138.629 21.74 l 138.629 23.072 138.91
24.068 139.473 24.724 c 140.027 25.38 140.863 25.709 141.988 25.709 c 142.73
25.709 143.344 25.537 143.832 25.193 c 144.312 24.849 144.645 24.353 144.832
23.709 c h
139.926 19.755 m 144.066 19.755 l 144.066 21.74 l 144.066 22.498 143.895
23.072 143.551 23.459 c 143.199 23.841 142.676 24.037 141.988 24.037 c
141.312 24.037 140.801 23.841 140.457 23.459 c 140.105 23.072 139.926 22.498
139.926 21.74 c h
138.629 31.787 m 138.629 33.115 l 151.785 29.052 l 151.785 27.724 l h
138.629 33.662 m 138.629 35.255 l 148.488 37.709 l 138.629 40.162 l 138.629
41.927 l 148.488 44.38 l 138.629 46.834 l 138.629 48.427 l 150.301 45.505
l 150.301 43.521 l 140.176 41.052 l 150.301 38.568 l 150.301 36.584 l h
143.035 55.74 m 143.035 65.755 l 144.348 65.755 l 144.348 55.74 l h
146.223 55.74 m 146.223 65.755 l 147.551 65.755 l 147.551 55.74 l h
139.676 77.63 m 139.676 76.818 140.078 76.201 140.879 75.787 c 141.672
75.38 142.871 75.177 144.473 75.177 c 146.078 75.177 147.281 75.38 148.082
75.787 c 148.875 76.201 149.27 76.818 149.27 77.63 c 149.27 78.443 148.875
79.052 148.082 79.459 c 147.281 79.873 146.078 80.084 144.473 80.084 c
142.871 80.084 141.672 79.873 140.879 79.459 c 140.078 79.052 139.676 78.443
139.676 77.63 c h
138.426 77.63 m 138.426 78.931 138.941 79.927 139.973 80.615 c 141.004
81.31 142.504 81.662 144.473 81.662 c 146.441 81.662 147.949 81.31 148.988
80.615 c 150.02 79.927 150.535 78.931 150.535 77.63 c 150.535 76.318 150.02
75.318 148.988 74.63 c 147.949 73.943 146.441 73.599 144.473 73.599 c 142.504
73.599 141.004 73.943 139.973 74.63 c 138.941 75.318 138.426 76.318 138.426
77.63 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
153.289 0.746 16.902 90.406 re S Q
0 1 0 rg
157.16 34.986 m 162.957 32.845 l 162.957 37.142 l h
155.598 34.095 m 155.598 35.892 l 167.27 40.33 l 167.27 38.689 l 164.27
37.627 l 164.27 32.377 l 167.27 31.314 l 167.27 29.642 l h
156.504 50.486 m 158.16 50.486 l 157.672 49.955 157.309 49.384 157.066
48.783 c 156.816 48.177 156.691 47.537 156.691 46.861 c 156.691 45.525 157.098
44.505 157.91 43.798 c 158.723 43.088 159.902 42.736 161.441 42.736 c 162.984
42.736 164.16 43.088 164.973 43.798 c 165.785 44.505 166.191 45.525 166.191
46.861 c 166.191 47.537 166.074 48.177 165.832 48.783 c 165.582 49.384
165.215 49.955 164.723 50.486 c 166.363 50.486 l 166.738 49.931 167.027
49.345 167.223 48.72 c 167.41 48.103 167.504 47.455 167.504 46.767 c 167.504
45.005 166.965 43.615 165.879 42.595 c 164.797 41.584 163.316 41.08 161.441
41.08 c 159.566 41.08 158.094 41.584 157.02 42.595 c 155.938 43.615 155.395
45.005 155.395 46.767 c 155.395 47.463 155.488 48.119 155.676 48.736 c
155.855 49.361 156.129 49.943 156.504 50.486 c h
155.598 52.939 m 155.598 54.517 l 160.535 54.517 l 155.598 59.752 l 155.598
61.783 l 161.035 55.986 l 167.27 62.189 l 167.27 60.111 l 161.645 54.517
l 167.27 54.517 l 167.27 52.939 l h
f
0 g
1.4896 w
[ 2.9792 2.9792] 0 d
q 1 0 0 -1 0 91.900002 cm
170.039 0.746 16.902 90.406 re S Q
0 1 0 rg
173.664 21.771 m 178.055 21.771 l 178.055 23.755 l 178.055 24.482 177.867
25.045 177.492 25.443 c 177.109 25.849 176.562 26.052 175.852 26.052 c
175.156 26.052 174.617 25.849 174.242 25.443 c 173.859 25.045 173.664 24.482
173.664 23.755 c h
172.367 20.193 m 172.367 23.755 l 172.367 25.056 172.664 26.041 173.258
26.709 c 173.852 27.384 174.719 27.724 175.852 27.724 c 177.008 27.724
177.883 27.384 178.477 26.709 c 179.062 26.041 179.352 25.056 179.352 23.755
c 179.352 21.771 l 184.039 21.771 l 184.039 20.193 l h
173.93 32.709 m 179.727 30.568 l 179.727 34.865 l h
172.367 31.818 m 172.367 33.615 l 184.039 38.052 l 184.039 36.412 l 181.039
35.349 l 181.039 30.099 l 184.039 29.037 l 184.039 27.365 l h
172.367 39.568 m 172.367 41.162 l 179.461 41.162 l 180.711 41.162 181.613
41.384 182.164 41.834 c 182.707 42.291 182.977 43.025 182.977 44.037 c
182.977 45.045 182.707 45.775 182.164 46.224 c 181.613 46.681 180.711 46.912
179.461 46.912 c 172.367 46.912 l 172.367 48.505 l 179.648 48.505 l 181.172
48.505 182.32 48.123 183.102 47.365 c 183.883 46.615 184.273 45.505 184.273
44.037 c 184.273 42.568 183.883 41.451 183.102 40.693 c 182.32 39.943 181.172
39.568 179.648 39.568 c h
172.758 58.459 m 174.289 58.459 l 174.008 57.865 173.801 57.302 173.664
56.771 c 173.52 56.24 173.445 55.724 173.445 55.224 c 173.445 54.369 173.613
53.709 173.945 53.24 c 174.281 52.771 174.754 52.537 175.367 52.537 c 175.879
52.537 176.27 52.693 176.539 53.005 c 176.801 53.318 177.008 53.904 177.164
54.771 c 177.367 55.724 l 177.586 56.9 177.984 57.763 178.555 58.318 c
179.117 58.88 179.875 59.162 180.82 59.162 c 181.945 59.162 182.805 58.779
183.398 58.021 c 183.984 57.271 184.273 56.162 184.273 54.693 c 184.273
54.138 184.203 53.552 184.07 52.927 c 183.945 52.31 183.766 51.67 183.523
51.005 c 181.898 51.005 l 182.254 51.638 182.523 52.263 182.711 52.88 c
182.891 53.494 182.977 54.099 182.977 54.693 c 182.977 55.599 182.801 56.295
182.445 56.787 c 182.094 57.275 181.586 57.521 180.93 57.521 c 180.359
57.521 179.91 57.341 179.586 56.99 c 179.266 56.634 179.023 56.056 178.867
55.255 c 178.68 54.302 l 178.441 53.123 178.07 52.271 177.57 51.74 c 177.07
51.216 176.379 50.959 175.492 50.959 c 174.461 50.959 173.648 51.318 173.055
52.037 c 172.461 52.763 172.164 53.771 172.164 55.052 c 172.164 55.591
172.219 56.146 172.32 56.709 c 172.414 57.279 172.562 57.865 172.758 58.459
c h
172.367 61.63 m 172.367 69.005 l 173.695 69.005 l 173.695 63.209 l 177.148
63.209 l 177.148 68.755 l 178.477 68.755 l 178.477 63.209 l 182.711 63.209
l 182.711 69.146 l 184.039 69.146 l 184.039 61.63 l h
f
0 g
1.489551 w
[] 0.0 d
q 1 0 0 -1 0 91.900002 cm
186.992 0.746 16.902 90.406 re S Q
0 0 1 rg
190.902 36.22 m 196.699 34.08 l 196.699 38.377 l h
189.34 35.33 m 189.34 37.127 l 201.012 41.564 l 201.012 39.923 l 198.012
38.861 l 198.012 33.611 l 201.012 32.548 l 201.012 30.877 l h
190.637 44.845 m 199.715 44.845 l 199.715 46.752 l 199.715 48.353 199.352
49.533 198.621 50.283 c 197.895 51.033 196.742 51.408 195.168 51.408 c
193.605 51.408 192.461 51.033 191.73 50.283 c 191.004 49.533 190.637 48.353
190.637 46.752 c h
189.34 43.267 m 189.34 46.502 l 189.34 48.759 189.816 50.416 190.762 51.47
c 191.699 52.533 193.168 53.064 195.168 53.064 c 197.18 53.064 198.66 52.533
199.605 51.47 c 200.543 50.408 201.012 48.752 201.012 46.502 c 201.012
43.267 l h
189.34 55.314 m 189.34 62.814 l 190.012 62.814 l 201.012 58.58 l 201.012
56.939 l 190.668 60.923 l 190.668 55.314 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
203.945 0.746 16.902 90.406 re S Q
0 0 1 rg
207.871 36.224 m 213.668 34.084 l 213.668 38.38 l h
206.309 35.334 m 206.309 37.13 l 217.98 41.568 l 217.98 39.927 l 214.98
38.865 l 214.98 33.615 l 217.98 32.552 l 217.98 30.88 l h
207.605 44.849 m 216.684 44.849 l 216.684 46.755 l 216.684 48.357 216.32
49.537 215.59 50.287 c 214.863 51.037 213.711 51.412 212.137 51.412 c 210.574
51.412 209.43 51.037 208.699 50.287 c 207.973 49.537 207.605 48.357 207.605
46.755 c h
206.309 43.271 m 206.309 46.505 l 206.309 48.763 206.785 50.42 207.73 51.474
c 208.668 52.537 210.137 53.068 212.137 53.068 c 214.148 53.068 215.629
52.537 216.574 51.474 c 217.512 50.412 217.98 48.755 217.98 46.505 c 217.98
43.271 l h
211.512 59.287 m 211.512 58.576 211.758 58.013 212.246 57.599 c 212.727
57.193 213.387 56.99 214.23 56.99 c 215.074 56.99 215.742 57.193 216.23
57.599 c 216.711 58.013 216.949 58.576 216.949 59.287 c 216.949 59.994
216.711 60.556 216.23 60.974 c 215.742 61.388 215.074 61.599 214.23 61.599
c 213.387 61.599 212.727 61.388 212.246 60.974 c 211.758 60.556 211.512
59.994 211.512 59.287 c h
206.574 62.427 m 208.012 62.427 l 207.824 62.029 207.684 61.63 207.59 61.224
c 207.488 60.818 207.434 60.416 207.434 60.021 c 207.434 58.978 207.789
58.181 208.496 57.63 c 209.195 57.088 210.254 56.775 211.668 56.693 c 211.223
57.005 210.879 57.388 210.637 57.849 c 210.387 58.318 210.262 58.826 210.262
59.38 c 210.262 60.556 210.621 61.482 211.34 62.162 c 212.051 62.838 213.012
63.177 214.23 63.177 c 215.43 63.177 216.395 62.822 217.121 62.115 c 217.852
61.404 218.215 60.463 218.215 59.287 c 218.215 57.943 217.699 56.912 216.668
56.193 c 215.629 55.482 214.121 55.13 212.152 55.13 c 210.309 55.13 208.84
55.568 207.746 56.443 c 206.652 57.318 206.105 58.49 206.105 59.959 c 206.105
60.353 206.148 60.755 206.23 61.162 c 206.305 61.568 206.418 61.99 206.574
62.427 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
220.895 0.746 16.906 90.406 re S Q
0 0 1 rg
224.844 36.177 m 230.641 34.037 l 230.641 38.334 l h
223.281 35.287 m 223.281 37.084 l 234.953 41.521 l 234.953 39.88 l 231.953
38.818 l 231.953 33.568 l 234.953 32.505 l 234.953 30.834 l h
224.578 44.802 m 233.656 44.802 l 233.656 46.709 l 233.656 48.31 233.293
49.49 232.562 50.24 c 231.836 50.99 230.684 51.365 229.109 51.365 c 227.547
51.365 226.402 50.99 225.672 50.24 c 224.945 49.49 224.578 48.31 224.578
46.709 c h
223.281 43.224 m 223.281 46.459 l 223.281 48.716 223.758 50.373 224.703
51.427 c 225.641 52.49 227.109 53.021 229.109 53.021 c 231.121 53.021 232.602
52.49 233.547 51.427 c 234.484 50.365 234.953 48.709 234.953 46.459 c 234.953
43.224 l h
223.281 55.693 m 223.281 61.88 l 224.609 61.88 l 224.609 57.13 l 227.469
57.13 l 227.398 57.357 227.34 57.588 227.297 57.818 c 227.258 58.045 227.234
58.275 227.234 58.505 c 227.234 59.806 227.594 60.838 228.312 61.599 c
229.023 62.357 229.984 62.74 231.203 62.74 c 232.465 62.74 233.445 62.349
234.141 61.568 c 234.84 60.787 235.188 59.685 235.188 58.271 c 235.188
57.779 235.141 57.279 235.047 56.771 c 234.961 56.259 234.84 55.732 234.672
55.193 c 233.094 55.193 l 233.344 55.662 233.531 56.146 233.656 56.646
c 233.781 57.146 233.844 57.677 233.844 58.24 c 233.844 59.134 233.609 59.841
233.141 60.365 c 232.664 60.896 232.016 61.162 231.203 61.162 c 230.391
61.162 229.75 60.896 229.281 60.365 c 228.805 59.841 228.562 59.134 228.562
58.24 c 228.562 57.81 228.609 57.388 228.703 56.974 c 228.797 56.556 228.945
56.13 229.141 55.693 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
237.848 0.746 16.902 90.406 re S Q
0 0 1 rg
241.812 36.244 m 247.609 34.103 l 247.609 38.4 l h
240.25 35.353 m 240.25 37.15 l 251.922 41.588 l 251.922 39.947 l 248.922
38.884 l 248.922 33.634 l 251.922 32.572 l 251.922 30.9 l h
241.547 44.869 m 250.625 44.869 l 250.625 46.775 l 250.625 48.377 250.262
49.556 249.531 50.306 c 248.805 51.056 247.652 51.431 246.078 51.431 c
244.516 51.431 243.371 51.056 242.641 50.306 c 241.914 49.556 241.547 48.377
241.547 46.775 c h
240.25 43.291 m 240.25 46.525 l 240.25 48.783 240.727 50.439 241.672 51.494
c 242.609 52.556 244.078 53.088 246.078 53.088 c 248.09 53.088 249.57 52.556
250.516 51.494 c 251.453 50.431 251.922 48.775 251.922 46.525 c 251.922
43.291 l h
241.625 60.072 m 247.859 56.088 l 247.859 60.072 l h
240.25 59.666 m 240.25 61.65 l 247.859 61.65 l 247.859 63.306 l 249.172
63.306 l 249.172 61.65 l 251.922 61.65 l 251.922 60.072 l 249.172 60.072
l 249.172 54.806 l 247.641 54.806 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
254.801 0.746 16.902 90.406 re S Q
0 0 1 rg
258.781 36.22 m 264.578 34.08 l 264.578 38.377 l h
257.219 35.33 m 257.219 37.127 l 268.891 41.564 l 268.891 39.923 l 265.891
38.861 l 265.891 33.611 l 268.891 32.548 l 268.891 30.877 l h
258.516 44.845 m 267.594 44.845 l 267.594 46.752 l 267.594 48.353 267.23
49.533 266.5 50.283 c 265.773 51.033 264.621 51.408 263.047 51.408 c 261.484
51.408 260.34 51.033 259.609 50.283 c 258.883 49.533 258.516 48.353 258.516
46.752 c h
257.219 43.267 m 257.219 46.502 l 257.219 48.759 257.695 50.416 258.641
51.47 c 259.578 52.533 261.047 53.064 263.047 53.064 c 265.059 53.064 266.539
52.533 267.484 51.47 c 268.422 50.408 268.891 48.752 268.891 46.502 c 268.891
43.267 l h
262.594 60.502 m 262.762 61.252 263.102 61.838 263.609 62.267 c 264.121
62.693 264.75 62.908 265.5 62.908 c 266.648 62.908 267.539 62.509 268.172
61.72 c 268.809 60.927 269.125 59.802 269.125 58.345 c 269.125 57.853 269.07
57.349 268.969 56.83 c 268.875 56.306 268.73 55.771 268.531 55.22 c 267.016
55.22 l 267.266 55.658 267.461 56.134 267.594 56.658 c 267.719 57.177 267.781
57.724 267.781 58.298 c 267.781 59.287 267.59 60.037 267.203 60.548 c 266.809
61.068 266.242 61.33 265.5 61.33 c 264.812 61.33 264.277 61.088 263.891
60.611 c 263.496 60.13 263.297 59.459 263.297 58.595 c 263.297 57.236 l
262 57.236 l 262 58.658 l 262 59.439 261.852 60.033 261.547 60.439 c 261.234
60.853 260.789 61.064 260.203 61.064 c 259.602 61.064 259.141 60.849 258.828
60.423 c 258.508 59.994 258.344 59.384 258.344 58.595 c 258.344 58.166
258.391 57.705 258.484 57.205 c 258.578 56.713 258.727 56.173 258.922 55.58
c 257.516 55.58 l 257.352 56.173 257.227 56.728 257.141 57.252 c 257.059
57.783 257.016 58.275 257.016 58.736 c 257.016 59.931 257.289 60.88 257.828
61.58 c 258.371 62.275 259.105 62.627 260.031 62.627 c 260.68 62.627 261.227
62.439 261.672 62.064 c 262.121 61.697 262.43 61.177 262.594 60.502 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
271.754 0.746 16.902 90.406 re S Q
0 0 1 rg
275.754 36.279 m 281.551 34.138 l 281.551 38.435 l h
274.191 35.388 m 274.191 37.185 l 285.863 41.623 l 285.863 39.982 l 282.863
38.92 l 282.863 33.67 l 285.863 32.607 l 285.863 30.935 l h
275.488 44.904 m 284.566 44.904 l 284.566 46.81 l 284.566 48.412 284.203
49.591 283.473 50.341 c 282.746 51.091 281.594 51.466 280.02 51.466 c 278.457
51.466 277.312 51.091 276.582 50.341 c 275.855 49.591 275.488 48.412 275.488
46.81 c h
274.191 43.326 m 274.191 46.56 l 274.191 48.818 274.668 50.474 275.613
51.529 c 276.551 52.591 278.02 53.123 280.02 53.123 c 282.031 53.123 283.512
52.591 284.457 51.529 c 285.395 50.466 285.863 48.81 285.863 46.56 c 285.863
43.326 l h
284.535 57.138 m 284.535 62.638 l 285.863 62.638 l 285.863 55.232 l 284.535
55.232 l 283.91 55.834 283.078 56.654 282.035 57.685 c 280.996 58.716 280.324
59.365 280.02 59.638 c 279.449 60.138 278.969 60.486 278.582 60.685 c 278.188
60.892 277.797 60.998 277.41 60.998 c 276.797 60.998 276.297 60.779 275.91
60.341 c 275.516 59.904 275.316 59.334 275.316 58.638 c 275.316 58.146
275.406 57.627 275.582 57.076 c 275.75 56.521 276.004 55.935 276.348 55.31
c 274.754 55.31 l 274.504 55.943 274.316 56.537 274.191 57.091 c 274.059
57.642 273.988 58.146 273.988 58.607 c 273.988 59.814 274.293 60.779 274.895
61.498 c 275.5 62.216 276.309 62.576 277.316 62.576 c 277.797 62.576 278.25
62.486 278.676 62.31 c 279.105 62.13 279.609 61.802 280.191 61.326 c 280.348
61.201 280.785 60.787 281.504 60.091 c 282.223 59.392 283.234 58.408 284.535
57.138 c h
f
292.723 37.326 m 298.52 35.185 l 298.52 39.482 l h
291.16 36.435 m 291.16 38.232 l 302.832 42.67 l 302.832 41.029 l 299.832
39.966 l 299.832 34.716 l 302.832 33.654 l 302.832 31.982 l h
292.457 45.951 m 301.535 45.951 l 301.535 47.857 l 301.535 49.459 301.172
50.638 300.441 51.388 c 299.715 52.138 298.562 52.513 296.988 52.513 c
295.426 52.513 294.281 52.138 293.551 51.388 c 292.824 50.638 292.457 49.459
292.457 47.857 c h
291.16 44.373 m 291.16 47.607 l 291.16 49.865 291.637 51.521 292.582 52.576
c 293.52 53.638 294.988 54.17 296.988 54.17 c 299 54.17 300.48 53.638 301.426
52.576 c 302.363 51.513 302.832 49.857 302.832 47.607 c 302.832 44.373
l h
301.504 57.091 m 301.504 59.67 l 292.598 59.67 l 293.16 56.873 l 291.723
56.873 l 291.16 59.654 l 291.16 61.232 l 301.504 61.232 l 301.504 63.81
l 302.832 63.81 l 302.832 57.091 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
288.703 0.746 16.906 90.406 re S Q
q 1 0 0 -1 0 91.900002 cm
305.457 0.746 16.902 90.406 re S Q
0 0 1 rg
309.492 36.24 m 315.289 34.099 l 315.289 38.396 l h
307.93 35.349 m 307.93 37.146 l 319.602 41.584 l 319.602 39.943 l 316.602
38.88 l 316.602 33.63 l 319.602 32.568 l 319.602 30.896 l h
309.227 44.865 m 318.305 44.865 l 318.305 46.771 l 318.305 48.373 317.941
49.552 317.211 50.302 c 316.484 51.052 315.332 51.427 313.758 51.427 c
312.195 51.427 311.051 51.052 310.32 50.302 c 309.594 49.552 309.227 48.373
309.227 46.771 c h
307.93 43.287 m 307.93 46.521 l 307.93 48.779 308.406 50.435 309.352 51.49
c 310.289 52.552 311.758 53.084 313.758 53.084 c 315.77 53.084 317.25 52.552
318.195 51.49 c 319.133 50.427 319.602 48.771 319.602 46.521 c 319.602
43.287 l h
308.977 59.115 m 308.977 58.302 309.379 57.685 310.18 57.271 c 310.973
56.865 312.172 56.662 313.773 56.662 c 315.379 56.662 316.582 56.865 317.383
57.271 c 318.176 57.685 318.57 58.302 318.57 59.115 c 318.57 59.927 318.176
60.537 317.383 60.943 c 316.582 61.357 315.379 61.568 313.773 61.568 c
312.172 61.568 310.973 61.357 310.18 60.943 c 309.379 60.537 308.977 59.927
308.977 59.115 c h
307.727 59.115 m 307.727 60.416 308.242 61.412 309.273 62.099 c 310.305
62.795 311.805 63.146 313.773 63.146 c 315.742 63.146 317.25 62.795 318.289
62.099 c 319.32 61.412 319.836 60.416 319.836 59.115 c 319.836 57.802 319.32
56.802 318.289 56.115 c 317.25 55.427 315.742 55.084 313.773 55.084 c 311.805
55.084 310.305 55.427 309.273 56.115 c 308.242 56.802 307.727 57.802 307.727
59.115 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
322.406 0.746 16.906 90.406 re S Q
0 1 0 rg
326.465 34.986 m 332.262 32.845 l 332.262 37.142 l h
324.902 34.095 m 324.902 35.892 l 336.574 40.33 l 336.574 38.689 l 333.574
37.627 l 333.574 32.377 l 336.574 31.314 l 336.574 29.642 l h
325.809 50.486 m 327.465 50.486 l 326.977 49.955 326.613 49.384 326.371
48.783 c 326.121 48.177 325.996 47.537 325.996 46.861 c 325.996 45.525
326.402 44.505 327.215 43.798 c 328.027 43.088 329.207 42.736 330.746 42.736
c 332.289 42.736 333.465 43.088 334.277 43.798 c 335.09 44.505 335.496
45.525 335.496 46.861 c 335.496 47.537 335.379 48.177 335.137 48.783 c 334.887
49.384 334.52 49.955 334.027 50.486 c 335.668 50.486 l 336.043 49.931 336.332
49.345 336.527 48.72 c 336.715 48.103 336.809 47.455 336.809 46.767 c 336.809
45.005 336.27 43.615 335.184 42.595 c 334.102 41.584 332.621 41.08 330.746
41.08 c 328.871 41.08 327.398 41.584 326.324 42.595 c 325.242 43.615 324.699
45.005 324.699 46.767 c 324.699 47.463 324.793 48.119 324.98 48.736 c 325.16
49.361 325.434 49.943 325.809 50.486 c h
324.902 52.939 m 324.902 54.517 l 329.84 54.517 l 324.902 59.752 l 324.902
61.783 l 330.34 55.986 l 336.574 62.189 l 336.574 60.111 l 330.949 54.517
l 336.574 54.517 l 336.574 52.939 l h
f
0 g
[ 2.979103 1.489551] 0 d
q 1 0 0 -1 0 91.900002 cm
339.359 0.746 16.906 90.406 re S Q
0 1 0 rg
343.168 21.771 m 347.559 21.771 l 347.559 23.755 l 347.559 24.482 347.371
25.045 346.996 25.443 c 346.613 25.849 346.066 26.052 345.355 26.052 c
344.66 26.052 344.121 25.849 343.746 25.443 c 343.363 25.045 343.168 24.482
343.168 23.755 c h
341.871 20.193 m 341.871 23.755 l 341.871 25.056 342.168 26.041 342.762
26.709 c 343.355 27.384 344.223 27.724 345.355 27.724 c 346.512 27.724
347.387 27.384 347.98 26.709 c 348.566 26.041 348.855 25.056 348.855 23.755
c 348.855 21.771 l 353.543 21.771 l 353.543 20.193 l h
343.434 32.709 m 349.23 30.568 l 349.23 34.865 l h
341.871 31.818 m 341.871 33.615 l 353.543 38.052 l 353.543 36.412 l 350.543
35.349 l 350.543 30.099 l 353.543 29.037 l 353.543 27.365 l h
341.871 39.568 m 341.871 41.162 l 348.965 41.162 l 350.215 41.162 351.117
41.384 351.668 41.834 c 352.211 42.291 352.48 43.025 352.48 44.037 c 352.48
45.045 352.211 45.775 351.668 46.224 c 351.117 46.681 350.215 46.912 348.965
46.912 c 341.871 46.912 l 341.871 48.505 l 349.152 48.505 l 350.676 48.505
351.824 48.123 352.605 47.365 c 353.387 46.615 353.777 45.505 353.777 44.037
c 353.777 42.568 353.387 41.451 352.605 40.693 c 351.824 39.943 350.676
39.568 349.152 39.568 c h
342.262 58.459 m 343.793 58.459 l 343.512 57.865 343.305 57.302 343.168
56.771 c 343.023 56.24 342.949 55.724 342.949 55.224 c 342.949 54.369 343.117
53.709 343.449 53.24 c 343.785 52.771 344.258 52.537 344.871 52.537 c 345.383
52.537 345.773 52.693 346.043 53.005 c 346.305 53.318 346.512 53.904 346.668
54.771 c 346.871 55.724 l 347.09 56.9 347.488 57.763 348.059 58.318 c 348.621
58.88 349.379 59.162 350.324 59.162 c 351.449 59.162 352.309 58.779 352.902
58.021 c 353.488 57.271 353.777 56.162 353.777 54.693 c 353.777 54.138
353.707 53.552 353.574 52.927 c 353.449 52.31 353.27 51.67 353.027 51.005
c 351.402 51.005 l 351.758 51.638 352.027 52.263 352.215 52.88 c 352.395
53.494 352.48 54.099 352.48 54.693 c 352.48 55.599 352.305 56.295 351.949
56.787 c 351.598 57.275 351.09 57.521 350.434 57.521 c 349.863 57.521 349.414
57.341 349.09 56.99 c 348.77 56.634 348.527 56.056 348.371 55.255 c 348.184
54.302 l 347.945 53.123 347.574 52.271 347.074 51.74 c 346.574 51.216 345.883
50.959 344.996 50.959 c 343.965 50.959 343.152 51.318 342.559 52.037 c
341.965 52.763 341.668 53.771 341.668 55.052 c 341.668 55.591 341.723 56.146
341.824 56.709 c 341.918 57.279 342.066 57.865 342.262 58.459 c h
341.871 61.63 m 341.871 69.005 l 343.199 69.005 l 343.199 63.209 l 346.652
63.209 l 346.652 68.755 l 347.98 68.755 l 347.98 63.209 l 352.215 63.209
l 352.215 69.146 l 353.543 69.146 l 353.543 61.63 l h
f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,534 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="456.25"
height="124.87"
id="svg2"
version="1.0"
inkscape:version="0.46"
sodipodi:docname="Adresse10bitsEcriture.svg"
inkscape:export-filename="G:\I2C\Images\Adresse10bitsEcriture.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:version="0.32"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 42.521328 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="706.22699 : 42.521328 : 1"
inkscape:persp3d-origin="353.11349 : 28.347552 : 1"
id="perspective2680" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="189.31181"
inkscape:cy="37.120166"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1280"
inkscape:window-height="968"
inkscape:window-x="0"
inkscape:window-y="22"
inkscape:window-maximized="1"
fit-margin-top="5"
fit-margin-left="5"
fit-margin-bottom="5"
fit-margin-right="5" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-10.599343,22.310484)">
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985"
width="21.129702"
height="113.0096"
x="16.530313"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-73.180367"
y="33.802715"
id="text3755"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757"
x="-73.180367"
y="33.802715"
style="font-size:20px;fill:#0000ff">START</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0"
width="21.129702"
height="113.0096"
x="37.678505"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938179"
y="54.973728"
id="text3755-0"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4"
x="-44.938179"
y="54.973728"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-8"
width="21.129702"
height="113.0096"
x="58.619854"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938179"
y="75.937675"
id="text3755-0-0"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-5"
x="-44.938179"
y="75.937675"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-88"
width="21.129702"
height="113.0096"
x="79.810204"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938179"
y="97.150887"
id="text3755-0-3"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-3"
x="-44.938179"
y="97.150887"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-7"
width="21.129702"
height="113.0096"
x="101.00055"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938179"
y="118.36408"
id="text3755-0-5"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-6"
x="-44.938179"
y="118.36408"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-3"
width="21.129702"
height="113.0096"
x="122.19088"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-45.621773"
y="139.57727"
id="text3755-0-7"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-1"
x="-45.621773"
y="139.57727"
style="font-size:20px;fill:#0000ff">0</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84"
width="21.129702"
height="113.0096"
x="143.63344"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.137398"
y="161.043"
id="text3755-0-58"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8"
x="-59.137398"
y="161.043"
style="font-size:20px;fill:#0000ff">AD9</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-9"
width="21.129702"
height="113.0096"
x="164.82381"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.137398"
y="182.25623"
id="text3755-0-58-3"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-2"
x="-59.137398"
y="182.25623"
style="font-size:20px;fill:#0000ff">AD8</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-3"
width="21.129702"
height="113.0096"
x="186.01413"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-76.813179"
y="203.46941"
id="text3755-0-58-0"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-5"
x="-76.813179"
y="203.46941"
style="font-size:20px;fill:#0000ff">R/W = 0</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-33"
width="21.129702"
height="113.0096"
x="207.2045"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-60.665718"
y="224.68263"
id="text3755-0-58-4"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-3"
x="-60.665718"
y="224.68263"
style="font-size:20px;fill:#00ff00">ACK</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86199999;stroke-miterlimit:4;stroke-dasharray:3.724, 3.724;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-1"
width="21.129702"
height="113.0096"
x="228.14256"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-74.293648"
y="245.64331"
id="text3755-0-58-7"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-6"
x="-74.293648"
y="245.64331"
style="font-size:20px;fill:#00ff00">PAUSE</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-4"
width="21.129702"
height="113.0096"
x="249.33292"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.122749"
y="266.85654"
id="text3755-0-58-2"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-31"
x="-59.122749"
y="266.85654"
style="font-size:20px;fill:#0000ff">AD7</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-39"
width="21.129702"
height="113.0096"
x="270.52328"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.117867"
y="288.06973"
id="text3755-0-58-6"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-9"
x="-59.117867"
y="288.06973"
style="font-size:20px;fill:#0000ff">AD6</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2"
width="21.129702"
height="113.0096"
x="291.71359"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.17646"
y="309.28296"
id="text3755-0-58-8"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0"
x="-59.17646"
y="309.28296"
style="font-size:20px;fill:#0000ff">AD5</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-5"
width="21.129702"
height="113.0096"
x="312.90393"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.093452"
y="330.49615"
id="text3755-0-58-8-1"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-5"
x="-59.093452"
y="330.49615"
style="font-size:20px;fill:#0000ff">AD4</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-59"
width="21.129702"
height="113.0096"
x="334.0943"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.122749"
y="351.70938"
id="text3755-0-58-8-13"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-51"
x="-59.122749"
y="351.70938"
style="font-size:20px;fill:#0000ff">AD3</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-1"
width="21.129702"
height="113.0096"
x="355.28467"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.049507"
y="372.92261"
id="text3755-0-58-8-2"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-9"
x="-59.049507"
y="372.92261"
style="font-size:20px;fill:#0000ff">AD2</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-57.740913"
y="394.1358"
id="text3755-0-58-8-14"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-7"
x="-57.740913"
y="394.1358"
style="font-size:20px;fill:#0000ff">AD1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-3"
width="21.129702"
height="113.0096"
x="376.47501"
y="-16.381079" />
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-2"
width="21.129702"
height="113.0096"
x="397.41302"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.098335"
y="415.09644"
id="text3755-0-58-8-5"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-6"
x="-59.098335"
y="415.09644"
style="font-size:20px;fill:#0000ff">AD0</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-14"
width="21.129702"
height="113.0096"
x="418.60336"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-60.665718"
y="436.30963"
id="text3755-0-58-8-6"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-2"
x="-60.665718"
y="436.30963"
style="font-size:20px;fill:#00ff00">ACK</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:3.72387838, 1.86193919;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4"
width="21.129702"
height="113.0096"
x="439.79373"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-74.293648"
y="457.52286"
id="text3755-0-58-8-9"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72"
x="-74.293648"
y="457.52286"
style="font-size:20px;fill:#00ff00">PAUSE</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,808 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: cairo 1.12.2 (http://cairographics.org)
%%CreationDate: Wed Oct 31 20:27:07 2012
%%Pages: 1
%%DocumentData: Clean7Bit
%%LanguageLevel: 2
%%BoundingBox: 0 -1 509 92
%%EndComments
%%BeginProlog
save
50 dict begin
/q { gsave } bind def
/Q { grestore } bind def
/cm { 6 array astore concat } bind def
/w { setlinewidth } bind def
/J { setlinecap } bind def
/j { setlinejoin } bind def
/M { setmiterlimit } bind def
/d { setdash } bind def
/m { moveto } bind def
/l { lineto } bind def
/c { curveto } bind def
/h { closepath } bind def
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
0 exch rlineto 0 rlineto closepath } bind def
/S { stroke } bind def
/f { fill } bind def
/f* { eofill } bind def
/n { newpath } bind def
/W { clip } bind def
/W* { eoclip } bind def
/BT { } bind def
/ET { } bind def
/pdfmark where { pop globaldict /?pdfmark /exec load put }
{ globaldict begin /?pdfmark /pop load def /pdfmark
/cleartomark load def end } ifelse
/BDC { mark 3 1 roll /BDC pdfmark } bind def
/EMC { mark /EMC pdfmark } bind def
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
/Tj { show currentpoint cairo_store_point } bind def
/TJ {
{
dup
type /stringtype eq
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
} forall
currentpoint cairo_store_point
} bind def
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
/Tf { pop /cairo_font exch def /cairo_font_matrix where
{ pop cairo_selectfont } if } bind def
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
/cairo_font where { pop cairo_selectfont } if } bind def
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
/g { setgray } bind def
/rg { setrgbcolor } bind def
/d1 { setcachedevice } bind def
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
%%PageBoundingBox: 0 -1 509 92
%%EndPageSetup
q 0 -1 509 93 rectclip q
0 g
1.489551 w
0 J
0 j
[] 0.0 d
4 M q 1 0 0 -1 0 91.900002 cm
0.75 0.746 16.902 90.406 re S Q
0 0 1 rg
3.285 28.068 m 4.816 28.068 l 4.535 27.474 4.328 26.912 4.191 26.38 c 4.047
25.849 3.973 25.334 3.973 24.834 c 3.973 23.978 4.141 23.318 4.473 22.849
c 4.809 22.38 5.281 22.146 5.895 22.146 c 6.406 22.146 6.797 22.302 7.066
22.615 c 7.328 22.927 7.535 23.513 7.691 24.38 c 7.895 25.334 l 8.113 26.509
8.512 27.373 9.082 27.927 c 9.645 28.49 10.402 28.771 11.348 28.771 c 12.473
28.771 13.332 28.388 13.926 27.63 c 14.512 26.88 14.801 25.771 14.801 24.302
c 14.801 23.748 14.73 23.162 14.598 22.537 c 14.473 21.92 14.293 21.279
14.051 20.615 c 12.426 20.615 l 12.781 21.248 13.051 21.873 13.238 22.49
c 13.418 23.103 13.504 23.709 13.504 24.302 c 13.504 25.209 13.328 25.904
12.973 26.396 c 12.621 26.884 12.113 27.13 11.457 27.13 c 10.887 27.13
10.438 26.951 10.113 26.599 c 9.793 26.244 9.551 25.666 9.395 24.865 c 9.207
23.912 l 8.969 22.732 8.598 21.88 8.098 21.349 c 7.598 20.826 6.906 20.568
6.02 20.568 c 4.988 20.568 4.176 20.927 3.582 21.646 c 2.988 22.373 2.691
23.38 2.691 24.662 c 2.691 25.201 2.746 25.755 2.848 26.318 c 2.941 26.888
3.09 27.474 3.285 28.068 c h
2.895 29.615 m 2.895 39.49 l 4.223 39.49 l 4.223 35.349 l 14.566 35.349
l 14.566 33.755 l 4.223 33.755 l 4.223 29.615 l h
4.457 43.662 m 10.254 41.521 l 10.254 45.818 l h
2.895 42.771 m 2.895 44.568 l 14.566 49.005 l 14.566 47.365 l 11.566 46.302
l 11.566 41.052 l 14.566 39.99 l 14.566 38.318 l h
9.098 56.24 m 9.215 56.572 9.457 56.9 9.832 57.224 c 10.207 57.545 10.723
57.869 11.379 58.193 c 14.566 59.787 l 14.566 58.099 l 11.566 56.599 l
10.785 56.213 10.27 55.838 10.02 55.474 c 9.762 55.119 9.629 54.63 9.629
54.005 c 9.629 52.287 l 14.566 52.287 l 14.566 50.709 l 2.895 50.709 l
2.895 54.271 l 2.895 55.603 3.176 56.599 3.738 57.255 c 4.293 57.912 5.129
58.24 6.254 58.24 c 6.996 58.24 7.609 58.068 8.098 57.724 c 8.578 57.38
8.91 56.884 9.098 56.24 c h
4.191 52.287 m 8.332 52.287 l 8.332 54.271 l 8.332 55.029 8.16 55.603 7.816
55.99 c 7.465 56.373 6.941 56.568 6.254 56.568 c 5.578 56.568 5.066 56.373
4.723 55.99 c 4.371 55.603 4.191 55.029 4.191 54.271 c h
2.895 59.052 m 2.895 68.927 l 4.223 68.927 l 4.223 64.787 l 14.566 64.787
l 14.566 63.193 l 4.223 63.193 l 4.223 59.052 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
17.668 0.746 16.902 90.406 re S Q
0 0 1 rg
30.176 44.084 m 30.176 46.662 l 21.27 46.662 l 21.832 43.865 l 20.395 43.865
l 19.832 46.646 l 19.832 48.224 l 30.176 48.224 l 30.176 50.802 l 31.504
50.802 l 31.504 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
34.422 0.746 16.902 90.406 re S Q
0 0 1 rg
46.945 44.084 m 46.945 46.662 l 38.039 46.662 l 38.602 43.865 l 37.164
43.865 l 36.602 46.646 l 36.602 48.224 l 46.945 48.224 l 46.945 50.802 l
48.273 50.802 l 48.273 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
51.375 0.746 16.902 90.406 re S Q
0 0 1 rg
63.918 44.084 m 63.918 46.662 l 55.012 46.662 l 55.574 43.865 l 54.137
43.865 l 53.574 46.646 l 53.574 48.224 l 63.918 48.224 l 63.918 50.802 l
65.246 50.802 l 65.246 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
68.324 0.746 16.906 90.406 re S Q
0 0 1 rg
80.887 44.084 m 80.887 46.662 l 71.98 46.662 l 72.543 43.865 l 71.105 43.865
l 70.543 46.646 l 70.543 48.224 l 80.887 48.224 l 80.887 50.802 l 82.215
50.802 l 82.215 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
85.277 0.746 16.902 90.406 re S Q
0 0 1 rg
88.562 46.646 m 88.562 45.834 88.965 45.216 89.766 44.802 c 90.559 44.396
91.758 44.193 93.359 44.193 c 94.965 44.193 96.168 44.396 96.969 44.802
c 97.762 45.216 98.156 45.834 98.156 46.646 c 98.156 47.459 97.762 48.068
96.969 48.474 c 96.168 48.888 94.965 49.099 93.359 49.099 c 91.758 49.099
90.559 48.888 89.766 48.474 c 88.965 48.068 88.562 47.459 88.562 46.646
c h
87.312 46.646 m 87.312 47.947 87.828 48.943 88.859 49.63 c 89.891 50.326
91.391 50.677 93.359 50.677 c 95.328 50.677 96.836 50.326 97.875 49.63
c 98.906 48.943 99.422 47.947 99.422 46.646 c 99.422 45.334 98.906 44.334
97.875 43.646 c 96.836 42.959 95.328 42.615 93.359 42.615 c 91.391 42.615
89.891 42.959 88.859 43.646 c 87.828 44.334 87.312 45.334 87.312 46.646
c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
102.434 0.746 16.902 90.406 re S Q
0 0 1 rg
106.25 36.209 m 112.047 34.068 l 112.047 38.365 l h
104.688 35.318 m 104.688 37.115 l 116.359 41.552 l 116.359 39.912 l 113.359
38.849 l 113.359 33.599 l 116.359 32.537 l 116.359 30.865 l h
105.984 44.834 m 115.062 44.834 l 115.062 46.74 l 115.062 48.341 114.699
49.521 113.969 50.271 c 113.242 51.021 112.09 51.396 110.516 51.396 c 108.953
51.396 107.809 51.021 107.078 50.271 c 106.352 49.521 105.984 48.341 105.984
46.74 c h
104.688 43.255 m 104.688 46.49 l 104.688 48.748 105.164 50.404 106.109
51.459 c 107.047 52.521 108.516 53.052 110.516 53.052 c 112.527 53.052 114.008
52.521 114.953 51.459 c 115.891 50.396 116.359 48.74 116.359 46.49 c 116.359
43.255 l h
116.109 55.755 m 114.672 55.755 l 114.859 56.15 115.008 56.552 115.109
56.959 c 115.203 57.365 115.25 57.759 115.25 58.146 c 115.25 59.185 114.902
59.982 114.203 60.537 c 113.508 61.088 112.445 61.4 111.016 61.474 c 111.465
61.17 111.809 60.787 112.047 60.318 c 112.289 59.857 112.406 59.349 112.406
58.787 c 112.406 57.619 112.055 56.697 111.344 56.021 c 110.637 55.341
109.672 55.005 108.453 55.005 c 107.258 55.005 106.297 55.357 105.578 56.068
c 104.852 56.775 104.484 57.716 104.484 58.896 c 104.484 60.24 105 61.263
106.031 61.974 c 107.062 62.693 108.562 63.052 110.531 63.052 c 112.375
63.052 113.852 62.615 114.953 61.74 c 116.047 60.865 116.594 59.693 116.594
58.224 c 116.594 57.826 116.551 57.427 116.469 57.021 c 116.383 56.615
116.266 56.193 116.109 55.755 c h
111.172 58.896 m 111.172 59.603 110.934 60.162 110.453 60.568 c 109.965
60.982 109.297 61.193 108.453 61.193 c 107.609 61.193 106.949 60.982 106.469
60.568 c 105.98 60.162 105.734 59.603 105.734 58.896 c 105.734 58.185 105.98
57.623 106.469 57.209 c 106.949 56.791 107.609 56.584 108.453 56.584 c
109.297 56.584 109.965 56.791 110.453 57.209 c 110.934 57.623 111.172 58.185
111.172 58.896 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
119.383 0.746 16.906 90.406 re S Q
0 0 1 rg
123.219 36.209 m 129.016 34.068 l 129.016 38.365 l h
121.656 35.318 m 121.656 37.115 l 133.328 41.552 l 133.328 39.912 l 130.328
38.849 l 130.328 33.599 l 133.328 32.537 l 133.328 30.865 l h
122.953 44.834 m 132.031 44.834 l 132.031 46.74 l 132.031 48.341 131.668
49.521 130.938 50.271 c 130.211 51.021 129.059 51.396 127.484 51.396 c
125.922 51.396 124.777 51.021 124.047 50.271 c 123.32 49.521 122.953 48.341
122.953 46.74 c h
121.656 43.255 m 121.656 46.49 l 121.656 48.748 122.133 50.404 123.078
51.459 c 124.016 52.521 125.484 53.052 127.484 53.052 c 129.496 53.052 130.977
52.521 131.922 51.459 c 132.859 50.396 133.328 48.74 133.328 46.49 c 133.328
43.255 l h
127.781 59.084 m 127.781 58.334 127.984 57.74 128.391 57.302 c 128.789
56.873 129.34 56.662 130.047 56.662 c 130.746 56.662 131.297 56.873 131.703
57.302 c 132.102 57.74 132.297 58.334 132.297 59.084 c 132.297 59.834 132.102
60.42 131.703 60.849 c 131.297 61.287 130.746 61.505 130.047 61.505 c 129.34
61.505 128.789 61.287 128.391 60.849 c 127.984 60.42 127.781 59.834 127.781
59.084 c h
127.109 57.505 m 126.945 56.826 126.633 56.295 126.172 55.912 c 125.703
55.537 125.137 55.349 124.469 55.349 c 123.543 55.349 122.809 55.681 122.266
56.349 c 121.727 57.013 121.453 57.927 121.453 59.084 c 121.453 60.24 121.727
61.146 122.266 61.802 c 122.809 62.466 123.543 62.802 124.469 62.802 c
125.137 62.802 125.703 62.615 126.172 62.24 c 126.633 61.865 126.945 61.338
127.109 60.662 c 127.289 61.42 127.637 62.013 128.156 62.443 c 128.668
62.869 129.297 63.084 130.047 63.084 c 131.172 63.084 132.043 62.732 132.656
62.037 c 133.262 61.349 133.562 60.365 133.562 59.084 c 133.562 57.791
133.262 56.802 132.656 56.115 c 132.043 55.427 131.172 55.084 130.047 55.084
c 129.297 55.084 128.668 55.295 128.156 55.724 c 127.637 56.15 127.289
56.744 127.109 57.505 c h
124.625 56.927 m 125.23 56.927 125.703 57.115 126.047 57.49 c 126.383 57.865
126.547 58.396 126.547 59.084 c 126.547 59.759 126.383 60.287 126.047 60.662
c 125.703 61.045 125.23 61.24 124.625 61.24 c 124.023 61.24 123.555 61.045
123.219 60.662 c 122.875 60.287 122.703 59.759 122.703 59.084 c 122.703
58.396 122.875 57.865 123.219 57.49 c 123.555 57.115 124.023 56.927 124.625
56.927 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
136.336 0.746 16.902 90.406 re S Q
0 0 1 rg
144.832 23.709 m 144.949 24.041 145.191 24.369 145.566 24.693 c 145.941
25.013 146.457 25.338 147.113 25.662 c 150.301 27.255 l 150.301 25.568
l 147.301 24.068 l 146.52 23.681 146.004 23.306 145.754 22.943 c 145.496
22.588 145.363 22.099 145.363 21.474 c 145.363 19.755 l 150.301 19.755
l 150.301 18.177 l 138.629 18.177 l 138.629 21.74 l 138.629 23.072 138.91
24.068 139.473 24.724 c 140.027 25.38 140.863 25.709 141.988 25.709 c 142.73
25.709 143.344 25.537 143.832 25.193 c 144.312 24.849 144.645 24.353 144.832
23.709 c h
139.926 19.755 m 144.066 19.755 l 144.066 21.74 l 144.066 22.498 143.895
23.072 143.551 23.459 c 143.199 23.841 142.676 24.037 141.988 24.037 c
141.312 24.037 140.801 23.841 140.457 23.459 c 140.105 23.072 139.926 22.498
139.926 21.74 c h
138.629 31.787 m 138.629 33.115 l 151.785 29.052 l 151.785 27.724 l h
138.629 33.662 m 138.629 35.255 l 148.488 37.709 l 138.629 40.162 l 138.629
41.927 l 148.488 44.38 l 138.629 46.834 l 138.629 48.427 l 150.301 45.505
l 150.301 43.521 l 140.176 41.052 l 150.301 38.568 l 150.301 36.584 l h
143.035 55.74 m 143.035 65.755 l 144.348 65.755 l 144.348 55.74 l h
146.223 55.74 m 146.223 65.755 l 147.551 65.755 l 147.551 55.74 l h
139.676 77.63 m 139.676 76.818 140.078 76.201 140.879 75.787 c 141.672
75.38 142.871 75.177 144.473 75.177 c 146.078 75.177 147.281 75.38 148.082
75.787 c 148.875 76.201 149.27 76.818 149.27 77.63 c 149.27 78.443 148.875
79.052 148.082 79.459 c 147.281 79.873 146.078 80.084 144.473 80.084 c
142.871 80.084 141.672 79.873 140.879 79.459 c 140.078 79.052 139.676 78.443
139.676 77.63 c h
138.426 77.63 m 138.426 78.931 138.941 79.927 139.973 80.615 c 141.004
81.31 142.504 81.662 144.473 81.662 c 146.441 81.662 147.949 81.31 148.988
80.615 c 150.02 79.927 150.535 78.931 150.535 77.63 c 150.535 76.318 150.02
75.318 148.988 74.63 c 147.949 73.943 146.441 73.599 144.473 73.599 c 142.504
73.599 141.004 73.943 139.973 74.63 c 138.941 75.318 138.426 76.318 138.426
77.63 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
153.289 0.746 16.902 90.406 re S Q
0 1 0 rg
157.16 34.986 m 162.957 32.845 l 162.957 37.142 l h
155.598 34.095 m 155.598 35.892 l 167.27 40.33 l 167.27 38.689 l 164.27
37.627 l 164.27 32.377 l 167.27 31.314 l 167.27 29.642 l h
156.504 50.486 m 158.16 50.486 l 157.672 49.955 157.309 49.384 157.066
48.783 c 156.816 48.177 156.691 47.537 156.691 46.861 c 156.691 45.525 157.098
44.505 157.91 43.798 c 158.723 43.088 159.902 42.736 161.441 42.736 c 162.984
42.736 164.16 43.088 164.973 43.798 c 165.785 44.505 166.191 45.525 166.191
46.861 c 166.191 47.537 166.074 48.177 165.832 48.783 c 165.582 49.384
165.215 49.955 164.723 50.486 c 166.363 50.486 l 166.738 49.931 167.027
49.345 167.223 48.72 c 167.41 48.103 167.504 47.455 167.504 46.767 c 167.504
45.005 166.965 43.615 165.879 42.595 c 164.797 41.584 163.316 41.08 161.441
41.08 c 159.566 41.08 158.094 41.584 157.02 42.595 c 155.938 43.615 155.395
45.005 155.395 46.767 c 155.395 47.463 155.488 48.119 155.676 48.736 c
155.855 49.361 156.129 49.943 156.504 50.486 c h
155.598 52.939 m 155.598 54.517 l 160.535 54.517 l 155.598 59.752 l 155.598
61.783 l 161.035 55.986 l 167.27 62.189 l 167.27 60.111 l 161.645 54.517
l 167.27 54.517 l 167.27 52.939 l h
f
0 g
1.4896 w
[ 2.9792 2.9792] 0 d
q 1 0 0 -1 0 91.900002 cm
170.039 0.746 16.902 90.406 re S Q
0 1 0 rg
173.664 21.771 m 178.055 21.771 l 178.055 23.755 l 178.055 24.482 177.867
25.045 177.492 25.443 c 177.109 25.849 176.562 26.052 175.852 26.052 c
175.156 26.052 174.617 25.849 174.242 25.443 c 173.859 25.045 173.664 24.482
173.664 23.755 c h
172.367 20.193 m 172.367 23.755 l 172.367 25.056 172.664 26.041 173.258
26.709 c 173.852 27.384 174.719 27.724 175.852 27.724 c 177.008 27.724
177.883 27.384 178.477 26.709 c 179.062 26.041 179.352 25.056 179.352 23.755
c 179.352 21.771 l 184.039 21.771 l 184.039 20.193 l h
173.93 32.709 m 179.727 30.568 l 179.727 34.865 l h
172.367 31.818 m 172.367 33.615 l 184.039 38.052 l 184.039 36.412 l 181.039
35.349 l 181.039 30.099 l 184.039 29.037 l 184.039 27.365 l h
172.367 39.568 m 172.367 41.162 l 179.461 41.162 l 180.711 41.162 181.613
41.384 182.164 41.834 c 182.707 42.291 182.977 43.025 182.977 44.037 c
182.977 45.045 182.707 45.775 182.164 46.224 c 181.613 46.681 180.711 46.912
179.461 46.912 c 172.367 46.912 l 172.367 48.505 l 179.648 48.505 l 181.172
48.505 182.32 48.123 183.102 47.365 c 183.883 46.615 184.273 45.505 184.273
44.037 c 184.273 42.568 183.883 41.451 183.102 40.693 c 182.32 39.943 181.172
39.568 179.648 39.568 c h
172.758 58.459 m 174.289 58.459 l 174.008 57.865 173.801 57.302 173.664
56.771 c 173.52 56.24 173.445 55.724 173.445 55.224 c 173.445 54.369 173.613
53.709 173.945 53.24 c 174.281 52.771 174.754 52.537 175.367 52.537 c 175.879
52.537 176.27 52.693 176.539 53.005 c 176.801 53.318 177.008 53.904 177.164
54.771 c 177.367 55.724 l 177.586 56.9 177.984 57.763 178.555 58.318 c
179.117 58.88 179.875 59.162 180.82 59.162 c 181.945 59.162 182.805 58.779
183.398 58.021 c 183.984 57.271 184.273 56.162 184.273 54.693 c 184.273
54.138 184.203 53.552 184.07 52.927 c 183.945 52.31 183.766 51.67 183.523
51.005 c 181.898 51.005 l 182.254 51.638 182.523 52.263 182.711 52.88 c
182.891 53.494 182.977 54.099 182.977 54.693 c 182.977 55.599 182.801 56.295
182.445 56.787 c 182.094 57.275 181.586 57.521 180.93 57.521 c 180.359
57.521 179.91 57.341 179.586 56.99 c 179.266 56.634 179.023 56.056 178.867
55.255 c 178.68 54.302 l 178.441 53.123 178.07 52.271 177.57 51.74 c 177.07
51.216 176.379 50.959 175.492 50.959 c 174.461 50.959 173.648 51.318 173.055
52.037 c 172.461 52.763 172.164 53.771 172.164 55.052 c 172.164 55.591
172.219 56.146 172.32 56.709 c 172.414 57.279 172.562 57.865 172.758 58.459
c h
172.367 61.63 m 172.367 69.005 l 173.695 69.005 l 173.695 63.209 l 177.148
63.209 l 177.148 68.755 l 178.477 68.755 l 178.477 63.209 l 182.711 63.209
l 182.711 69.146 l 184.039 69.146 l 184.039 61.63 l h
f
0 g
1.489551 w
[] 0.0 d
q 1 0 0 -1 0 91.900002 cm
186.992 0.746 16.902 90.406 re S Q
0 0 1 rg
190.902 36.22 m 196.699 34.08 l 196.699 38.377 l h
189.34 35.33 m 189.34 37.127 l 201.012 41.564 l 201.012 39.923 l 198.012
38.861 l 198.012 33.611 l 201.012 32.548 l 201.012 30.877 l h
190.637 44.845 m 199.715 44.845 l 199.715 46.752 l 199.715 48.353 199.352
49.533 198.621 50.283 c 197.895 51.033 196.742 51.408 195.168 51.408 c
193.605 51.408 192.461 51.033 191.73 50.283 c 191.004 49.533 190.637 48.353
190.637 46.752 c h
189.34 43.267 m 189.34 46.502 l 189.34 48.759 189.816 50.416 190.762 51.47
c 191.699 52.533 193.168 53.064 195.168 53.064 c 197.18 53.064 198.66 52.533
199.605 51.47 c 200.543 50.408 201.012 48.752 201.012 46.502 c 201.012
43.267 l h
189.34 55.314 m 189.34 62.814 l 190.012 62.814 l 201.012 58.58 l 201.012
56.939 l 190.668 60.923 l 190.668 55.314 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
203.945 0.746 16.902 90.406 re S Q
0 0 1 rg
207.871 36.224 m 213.668 34.084 l 213.668 38.38 l h
206.309 35.334 m 206.309 37.13 l 217.98 41.568 l 217.98 39.927 l 214.98
38.865 l 214.98 33.615 l 217.98 32.552 l 217.98 30.88 l h
207.605 44.849 m 216.684 44.849 l 216.684 46.755 l 216.684 48.357 216.32
49.537 215.59 50.287 c 214.863 51.037 213.711 51.412 212.137 51.412 c 210.574
51.412 209.43 51.037 208.699 50.287 c 207.973 49.537 207.605 48.357 207.605
46.755 c h
206.309 43.271 m 206.309 46.505 l 206.309 48.763 206.785 50.42 207.73 51.474
c 208.668 52.537 210.137 53.068 212.137 53.068 c 214.148 53.068 215.629
52.537 216.574 51.474 c 217.512 50.412 217.98 48.755 217.98 46.505 c 217.98
43.271 l h
211.512 59.287 m 211.512 58.576 211.758 58.013 212.246 57.599 c 212.727
57.193 213.387 56.99 214.23 56.99 c 215.074 56.99 215.742 57.193 216.23
57.599 c 216.711 58.013 216.949 58.576 216.949 59.287 c 216.949 59.994
216.711 60.556 216.23 60.974 c 215.742 61.388 215.074 61.599 214.23 61.599
c 213.387 61.599 212.727 61.388 212.246 60.974 c 211.758 60.556 211.512
59.994 211.512 59.287 c h
206.574 62.427 m 208.012 62.427 l 207.824 62.029 207.684 61.63 207.59 61.224
c 207.488 60.818 207.434 60.416 207.434 60.021 c 207.434 58.978 207.789
58.181 208.496 57.63 c 209.195 57.088 210.254 56.775 211.668 56.693 c 211.223
57.005 210.879 57.388 210.637 57.849 c 210.387 58.318 210.262 58.826 210.262
59.38 c 210.262 60.556 210.621 61.482 211.34 62.162 c 212.051 62.838 213.012
63.177 214.23 63.177 c 215.43 63.177 216.395 62.822 217.121 62.115 c 217.852
61.404 218.215 60.463 218.215 59.287 c 218.215 57.943 217.699 56.912 216.668
56.193 c 215.629 55.482 214.121 55.13 212.152 55.13 c 210.309 55.13 208.84
55.568 207.746 56.443 c 206.652 57.318 206.105 58.49 206.105 59.959 c 206.105
60.353 206.148 60.755 206.23 61.162 c 206.305 61.568 206.418 61.99 206.574
62.427 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
220.895 0.746 16.906 90.406 re S Q
0 0 1 rg
224.844 36.177 m 230.641 34.037 l 230.641 38.334 l h
223.281 35.287 m 223.281 37.084 l 234.953 41.521 l 234.953 39.88 l 231.953
38.818 l 231.953 33.568 l 234.953 32.505 l 234.953 30.834 l h
224.578 44.802 m 233.656 44.802 l 233.656 46.709 l 233.656 48.31 233.293
49.49 232.562 50.24 c 231.836 50.99 230.684 51.365 229.109 51.365 c 227.547
51.365 226.402 50.99 225.672 50.24 c 224.945 49.49 224.578 48.31 224.578
46.709 c h
223.281 43.224 m 223.281 46.459 l 223.281 48.716 223.758 50.373 224.703
51.427 c 225.641 52.49 227.109 53.021 229.109 53.021 c 231.121 53.021 232.602
52.49 233.547 51.427 c 234.484 50.365 234.953 48.709 234.953 46.459 c 234.953
43.224 l h
223.281 55.693 m 223.281 61.88 l 224.609 61.88 l 224.609 57.13 l 227.469
57.13 l 227.398 57.357 227.34 57.588 227.297 57.818 c 227.258 58.045 227.234
58.275 227.234 58.505 c 227.234 59.806 227.594 60.838 228.312 61.599 c
229.023 62.357 229.984 62.74 231.203 62.74 c 232.465 62.74 233.445 62.349
234.141 61.568 c 234.84 60.787 235.188 59.685 235.188 58.271 c 235.188
57.779 235.141 57.279 235.047 56.771 c 234.961 56.259 234.84 55.732 234.672
55.193 c 233.094 55.193 l 233.344 55.662 233.531 56.146 233.656 56.646
c 233.781 57.146 233.844 57.677 233.844 58.24 c 233.844 59.134 233.609 59.841
233.141 60.365 c 232.664 60.896 232.016 61.162 231.203 61.162 c 230.391
61.162 229.75 60.896 229.281 60.365 c 228.805 59.841 228.562 59.134 228.562
58.24 c 228.562 57.81 228.609 57.388 228.703 56.974 c 228.797 56.556 228.945
56.13 229.141 55.693 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
237.848 0.746 16.902 90.406 re S Q
0 0 1 rg
241.812 36.244 m 247.609 34.103 l 247.609 38.4 l h
240.25 35.353 m 240.25 37.15 l 251.922 41.588 l 251.922 39.947 l 248.922
38.884 l 248.922 33.634 l 251.922 32.572 l 251.922 30.9 l h
241.547 44.869 m 250.625 44.869 l 250.625 46.775 l 250.625 48.377 250.262
49.556 249.531 50.306 c 248.805 51.056 247.652 51.431 246.078 51.431 c
244.516 51.431 243.371 51.056 242.641 50.306 c 241.914 49.556 241.547 48.377
241.547 46.775 c h
240.25 43.291 m 240.25 46.525 l 240.25 48.783 240.727 50.439 241.672 51.494
c 242.609 52.556 244.078 53.088 246.078 53.088 c 248.09 53.088 249.57 52.556
250.516 51.494 c 251.453 50.431 251.922 48.775 251.922 46.525 c 251.922
43.291 l h
241.625 60.072 m 247.859 56.088 l 247.859 60.072 l h
240.25 59.666 m 240.25 61.65 l 247.859 61.65 l 247.859 63.306 l 249.172
63.306 l 249.172 61.65 l 251.922 61.65 l 251.922 60.072 l 249.172 60.072
l 249.172 54.806 l 247.641 54.806 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
254.801 0.746 16.902 90.406 re S Q
0 0 1 rg
258.781 36.22 m 264.578 34.08 l 264.578 38.377 l h
257.219 35.33 m 257.219 37.127 l 268.891 41.564 l 268.891 39.923 l 265.891
38.861 l 265.891 33.611 l 268.891 32.548 l 268.891 30.877 l h
258.516 44.845 m 267.594 44.845 l 267.594 46.752 l 267.594 48.353 267.23
49.533 266.5 50.283 c 265.773 51.033 264.621 51.408 263.047 51.408 c 261.484
51.408 260.34 51.033 259.609 50.283 c 258.883 49.533 258.516 48.353 258.516
46.752 c h
257.219 43.267 m 257.219 46.502 l 257.219 48.759 257.695 50.416 258.641
51.47 c 259.578 52.533 261.047 53.064 263.047 53.064 c 265.059 53.064 266.539
52.533 267.484 51.47 c 268.422 50.408 268.891 48.752 268.891 46.502 c 268.891
43.267 l h
262.594 60.502 m 262.762 61.252 263.102 61.838 263.609 62.267 c 264.121
62.693 264.75 62.908 265.5 62.908 c 266.648 62.908 267.539 62.509 268.172
61.72 c 268.809 60.927 269.125 59.802 269.125 58.345 c 269.125 57.853 269.07
57.349 268.969 56.83 c 268.875 56.306 268.73 55.771 268.531 55.22 c 267.016
55.22 l 267.266 55.658 267.461 56.134 267.594 56.658 c 267.719 57.177 267.781
57.724 267.781 58.298 c 267.781 59.287 267.59 60.037 267.203 60.548 c 266.809
61.068 266.242 61.33 265.5 61.33 c 264.812 61.33 264.277 61.088 263.891
60.611 c 263.496 60.13 263.297 59.459 263.297 58.595 c 263.297 57.236 l
262 57.236 l 262 58.658 l 262 59.439 261.852 60.033 261.547 60.439 c 261.234
60.853 260.789 61.064 260.203 61.064 c 259.602 61.064 259.141 60.849 258.828
60.423 c 258.508 59.994 258.344 59.384 258.344 58.595 c 258.344 58.166
258.391 57.705 258.484 57.205 c 258.578 56.713 258.727 56.173 258.922 55.58
c 257.516 55.58 l 257.352 56.173 257.227 56.728 257.141 57.252 c 257.059
57.783 257.016 58.275 257.016 58.736 c 257.016 59.931 257.289 60.88 257.828
61.58 c 258.371 62.275 259.105 62.627 260.031 62.627 c 260.68 62.627 261.227
62.439 261.672 62.064 c 262.121 61.697 262.43 61.177 262.594 60.502 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
271.754 0.746 16.902 90.406 re S Q
0 0 1 rg
275.754 36.279 m 281.551 34.138 l 281.551 38.435 l h
274.191 35.388 m 274.191 37.185 l 285.863 41.623 l 285.863 39.982 l 282.863
38.92 l 282.863 33.67 l 285.863 32.607 l 285.863 30.935 l h
275.488 44.904 m 284.566 44.904 l 284.566 46.81 l 284.566 48.412 284.203
49.591 283.473 50.341 c 282.746 51.091 281.594 51.466 280.02 51.466 c 278.457
51.466 277.312 51.091 276.582 50.341 c 275.855 49.591 275.488 48.412 275.488
46.81 c h
274.191 43.326 m 274.191 46.56 l 274.191 48.818 274.668 50.474 275.613
51.529 c 276.551 52.591 278.02 53.123 280.02 53.123 c 282.031 53.123 283.512
52.591 284.457 51.529 c 285.395 50.466 285.863 48.81 285.863 46.56 c 285.863
43.326 l h
284.535 57.138 m 284.535 62.638 l 285.863 62.638 l 285.863 55.232 l 284.535
55.232 l 283.91 55.834 283.078 56.654 282.035 57.685 c 280.996 58.716 280.324
59.365 280.02 59.638 c 279.449 60.138 278.969 60.486 278.582 60.685 c 278.188
60.892 277.797 60.998 277.41 60.998 c 276.797 60.998 276.297 60.779 275.91
60.341 c 275.516 59.904 275.316 59.334 275.316 58.638 c 275.316 58.146
275.406 57.627 275.582 57.076 c 275.75 56.521 276.004 55.935 276.348 55.31
c 274.754 55.31 l 274.504 55.943 274.316 56.537 274.191 57.091 c 274.059
57.642 273.988 58.146 273.988 58.607 c 273.988 59.814 274.293 60.779 274.895
61.498 c 275.5 62.216 276.309 62.576 277.316 62.576 c 277.797 62.576 278.25
62.486 278.676 62.31 c 279.105 62.13 279.609 61.802 280.191 61.326 c 280.348
61.201 280.785 60.787 281.504 60.091 c 282.223 59.392 283.234 58.408 284.535
57.138 c h
f
292.723 37.326 m 298.52 35.185 l 298.52 39.482 l h
291.16 36.435 m 291.16 38.232 l 302.832 42.67 l 302.832 41.029 l 299.832
39.966 l 299.832 34.716 l 302.832 33.654 l 302.832 31.982 l h
292.457 45.951 m 301.535 45.951 l 301.535 47.857 l 301.535 49.459 301.172
50.638 300.441 51.388 c 299.715 52.138 298.562 52.513 296.988 52.513 c
295.426 52.513 294.281 52.138 293.551 51.388 c 292.824 50.638 292.457 49.459
292.457 47.857 c h
291.16 44.373 m 291.16 47.607 l 291.16 49.865 291.637 51.521 292.582 52.576
c 293.52 53.638 294.988 54.17 296.988 54.17 c 299 54.17 300.48 53.638 301.426
52.576 c 302.363 51.513 302.832 49.857 302.832 47.607 c 302.832 44.373
l h
301.504 57.091 m 301.504 59.67 l 292.598 59.67 l 293.16 56.873 l 291.723
56.873 l 291.16 59.654 l 291.16 61.232 l 301.504 61.232 l 301.504 63.81
l 302.832 63.81 l 302.832 57.091 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
288.703 0.746 16.906 90.406 re S Q
q 1 0 0 -1 0 91.900002 cm
305.457 0.746 16.902 90.406 re S Q
0 0 1 rg
309.492 36.24 m 315.289 34.099 l 315.289 38.396 l h
307.93 35.349 m 307.93 37.146 l 319.602 41.584 l 319.602 39.943 l 316.602
38.88 l 316.602 33.63 l 319.602 32.568 l 319.602 30.896 l h
309.227 44.865 m 318.305 44.865 l 318.305 46.771 l 318.305 48.373 317.941
49.552 317.211 50.302 c 316.484 51.052 315.332 51.427 313.758 51.427 c
312.195 51.427 311.051 51.052 310.32 50.302 c 309.594 49.552 309.227 48.373
309.227 46.771 c h
307.93 43.287 m 307.93 46.521 l 307.93 48.779 308.406 50.435 309.352 51.49
c 310.289 52.552 311.758 53.084 313.758 53.084 c 315.77 53.084 317.25 52.552
318.195 51.49 c 319.133 50.427 319.602 48.771 319.602 46.521 c 319.602
43.287 l h
308.977 59.115 m 308.977 58.302 309.379 57.685 310.18 57.271 c 310.973
56.865 312.172 56.662 313.773 56.662 c 315.379 56.662 316.582 56.865 317.383
57.271 c 318.176 57.685 318.57 58.302 318.57 59.115 c 318.57 59.927 318.176
60.537 317.383 60.943 c 316.582 61.357 315.379 61.568 313.773 61.568 c
312.172 61.568 310.973 61.357 310.18 60.943 c 309.379 60.537 308.977 59.927
308.977 59.115 c h
307.727 59.115 m 307.727 60.416 308.242 61.412 309.273 62.099 c 310.305
62.795 311.805 63.146 313.773 63.146 c 315.742 63.146 317.25 62.795 318.289
62.099 c 319.32 61.412 319.836 60.416 319.836 59.115 c 319.836 57.802 319.32
56.802 318.289 56.115 c 317.25 55.427 315.742 55.084 313.773 55.084 c 311.805
55.084 310.305 55.427 309.273 56.115 c 308.242 56.802 307.727 57.802 307.727
59.115 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
322.406 0.746 16.906 90.406 re S Q
0 1 0 rg
326.465 34.986 m 332.262 32.845 l 332.262 37.142 l h
324.902 34.095 m 324.902 35.892 l 336.574 40.33 l 336.574 38.689 l 333.574
37.627 l 333.574 32.377 l 336.574 31.314 l 336.574 29.642 l h
325.809 50.486 m 327.465 50.486 l 326.977 49.955 326.613 49.384 326.371
48.783 c 326.121 48.177 325.996 47.537 325.996 46.861 c 325.996 45.525
326.402 44.505 327.215 43.798 c 328.027 43.088 329.207 42.736 330.746 42.736
c 332.289 42.736 333.465 43.088 334.277 43.798 c 335.09 44.505 335.496
45.525 335.496 46.861 c 335.496 47.537 335.379 48.177 335.137 48.783 c 334.887
49.384 334.52 49.955 334.027 50.486 c 335.668 50.486 l 336.043 49.931 336.332
49.345 336.527 48.72 c 336.715 48.103 336.809 47.455 336.809 46.767 c 336.809
45.005 336.27 43.615 335.184 42.595 c 334.102 41.584 332.621 41.08 330.746
41.08 c 328.871 41.08 327.398 41.584 326.324 42.595 c 325.242 43.615 324.699
45.005 324.699 46.767 c 324.699 47.463 324.793 48.119 324.98 48.736 c 325.16
49.361 325.434 49.943 325.809 50.486 c h
324.902 52.939 m 324.902 54.517 l 329.84 54.517 l 324.902 59.752 l 324.902
61.783 l 330.34 55.986 l 336.574 62.189 l 336.574 60.111 l 330.949 54.517
l 336.574 54.517 l 336.574 52.939 l h
f
0 g
[ 2.979103 1.489551] 0 d
q 1 0 0 -1 0 91.900002 cm
339.359 0.746 16.906 90.406 re S Q
0 1 0 rg
343.168 21.771 m 347.559 21.771 l 347.559 23.755 l 347.559 24.482 347.371
25.045 346.996 25.443 c 346.613 25.849 346.066 26.052 345.355 26.052 c
344.66 26.052 344.121 25.849 343.746 25.443 c 343.363 25.045 343.168 24.482
343.168 23.755 c h
341.871 20.193 m 341.871 23.755 l 341.871 25.056 342.168 26.041 342.762
26.709 c 343.355 27.384 344.223 27.724 345.355 27.724 c 346.512 27.724
347.387 27.384 347.98 26.709 c 348.566 26.041 348.855 25.056 348.855 23.755
c 348.855 21.771 l 353.543 21.771 l 353.543 20.193 l h
343.434 32.709 m 349.23 30.568 l 349.23 34.865 l h
341.871 31.818 m 341.871 33.615 l 353.543 38.052 l 353.543 36.412 l 350.543
35.349 l 350.543 30.099 l 353.543 29.037 l 353.543 27.365 l h
341.871 39.568 m 341.871 41.162 l 348.965 41.162 l 350.215 41.162 351.117
41.384 351.668 41.834 c 352.211 42.291 352.48 43.025 352.48 44.037 c 352.48
45.045 352.211 45.775 351.668 46.224 c 351.117 46.681 350.215 46.912 348.965
46.912 c 341.871 46.912 l 341.871 48.505 l 349.152 48.505 l 350.676 48.505
351.824 48.123 352.605 47.365 c 353.387 46.615 353.777 45.505 353.777 44.037
c 353.777 42.568 353.387 41.451 352.605 40.693 c 351.824 39.943 350.676
39.568 349.152 39.568 c h
342.262 58.459 m 343.793 58.459 l 343.512 57.865 343.305 57.302 343.168
56.771 c 343.023 56.24 342.949 55.724 342.949 55.224 c 342.949 54.369 343.117
53.709 343.449 53.24 c 343.785 52.771 344.258 52.537 344.871 52.537 c 345.383
52.537 345.773 52.693 346.043 53.005 c 346.305 53.318 346.512 53.904 346.668
54.771 c 346.871 55.724 l 347.09 56.9 347.488 57.763 348.059 58.318 c 348.621
58.88 349.379 59.162 350.324 59.162 c 351.449 59.162 352.309 58.779 352.902
58.021 c 353.488 57.271 353.777 56.162 353.777 54.693 c 353.777 54.138
353.707 53.552 353.574 52.927 c 353.449 52.31 353.27 51.67 353.027 51.005
c 351.402 51.005 l 351.758 51.638 352.027 52.263 352.215 52.88 c 352.395
53.494 352.48 54.099 352.48 54.693 c 352.48 55.599 352.305 56.295 351.949
56.787 c 351.598 57.275 351.09 57.521 350.434 57.521 c 349.863 57.521 349.414
57.341 349.09 56.99 c 348.77 56.634 348.527 56.056 348.371 55.255 c 348.184
54.302 l 347.945 53.123 347.574 52.271 347.074 51.74 c 346.574 51.216 345.883
50.959 344.996 50.959 c 343.965 50.959 343.152 51.318 342.559 52.037 c
341.965 52.763 341.668 53.771 341.668 55.052 c 341.668 55.591 341.723 56.146
341.824 56.709 c 341.918 57.279 342.066 57.865 342.262 58.459 c h
341.871 61.63 m 341.871 69.005 l 343.199 69.005 l 343.199 63.209 l 346.652
63.209 l 346.652 68.755 l 347.98 68.755 l 347.98 63.209 l 352.215 63.209
l 352.215 69.146 l 353.543 69.146 l 353.543 61.63 l h
f
0 g
[] 0.0 d
q 1 0 0 -1 0 91.900002 cm
356.109 0.746 16.906 90.406 re S Q
0 0 1 rg
364.844 15.22 m 364.961 15.552 365.203 15.88 365.578 16.205 c 365.953 16.525
366.469 16.849 367.125 17.173 c 370.312 18.767 l 370.312 17.08 l 367.312
15.58 l 366.531 15.193 366.016 14.818 365.766 14.455 c 365.508 14.099 365.375
13.611 365.375 12.986 c 365.375 11.267 l 370.312 11.267 l 370.312 9.689
l 358.641 9.689 l 358.641 13.252 l 358.641 14.584 358.922 15.58 359.484
16.236 c 360.039 16.892 360.875 17.22 362 17.22 c 362.742 17.22 363.355
17.048 363.844 16.705 c 364.324 16.361 364.656 15.865 364.844 15.22 c h
359.938 11.267 m 364.078 11.267 l 364.078 13.252 l 364.078 14.009 363.906
14.584 363.562 14.97 c 363.211 15.353 362.688 15.548 362 15.548 c 361.324
15.548 360.812 15.353 360.469 14.97 c 360.117 14.584 359.938 14.009 359.938
13.252 c h
358.641 20.814 m 358.641 28.189 l 359.969 28.189 l 359.969 22.392 l 363.422
22.392 l 363.422 27.939 l 364.75 27.939 l 364.75 22.392 l 368.984 22.392
l 368.984 28.33 l 370.312 28.33 l 370.312 20.814 l h
359.031 37.923 m 360.562 37.923 l 360.281 37.33 360.074 36.767 359.938
36.236 c 359.793 35.705 359.719 35.189 359.719 34.689 c 359.719 33.834 359.887
33.173 360.219 32.705 c 360.555 32.236 361.027 32.002 361.641 32.002 c
362.152 32.002 362.543 32.158 362.812 32.47 c 363.074 32.783 363.281 33.369
363.438 34.236 c 363.641 35.189 l 363.859 36.365 364.258 37.228 364.828
37.783 c 365.391 38.345 366.148 38.627 367.094 38.627 c 368.219 38.627
369.078 38.244 369.672 37.486 c 370.258 36.736 370.547 35.627 370.547 34.158
c 370.547 33.603 370.477 33.017 370.344 32.392 c 370.219 31.775 370.039
31.134 369.797 30.47 c 368.172 30.47 l 368.527 31.103 368.797 31.728 368.984
32.345 c 369.164 32.959 369.25 33.564 369.25 34.158 c 369.25 35.064 369.074
35.759 368.719 36.252 c 368.367 36.74 367.859 36.986 367.203 36.986 c 366.633
36.986 366.184 36.806 365.859 36.455 c 365.539 36.099 365.297 35.521 365.141
34.72 c 364.953 33.767 l 364.715 32.588 364.344 31.736 363.844 31.205 c
363.344 30.681 362.652 30.423 361.766 30.423 c 360.734 30.423 359.922 30.783
359.328 31.502 c 358.734 32.228 358.438 33.236 358.438 34.517 c 358.438
35.056 358.492 35.611 358.594 36.173 c 358.688 36.744 358.836 37.33 359.031
37.923 c h
358.641 39.47 m 358.641 49.345 l 359.969 49.345 l 359.969 45.205 l 370.312
45.205 l 370.312 43.611 l 359.969 43.611 l 359.969 39.47 l h
360.203 53.517 m 366 51.377 l 366 55.673 l h
358.641 52.627 m 358.641 54.423 l 370.312 58.861 l 370.312 57.22 l 367.312
56.158 l 367.312 50.908 l 370.312 49.845 l 370.312 48.173 l h
364.844 66.095 m 364.961 66.427 365.203 66.755 365.578 67.08 c 365.953
67.4 366.469 67.724 367.125 68.048 c 370.312 69.642 l 370.312 67.955 l 367.312
66.455 l 366.531 66.068 366.016 65.693 365.766 65.33 c 365.508 64.974 365.375
64.486 365.375 63.861 c 365.375 62.142 l 370.312 62.142 l 370.312 60.564
l 358.641 60.564 l 358.641 64.127 l 358.641 65.459 358.922 66.455 359.484
67.111 c 360.039 67.767 360.875 68.095 362 68.095 c 362.742 68.095 363.355
67.923 363.844 67.58 c 364.324 67.236 364.656 66.74 364.844 66.095 c h
359.938 62.142 m 364.078 62.142 l 364.078 64.127 l 364.078 64.884 363.906
65.459 363.562 65.845 c 363.211 66.228 362.688 66.423 362 66.423 c 361.324
66.423 360.812 66.228 360.469 65.845 c 360.117 65.459 359.938 64.884 359.938
64.127 c h
358.641 68.908 m 358.641 78.783 l 359.969 78.783 l 359.969 74.642 l 370.312
74.642 l 370.312 73.048 l 359.969 73.048 l 359.969 68.908 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
372.859 0.746 16.906 90.406 re S Q
0 0 1 rg
385.754 44.084 m 385.754 46.662 l 376.848 46.662 l 377.41 43.865 l 375.973
43.865 l 375.41 46.646 l 375.41 48.224 l 385.754 48.224 l 385.754 50.802
l 387.082 50.802 l 387.082 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
389.812 0.746 16.906 90.406 re S Q
0 0 1 rg
402.723 44.084 m 402.723 46.662 l 393.816 46.662 l 394.379 43.865 l 392.941
43.865 l 392.379 46.646 l 392.379 48.224 l 402.723 48.224 l 402.723 50.802
l 404.051 50.802 l 404.051 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
406.562 0.746 16.906 90.406 re S Q
0 0 1 rg
419.492 44.084 m 419.492 46.662 l 410.586 46.662 l 411.148 43.865 l 409.711
43.865 l 409.148 46.646 l 409.148 48.224 l 419.492 48.224 l 419.492 50.802
l 420.82 50.802 l 420.82 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
423.312 0.746 16.906 90.406 re S Q
0 0 1 rg
436.262 44.084 m 436.262 46.662 l 427.355 46.662 l 427.918 43.865 l 426.48
43.865 l 425.918 46.646 l 425.918 48.224 l 436.262 48.224 l 436.262 50.802
l 437.59 50.802 l 437.59 44.084 l h
f
0 g
q 1 0 0 -1 0 91.900002 cm
440.066 0.746 16.902 90.406 re S Q
0 0 1 rg
443.73 46.646 m 443.73 45.834 444.133 45.216 444.934 44.802 c 445.727 44.396
446.926 44.193 448.527 44.193 c 450.133 44.193 451.336 44.396 452.137 44.802
c 452.93 45.216 453.324 45.834 453.324 46.646 c 453.324 47.459 452.93 48.068
452.137 48.474 c 451.336 48.888 450.133 49.099 448.527 49.099 c 446.926
49.099 445.727 48.888 444.934 48.474 c 444.133 48.068 443.73 47.459 443.73
46.646 c h
442.48 46.646 m 442.48 47.947 442.996 48.943 444.027 49.63 c 445.059 50.326
446.559 50.677 448.527 50.677 c 450.496 50.677 452.004 50.326 453.043 49.63
c 454.074 48.943 454.59 47.947 454.59 46.646 c 454.59 45.334 454.074 44.334
453.043 43.646 c 452.004 42.959 450.496 42.615 448.527 42.615 c 446.559
42.615 445.059 42.959 444.027 43.646 c 442.996 44.334 442.48 45.334 442.48
46.646 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
456.816 0.746 16.902 90.406 re S Q
0 0 1 rg
461.016 36.209 m 466.812 34.068 l 466.812 38.365 l h
459.453 35.318 m 459.453 37.115 l 471.125 41.552 l 471.125 39.912 l 468.125
38.849 l 468.125 33.599 l 471.125 32.537 l 471.125 30.865 l h
460.75 44.834 m 469.828 44.834 l 469.828 46.74 l 469.828 48.341 469.465
49.521 468.734 50.271 c 468.008 51.021 466.855 51.396 465.281 51.396 c
463.719 51.396 462.574 51.021 461.844 50.271 c 461.117 49.521 460.75 48.341
460.75 46.74 c h
459.453 43.255 m 459.453 46.49 l 459.453 48.748 459.93 50.404 460.875 51.459
c 461.812 52.521 463.281 53.052 465.281 53.052 c 467.293 53.052 468.773
52.521 469.719 51.459 c 470.656 50.396 471.125 48.74 471.125 46.49 c 471.125
43.255 l h
470.875 55.755 m 469.438 55.755 l 469.625 56.15 469.773 56.552 469.875
56.959 c 469.969 57.365 470.016 57.759 470.016 58.146 c 470.016 59.185 469.668
59.982 468.969 60.537 c 468.273 61.088 467.211 61.4 465.781 61.474 c 466.23
61.17 466.574 60.787 466.812 60.318 c 467.055 59.857 467.172 59.349 467.172
58.787 c 467.172 57.619 466.82 56.697 466.109 56.021 c 465.402 55.341 464.438
55.005 463.219 55.005 c 462.023 55.005 461.062 55.357 460.344 56.068 c
459.617 56.775 459.25 57.716 459.25 58.896 c 459.25 60.24 459.766 61.263
460.797 61.974 c 461.828 62.693 463.328 63.052 465.297 63.052 c 467.141
63.052 468.617 62.615 469.719 61.74 c 470.812 60.865 471.359 59.693 471.359
58.224 c 471.359 57.826 471.316 57.427 471.234 57.021 c 471.148 56.615
471.031 56.193 470.875 55.755 c h
465.938 58.896 m 465.938 59.603 465.699 60.162 465.219 60.568 c 464.73
60.982 464.062 61.193 463.219 61.193 c 462.375 61.193 461.715 60.982 461.234
60.568 c 460.746 60.162 460.5 59.603 460.5 58.896 c 460.5 58.185 460.746
57.623 461.234 57.209 c 461.715 56.791 462.375 56.584 463.219 56.584 c
464.062 56.584 464.73 56.791 465.219 57.209 c 465.699 57.623 465.938 58.185
465.938 58.896 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
473.766 0.746 16.906 90.406 re S Q
0 0 1 rg
477.984 36.209 m 483.781 34.068 l 483.781 38.365 l h
476.422 35.318 m 476.422 37.115 l 488.094 41.552 l 488.094 39.912 l 485.094
38.849 l 485.094 33.599 l 488.094 32.537 l 488.094 30.865 l h
477.719 44.834 m 486.797 44.834 l 486.797 46.74 l 486.797 48.341 486.434
49.521 485.703 50.271 c 484.977 51.021 483.824 51.396 482.25 51.396 c 480.688
51.396 479.543 51.021 478.812 50.271 c 478.086 49.521 477.719 48.341 477.719
46.74 c h
476.422 43.255 m 476.422 46.49 l 476.422 48.748 476.898 50.404 477.844
51.459 c 478.781 52.521 480.25 53.052 482.25 53.052 c 484.262 53.052 485.742
52.521 486.688 51.459 c 487.625 50.396 488.094 48.74 488.094 46.49 c 488.094
43.255 l h
482.547 59.084 m 482.547 58.334 482.75 57.74 483.156 57.302 c 483.555 56.873
484.105 56.662 484.812 56.662 c 485.512 56.662 486.062 56.873 486.469 57.302
c 486.867 57.74 487.062 58.334 487.062 59.084 c 487.062 59.834 486.867
60.42 486.469 60.849 c 486.062 61.287 485.512 61.505 484.812 61.505 c 484.105
61.505 483.555 61.287 483.156 60.849 c 482.75 60.42 482.547 59.834 482.547
59.084 c h
481.875 57.505 m 481.711 56.826 481.398 56.295 480.938 55.912 c 480.469
55.537 479.902 55.349 479.234 55.349 c 478.309 55.349 477.574 55.681 477.031
56.349 c 476.492 57.013 476.219 57.927 476.219 59.084 c 476.219 60.24 476.492
61.146 477.031 61.802 c 477.574 62.466 478.309 62.802 479.234 62.802 c
479.902 62.802 480.469 62.615 480.938 62.24 c 481.398 61.865 481.711 61.338
481.875 60.662 c 482.055 61.42 482.402 62.013 482.922 62.443 c 483.434
62.869 484.062 63.084 484.812 63.084 c 485.938 63.084 486.809 62.732 487.422
62.037 c 488.027 61.349 488.328 60.365 488.328 59.084 c 488.328 57.791
488.027 56.802 487.422 56.115 c 486.809 55.427 485.938 55.084 484.812 55.084
c 484.062 55.084 483.434 55.295 482.922 55.724 c 482.402 56.15 482.055
56.744 481.875 57.505 c h
479.391 56.927 m 479.996 56.927 480.469 57.115 480.812 57.49 c 481.148
57.865 481.312 58.396 481.312 59.084 c 481.312 59.759 481.148 60.287 480.812
60.662 c 480.469 61.045 479.996 61.24 479.391 61.24 c 478.789 61.24 478.32
61.045 477.984 60.662 c 477.641 60.287 477.469 59.759 477.469 59.084 c
477.469 58.396 477.641 57.865 477.984 57.49 c 478.32 57.115 478.789 56.927
479.391 56.927 c h
f
0 g
q 1 0 0 -1 0 91.900002 cm
490.52 0.746 16.902 90.406 re S Q
0 0 1 rg
499.395 24.795 m 499.512 25.127 499.754 25.455 500.129 25.779 c 500.504
26.099 501.02 26.423 501.676 26.748 c 504.863 28.341 l 504.863 26.654 l
501.863 25.154 l 501.082 24.767 500.566 24.392 500.316 24.029 c 500.059
23.673 499.926 23.185 499.926 22.56 c 499.926 20.841 l 504.863 20.841 l
504.863 19.263 l 493.191 19.263 l 493.191 22.826 l 493.191 24.158 493.473
25.154 494.035 25.81 c 494.59 26.466 495.426 26.795 496.551 26.795 c 497.293
26.795 497.906 26.623 498.395 26.279 c 498.875 25.935 499.207 25.439 499.395
24.795 c h
494.488 20.841 m 498.629 20.841 l 498.629 22.826 l 498.629 23.584 498.457
24.158 498.113 24.545 c 497.762 24.927 497.238 25.123 496.551 25.123 c
495.875 25.123 495.363 24.927 495.02 24.545 c 494.668 24.158 494.488 23.584
494.488 22.826 c h
493.191 32.873 m 493.191 34.201 l 506.348 30.138 l 506.348 28.81 l h
493.191 34.748 m 493.191 36.341 l 503.051 38.795 l 493.191 41.248 l 493.191
43.013 l 503.051 45.466 l 493.191 47.92 l 493.191 49.513 l 504.863 46.591
l 504.863 44.607 l 494.738 42.138 l 504.863 39.654 l 504.863 37.67 l h
497.598 56.826 m 497.598 66.841 l 498.91 66.841 l 498.91 56.826 l h
500.785 56.826 m 500.785 66.841 l 502.113 66.841 l 502.113 56.826 l h
503.535 75.607 m 503.535 78.185 l 494.629 78.185 l 495.191 75.388 l 493.754
75.388 l 493.191 78.17 l 493.191 79.748 l 503.535 79.748 l 503.535 82.326
l 504.863 82.326 l 504.863 75.607 l h
f
Q Q
showpage
%%Trailer
end restore
%%EOF

View File

@ -0,0 +1,732 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="645.20001"
height="124.87"
id="svg2"
version="1.0"
inkscape:version="0.46"
sodipodi:docname="Adresse10bitsLecture.svg"
inkscape:export-filename="G:\I2C\Images\Adresse10bitsLecture.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:version="0.32"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 42.521328 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="706.22699 : 42.521328 : 1"
inkscape:persp3d-origin="353.11349 : 28.347552 : 1"
id="perspective2680" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.4"
inkscape:cx="310.17034"
inkscape:cy="-34.005752"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1280"
inkscape:window-height="968"
inkscape:window-x="0"
inkscape:window-y="22"
inkscape:window-maximized="1"
fit-margin-top="5"
fit-margin-left="5"
fit-margin-bottom="5"
fit-margin-right="5" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-10.599343,22.310484)">
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985"
width="21.129702"
height="113.0096"
x="16.530313"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-73.180359"
y="33.802711"
id="text3755"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757"
x="-73.180359"
y="33.802711"
style="font-size:20px;fill:#0000ff">START</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0"
width="21.129702"
height="113.0096"
x="37.678501"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938171"
y="54.973724"
id="text3755-0"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4"
x="-44.938171"
y="54.973724"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-8"
width="21.129702"
height="113.0096"
x="58.61985"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938171"
y="75.937668"
id="text3755-0-0"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-5"
x="-44.938171"
y="75.937668"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-88"
width="21.129702"
height="113.0096"
x="79.810196"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938171"
y="97.150879"
id="text3755-0-3"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-3"
x="-44.938171"
y="97.150879"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-7"
width="21.129702"
height="113.0096"
x="101.00053"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938171"
y="118.36407"
id="text3755-0-5"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-6"
x="-44.938171"
y="118.36407"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-3"
width="21.129702"
height="113.0096"
x="122.19087"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-45.621765"
y="139.57729"
id="text3755-0-7"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-1"
x="-45.621765"
y="139.57729"
style="font-size:20px;fill:#0000ff">0</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84"
width="21.129702"
height="113.0096"
x="143.63345"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.13739"
y="161.04301"
id="text3755-0-58"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8"
x="-59.13739"
y="161.04301"
style="font-size:20px;fill:#0000ff">AD9</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-9"
width="21.129702"
height="113.0096"
x="164.82382"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.13739"
y="182.25624"
id="text3755-0-58-3"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-2"
x="-59.13739"
y="182.25624"
style="font-size:20px;fill:#0000ff">AD8</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-3"
width="21.129702"
height="113.0096"
x="186.01414"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-76.813171"
y="203.46942"
id="text3755-0-58-0"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-5"
x="-76.813171"
y="203.46942"
style="font-size:20px;fill:#0000ff">R/W = 0</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-33"
width="21.129702"
height="113.0096"
x="207.20451"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-60.66571"
y="224.68265"
id="text3755-0-58-4"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-3"
x="-60.66571"
y="224.68265"
style="font-size:20px;fill:#00ff00">ACK</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86199999;stroke-miterlimit:4;stroke-dasharray:3.724, 3.724;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-1"
width="21.129702"
height="113.0096"
x="228.14258"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-74.29364"
y="245.64333"
id="text3755-0-58-7"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-6"
x="-74.29364"
y="245.64333"
style="font-size:20px;fill:#00ff00">PAUSE</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-4"
width="21.129702"
height="113.0096"
x="249.33293"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.122742"
y="266.85654"
id="text3755-0-58-2"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-31"
x="-59.122742"
y="266.85654"
style="font-size:20px;fill:#0000ff">AD7</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-39"
width="21.129702"
height="113.0096"
x="270.52328"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.117859"
y="288.06973"
id="text3755-0-58-6"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-9"
x="-59.117859"
y="288.06973"
style="font-size:20px;fill:#0000ff">AD6</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2"
width="21.129702"
height="113.0096"
x="291.71359"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.176453"
y="309.28296"
id="text3755-0-58-8"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0"
x="-59.176453"
y="309.28296"
style="font-size:20px;fill:#0000ff">AD5</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-5"
width="21.129702"
height="113.0096"
x="312.90393"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.093445"
y="330.49615"
id="text3755-0-58-8-1"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-5"
x="-59.093445"
y="330.49615"
style="font-size:20px;fill:#0000ff">AD4</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-59"
width="21.129702"
height="113.0096"
x="334.0943"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.122742"
y="351.70938"
id="text3755-0-58-8-13"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-51"
x="-59.122742"
y="351.70938"
style="font-size:20px;fill:#0000ff">AD3</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-1"
width="21.129702"
height="113.0096"
x="355.28467"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.0495"
y="372.92261"
id="text3755-0-58-8-2"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-9"
x="-59.0495"
y="372.92261"
style="font-size:20px;fill:#0000ff">AD2</tspan></text>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-57.740906"
y="394.1358"
id="text3755-0-58-8-14"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-7"
x="-57.740906"
y="394.1358"
style="font-size:20px;fill:#0000ff">AD1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-3"
width="21.129702"
height="113.0096"
x="376.47501"
y="-16.381079" />
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-2"
width="21.129702"
height="113.0096"
x="397.41302"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.098328"
y="415.09644"
id="text3755-0-58-8-5"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-6"
x="-59.098328"
y="415.09644"
style="font-size:20px;fill:#0000ff">AD0</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-14"
width="21.129702"
height="113.0096"
x="418.60336"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-60.66571"
y="436.30963"
id="text3755-0-58-8-6"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-2"
x="-60.66571"
y="436.30963"
style="font-size:20px;fill:#00ff00">ACK</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:3.72387838, 1.86193919;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4"
width="21.129702"
height="113.0096"
x="439.79373"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-74.29364"
y="457.52286"
id="text3755-0-58-8-9"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72"
x="-74.29364"
y="457.52286"
style="font-size:20px;fill:#00ff00">PAUSE</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4-4"
width="21.129702"
height="113.0096"
x="460.73184"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-87.423523"
y="478.48355"
id="text3755-0-58-8-9-5"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72-1"
x="-87.423523"
y="478.48355"
style="font-size:20px;fill:#0000ff">RESTART</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4-0"
width="21.129702"
height="113.0096"
x="481.66986"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938171"
y="499.44418"
id="text3755-0-58-8-9-7"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72-6"
x="-44.938171"
y="499.44418"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4-5"
width="21.129702"
height="113.0096"
x="502.86026"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938171"
y="520.65735"
id="text3755-0-58-8-9-70"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72-4"
x="-44.938171"
y="520.65735"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4-5-7"
width="21.129702"
height="113.0096"
x="523.79828"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938171"
y="541.61798"
id="text3755-0-58-8-9-70-4"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72-4-2"
x="-44.938171"
y="541.61798"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4-5-6"
width="21.129702"
height="113.0096"
x="544.73633"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-44.938171"
y="562.57867"
id="text3755-0-58-8-9-70-5"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72-4-0"
x="-44.938171"
y="562.57867"
style="font-size:20px;fill:#0000ff">1</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4-5-0"
width="21.129702"
height="113.0096"
x="565.67444"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-45.621765"
y="583.53937"
id="text3755-0-58-8-9-70-1"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72-4-28"
x="-45.621765"
y="583.53937"
style="font-size:20px;fill:#0000ff">0</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4-5-5"
width="21.129702"
height="113.0096"
x="586.61249"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.13739"
y="604.5"
id="text3755-0-58-8-9-70-9"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72-4-4"
x="-59.13739"
y="604.5"
style="font-size:20px;fill:#0000ff">AD9</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4-5-56"
width="21.129702"
height="113.0096"
x="607.8028"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-59.13739"
y="625.71313"
id="text3755-0-58-8-9-70-8"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72-4-5"
x="-59.13739"
y="625.71313"
style="font-size:20px;fill:#0000ff">AD8</tspan></text>
<rect
style="fill:none;stroke:#000000;stroke-width:1.86193919;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2985-0-84-2-4-5-00"
width="21.129702"
height="113.0096"
x="628.74091"
y="-16.381079" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
x="-75.45575"
y="646.67383"
id="text3755-0-58-8-9-70-47"
sodipodi:linespacing="125%"
transform="matrix(0,-1,1,0,0,0)"
inkscape:transform-center-x="-77.857143"
inkscape:transform-center-y="31.428571"><tspan
sodipodi:role="line"
id="tspan3757-4-8-0-72-4-48"
x="-75.45575"
y="646.67383"
style="font-size:20px;fill:#0000ff">R/W = 1</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

BIN
latex/oscillo/0.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
latex/oscillo/170.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
latex/oscillo/255.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

BIN
latex/oscillo/TEK0000.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

BIN
latex/oscillo/TEK0001.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

BIN
latex/oscillo/TEK0002.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB