Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • main
1 result

Target

Select target project
  • algorithmique/cours
  • aurelien.boyer/cours
  • jeremy.meissner/cours
  • radhwan.hassine/cours
  • yassin.elhakoun/cours-algo
  • gaspard.legouic/cours
  • joachim.bach/cours
  • gabriel.marinoja/algo-cours
  • loic.lavorel/cours
  • iliya.saroukha/cours
  • costanti.volta/cours
  • jacquesw.ndoumben/cours
12 results
Select Git revision
  • master
1 result
Show changes
Showing
with 18372 additions and 0 deletions
---
title: "Représentation des nombres et récursivité"
date: "2022-11-02"
---
# Types énumérés (1/2)
* Un **type énuméré**: ensemble de *variantes* (valeurs constantes).
* En `C` les variantes sont des entiers numérotés à partir de 0.
```C
enum days {
monday, tuesday, wednesday,
thursday, friday, saturday, sunday
};
```
* On peut aussi donner des valeurs "custom"
```C
enum days {
monday = 2, tuesday = 8, wednesday = -2,
thursday = 1, friday = 3, saturday = 12, sunday = 9
};
```
* S'utilise comme un type standard et un entier
```C
enum days d = monday;
(d + 2) == monday + monday; // true
```
# Types énumérés (2/2)
* Très utile dans les `switch ... case`{.C}
```C
enum days d = monday;
switch (d) {
case monday:
// trucs
break;
case tuesday:
printf("0 ou 1\n");
break;
}
```
* Le compilateur vous prévient qu'il en manque!
# Utilisation des types énumérés
## Réusiner votre couverture de la reine avec des `enum`
A faire à la maison comme exercice!
# Représentation des nombres (1/2)
* Le nombre `247`.
## Nombres décimaux: Les nombres en base 10
+--------+--------+--------+
| $10^2$ | $10^1$ | $10^0$ |
+--------+--------+--------+
| `2` | `4` | `7` |
+--------+--------+--------+
$$
247 = 2\cdot 10^2 + 4\cdot 10^1 + 7\cdot 10^0.
$$
# Représentation des nombres (2/2)
* Le nombre `11110111`.
## Nombres binaires: Les nombres en base 2
+-------+-------+-------+-------+-------+-------+-------+-------+
| $2^7$ | $2^6$ | $2^5$ | $2^4$ | $2^3$ | $2^2$ | $2^1$ | $2^0$ |
+-------+-------+-------+-------+-------+-------+-------+-------+
| `1` | `1` | `1` | `1` | `0` | `1` | `1` | `1` |
+-------+-------+-------+-------+-------+-------+-------+-------+
$$
1\cdot 2^7 + 1\cdot 2^6 +1\cdot 2^5 +1\cdot 2^4 +0\cdot 2^3 +1\cdot 2^2
+1\cdot 2^1 +1\cdot 2^0
$$
. . .
$$
= 247.
$$
# Conversion de décimal à binaire (1/2)
## Convertir 11 en binaire?
. . .
* On décompose en puissances de 2 en partant de la plus grande possible
```
11 / 8 = 1, 11 % 8 = 3
3 / 4 = 0, 3 % 4 = 3
3 / 2 = 1, 3 % 2 = 1
1 / 1 = 1, 1 % 1 = 0
```
* On a donc
$$
1011 \Rightarrow 1\cdot 2^3 + 0\cdot 2^2 + 1\cdot 2^1 + 1\cdot
2^0=11.
$$
# Conversion de décimal à binaire (2/2)
## Convertir un nombre arbitraire en binaire: 247?
* Par groupe établir un algorithme.
. . .
## Algorithme
1. Initialisation
```C
num = 247
tant que (2^N < num) {
N += 1
}
```
. . .
2. Boucle
```C
tant que (N >= 0) {
bit = num / 2^N
num = num % 2^N
N -= 1
}
```
# Les additions en binaire
Que donne l'addition `1101` avec `0110`?
* L'addition est la même que dans le système décimal
```
1101 8+4+0+1 = 13
+ 0110 + 0+4+2+0 = 6
------- -----------------
10011 16+0+0+2+1 = 19
```
* Les entiers sur un ordinateur ont une précision **fixée** (ici 4 bits).
* Que se passe-t-il donc ici?
. . .
## Dépassement de capacité: le nombre est "tronqué"
* `10011 (19) -> 0011 (3)`.
* On fait "le tour"."
# Entier non-signés minimal/maximal
* Quel est l'entier non-signé maximal représentable avec 4 bit?
. . .
$$
(1111)_2 = 8+4+2+1 = 15
$$
* Quel est l'entier non-signé minimal représentable avec 4 bit?
. . .
$$
(0000)_2 = 0+0+0+0 = 0
$$
* Quel est l'entier non-signé min/max représentable avec N bit?
. . .
$$
0\mbox{ et }2^N-1.
$$
* Donc `uint32_t?` maximal est?
. . .
$$
2^{32}-1=4'294'967'295
$$
# Les multiplications en binaire (1/2)
Que donne la multiplication de `1101` avec `0110`?
* La mutliplication est la même que dans le système décimal
```
1101 13
* 0110 * 6
--------- --------------
0000 78
11010
110100
+ 0000000
--------- --------------
1001110 64+0+0+8+4+2+0
```
# Les multiplications en binaire (2/2)
## Que fait la multiplication par 2?
. . .
* Décalage de un bit vers la gauche!
```
0110
* 0010
---------
0000
+ 01100
---------
01100
```
. . .
## Que fait la multiplication par $2^N$?
. . .
* Décalade de $N$ bits vers la gauche!
# Entiers signés (1/2)
Pas de nombres négatifs encore...
## Comment faire?
. . .
## Solution naïve:
* On ajoute un bit de signe (le bit de poids fort):
```
00000010: +2
10000010: -2
```
## Problèmes?
. . .
* Il y a deux zéros (pas trop grave): `10000000` et `00000000`
* Les additions différentes que pour les non-signés (très grave)
```
00000010 2
+ 10000100 + -4
---------- ----
10000110 = -6 != -2
```
# Entiers signés (2/2)
## Beaucoup mieux
* Complément à un:
* on inverse tous les bits: `1001 => 0110`.
## Encore un peu mieux
* Complément à deux:
* on inverse tous les bits,
* on ajoute 1 (on ignore les dépassements).
. . .
* Comment écrit-on `-4` en 8 bits?
. . .
```
4 = 00000100
________
-4 => 00000100
11111011
+ 00000001
----------
11111100
```
# Le complément à 2 (1/2)
## Questions:
* Comment on écrit `+0` et `-0`?
* Comment calcule-t-on `2 + (-4)`?
* Quel est le complément à 2 de `1000 0000`?
. . .
## Réponses
* Comment on écrit `+0` et `-0`?
```
+0 = 00000000
-0 = 11111111 + 00000001 = 100000000 => 00000000
```
* Comment calcule-t-on `2 + (-4)`?
```
00000010 2
+ 11111100 + -4
---------- -----
11111110 -2
```
* En effet
```
11111110 => 00000001 + 00000001 = 00000010 = 2.
```
# Le complément à 2 (2/2)
## Quels sont les entiers représentables en 8 bits?
. . .
```
01111111 => 127
10000000 => -128 // par définition
```
## Quels sont les entiers représentables sur $N$ bits?
. . .
$$
-2^{N-1} ... 2^{N-1}-1.
$$
## Remarque: dépassement de capacité en `C`
* Comportement indéfini!
# Nombres à virgule (1/3)
## Comment manipuler des nombres à virgule?
$$
0.1 + 0.2 = 0.3.
$$
Facile non?
. . .
## Et ça?
```C
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
float a = atof(argv[1]);
float b = atof(argv[2]);
printf("%.10f\n", (double)(a + b));
}
```
. . .
## Que se passe-t-il donc?
# Nombres à virgule (2/3)
## Nombres à virgule fixe
+-------+-------+-------+-------+-----+----------+----------+----------+----------+
| $2^3$ | $2^2$ | $2^1$ | $2^0$ | `.` | $2^{-1}$ | $2^{-2}$ | $2^{-3}$ | $2^{-4}$ |
+-------+-------+-------+-------+-----+----------+----------+----------+----------+
| `1` | `0` | `1` | `0` | `.` | `0` | `1` | `0` | `1` |
+-------+-------+-------+-------+-----+----------+----------+----------+----------+
## Qu'est-ce ça donne en décimal?
. . .
$$
2^3+2^1+\frac{1}{2^2}+\frac{1}{2^4} = 8+2+0.5+0.0625=10.5625.
$$
## Limites de cette représentation?
. . .
* Tous les nombres `> 16`.
* Tous les nombres `< 0.0625`.
* Tous les nombres dont la décimale est pas un multiple de `0.0625`.
# Nombres à virgule (3/3)
## Nombres à virgule fixe
* Nombres de $0=0000.0000$ à $15.9375=1111.1111$.
* Beaucoup de "trous" (au moins $0.0625$) entre deux nombres.
## Solution partielle?
. . .
* Rajouter des bits.
* Bouger la virgule.
# Nombres à virgule flottante (1/2)
## Notation scientifique
* Les nombres sont représentés en terme:
* Une mantisse
* Une base
* Un exposant
$$
\underbrace{22.1214}_{\mbox{nombre}}=\underbrace{221214}_{\mbox{mantisse}}\cdot
{\underbrace{10}_{\mbox{base}}}{\overbrace{^{-4}}^{\mbox{exp.}}},
$$
. . .
On peut donc séparer la représentation en 2:
* La mantisse
* L'exposant
# Nombres à virgule flottante (2/2)
## Quel est l'avantage?
. . .
On peut représenter des nombres sur énormément d'ordres de grandeur avec un
nombre de bits fixés.
## Différence fondamentale avec la virgule fixe?
. . .
La précision des nombres est **variable**:
* On a uniquement un nombre de chiffres **significatifs**.
$$
123456\cdot 10^{23}+ 123456\cdot 10^{-23}.
$$
## Quel inconvénient y a-t-il?
. . .
Ce mélange d'échelles entraîne un **perte de précision**.
# Nombres à virgule flottante simple précision (1/4)
Aussi appelés *IEEE 754 single-precision binary floating point*.
![Nombres à virgule flottante 32 bits. Source:
[Wikipedia](https://en.wikipedia.org/wiki/Single-precision_floating-point_format#/media/File:Float_example.svg)](figs/Float_example_bare.svg)
## Spécification
* 1 bit de signe,
* 8 bits d'exposant,
* 23 bits de mantisse.
$$
(-1)^{b_{31}}\cdot 2^{(b_{30}b_{29}\dots b_{23})_{2}-127}\cdot (1.b_{22}b_{21}\dots b_{0})_{2},
$$
## Calculer la valeur décimale du nombre ci-dessus
# Nombres à virgule flottante simple précision (2/4)
![Un exercice de nombres à virgule flottante 32 bits. Source:
[Wikipedia](https://en.wikipedia.org/wiki/Single-precision_floating-point_format#/media/File:Float_example.svg)](figs/Float_example.svg)
. . .
\begin{align}
\mbox{exposant}&=\sum_{i=0}^7 b_{23+i}2^i=2^2+2^3+2^4+2^5+2^6=124-127,\\
\mbox{mantisse}&=1+\sum_{i=1}^{23}b_{23-i}2^{-i}=1+2^{-2}=1.25,\\
&\Rightarrow (-1)^0\cdot 2^{-3}\cdot 1.25=0.15625
\end{align}
# Nombres à virgule flottante simple précision (3/4)
## Quel nombre ne peux pas être vraiment représenté?
. . .
## Zéro: exception pour l'exposant
* Si l'exposant est `00000000` (zéro)
$$
(-1)^{\mbox{sign}}\cdot 2^{-126}\cdot 0.\mbox{mantisse},
$$
* Sinon si l'exposant est `00000001` à `11111110`
$$
\mbox{valeur normale},
$$
* Sinon `11111111` donne `NaN`.
# Nombres à virgule flottante simple précision (4/4)
## Quels sont les plus petits/grands nombres positifs représentables?
. . .
\begin{align}
0\ 0\dots0\ 0\dots01&=2^{-126}\cdot 2^{-23}=1.4...\cdot
10^{-45},\\
0\ 1\dots10\ 1\dots1&=2^{127}\cdot (2-2^{-23})=3.4...\cdot
10^{38}.
\end{align}
## Combien de chiffres significatifs en décimal?
. . .
* 24 bits ($23 + 1$) sont utiles pour la mantisse, soit $2^{24}-1$:
* La mantisse fait $\sim2^{24}\sim 10^7$,
* Ou encore $\sim \log_{10}(2^{24})\sim 7$.
* Environ **sept** chiffres significatifs.
# Nombres à virgule flottante double précision (64bits)
## Spécification
* 1 bit de signe,
* 11 bits d'exposant,
* 52 bits de mantisse.
. . .
## Combien de chiffres significatifs?
* La mantisse fait $\sim 2^{53}\sim10^{16}$,
* Ou encore $\sim \log_{10}(2^{53})\sim 16$,
* Environ **seize** chiffres significatifs.
## Plus petit/plus grand nombre représentable?
. . .
* Plus petite mantisse et exposant: $\sim 2^{-52}\cdot 2^{-1022}\sim 4\cdot 10^{-324}$,
* Plus grande mantisse et exposant: $\sim 2\cdot 2^{1023}\sim \cdot 1.8\cdot 10^{308}$.
# Précision finie (1/3)
## Erreur de représentation
* Les nombres réels ont potentiellement un **nombre infini** de décimales
* $1/3=0.\overline{3}$,
* $\pi=3.1415926535...$.
* Les nombres à virgule flottante peuvent en représenter qu'un **nombre
fini**.
* $1/3\cong 0.33333$, erreur $0.00000\overline{3}$.
* $\pi\cong3.14159$, erreur $0.0000026535...$.
On rencontre donc des **erreurs de représentation** ou **erreurs
d'arrondi**.
. . .
## Et quand on calcule?
* Avec deux chiffres significatifs
\begin{align}
&8.9+(0.02+0.04)=8.96=9.0,\\
&(8.9+0.02)+0.04=8.9+0.04=8.9.
\end{align}
. . .
## Même pas associatif!
# Précision finie (2/3)
## Erreur de représentation virgule flottante
$$
(1.2)_{10} = 1.\overline{0011}\cdot 2^0\Rightarrow 0\ 01111111\
00110011001100110011010.
$$
Erreur d'arrondi dans les deux derniers bits et tout ceux qui viennent
ensuite
$$
\varepsilon_2 = (00000000000000000000011)_2.
$$
Ou en décimal
$$
\varepsilon_{10} = 4.76837158203125\cdot 10^{-8}.
$$
# Précision finie (3/3)
## Comment définir l'égalité de 2 nombres à virgule flottante?
. . .
Ou en d'autres termes, pour quel $\varepsilon>0$ (appelé `epsilon-machine`) on a
$$
1+\varepsilon = 1,
$$
pour un nombre à virgule flottante?
. . .
Pour un `float` (32 bits) la différence est à
$$
2^{-23}=1.19\cdot 10^{-7},
$$
Soit la précision de la mantisse.
## Comment le mesurer (par groupe)?
. . .
```C
float eps = 1.0;
while ((float)1.0 + (float)0.5 * eps != (float)1.0) {
eps = (float)0.5 * eps;
}
printf("eps = %g\n", eps);
```
# Erreurs d'arrondi
Et jusqu'ici on a encore pas fait d'arithmétique!
## Multiplication avec deux chiffres significatifs, décimal
$$
(1.1)_{10}\cdot (1.1)_{10}=(1.21)_{10}=(1.2)_{10}.
$$
En continuant ce petit jeu:
$$
\underbrace{1.1\cdot 1.1\cdots 1.1}_{\mbox{10 fois}}=2.0.
$$
Alors qu'en réalité
$$
1.1^{10}=2.5937...
$$
Soit une erreur de près de 1/5e!
. . .
## Le même phénomène se produit (à plus petite échelle) avec les `float` ou `double`.
# And now for something completely different
\Huge La récursivité
# Exemple de récursivité (1/2)
## La factorielle
```C
int factorial(int n) {
if (n > 1) {
return n * factorial(n - 1);
} else {
return 1;
}
}
```
. . .
## Que se passe-t-il quand on fait `factorial(4)`?
. . .
## On empile les appels
+----------------+----------------+----------------+----------------+
| | | | `factorial(1)` |
+----------------+----------------+----------------+----------------+
| | | `factorial(2)` | `factorial(2)` |
+----------------+----------------+----------------+----------------+
| | `factorial(3)` | `factorial(3)` | `factorial(3)` |
+----------------+----------------+----------------+----------------+
| `factorial(4)` | `factorial(4)` | `factorial(4)` | `factorial(4)` |
+----------------+----------------+----------------+----------------+
# Exemple de récursivité (2/2)
## La factorielle
```C
int factorial(int n) {
if (n > 1) {
return n * factorial(n - 1);
} else {
return 1;
}
}
```
. . .
## Que se passe-t-il quand on fait `factorial(4)`?
. . .
## On dépile les calculs
+----------------+----------------+----------------+----------------+
| `1` | | | |
+----------------+----------------+----------------+----------------+
| `factorial(2)` | `2 * 1 = 2` | | |
+----------------+----------------+----------------+----------------+
| `factorial(3)` | `factorial(3)` | `3 * 2 = 6` | |
+----------------+----------------+----------------+----------------+
| `factorial(4)` | `factorial(4)` | `factorial(4)` | `4 * 6 = 24` |
+----------------+----------------+----------------+----------------+
# La récursivité (1/4)
## Formellement
* Une condition de récursivité - qui *réduit* les cas successifs vers...
* Une condition d'arrêt - qui retourne un résultat
## Pour la factorielle, qui est qui?
```C
int factorial(int n) {
if (n > 1) {
return n * factorial(n - 1);
} else {
return 1;
}
}
```
# La récursivité (2/4)
## Formellement
* Une condition de récursivité - qui *réduit* les cas successifs vers...
* Une condition d'arrêt - qui retourne un résultat
## Pour la factorielle, qui est qui?
```C
int factorial(int n) {
if (n > 1) { // Condition de récursivité
return n * factorial(n - 1);
} else { // Condition d'arrêt
return 1;
}
}
```
# La récursivité (3/4)
## Exercice: trouver l'$\varepsilon$-machine pour un `double`
. . .
Rappelez-vous vous l'avez fait en style **impératif** plus tôt.
. . .
```C
double epsilon_machine(double eps) {
if (1.0 + eps != 1.0) {
return epsilon_machine(eps / 2.0);
} else {
return eps;
}
}
```
# La récursivité (4/4)
\footnotesize
## Exercice: que fait ce code récursif?
```C
void recurse(int n) {
printf("%d ", n % 2);
if (n / 2 != 0) {
recurse(n / 2);
} else {
printf("\n");
}
}
recurse(13);
```
. . .
```C
recurse(13): n = 13, n % 2 = 1, n / 2 = 6,
recurse(6): n = 6, n % 2 = 0, n / 2 = 3,
recurse(3): n = 3, n % 2 = 1, n / 2 = 1,
recurse(1): n = 1, n % 2 = 1, n / 2 = 0.
// affiche: 1 1 0 1
```
. . .
Affiche la représentation binaire d'un nombre!
---
title: "Récursivité et complexité"
date: "2022-11-09"
---
# La récursivité (1/2)
* Code récursif
```C
int factorial(int n) {
if (n > 1) { // Condition de récursivité
return n * factorial(n - 1);
} else { // Condition d'arrêt
return 1;
}
}
```
. . .
* Code impératif
```C
int factorial(int n) {
int f = 1;
for (int i = 1; i < n; ++i) {
f *= i;
}
return f;
}
```
# Exercice: réusinage et récursivité (1/4)
## Réusiner le code du PGCD avec une fonction récursive
## Étudier l'exécution
```C
42 = 27 * 1 + 15
27 = 15 * 1 + 12
15 = 12 * 1 + 3
12 = 3 * 4 + 0
```
# Exercice: réusinage et récursivité (2/4)
## Réusiner le code du PGCD avec une fonction récursive
## Étudier l'exécution
```C
42 = 27 * 1 + 15 | PGCD(42, 27)
27 = 15 * 1 + 12 | PGCD(27, 15)
15 = 12 * 1 + 3 | PGCD(15, 12)
12 = 3 * 4 + 0 | PGCD(12, 3)
```
# Exercice: réusinage et récursivité (3/4)
## Réusiner le code du PGCD avec une fonction récursive
## Étudier l'exécution
```C
42 = 27 * 1 + 15 | PGCD(42, 27)
27 = 15 * 1 + 12 | PGCD(27, 15)
15 = 12 * 1 + 3 | PGCD(15, 12)
12 = 3 * 4 + 0 | PGCD(12, 3)
```
## Effectuer l'empilage - dépilage
. . .
```C
PGCD(12, 3) | 3
PGCD(15, 12) | 3
PGCD(27, 15) | 3
PGCD(42, 27) | 3
```
# Exercice: réusinage et récursivité (4/4)
## Écrire le code
. . .
```C
int pgcd(int n, int m) {
if (n % m > 0) {
return pgcd(m, n % m);
} else {
return m;
}
}
```
# La suite de Fibonacci (1/2)
## Règle
$$
\mathrm{Fib}(n) = \mathrm{Fib}(n-1) + \mathrm{Fib}(n-2),\quad
\mathrm{Fib}(0)=0,\quad \mathrm{Fib}(1)=1.
$$
## Exercice: écrire la fonction $\mathrm{Fib}$ en récursif et impératif
. . .
## En récursif (6 lignes)
```C
int fib(int n) {
if (n > 1) {
return fib(n - 1) + fib(n - 2);
}
return n;
}
```
# La suite de Fibonacci (2/2)
## Et en impératif (11 lignes)
```C
int fib_imp(int n) {
int fib0 = 1;
int fib1 = 1;
int fib = n == 0 ? 0 : fib1;
for (int i = 2; i < n; ++i) {
fib = fib0 + fib1;
fib0 = fib1;
fib1 = fib;
}
return fib;
}
```
# Exponentiation rapide ou indienne (1/4)
## But: Calculer $x^n$
* Quel est l'algorithmie le plus simple que vous pouvez imaginer?
. . .
```C
int pow(int x, int n) {
if (0 == n) {
return 1;
}
for (int i = 1; i < n; ++i) {
x = x * x; // x *= x
}
return x;
}
```
* Combien de multiplication et d'assignations en fonction de `n`?
. . .
* `n` assignations et `n` multiplications.
# Exponentiation rapide ou indienne (2/4)
* Proposez un algorithme naïf et récursif
. . .
```C
int pow(x, n) {
if (n != 0) {
return x * pow(x, n-1);
} else {
return 1;
}
}
```
# Exponentiation rapide ou indienne (3/4)
## Exponentiation rapide ou indienne de $x^n$
* Écrivons $n=\sum_{i=0}^{d-1}b_i 2^i,\ b_i=\{0,1\}$ (écriture binaire sur $d$ bits, avec
$d\sim\log_2(n)$).
*
$$
x^n={x^{2^0}}^{b_0}\cdot {x^{2^1}}^{b_1}\cdots {x^{2^{d-1}}}^{b_{d-1}}.
$$
* On a besoin de $d$ calculs pour les $x^{2^i}$.
* On a besoin de $d$ calculs pour évaluer les produits de tous les termes.
## Combien de calculs en terme de $n$?
. . .
* $n$ est représenté en binaire avec $d$ bits $\Rightarrow d\sim\log_2(n)$.
* il y a $2\log_2(n)\sim \log_2(n)$ calculs.
# Exponentiation rapide ou indienne (4/4)
## Le vrai algorithme
* Si n est pair: calculer $\left(x^{n/2}\right)^2$,
* Si n est impair: calculer $x \cdot \left(x^{(n-1)/2}\right)^2$.
## Exercice: écrire l'algorithme récursif correspondant
. . .
```C
double pow(double x, int n) {
if (1 == n) {
return x;
} else if (n % 2 == 0) {
return pow(x, n / 2) * pow(x, n/2);
} else {
return x * pow(x, (n-1));
}
}
```
# Efficacité d'un algorithmique
Comment mesurer l'efficacité d'un algorithme?
. . .
* Mesurer le temps CPU,
* Mesurer le temps d'accès à la mémoire,
* Mesurer la place prise mémoire,
. . .
Dépendant du **matériel**, du **compilateur**, des **options de compilation**, etc!
## Mesure du temps CPU
```C
#include <time.h>
struct timespec tstart={0,0}, tend={0,0};
clock_gettime(CLOCK_MONOTONIC, &tstart);
// some computation
clock_gettime(CLOCK_MONOTONIC, &tend);
printf("computation about %.5f seconds\n",
((double)tend.tv_sec + 1e-9*tend.tv_nsec) -
((double)tstart.tv_sec + 1e-9*tstart.tv_nsec));
```
# Programme simple: mesure du temps CPU
## Preuve sur un [petit exemple](../source_codes/complexity/sum.c)
```bash
source_codes/complexity$ make bench
RUN ONCE -O0
the computation took about 0.00836 seconds
RUN ONCE -O3
the computation took about 0.00203 seconds
RUN THOUSAND TIMES -O0
the computation took about 0.00363 seconds
RUN THOUSAND TIMES -O3
the computation took about 0.00046 seconds
```
Et sur votre machine les résultats seront **différents**.
. . .
## Conclusion
* Nécessité d'avoir une mesure indépendante du/de la
matériel/compilateur/façon de mesurer/météo.
# Analyse de complexité algorithmique (1/4)
* On analyse le **temps** pris par un algorithme en fonction de la **taille de
l'entrée**.
## Exemple: recherche d'un élément dans une liste triée de taille N
```C
int sorted_list[N];
bool in_list = is_present(N, sorted_list, elem);
```
* Plus `N` est grand, plus l'algorithme prend de temps sauf si...
. . .
* l'élément est le premier de la liste (ou à une position toujours la même).
* ce genre de cas pathologique ne rentre pas en ligne de compte.
# Analyse de complexité algorithmique (2/4)
## Recherche linéaire
```C
bool is_present(int n, int tab[], int elem) {
for (int i = 0; i < n; ++i) {
if (tab[i] == elem) {
return true;
} else if (elem < tab[i]) {
return false;
}
}
return false;
}
```
* Dans le **meilleurs des cas** il faut `1` comparaison.
* Dans le **pire des cas** (élément absent p.ex.) il faut `n` comparaisons.
. . .
La **complexité algorithmique** est proportionnelle à `N`: on double la taille
du tableau $\Rightarrow$ on double le temps pris par l'algorithme.
# Analyse de complexité algorithmique (3/4)
## Recherche dichotomique
```C
bool is_present_binary_search(int n, int tab[], int elem) {
int left = 0;
int right = n - 1;
while (left <= right) {
int mid = (right + left) / 2;
if (tab[mid] < elem) {
left = mid + 1;
} else if (tab[mid] > elem) {
right = mid - 1;
} else {
return true;
}
}
return false;
}
```
# Analyse de complexité algorithmique (4/4)
## Recherche dichotomique
![Source: [Wikipédia](https://upload.wikimedia.org/wikipedia/commons/a/aa/Binary_search_complexity.svg)](figs/Binary_search_complexity.svg){width=80%}
. . .
* Dans le **meilleurs de cas** il faut `1` comparaison.
* Dans le **pire des cas** il faut $\log_2(N)+1$ comparaisons
. . .
## Linéaire vs dichotomique
* $N$ vs $\log_2(N)$ comparaisons logiques.
* Pour $N=1000000$: `1000000` vs `21` comparaisons.
# Notation pour la complexité
## Constante de proportionnalité
* Pour la recherche linéaire ou dichotomique, on a des algorithmes qui sont $\sim N$ ou $\sim \log_2(N)$
* Qu'est-ce que cela veut dire?
. . .
* Temps de calcul est $t=C\cdot N$ (où $C$ est le temps pris pour une comparaisons sur une machine/compilateur donné)
* La complexité ne dépend pas de $C$.
## Le $\mathcal{O}$ de Leibnitz
* Pour noter la complexité d'un algorithme on utilise le symbole $\mathcal{O}$ (ou "grand Ô de").
* Les complexités les plus couramment rencontrées sont
. . .
$$
\mathcal{O}(1),\quad \mathcal{O}(\log(N)),\quad \mathcal{O}(N),\quad
\mathcal{O}(\log(N)\cdot N), \quad \mathcal{O}(N^2), \quad
\mathcal{O}(N^3).
$$
# Ordres de grandeur
\begin{table}[!h]
\begin{center}
\caption{Valeurs approximatives de quelques fonctions usuelles de complexité.}
\medskip
\begin{tabular}{|c|c|c|c|c|}
\hline
$\log_2(N)$ & $\sqrt{N}$ & $N$ & $N\log_2(N)$ & $N^2$ \\
\hline\hline
$3$ & $3$ & $10$ & $30$ & $10^2$ \\
\hline
$6$ & $10$ & $10^2$ & $6\cdot 10^2$ & $10^4$ \\
\hline
$9$ & $31$ & $10^3$ & $9\cdot 10^3$ & $10^6$ \\
\hline
$13$ & $10^2$ & $10^4$ & $1.3\cdot 10^5$ & $10^8$ \\
\hline
$16$ & $3.1\cdot 10^2$ & $10^5$ & $1.6\cdot 10^6$ & $10^{10}$ \\
\hline
$19$ & $10^3$ & $10^6$ & $1.9\cdot 10^7$ & $10^{12}$ \\
\hline
\end{tabular}
\end{center}
\end{table}
# Quelques exercices (1/3)
## Complexité de l'algorithme de test de primalité naïf?
```C
for (i = 2; i < sqrt(N); ++i) {
if (N % i == 0) {
return false;
}
}
return true;
```
. . .
## Réponse
$$
\mathcal{O}(\sqrt{N}).
$$
# Quelques exercices (2/3)
## Complexité de trouver le minimum d'un tableau?
```C
int min = MAX;
for (i = 0; i < N; ++i) {
if (tab[i] < min) {
min = tab[i];
}
}
return min;
```
. . .
## Réponse
$$
\mathcal{O}(N).
$$
# Quelques exercices (3/3)
## Complexité du tri par sélection?
```C
int ind = 0
while (ind < SIZE-1) {
min = find_min(tab[ind:SIZE]);
swap(min, tab[ind]);
ind += 1
}
```
. . .
## Réponse
### `min = find_min`
$$
(N-1)+(N-2)+...+2+1=\sum_{i=1}^{N-1}i=N\cdot(N-1)/2=\mathcal{O}(N^2).
$$
## Finalement
$$
\mathcal{O}(N^2\mbox{ comparaisons}) + \mathcal{O}(N\mbox{swaps})=\mathcal{O}(N^2).
$$
---
title: "Tris"
date: "2022-11-16"
---
# Rappel: Complexité
\footnotesize
Soit `tab` un tableau de longueur `N` de `double`.
1. Comment déclare-t-on un tel tableau?
. . .
```C
double tab[N];
```
2. Quelle est la complexité du calcul de la moyenne de `tab`?
. . .
```C
double mean = 0.0;
for (int i = 0; i < N; ++i) { // N assignations
mean += tab[i]; // N additions
}
mean /= N; // O(N)
```
. . .
3. Quelle est la complexité du calcul de l'écart type de `tab` ($\sigma=\sqrt{\sum_i (t_i - m)^2}/N$?
. . .
```C
double mean = moyenne(N, tab); // O(N)
double dev = 0.0;
for (int i = 0; i < N; ++i) {
dev += pow(tab[i] - moyenne, 2); // N tours
}
dev = sqrt(dev); dev /= N; // O(2*N) = O(N)
```
# Tri par insertion (1/3)
## But
* trier un tableau par ordre croissant
## Algorithme
Prendre un élément du tableau et le mettre à sa place parmis les éléments déjà
triés du tableau.
![Tri par insertion d'un tableau d'entiers](figs/tri_insertion.svg)
# Tri par insertion (2/3)
## Exercice: Proposer un algorithme (en C)
. . .
```C
void tri_insertion(int N, int tab[N]) {
for (int i = 1; i < N; i++) {
int tmp = tab[i];
int pos = i;
while (pos > 0 && tab[pos - 1] > tmp) {
tab[pos] = tab[pos - 1];
pos = pos - 1;
}
tab[pos] = tmp;
}
}
```
# Tri par insertion (3/3)
## Question: Quelle est la complexité?
. . .
* Parcours de tous les éléments ($N-1$ passages dans la boucle)
* Placer: en moyenne $i$ comparaisons et affectations à l'étape $i$
* Moyenne: $\mathcal{O}(N^2)$
. . .
* Pire des cas, liste triée à l'envers: $\mathcal{O}(N^2)$
* Meilleurs des cas, liste déjà triée: $\mathcal{O}(N)$
# L'algorithme à la main
## Exercice *sur papier*
* Trier par insertion le tableau `[5, -2, 1, 3, 10]`
```C
```
# Tri rapide ou quicksort (1/8)
## Idée: algorithme `diviser pour régner` (`divide-and-conquer`)
* Diviser: découper un problème en sous problèmes;
* Régner: résoudre les sous-problèmes (souvent récursivement);
* Combiner: à partir des sous problèmes résolu, calculer la solution.
## Le pivot
* Trouver le **pivot**, un élément qui divise le tableau en 2, tels que:
1. Éléments à gauche sont **plus petits** que le pivot.
2. Élements à droite sont **plus grands** que le pivot.
# Tri rapide ou quicksort (2/8)
## Algorithme `quicksort(tableau)`
1. Choisir le pivot et l'amener à sa place:
* Les éléments à gauche sont plus petits que le pivot.
* Les éléments à droite sont plus grand que le pivot.
2. `quicksort(tableau_gauche)` en omettant le pivot.
3. `quicksort(tableau_droite)` en omettant le pivot.
4. S'il y a moins de deux éléments dans le tableau, le tableau est trié.
. . .
Compris?
. . .
Non c'est normal, faisons un exemple.
# Tri rapide ou quicksort (3/8)
\footnotesize
Deux variables sont primordiales:
```C
entier ind_min, ind_max; // les indices min/max des tableaux à trier
```
![Un exemple de quicksort.](figs/quicksort.svg)
# Tri rapide ou quicksort (4/8)
\footnotesize
Deux variables sont primordiales:
```C
entier ind_min, ind_max; // les indices min/max des tableaux à trier
```
## Pseudocode: quicksort
```python
rien quicksort(entier tableau[], entier ind_min, entier ind_max)
si (longueur(tab) > 1)
ind_pivot = partition(tableau, ind_min, ind_max)
si (longueur(tableau[ind_min:ind_pivot-1]) != 0)
quicksort(tableau, ind_min, pivot_ind - 1)
si (longueur(tableau[ind_pivot+1:ind_max-1]) != 0)
quicksort(tableau, ind_pivot + 1, ind_max)
```
# Tri rapide ou quicksort (5/8)
\footnotesize
## Pseudocode: partition
```C
entier partition(entier tableau[], entier ind_min, entier ind_max)
pivot = tableau[ind_max] // choix arbitraire
i = ind_min
j = ind_max-1
tant que i < j:
en remontant i trouver le premier élément > pivot
en descendant j trouver le premier élément < pivot
échanger(tableau[i], tableau[j])
// les plus grands à droite
// mettre les plus petits à gauche
// on met le pivot "au milieu"
échanger(tableau[i], tableau[ind_max])
retourne i // on retourne l'indice pivot
```
# Tri rapide ou quicksort (6/8)
## Exercice: implémenter les fonctions `quicksort` et `partition`
. . .
```C
void quicksort(int size, int array[size], int first,
int last)
{
if (first < last) {
int midpoint = partition(size, array, first, last);
if (first < midpoint - 1) {
quicksort(size, array, first, midpoint - 1);
}
if (midpoint + 1 < last) {
quicksort(size, array, midpoint + 1, last);
}
}
}
```
# Tri rapide ou quicksort (7/8)
\footnotesize
## Exercice: implémenter les fonctions `quicksort` et `partition`
```C
int partition(int size, int array[size], int first, int last) {
int pivot = array[last];
int i = first - 1, j = last;
do {
do {
i += 1;
} while (array[i] < pivot && i < j);
do {
j -= 1;
} while (array[j] > pivot && i < j);
if (j > i) {
swap(&array[i], &array[j]);
}
} while (j > i);
swap(&array[i], &array[last]);
return i;
}
```
# Tri rapide ou quicksort (8/8)
## Quelle est la complexité du tri rapide?
. . .
* Pire des cas plus: $\mathcal{O}(N^2)$
* Quand le pivot sépare toujours le tableau de façon déséquilibrée ($N-1$
éléments d'un côté $1$ de l'autre).
* $N$ boucles et $N$ comparaisons $\Rightarrow N^2$.
* Meilleur des cas (toujours le meilleur pivot): $\mathcal{O}(N\cdot \log_2(N))$.
* Chaque fois le tableau est séparé en $2$ parties égales.
* On a $\log_2(N)$ partitions, et $N$ boucles $\Rightarrow N\cdot
\log_2(N)$.
* En moyenne: $\mathcal{O}(N\cdot \log_2(N))$.
# L'algorithme à la main
## Exercice *sur papier*
* Trier par tri rapide le tableau `[5, -2, 1, 3, 10, 15, 7, 4]`
```C
```
---
title: "Backtracking et piles"
date: "2022-11-23"
---
# Tri à bulle (1/4)
## Algorithme
* Parcours du tableau et comparaison des éléments consécutifs:
- Si deux éléments consécutifs ne sont pas dans l'ordre, ils sont échangés.
* On recommence depuis le début du tableau jusqu'à avoir plus d'échanges à
faire.
## Que peut-on dire sur le dernier élément du tableau après un parcours?
. . .
* Le plus grand élément est **à la fin** du tableau.
* Plus besoin de le traiter.
* A chaque parcours on s'arrête un élément plus tôt.
# Tri à bulle (2/4)
## Exemple
![Tri à bulles d'un tableau d'entiers](figs/tri_bulles.svg)
# Tri à bulle (3/4)
## Exercice: écrire l'algorithme (poster le résultat sur matrix)
. . .
```C
rien tri_a_bulles(entier tableau[])
pour i de longueur(tableau)-1 à 1:
trié = vrai
pour j de 0 à i-1:
si (tableau[j] > tableau[j+1])
échanger(array[j], array[j+1])
trié = faux
si trié
retourner
```
# Tri à bulle (4/4)
## Quelle est la complexité du tri à bulles?
. . .
* Dans le meilleurs des cas:
* Le tableau est déjà trié: $\mathcal{O}(N)$ comparaisons.
* Dans le pire des cas, $N\cdot (N-1)/2\sim\mathcal{O}(N^2)$:
$$
\sum_{i=1}^{N-1}i\mbox{ comparaison et }3\sum_{i=1}^{N-1}i \mbox{ affectations
(swap)}\Rightarrow \mathcal{O}(N^2).
$$
* En moyenne, $\mathcal{O}(N^2)$ ($N^2/2$ comparaisons).
# L'algorithme à la main
## Exercice *sur papier*
* Trier par tri à bulles le tableau `[5, -2, 1, 3, 10, 15, 7, 4]`
```C
```
# Problème des 8-reines
* Placer 8 reines sur un échiquier de $8 \times 8$.
* Sans que les reines ne puissent se menacer mutuellement (92 solutions).
## Conséquence
* Deux reines ne partagent pas la même rangée, colonne, ou diagonale.
* Donc chaque solution a **une** reine **par colonne** ou **ligne**.
## Généralisation
* Placer $N$ reines sur un échiquier de $N \times
N$.
- Exemple de **backtracking** (retour en arrière) $\Rightarrow$ récursivité.
![Problème des 8-reines. Source:
[wikipedia](https://fr.wikipedia.org/wiki/Problème_des_huit_dames)](./figs/fig_recursivite_8_reines.png){width=35%}
# Problème des 2-reines
![Le problème des 2 reines n'a pas de solution.](figs/2reines.svg){width=50%}
# Comment trouver les solutions?
* On pose la première reine sur la première case disponible.
* On rend inaccessibles toutes les cases menacées.
* On pose la reine suivante sur la prochaine case non-menacée.
* Jusqu'à ce qu'on puisse plus poser de reine.
* On revient alors en arrière jusqu'au dernier coup où il y avait plus qu'une
possibilité de poser une reine.
* On recommence depuis là.
. . .
* Le jeu prend fin quand on a énuméré *toutes* les possibilités de poser les
reines.
# Problème des 3-reines
![Le problème des 3 reines n'a pas de solution non plus.](figs/3reines.svg)
# Problème des 4-reines
![Le problème des 4 reines a une solution.](figs/4reines.svg)
# Problème des 4-reines, symétrie
![Le problème des 4 reines a une autre solution (symétrie
horizontale).](figs/4reines_sym.svg)
# Problème des 5 reines
## Exercice: Trouver une solution au problème des 5 reines
* Faire une capture d'écran / une photo de votre solution et la poster sur
matrix.
```C
```
# Quelques observations sur le problème
* Une reine par colonne au plus.
* On place les reines sur des colonnes successives.
* On a pas besoin de "regarder en arrière" (on place "devant" uniquement).
* Trois étapes:
* On place une reine dans une case libre.
* On met à jour le tableau.
* Quand on a plus de cases libres on "revient dans le temps" ou c'est qu'on
a réussi.
# Le code du problème des 8 reines (1/N)
## Quelle structure de données?
. . .
Une matrice de booléens fera l'affaire:
```C
bool board[n][n];
```
## Quelles fonctionnalités?
. . .
```C
// Pour chaque ligne placer la reine sur toutes les colonnes
// et compter les solutions
void nbr_solutions(board, column, counter);
// Copier un tableau dans un autre
void copy(board_in, board_out);
// Placer la reine à li, co et rendre inaccessible devant
void placer_devant(board, li, co);
```
# Le code du problème des 8 reines (2/N)
## Le calcul du nombre de solutions
```C
// Calcule le nombre de solutions au problème des <n> reines
nbr_solutions(board, column, count)
// pour chaque ligne
// si la case libre
// si column < n - 1
// copier board dans un "new" board,
// y poser une reine
// et mettre à jour ce "new" board
// nbr_solutions(new_board, column+1, count)
// sinon
// on a posé la n-ème et on a gagné
// count += 1
```
# Le code du problème des 8 reines (3/N)
## Le calcul du nombre de solutions
```C
// Placer une reine et mettre à jour
placer_devant(board, ligne, colonne)
// board est occupé à ligne/colonne
// toutes les cases des colonnes
// suivantes sont mises à jour
```
# Le code du problème des 8 reines (4/N)
## Compris? Alors écrivez le code et postez le!
. . .
## Le nombre de solutions
\footnotesize
```C
// Calcule le nombre de solutions au problème des <n> reines
void nb_sol(int n, bool board[n][n], int co, int *ptr_cpt) {
for (int li = 0; li < n; li++) {
if (board[li][co]) {
if (co < n-1) {
bool new_board[n][n]; // alloué à chaque nouvelle tentative
copy(n, board, new_board);
prises_devant(n, new_board, li, co);
nb_sol(n, new_board, co+1, ptr_cpt);
} else {
*ptr_cpt = (*ptr_cpt)+1;
}
}
}
}
```
# Le code du problème des 8 reines (5/N)
\footnotesize
## Placer devant
```C
// Retourne une copie du tableau <board> complété avec les positions
// prises sur la droite droite par une reine placée en <board(li,co)>
void prises_devant(int n, bool board[n][n], int li, int co) {
board[li][co] = false; // position de la reine
for (int j = 1; j < n-co; j++) {
// horizontale et diagonales à droite de la reine
if (j <= li) {
board[li-j][co+j] = false;
}
board[li][co+j] = false;
if (li+j < n) {
board[li+j][co+j] = false;
}
}
}
```
---
title: "Piles"
date: "2022-12-07"
---
# Les piles (1/5)
## Qu'est-ce donc?
* Structure de données abstraite...
. . .
* de type `LIFO` (*Last in first out*).
![Une pile où on ajoute A, puis B avant de les retirer. Source:
[Wikipedia](https://upload.wikimedia.org/wikipedia/commons/e/e1/Stack_%28data_structure%29_LIFO.svg)](figs/Stack.svg){width=70%}
## Des exemples de la vraie vie
. . .
* Pile d'assiettes, de livres, ...
* Adresses visitées par un navigateur web.
* Les calculatrices du passé (en polonaise inverse).
* Les boutons *undo* de vos éditeurs de texte (aka *u* dans vim).
# Les piles (2/5)
## Fonctionnalités
. . .
1. Empiler (push): ajouter un élément sur la pile.
2. Dépiler (pop): retirer l'élément du sommet de la pile et le retrouner.
3. Liste vide? (is_empty?).
. . .
4. Jeter un oeil (peek): retourner l'élément du sommet de la pile (sans le dépiler).
5. Nombre d'éléments (length).
## Comment faire les 4,5 à partir de 1 à 3?
. . .
4. Dépiler l'élément, le copier, puis l'empiler à nouveau.
5. Dépiler jusqu'à ce que la pile soit vide, puis empiler à nouveau.
. . .
## Existe en deux goûts
* Pile avec ou sans limite de capacité (à concurrence de la taille de la
mémoire).
# Les piles (3/5)
## Implémentation
* Jusqu'ici on n'a pas du tout parlé d'implémentation (d'où le nom de structure
abstraite).
* Pas de choix unique d'implémentation.
## Quelle structure de données allons nous utiliser?
. . .
Et oui vous avez deviné: un tableau!
## La structure: de quoi avons-nous besoin (pile de taille fixe)?
. . .
```C
#define MAX_CAPACITY 500
typedef struct _stack {
int data[MAX_CAPACITY]; // les données
int top; // indice du sommet
} stack;
```
# Les piles (4/5)
## Initialisation
. . .
```C
void stack_init(stack *s) {
s->top = -1;
}
```
## Est vide?
. . .
```C
bool stack_is_empty(stack s) {
return s.top == -1;
}
```
## Empiler (ajouter un élément au sommet)
. . .
```C
void stack_push(stack *s, int val) {
s->top += 1;
s->data[s->top] = val;
}
```
# Les piles (5/5)
## Dépiler (enlever l'élément du sommet)
. . .
```C
int stack_pop(stack *s) {
s->top -= 1;
return s->data[s->top+1];
}
```
## Jeter un oeil (regarder le sommet)
. . .
```C
int stack_peek(stack *s) {
return s->data[s->top];
}
```
## Quelle est la complexité de ces opérations?
. . .
## Voyez-vous des problèmes potentiels avec cette implémentation?
. . .
* Empiler avec une pile pleine.
* Dépiler avec une pile vide.
* Jeter un oeil au sommet d'une pile vide.
# Gestion d'erreur, level 0
* Il y a plusieurs façon de traiter les erreur:
* Ne rien faire (laisser la responsabilité à l'utilisateur).
* Faire paniquer le programme (il plante plus ou moins violemment).
* Utiliser des codes d'erreurs.
## La panique
* En C, on a les `assert()` pour faire paniquer un programme.
# Assertions (1/3)
```C
#include <assert.h>
void assert(int expression);
```
## Qu'est-ce donc?
- Macro permettant de tester une condition lors de l'exécution d'un programme:
- Si `expression == 0`{.C} (condition fausse), `assert()`{.C} affiche un message d'erreur sur `stderr`{.C} et termine l'exécution du programme.
- Sinon l'exécution se poursuit normalement.
- Peuvent être désactivés à la compilation avec `-DNDEBUG` (équivalent à `#define
NDEBUG`)
## À quoi ça sert?
- Permet de réaliser des tests unitaires.
- Permet de tester des conditions catastrophiques d'un programme.
- **Ne permet pas** de gérer les erreurs.
# Assertions (2/3)
<!-- \footnotesize -->
## Exemple
```C
#include <assert.h>
void stack_push(stack *s, int val) {
assert(s->top < MAX_CAPACITY-1);
s->top += 1;
s->data[s->top] = val;
}
int stack_pop(stack *s) {
assert(s->top >= 0);
s->top -= 1;
return s->data[s->top+1];
}
int stack_peek(stack *s) {
assert(s->top >= 0);
return s->data[s->top];
}
```
# Assertions (3/3)
## Cas typiques d'utilisation
- Vérification de la validité des pointeurs (typiquement `!= NULL`{.C}).
- Vérification du domaine des indices (dépassement de tableau).
## Bug vs. erreur de *runtime*
- Les assertions sont là pour détecter les bugs (erreurs d'implémentation).
- Les assertions ne sont pas là pour gérer les problèmes externes au programme (allocation mémoire qui échoue, mauvais paramètre d'entrée passé par l'utilisateur, ...).
. . .
- Mais peuvent être pratiques quand même pour ça...
- Typiquement désactivées dans le code de production.
# La pile dynamique
## Comment modifier le code précédent pour avoir une taille dynamique?
. . .
```C
// alloue une zone mémoire de size octets
void *malloc(size_t size);
// change la taille allouée à size octets (contiguïté garantie)
void *realloc(void *ptr, size_t size);
```
## Et maintenant?
. . .
```C
stack_create(); // crée une pile avec une taille par défaut
// vérifie si la pile est pleine et réalloue si besoin
stack_push();
// vérifie si la pile est vide/trop grande
// et réalloue si besoin
stack_pop();
```
## Exercice: ouvrir un repo/issues pour l'implémentation
* Oui-oui cela est une introduction au développement collaboratif (et
hippie).
# Le tri à deux piles (1/3)
## Cas pratique
![Un exemple de tri à deux piles](figs/tri_piles.svg){width=70%}
# Le tri à deux piles (2/3)
## Exercice: formaliser l'algorithme
. . .
## Algorithme de tri nécessitant 2 piles (G, D)
Soit `tab` le tableau à trier:
```C
pour i de 0 à N-1
tant que (tab[i] > que le sommet de G)
dépiler G dans D
tant que (tab[i] < que le sommet de D)
dépiler de D dans G
empiler tab[i] sur G
dépiler tout D dans G
tab est trié dans G
```
# Le tri à deux piles (3/3)
## Exercice: trier le tableau `[2, 10, 5, 20, 15]`
```C
```
version: "3.3"
services:
slides:
image: omalaspinas/pandoc:latest
user: 1000:1000
container_name: slides
volumes:
- ./:/data
entrypoint: ["make"]
working_dir: /data
<?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="95.24704mm"
height="95.24704mm"
viewBox="0 0 95.24704 95.24704"
version="1.1"
id="svg8"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="2reines.svg">
<defs
id="defs2">
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="371.08618"
inkscape:cy="90.967382"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1884"
inkscape:window-height="1052"
inkscape:window-x="36"
inkscape:window-y="0"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid815"
originx="-18.680396"
originy="-59.695988" />
</sodipodi:namedview>
<metadata
id="metadata5">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-18.680395,-142.05697)">
<g
id="g1101"
transform="translate(-31.537804,-47.306706)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<g
id="g916"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-5"
transform="translate(47.37352)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-1"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-2"
transform="translate(0,47.37352)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-93"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-6"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-0"
transform="translate(47.37352,47.37352)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-62"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-8"
inkscape:connector-curvature="0" />
</g>
<text
id="text975"
y="224.14017"
x="65.009895"
style="font-size:30.53443909px;line-height:1.25;font-family:'Accanthis ADF Std';-inkscape-font-specification:'Accanthis ADF Std';letter-spacing:0px;word-spacing:0px;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
xml:space="preserve"><tspan
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
y="224.14017"
x="65.009895"
id="tspan973"
sodipodi:role="line">R</tspan></text>
</g>
<path
style="fill:#999999;stroke:none;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none"
d="m 252.28925,627.12968 v -88 h 88 88 v 88 88 h -88 -88 z"
id="path1411"
inkscape:connector-curvature="0"
transform="scale(0.26458333)" />
<path
style="fill:#999999;stroke:none;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none"
d="m 73.289246,806.12968 v -88 h 88.000004 88 v 88 88 h -88 -88.000004 z"
id="path1413"
inkscape:connector-curvature="0"
transform="scale(0.26458333)" />
<path
style="fill:#999999;stroke:none;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none"
d="m 252.28925,806.12968 v -88 h 88 88 v 88 88 h -88 -88 z"
id="path1415"
inkscape:connector-curvature="0"
transform="scale(0.26458333)" />
</g>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="622.69006mm"
height="483.61014mm"
viewBox="0 0 622.69006 483.61014"
version="1.1"
id="svg8"
inkscape:version="1.1.1 (3bf5ae0, 2021-09-20)"
sodipodi:docname="3reines.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<defs
id="defs2">
<linearGradient
id="linearGradient8201"
inkscape:swatch="solid">
<stop
style="stop-color:#0000ff;stop-opacity:1;"
offset="0"
id="stop8199" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend-2"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126-1"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend-9"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126-9"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend-4"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126-91"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend-4-2"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126-91-6"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend-4-0"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126-91-61"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend-5"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126-4"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend-6"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126-5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend-6-4"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126-5-5"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend-6-4-5"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path1126-5-5-4"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.28160454"
inkscape:cx="1786.1928"
inkscape:cy="1001.4043"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1080"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:pagecheckerboard="0">
<inkscape:grid
type="xygrid"
id="grid815"
originx="214.03458"
originy="259.13096" />
</sodipodi:namedview>
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(214.03461,-74.306759)">
<g
transform="translate(263.19023,150.28325)"
id="g916-8-5-7-3"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-4-7-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-7-1-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-65-1-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-6-5-7"
inkscape:connector-curvature="0" />
</g>
<path
inkscape:connector-curvature="0"
id="path2570-2"
d="m 314.1462,363.58369 v -23.38608 h 23.199 23.19898 v 23.38608 23.38608 h -23.19898 -23.199 z"
style="fill:#ff00ff;stroke:none;stroke-width:0.707107;stroke-miterlimit:4;stroke-dasharray:none" />
<g
id="g3353"
transform="translate(0,-65.767613)">
<g
transform="translate(-31.537804,-47.306706)"
id="g916"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-5"
transform="translate(15.835716,-47.306706)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-1"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-2"
transform="translate(-31.537804,0.066814)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-93"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-6"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-0"
transform="translate(15.835716,0.066814)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-62"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-8"
inkscape:connector-curvature="0" />
</g>
<text
id="text975"
y="176.83347"
x="33.472092"
style="font-size:30.5344px;line-height:1.25;font-family:'Accanthis ADF Std';-inkscape-font-specification:'Accanthis ADF Std';letter-spacing:0px;word-spacing:0px;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
xml:space="preserve"><tspan
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
y="176.83347"
x="33.472092"
id="tspan973"
sodipodi:role="line">R</tspan></text>
<path
transform="scale(0.26458333)"
inkscape:connector-curvature="0"
id="path1411"
d="m 252.28925,627.12968 v -88 h 88 88 v 88 88 h -88 -88 z"
style="fill:#999999;stroke:none;stroke-width:1.88976;stroke-miterlimit:4;stroke-dasharray:none" />
<path
transform="scale(0.26458333)"
inkscape:connector-curvature="0"
id="path1413"
d="m 73.289246,806.12968 v -88 h 88.000004 88 v 88 88 h -88 -88.000004 z"
style="fill:#999999;stroke:none;stroke-width:1.88976;stroke-miterlimit:4;stroke-dasharray:none" />
<path
transform="scale(0.26458333)"
inkscape:connector-curvature="0"
id="path1415"
d="m 252.28925,806.12968 v -88 h 88 88 v 88 88 h -88 -88 z"
style="fill:#999999;stroke:none;stroke-width:1.88976;stroke-miterlimit:4;stroke-dasharray:none" />
<g
transform="translate(63.209236,-47.306706)"
id="g916-8"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(63.209236,0.066814)"
id="g916-8-6"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-3"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(63.209236,47.440334)"
id="g916-8-2"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-5"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(15.835716,47.440334)"
id="g916-8-5"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-65"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-6"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-31.537804,47.440334)"
id="g916-8-9"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-74"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-2"
inkscape:connector-curvature="0" />
</g>
<path
transform="matrix(0.26458333,0,0,0.26458333,18.680395,142.05697)"
inkscape:connector-curvature="0"
id="path2160"
d="M 2.3208456,448.70207 V 360.31372 H 90.35564 178.39043 v 88.38835 88.38835 H 90.35564 2.3208456 Z"
style="fill:#999999;stroke:none;stroke-width:1.33626;stroke-miterlimit:4;stroke-dasharray:none" />
<path
transform="matrix(0.26458333,0,0,0.26458333,18.680395,142.05697)"
inkscape:connector-curvature="0"
id="path2162"
d="m 360.11688,448.70207 v -88.38835 h 88.38834 88.38835 v 88.38835 88.38835 h -88.38835 -88.38834 z"
style="fill:#999999;stroke:none;stroke-width:1.33626;stroke-miterlimit:4;stroke-dasharray:none" />
<path
transform="matrix(0.26458333,0,0,0.26458333,18.680395,142.05697)"
inkscape:connector-curvature="0"
id="path2164"
d="M 360.11688,90.552486 V 2.5176919 h 88.38834 88.38835 V 90.552486 178.58728 h -88.38835 -88.38834 z"
style="fill:#999999;stroke:none;stroke-width:1.33626;stroke-miterlimit:4;stroke-dasharray:none" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)"
d="m 175.3264,147.60845 h 76.33218"
id="path2406"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-6)"
d="m 252.65801,170.86683 c -21.03189,20.03865 -44.52297,28.90844 -76.33218,0"
id="path2406-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<g
id="g3435"
transform="translate(0,-65.767613)">
<g
transform="translate(215.81671,-49.289308)"
id="g916-7"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-68"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-4"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-5-3"
transform="translate(263.19023,-49.289308)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-6-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-2-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-9-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-1-2"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-2-0"
transform="translate(215.81671,-1.915786)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-7-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-0-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-93-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-6-2"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-0-6"
transform="translate(263.19023,-1.915786)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-62-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-6-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-1-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-8-5"
inkscape:connector-curvature="0" />
</g>
<text
id="text975-0"
y="174.85088"
x="280.8266"
style="font-size:30.5344px;line-height:1.25;font-family:'Accanthis ADF Std';-inkscape-font-specification:'Accanthis ADF Std';letter-spacing:0px;word-spacing:0px;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
xml:space="preserve"><tspan
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
y="174.85088"
x="280.8266"
id="tspan973-4"
sodipodi:role="line">R</tspan></text>
<path
inkscape:connector-curvature="0"
id="path1411-8"
d="m 314.10605,163.94547 v -23.28334 h 23.28333 23.28333 v 23.28334 23.28333 h -23.28333 -23.28333 z"
style="fill:#999999;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path1413-7"
d="m 266.74563,211.30588 v -23.28333 h 23.28333 23.28334 v 23.28333 23.28334 h -23.28334 -23.28333 z"
style="fill:#999999;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path1415-1"
d="m 314.10605,211.30588 v -23.28333 h 23.28333 23.28333 v 23.28333 23.28334 h -23.28333 -23.28333 z"
style="fill:#999999;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
<g
transform="translate(310.56375,-49.289308)"
id="g916-8-7"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-72"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-61"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(310.56375,-1.915786)"
id="g916-8-6-0"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-1-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-0-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-6-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-3-9"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(310.56375,45.457733)"
id="g916-8-2-4"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-0-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-6-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-1-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-5-1"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(263.19023,45.457733)"
id="g916-8-5-7"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-4-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-7-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-65-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-6-5"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(215.81671,45.457733)"
id="g916-8-9-9"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-3-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-74-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-5-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-2-7"
inkscape:connector-curvature="0" />
</g>
<path
inkscape:connector-curvature="0"
id="path2160-3"
d="m 266.64897,258.79346 v -23.38608 h 23.29254 23.29253 v 23.38608 23.38609 h -23.29253 -23.29254 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path2162-6"
d="m 361.31583,258.79346 v -23.38608 h 23.38609 23.38608 v 23.38608 23.38609 h -23.38608 -23.38609 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path2164-5"
d="m 361.31583,164.03305 v -23.29254 h 23.38609 23.38608 v 23.29254 23.29254 h -23.38608 -23.38609 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<text
id="text975-0-9"
y="269.5979"
x="328.20013"
style="font-size:30.5344px;line-height:1.25;font-family:'Accanthis ADF Std';-inkscape-font-specification:'Accanthis ADF Std';letter-spacing:0px;word-spacing:0px;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
xml:space="preserve"><tspan
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
y="269.5979"
x="328.20013"
id="tspan973-4-4"
sodipodi:role="line">R</tspan></text>
<path
transform="matrix(0.26458333,0,0,0.26458333,113.96132,142.72311)"
inkscape:connector-curvature="0"
id="path2570"
d="m 935.21025,259.65895 v -88.38834 h 87.68125 87.6812 v 88.38834 88.38835 h -87.6812 -87.68125 z"
style="fill:#ff00ff;stroke:none;stroke-width:2.67253;stroke-miterlimit:4;stroke-dasharray:none" />
</g>
<g
transform="translate(215.81671,55.536212)"
id="g916-7-6"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-8-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-68-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-8-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-4-5"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-5-3-6"
transform="translate(263.19023,55.536212)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-6-1-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-2-4-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-9-9-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-1-2-2"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-2-0-7"
transform="translate(215.81671,102.90973)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-7-6-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-0-8-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-93-9-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-6-2-6"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-0-6-0"
transform="translate(263.19023,102.90973)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-62-6-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-6-4-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-1-9-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-8-5-1"
inkscape:connector-curvature="0" />
</g>
<text
id="text975-0-8"
y="279.67639"
x="280.8266"
style="font-size:30.5344px;line-height:1.25;font-family:'Accanthis ADF Std';-inkscape-font-specification:'Accanthis ADF Std';letter-spacing:0px;word-spacing:0px;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
xml:space="preserve"><tspan
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
y="279.67639"
x="280.8266"
id="tspan973-4-7"
sodipodi:role="line">R</tspan></text>
<path
inkscape:connector-curvature="0"
id="path1411-8-9"
d="m 314.10605,268.77099 v -23.28334 h 23.28333 23.28333 v 23.28334 23.28333 h -23.28333 -23.28333 z"
style="fill:#999999;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path1413-7-2"
d="m 266.74563,316.1314 v -23.28333 h 23.28333 23.28334 v 23.28333 23.28334 h -23.28334 -23.28333 z"
style="fill:#999999;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path1415-1-0"
d="m 314.10605,316.1314 v -23.28333 h 23.28333 23.28333 v 23.28333 23.28334 h -23.28333 -23.28333 z"
style="fill:#999999;stroke:none;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
<g
transform="translate(310.56375,55.536212)"
id="g916-8-7-2"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-2-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-72-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-2-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-61-9"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(310.56375,102.90973)"
id="g916-8-6-0-2"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-1-6-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-0-1-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-6-5-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-3-9-7"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(310.56375,150.28325)"
id="g916-8-2-4-3"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-0-9-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-6-0-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-1-9-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-5-1-9"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(215.81671,150.28325)"
id="g916-8-9-9-8"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-3-7-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-74-7-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-5-6-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-2-7-3"
inkscape:connector-curvature="0" />
</g>
<path
inkscape:connector-curvature="0"
id="path2160-3-6"
d="M 266.64897,363.61898 V 340.2329 h 23.29254 23.29253 v 23.38608 23.38609 h -23.29253 -23.29254 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path2162-6-1"
d="M 361.31583,363.61898 V 340.2329 h 23.38609 23.38608 v 23.38608 23.38609 h -23.38608 -23.38609 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path2164-5-0"
d="m 361.31583,268.85857 v -23.29254 h 23.38609 23.38608 v 23.29254 23.29254 h -23.38608 -23.38609 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<text
id="text975-0-9-6"
y="327.0499"
x="375.57367"
style="font-size:30.5344px;line-height:1.25;font-family:'Accanthis ADF Std';-inkscape-font-specification:'Accanthis ADF Std';letter-spacing:0px;word-spacing:0px;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
xml:space="preserve"><tspan
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
y="327.0499"
x="375.57367"
id="tspan973-4-4-3"
sodipodi:role="line">R</tspan></text>
<g
id="g3243"
transform="translate(220.74134,159.60116)">
<g
transform="translate(-252.27914,66.331489)"
id="g916-6"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-43"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-38"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-60"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-5-4"
transform="translate(-204.90562,66.331489)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-6-88"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-2-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-9-97"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-1-7"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-2-64"
transform="translate(-252.27914,113.70501)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-7-30"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-0-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-93-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-6-9"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-0-2"
transform="translate(-204.90562,113.70501)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-62-54"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-6-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-1-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-8-9"
inkscape:connector-curvature="0" />
</g>
<text
id="text975-4"
y="337.84518"
x="-187.26924"
style="font-size:30.5344px;line-height:1.25;font-family:'Accanthis ADF Std';-inkscape-font-specification:'Accanthis ADF Std';letter-spacing:0px;word-spacing:0px;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
xml:space="preserve"><tspan
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
y="337.84518"
x="-187.26924"
id="tspan973-6"
sodipodi:role="line">R</tspan></text>
<g
transform="translate(-157.5321,66.331489)"
id="g916-8-47"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-8"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-157.5321,113.70501)"
id="g916-8-6-12"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-1-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-0-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-6-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-3-68"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-157.5321,161.07853)"
id="g916-8-2-0"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-0-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-6-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-1-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-5-51"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-204.90562,161.07853)"
id="g916-8-5-1"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-4-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-7-85"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-65-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-6-6"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-252.27914,161.07853)"
id="g916-8-9-4"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-3-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-74-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-5-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-2-86"
inkscape:connector-curvature="0" />
</g>
<path
inkscape:connector-curvature="0"
id="path2160-2"
d="m -201.44688,374.41425 v -23.38608 h 23.29254 23.29253 v 23.38608 23.38609 h -23.29253 -23.29254 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<path
transform="matrix(0.26458333,0,0,0.26458333,113.96132,142.72311)"
inkscape:connector-curvature="0"
id="path2931"
d="m -1013.057,875.65803 v -88.03479 h 88.03476 88.03479 v 88.03479 88.0348 h -88.03479 -88.03476 z"
style="fill:#999999;stroke:none;stroke-width:1.33626;stroke-miterlimit:4;stroke-dasharray:none" />
<path
transform="matrix(0.26458333,0,0,0.26458333,113.96132,142.72311)"
inkscape:connector-curvature="0"
id="path2933"
d="M -1191.955,517.50845 V 429.1201 h 88.0347 88.0348 v 88.38835 88.38834 h -88.0348 -88.0347 z"
style="fill:#999999;stroke:none;stroke-width:1.33626;stroke-miterlimit:4;stroke-dasharray:none" />
<path
transform="matrix(0.26458333,0,0,0.26458333,113.96132,142.72311)"
inkscape:connector-curvature="0"
id="path2935"
d="M -1013.057,517.50845 V 429.1201 h 88.03476 88.03479 v 88.38835 88.38834 h -88.03479 -88.03476 z"
style="fill:#999999;stroke:none;stroke-width:1.33626;stroke-miterlimit:4;stroke-dasharray:none" />
<path
transform="matrix(0.26458333,0,0,0.26458333,113.96132,142.72311)"
inkscape:connector-curvature="0"
id="path2937"
d="m -1013.057,696.40646 v -88.38834 h 88.03476 88.03479 v 88.38834 88.38835 h -88.03479 -88.03476 z"
style="fill:#999999;stroke:none;stroke-width:1.33626;stroke-miterlimit:4;stroke-dasharray:none" />
<path
transform="matrix(0.26458333,0,0,0.26458333,113.96132,142.72311)"
inkscape:connector-curvature="0"
id="path2939"
d="m -834.15902,696.40646 v -88.38834 h 88.38835 88.38835 v 88.38834 88.38835 h -88.38835 -88.38835 z"
style="fill:#999999;stroke:none;stroke-width:1.33626;stroke-miterlimit:4;stroke-dasharray:none" />
</g>
<g
id="g3188"
transform="translate(147.80005,39.11606)">
<g
transform="translate(68.016668,186.81659)"
id="g916-6-2"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-43-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-3-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-38-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-60-2"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-5-4-9"
transform="translate(115.39018,186.81659)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-6-88-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-2-8-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-9-97-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-1-7-1"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-2-64-3"
transform="translate(68.016668,234.19011)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-7-30-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-0-3-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-93-0-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-6-9-3"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-0-2-4"
transform="translate(115.39018,234.19011)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-62-54-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-6-0-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-1-5-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-8-9-1"
inkscape:connector-curvature="0" />
</g>
<text
id="text975-4-9"
y="458.33029"
x="133.02655"
style="font-size:30.5344px;line-height:1.25;font-family:'Accanthis ADF Std';-inkscape-font-specification:'Accanthis ADF Std';letter-spacing:0px;word-spacing:0px;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
xml:space="preserve"><tspan
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
y="458.33029"
x="133.02655"
id="tspan973-6-6"
sodipodi:role="line">R</tspan></text>
<g
transform="translate(162.7637,186.81659)"
id="g916-8-47-9"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-7-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-5-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-4-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-8-0"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(162.7637,234.19011)"
id="g916-8-6-12-5"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-1-8-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-0-9-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-6-3-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-3-68-0"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(162.7637,281.56363)"
id="g916-8-2-0-0"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-0-2-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-6-1-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-1-0-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-5-51-6"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(115.39018,281.56363)"
id="g916-8-5-1-7"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-4-0-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-7-85-6"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-65-0-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-6-6-8"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(68.016668,281.56363)"
id="g916-8-9-4-7"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-3-6-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-74-2-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-5-5-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-2-86-9"
inkscape:connector-curvature="0" />
</g>
<path
inkscape:connector-curvature="0"
id="path2160-2-9"
d="m 118.84893,494.89935 v -23.38608 h 23.29254 23.29253 v 23.38608 23.38609 h -23.29253 -23.29254 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path2931-6"
d="m 166.21913,494.89273 v -23.29254 h 23.29253 23.29254 v 23.29254 23.29254 h -23.29254 -23.29253 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path2933-0"
d="m 118.8857,400.13232 v -23.38608 h 23.29251 23.29255 v 23.38608 23.38608 H 142.17821 118.8857 Z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path2935-2"
d="m 166.21913,400.13232 v -23.38608 h 23.29253 23.29254 v 23.38608 23.38608 h -23.29254 -23.29253 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path2937-7"
d="m 166.21913,447.46575 v -23.38608 h 23.29253 23.29254 v 23.38608 23.38609 h -23.29254 -23.29253 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<path
inkscape:connector-curvature="0"
id="path2939-6"
d="m 213.55255,447.46575 v -23.38608 h 23.38609 23.38608 v 23.38608 23.38609 h -23.38608 -23.38609 z"
style="fill:#999999;stroke:none;stroke-width:0.353553;stroke-miterlimit:4;stroke-dasharray:none" />
<text
id="text975-4-1"
y="410.95676"
x="227.77359"
style="font-size:30.5344px;line-height:1.25;font-family:'Accanthis ADF Std';-inkscape-font-specification:'Accanthis ADF Std';letter-spacing:0px;word-spacing:0px;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
xml:space="preserve"><tspan
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
y="410.95676"
x="227.77359"
id="tspan973-6-3"
sodipodi:role="line">R</tspan></text>
<path
transform="matrix(0.26458333,0,0,0.26458333,113.96132,142.72311)"
inkscape:connector-curvature="0"
id="path3130"
d="m 378.34352,1330.2028 v -87.6812 h 86.26703 86.26703 v 87.6812 87.6813 h -86.26703 -86.26703 z"
style="fill:#ff00ff;stroke:none;stroke-width:5.34506;stroke-miterlimit:4;stroke-dasharray:none" />
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-2)"
d="m 171.1667,486.61542 h 76.33218"
id="path2406-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-4)"
d="m -56.263672,372.99614 53.9749995,53.975"
id="path2406-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-4-0)"
d="m 186.6875,221.41972 53.975,53.975"
id="path2406-0-5"
inkscape:connector-curvature="0" />
<g
id="g3941"
transform="translate(92.79598,-105.08797)">
<g
transform="translate(-357.04879,160.62418)"
id="g916-6-5"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-43-8"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-3-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-38-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-60-4"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-5-4-8"
transform="translate(-309.67527,160.62418)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-6-88-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-2-8-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-9-97-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-1-7-9"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-2-64-6"
transform="translate(-357.04879,207.9977)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-7-30-10"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-0-3-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-93-0-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-6-9-2"
inkscape:connector-curvature="0" />
</g>
<g
id="g916-0-2-2"
transform="translate(-309.67527,207.9977)"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-62-54-05"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-6-0-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-1-5-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-8-9-9"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-262.30175,160.62418)"
id="g916-8-47-8"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-7-38"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-5-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-4-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-8-09"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-262.30175,207.9977)"
id="g916-8-6-12-1"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-1-8-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-0-9-62"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-6-3-5"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-3-68-4"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-262.30175,255.37122)"
id="g916-8-2-0-4"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-0-2-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-6-1-9"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-1-0-3"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-5-51-60"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-309.67527,255.37122)"
id="g916-8-5-1-5"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-4-0-0"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-7-85-2"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-65-0-94"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-6-6-3"
inkscape:connector-curvature="0" />
</g>
<g
transform="translate(-357.04879,255.37122)"
id="g916-8-9-4-5"
style="stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none">
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,189.61368 h 47.37352"
id="path821-4-3-6-1"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.468199,236.9872 h 47.37352"
id="path821-3-5-74-2-7"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 50.468199,236.9872 V 189.61368"
id="path821-6-7-0-5-5-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 97.841719,236.9872 V 189.61368"
id="path821-6-7-3-3-2-86-3"
inkscape:connector-curvature="0" />
</g>
</g>
<path
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-4-2)"
d="m -56.263672,269.68508 53.974997,-53.975"
id="path2406-0-4"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-6-4)"
d="m 219.29526,294.07918 c -29.04126,-0.70233 -51.92384,-11.04113 -53.975,-53.975"
id="path2406-6-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-6-4-5)"
d="M 20.815017,230.22996 C 20.112689,259.27122 9.7738871,282.1538 -33.159978,284.20497"
id="path2406-6-2-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</svg>
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="401.301pt" height="167.04pt" viewBox="0 0 401.301 167.04" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.625 -4.5625 C 1.171875 -4.859375 1.125 -5.1875 1.125 -5.359375 C 1.125 -5.96875 1.78125 -6.390625 2.484375 -6.390625 C 3.203125 -6.390625 3.84375 -5.875 3.84375 -5.15625 C 3.84375 -4.578125 3.453125 -4.109375 2.859375 -3.765625 Z M 3.078125 -3.609375 C 3.796875 -3.984375 4.28125 -4.5 4.28125 -5.15625 C 4.28125 -6.078125 3.40625 -6.640625 2.5 -6.640625 C 1.5 -6.640625 0.6875 -5.90625 0.6875 -4.96875 C 0.6875 -4.796875 0.703125 -4.34375 1.125 -3.875 C 1.234375 -3.765625 1.609375 -3.515625 1.859375 -3.34375 C 1.28125 -3.046875 0.421875 -2.5 0.421875 -1.5 C 0.421875 -0.453125 1.4375 0.21875 2.484375 0.21875 C 3.609375 0.21875 4.5625 -0.609375 4.5625 -1.671875 C 4.5625 -2.03125 4.453125 -2.484375 4.0625 -2.90625 C 3.875 -3.109375 3.71875 -3.203125 3.078125 -3.609375 Z M 2.078125 -3.1875 L 3.3125 -2.40625 C 3.59375 -2.21875 4.0625 -1.921875 4.0625 -1.3125 C 4.0625 -0.578125 3.3125 -0.0625 2.5 -0.0625 C 1.640625 -0.0625 0.921875 -0.671875 0.921875 -1.5 C 0.921875 -2.078125 1.234375 -2.71875 2.078125 -3.1875 Z M 2.078125 -3.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.9375 -1.640625 L 2.9375 -0.78125 C 2.9375 -0.421875 2.90625 -0.3125 2.171875 -0.3125 L 1.96875 -0.3125 L 1.96875 0 C 2.375 -0.03125 2.890625 -0.03125 3.3125 -0.03125 C 3.734375 -0.03125 4.25 -0.03125 4.671875 0 L 4.671875 -0.3125 L 4.453125 -0.3125 C 3.71875 -0.3125 3.703125 -0.421875 3.703125 -0.78125 L 3.703125 -1.640625 L 4.6875 -1.640625 L 4.6875 -1.953125 L 3.703125 -1.953125 L 3.703125 -6.484375 C 3.703125 -6.6875 3.703125 -6.75 3.53125 -6.75 C 3.453125 -6.75 3.421875 -6.75 3.34375 -6.625 L 0.28125 -1.953125 L 0.28125 -1.640625 Z M 2.984375 -1.953125 L 0.5625 -1.953125 L 2.984375 -5.671875 Z M 2.984375 -1.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 L 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 Z M 1.265625 -0.765625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 Z M 2.9375 -6.375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 Z M 2.890625 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 1.3125 -3.265625 L 1.3125 -3.515625 C 1.3125 -6.03125 2.546875 -6.390625 3.0625 -6.390625 C 3.296875 -6.390625 3.71875 -6.328125 3.9375 -5.984375 C 3.78125 -5.984375 3.390625 -5.984375 3.390625 -5.546875 C 3.390625 -5.234375 3.625 -5.078125 3.84375 -5.078125 C 4 -5.078125 4.3125 -5.171875 4.3125 -5.5625 C 4.3125 -6.15625 3.875 -6.640625 3.046875 -6.640625 C 1.765625 -6.640625 0.421875 -5.359375 0.421875 -3.15625 C 0.421875 -0.484375 1.578125 0.21875 2.5 0.21875 C 3.609375 0.21875 4.5625 -0.71875 4.5625 -2.03125 C 4.5625 -3.296875 3.671875 -4.25 2.5625 -4.25 C 1.890625 -4.25 1.515625 -3.75 1.3125 -3.265625 Z M 2.5 -0.0625 C 1.875 -0.0625 1.578125 -0.65625 1.515625 -0.8125 C 1.328125 -1.28125 1.328125 -2.078125 1.328125 -2.25 C 1.328125 -3.03125 1.65625 -4.03125 2.546875 -4.03125 C 2.71875 -4.03125 3.171875 -4.03125 3.484375 -3.40625 C 3.65625 -3.046875 3.65625 -2.53125 3.65625 -2.046875 C 3.65625 -1.5625 3.65625 -1.0625 3.484375 -0.703125 C 3.1875 -0.109375 2.734375 -0.0625 2.5 -0.0625 Z M 2.5 -0.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.125 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 4.75 -6.078125 C 4.828125 -6.1875 4.828125 -6.203125 4.828125 -6.421875 L 2.40625 -6.421875 C 1.203125 -6.421875 1.171875 -6.546875 1.140625 -6.734375 L 0.890625 -6.734375 L 0.5625 -4.6875 L 0.8125 -4.6875 C 0.84375 -4.84375 0.921875 -5.46875 1.0625 -5.59375 C 1.125 -5.65625 1.90625 -5.65625 2.03125 -5.65625 L 4.09375 -5.65625 C 3.984375 -5.5 3.203125 -4.40625 2.984375 -4.078125 C 2.078125 -2.734375 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.21875 0.21875 C 2.671875 0.21875 2.671875 -0.234375 2.671875 -0.328125 L 2.671875 -0.84375 C 2.671875 -1.390625 2.703125 -1.9375 2.78125 -2.46875 C 2.828125 -2.703125 2.953125 -3.5625 3.40625 -4.171875 Z M 4.75 -6.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 Z M 2.484375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.65625 -3.171875 L 3.65625 -2.84375 C 3.65625 -0.515625 2.625 -0.0625 2.046875 -0.0625 C 1.875 -0.0625 1.328125 -0.078125 1.0625 -0.421875 C 1.5 -0.421875 1.578125 -0.703125 1.578125 -0.875 C 1.578125 -1.1875 1.34375 -1.328125 1.125 -1.328125 C 0.96875 -1.328125 0.671875 -1.25 0.671875 -0.859375 C 0.671875 -0.1875 1.203125 0.21875 2.046875 0.21875 C 3.34375 0.21875 4.5625 -1.140625 4.5625 -3.28125 C 4.5625 -5.96875 3.40625 -6.640625 2.515625 -6.640625 C 1.96875 -6.640625 1.484375 -6.453125 1.0625 -6.015625 C 0.640625 -5.5625 0.421875 -5.140625 0.421875 -4.390625 C 0.421875 -3.15625 1.296875 -2.171875 2.40625 -2.171875 C 3.015625 -2.171875 3.421875 -2.59375 3.65625 -3.171875 Z M 2.421875 -2.40625 C 2.265625 -2.40625 1.796875 -2.40625 1.5 -3.03125 C 1.3125 -3.40625 1.3125 -3.890625 1.3125 -4.390625 C 1.3125 -4.921875 1.3125 -5.390625 1.53125 -5.765625 C 1.796875 -6.265625 2.171875 -6.390625 2.515625 -6.390625 C 2.984375 -6.390625 3.3125 -6.046875 3.484375 -5.609375 C 3.59375 -5.28125 3.640625 -4.65625 3.640625 -4.203125 C 3.640625 -3.375 3.296875 -2.40625 2.421875 -2.40625 Z M 2.421875 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 2.21875 -3.65625 L 2.21875 -6.09375 C 2.21875 -6.4375 2.234375 -6.5 2.703125 -6.5 L 3.9375 -6.5 C 4.90625 -6.5 5.25 -5.65625 5.25 -5.125 C 5.25 -4.484375 4.765625 -3.65625 3.65625 -3.65625 Z M 4.5625 -3.5625 C 5.53125 -3.75 6.21875 -4.390625 6.21875 -5.125 C 6.21875 -5.984375 5.296875 -6.8125 4 -6.8125 L 0.359375 -6.8125 L 0.359375 -6.5 L 0.59375 -6.5 C 1.359375 -6.5 1.390625 -6.390625 1.390625 -6.03125 L 1.390625 -0.78125 C 1.390625 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.359375 -0.3125 L 0.359375 0 L 4.265625 0 C 5.59375 0 6.484375 -0.890625 6.484375 -1.828125 C 6.484375 -2.6875 5.671875 -3.4375 4.5625 -3.5625 Z M 3.953125 -0.3125 L 2.703125 -0.3125 C 2.234375 -0.3125 2.21875 -0.375 2.21875 -0.703125 L 2.21875 -3.421875 L 4.09375 -3.421875 C 5.078125 -3.421875 5.5 -2.5 5.5 -1.828125 C 5.5 -1.125 4.96875 -0.3125 3.953125 -0.3125 Z M 3.953125 -0.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 Z M 1.109375 -2.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.1875 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 Z M 2.078125 -1.9375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 Z M 1.71875 -3.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 Z M 1.171875 -2.171875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 3.3125 -0.75 C 3.359375 -0.359375 3.625 0.0625 4.09375 0.0625 C 4.3125 0.0625 4.921875 -0.078125 4.921875 -0.890625 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.890625 C 4.671875 -0.3125 4.421875 -0.25 4.3125 -0.25 C 3.984375 -0.25 3.9375 -0.703125 3.9375 -0.75 L 3.9375 -2.734375 C 3.9375 -3.15625 3.9375 -3.546875 3.578125 -3.921875 C 3.1875 -4.3125 2.6875 -4.46875 2.21875 -4.46875 C 1.390625 -4.46875 0.703125 -4 0.703125 -3.34375 C 0.703125 -3.046875 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.625 -3.078125 1.625 -3.328125 C 1.625 -3.453125 1.578125 -3.78125 1.109375 -3.78125 C 1.390625 -4.140625 1.875 -4.25 2.1875 -4.25 C 2.6875 -4.25 3.25 -3.859375 3.25 -2.96875 L 3.25 -2.609375 C 2.734375 -2.578125 2.046875 -2.546875 1.421875 -2.25 C 0.671875 -1.90625 0.421875 -1.390625 0.421875 -0.953125 C 0.421875 -0.140625 1.390625 0.109375 2.015625 0.109375 C 2.671875 0.109375 3.125 -0.296875 3.3125 -0.75 Z M 3.25 -2.390625 L 3.25 -1.390625 C 3.25 -0.453125 2.53125 -0.109375 2.078125 -0.109375 C 1.59375 -0.109375 1.1875 -0.453125 1.1875 -0.953125 C 1.1875 -1.5 1.609375 -2.328125 3.25 -2.390625 Z M 3.25 -2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.890625 0.921875 1.5625 -0.96875 1.5625 -2.5 C 1.5625 -4.234375 1.9375 -5.96875 3.171875 -7.203125 C 3.296875 -7.328125 3.296875 -7.34375 3.296875 -7.375 C 3.296875 -7.453125 3.265625 -7.484375 3.203125 -7.484375 C 3.09375 -7.484375 2.203125 -6.796875 1.609375 -5.53125 C 1.109375 -4.4375 0.984375 -3.328125 0.984375 -2.5 C 0.984375 -1.71875 1.09375 -0.515625 1.640625 0.625 C 2.25 1.84375 3.09375 2.5 3.203125 2.5 C 3.265625 2.5 3.296875 2.46875 3.296875 2.390625 Z M 3.296875 2.390625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 Z M 2.5 -0.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 C 6.203125 -0.015625 6.71875 -0.03125 6.984375 -0.03125 C 7.25 -0.03125 7.765625 -0.015625 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 C 0.625 1.921875 1.140625 1.90625 1.390625 1.90625 C 1.671875 1.90625 2.171875 1.921875 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 Z M 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 Z M 1.75 -1.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.671875 -0.015625 1.140625 -0.03125 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 Z M 1.671875 -3.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.640625 -0.015625 1.1875 -0.03125 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 Z M 1.796875 -6.140625 C 1.796875 -6.453125 1.5625 -6.671875 1.28125 -6.671875 C 0.96875 -6.671875 0.75 -6.40625 0.75 -6.140625 C 0.75 -5.875 0.96875 -5.609375 1.28125 -5.609375 C 1.5625 -5.609375 1.796875 -5.828125 1.796875 -6.140625 Z M 1.796875 -6.140625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 9.0625 -5.828125 C 9.234375 -6.40625 9.671875 -6.5 10.0625 -6.5 L 10.0625 -6.8125 C 9.765625 -6.78125 9.453125 -6.78125 9.15625 -6.78125 C 8.859375 -6.78125 8.21875 -6.796875 7.96875 -6.8125 L 7.96875 -6.5 C 8.640625 -6.484375 8.828125 -6.15625 8.828125 -5.96875 C 8.828125 -5.90625 8.796875 -5.828125 8.78125 -5.765625 L 7.28125 -1.171875 L 5.6875 -6.046875 C 5.6875 -6.09375 5.65625 -6.15625 5.65625 -6.203125 C 5.65625 -6.5 6.234375 -6.5 6.5 -6.5 L 6.5 -6.8125 C 6.140625 -6.78125 5.46875 -6.78125 5.078125 -6.78125 C 4.703125 -6.78125 4.28125 -6.796875 3.875 -6.8125 L 3.875 -6.5 C 4.4375 -6.5 4.640625 -6.5 4.765625 -6.140625 L 4.984375 -5.4375 L 3.59375 -1.171875 L 2 -6.078125 C 1.984375 -6.09375 1.96875 -6.171875 1.96875 -6.203125 C 1.96875 -6.5 2.546875 -6.5 2.8125 -6.5 L 2.8125 -6.8125 C 2.453125 -6.78125 1.78125 -6.78125 1.390625 -6.78125 C 1.015625 -6.78125 0.59375 -6.796875 0.171875 -6.8125 L 0.171875 -6.5 C 0.921875 -6.5 0.96875 -6.453125 1.09375 -6.078125 L 3.078125 0.03125 C 3.109375 0.125 3.140625 0.21875 3.265625 0.21875 C 3.40625 0.21875 3.421875 0.15625 3.46875 0.015625 L 5.109375 -5.046875 L 6.765625 0.03125 C 6.796875 0.125 6.828125 0.21875 6.953125 0.21875 C 7.09375 0.21875 7.125 0.15625 7.15625 0.015625 Z M 9.0625 -5.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.65625 -0.015625 1.1875 -0.03125 1.4375 -0.03125 C 1.6875 -0.03125 2.171875 -0.015625 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 Z M 1.765625 -6.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-27">
<path style="stroke:none;" d="M 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 Z M 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.34375 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 Z M 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 Z M 2.5 1.828125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-28">
<path style="stroke:none;" d="M 4.078125 -2.296875 L 6.859375 -2.296875 C 7 -2.296875 7.1875 -2.296875 7.1875 -2.5 C 7.1875 -2.6875 7 -2.6875 6.859375 -2.6875 L 4.078125 -2.6875 L 4.078125 -5.484375 C 4.078125 -5.625 4.078125 -5.8125 3.875 -5.8125 C 3.671875 -5.8125 3.671875 -5.625 3.671875 -5.484375 L 3.671875 -2.6875 L 0.890625 -2.6875 C 0.75 -2.6875 0.5625 -2.6875 0.5625 -2.5 C 0.5625 -2.296875 0.75 -2.296875 0.890625 -2.296875 L 3.671875 -2.296875 L 3.671875 0.5 C 3.671875 0.640625 3.671875 0.828125 3.875 0.828125 C 4.078125 0.828125 4.078125 0.640625 4.078125 0.5 Z M 4.078125 -2.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 3.84375 2.5 C 4 2.5 4.203125 2.5 4.203125 2.296875 C 4.203125 2.09375 4 2.09375 3.84375 2.09375 L 2.140625 2.09375 L 2.140625 -7.125 C 2.140625 -7.296875 2.140625 -7.484375 1.9375 -7.484375 C 1.734375 -7.484375 1.734375 -7.265625 1.734375 -7.125 L 1.734375 2.140625 C 1.734375 2.453125 1.78125 2.5 2.09375 2.5 Z M 3.84375 2.5 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 2.6875 -7.125 C 2.6875 -7.296875 2.6875 -7.484375 2.484375 -7.484375 C 2.28125 -7.484375 2.28125 -7.265625 2.28125 -7.125 L 2.28125 2.09375 L 0.5625 2.09375 C 0.421875 2.09375 0.203125 2.09375 0.203125 2.296875 C 0.203125 2.5 0.421875 2.5 0.5625 2.5 L 2.328125 2.5 C 2.65625 2.5 2.6875 2.46875 2.6875 2.140625 Z M 2.6875 -7.125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.265625 -1.109375 3.1875 -0.703125 3.09375 -0.640625 C 3.046875 -0.59375 2.515625 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.109375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.609375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.625 1.890625 -4.625 C 1.03125 -4.625 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.03125 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.109375 1.171875 -3.359375 C 1.171875 -3.484375 1.125 -3.734375 0.765625 -3.734375 C 0.984375 -4.21875 1.453125 -4.375 1.78125 -4.375 C 2.484375 -4.375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.1875 2.1875 -1.9375 L 0.515625 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.3125 0 Z M 3.515625 -1.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 0.875 -0.59375 C 0.84375 -0.4375 0.78125 -0.203125 0.78125 -0.15625 C 0.78125 0.015625 0.921875 0.109375 1.078125 0.109375 C 1.203125 0.109375 1.375 0.03125 1.453125 -0.171875 C 1.453125 -0.1875 1.578125 -0.65625 1.640625 -0.90625 L 1.859375 -1.796875 C 1.90625 -2.03125 1.96875 -2.25 2.03125 -2.46875 C 2.0625 -2.640625 2.140625 -2.9375 2.15625 -2.96875 C 2.296875 -3.28125 2.828125 -4.1875 3.78125 -4.1875 C 4.234375 -4.1875 4.3125 -3.8125 4.3125 -3.484375 C 4.3125 -2.875 3.828125 -1.59375 3.671875 -1.171875 C 3.578125 -0.9375 3.5625 -0.8125 3.5625 -0.703125 C 3.5625 -0.234375 3.921875 0.109375 4.390625 0.109375 C 5.328125 0.109375 5.6875 -1.34375 5.6875 -1.421875 C 5.6875 -1.53125 5.609375 -1.53125 5.578125 -1.53125 C 5.46875 -1.53125 5.46875 -1.5 5.421875 -1.34375 C 5.21875 -0.671875 4.890625 -0.109375 4.40625 -0.109375 C 4.234375 -0.109375 4.171875 -0.203125 4.171875 -0.4375 C 4.171875 -0.6875 4.25 -0.921875 4.34375 -1.140625 C 4.53125 -1.671875 4.953125 -2.765625 4.953125 -3.34375 C 4.953125 -4 4.53125 -4.40625 3.8125 -4.40625 C 2.90625 -4.40625 2.421875 -3.765625 2.25 -3.53125 C 2.203125 -4.09375 1.796875 -4.40625 1.328125 -4.40625 C 0.875 -4.40625 0.6875 -4.015625 0.59375 -3.84375 C 0.421875 -3.5 0.296875 -2.90625 0.296875 -2.875 C 0.296875 -2.765625 0.390625 -2.765625 0.40625 -2.765625 C 0.515625 -2.765625 0.515625 -2.78125 0.578125 -3 C 0.75 -3.703125 0.953125 -4.1875 1.3125 -4.1875 C 1.5 -4.1875 1.609375 -4.0625 1.609375 -3.734375 C 1.609375 -3.515625 1.578125 -3.40625 1.453125 -2.890625 Z M 0.875 -0.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 2.953125 -4.203125 C 2.984375 -4.28125 3.34375 -5 3.875 -5.46875 C 4.25 -5.8125 4.734375 -6.03125 5.296875 -6.03125 C 5.859375 -6.03125 6.0625 -5.609375 6.0625 -5.03125 C 6.0625 -4.21875 5.484375 -2.578125 5.1875 -1.8125 C 5.0625 -1.46875 4.984375 -1.28125 4.984375 -1.015625 C 4.984375 -0.375 5.4375 0.140625 6.125 0.140625 C 7.453125 0.140625 7.953125 -1.96875 7.953125 -2.046875 C 7.953125 -2.125 7.90625 -2.1875 7.8125 -2.1875 C 7.6875 -2.1875 7.671875 -2.140625 7.609375 -1.890625 C 7.265625 -0.71875 6.734375 -0.140625 6.171875 -0.140625 C 6.03125 -0.140625 5.796875 -0.15625 5.796875 -0.609375 C 5.796875 -0.96875 5.953125 -1.40625 6.03125 -1.609375 C 6.328125 -2.390625 6.921875 -4 6.921875 -4.8125 C 6.921875 -5.6875 6.421875 -6.328125 5.328125 -6.328125 C 4.0625 -6.328125 3.390625 -5.421875 3.125 -5.0625 C 3.078125 -5.875 2.5 -6.328125 1.859375 -6.328125 C 1.40625 -6.328125 1.09375 -6.046875 0.84375 -5.5625 C 0.59375 -5.046875 0.390625 -4.1875 0.390625 -4.125 C 0.390625 -4.078125 0.4375 -4 0.546875 -4 C 0.65625 -4 0.671875 -4.015625 0.765625 -4.34375 C 0.984375 -5.21875 1.25 -6.03125 1.828125 -6.03125 C 2.15625 -6.03125 2.265625 -5.8125 2.265625 -5.375 C 2.265625 -5.0625 2.125 -4.5 2.015625 -4.0625 L 1.625 -2.515625 C 1.5625 -2.234375 1.40625 -1.59375 1.328125 -1.328125 C 1.234375 -0.96875 1.078125 -0.28125 1.078125 -0.21875 C 1.078125 -0.015625 1.234375 0.140625 1.453125 0.140625 C 1.625 0.140625 1.828125 0.0625 1.9375 -0.15625 C 1.96875 -0.234375 2.09375 -0.734375 2.171875 -1.015625 L 2.484375 -2.3125 Z M 2.953125 -4.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d="M 9.6875 -4.640625 C 9.890625 -4.640625 10.140625 -4.640625 10.140625 -4.90625 C 10.140625 -5.171875 9.890625 -5.171875 9.6875 -5.171875 L 1.234375 -5.171875 C 1.03125 -5.171875 0.78125 -5.171875 0.78125 -4.921875 C 0.78125 -4.640625 1.015625 -4.640625 1.234375 -4.640625 Z M 9.6875 -1.984375 C 9.890625 -1.984375 10.140625 -1.984375 10.140625 -2.234375 C 10.140625 -2.515625 9.890625 -2.515625 9.6875 -2.515625 L 1.234375 -2.515625 C 1.03125 -2.515625 0.78125 -2.515625 0.78125 -2.25 C 0.78125 -1.984375 1.015625 -1.984375 1.234375 -1.984375 Z M 9.6875 -1.984375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 4.125 -9.1875 C 4.125 -9.53125 4.125 -9.53125 3.84375 -9.53125 C 3.5 -9.15625 2.78125 -8.625 1.3125 -8.625 L 1.3125 -8.203125 C 1.640625 -8.203125 2.359375 -8.203125 3.140625 -8.578125 L 3.140625 -1.109375 C 3.140625 -0.59375 3.09375 -0.421875 1.84375 -0.421875 L 1.390625 -0.421875 L 1.390625 0 C 1.78125 -0.03125 3.171875 -0.03125 3.640625 -0.03125 C 4.109375 -0.03125 5.5 -0.03125 5.875 0 L 5.875 -0.421875 L 5.4375 -0.421875 C 4.171875 -0.421875 4.125 -0.59375 4.125 -1.109375 Z M 4.125 -9.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 1.84375 -8.21875 C 2.453125 -8.015625 2.953125 -8 3.109375 -8 C 4.734375 -8 5.765625 -9.1875 5.765625 -9.390625 C 5.765625 -9.453125 5.734375 -9.53125 5.65625 -9.53125 C 5.625 -9.53125 5.59375 -9.53125 5.46875 -9.46875 C 4.65625 -9.125 3.96875 -9.078125 3.59375 -9.078125 C 2.65625 -9.078125 1.984375 -9.359375 1.703125 -9.484375 C 1.609375 -9.53125 1.578125 -9.53125 1.5625 -9.53125 C 1.453125 -9.53125 1.453125 -9.4375 1.453125 -9.203125 L 1.453125 -4.953125 C 1.453125 -4.6875 1.453125 -4.609375 1.625 -4.609375 C 1.6875 -4.609375 1.703125 -4.625 1.84375 -4.796875 C 2.25 -5.375 2.921875 -5.71875 3.640625 -5.71875 C 4.40625 -5.71875 4.78125 -5.015625 4.890625 -4.78125 C 5.140625 -4.21875 5.15625 -3.515625 5.15625 -2.96875 C 5.15625 -2.421875 5.15625 -1.609375 4.75 -0.96875 C 4.4375 -0.4375 3.875 -0.09375 3.234375 -0.09375 C 2.296875 -0.09375 1.359375 -0.734375 1.109375 -1.78125 C 1.171875 -1.75 1.265625 -1.734375 1.328125 -1.734375 C 1.578125 -1.734375 1.96875 -1.875 1.96875 -2.359375 C 1.96875 -2.765625 1.6875 -3 1.328125 -3 C 1.078125 -3 0.703125 -2.875 0.703125 -2.3125 C 0.703125 -1.09375 1.671875 0.296875 3.265625 0.296875 C 4.890625 0.296875 6.3125 -1.0625 6.3125 -2.890625 C 6.3125 -4.59375 5.15625 -6.015625 3.65625 -6.015625 C 2.84375 -6.015625 2.203125 -5.65625 1.84375 -5.25 Z M 1.84375 -8.21875 "/>
</symbol>
</g>
</defs>
<g id="surface1">
<path style="fill-rule:nonzero;fill:rgb(89.99939%,89.99939%,100%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 11.34025 -0.00003125 C 11.34025 6.261687 6.262125 11.339812 0.00040625 11.339812 C -6.261313 11.339812 -11.339438 6.261687 -11.339438 -0.00003125 C -11.339438 -6.26175 -6.261313 -11.339875 0.00040625 -11.339875 C 6.262125 -11.339875 11.34025 -6.26175 11.34025 -0.00003125 Z M 11.34025 -0.00003125 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="229.95" y="20.418"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -73.702719 -42.519563 C -73.702719 -36.257844 -78.776938 -31.179719 -85.038656 -31.179719 C -91.304281 -31.179719 -96.3785 -36.257844 -96.3785 -42.519563 C -96.3785 -48.781281 -91.304281 -53.859406 -85.038656 -53.859406 C -78.776938 -53.859406 -73.702719 -48.781281 -73.702719 -42.519563 Z M -73.702719 -42.519563 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="144.911" y="62.937"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -10.319906 -5.160188 L -74.72225 -37.359406 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -116.22225 -85.039094 C -116.22225 -78.777375 -121.296469 -73.703156 -127.562094 -73.703156 C -133.823813 -73.703156 -138.898031 -78.777375 -138.898031 -85.039094 C -138.898031 -91.300813 -133.823813 -96.378938 -127.562094 -96.378938 C -121.296469 -96.378938 -116.22225 -91.300813 -116.22225 -85.039094 Z M -116.22225 -85.039094 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="102.391" y="105.457"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -93.198813 -50.679719 L -119.401938 -76.882844 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -137.480063 -127.562531 C -137.480063 -121.296906 -142.558188 -116.222688 -148.819906 -116.222688 C -155.081625 -116.222688 -160.15975 -121.296906 -160.15975 -127.562531 C -160.15975 -133.82425 -155.081625 -138.898469 -148.819906 -138.898469 C -142.558188 -138.898469 -137.480063 -133.82425 -137.480063 -127.562531 Z M -137.480063 -127.562531 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="81.131" y="147.977"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -132.72225 -95.359406 L -143.65975 -117.242219 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -94.960531 -127.562531 C -94.960531 -121.296906 -100.038656 -116.222688 -106.300375 -116.222688 C -112.562094 -116.222688 -117.640219 -121.296906 -117.640219 -127.562531 C -117.640219 -133.82425 -112.562094 -138.898469 -106.300375 -138.898469 C -100.038656 -138.898469 -94.960531 -133.82425 -94.960531 -127.562531 Z M -94.960531 -127.562531 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="123.651" y="147.977"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -122.401938 -95.359406 L -111.460531 -117.242219 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -31.183188 -85.039094 C -31.183188 -78.777375 -36.257406 -73.703156 -42.519125 -73.703156 C -48.780844 -73.703156 -53.858969 -78.777375 -53.858969 -85.039094 C -53.858969 -91.300813 -48.780844 -96.378938 -42.519125 -96.378938 C -36.257406 -96.378938 -31.183188 -91.300813 -31.183188 -85.039094 Z M -31.183188 -85.039094 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="187.43" y="105.457"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -76.882406 -50.679719 L -50.679281 -76.882844 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -52.441 -127.562531 C -52.441 -121.296906 -57.519125 -116.222688 -63.780844 -116.222688 C -70.042563 -116.222688 -75.120688 -121.296906 -75.120688 -127.562531 C -75.120688 -133.82425 -70.042563 -138.898469 -63.780844 -138.898469 C -57.519125 -138.898469 -52.441 -133.82425 -52.441 -127.562531 Z M -52.441 -127.562531 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="166.17" y="147.977"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -47.679281 -95.359406 L -58.620688 -117.242219 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -9.921469 -127.562531 C -9.921469 -121.296906 -14.999594 -116.222688 -21.261313 -116.222688 C -27.523031 -116.222688 -32.59725 -121.296906 -32.59725 -127.562531 C -32.59725 -133.82425 -27.523031 -138.898469 -21.261313 -138.898469 C -14.999594 -138.898469 -9.921469 -133.82425 -9.921469 -127.562531 Z M -9.921469 -127.562531 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="208.69" y="147.977"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -37.358969 -95.359406 L -26.421469 -117.242219 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 96.379312 -42.519563 C 96.379312 -36.257844 91.301187 -31.179719 85.039469 -31.179719 C 78.77775 -31.179719 73.703531 -36.257844 73.703531 -42.519563 C 73.703531 -48.781281 78.77775 -53.859406 85.039469 -53.859406 C 91.301187 -53.859406 96.379312 -48.781281 96.379312 -42.519563 Z M 96.379312 -42.519563 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="312.499" y="62.937"/>
<use xlink:href="#glyph0-3" x="317.4803" y="62.937"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 10.320719 -5.160188 L 74.719156 -37.359406 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 53.859781 -85.039094 C 53.859781 -78.777375 48.781656 -73.703156 42.519937 -73.703156 C 36.258219 -73.703156 31.180094 -78.777375 31.180094 -85.039094 C 31.180094 -91.300813 36.258219 -96.378938 42.519937 -96.378938 C 48.781656 -96.378938 53.859781 -91.300813 53.859781 -85.039094 Z M 53.859781 -85.039094 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="269.979" y="105.457"/>
<use xlink:href="#glyph0-9" x="274.9603" y="105.457"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 76.883219 -50.679719 L 50.680094 -76.882844 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 32.598062 -127.562531 C 32.598062 -121.296906 27.523844 -116.222688 21.258219 -116.222688 C 14.9965 -116.222688 9.922281 -121.296906 9.922281 -127.562531 C 9.922281 -133.82425 14.9965 -138.898469 21.258219 -138.898469 C 27.523844 -138.898469 32.598062 -133.82425 32.598062 -127.562531 Z M 32.598062 -127.562531 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-10" x="251.21" y="147.977"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 37.359781 -95.359406 L 26.418375 -117.242219 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 75.117594 -127.562531 C 75.117594 -121.296906 70.043375 -116.222688 63.781656 -116.222688 C 57.519937 -116.222688 52.441812 -121.296906 52.441812 -127.562531 C 52.441812 -133.82425 57.519937 -138.898469 63.781656 -138.898469 C 70.043375 -138.898469 75.117594 -133.82425 75.117594 -127.562531 Z M 75.117594 -127.562531 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="291.239" y="147.977"/>
<use xlink:href="#glyph0-4" x="296.2203" y="147.977"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 47.680094 -95.359406 L 58.6215 -117.242219 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 138.898844 -85.039094 C 138.898844 -78.777375 133.824625 -73.703156 127.559 -73.703156 C 121.297281 -73.703156 116.223062 -78.777375 116.223062 -85.039094 C 116.223062 -91.300813 121.297281 -96.378938 127.559 -96.378938 C 133.824625 -96.378938 138.898844 -91.300813 138.898844 -85.039094 Z M 138.898844 -85.039094 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="355.018" y="105.457"/>
<use xlink:href="#glyph0-2" x="359.9993" y="105.457"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 93.199625 -50.679719 L 119.40275 -76.882844 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.641031 -127.562531 C 117.641031 -121.296906 112.562906 -116.222688 106.301187 -116.222688 C 100.039469 -116.222688 94.961344 -121.296906 94.961344 -127.562531 C 94.961344 -133.82425 100.039469 -138.898469 106.301187 -138.898469 C 112.562906 -138.898469 117.641031 -133.82425 117.641031 -127.562531 Z M 117.641031 -127.562531 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="333.759" y="147.977"/>
<use xlink:href="#glyph0-5" x="338.7403" y="147.977"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 122.40275 -95.359406 L 111.461344 -117.242219 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<path style="fill-rule:nonzero;fill:rgb(100%,89.99939%,89.99939%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.160562 -127.562531 C 160.160562 -121.296906 155.082437 -116.222688 148.820719 -116.222688 C 142.559 -116.222688 137.480875 -121.296906 137.480875 -127.562531 C 137.480875 -133.82425 142.559 -138.898469 148.820719 -138.898469 C 155.082437 -138.898469 160.160562 -133.82425 160.160562 -127.562531 Z M 160.160562 -127.562531 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="376.278" y="147.977"/>
<use xlink:href="#glyph0-7" x="381.2593" y="147.977"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 132.719156 -95.359406 L 143.660562 -117.242219 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-11" x="107.029" y="19.698"/>
<use xlink:href="#glyph0-12" x="114.08551" y="19.698"/>
<use xlink:href="#glyph0-13" x="118.512889" y="19.698"/>
<use xlink:href="#glyph0-14" x="122.442138" y="19.698"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="129.634139" y="19.698"/>
<use xlink:href="#glyph0-16" x="134.061519" y="19.698"/>
<use xlink:href="#glyph0-13" x="139.042819" y="19.698"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-12" x="142.982031" y="19.698"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="150.726956" y="19.698"/>
<use xlink:href="#glyph0-4" x="154.601411" y="19.698"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="162.900257" y="19.698"/>
<use xlink:href="#glyph0-18" x="167.327637" y="19.698"/>
<use xlink:href="#glyph0-19" x="172.308937" y="19.698"/>
<use xlink:href="#glyph0-20" x="180.610771" y="19.698"/>
<use xlink:href="#glyph0-16" x="186.145992" y="19.698"/>
<use xlink:href="#glyph0-21" x="191.127292" y="19.698"/>
<use xlink:href="#glyph0-22" x="195.029642" y="19.698"/>
<use xlink:href="#glyph0-13" x="197.797252" y="19.698"/>
<use xlink:href="#glyph0-18" x="201.726502" y="19.698"/>
<use xlink:href="#glyph0-23" x="206.707802" y="19.698"/>
<use xlink:href="#glyph0-24" x="212.243022" y="19.698"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-25" x="5.669" y="134.97"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-18" x="15.081664" y="134.97"/>
<use xlink:href="#glyph0-21" x="20.062964" y="134.97"/>
<use xlink:href="#glyph0-13" x="23.965315" y="134.97"/>
<use xlink:href="#glyph0-14" x="27.894564" y="134.97"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="35.086565" y="134.97"/>
<use xlink:href="#glyph0-16" x="39.513945" y="134.97"/>
<use xlink:href="#glyph0-13" x="44.495245" y="134.97"/>
<use xlink:href="#glyph0-12" x="48.424494" y="134.97"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="5.669" y="146.925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="9.544" y="146.925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-26" x="13.972" y="146.925"/>
<use xlink:href="#glyph0-18" x="16.73961" y="146.925"/>
<use xlink:href="#glyph0-27" x="21.72091" y="146.925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="26.84" y="149.36"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="31.309" y="146.925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="35.184" y="146.925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-24" x="41.164" y="146.925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-28" x="47.319891" y="146.925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="57.360199" y="146.925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="62.337" y="146.925"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="5.669" y="158.88"/>
<use xlink:href="#glyph0-18" x="10.096379" y="158.88"/>
<use xlink:href="#glyph0-19" x="15.077679" y="158.88"/>
<use xlink:href="#glyph0-20" x="23.379514" y="158.88"/>
<use xlink:href="#glyph0-16" x="28.914735" y="158.88"/>
<use xlink:href="#glyph0-21" x="33.896035" y="158.88"/>
<use xlink:href="#glyph0-22" x="37.798385" y="158.88"/>
<use xlink:href="#glyph0-13" x="40.565995" y="158.88"/>
<use xlink:href="#glyph0-18" x="44.495245" y="158.88"/>
<use xlink:href="#glyph0-23" x="49.476545" y="158.88"/>
<use xlink:href="#glyph0-13" x="55.011765" y="158.88"/>
<use xlink:href="#glyph0-24" x="58.941015" y="158.88"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 92.125406 -11.339875 L 162.992594 -11.339875 L 162.992594 11.339812 L 92.125406 11.339812 Z M 92.125406 -11.339875 " transform="matrix(1,0,0,-1,232.441,17.207)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="339.336" y="21.83"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="351.706" y="21.83"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="366.62031" y="21.83"/>
<use xlink:href="#glyph5-3" x="373.644209" y="21.83"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="590" height="75">
<style>
text {
font-size: 14px;
font-family: Arial, sans-serif;
text-anchor: middle;
}
</style>
<defs>
<g id="bit-0">
<rect width="15" height="26" stroke="#000"/>
<text x="8" y="18.3" fill="#000">0</text>
</g>
<g id="bit-1">
<rect width="15" height="26" stroke="#000"/>
<text x="8" y="18.3" fill="#000">1</text>
</g>
</defs>
<g transform="translate(14.25,28.75)">
<use xlink:href="#bit-0" fill="#c5fcff"/>
<g fill="#9fffad">
<use xlink:href="#bit-0" x="15"/>
<use xlink:href="#bit-1" x="30"/>
<use xlink:href="#bit-1" x="45"/>
<use xlink:href="#bit-1" x="60"/>
<use xlink:href="#bit-1" x="75"/>
<use xlink:href="#bit-1" x="90"/>
<use xlink:href="#bit-0" x="105"/>
<use xlink:href="#bit-0" x="120"/>
</g>
<g fill="#ffaead">
<use xlink:href="#bit-0" x="135"/>
<use xlink:href="#bit-1" x="150"/>
<use xlink:href="#bit-0" x="165"/>
<use xlink:href="#bit-0" x="180"/>
<use xlink:href="#bit-0" x="195"/>
<use xlink:href="#bit-0" x="210"/>
<use xlink:href="#bit-0" x="225"/>
<use xlink:href="#bit-0" x="240"/>
<use xlink:href="#bit-0" x="255"/>
<use xlink:href="#bit-0" x="270"/>
<use xlink:href="#bit-0" x="285"/>
<use xlink:href="#bit-0" x="300"/>
<use xlink:href="#bit-0" x="315"/>
<use xlink:href="#bit-0" x="330"/>
<use xlink:href="#bit-0" x="345"/>
<use xlink:href="#bit-0" x="360"/>
<use xlink:href="#bit-0" x="375"/>
<use xlink:href="#bit-0" x="390"/>
<use xlink:href="#bit-0" x="405"/>
<use xlink:href="#bit-0" x="420"/>
<use xlink:href="#bit-0" x="435"/>
<use xlink:href="#bit-0" x="450"/>
<use xlink:href="#bit-0" x="465"/>
</g>
<g fill="none" stroke="#000" stroke-width="2">
<rect width="480" height="26"/>
<path d="m15,0 v26 M135,0 v26" fill="none" stroke="#000"/>
</g>
<path d="m7.5,-3.5 v-9.5" stroke="#008080"/>
<path d="m16,-3.5 v-9.5 h118 v9.5" stroke="#008000" fill="none"/>
<path d="m136,-3.5 v-9.5 h343 v9.5" stroke="#800000" fill="none"/>
<text y="-18">
<tspan x="2">sign</tspan>
<tspan x="75">exponent (8 bits)</tspan>
<tspan x="307">fraction (23 bits)</tspan>
</text>
<g transform="translate(0,30.5)" fill="#000">
<circle r="2" cx="7.5"/>
<circle r="2" cx="22.5"/>
<circle r="2" cx="127.5"/>
<circle r="2" cx="142.5"/>
<circle r="2" cx="472.5"/>
</g>
<text y="45.5">
<tspan x="6">31</tspan>
<tspan x="27">30</tspan>
<tspan x="126">23</tspan>
<tspan x="146">22</tspan>
<tspan x="472.5">0</tspan>
</text>
<text x="243" y="44.5">(bit index)</text>
</g>
<text x="504" y="48.4" style="text-anchor: start; font-size: 18.7px;">= 0.15625</text>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="491.4209"
height="75.638672"
version="1.1"
id="svg134"
sodipodi:docname="Float_example_bare.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata138">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1884"
inkscape:window-height="1052"
id="namedview136"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.2915254"
inkscape:cx="478.17825"
inkscape:cy="-102.24671"
inkscape:window-x="36"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg134" />
<style
id="style2">
text {
font-size: 14px;
font-family: Arial, sans-serif;
text-anchor: middle;
}
</style>
<defs
id="defs14">
<g
id="bit-0">
<rect
width="15"
height="26"
id="rect4"
x="0"
y="0"
style="stroke:#000000" />
<text
x="8"
y="18.299999"
id="text6"
style="font-size:14px;font-family:Arial, sans-serif;text-anchor:middle;fill:#000000">0</text>
</g>
<g
id="bit-1">
<rect
width="15"
height="26"
id="rect9"
x="0"
y="0"
style="stroke:#000000" />
<text
x="8"
y="18.299999"
id="text11"
style="font-size:14px;font-family:Arial, sans-serif;text-anchor:middle;fill:#000000">1</text>
</g>
</defs>
<g
transform="translate(10.420898,28.192383)"
id="g130">
<use
xlink:href="#bit-0"
id="use16"
style="fill:#c5fcff"
x="0"
y="0"
width="100%"
height="100%" />
<g
id="g34"
style="fill:#9fffad">
<use
xlink:href="#bit-0"
x="15"
id="use18"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-1"
x="30"
id="use20"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-1"
x="45"
id="use22"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-1"
x="60"
id="use24"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-1"
x="75"
id="use26"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-1"
x="90"
id="use28"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="105"
id="use30"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="120"
id="use32"
y="0"
width="100%"
height="100%" />
</g>
<g
id="g82"
style="fill:#ffaead">
<use
xlink:href="#bit-0"
x="135"
id="use36"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-1"
x="150"
id="use38"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="165"
id="use40"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="180"
id="use42"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="195"
id="use44"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="210"
id="use46"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="225"
id="use48"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="240"
id="use50"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="255"
id="use52"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="270"
id="use54"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="285"
id="use56"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="300"
id="use58"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="315"
id="use60"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="330"
id="use62"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="345"
id="use64"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="360"
id="use66"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="375"
id="use68"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="390"
id="use70"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="405"
id="use72"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="420"
id="use74"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="435"
id="use76"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="450"
id="use78"
y="0"
width="100%"
height="100%" />
<use
xlink:href="#bit-0"
x="465"
id="use80"
y="0"
width="100%"
height="100%" />
</g>
<g
id="g88"
style="fill:none;stroke:#000000;stroke-width:2">
<rect
width="480"
height="26"
id="rect84"
x="0"
y="0" />
<path
d="M 15,0 V 26 M 135,0 v 26"
id="path86"
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000" />
</g>
<path
d="M 7.5,-3.5 V -13"
id="path90"
inkscape:connector-curvature="0"
style="stroke:#008080" />
<path
d="M 16,-3.5 V -13 h 118 v 9.5"
id="path92"
inkscape:connector-curvature="0"
style="fill:none;stroke:#008000" />
<path
d="M 136,-3.5 V -13 h 343 v 9.5"
id="path94"
inkscape:connector-curvature="0"
style="fill:none;stroke:#800000" />
<text
y="-18"
id="text102"
style="font-size:14px;font-family:Arial, sans-serif;text-anchor:middle">
<tspan
x="2"
id="tspan96">sign</tspan>
<tspan
x="75"
id="tspan98">exponent (8 bits)</tspan>
<tspan
x="307"
id="tspan100">fraction (23 bits)</tspan>
</text>
<g
transform="translate(0,30.5)"
id="g114"
style="fill:#000000">
<circle
r="2"
cx="7.5"
id="circle104"
cy="0" />
<circle
r="2"
cx="22.5"
id="circle106"
cy="0" />
<circle
r="2"
cx="127.5"
id="circle108"
cy="0" />
<circle
r="2"
cx="142.5"
id="circle110"
cy="0" />
<circle
r="2"
cx="472.5"
id="circle112"
cy="0" />
</g>
<text
y="45.5"
id="text126"
style="font-size:14px;font-family:Arial, sans-serif;text-anchor:middle">
<tspan
x="6"
id="tspan116">31</tspan>
<tspan
x="27"
id="tspan118">30</tspan>
<tspan
x="126"
id="tspan120">23</tspan>
<tspan
x="146"
id="tspan122">22</tspan>
<tspan
x="472.5"
id="tspan124">0</tspan>
</text>
<text
x="243"
y="44.5"
id="text128"
style="font-size:14px;font-family:Arial, sans-serif;text-anchor:middle">(bit index)</text>
</g>
</svg>
slides_2022/figs/Konigsberg_bridges.png

32.2 KiB

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="758.289" height="610.82623" id="svg2">
<defs id="defs4">
<marker refX="0" refY="0" orient="auto" style="overflow:visible" id="Arrow2Lstart">
<path d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " transform="matrix(1.1,0,0,1.1,1.1,0)" style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3495"/>
</marker>
<marker refX="0" refY="0" orient="auto" style="overflow:visible" id="Arrow2Lend">
<path d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " transform="matrix(-1.1,0,0,-1.1,-1.1,0)" style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3498"/>
</marker>
<linearGradient id="linearGradient3349">
<stop style="stop-color:#ffb26a;stop-opacity:1" offset="0" id="stop3351"/>
<stop style="stop-color:#e28a35;stop-opacity:1" offset="0.35802469" id="stop3355"/>
<stop style="stop-color:#d4761a;stop-opacity:1" offset="0.70477062" id="stop3357"/>
<stop style="stop-color:#c66200;stop-opacity:1" offset="1" id="stop3353"/>
</linearGradient>
<linearGradient id="linearGradient3309">
<stop style="stop-color:#5aff62;stop-opacity:1" offset="0" id="stop3311"/>
<stop style="stop-color:#2dba31;stop-opacity:1" offset="0.39197531" id="stop3337"/>
<stop style="stop-color:#179818;stop-opacity:1" offset="0.73727328" id="stop3339"/>
<stop style="stop-color:#017600;stop-opacity:1" offset="1" id="stop3313"/>
</linearGradient>
<linearGradient id="linearGradient3293">
<stop style="stop-color:#ff6a6a;stop-opacity:1" offset="0" id="stop3295"/>
<stop style="stop-color:#dc0000;stop-opacity:1" offset="1" id="stop3299"/>
</linearGradient>
<linearGradient id="linearGradient3273">
<stop style="stop-color:#6aa5ff;stop-opacity:1" offset="0" id="stop3275"/>
<stop style="stop-color:#3564ed;stop-opacity:1" offset="0.58333331" id="stop3281"/>
<stop style="stop-color:#0024dc;stop-opacity:1" offset="1" id="stop3279"/>
</linearGradient>
<linearGradient id="linearGradient3247">
<stop style="stop-color:#be6aff;stop-opacity:1" offset="0" id="stop3249"/>
<stop style="stop-color:#af35ed;stop-opacity:1" offset="0.68209875" id="stop3271"/>
<stop style="stop-color:#a000dc;stop-opacity:1" offset="1" id="stop3253"/>
</linearGradient>
<linearGradient id="linearGradient3229">
<stop style="stop-color:#fff38d;stop-opacity:1" offset="0" id="stop3231"/>
<stop style="stop-color:#d5be00;stop-opacity:1" offset="0.73148149" id="stop3237"/>
<stop style="stop-color:#ac9900;stop-opacity:1" offset="1" id="stop3233"/>
</linearGradient>
<radialGradient cx="284.82056" cy="139.85422" r="133.98128" fx="268.84122" fy="158.243" id="radialGradient3235" xlink:href="#linearGradient3293" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.5240304e-8,1.1446844,-1.1276156,4.4565708e-8,422.77925,-204.00852)"/>
<radialGradient cx="264.09863" cy="124.46253" r="134.00912" fx="244.02435" fy="144.21851" id="radialGradient3245" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-4.6009785e-8,1.1293934,-1.134048,-4.6199407e-8,405.24513,-173.80872)"/>
<radialGradient cx="255.48665" cy="122.76755" r="135.00706" fx="234.57149" fy="136.03662" id="radialGradient3265" xlink:href="#linearGradient3309" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.138057,-1.1958962,0,402.3039,-167.99081)"/>
<radialGradient cx="255.48665" cy="122.76755" r="135.00706" fx="234.57149" fy="136.03662" id="radialGradient3269" xlink:href="#linearGradient3309" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.138057,-1.1958962,0,402.3039,-167.99081)"/>
<radialGradient cx="259.91226" cy="119.38439" r="134.54617" fx="248.89748" fy="136.7305" id="radialGradient3291" xlink:href="#linearGradient3229" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.1662539,-1.1637544,0,398.84637,-183.73929)"/>
<radialGradient cx="261.80862" cy="124.15582" r="135.13818" fx="244.07454" fy="136.66563" id="radialGradient3307" xlink:href="#linearGradient3273" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.1348428,-1.1491215,0,404.47875,-172.95581)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3347" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3361" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3365" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3369" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3373" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3377" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="284.82056" cy="139.85422" r="133.98128" fx="268.84122" fy="160.48532" id="radialGradient3381" xlink:href="#linearGradient3229" gradientUnits="userSpaceOnUse" gradientTransform="matrix(4.5240304e-8,1.1446844,-1.1276156,4.4565708e-8,422.77925,-204.00852)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3387" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3391" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3395" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3399" xlink:href="#linearGradient3349" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
<radialGradient cx="255.48665" cy="122.76755" r="135.00706" fx="234.57149" fy="136.03662" id="radialGradient3403" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.138057,-1.1958962,0,402.3039,-167.99081)"/>
<radialGradient cx="264.09863" cy="124.46253" r="134.00912" fx="244.02435" fy="144.21851" id="radialGradient3407" xlink:href="#linearGradient3273" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-4.6009785e-8,1.1293934,-1.134048,-4.6199407e-8,405.24513,-173.80872)"/>
<radialGradient cx="255.48665" cy="122.76755" r="135.00706" fx="234.57149" fy="136.03662" id="radialGradient3411" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.138057,-1.1958962,0,402.3039,-167.99081)"/>
<radialGradient cx="261.80862" cy="124.15582" r="135.13818" fx="244.07454" fy="136.66563" id="radialGradient3415" xlink:href="#linearGradient3309" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.1348428,-1.1491215,0,404.47875,-172.95581)"/>
<radialGradient cx="259.91226" cy="119.38439" r="134.54617" fx="248.89748" fy="136.7305" id="radialGradient3423" xlink:href="#linearGradient3293" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.1662539,-1.1637544,0,398.84637,-183.73929)"/>
<radialGradient cx="257.15976" cy="116.63189" r="135.85207" fx="239.72411" fy="130.60069" id="radialGradient3991" xlink:href="#linearGradient3247" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,1.184081,-1.182362,0,395.06087,-187.86609)"/>
</defs>
<g transform="translate(9.3270943,38.019965)" id="layer1">
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(1.0420872,0,0,1.0420872,-34.228477,-27.513081)" style="opacity:1;fill:url(#radialGradient3235);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.95961261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path2236"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.9848946,0,0,0.9848946,339.30173,-45.305255)" style="opacity:1;fill:url(#radialGradient3245);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.01533711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3209"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.4785988,0,0,0.4785988,261.1922,309.13243)" style="opacity:1;fill:url(#radialGradient3291);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.08943272;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3211"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.3054893,0,0,0.3054893,-54.171652,91.386129)" style="opacity:1;fill:url(#radialGradient3307);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.27343702;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3215"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.3320931,0,0,0.3320931,526.01789,245.30336)" style="opacity:1;fill:url(#radialGradient3265);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.01120377;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3219"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.2127124,0,0,0.2127124,17.462513,474.30655)" style="opacity:1;fill:url(#radialGradient3347);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.70118332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3221"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.3320931,0,0,0.3320931,-53.659533,283.94852)" style="opacity:1;fill:url(#radialGradient3269);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.01120377;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3267"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.2127124,0,0,0.2127124,125.4933,500.65552)" style="opacity:1;fill:url(#radialGradient3991);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.70118332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3359"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.2127124,0,0,0.2127124,241.42878,513.83001)" style="opacity:1;fill:url(#radialGradient3365);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.70118332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3363"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.2127124,0,0,0.2127124,456.61206,474.30655)" style="opacity:1;fill:url(#radialGradient3369);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.70118332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3367"/>
<path d="M 415.43549 141.40616 A 133.50146 133.50146 0 1 1 148.43256,141.40616 A 133.50146 133.50146 0 1 1 415.43549 141.40616 z" transform="matrix(0.2127124,0,0,0.2127124,518.9713,406.67752)" style="opacity:1;fill:url(#radialGradient3373);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:4.70118332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="path3371"/>
<path d="M 102.68236,500.31508 L 211.95242,269.69223" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3383"/>
<path d="M 204.397,524.40452 L 248.1742,279.9818" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3417"/>
<path d="M 312.74242,537.26661 L 287.18442,281.15417" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3419"/>
<path d="M 328.18707,540.24315 L 376.5138,454.88099" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3425"/>
<path d="M 342.6776,414.58263 L 208.22278,514.15796" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3427"/>
<path d="M 335.20505,399.92746 L 103.7347,493.66339" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;stroke-opacity:1" id="path3434"/>
<path d="M 511.04867,505.3891 L 454.612,445.61887" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3441"/>
<path d="M 565.95317,449.46299 L 472.49937,418.16268" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3443"/>
<path d="M 593.51498,294.47483 L 400.50924,201.81565" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:none;stroke-opacity:1" id="path3445"/>
<path d="M 85.979095,321.71028 L 171.04776,239.36382" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3447"/>
<path d="M 51.587471,308.52767 L 46.665047,198.26531" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3449"/>
<path d="M 366.23532,320.70275 L 325.48974,243.94334" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-opacity:1" id="path3451"/>
<path d="M 582.64819,316.70656 L 560.85977,331.30705 C 554.64545,335.47128 548.94779,337.70621 539.52874,340.02811 L 459.46991,359.76354" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3460"/>
<path d="M 575.73794,304.21047 L 488.86119,328.29044 C 477.1472,331.53726 472.75396,334.18277 463.70269,339.02269 L 451.71778,345.43128" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3458"/>
<path d="M 400.95948,118.3756 L 464.95965,118.04655 C 472.45479,118.00802 476.49306,117.51338 481.05242,116.73679 L 487.38448,115.65825" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3466"/>
<path d="M 396.73246,96.522041 L 405.92763,95.011984 C 410.75233,94.219658 414.97643,93.633648 421.17625,93.633648 L 484.06056,93.633648" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker-end:none;stroke-opacity:1" id="path3468"/>
<path d="M 394.29768,189.0189 L 385.37585,179.83324 L 398.12314,181.05061 C 395.26295,182.57186 393.72788,185.79492 394.29768,189.0189 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3680"/>
<path d="M 473.37011,89.196539 L 485.38858,93.616033 L 473.37011,98.035527 C 475.29016,95.42626 475.2791,91.856329 473.37011,89.196539 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3695"/>
<path d="M 410.80437,122.75769 L 398.76334,118.40004 L 410.75892,113.91882 C 408.85232,116.53792 408.88173,120.10775 410.80437,122.75769 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3712"/>
<path d="M 326.58289,255.4663 L 324.85153,242.7786 L 334.39012,251.32205 C 331.1852,250.84951 328.03716,252.53308 326.58289,255.4663 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3724"/>
<path d="M 28.780558,187.71948 L 32.65965,175.51587 L 37.610751,187.32527 C 34.918449,185.5235 31.352564,185.69377 28.780558,187.71948 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3736"/>
<path d="M 146.35192,222.18757 L 158.06113,217.00397 L 152.49958,228.53847 C 152.06437,225.32826 149.57347,222.77093 146.35192,222.18757 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3748"/>
<path d="M 100.15985,358.54808 L 346.71991,389.2103" transform="translate(-13.928572,-21.423532)" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3752"/>
<path d="M 94.96408,342.41547 L 83.582893,336.54657 L 96.054895,333.64405 C 93.827516,335.99642 93.397932,339.54043 94.96408,342.41547 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3762"/>
<path d="M 467.29861,404.18818 L 457.30594,396.18056 L 470.10577,395.8068 C 467.45646,397.67119 466.33318,401.05982 467.29861,404.18818 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3776"/>
<path d="M 444.79666,435.01453 L 439.75888,423.24184 L 451.22342,428.94621 C 448.00805,429.34153 445.41998,431.80047 444.79666,435.01453 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3788"/>
<path d="M 353.87619,439.74774 L 363.63918,431.46164 L 361.57015,444.09867 C 360.24403,441.14296 357.13111,439.39531 353.87619,439.74774 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3800"/>
<path d="M 331.44585,417.37928 L 343.73433,413.77811 L 336.70634,424.48244 C 336.69643,421.24288 334.5629,418.38061 331.44585,417.37928 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3812"/>
<path d="M 323.63079,399.82743 L 336.42936,399.41266 L 326.9485,408.02014 C 327.74877,404.88097 326.39854,401.57621 323.63079,399.82743 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3824"/>
<path d="M 190.10935,254.38925 L 199.24579,245.41702 L 198.09856,258.17081 C 196.5616,255.31904 193.33015,253.80173 190.10935,254.38925 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3836"/>
<path d="M 228.06583,267.93473 L 234.53528,256.88386 L 236.76632,269.4933 C 234.5365,267.14325 231.02055,266.52465 228.06583,267.93473 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3848"/>
<path d="M 269.90222,270.80885 L 273.10645,258.41093 L 278.69752,269.93115 C 275.91049,268.27969 272.3593,268.64519 269.90222,270.80885 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3871"/>
<path d="M 564.25073,302.79003 L 577.013,303.83878 L 566.61166,311.30788 C 567.765,308.28056 566.8008,304.84329 564.25073,302.79003 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3886"/>
<path d="M 470.91164,361.51296 L 458.18471,360.0985 L 468.79606,352.93088 C 467.55634,355.92387 468.42153,359.38739 470.91164,361.51296 z " style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round" id="path3901"/>
<text x="76.673607" y="512.97437" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3905" xml:space="preserve"><tspan x="76.673607" y="512.97437" id="tspan3907">1.6%</tspan></text>
<text x="578.18237" y="445.34531" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3909" xml:space="preserve"><tspan x="578.18237" y="445.34531" id="tspan3911">1.6%</tspan></text>
<text x="515.82318" y="512.97437" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3913" xml:space="preserve"><tspan x="515.82318" y="512.97437" id="tspan3915">1.6%</tspan></text>
<text x="300.63986" y="552.4978" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3917" xml:space="preserve"><tspan x="300.63986" y="552.4978" id="tspan3919">1.6%</tspan></text>
<text x="184.70439" y="539.3233" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3921" xml:space="preserve"><tspan x="184.70439" y="539.3233" id="tspan3923">1.6%</tspan></text>
<g transform="translate(0,0.5174147)" id="g3935">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3927" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3929">D</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3931" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3933">3.9%</tspan></text>
</g>
<g transform="translate(579.67742,-38.127745)" id="g3941">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3943" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3945">F</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3947" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3949">3.9%</tspan></text>
</g>
<g transform="translate(356.15667,46.418133)" id="g3951">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3953" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3955">E</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3957" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3959">8.1%</tspan></text>
</g>
<g transform="translate(577.00821,-236.42621)" id="g3961">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3963" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3965">C</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3967" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3969">34.3%</tspan></text>
</g>
<g transform="translate(221.31796,-210.54071)" id="g3971">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3973" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3975">B</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3977" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3979">38.4%</tspan></text>
</g>
<g transform="translate(-8.0126361,-195.80692)" id="g3981">
<text x="39.683895" y="325.39902" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3983" xml:space="preserve"><tspan x="39.683895" y="325.39902" id="tspan3985">A</tspan></text>
<text x="39.998489" y="352.47803" style="font-size:24.31262589px;font-style:normal;font-weight:normal;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial" id="text3987" xml:space="preserve"><tspan x="39.998489" y="352.47803" id="tspan3989">3.3%</tspan></text>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="271.77063mm"
height="108.99983mm"
viewBox="0 0 271.77063 108.99983"
version="1.1"
id="svg92"
sodipodi:docname="Singly-linked-list.svg"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview94"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:document-units="mm"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.16191253"
inkscape:cx="382.92281"
inkscape:cy="867.75249"
inkscape:window-width="944"
inkscape:window-height="1022"
inkscape:window-x="962"
inkscape:window-y="44"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs89">
<marker
style="overflow:visible"
id="DotM"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotM"
inkscape:isstock="true">
<path
transform="matrix(0.4,0,0,0.4,2.96,0.4)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path7259" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path7216" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart"
inkscape:isstock="true">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path7195" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend-7"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path7216-5" />
</marker>
<marker
style="overflow:visible"
id="DotM-0"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotM"
inkscape:isstock="true">
<path
transform="matrix(0.4,0,0,0.4,2.96,0.4)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path7259-9" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend-3"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path7216-6" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend-7-0"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path7216-5-6" />
</marker>
<marker
style="overflow:visible"
id="DotM-8"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotM"
inkscape:isstock="true">
<path
transform="matrix(0.4,0,0,0.4,2.96,0.4)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path7259-97" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend-36"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path7216-1" />
</marker>
<marker
style="overflow:visible"
id="DotM-8-4"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotM"
inkscape:isstock="true">
<path
transform="matrix(0.4,0,0,0.4,2.96,0.4)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path7259-97-5" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend-36-0"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path7216-1-3" />
</marker>
<marker
style="overflow:visible"
id="DotM-0-6"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotM"
inkscape:isstock="true">
<path
transform="matrix(0.4,0,0,0.4,2.96,0.4)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path7259-9-1" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend-3-0"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path7216-6-6" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend-7-0-3"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path7216-5-6-2" />
</marker>
<marker
style="overflow:visible"
id="DotM-8-4-7"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotM"
inkscape:isstock="true">
<path
transform="matrix(0.4,0,0,0.4,2.96,0.4)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path7259-97-5-7" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend-36-0-6"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path7216-1-3-4" />
</marker>
<marker
style="overflow:visible"
id="DotM-8-3"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="DotM"
inkscape:isstock="true">
<path
transform="matrix(0.4,0,0,0.4,2.96,0.4)"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt"
d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z"
id="path7259-97-6" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lend-36-7"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:isstock="true">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:0.625;stroke-linejoin:round"
id="path7216-1-5" />
</marker>
</defs>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-0.36967225,-2.5050807)">
<g
id="g3580">
<g
id="g24207">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;stroke-width:0.264583"
x="36.682896"
y="38.202869"
id="text6474-3"><tspan
sodipodi:role="line"
id="tspan6472-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.264583"
x="36.682896"
y="38.202869">0</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;stroke-width:0.264583"
x="-0.73103225"
y="10.545908"
id="text17747"><tspan
sodipodi:role="line"
id="tspan17745"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.264583"
x="-0.73103225"
y="10.545908">stack</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)"
d="M 12.729453,13.750898 C 12.330364,25.260185 17.227241,33.50031 33.621646,34.643091"
id="path18808"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g3643"
transform="translate(-8.1840905,2.5045546)">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1"
id="rect140-29"
width="31.621361"
height="15.888521"
x="140.73814"
y="23.853914" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 164.53454,24.18415 V 39.63821"
id="path1501-3" />
<text
xml:space="preserve"
style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.264583"
x="145.9039"
y="35.655811"
id="text6474-19"><tspan
sodipodi:role="line"
id="tspan6472-4"
style="stroke-width:0.264583"
x="145.9039"
y="35.655811">21</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotM-8);marker-end:url(#Arrow2Lend-36)"
d="m 168.072,31.56383 h 15.84399"
id="path7136-78" />
<g
id="g43819"
transform="translate(135.35753,-128.52638)">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1"
id="rect140-2"
width="31.621361"
height="15.888521"
x="49.971462"
y="152.42796" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 73.767859,152.75821 v 15.45406"
id="path1501-6" />
<text
xml:space="preserve"
style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.264583"
x="55.137226"
y="164.22986"
id="text6474-1"><tspan
sodipodi:role="line"
id="tspan6472-8"
style="stroke-width:0.264583"
x="55.137226"
y="164.22986">17</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotM-0);marker-end:url(#Arrow2Lend-3)"
d="M 77.305319,160.13789 H 93.149313"
id="path7136-7" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;stroke-width:0.264583"
x="95.359497"
y="164.22469"
id="text6474-3-5-9"><tspan
sodipodi:role="line"
id="tspan6472-6-6-2"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.264583"
x="95.359497"
y="164.22469">0</tspan></text>
</g>
<g
id="g24758-0"
transform="translate(97.719115,-51.525442)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;stroke-width:0.264583"
x="6.4283442"
y="59.566795"
id="text17747-2-2"><tspan
sodipodi:role="line"
id="tspan17745-9-3"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.264583"
x="6.4283442"
y="59.566795">stack</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-0)"
d="M 19.888829,62.771786 C 19.48974,74.281073 24.386617,82.521198 40.781022,83.663979"
id="path18808-1-7"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g3624"
transform="translate(-7.3070295,-13.303108)">
<g
id="g702"
transform="translate(-1.5543969,-0.09757996)">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1"
id="rect140-29-3"
width="31.621361"
height="15.888521"
x="140.7131"
y="88.780045" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 164.50949,89.110281 V 104.56434"
id="path1501-3-5" />
<text
xml:space="preserve"
style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.264583"
x="145.87886"
y="100.58194"
id="text6474-19-6"><tspan
sodipodi:role="line"
id="tspan6472-4-2"
style="stroke-width:0.264583"
x="145.87886"
y="100.58194">12</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotM-8-3);marker-end:url(#Arrow2Lend-36-7)"
d="m 168.04695,96.489961 h 15.84399"
id="path7136-78-9" />
</g>
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1"
id="rect140-29-6"
width="31.621361"
height="15.888521"
x="183.78406"
y="88.682465" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 207.58045,89.0127 v 15.45406"
id="path1501-3-1" />
<text
xml:space="preserve"
style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.264583"
x="188.94981"
y="100.48436"
id="text6474-19-5"><tspan
sodipodi:role="line"
id="tspan6472-4-5"
style="stroke-width:0.264583"
x="188.94981"
y="100.48436">21</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotM-8-4);marker-end:url(#Arrow2Lend-36-0)"
d="M 211.11791,96.39238 H 226.9619"
id="path7136-78-4" />
<g
id="g43819-7"
transform="translate(178.40344,-63.69783)">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1"
id="rect140-2-6"
width="31.621361"
height="15.888521"
x="49.971462"
y="152.42796" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 73.767859,152.75821 v 15.45406"
id="path1501-6-5" />
<text
xml:space="preserve"
style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.264583"
x="55.137226"
y="164.22986"
id="text6474-1-6"><tspan
sodipodi:role="line"
id="tspan6472-8-9"
style="stroke-width:0.264583"
x="55.137226"
y="164.22986">17</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotM-0-6);marker-end:url(#Arrow2Lend-3-0)"
d="M 77.305319,160.13789 H 93.149313"
id="path7136-7-3" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;stroke-width:0.264583"
x="95.359497"
y="164.22469"
id="text6474-3-5-9-7"><tspan
sodipodi:role="line"
id="tspan6472-6-6-2-4"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.264583"
x="95.359497"
y="164.22469">0</tspan></text>
</g>
<g
id="g24758-0-5"
transform="translate(96.842054,13.303108)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;stroke-width:0.264583"
x="6.4283442"
y="59.566795"
id="text17747-2-2-2"><tspan
sodipodi:role="line"
id="tspan17745-9-3-5"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.264583"
x="6.4283442"
y="59.566795">stack</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-0-3)"
d="M 19.888829,62.771786 C 19.48974,74.281073 24.386617,82.521198 40.781022,83.663979"
id="path18808-1-7-4"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g3599">
<rect
style="fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1"
id="rect140"
width="31.621361"
height="15.888521"
x="35.965668"
y="75.427032" />
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 59.762066,75.757277 V 91.211331"
id="path1501" />
<text
xml:space="preserve"
style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.264583"
x="41.131432"
y="87.228928"
id="text6474"><tspan
sodipodi:role="line"
id="tspan6472"
style="stroke-width:0.264583"
x="41.131432"
y="87.228928">17</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotM);marker-end:url(#Arrow2Lend)"
d="M 63.299526,83.136951 H 79.14352"
id="path7136" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;stroke-width:0.264583"
x="81.353706"
y="87.223755"
id="text6474-3-5"><tspan
sodipodi:role="line"
id="tspan6472-6-6"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.264583"
x="81.353706"
y="87.223755">0</tspan></text>
<g
id="g24758"
transform="translate(-7.0295076)">
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.5833px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;stroke-width:0.264583"
x="6.4283442"
y="59.566795"
id="text17747-2"><tspan
sodipodi:role="line"
id="tspan17745-9"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.264583"
x="6.4283442"
y="59.566795">stack</tspan></text>
<path
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7)"
d="M 19.888829,62.771786 C 19.48974,74.281073 24.386617,82.521198 40.781022,83.663979"
id="path18808-1"
sodipodi:nodetypes="cc" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.86468px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;stroke-width:0.293233"
x="35.846004"
y="98.283569"
id="text26870"><tspan
sodipodi:role="line"
id="tspan26868"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.86468px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.293233"
x="35.846004"
y="98.283569">data</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.86468px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;stroke-width:0.293233"
x="64.074135"
y="71.651909"
id="text26870-2"><tspan
sodipodi:role="line"
id="tspan26868-7"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.86468px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.293233"
x="64.074135"
y="71.651909">next</tspan></text>
<text
xml:space="preserve"
style="font-size:10.5833px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;stroke-width:0.264583"
x="35.886299"
y="111.35505"
id="text42316"><tspan
sodipodi:role="line"
id="tspan42314"
style="stroke-width:0.264583"
x="35.886299"
y="111.35505">element</tspan></text>
</g>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="680px" height="800px" viewBox="0 0 680 800" version="1.1">
<g stroke="#4B32E9" stroke-width="0.625" stroke-opacity="0.6">
<line x1="174" y1="88" x2="240" y2="87"/>
<line x1="174" y1="88" x2="162" y2="196"/>
<line x1="174" y1="88" x2="241" y2="195"/>
<line x1="240" y1="87" x2="162" y2="196"/>
<line x1="240" y1="87" x2="241" y2="195"/>
<line x1="207" y1="171" x2="240" y2="87"/>
<line x1="207" y1="171" x2="198" y2="195"/>
<line x1="207" y1="171" x2="189" y2="290"/>
<line x1="207" y1="171" x2="215" y2="290"/>
<line x1="162" y1="196" x2="241" y2="195"/>
<line x1="198" y1="195" x2="128" y2="221"/>
<line x1="198" y1="195" x2="215" y2="290"/>
<line x1="241" y1="195" x2="193" y2="322"/>
<line x1="128" y1="221" x2="189" y2="290"/>
<line x1="128" y1="221" x2="90" y2="298"/>
<line x1="128" y1="221" x2="61" y2="316"/>
<line x1="128" y1="221" x2="50" y2="382"/>
<line x1="128" y1="221" x2="175" y2="373"/>
<line x1="128" y1="221" x2="218" y2="374"/>
<line x1="128" y1="221" x2="103" y2="415"/>
<line x1="128" y1="221" x2="43" y2="440"/>
<line x1="128" y1="221" x2="218" y2="436"/>
<line x1="128" y1="221" x2="227" y2="412"/>
<line x1="128" y1="221" x2="110" y2="472"/>
<line x1="128" y1="221" x2="201" y2="457"/>
<line x1="128" y1="221" x2="206" y2="510"/>
<line x1="128" y1="221" x2="204" y2="541"/>
<line x1="128" y1="221" x2="243" y2="566"/>
<line x1="301" y1="192" x2="207" y2="251"/>
<line x1="301" y1="192" x2="189" y2="290"/>
<line x1="301" y1="192" x2="269" y2="329"/>
<line x1="155" y1="224" x2="305" y2="300"/>
<line x1="155" y1="224" x2="90" y2="298"/>
<line x1="155" y1="224" x2="20" y2="390"/>
<line x1="155" y1="224" x2="335" y2="405"/>
<line x1="155" y1="224" x2="105" y2="455"/>
<line x1="155" y1="224" x2="216" y2="420"/>
<line x1="155" y1="224" x2="218" y2="436"/>
<line x1="155" y1="224" x2="246" y2="420"/>
<line x1="155" y1="224" x2="258" y2="428"/>
<line x1="155" y1="224" x2="280" y2="456"/>
<line x1="155" y1="224" x2="172" y2="484"/>
<line x1="155" y1="224" x2="201" y2="457"/>
<line x1="155" y1="224" x2="39" y2="500"/>
<line x1="155" y1="224" x2="130" y2="549"/>
<line x1="155" y1="224" x2="243" y2="566"/>
<line x1="241" y1="226" x2="215" y2="290"/>
<line x1="241" y1="226" x2="149" y2="361"/>
<line x1="241" y1="226" x2="243" y2="350"/>
<line x1="241" y1="226" x2="20" y2="390"/>
<line x1="241" y1="226" x2="197" y2="369"/>
<line x1="241" y1="226" x2="142" y2="424"/>
<line x1="241" y1="226" x2="332" y2="457"/>
<line x1="241" y1="226" x2="293" y2="519"/>
<line x1="241" y1="226" x2="130" y2="549"/>
<line x1="72" y1="232" x2="215" y2="290"/>
<line x1="72" y1="232" x2="154" y2="334"/>
<line x1="207" y1="251" x2="174" y2="277"/>
<line x1="207" y1="251" x2="149" y2="361"/>
<line x1="207" y1="251" x2="20" y2="390"/>
<line x1="207" y1="251" x2="218" y2="374"/>
<line x1="207" y1="251" x2="70" y2="448"/>
<line x1="207" y1="251" x2="258" y2="428"/>
<line x1="207" y1="251" x2="236" y2="474"/>
<line x1="207" y1="251" x2="291" y2="483"/>
<line x1="207" y1="251" x2="39" y2="500"/>
<line x1="269" y1="253" x2="305" y2="300"/>
<line x1="269" y1="253" x2="90" y2="298"/>
<line x1="269" y1="253" x2="154" y2="334"/>
<line x1="269" y1="253" x2="193" y2="322"/>
<line x1="269" y1="253" x2="61" y2="316"/>
<line x1="269" y1="253" x2="218" y2="374"/>
<line x1="269" y1="253" x2="116" y2="410"/>
<line x1="269" y1="253" x2="191" y2="398"/>
<line x1="269" y1="253" x2="135" y2="444"/>
<line x1="269" y1="253" x2="190" y2="421"/>
<line x1="269" y1="253" x2="159" y2="477"/>
<line x1="269" y1="253" x2="39" y2="500"/>
<line x1="269" y1="253" x2="142" y2="576"/>
<line x1="88" y1="267" x2="288" y2="282"/>
<line x1="88" y1="267" x2="107" y2="337"/>
<line x1="88" y1="267" x2="269" y2="329"/>
<line x1="88" y1="267" x2="20" y2="390"/>
<line x1="88" y1="267" x2="191" y2="398"/>
<line x1="88" y1="267" x2="335" y2="405"/>
<line x1="88" y1="267" x2="291" y2="434"/>
<line x1="88" y1="267" x2="140" y2="479"/>
<line x1="88" y1="267" x2="243" y2="465"/>
<line x1="88" y1="267" x2="291" y2="483"/>
<line x1="88" y1="267" x2="146" y2="507"/>
<line x1="88" y1="267" x2="206" y2="510"/>
<line x1="88" y1="267" x2="234" y2="510"/>
<line x1="88" y1="267" x2="45" y2="531"/>
<line x1="88" y1="267" x2="162" y2="598"/>
<line x1="118" y1="270" x2="55" y2="303"/>
<line x1="118" y1="270" x2="149" y2="361"/>
<line x1="118" y1="270" x2="197" y2="369"/>
<line x1="118" y1="270" x2="186" y2="440"/>
<line x1="118" y1="270" x2="172" y2="484"/>
<line x1="118" y1="270" x2="186" y2="509"/>
<line x1="118" y1="270" x2="243" y2="566"/>
<line x1="174" y1="277" x2="20" y2="390"/>
<line x1="174" y1="277" x2="117" y2="376"/>
<line x1="174" y1="277" x2="175" y2="373"/>
<line x1="174" y1="277" x2="197" y2="369"/>
<line x1="174" y1="277" x2="240" y2="374"/>
<line x1="174" y1="277" x2="142" y2="424"/>
<line x1="174" y1="277" x2="301" y2="451"/>
<line x1="174" y1="277" x2="140" y2="479"/>
<line x1="174" y1="277" x2="243" y2="465"/>
<line x1="174" y1="277" x2="146" y2="507"/>
<line x1="174" y1="277" x2="186" y2="509"/>
<line x1="174" y1="277" x2="229" y2="496"/>
<line x1="174" y1="277" x2="234" y2="510"/>
<line x1="174" y1="277" x2="293" y2="519"/>
<line x1="174" y1="277" x2="272" y2="542"/>
<line x1="189" y1="290" x2="215" y2="290"/>
<line x1="189" y1="290" x2="154" y2="334"/>
<line x1="189" y1="290" x2="219" y2="322"/>
<line x1="189" y1="290" x2="240" y2="327"/>
<line x1="189" y1="290" x2="269" y2="329"/>
<line x1="189" y1="290" x2="243" y2="350"/>
<line x1="189" y1="290" x2="272" y2="357"/>
<line x1="189" y1="290" x2="301" y2="346"/>
<line x1="189" y1="290" x2="75" y2="383"/>
<line x1="189" y1="290" x2="117" y2="376"/>
<line x1="189" y1="290" x2="137" y2="382"/>
<line x1="189" y1="290" x2="175" y2="373"/>
<line x1="189" y1="290" x2="103" y2="415"/>
<line x1="189" y1="290" x2="116" y2="410"/>
<line x1="189" y1="290" x2="129" y2="400"/>
<line x1="189" y1="290" x2="191" y2="398"/>
<line x1="189" y1="290" x2="335" y2="405"/>
<line x1="189" y1="290" x2="43" y2="440"/>
<line x1="189" y1="290" x2="105" y2="455"/>
<line x1="189" y1="290" x2="186" y2="440"/>
<line x1="189" y1="290" x2="190" y2="421"/>
<line x1="189" y1="290" x2="218" y2="436"/>
<line x1="189" y1="290" x2="227" y2="412"/>
<line x1="189" y1="290" x2="291" y2="434"/>
<line x1="189" y1="290" x2="315" y2="435"/>
<line x1="189" y1="290" x2="280" y2="456"/>
<line x1="189" y1="290" x2="110" y2="472"/>
<line x1="189" y1="290" x2="140" y2="479"/>
<line x1="189" y1="290" x2="159" y2="477"/>
<line x1="189" y1="290" x2="167" y2="450"/>
<line x1="189" y1="290" x2="172" y2="484"/>
<line x1="189" y1="290" x2="236" y2="474"/>
<line x1="189" y1="290" x2="243" y2="465"/>
<line x1="189" y1="290" x2="291" y2="483"/>
<line x1="189" y1="290" x2="186" y2="509"/>
<line x1="189" y1="290" x2="206" y2="510"/>
<line x1="189" y1="290" x2="234" y2="510"/>
<line x1="189" y1="290" x2="263" y2="507"/>
<line x1="189" y1="290" x2="130" y2="549"/>
<line x1="189" y1="290" x2="272" y2="542"/>
<line x1="189" y1="290" x2="275" y2="527"/>
<line x1="215" y1="290" x2="219" y2="322"/>
<line x1="215" y1="290" x2="240" y2="327"/>
<line x1="215" y1="290" x2="149" y2="361"/>
<line x1="215" y1="290" x2="272" y2="357"/>
<line x1="215" y1="290" x2="301" y2="346"/>
<line x1="215" y1="290" x2="75" y2="383"/>
<line x1="215" y1="290" x2="137" y2="382"/>
<line x1="215" y1="290" x2="175" y2="373"/>
<line x1="215" y1="290" x2="191" y2="398"/>
<line x1="215" y1="290" x2="311" y2="405"/>
<line x1="215" y1="290" x2="105" y2="455"/>
<line x1="215" y1="290" x2="135" y2="444"/>
<line x1="215" y1="290" x2="190" y2="421"/>
<line x1="215" y1="290" x2="216" y2="420"/>
<line x1="215" y1="290" x2="218" y2="436"/>
<line x1="215" y1="290" x2="227" y2="412"/>
<line x1="215" y1="290" x2="246" y2="420"/>
<line x1="215" y1="290" x2="258" y2="428"/>
<line x1="215" y1="290" x2="315" y2="435"/>
<line x1="215" y1="290" x2="332" y2="457"/>
<line x1="215" y1="290" x2="159" y2="477"/>
<line x1="215" y1="290" x2="172" y2="484"/>
<line x1="215" y1="290" x2="201" y2="457"/>
<line x1="215" y1="290" x2="209" y2="480"/>
<line x1="215" y1="290" x2="236" y2="474"/>
<line x1="215" y1="290" x2="146" y2="507"/>
<line x1="215" y1="290" x2="206" y2="510"/>
<line x1="215" y1="290" x2="229" y2="496"/>
<line x1="215" y1="290" x2="234" y2="510"/>
<line x1="215" y1="290" x2="130" y2="549"/>
<line x1="215" y1="290" x2="275" y2="527"/>
<line x1="288" y1="282" x2="90" y2="298"/>
<line x1="288" y1="282" x2="193" y2="322"/>
<line x1="288" y1="282" x2="240" y2="327"/>
<line x1="288" y1="282" x2="50" y2="382"/>
<line x1="288" y1="282" x2="116" y2="410"/>
<line x1="288" y1="282" x2="142" y2="424"/>
<line x1="288" y1="282" x2="191" y2="398"/>
<line x1="288" y1="282" x2="332" y2="457"/>
<line x1="288" y1="282" x2="201" y2="457"/>
<line x1="288" y1="282" x2="186" y2="509"/>
<line x1="288" y1="282" x2="293" y2="519"/>
<line x1="288" y1="282" x2="169" y2="556"/>
<line x1="288" y1="282" x2="204" y2="541"/>
<line x1="288" y1="282" x2="162" y2="598"/>
<line x1="55" y1="303" x2="269" y2="397"/>
<line x1="55" y1="303" x2="43" y2="440"/>
<line x1="55" y1="303" x2="70" y2="448"/>
<line x1="55" y1="303" x2="258" y2="428"/>
<line x1="55" y1="303" x2="167" y2="450"/>
<line x1="55" y1="303" x2="243" y2="465"/>
<line x1="55" y1="303" x2="229" y2="496"/>
<line x1="55" y1="303" x2="45" y2="531"/>
<line x1="55" y1="303" x2="73" y2="532"/>
<line x1="55" y1="303" x2="94" y2="563"/>
<line x1="55" y1="303" x2="130" y2="549"/>
<line x1="55" y1="303" x2="204" y2="541"/>
<line x1="55" y1="303" x2="243" y2="566"/>
<line x1="55" y1="303" x2="272" y2="542"/>
<line x1="305" y1="300" x2="240" y2="327"/>
<line x1="305" y1="300" x2="61" y2="316"/>
<line x1="305" y1="300" x2="301" y2="346"/>
<line x1="305" y1="300" x2="137" y2="382"/>
<line x1="305" y1="300" x2="315" y2="381"/>
<line x1="305" y1="300" x2="43" y2="440"/>
<line x1="305" y1="300" x2="246" y2="420"/>
<line x1="305" y1="300" x2="258" y2="428"/>
<line x1="305" y1="300" x2="159" y2="477"/>
<line x1="305" y1="300" x2="172" y2="484"/>
<line x1="305" y1="300" x2="243" y2="465"/>
<line x1="90" y1="298" x2="218" y2="374"/>
<line x1="90" y1="298" x2="315" y2="381"/>
<line x1="90" y1="298" x2="13" y2="430"/>
<line x1="90" y1="298" x2="163" y2="413"/>
<line x1="90" y1="298" x2="43" y2="440"/>
<line x1="90" y1="298" x2="135" y2="444"/>
<line x1="90" y1="298" x2="186" y2="440"/>
<line x1="90" y1="298" x2="140" y2="479"/>
<line x1="90" y1="298" x2="201" y2="457"/>
<line x1="90" y1="298" x2="142" y2="576"/>
<line x1="107" y1="337" x2="154" y2="334"/>
<line x1="107" y1="337" x2="193" y2="322"/>
<line x1="107" y1="337" x2="106" y2="355"/>
<line x1="107" y1="337" x2="149" y2="361"/>
<line x1="107" y1="337" x2="243" y2="350"/>
<line x1="107" y1="337" x2="301" y2="346"/>
<line x1="107" y1="337" x2="175" y2="373"/>
<line x1="107" y1="337" x2="218" y2="374"/>
<line x1="107" y1="337" x2="129" y2="400"/>
<line x1="107" y1="337" x2="191" y2="398"/>
<line x1="107" y1="337" x2="269" y2="397"/>
<line x1="107" y1="337" x2="311" y2="405"/>
<line x1="107" y1="337" x2="105" y2="455"/>
<line x1="107" y1="337" x2="186" y2="440"/>
<line x1="107" y1="337" x2="190" y2="421"/>
<line x1="107" y1="337" x2="227" y2="412"/>
<line x1="107" y1="337" x2="246" y2="420"/>
<line x1="107" y1="337" x2="258" y2="428"/>
<line x1="107" y1="337" x2="291" y2="434"/>
<line x1="107" y1="337" x2="301" y2="451"/>
<line x1="107" y1="337" x2="332" y2="457"/>
<line x1="107" y1="337" x2="280" y2="456"/>
<line x1="107" y1="337" x2="110" y2="472"/>
<line x1="107" y1="337" x2="167" y2="450"/>
<line x1="107" y1="337" x2="209" y2="480"/>
<line x1="107" y1="337" x2="236" y2="474"/>
<line x1="107" y1="337" x2="291" y2="483"/>
<line x1="107" y1="337" x2="206" y2="510"/>
<line x1="107" y1="337" x2="293" y2="519"/>
<line x1="107" y1="337" x2="275" y2="527"/>
<line x1="154" y1="334" x2="219" y2="322"/>
<line x1="154" y1="334" x2="240" y2="327"/>
<line x1="154" y1="334" x2="243" y2="350"/>
<line x1="154" y1="334" x2="75" y2="383"/>
<line x1="154" y1="334" x2="117" y2="376"/>
<line x1="154" y1="334" x2="175" y2="373"/>
<line x1="154" y1="334" x2="197" y2="369"/>
<line x1="154" y1="334" x2="218" y2="374"/>
<line x1="154" y1="334" x2="315" y2="381"/>
<line x1="154" y1="334" x2="103" y2="415"/>
<line x1="154" y1="334" x2="116" y2="410"/>
<line x1="154" y1="334" x2="224" y2="393"/>
<line x1="154" y1="334" x2="269" y2="397"/>
<line x1="154" y1="334" x2="311" y2="405"/>
<line x1="154" y1="334" x2="335" y2="405"/>
<line x1="154" y1="334" x2="70" y2="448"/>
<line x1="154" y1="334" x2="135" y2="444"/>
<line x1="154" y1="334" x2="186" y2="440"/>
<line x1="154" y1="334" x2="190" y2="421"/>
<line x1="154" y1="334" x2="315" y2="435"/>
<line x1="154" y1="334" x2="301" y2="451"/>
<line x1="154" y1="334" x2="332" y2="457"/>
<line x1="154" y1="334" x2="280" y2="456"/>
<line x1="154" y1="334" x2="110" y2="472"/>
<line x1="154" y1="334" x2="209" y2="480"/>
<line x1="154" y1="334" x2="236" y2="474"/>
<line x1="154" y1="334" x2="146" y2="507"/>
<line x1="154" y1="334" x2="234" y2="510"/>
<line x1="154" y1="334" x2="263" y2="507"/>
<line x1="154" y1="334" x2="293" y2="519"/>
<line x1="154" y1="334" x2="312" y2="504"/>
<line x1="154" y1="334" x2="169" y2="556"/>
<line x1="154" y1="334" x2="243" y2="566"/>
<line x1="154" y1="334" x2="272" y2="542"/>
<line x1="193" y1="322" x2="219" y2="322"/>
<line x1="193" y1="322" x2="240" y2="327"/>
<line x1="193" y1="322" x2="269" y2="329"/>
<line x1="193" y1="322" x2="243" y2="350"/>
<line x1="193" y1="322" x2="272" y2="357"/>
<line x1="193" y1="322" x2="137" y2="382"/>
<line x1="193" y1="322" x2="218" y2="374"/>
<line x1="193" y1="322" x2="240" y2="374"/>
<line x1="193" y1="322" x2="315" y2="381"/>
<line x1="193" y1="322" x2="103" y2="415"/>
<line x1="193" y1="322" x2="116" y2="410"/>
<line x1="193" y1="322" x2="129" y2="400"/>
<line x1="193" y1="322" x2="142" y2="424"/>
<line x1="193" y1="322" x2="163" y2="413"/>
<line x1="193" y1="322" x2="191" y2="398"/>
<line x1="193" y1="322" x2="224" y2="393"/>
<line x1="193" y1="322" x2="269" y2="397"/>
<line x1="193" y1="322" x2="335" y2="405"/>
<line x1="193" y1="322" x2="70" y2="448"/>
<line x1="193" y1="322" x2="105" y2="455"/>
<line x1="193" y1="322" x2="135" y2="444"/>
<line x1="193" y1="322" x2="216" y2="420"/>
<line x1="193" y1="322" x2="218" y2="436"/>
<line x1="193" y1="322" x2="246" y2="420"/>
<line x1="193" y1="322" x2="258" y2="428"/>
<line x1="193" y1="322" x2="301" y2="451"/>
<line x1="193" y1="322" x2="140" y2="479"/>
<line x1="193" y1="322" x2="201" y2="457"/>
<line x1="193" y1="322" x2="209" y2="480"/>
<line x1="193" y1="322" x2="236" y2="474"/>
<line x1="193" y1="322" x2="206" y2="510"/>
<line x1="193" y1="322" x2="234" y2="510"/>
<line x1="193" y1="322" x2="130" y2="549"/>
<line x1="193" y1="322" x2="272" y2="542"/>
<line x1="193" y1="322" x2="275" y2="527"/>
<line x1="219" y1="322" x2="240" y2="327"/>
<line x1="219" y1="322" x2="195" y2="347"/>
<line x1="219" y1="322" x2="243" y2="350"/>
<line x1="219" y1="322" x2="272" y2="357"/>
<line x1="219" y1="322" x2="75" y2="383"/>
<line x1="219" y1="322" x2="137" y2="382"/>
<line x1="219" y1="322" x2="175" y2="373"/>
<line x1="219" y1="322" x2="197" y2="369"/>
<line x1="219" y1="322" x2="218" y2="374"/>
<line x1="219" y1="322" x2="240" y2="374"/>
<line x1="219" y1="322" x2="315" y2="381"/>
<line x1="219" y1="322" x2="142" y2="424"/>
<line x1="219" y1="322" x2="163" y2="413"/>
<line x1="219" y1="322" x2="311" y2="405"/>
<line x1="219" y1="322" x2="335" y2="405"/>
<line x1="219" y1="322" x2="43" y2="440"/>
<line x1="219" y1="322" x2="70" y2="448"/>
<line x1="219" y1="322" x2="135" y2="444"/>
<line x1="219" y1="322" x2="190" y2="421"/>
<line x1="219" y1="322" x2="227" y2="412"/>
<line x1="219" y1="322" x2="246" y2="420"/>
<line x1="219" y1="322" x2="258" y2="428"/>
<line x1="219" y1="322" x2="250" y2="440"/>
<line x1="219" y1="322" x2="301" y2="451"/>
<line x1="219" y1="322" x2="332" y2="457"/>
<line x1="219" y1="322" x2="140" y2="479"/>
<line x1="219" y1="322" x2="201" y2="457"/>
<line x1="219" y1="322" x2="209" y2="480"/>
<line x1="219" y1="322" x2="236" y2="474"/>
<line x1="219" y1="322" x2="243" y2="465"/>
<line x1="219" y1="322" x2="260" y2="471"/>
<line x1="219" y1="322" x2="291" y2="483"/>
<line x1="219" y1="322" x2="146" y2="507"/>
<line x1="219" y1="322" x2="186" y2="509"/>
<line x1="219" y1="322" x2="206" y2="510"/>
<line x1="219" y1="322" x2="234" y2="510"/>
<line x1="219" y1="322" x2="263" y2="507"/>
<line x1="219" y1="322" x2="312" y2="504"/>
<line x1="219" y1="322" x2="130" y2="549"/>
<line x1="219" y1="322" x2="275" y2="527"/>
<line x1="240" y1="327" x2="106" y2="355"/>
<line x1="240" y1="327" x2="243" y2="350"/>
<line x1="240" y1="327" x2="117" y2="376"/>
<line x1="240" y1="327" x2="175" y2="373"/>
<line x1="240" y1="327" x2="218" y2="374"/>
<line x1="240" y1="327" x2="240" y2="374"/>
<line x1="240" y1="327" x2="315" y2="381"/>
<line x1="240" y1="327" x2="129" y2="400"/>
<line x1="240" y1="327" x2="163" y2="413"/>
<line x1="240" y1="327" x2="191" y2="398"/>
<line x1="240" y1="327" x2="335" y2="405"/>
<line x1="240" y1="327" x2="190" y2="421"/>
<line x1="240" y1="327" x2="216" y2="420"/>
<line x1="240" y1="327" x2="227" y2="412"/>
<line x1="240" y1="327" x2="258" y2="428"/>
<line x1="240" y1="327" x2="291" y2="434"/>
<line x1="240" y1="327" x2="301" y2="451"/>
<line x1="240" y1="327" x2="280" y2="456"/>
<line x1="240" y1="327" x2="167" y2="450"/>
<line x1="240" y1="327" x2="209" y2="480"/>
<line x1="240" y1="327" x2="243" y2="465"/>
<line x1="240" y1="327" x2="260" y2="471"/>
<line x1="240" y1="327" x2="291" y2="483"/>
<line x1="240" y1="327" x2="186" y2="509"/>
<line x1="240" y1="327" x2="293" y2="519"/>
<line x1="240" y1="327" x2="275" y2="527"/>
<line x1="269" y1="329" x2="195" y2="347"/>
<line x1="269" y1="329" x2="272" y2="357"/>
<line x1="269" y1="329" x2="75" y2="383"/>
<line x1="269" y1="329" x2="117" y2="376"/>
<line x1="269" y1="329" x2="197" y2="369"/>
<line x1="269" y1="329" x2="218" y2="374"/>
<line x1="269" y1="329" x2="240" y2="374"/>
<line x1="269" y1="329" x2="129" y2="400"/>
<line x1="269" y1="329" x2="269" y2="397"/>
<line x1="269" y1="329" x2="311" y2="405"/>
<line x1="269" y1="329" x2="70" y2="448"/>
<line x1="269" y1="329" x2="105" y2="455"/>
<line x1="269" y1="329" x2="190" y2="421"/>
<line x1="269" y1="329" x2="218" y2="436"/>
<line x1="269" y1="329" x2="227" y2="412"/>
<line x1="269" y1="329" x2="258" y2="428"/>
<line x1="269" y1="329" x2="280" y2="456"/>
<line x1="269" y1="329" x2="140" y2="479"/>
<line x1="269" y1="329" x2="201" y2="457"/>
<line x1="269" y1="329" x2="236" y2="474"/>
<line x1="269" y1="329" x2="260" y2="471"/>
<line x1="269" y1="329" x2="291" y2="483"/>
<line x1="269" y1="329" x2="146" y2="507"/>
<line x1="269" y1="329" x2="186" y2="509"/>
<line x1="269" y1="329" x2="206" y2="510"/>
<line x1="269" y1="329" x2="229" y2="496"/>
<line x1="269" y1="329" x2="234" y2="510"/>
<line x1="269" y1="329" x2="130" y2="549"/>
<line x1="269" y1="329" x2="243" y2="566"/>
<line x1="269" y1="329" x2="272" y2="542"/>
<line x1="269" y1="329" x2="275" y2="527"/>
<line x1="61" y1="316" x2="195" y2="347"/>
<line x1="61" y1="316" x2="240" y2="374"/>
<line x1="61" y1="316" x2="103" y2="415"/>
<line x1="61" y1="316" x2="163" y2="413"/>
<line x1="61" y1="316" x2="70" y2="448"/>
<line x1="61" y1="316" x2="332" y2="457"/>
<line x1="61" y1="316" x2="159" y2="477"/>
<line x1="61" y1="316" x2="146" y2="507"/>
<line x1="49" y1="342" x2="272" y2="357"/>
<line x1="49" y1="342" x2="20" y2="390"/>
<line x1="49" y1="342" x2="50" y2="382"/>
<line x1="49" y1="342" x2="137" y2="382"/>
<line x1="49" y1="342" x2="191" y2="398"/>
<line x1="49" y1="342" x2="311" y2="405"/>
<line x1="49" y1="342" x2="190" y2="421"/>
<line x1="49" y1="342" x2="216" y2="420"/>
<line x1="49" y1="342" x2="218" y2="436"/>
<line x1="49" y1="342" x2="258" y2="428"/>
<line x1="49" y1="342" x2="236" y2="474"/>
<line x1="49" y1="342" x2="130" y2="549"/>
<line x1="49" y1="342" x2="243" y2="566"/>
<line x1="49" y1="342" x2="275" y2="527"/>
<line x1="106" y1="355" x2="195" y2="347"/>
<line x1="106" y1="355" x2="272" y2="357"/>
<line x1="106" y1="355" x2="301" y2="346"/>
<line x1="106" y1="355" x2="75" y2="383"/>
<line x1="106" y1="355" x2="218" y2="374"/>
<line x1="106" y1="355" x2="240" y2="374"/>
<line x1="106" y1="355" x2="224" y2="393"/>
<line x1="106" y1="355" x2="135" y2="444"/>
<line x1="106" y1="355" x2="216" y2="420"/>
<line x1="106" y1="355" x2="218" y2="436"/>
<line x1="106" y1="355" x2="227" y2="412"/>
<line x1="106" y1="355" x2="246" y2="420"/>
<line x1="106" y1="355" x2="258" y2="428"/>
<line x1="106" y1="355" x2="291" y2="434"/>
<line x1="106" y1="355" x2="315" y2="435"/>
<line x1="106" y1="355" x2="301" y2="451"/>
<line x1="106" y1="355" x2="332" y2="457"/>
<line x1="106" y1="355" x2="110" y2="472"/>
<line x1="106" y1="355" x2="140" y2="479"/>
<line x1="106" y1="355" x2="159" y2="477"/>
<line x1="106" y1="355" x2="167" y2="450"/>
<line x1="106" y1="355" x2="172" y2="484"/>
<line x1="106" y1="355" x2="201" y2="457"/>
<line x1="106" y1="355" x2="209" y2="480"/>
<line x1="106" y1="355" x2="236" y2="474"/>
<line x1="106" y1="355" x2="291" y2="483"/>
<line x1="106" y1="355" x2="186" y2="509"/>
<line x1="106" y1="355" x2="293" y2="519"/>
<line x1="106" y1="355" x2="312" y2="504"/>
<line x1="106" y1="355" x2="169" y2="556"/>
<line x1="106" y1="355" x2="243" y2="566"/>
<line x1="149" y1="361" x2="272" y2="357"/>
<line x1="149" y1="361" x2="301" y2="346"/>
<line x1="149" y1="361" x2="75" y2="383"/>
<line x1="149" y1="361" x2="117" y2="376"/>
<line x1="149" y1="361" x2="175" y2="373"/>
<line x1="149" y1="361" x2="240" y2="374"/>
<line x1="149" y1="361" x2="315" y2="381"/>
<line x1="149" y1="361" x2="103" y2="415"/>
<line x1="149" y1="361" x2="116" y2="410"/>
<line x1="149" y1="361" x2="163" y2="413"/>
<line x1="149" y1="361" x2="269" y2="397"/>
<line x1="149" y1="361" x2="311" y2="405"/>
<line x1="149" y1="361" x2="335" y2="405"/>
<line x1="149" y1="361" x2="70" y2="448"/>
<line x1="149" y1="361" x2="135" y2="444"/>
<line x1="149" y1="361" x2="186" y2="440"/>
<line x1="149" y1="361" x2="218" y2="436"/>
<line x1="149" y1="361" x2="246" y2="420"/>
<line x1="149" y1="361" x2="258" y2="428"/>
<line x1="149" y1="361" x2="250" y2="440"/>
<line x1="149" y1="361" x2="280" y2="456"/>
<line x1="149" y1="361" x2="140" y2="479"/>
<line x1="149" y1="361" x2="159" y2="477"/>
<line x1="149" y1="361" x2="167" y2="450"/>
<line x1="149" y1="361" x2="172" y2="484"/>
<line x1="149" y1="361" x2="201" y2="457"/>
<line x1="149" y1="361" x2="243" y2="465"/>
<line x1="149" y1="361" x2="260" y2="471"/>
<line x1="149" y1="361" x2="291" y2="483"/>
<line x1="149" y1="361" x2="186" y2="509"/>
<line x1="149" y1="361" x2="206" y2="510"/>
<line x1="149" y1="361" x2="234" y2="510"/>
<line x1="149" y1="361" x2="312" y2="504"/>
<line x1="149" y1="361" x2="130" y2="549"/>
<line x1="149" y1="361" x2="243" y2="566"/>
<line x1="195" y1="347" x2="243" y2="350"/>
<line x1="195" y1="347" x2="75" y2="383"/>
<line x1="195" y1="347" x2="175" y2="373"/>
<line x1="195" y1="347" x2="197" y2="369"/>
<line x1="195" y1="347" x2="218" y2="374"/>
<line x1="195" y1="347" x2="315" y2="381"/>
<line x1="195" y1="347" x2="129" y2="400"/>
<line x1="195" y1="347" x2="142" y2="424"/>
<line x1="195" y1="347" x2="163" y2="413"/>
<line x1="195" y1="347" x2="191" y2="398"/>
<line x1="195" y1="347" x2="269" y2="397"/>
<line x1="195" y1="347" x2="311" y2="405"/>
<line x1="195" y1="347" x2="70" y2="448"/>
<line x1="195" y1="347" x2="135" y2="444"/>
<line x1="195" y1="347" x2="186" y2="440"/>
<line x1="195" y1="347" x2="227" y2="412"/>
<line x1="195" y1="347" x2="246" y2="420"/>
<line x1="195" y1="347" x2="258" y2="428"/>
<line x1="195" y1="347" x2="250" y2="440"/>
<line x1="195" y1="347" x2="291" y2="434"/>
<line x1="195" y1="347" x2="301" y2="451"/>
<line x1="195" y1="347" x2="280" y2="456"/>
<line x1="195" y1="347" x2="140" y2="479"/>
<line x1="195" y1="347" x2="167" y2="450"/>
<line x1="195" y1="347" x2="243" y2="465"/>
<line x1="195" y1="347" x2="291" y2="483"/>
<line x1="195" y1="347" x2="146" y2="507"/>
<line x1="195" y1="347" x2="229" y2="496"/>
<line x1="195" y1="347" x2="234" y2="510"/>
<line x1="195" y1="347" x2="263" y2="507"/>
<line x1="195" y1="347" x2="293" y2="519"/>
<line x1="195" y1="347" x2="204" y2="541"/>
<line x1="195" y1="347" x2="243" y2="566"/>
<line x1="195" y1="347" x2="275" y2="527"/>
<line x1="243" y1="350" x2="272" y2="357"/>
<line x1="243" y1="350" x2="137" y2="382"/>
<line x1="243" y1="350" x2="175" y2="373"/>
<line x1="243" y1="350" x2="240" y2="374"/>
<line x1="243" y1="350" x2="315" y2="381"/>
<line x1="243" y1="350" x2="103" y2="415"/>
<line x1="243" y1="350" x2="142" y2="424"/>
<line x1="243" y1="350" x2="163" y2="413"/>
<line x1="243" y1="350" x2="269" y2="397"/>
<line x1="243" y1="350" x2="335" y2="405"/>
<line x1="243" y1="350" x2="105" y2="455"/>
<line x1="243" y1="350" x2="186" y2="440"/>
<line x1="243" y1="350" x2="246" y2="420"/>
<line x1="243" y1="350" x2="258" y2="428"/>
<line x1="243" y1="350" x2="250" y2="440"/>
<line x1="243" y1="350" x2="315" y2="435"/>
<line x1="243" y1="350" x2="301" y2="451"/>
<line x1="243" y1="350" x2="280" y2="456"/>
<line x1="243" y1="350" x2="140" y2="479"/>
<line x1="243" y1="350" x2="167" y2="450"/>
<line x1="243" y1="350" x2="201" y2="457"/>
<line x1="243" y1="350" x2="209" y2="480"/>
<line x1="243" y1="350" x2="236" y2="474"/>
<line x1="243" y1="350" x2="243" y2="465"/>
<line x1="243" y1="350" x2="146" y2="507"/>
<line x1="243" y1="350" x2="186" y2="509"/>
<line x1="243" y1="350" x2="206" y2="510"/>
<line x1="243" y1="350" x2="229" y2="496"/>
<line x1="243" y1="350" x2="312" y2="504"/>
<line x1="243" y1="350" x2="130" y2="549"/>
<line x1="243" y1="350" x2="169" y2="556"/>
<line x1="243" y1="350" x2="275" y2="527"/>
<line x1="272" y1="357" x2="75" y2="383"/>
<line x1="272" y1="357" x2="137" y2="382"/>
<line x1="272" y1="357" x2="240" y2="374"/>
<line x1="272" y1="357" x2="315" y2="381"/>
<line x1="272" y1="357" x2="116" y2="410"/>
<line x1="272" y1="357" x2="129" y2="400"/>
<line x1="272" y1="357" x2="142" y2="424"/>
<line x1="272" y1="357" x2="191" y2="398"/>
<line x1="272" y1="357" x2="224" y2="393"/>
<line x1="272" y1="357" x2="269" y2="397"/>
<line x1="272" y1="357" x2="335" y2="405"/>
<line x1="272" y1="357" x2="43" y2="440"/>
<line x1="272" y1="357" x2="70" y2="448"/>
<line x1="272" y1="357" x2="190" y2="421"/>
<line x1="272" y1="357" x2="216" y2="420"/>
<line x1="272" y1="357" x2="246" y2="420"/>
<line x1="272" y1="357" x2="258" y2="428"/>
<line x1="272" y1="357" x2="291" y2="434"/>
<line x1="272" y1="357" x2="280" y2="456"/>
<line x1="272" y1="357" x2="140" y2="479"/>
<line x1="272" y1="357" x2="167" y2="450"/>
<line x1="272" y1="357" x2="172" y2="484"/>
<line x1="272" y1="357" x2="291" y2="483"/>
<line x1="272" y1="357" x2="146" y2="507"/>
<line x1="272" y1="357" x2="206" y2="510"/>
<line x1="272" y1="357" x2="229" y2="496"/>
<line x1="272" y1="357" x2="293" y2="519"/>
<line x1="272" y1="357" x2="130" y2="549"/>
<line x1="272" y1="357" x2="169" y2="556"/>
<line x1="272" y1="357" x2="204" y2="541"/>
<line x1="272" y1="357" x2="243" y2="566"/>
<line x1="272" y1="357" x2="275" y2="527"/>
<line x1="301" y1="346" x2="75" y2="383"/>
<line x1="301" y1="346" x2="137" y2="382"/>
<line x1="301" y1="346" x2="197" y2="369"/>
<line x1="301" y1="346" x2="240" y2="374"/>
<line x1="301" y1="346" x2="315" y2="381"/>
<line x1="301" y1="346" x2="116" y2="410"/>
<line x1="301" y1="346" x2="191" y2="398"/>
<line x1="301" y1="346" x2="224" y2="393"/>
<line x1="301" y1="346" x2="269" y2="397"/>
<line x1="301" y1="346" x2="311" y2="405"/>
<line x1="301" y1="346" x2="43" y2="440"/>
<line x1="301" y1="346" x2="135" y2="444"/>
<line x1="301" y1="346" x2="186" y2="440"/>
<line x1="301" y1="346" x2="190" y2="421"/>
<line x1="301" y1="346" x2="216" y2="420"/>
<line x1="301" y1="346" x2="227" y2="412"/>
<line x1="301" y1="346" x2="246" y2="420"/>
<line x1="301" y1="346" x2="315" y2="435"/>
<line x1="301" y1="346" x2="301" y2="451"/>
<line x1="301" y1="346" x2="280" y2="456"/>
<line x1="301" y1="346" x2="140" y2="479"/>
<line x1="301" y1="346" x2="172" y2="484"/>
<line x1="301" y1="346" x2="243" y2="465"/>
<line x1="301" y1="346" x2="291" y2="483"/>
<line x1="301" y1="346" x2="186" y2="509"/>
<line x1="301" y1="346" x2="229" y2="496"/>
<line x1="301" y1="346" x2="263" y2="507"/>
<line x1="301" y1="346" x2="312" y2="504"/>
<line x1="301" y1="346" x2="130" y2="549"/>
<line x1="301" y1="346" x2="204" y2="541"/>
<line x1="20" y1="390" x2="13" y2="430"/>
<line x1="20" y1="390" x2="142" y2="424"/>
<line x1="20" y1="390" x2="167" y2="450"/>
<line x1="20" y1="390" x2="39" y2="500"/>
<line x1="20" y1="390" x2="206" y2="510"/>
<line x1="20" y1="390" x2="45" y2="531"/>
<line x1="50" y1="382" x2="163" y2="413"/>
<line x1="50" y1="382" x2="191" y2="398"/>
<line x1="50" y1="382" x2="216" y2="420"/>
<line x1="50" y1="382" x2="332" y2="457"/>
<line x1="50" y1="382" x2="201" y2="457"/>
<line x1="50" y1="382" x2="209" y2="480"/>
<line x1="50" y1="382" x2="260" y2="471"/>
<line x1="50" y1="382" x2="146" y2="507"/>
<line x1="50" y1="382" x2="186" y2="509"/>
<line x1="50" y1="382" x2="206" y2="510"/>
<line x1="75" y1="383" x2="175" y2="373"/>
<line x1="75" y1="383" x2="218" y2="374"/>
<line x1="75" y1="383" x2="116" y2="410"/>
<line x1="75" y1="383" x2="191" y2="398"/>
<line x1="75" y1="383" x2="224" y2="393"/>
<line x1="75" y1="383" x2="269" y2="397"/>
<line x1="75" y1="383" x2="311" y2="405"/>
<line x1="75" y1="383" x2="43" y2="440"/>
<line x1="75" y1="383" x2="105" y2="455"/>
<line x1="75" y1="383" x2="218" y2="436"/>
<line x1="75" y1="383" x2="258" y2="428"/>
<line x1="75" y1="383" x2="291" y2="434"/>
<line x1="75" y1="383" x2="315" y2="435"/>
<line x1="75" y1="383" x2="332" y2="457"/>
<line x1="75" y1="383" x2="110" y2="472"/>
<line x1="75" y1="383" x2="201" y2="457"/>
<line x1="75" y1="383" x2="209" y2="480"/>
<line x1="75" y1="383" x2="236" y2="474"/>
<line x1="75" y1="383" x2="146" y2="507"/>
<line x1="75" y1="383" x2="206" y2="510"/>
<line x1="75" y1="383" x2="263" y2="507"/>
<line x1="75" y1="383" x2="312" y2="504"/>
<line x1="75" y1="383" x2="204" y2="541"/>
<line x1="75" y1="383" x2="243" y2="566"/>
<line x1="75" y1="383" x2="272" y2="542"/>
<line x1="117" y1="376" x2="197" y2="369"/>
<line x1="117" y1="376" x2="218" y2="374"/>
<line x1="117" y1="376" x2="315" y2="381"/>
<line x1="117" y1="376" x2="103" y2="415"/>
<line x1="117" y1="376" x2="142" y2="424"/>
<line x1="117" y1="376" x2="163" y2="413"/>
<line x1="117" y1="376" x2="224" y2="393"/>
<line x1="117" y1="376" x2="269" y2="397"/>
<line x1="117" y1="376" x2="70" y2="448"/>
<line x1="117" y1="376" x2="186" y2="440"/>
<line x1="117" y1="376" x2="218" y2="436"/>
<line x1="117" y1="376" x2="250" y2="440"/>
<line x1="117" y1="376" x2="291" y2="434"/>
<line x1="117" y1="376" x2="315" y2="435"/>
<line x1="117" y1="376" x2="332" y2="457"/>
<line x1="117" y1="376" x2="280" y2="456"/>
<line x1="117" y1="376" x2="140" y2="479"/>
<line x1="117" y1="376" x2="159" y2="477"/>
<line x1="117" y1="376" x2="167" y2="450"/>
<line x1="117" y1="376" x2="201" y2="457"/>
<line x1="117" y1="376" x2="236" y2="474"/>
<line x1="117" y1="376" x2="291" y2="483"/>
<line x1="117" y1="376" x2="206" y2="510"/>
<line x1="117" y1="376" x2="229" y2="496"/>
<line x1="117" y1="376" x2="234" y2="510"/>
<line x1="117" y1="376" x2="263" y2="507"/>
<line x1="117" y1="376" x2="293" y2="519"/>
<line x1="117" y1="376" x2="312" y2="504"/>
<line x1="117" y1="376" x2="130" y2="549"/>
<line x1="117" y1="376" x2="275" y2="527"/>
<line x1="137" y1="382" x2="175" y2="373"/>
<line x1="137" y1="382" x2="129" y2="400"/>
<line x1="137" y1="382" x2="163" y2="413"/>
<line x1="137" y1="382" x2="43" y2="440"/>
<line x1="137" y1="382" x2="70" y2="448"/>
<line x1="137" y1="382" x2="105" y2="455"/>
<line x1="137" y1="382" x2="135" y2="444"/>
<line x1="137" y1="382" x2="190" y2="421"/>
<line x1="137" y1="382" x2="216" y2="420"/>
<line x1="137" y1="382" x2="227" y2="412"/>
<line x1="137" y1="382" x2="246" y2="420"/>
<line x1="137" y1="382" x2="258" y2="428"/>
<line x1="137" y1="382" x2="250" y2="440"/>
<line x1="137" y1="382" x2="315" y2="435"/>
<line x1="137" y1="382" x2="280" y2="456"/>
<line x1="137" y1="382" x2="110" y2="472"/>
<line x1="137" y1="382" x2="140" y2="479"/>
<line x1="137" y1="382" x2="159" y2="477"/>
<line x1="137" y1="382" x2="172" y2="484"/>
<line x1="137" y1="382" x2="209" y2="480"/>
<line x1="137" y1="382" x2="260" y2="471"/>
<line x1="137" y1="382" x2="291" y2="483"/>
<line x1="137" y1="382" x2="229" y2="496"/>
<line x1="137" y1="382" x2="263" y2="507"/>
<line x1="137" y1="382" x2="293" y2="519"/>
<line x1="137" y1="382" x2="130" y2="549"/>
<line x1="137" y1="382" x2="204" y2="541"/>
<line x1="137" y1="382" x2="275" y2="527"/>
<line x1="175" y1="373" x2="240" y2="374"/>
<line x1="175" y1="373" x2="103" y2="415"/>
<line x1="175" y1="373" x2="163" y2="413"/>
<line x1="175" y1="373" x2="224" y2="393"/>
<line x1="175" y1="373" x2="269" y2="397"/>
<line x1="175" y1="373" x2="311" y2="405"/>
<line x1="175" y1="373" x2="105" y2="455"/>
<line x1="175" y1="373" x2="190" y2="421"/>
<line x1="175" y1="373" x2="250" y2="440"/>
<line x1="175" y1="373" x2="301" y2="451"/>
<line x1="175" y1="373" x2="332" y2="457"/>
<line x1="175" y1="373" x2="140" y2="479"/>
<line x1="175" y1="373" x2="167" y2="450"/>
<line x1="175" y1="373" x2="236" y2="474"/>
<line x1="175" y1="373" x2="260" y2="471"/>
<line x1="175" y1="373" x2="291" y2="483"/>
<line x1="175" y1="373" x2="186" y2="509"/>
<line x1="175" y1="373" x2="263" y2="507"/>
<line x1="175" y1="373" x2="130" y2="549"/>
<line x1="175" y1="373" x2="204" y2="541"/>
<line x1="175" y1="373" x2="272" y2="542"/>
<line x1="175" y1="373" x2="275" y2="527"/>
<line x1="197" y1="369" x2="218" y2="374"/>
<line x1="197" y1="369" x2="103" y2="415"/>
<line x1="197" y1="369" x2="129" y2="400"/>
<line x1="197" y1="369" x2="142" y2="424"/>
<line x1="197" y1="369" x2="311" y2="405"/>
<line x1="197" y1="369" x2="335" y2="405"/>
<line x1="197" y1="369" x2="43" y2="440"/>
<line x1="197" y1="369" x2="70" y2="448"/>
<line x1="197" y1="369" x2="105" y2="455"/>
<line x1="197" y1="369" x2="135" y2="444"/>
<line x1="197" y1="369" x2="218" y2="436"/>
<line x1="197" y1="369" x2="227" y2="412"/>
<line x1="197" y1="369" x2="246" y2="420"/>
<line x1="197" y1="369" x2="258" y2="428"/>
<line x1="197" y1="369" x2="291" y2="434"/>
<line x1="197" y1="369" x2="280" y2="456"/>
<line x1="197" y1="369" x2="110" y2="472"/>
<line x1="197" y1="369" x2="159" y2="477"/>
<line x1="197" y1="369" x2="172" y2="484"/>
<line x1="197" y1="369" x2="291" y2="483"/>
<line x1="197" y1="369" x2="186" y2="509"/>
<line x1="197" y1="369" x2="206" y2="510"/>
<line x1="197" y1="369" x2="234" y2="510"/>
<line x1="197" y1="369" x2="263" y2="507"/>
<line x1="197" y1="369" x2="293" y2="519"/>
<line x1="197" y1="369" x2="204" y2="541"/>
<line x1="218" y1="374" x2="129" y2="400"/>
<line x1="218" y1="374" x2="142" y2="424"/>
<line x1="218" y1="374" x2="311" y2="405"/>
<line x1="218" y1="374" x2="335" y2="405"/>
<line x1="218" y1="374" x2="70" y2="448"/>
<line x1="218" y1="374" x2="135" y2="444"/>
<line x1="218" y1="374" x2="186" y2="440"/>
<line x1="218" y1="374" x2="216" y2="420"/>
<line x1="218" y1="374" x2="258" y2="428"/>
<line x1="218" y1="374" x2="315" y2="435"/>
<line x1="218" y1="374" x2="280" y2="456"/>
<line x1="218" y1="374" x2="159" y2="477"/>
<line x1="218" y1="374" x2="167" y2="450"/>
<line x1="218" y1="374" x2="172" y2="484"/>
<line x1="218" y1="374" x2="236" y2="474"/>
<line x1="218" y1="374" x2="243" y2="465"/>
<line x1="218" y1="374" x2="186" y2="509"/>
<line x1="218" y1="374" x2="206" y2="510"/>
<line x1="218" y1="374" x2="229" y2="496"/>
<line x1="218" y1="374" x2="234" y2="510"/>
<line x1="218" y1="374" x2="263" y2="507"/>
<line x1="218" y1="374" x2="312" y2="504"/>
<line x1="218" y1="374" x2="130" y2="549"/>
<line x1="218" y1="374" x2="169" y2="556"/>
<line x1="218" y1="374" x2="204" y2="541"/>
<line x1="218" y1="374" x2="272" y2="542"/>
<line x1="218" y1="374" x2="275" y2="527"/>
<line x1="240" y1="374" x2="142" y2="424"/>
<line x1="240" y1="374" x2="163" y2="413"/>
<line x1="240" y1="374" x2="269" y2="397"/>
<line x1="240" y1="374" x2="43" y2="440"/>
<line x1="240" y1="374" x2="105" y2="455"/>
<line x1="240" y1="374" x2="135" y2="444"/>
<line x1="240" y1="374" x2="186" y2="440"/>
<line x1="240" y1="374" x2="216" y2="420"/>
<line x1="240" y1="374" x2="227" y2="412"/>
<line x1="240" y1="374" x2="246" y2="420"/>
<line x1="240" y1="374" x2="315" y2="435"/>
<line x1="240" y1="374" x2="332" y2="457"/>
<line x1="240" y1="374" x2="110" y2="472"/>
<line x1="240" y1="374" x2="167" y2="450"/>
<line x1="240" y1="374" x2="236" y2="474"/>
<line x1="240" y1="374" x2="260" y2="471"/>
<line x1="240" y1="374" x2="146" y2="507"/>
<line x1="240" y1="374" x2="186" y2="509"/>
<line x1="240" y1="374" x2="206" y2="510"/>
<line x1="240" y1="374" x2="229" y2="496"/>
<line x1="240" y1="374" x2="263" y2="507"/>
<line x1="240" y1="374" x2="312" y2="504"/>
<line x1="240" y1="374" x2="130" y2="549"/>
<line x1="240" y1="374" x2="169" y2="556"/>
<line x1="240" y1="374" x2="243" y2="566"/>
<line x1="240" y1="374" x2="275" y2="527"/>
<line x1="282" y1="381" x2="163" y2="413"/>
<line x1="282" y1="381" x2="191" y2="398"/>
<line x1="282" y1="381" x2="216" y2="420"/>
<line x1="282" y1="381" x2="332" y2="457"/>
<line x1="282" y1="381" x2="201" y2="457"/>
<line x1="282" y1="381" x2="209" y2="480"/>
<line x1="282" y1="381" x2="260" y2="471"/>
<line x1="282" y1="381" x2="146" y2="507"/>
<line x1="282" y1="381" x2="186" y2="509"/>
<line x1="282" y1="381" x2="206" y2="510"/>
<line x1="282" y1="381" x2="392" y2="347"/>
<line x1="315" y1="381" x2="116" y2="410"/>
<line x1="315" y1="381" x2="142" y2="424"/>
<line x1="315" y1="381" x2="191" y2="398"/>
<line x1="315" y1="381" x2="43" y2="440"/>
<line x1="315" y1="381" x2="70" y2="448"/>
<line x1="315" y1="381" x2="135" y2="444"/>
<line x1="315" y1="381" x2="186" y2="440"/>
<line x1="315" y1="381" x2="190" y2="421"/>
<line x1="315" y1="381" x2="218" y2="436"/>
<line x1="315" y1="381" x2="227" y2="412"/>
<line x1="315" y1="381" x2="246" y2="420"/>
<line x1="315" y1="381" x2="258" y2="428"/>
<line x1="315" y1="381" x2="315" y2="435"/>
<line x1="315" y1="381" x2="332" y2="457"/>
<line x1="315" y1="381" x2="110" y2="472"/>
<line x1="315" y1="381" x2="140" y2="479"/>
<line x1="315" y1="381" x2="159" y2="477"/>
<line x1="315" y1="381" x2="167" y2="450"/>
<line x1="315" y1="381" x2="172" y2="484"/>
<line x1="315" y1="381" x2="236" y2="474"/>
<line x1="315" y1="381" x2="186" y2="509"/>
<line x1="315" y1="381" x2="206" y2="510"/>
<line x1="315" y1="381" x2="312" y2="504"/>
<line x1="315" y1="381" x2="130" y2="549"/>
<line x1="315" y1="381" x2="204" y2="541"/>
<line x1="13" y1="430" x2="135" y2="444"/>
<line x1="13" y1="430" x2="167" y2="450"/>
<line x1="13" y1="430" x2="243" y2="465"/>
<line x1="13" y1="430" x2="260" y2="471"/>
<line x1="13" y1="430" x2="263" y2="507"/>
<line x1="13" y1="430" x2="142" y2="576"/>
<line x1="13" y1="430" x2="162" y2="598"/>
<line x1="103" y1="415" x2="116" y2="410"/>
<line x1="103" y1="415" x2="129" y2="400"/>
<line x1="103" y1="415" x2="269" y2="397"/>
<line x1="103" y1="415" x2="43" y2="440"/>
<line x1="103" y1="415" x2="70" y2="448"/>
<line x1="103" y1="415" x2="135" y2="444"/>
<line x1="103" y1="415" x2="190" y2="421"/>
<line x1="103" y1="415" x2="216" y2="420"/>
<line x1="103" y1="415" x2="227" y2="412"/>
<line x1="103" y1="415" x2="246" y2="420"/>
<line x1="103" y1="415" x2="258" y2="428"/>
<line x1="103" y1="415" x2="250" y2="440"/>
<line x1="103" y1="415" x2="291" y2="434"/>
<line x1="103" y1="415" x2="315" y2="435"/>
<line x1="103" y1="415" x2="301" y2="451"/>
<line x1="103" y1="415" x2="280" y2="456"/>
<line x1="103" y1="415" x2="110" y2="472"/>
<line x1="103" y1="415" x2="140" y2="479"/>
<line x1="103" y1="415" x2="159" y2="477"/>
<line x1="103" y1="415" x2="172" y2="484"/>
<line x1="103" y1="415" x2="260" y2="471"/>
<line x1="103" y1="415" x2="186" y2="509"/>
<line x1="103" y1="415" x2="206" y2="510"/>
<line x1="103" y1="415" x2="293" y2="519"/>
<line x1="103" y1="415" x2="130" y2="549"/>
<line x1="103" y1="415" x2="169" y2="556"/>
<line x1="103" y1="415" x2="243" y2="566"/>
<line x1="103" y1="415" x2="272" y2="542"/>
<line x1="116" y1="410" x2="129" y2="400"/>
<line x1="116" y1="410" x2="163" y2="413"/>
<line x1="116" y1="410" x2="269" y2="397"/>
<line x1="116" y1="410" x2="311" y2="405"/>
<line x1="116" y1="410" x2="335" y2="405"/>
<line x1="116" y1="410" x2="43" y2="440"/>
<line x1="116" y1="410" x2="105" y2="455"/>
<line x1="116" y1="410" x2="186" y2="440"/>
<line x1="116" y1="410" x2="216" y2="420"/>
<line x1="116" y1="410" x2="218" y2="436"/>
<line x1="116" y1="410" x2="246" y2="420"/>
<line x1="116" y1="410" x2="258" y2="428"/>
<line x1="116" y1="410" x2="250" y2="440"/>
<line x1="116" y1="410" x2="291" y2="434"/>
<line x1="116" y1="410" x2="301" y2="451"/>
<line x1="116" y1="410" x2="332" y2="457"/>
<line x1="116" y1="410" x2="140" y2="479"/>
<line x1="116" y1="410" x2="172" y2="484"/>
<line x1="116" y1="410" x2="201" y2="457"/>
<line x1="116" y1="410" x2="236" y2="474"/>
<line x1="116" y1="410" x2="243" y2="465"/>
<line x1="116" y1="410" x2="186" y2="509"/>
<line x1="116" y1="410" x2="206" y2="510"/>
<line x1="116" y1="410" x2="229" y2="496"/>
<line x1="116" y1="410" x2="234" y2="510"/>
<line x1="116" y1="410" x2="312" y2="504"/>
<line x1="116" y1="410" x2="130" y2="549"/>
<line x1="116" y1="410" x2="169" y2="556"/>
<line x1="116" y1="410" x2="204" y2="541"/>
<line x1="116" y1="410" x2="272" y2="542"/>
<line x1="116" y1="410" x2="275" y2="527"/>
<line x1="129" y1="400" x2="142" y2="424"/>
<line x1="129" y1="400" x2="224" y2="393"/>
<line x1="129" y1="400" x2="269" y2="397"/>
<line x1="129" y1="400" x2="335" y2="405"/>
<line x1="129" y1="400" x2="105" y2="455"/>
<line x1="129" y1="400" x2="135" y2="444"/>
<line x1="129" y1="400" x2="216" y2="420"/>
<line x1="129" y1="400" x2="227" y2="412"/>
<line x1="129" y1="400" x2="291" y2="434"/>
<line x1="129" y1="400" x2="315" y2="435"/>
<line x1="129" y1="400" x2="110" y2="472"/>
<line x1="129" y1="400" x2="140" y2="479"/>
<line x1="129" y1="400" x2="159" y2="477"/>
<line x1="129" y1="400" x2="172" y2="484"/>
<line x1="129" y1="400" x2="201" y2="457"/>
<line x1="129" y1="400" x2="209" y2="480"/>
<line x1="129" y1="400" x2="243" y2="465"/>
<line x1="129" y1="400" x2="260" y2="471"/>
<line x1="129" y1="400" x2="146" y2="507"/>
<line x1="129" y1="400" x2="206" y2="510"/>
<line x1="129" y1="400" x2="234" y2="510"/>
<line x1="129" y1="400" x2="243" y2="566"/>
<line x1="142" y1="424" x2="163" y2="413"/>
<line x1="142" y1="424" x2="224" y2="393"/>
<line x1="142" y1="424" x2="311" y2="405"/>
<line x1="142" y1="424" x2="335" y2="405"/>
<line x1="142" y1="424" x2="43" y2="440"/>
<line x1="142" y1="424" x2="105" y2="455"/>
<line x1="142" y1="424" x2="135" y2="444"/>
<line x1="142" y1="424" x2="186" y2="440"/>
<line x1="142" y1="424" x2="218" y2="436"/>
<line x1="142" y1="424" x2="227" y2="412"/>
<line x1="142" y1="424" x2="258" y2="428"/>
<line x1="142" y1="424" x2="291" y2="434"/>
<line x1="142" y1="424" x2="315" y2="435"/>
<line x1="142" y1="424" x2="301" y2="451"/>
<line x1="142" y1="424" x2="332" y2="457"/>
<line x1="142" y1="424" x2="280" y2="456"/>
<line x1="142" y1="424" x2="140" y2="479"/>
<line x1="142" y1="424" x2="159" y2="477"/>
<line x1="142" y1="424" x2="201" y2="457"/>
<line x1="142" y1="424" x2="209" y2="480"/>
<line x1="142" y1="424" x2="291" y2="483"/>
<line x1="142" y1="424" x2="186" y2="509"/>
<line x1="142" y1="424" x2="206" y2="510"/>
<line x1="142" y1="424" x2="263" y2="507"/>
<line x1="142" y1="424" x2="312" y2="504"/>
<line x1="142" y1="424" x2="204" y2="541"/>
<line x1="163" y1="413" x2="224" y2="393"/>
<line x1="163" y1="413" x2="269" y2="397"/>
<line x1="163" y1="413" x2="135" y2="444"/>
<line x1="163" y1="413" x2="190" y2="421"/>
<line x1="163" y1="413" x2="227" y2="412"/>
<line x1="163" y1="413" x2="246" y2="420"/>
<line x1="163" y1="413" x2="250" y2="440"/>
<line x1="163" y1="413" x2="291" y2="434"/>
<line x1="163" y1="413" x2="280" y2="456"/>
<line x1="163" y1="413" x2="110" y2="472"/>
<line x1="163" y1="413" x2="140" y2="479"/>
<line x1="163" y1="413" x2="159" y2="477"/>
<line x1="163" y1="413" x2="172" y2="484"/>
<line x1="163" y1="413" x2="260" y2="471"/>
<line x1="163" y1="413" x2="291" y2="483"/>
<line x1="163" y1="413" x2="146" y2="507"/>
<line x1="163" y1="413" x2="186" y2="509"/>
<line x1="163" y1="413" x2="206" y2="510"/>
<line x1="163" y1="413" x2="234" y2="510"/>
<line x1="163" y1="413" x2="263" y2="507"/>
<line x1="163" y1="413" x2="293" y2="519"/>
<line x1="163" y1="413" x2="312" y2="504"/>
<line x1="163" y1="413" x2="130" y2="549"/>
<line x1="163" y1="413" x2="243" y2="566"/>
<line x1="163" y1="413" x2="272" y2="542"/>
<line x1="191" y1="398" x2="269" y2="397"/>
<line x1="191" y1="398" x2="311" y2="405"/>
<line x1="191" y1="398" x2="43" y2="440"/>
<line x1="191" y1="398" x2="70" y2="448"/>
<line x1="191" y1="398" x2="105" y2="455"/>
<line x1="191" y1="398" x2="216" y2="420"/>
<line x1="191" y1="398" x2="246" y2="420"/>
<line x1="191" y1="398" x2="291" y2="434"/>
<line x1="191" y1="398" x2="315" y2="435"/>
<line x1="191" y1="398" x2="332" y2="457"/>
<line x1="191" y1="398" x2="159" y2="477"/>
<line x1="191" y1="398" x2="260" y2="471"/>
<line x1="191" y1="398" x2="291" y2="483"/>
<line x1="191" y1="398" x2="229" y2="496"/>
<line x1="191" y1="398" x2="234" y2="510"/>
<line x1="191" y1="398" x2="312" y2="504"/>
<line x1="191" y1="398" x2="130" y2="549"/>
<line x1="191" y1="398" x2="275" y2="527"/>
<line x1="224" y1="393" x2="311" y2="405"/>
<line x1="224" y1="393" x2="43" y2="440"/>
<line x1="224" y1="393" x2="105" y2="455"/>
<line x1="224" y1="393" x2="135" y2="444"/>
<line x1="224" y1="393" x2="216" y2="420"/>
<line x1="224" y1="393" x2="218" y2="436"/>
<line x1="224" y1="393" x2="258" y2="428"/>
<line x1="224" y1="393" x2="291" y2="434"/>
<line x1="224" y1="393" x2="110" y2="472"/>
<line x1="224" y1="393" x2="140" y2="479"/>
<line x1="224" y1="393" x2="159" y2="477"/>
<line x1="224" y1="393" x2="167" y2="450"/>
<line x1="224" y1="393" x2="172" y2="484"/>
<line x1="224" y1="393" x2="236" y2="474"/>
<line x1="224" y1="393" x2="186" y2="509"/>
<line x1="224" y1="393" x2="206" y2="510"/>
<line x1="224" y1="393" x2="263" y2="507"/>
<line x1="224" y1="393" x2="293" y2="519"/>
<line x1="224" y1="393" x2="130" y2="549"/>
<line x1="224" y1="393" x2="204" y2="541"/>
<line x1="224" y1="393" x2="275" y2="527"/>
<line x1="269" y1="397" x2="335" y2="405"/>
<line x1="269" y1="397" x2="70" y2="448"/>
<line x1="269" y1="397" x2="105" y2="455"/>
<line x1="269" y1="397" x2="135" y2="444"/>
<line x1="269" y1="397" x2="227" y2="412"/>
<line x1="269" y1="397" x2="246" y2="420"/>
<line x1="269" y1="397" x2="258" y2="428"/>
<line x1="269" y1="397" x2="301" y2="451"/>
<line x1="269" y1="397" x2="332" y2="457"/>
<line x1="269" y1="397" x2="280" y2="456"/>
<line x1="269" y1="397" x2="140" y2="479"/>
<line x1="269" y1="397" x2="159" y2="477"/>
<line x1="269" y1="397" x2="201" y2="457"/>
<line x1="269" y1="397" x2="209" y2="480"/>
<line x1="269" y1="397" x2="243" y2="465"/>
<line x1="269" y1="397" x2="146" y2="507"/>
<line x1="269" y1="397" x2="186" y2="509"/>
<line x1="269" y1="397" x2="229" y2="496"/>
<line x1="269" y1="397" x2="263" y2="507"/>
<line x1="269" y1="397" x2="312" y2="504"/>
<line x1="269" y1="397" x2="130" y2="549"/>
<line x1="269" y1="397" x2="169" y2="556"/>
<line x1="269" y1="397" x2="204" y2="541"/>
<line x1="269" y1="397" x2="243" y2="566"/>
<line x1="269" y1="397" x2="275" y2="527"/>
<line x1="311" y1="405" x2="43" y2="440"/>
<line x1="311" y1="405" x2="70" y2="448"/>
<line x1="311" y1="405" x2="135" y2="444"/>
<line x1="311" y1="405" x2="186" y2="440"/>
<line x1="311" y1="405" x2="218" y2="436"/>
<line x1="311" y1="405" x2="246" y2="420"/>
<line x1="311" y1="405" x2="250" y2="440"/>
<line x1="311" y1="405" x2="291" y2="434"/>
<line x1="311" y1="405" x2="301" y2="451"/>
<line x1="311" y1="405" x2="280" y2="456"/>
<line x1="311" y1="405" x2="172" y2="484"/>
<line x1="311" y1="405" x2="201" y2="457"/>
<line x1="311" y1="405" x2="236" y2="474"/>
<line x1="311" y1="405" x2="243" y2="465"/>
<line x1="311" y1="405" x2="260" y2="471"/>
<line x1="311" y1="405" x2="146" y2="507"/>
<line x1="311" y1="405" x2="186" y2="509"/>
<line x1="311" y1="405" x2="263" y2="507"/>
<line x1="311" y1="405" x2="130" y2="549"/>
<line x1="311" y1="405" x2="204" y2="541"/>
<line x1="311" y1="405" x2="243" y2="566"/>
<line x1="311" y1="405" x2="272" y2="542"/>
<line x1="311" y1="405" x2="275" y2="527"/>
<line x1="311" y1="405" x2="399" y2="451"/>
<line x1="311" y1="405" x2="425" y2="481"/>
<line x1="311" y1="405" x2="437" y2="457"/>
<line x1="311" y1="405" x2="444" y2="428"/>
<line x1="311" y1="405" x2="443" y2="408"/>
<line x1="311" y1="405" x2="429" y2="387"/>
<line x1="311" y1="405" x2="392" y2="347"/>
<line x1="311" y1="405" x2="440" y2="348"/>
<line x1="311" y1="405" x2="437" y2="369"/>
<line x1="335" y1="405" x2="70" y2="448"/>
<line x1="335" y1="405" x2="135" y2="444"/>
<line x1="335" y1="405" x2="186" y2="440"/>
<line x1="335" y1="405" x2="190" y2="421"/>
<line x1="335" y1="405" x2="218" y2="436"/>
<line x1="335" y1="405" x2="227" y2="412"/>
<line x1="335" y1="405" x2="258" y2="428"/>
<line x1="335" y1="405" x2="250" y2="440"/>
<line x1="335" y1="405" x2="301" y2="451"/>
<line x1="335" y1="405" x2="332" y2="457"/>
<line x1="335" y1="405" x2="280" y2="456"/>
<line x1="335" y1="405" x2="110" y2="472"/>
<line x1="335" y1="405" x2="140" y2="479"/>
<line x1="335" y1="405" x2="159" y2="477"/>
<line x1="335" y1="405" x2="167" y2="450"/>
<line x1="335" y1="405" x2="243" y2="465"/>
<line x1="335" y1="405" x2="291" y2="483"/>
<line x1="335" y1="405" x2="186" y2="509"/>
<line x1="335" y1="405" x2="229" y2="496"/>
<line x1="335" y1="405" x2="204" y2="541"/>
<line x1="335" y1="405" x2="272" y2="542"/>
<line x1="43" y1="440" x2="70" y2="448"/>
<line x1="43" y1="440" x2="105" y2="455"/>
<line x1="43" y1="440" x2="135" y2="444"/>
<line x1="43" y1="440" x2="218" y2="436"/>
<line x1="43" y1="440" x2="227" y2="412"/>
<line x1="43" y1="440" x2="250" y2="440"/>
<line x1="43" y1="440" x2="291" y2="434"/>
<line x1="43" y1="440" x2="301" y2="451"/>
<line x1="43" y1="440" x2="280" y2="456"/>
<line x1="43" y1="440" x2="159" y2="477"/>
<line x1="43" y1="440" x2="201" y2="457"/>
<line x1="43" y1="440" x2="209" y2="480"/>
<line x1="43" y1="440" x2="243" y2="465"/>
<line x1="43" y1="440" x2="186" y2="509"/>
<line x1="43" y1="440" x2="206" y2="510"/>
<line x1="43" y1="440" x2="229" y2="496"/>
<line x1="43" y1="440" x2="293" y2="519"/>
<line x1="43" y1="440" x2="243" y2="566"/>
<line x1="43" y1="440" x2="275" y2="527"/>
<line x1="70" y1="448" x2="105" y2="455"/>
<line x1="70" y1="448" x2="135" y2="444"/>
<line x1="70" y1="448" x2="218" y2="436"/>
<line x1="70" y1="448" x2="250" y2="440"/>
<line x1="70" y1="448" x2="291" y2="434"/>
<line x1="70" y1="448" x2="332" y2="457"/>
<line x1="70" y1="448" x2="280" y2="456"/>
<line x1="70" y1="448" x2="110" y2="472"/>
<line x1="70" y1="448" x2="140" y2="479"/>
<line x1="70" y1="448" x2="159" y2="477"/>
<line x1="70" y1="448" x2="172" y2="484"/>
<line x1="70" y1="448" x2="209" y2="480"/>
<line x1="70" y1="448" x2="291" y2="483"/>
<line x1="70" y1="448" x2="206" y2="510"/>
<line x1="70" y1="448" x2="293" y2="519"/>
<line x1="70" y1="448" x2="312" y2="504"/>
<line x1="70" y1="448" x2="130" y2="549"/>
<line x1="70" y1="448" x2="243" y2="566"/>
<line x1="70" y1="448" x2="275" y2="527"/>
<line x1="105" y1="455" x2="190" y2="421"/>
<line x1="105" y1="455" x2="218" y2="436"/>
<line x1="105" y1="455" x2="227" y2="412"/>
<line x1="105" y1="455" x2="315" y2="435"/>
<line x1="105" y1="455" x2="332" y2="457"/>
<line x1="105" y1="455" x2="280" y2="456"/>
<line x1="105" y1="455" x2="159" y2="477"/>
<line x1="105" y1="455" x2="167" y2="450"/>
<line x1="105" y1="455" x2="172" y2="484"/>
<line x1="105" y1="455" x2="201" y2="457"/>
<line x1="105" y1="455" x2="243" y2="465"/>
<line x1="105" y1="455" x2="260" y2="471"/>
<line x1="105" y1="455" x2="146" y2="507"/>
<line x1="105" y1="455" x2="229" y2="496"/>
<line x1="105" y1="455" x2="234" y2="510"/>
<line x1="105" y1="455" x2="263" y2="507"/>
<line x1="105" y1="455" x2="293" y2="519"/>
<line x1="105" y1="455" x2="312" y2="504"/>
<line x1="105" y1="455" x2="130" y2="549"/>
<line x1="105" y1="455" x2="204" y2="541"/>
<line x1="105" y1="455" x2="243" y2="566"/>
<line x1="105" y1="455" x2="272" y2="542"/>
<line x1="105" y1="455" x2="275" y2="527"/>
<line x1="135" y1="444" x2="190" y2="421"/>
<line x1="135" y1="444" x2="216" y2="420"/>
<line x1="135" y1="444" x2="246" y2="420"/>
<line x1="135" y1="444" x2="258" y2="428"/>
<line x1="135" y1="444" x2="291" y2="434"/>
<line x1="135" y1="444" x2="301" y2="451"/>
<line x1="135" y1="444" x2="332" y2="457"/>
<line x1="135" y1="444" x2="280" y2="456"/>
<line x1="135" y1="444" x2="172" y2="484"/>
<line x1="135" y1="444" x2="201" y2="457"/>
<line x1="135" y1="444" x2="236" y2="474"/>
<line x1="135" y1="444" x2="243" y2="465"/>
<line x1="135" y1="444" x2="260" y2="471"/>
<line x1="135" y1="444" x2="146" y2="507"/>
<line x1="135" y1="444" x2="186" y2="509"/>
<line x1="135" y1="444" x2="206" y2="510"/>
<line x1="135" y1="444" x2="263" y2="507"/>
<line x1="135" y1="444" x2="293" y2="519"/>
<line x1="135" y1="444" x2="130" y2="549"/>
<line x1="135" y1="444" x2="169" y2="556"/>
<line x1="186" y1="440" x2="190" y2="421"/>
<line x1="186" y1="440" x2="246" y2="420"/>
<line x1="186" y1="440" x2="258" y2="428"/>
<line x1="186" y1="440" x2="301" y2="451"/>
<line x1="186" y1="440" x2="332" y2="457"/>
<line x1="186" y1="440" x2="140" y2="479"/>
<line x1="186" y1="440" x2="167" y2="450"/>
<line x1="186" y1="440" x2="236" y2="474"/>
<line x1="186" y1="440" x2="291" y2="483"/>
<line x1="186" y1="440" x2="186" y2="509"/>
<line x1="186" y1="440" x2="206" y2="510"/>
<line x1="186" y1="440" x2="263" y2="507"/>
<line x1="186" y1="440" x2="293" y2="519"/>
<line x1="186" y1="440" x2="312" y2="504"/>
<line x1="186" y1="440" x2="130" y2="549"/>
<line x1="186" y1="440" x2="169" y2="556"/>
<line x1="186" y1="440" x2="204" y2="541"/>
<line x1="186" y1="440" x2="272" y2="542"/>
<line x1="186" y1="440" x2="275" y2="527"/>
<line x1="190" y1="421" x2="216" y2="420"/>
<line x1="190" y1="421" x2="258" y2="428"/>
<line x1="190" y1="421" x2="250" y2="440"/>
<line x1="190" y1="421" x2="315" y2="435"/>
<line x1="190" y1="421" x2="301" y2="451"/>
<line x1="190" y1="421" x2="110" y2="472"/>
<line x1="190" y1="421" x2="140" y2="479"/>
<line x1="190" y1="421" x2="159" y2="477"/>
<line x1="190" y1="421" x2="167" y2="450"/>
<line x1="190" y1="421" x2="201" y2="457"/>
<line x1="190" y1="421" x2="209" y2="480"/>
<line x1="190" y1="421" x2="260" y2="471"/>
<line x1="190" y1="421" x2="206" y2="510"/>
<line x1="190" y1="421" x2="234" y2="510"/>
<line x1="190" y1="421" x2="263" y2="507"/>
<line x1="190" y1="421" x2="293" y2="519"/>
<line x1="190" y1="421" x2="312" y2="504"/>
<line x1="190" y1="421" x2="130" y2="549"/>
<line x1="190" y1="421" x2="169" y2="556"/>
<line x1="190" y1="421" x2="243" y2="566"/>
<line x1="190" y1="421" x2="275" y2="527"/>
<line x1="216" y1="420" x2="218" y2="436"/>
<line x1="216" y1="420" x2="227" y2="412"/>
<line x1="216" y1="420" x2="246" y2="420"/>
<line x1="216" y1="420" x2="258" y2="428"/>
<line x1="216" y1="420" x2="250" y2="440"/>
<line x1="216" y1="420" x2="291" y2="434"/>
<line x1="216" y1="420" x2="315" y2="435"/>
<line x1="216" y1="420" x2="280" y2="456"/>
<line x1="216" y1="420" x2="110" y2="472"/>
<line x1="216" y1="420" x2="159" y2="477"/>
<line x1="216" y1="420" x2="167" y2="450"/>
<line x1="216" y1="420" x2="172" y2="484"/>
<line x1="216" y1="420" x2="209" y2="480"/>
<line x1="216" y1="420" x2="243" y2="465"/>
<line x1="216" y1="420" x2="291" y2="483"/>
<line x1="216" y1="420" x2="186" y2="509"/>
<line x1="216" y1="420" x2="229" y2="496"/>
<line x1="216" y1="420" x2="263" y2="507"/>
<line x1="216" y1="420" x2="293" y2="519"/>
<line x1="216" y1="420" x2="312" y2="504"/>
<line x1="216" y1="420" x2="130" y2="549"/>
<line x1="216" y1="420" x2="169" y2="556"/>
<line x1="216" y1="420" x2="204" y2="541"/>
<line x1="216" y1="420" x2="243" y2="566"/>
<line x1="218" y1="436" x2="227" y2="412"/>
<line x1="218" y1="436" x2="258" y2="428"/>
<line x1="218" y1="436" x2="250" y2="440"/>
<line x1="218" y1="436" x2="291" y2="434"/>
<line x1="218" y1="436" x2="315" y2="435"/>
<line x1="218" y1="436" x2="280" y2="456"/>
<line x1="218" y1="436" x2="159" y2="477"/>
<line x1="218" y1="436" x2="167" y2="450"/>
<line x1="218" y1="436" x2="172" y2="484"/>
<line x1="218" y1="436" x2="201" y2="457"/>
<line x1="218" y1="436" x2="209" y2="480"/>
<line x1="218" y1="436" x2="260" y2="471"/>
<line x1="218" y1="436" x2="229" y2="496"/>
<line x1="218" y1="436" x2="263" y2="507"/>
<line x1="218" y1="436" x2="169" y2="556"/>
<line x1="218" y1="436" x2="204" y2="541"/>
<line x1="227" y1="412" x2="315" y2="435"/>
<line x1="227" y1="412" x2="140" y2="479"/>
<line x1="227" y1="412" x2="159" y2="477"/>
<line x1="227" y1="412" x2="167" y2="450"/>
<line x1="227" y1="412" x2="201" y2="457"/>
<line x1="227" y1="412" x2="209" y2="480"/>
<line x1="227" y1="412" x2="243" y2="465"/>
<line x1="227" y1="412" x2="260" y2="471"/>
<line x1="227" y1="412" x2="186" y2="509"/>
<line x1="227" y1="412" x2="206" y2="510"/>
<line x1="227" y1="412" x2="263" y2="507"/>
<line x1="227" y1="412" x2="312" y2="504"/>
<line x1="227" y1="412" x2="130" y2="549"/>
<line x1="227" y1="412" x2="243" y2="566"/>
<line x1="227" y1="412" x2="272" y2="542"/>
<line x1="227" y1="412" x2="275" y2="527"/>
<line x1="246" y1="420" x2="258" y2="428"/>
<line x1="246" y1="420" x2="250" y2="440"/>
<line x1="246" y1="420" x2="291" y2="434"/>
<line x1="246" y1="420" x2="332" y2="457"/>
<line x1="246" y1="420" x2="110" y2="472"/>
<line x1="246" y1="420" x2="140" y2="479"/>
<line x1="246" y1="420" x2="167" y2="450"/>
<line x1="246" y1="420" x2="172" y2="484"/>
<line x1="246" y1="420" x2="146" y2="507"/>
<line x1="246" y1="420" x2="186" y2="509"/>
<line x1="246" y1="420" x2="229" y2="496"/>
<line x1="246" y1="420" x2="234" y2="510"/>
<line x1="246" y1="420" x2="130" y2="549"/>
<line x1="246" y1="420" x2="243" y2="566"/>
<line x1="246" y1="420" x2="272" y2="542"/>
<line x1="258" y1="428" x2="250" y2="440"/>
<line x1="258" y1="428" x2="315" y2="435"/>
<line x1="258" y1="428" x2="301" y2="451"/>
<line x1="258" y1="428" x2="110" y2="472"/>
<line x1="258" y1="428" x2="140" y2="479"/>
<line x1="258" y1="428" x2="167" y2="450"/>
<line x1="258" y1="428" x2="172" y2="484"/>
<line x1="258" y1="428" x2="236" y2="474"/>
<line x1="258" y1="428" x2="243" y2="465"/>
<line x1="258" y1="428" x2="260" y2="471"/>
<line x1="258" y1="428" x2="291" y2="483"/>
<line x1="258" y1="428" x2="186" y2="509"/>
<line x1="258" y1="428" x2="206" y2="510"/>
<line x1="258" y1="428" x2="229" y2="496"/>
<line x1="258" y1="428" x2="234" y2="510"/>
<line x1="258" y1="428" x2="293" y2="519"/>
<line x1="258" y1="428" x2="312" y2="504"/>
<line x1="258" y1="428" x2="169" y2="556"/>
<line x1="258" y1="428" x2="243" y2="566"/>
<line x1="258" y1="428" x2="272" y2="542"/>
<line x1="250" y1="440" x2="301" y2="451"/>
<line x1="250" y1="440" x2="332" y2="457"/>
<line x1="250" y1="440" x2="110" y2="472"/>
<line x1="250" y1="440" x2="172" y2="484"/>
<line x1="250" y1="440" x2="260" y2="471"/>
<line x1="250" y1="440" x2="146" y2="507"/>
<line x1="250" y1="440" x2="186" y2="509"/>
<line x1="250" y1="440" x2="206" y2="510"/>
<line x1="250" y1="440" x2="234" y2="510"/>
<line x1="250" y1="440" x2="263" y2="507"/>
<line x1="250" y1="440" x2="293" y2="519"/>
<line x1="250" y1="440" x2="130" y2="549"/>
<line x1="250" y1="440" x2="243" y2="566"/>
<line x1="291" y1="434" x2="301" y2="451"/>
<line x1="291" y1="434" x2="140" y2="479"/>
<line x1="291" y1="434" x2="159" y2="477"/>
<line x1="291" y1="434" x2="167" y2="450"/>
<line x1="291" y1="434" x2="236" y2="474"/>
<line x1="291" y1="434" x2="146" y2="507"/>
<line x1="291" y1="434" x2="186" y2="509"/>
<line x1="291" y1="434" x2="206" y2="510"/>
<line x1="291" y1="434" x2="293" y2="519"/>
<line x1="291" y1="434" x2="204" y2="541"/>
<line x1="291" y1="434" x2="272" y2="542"/>
<line x1="315" y1="435" x2="301" y2="451"/>
<line x1="315" y1="435" x2="332" y2="457"/>
<line x1="315" y1="435" x2="280" y2="456"/>
<line x1="315" y1="435" x2="110" y2="472"/>
<line x1="315" y1="435" x2="167" y2="450"/>
<line x1="315" y1="435" x2="172" y2="484"/>
<line x1="315" y1="435" x2="243" y2="465"/>
<line x1="315" y1="435" x2="146" y2="507"/>
<line x1="315" y1="435" x2="229" y2="496"/>
<line x1="315" y1="435" x2="234" y2="510"/>
<line x1="315" y1="435" x2="293" y2="519"/>
<line x1="315" y1="435" x2="312" y2="504"/>
<line x1="315" y1="435" x2="169" y2="556"/>
<line x1="315" y1="435" x2="204" y2="541"/>
<line x1="315" y1="435" x2="243" y2="566"/>
<line x1="315" y1="435" x2="272" y2="542"/>
<line x1="315" y1="435" x2="275" y2="527"/>
<line x1="315" y1="435" x2="399" y2="451"/>
<line x1="301" y1="451" x2="332" y2="457"/>
<line x1="301" y1="451" x2="280" y2="456"/>
<line x1="301" y1="451" x2="167" y2="450"/>
<line x1="301" y1="451" x2="172" y2="484"/>
<line x1="301" y1="451" x2="260" y2="471"/>
<line x1="301" y1="451" x2="146" y2="507"/>
<line x1="301" y1="451" x2="186" y2="509"/>
<line x1="301" y1="451" x2="234" y2="510"/>
<line x1="301" y1="451" x2="130" y2="549"/>
<line x1="301" y1="451" x2="272" y2="542"/>
<line x1="332" y1="457" x2="280" y2="456"/>
<line x1="332" y1="457" x2="140" y2="479"/>
<line x1="332" y1="457" x2="167" y2="450"/>
<line x1="332" y1="457" x2="201" y2="457"/>
<line x1="332" y1="457" x2="209" y2="480"/>
<line x1="332" y1="457" x2="260" y2="471"/>
<line x1="332" y1="457" x2="291" y2="483"/>
<line x1="332" y1="457" x2="146" y2="507"/>
<line x1="332" y1="457" x2="206" y2="510"/>
<line x1="332" y1="457" x2="234" y2="510"/>
<line x1="332" y1="457" x2="293" y2="519"/>
<line x1="332" y1="457" x2="130" y2="549"/>
<line x1="332" y1="457" x2="169" y2="556"/>
<line x1="332" y1="457" x2="204" y2="541"/>
<line x1="332" y1="457" x2="243" y2="566"/>
<line x1="332" y1="457" x2="272" y2="542"/>
<line x1="280" y1="456" x2="140" y2="479"/>
<line x1="280" y1="456" x2="159" y2="477"/>
<line x1="280" y1="456" x2="172" y2="484"/>
<line x1="280" y1="456" x2="209" y2="480"/>
<line x1="280" y1="456" x2="236" y2="474"/>
<line x1="280" y1="456" x2="243" y2="465"/>
<line x1="280" y1="456" x2="291" y2="483"/>
<line x1="280" y1="456" x2="146" y2="507"/>
<line x1="280" y1="456" x2="130" y2="549"/>
<line x1="280" y1="456" x2="272" y2="542"/>
<line x1="280" y1="456" x2="275" y2="527"/>
<line x1="110" y1="472" x2="140" y2="479"/>
<line x1="110" y1="472" x2="159" y2="477"/>
<line x1="110" y1="472" x2="167" y2="450"/>
<line x1="110" y1="472" x2="172" y2="484"/>
<line x1="110" y1="472" x2="201" y2="457"/>
<line x1="110" y1="472" x2="260" y2="471"/>
<line x1="110" y1="472" x2="291" y2="483"/>
<line x1="110" y1="472" x2="146" y2="507"/>
<line x1="110" y1="472" x2="229" y2="496"/>
<line x1="110" y1="472" x2="234" y2="510"/>
<line x1="110" y1="472" x2="263" y2="507"/>
<line x1="110" y1="472" x2="94" y2="563"/>
<line x1="110" y1="472" x2="169" y2="556"/>
<line x1="110" y1="472" x2="204" y2="541"/>
<line x1="140" y1="479" x2="167" y2="450"/>
<line x1="140" y1="479" x2="236" y2="474"/>
<line x1="140" y1="479" x2="243" y2="465"/>
<line x1="140" y1="479" x2="146" y2="507"/>
<line x1="140" y1="479" x2="186" y2="509"/>
<line x1="140" y1="479" x2="206" y2="510"/>
<line x1="140" y1="479" x2="234" y2="510"/>
<line x1="140" y1="479" x2="263" y2="507"/>
<line x1="140" y1="479" x2="293" y2="519"/>
<line x1="140" y1="479" x2="312" y2="504"/>
<line x1="140" y1="479" x2="169" y2="556"/>
<line x1="140" y1="479" x2="204" y2="541"/>
<line x1="140" y1="479" x2="243" y2="566"/>
<line x1="140" y1="479" x2="272" y2="542"/>
<line x1="159" y1="477" x2="172" y2="484"/>
<line x1="159" y1="477" x2="209" y2="480"/>
<line x1="159" y1="477" x2="236" y2="474"/>
<line x1="159" y1="477" x2="243" y2="465"/>
<line x1="159" y1="477" x2="234" y2="510"/>
<line x1="159" y1="477" x2="263" y2="507"/>
<line x1="159" y1="477" x2="204" y2="541"/>
<line x1="159" y1="477" x2="243" y2="566"/>
<line x1="167" y1="450" x2="172" y2="484"/>
<line x1="167" y1="450" x2="236" y2="474"/>
<line x1="167" y1="450" x2="243" y2="465"/>
<line x1="167" y1="450" x2="260" y2="471"/>
<line x1="167" y1="450" x2="186" y2="509"/>
<line x1="167" y1="450" x2="206" y2="510"/>
<line x1="167" y1="450" x2="263" y2="507"/>
<line x1="167" y1="450" x2="312" y2="504"/>
<line x1="167" y1="450" x2="130" y2="549"/>
<line x1="167" y1="450" x2="169" y2="556"/>
<line x1="167" y1="450" x2="275" y2="527"/>
<line x1="172" y1="484" x2="243" y2="465"/>
<line x1="172" y1="484" x2="260" y2="471"/>
<line x1="172" y1="484" x2="291" y2="483"/>
<line x1="172" y1="484" x2="186" y2="509"/>
<line x1="172" y1="484" x2="206" y2="510"/>
<line x1="172" y1="484" x2="293" y2="519"/>
<line x1="172" y1="484" x2="130" y2="549"/>
<line x1="172" y1="484" x2="169" y2="556"/>
<line x1="172" y1="484" x2="243" y2="566"/>
<line x1="172" y1="484" x2="272" y2="542"/>
<line x1="172" y1="484" x2="275" y2="527"/>
<line x1="201" y1="457" x2="146" y2="507"/>
<line x1="201" y1="457" x2="206" y2="510"/>
<line x1="201" y1="457" x2="229" y2="496"/>
<line x1="201" y1="457" x2="263" y2="507"/>
<line x1="201" y1="457" x2="293" y2="519"/>
<line x1="201" y1="457" x2="169" y2="556"/>
<line x1="201" y1="457" x2="204" y2="541"/>
<line x1="209" y1="480" x2="236" y2="474"/>
<line x1="209" y1="480" x2="260" y2="471"/>
<line x1="209" y1="480" x2="291" y2="483"/>
<line x1="209" y1="480" x2="146" y2="507"/>
<line x1="209" y1="480" x2="229" y2="496"/>
<line x1="209" y1="480" x2="234" y2="510"/>
<line x1="209" y1="480" x2="293" y2="519"/>
<line x1="209" y1="480" x2="243" y2="566"/>
<line x1="209" y1="480" x2="275" y2="527"/>
<line x1="236" y1="474" x2="260" y2="471"/>
<line x1="236" y1="474" x2="146" y2="507"/>
<line x1="236" y1="474" x2="186" y2="509"/>
<line x1="236" y1="474" x2="206" y2="510"/>
<line x1="236" y1="474" x2="229" y2="496"/>
<line x1="236" y1="474" x2="263" y2="507"/>
<line x1="236" y1="474" x2="293" y2="519"/>
<line x1="236" y1="474" x2="204" y2="541"/>
<line x1="236" y1="474" x2="272" y2="542"/>
<line x1="243" y1="465" x2="291" y2="483"/>
<line x1="243" y1="465" x2="206" y2="510"/>
<line x1="243" y1="465" x2="229" y2="496"/>
<line x1="243" y1="465" x2="263" y2="507"/>
<line x1="243" y1="465" x2="293" y2="519"/>
<line x1="243" y1="465" x2="312" y2="504"/>
<line x1="243" y1="465" x2="243" y2="566"/>
<line x1="243" y1="465" x2="272" y2="542"/>
<line x1="243" y1="465" x2="275" y2="527"/>
<line x1="260" y1="471" x2="291" y2="483"/>
<line x1="260" y1="471" x2="186" y2="509"/>
<line x1="260" y1="471" x2="206" y2="510"/>
<line x1="260" y1="471" x2="263" y2="507"/>
<line x1="260" y1="471" x2="130" y2="549"/>
<line x1="260" y1="471" x2="272" y2="542"/>
<line x1="260" y1="471" x2="275" y2="527"/>
<line x1="291" y1="483" x2="146" y2="507"/>
<line x1="291" y1="483" x2="186" y2="509"/>
<line x1="291" y1="483" x2="206" y2="510"/>
<line x1="291" y1="483" x2="229" y2="496"/>
<line x1="291" y1="483" x2="234" y2="510"/>
<line x1="291" y1="483" x2="293" y2="519"/>
<line x1="291" y1="483" x2="130" y2="549"/>
<line x1="291" y1="483" x2="204" y2="541"/>
<line x1="291" y1="483" x2="243" y2="566"/>
<line x1="291" y1="483" x2="272" y2="542"/>
<line x1="291" y1="483" x2="275" y2="527"/>
<line x1="39" y1="500" x2="206" y2="510"/>
<line x1="146" y1="507" x2="186" y2="509"/>
<line x1="146" y1="507" x2="206" y2="510"/>
<line x1="146" y1="507" x2="263" y2="507"/>
<line x1="146" y1="507" x2="293" y2="519"/>
<line x1="146" y1="507" x2="130" y2="549"/>
<line x1="146" y1="507" x2="169" y2="556"/>
<line x1="146" y1="507" x2="204" y2="541"/>
<line x1="146" y1="507" x2="243" y2="566"/>
<line x1="186" y1="509" x2="263" y2="507"/>
<line x1="186" y1="509" x2="293" y2="519"/>
<line x1="186" y1="509" x2="130" y2="549"/>
<line x1="186" y1="509" x2="169" y2="556"/>
<line x1="186" y1="509" x2="204" y2="541"/>
<line x1="186" y1="509" x2="272" y2="542"/>
<line x1="206" y1="510" x2="229" y2="496"/>
<line x1="206" y1="510" x2="293" y2="519"/>
<line x1="206" y1="510" x2="130" y2="549"/>
<line x1="206" y1="510" x2="169" y2="556"/>
<line x1="206" y1="510" x2="243" y2="566"/>
<line x1="229" y1="496" x2="263" y2="507"/>
<line x1="229" y1="496" x2="312" y2="504"/>
<line x1="229" y1="496" x2="130" y2="549"/>
<line x1="229" y1="496" x2="243" y2="566"/>
<line x1="229" y1="496" x2="162" y2="598"/>
<line x1="229" y1="496" x2="272" y2="542"/>
<line x1="234" y1="510" x2="312" y2="504"/>
<line x1="234" y1="510" x2="272" y2="542"/>
<line x1="263" y1="507" x2="293" y2="519"/>
<line x1="263" y1="507" x2="312" y2="504"/>
<line x1="263" y1="507" x2="130" y2="549"/>
<line x1="263" y1="507" x2="272" y2="542"/>
<line x1="263" y1="507" x2="275" y2="527"/>
<line x1="263" y1="507" x2="263" y2="605"/>
<line x1="293" y1="519" x2="312" y2="504"/>
<line x1="293" y1="519" x2="204" y2="541"/>
<line x1="293" y1="519" x2="243" y2="566"/>
<line x1="293" y1="519" x2="275" y2="527"/>
<line x1="312" y1="504" x2="130" y2="549"/>
<line x1="312" y1="504" x2="169" y2="556"/>
<line x1="45" y1="531" x2="142" y2="576"/>
<line x1="45" y1="531" x2="204" y2="541"/>
<line x1="45" y1="531" x2="272" y2="542"/>
<line x1="73" y1="532" x2="243" y2="566"/>
<line x1="73" y1="532" x2="275" y2="527"/>
<line x1="130" y1="549" x2="169" y2="556"/>
<line x1="130" y1="549" x2="204" y2="541"/>
<line x1="130" y1="549" x2="272" y2="542"/>
<line x1="130" y1="549" x2="275" y2="527"/>
<line x1="142" y1="576" x2="243" y2="566"/>
<line x1="169" y1="556" x2="204" y2="541"/>
<line x1="169" y1="556" x2="243" y2="566"/>
<line x1="169" y1="556" x2="272" y2="542"/>
<line x1="204" y1="541" x2="275" y2="527"/>
<line x1="162" y1="598" x2="272" y2="542"/>
<line x1="272" y1="542" x2="275" y2="527"/>
<line x1="357" y1="283" x2="272" y2="357"/>
<line x1="263" y1="605" x2="146" y2="507"/>
<line x1="263" y1="605" x2="209" y2="719"/>
<line x1="263" y1="605" x2="257" y2="716"/>
<line x1="263" y1="605" x2="308" y2="707"/>
<line x1="263" y1="605" x2="357" y2="687"/>
<line x1="209" y1="719" x2="257" y2="716"/>
<line x1="209" y1="719" x2="328" y2="783"/>
<line x1="257" y1="716" x2="308" y2="707"/>
<line x1="257" y1="716" x2="357" y2="687"/>
<line x1="308" y1="707" x2="357" y2="687"/>
<line x1="427" y1="753" x2="451" y2="743"/>
<line x1="427" y1="753" x2="484" y2="741"/>
<line x1="427" y1="753" x2="479" y2="697"/>
<line x1="427" y1="753" x2="525" y2="719"/>
<line x1="427" y1="753" x2="514" y2="672"/>
<line x1="427" y1="753" x2="555" y2="683"/>
<line x1="427" y1="753" x2="563" y2="647"/>
<line x1="451" y1="743" x2="484" y2="741"/>
<line x1="451" y1="743" x2="479" y2="697"/>
<line x1="451" y1="743" x2="525" y2="719"/>
<line x1="451" y1="743" x2="514" y2="672"/>
<line x1="451" y1="743" x2="555" y2="683"/>
<line x1="451" y1="743" x2="563" y2="647"/>
<line x1="484" y1="741" x2="479" y2="697"/>
<line x1="484" y1="741" x2="525" y2="719"/>
<line x1="484" y1="741" x2="514" y2="672"/>
<line x1="484" y1="741" x2="555" y2="683"/>
<line x1="484" y1="741" x2="563" y2="647"/>
<line x1="479" y1="697" x2="525" y2="719"/>
<line x1="479" y1="697" x2="514" y2="672"/>
<line x1="479" y1="697" x2="555" y2="683"/>
<line x1="479" y1="697" x2="563" y2="647"/>
<line x1="525" y1="719" x2="514" y2="672"/>
<line x1="525" y1="719" x2="555" y2="683"/>
<line x1="525" y1="719" x2="563" y2="647"/>
<line x1="514" y1="672" x2="555" y2="683"/>
<line x1="514" y1="672" x2="563" y2="647"/>
<line x1="555" y1="683" x2="563" y2="647"/>
<line x1="399" y1="451" x2="425" y2="481"/>
<line x1="399" y1="451" x2="437" y2="457"/>
<line x1="399" y1="451" x2="444" y2="428"/>
<line x1="399" y1="451" x2="443" y2="408"/>
<line x1="399" y1="451" x2="429" y2="387"/>
<line x1="399" y1="451" x2="424" y2="326"/>
<line x1="399" y1="451" x2="440" y2="348"/>
<line x1="399" y1="451" x2="437" y2="369"/>
<line x1="399" y1="451" x2="508" y2="329"/>
<line x1="399" y1="451" x2="513" y2="362"/>
<line x1="399" y1="451" x2="516" y2="386"/>
<line x1="399" y1="451" x2="516" y2="416"/>
<line x1="399" y1="451" x2="511" y2="443"/>
<line x1="399" y1="451" x2="502" y2="483"/>
<line x1="399" y1="451" x2="571" y2="439"/>
<line x1="399" y1="451" x2="570" y2="362"/>
<line x1="425" y1="481" x2="437" y2="457"/>
<line x1="425" y1="481" x2="444" y2="428"/>
<line x1="425" y1="481" x2="443" y2="408"/>
<line x1="425" y1="481" x2="429" y2="387"/>
<line x1="425" y1="481" x2="392" y2="347"/>
<line x1="425" y1="481" x2="424" y2="326"/>
<line x1="425" y1="481" x2="440" y2="348"/>
<line x1="425" y1="481" x2="437" y2="369"/>
<line x1="425" y1="481" x2="508" y2="329"/>
<line x1="425" y1="481" x2="513" y2="362"/>
<line x1="425" y1="481" x2="516" y2="386"/>
<line x1="425" y1="481" x2="516" y2="416"/>
<line x1="425" y1="481" x2="511" y2="443"/>
<line x1="425" y1="481" x2="502" y2="483"/>
<line x1="425" y1="481" x2="571" y2="439"/>
<line x1="425" y1="481" x2="570" y2="362"/>
<line x1="437" y1="457" x2="444" y2="428"/>
<line x1="437" y1="457" x2="443" y2="408"/>
<line x1="437" y1="457" x2="429" y2="387"/>
<line x1="437" y1="457" x2="392" y2="347"/>
<line x1="437" y1="457" x2="424" y2="326"/>
<line x1="437" y1="457" x2="440" y2="348"/>
<line x1="437" y1="457" x2="437" y2="369"/>
<line x1="437" y1="457" x2="508" y2="329"/>
<line x1="437" y1="457" x2="513" y2="362"/>
<line x1="437" y1="457" x2="516" y2="386"/>
<line x1="437" y1="457" x2="516" y2="416"/>
<line x1="437" y1="457" x2="511" y2="443"/>
<line x1="437" y1="457" x2="502" y2="483"/>
<line x1="437" y1="457" x2="571" y2="439"/>
<line x1="437" y1="457" x2="570" y2="362"/>
<line x1="444" y1="428" x2="443" y2="408"/>
<line x1="444" y1="428" x2="429" y2="387"/>
<line x1="444" y1="428" x2="392" y2="347"/>
<line x1="444" y1="428" x2="424" y2="326"/>
<line x1="444" y1="428" x2="440" y2="348"/>
<line x1="444" y1="428" x2="437" y2="369"/>
<line x1="444" y1="428" x2="508" y2="329"/>
<line x1="444" y1="428" x2="513" y2="362"/>
<line x1="444" y1="428" x2="516" y2="386"/>
<line x1="444" y1="428" x2="516" y2="416"/>
<line x1="444" y1="428" x2="511" y2="443"/>
<line x1="444" y1="428" x2="502" y2="483"/>
<line x1="444" y1="428" x2="571" y2="439"/>
<line x1="444" y1="428" x2="570" y2="362"/>
<line x1="443" y1="408" x2="429" y2="387"/>
<line x1="443" y1="408" x2="392" y2="347"/>
<line x1="443" y1="408" x2="424" y2="326"/>
<line x1="443" y1="408" x2="440" y2="348"/>
<line x1="443" y1="408" x2="437" y2="369"/>
<line x1="443" y1="408" x2="508" y2="329"/>
<line x1="443" y1="408" x2="513" y2="362"/>
<line x1="443" y1="408" x2="516" y2="386"/>
<line x1="443" y1="408" x2="516" y2="416"/>
<line x1="443" y1="408" x2="511" y2="443"/>
<line x1="443" y1="408" x2="502" y2="483"/>
<line x1="443" y1="408" x2="571" y2="439"/>
<line x1="443" y1="408" x2="570" y2="362"/>
<line x1="429" y1="387" x2="392" y2="347"/>
<line x1="429" y1="387" x2="424" y2="326"/>
<line x1="429" y1="387" x2="440" y2="348"/>
<line x1="429" y1="387" x2="437" y2="369"/>
<line x1="429" y1="387" x2="508" y2="329"/>
<line x1="429" y1="387" x2="513" y2="362"/>
<line x1="429" y1="387" x2="516" y2="386"/>
<line x1="429" y1="387" x2="516" y2="416"/>
<line x1="429" y1="387" x2="511" y2="443"/>
<line x1="429" y1="387" x2="502" y2="483"/>
<line x1="429" y1="387" x2="571" y2="439"/>
<line x1="429" y1="387" x2="570" y2="362"/>
<line x1="392" y1="347" x2="424" y2="326"/>
<line x1="392" y1="347" x2="440" y2="348"/>
<line x1="392" y1="347" x2="437" y2="369"/>
<line x1="392" y1="347" x2="508" y2="329"/>
<line x1="392" y1="347" x2="513" y2="362"/>
<line x1="392" y1="347" x2="516" y2="386"/>
<line x1="392" y1="347" x2="516" y2="416"/>
<line x1="392" y1="347" x2="511" y2="443"/>
<line x1="392" y1="347" x2="502" y2="483"/>
<line x1="392" y1="347" x2="571" y2="439"/>
<line x1="392" y1="347" x2="570" y2="362"/>
<line x1="424" y1="326" x2="440" y2="348"/>
<line x1="424" y1="326" x2="437" y2="369"/>
<line x1="424" y1="326" x2="508" y2="329"/>
<line x1="424" y1="326" x2="513" y2="362"/>
<line x1="424" y1="326" x2="516" y2="386"/>
<line x1="424" y1="326" x2="516" y2="416"/>
<line x1="424" y1="326" x2="511" y2="443"/>
<line x1="424" y1="326" x2="502" y2="483"/>
<line x1="424" y1="326" x2="571" y2="439"/>
<line x1="424" y1="326" x2="570" y2="362"/>
<line x1="424" y1="326" x2="475" y2="233"/>
<line x1="440" y1="348" x2="437" y2="369"/>
<line x1="440" y1="348" x2="508" y2="329"/>
<line x1="440" y1="348" x2="513" y2="362"/>
<line x1="440" y1="348" x2="516" y2="386"/>
<line x1="440" y1="348" x2="516" y2="416"/>
<line x1="440" y1="348" x2="511" y2="443"/>
<line x1="440" y1="348" x2="502" y2="483"/>
<line x1="440" y1="348" x2="571" y2="439"/>
<line x1="440" y1="348" x2="570" y2="362"/>
<line x1="437" y1="369" x2="508" y2="329"/>
<line x1="437" y1="369" x2="513" y2="362"/>
<line x1="437" y1="369" x2="516" y2="386"/>
<line x1="437" y1="369" x2="516" y2="416"/>
<line x1="437" y1="369" x2="511" y2="443"/>
<line x1="437" y1="369" x2="502" y2="483"/>
<line x1="437" y1="369" x2="571" y2="439"/>
<line x1="437" y1="369" x2="570" y2="362"/>
<line x1="508" y1="329" x2="513" y2="362"/>
<line x1="508" y1="329" x2="516" y2="386"/>
<line x1="508" y1="329" x2="516" y2="416"/>
<line x1="508" y1="329" x2="511" y2="443"/>
<line x1="508" y1="329" x2="502" y2="483"/>
<line x1="508" y1="329" x2="571" y2="439"/>
<line x1="508" y1="329" x2="570" y2="362"/>
<line x1="513" y1="362" x2="516" y2="386"/>
<line x1="513" y1="362" x2="516" y2="416"/>
<line x1="513" y1="362" x2="511" y2="443"/>
<line x1="513" y1="362" x2="502" y2="483"/>
<line x1="513" y1="362" x2="571" y2="439"/>
<line x1="513" y1="362" x2="570" y2="362"/>
<line x1="516" y1="386" x2="516" y2="416"/>
<line x1="516" y1="386" x2="511" y2="443"/>
<line x1="516" y1="386" x2="502" y2="483"/>
<line x1="516" y1="386" x2="571" y2="439"/>
<line x1="516" y1="386" x2="570" y2="362"/>
<line x1="516" y1="416" x2="511" y2="443"/>
<line x1="516" y1="416" x2="502" y2="483"/>
<line x1="516" y1="416" x2="571" y2="439"/>
<line x1="516" y1="416" x2="570" y2="362"/>
<line x1="511" y1="443" x2="502" y2="483"/>
<line x1="511" y1="443" x2="571" y2="439"/>
<line x1="511" y1="443" x2="570" y2="362"/>
<line x1="502" y1="483" x2="571" y2="439"/>
<line x1="502" y1="483" x2="570" y2="362"/>
<line x1="571" y1="439" x2="570" y2="362"/>
<line x1="475" y1="233" x2="486" y2="126"/>
<line x1="475" y1="233" x2="519" y2="154"/>
<line x1="475" y1="233" x2="544" y2="176"/>
<line x1="475" y1="233" x2="583" y2="204"/>
<line x1="475" y1="233" x2="606" y2="228"/>
<line x1="475" y1="233" x2="580" y2="186"/>
<line x1="475" y1="233" x2="592" y2="142"/>
<line x1="475" y1="233" x2="564" y2="117"/>
<line x1="475" y1="233" x2="531" y2="100"/>
<line x1="475" y1="233" x2="490" y2="82"/>
<line x1="486" y1="126" x2="519" y2="154"/>
<line x1="486" y1="126" x2="544" y2="176"/>
<line x1="486" y1="126" x2="583" y2="204"/>
<line x1="486" y1="126" x2="606" y2="228"/>
<line x1="486" y1="126" x2="580" y2="186"/>
<line x1="486" y1="126" x2="592" y2="142"/>
<line x1="486" y1="126" x2="564" y2="117"/>
<line x1="486" y1="126" x2="531" y2="100"/>
<line x1="486" y1="126" x2="490" y2="82"/>
<line x1="519" y1="154" x2="544" y2="176"/>
<line x1="519" y1="154" x2="583" y2="204"/>
<line x1="519" y1="154" x2="606" y2="228"/>
<line x1="519" y1="154" x2="580" y2="186"/>
<line x1="519" y1="154" x2="592" y2="142"/>
<line x1="519" y1="154" x2="564" y2="117"/>
<line x1="519" y1="154" x2="531" y2="100"/>
<line x1="519" y1="154" x2="490" y2="82"/>
<line x1="544" y1="176" x2="583" y2="204"/>
<line x1="544" y1="176" x2="606" y2="228"/>
<line x1="544" y1="176" x2="580" y2="186"/>
<line x1="544" y1="176" x2="592" y2="142"/>
<line x1="544" y1="176" x2="564" y2="117"/>
<line x1="544" y1="176" x2="531" y2="100"/>
<line x1="544" y1="176" x2="490" y2="82"/>
<line x1="583" y1="204" x2="606" y2="228"/>
<line x1="583" y1="204" x2="580" y2="186"/>
<line x1="583" y1="204" x2="592" y2="142"/>
<line x1="583" y1="204" x2="564" y2="117"/>
<line x1="583" y1="204" x2="531" y2="100"/>
<line x1="583" y1="204" x2="490" y2="82"/>
<line x1="606" y1="228" x2="580" y2="186"/>
<line x1="606" y1="228" x2="592" y2="142"/>
<line x1="606" y1="228" x2="564" y2="117"/>
<line x1="606" y1="228" x2="531" y2="100"/>
<line x1="606" y1="228" x2="490" y2="82"/>
<line x1="580" y1="186" x2="592" y2="142"/>
<line x1="580" y1="186" x2="564" y2="117"/>
<line x1="580" y1="186" x2="531" y2="100"/>
<line x1="580" y1="186" x2="490" y2="82"/>
<line x1="592" y1="142" x2="564" y2="117"/>
<line x1="592" y1="142" x2="531" y2="100"/>
<line x1="592" y1="142" x2="490" y2="82"/>
<line x1="564" y1="117" x2="531" y2="100"/>
<line x1="564" y1="117" x2="490" y2="82"/>
<line x1="531" y1="100" x2="490" y2="82"/>
<line x1="667" y1="450" x2="670" y2="414"/>
<line x1="667" y1="450" x2="667" y2="340"/>
<line x1="670" y1="414" x2="672" y2="374"/>
<line x1="672" y1="374" x2="667" y2="340"/>
<line x1="667" y1="340" x2="651" y2="279"/>
<line x1="372" y1="28" x2="301" y2="15"/>
</g>
<g stroke="white" stroke-width="0.5" stroke-opacity="0.8" fill="black">
<circle cx="174" cy="88" r="4"/>
<circle cx="240" cy="87" r="4"/>
<circle cx="207" cy="171" r="4"/>
<circle cx="162" cy="196" r="4"/>
<circle cx="198" cy="195" r="4"/>
<circle cx="241" cy="195" r="4"/>
<circle cx="128" cy="221" r="4"/>
<circle cx="301" cy="192" r="4"/>
<circle cx="155" cy="224" r="4"/>
<circle cx="241" cy="226" r="4"/>
<circle cx="72" cy="232" r="4"/>
<circle cx="207" cy="251" r="4"/>
<circle cx="269" cy="253" r="4"/>
<circle cx="88" cy="267" r="4"/>
<circle cx="118" cy="270" r="4"/>
<circle cx="174" cy="277" r="4"/>
<circle cx="189" cy="290" r="4"/>
<circle cx="215" cy="290" r="4"/>
<circle cx="288" cy="282" r="4"/>
<circle cx="55" cy="303" r="4"/>
<circle cx="305" cy="300" r="4"/>
<circle cx="90" cy="298" r="4"/>
<circle cx="107" cy="337" r="4"/>
<circle cx="154" cy="334" r="4"/>
<circle cx="193" cy="322" r="4"/>
<circle cx="219" cy="322" r="4"/>
<circle cx="240" cy="327" r="4"/>
<circle cx="269" cy="329" r="4"/>
<circle cx="61" cy="316" r="4"/>
<circle cx="49" cy="342" r="4"/>
<circle cx="106" cy="355" r="4"/>
<circle cx="149" cy="361" r="4"/>
<circle cx="195" cy="347" r="4"/>
<circle cx="243" cy="350" r="4"/>
<circle cx="272" cy="357" r="4"/>
<circle cx="301" cy="346" r="4"/>
<circle cx="20" cy="390" r="4"/>
<circle cx="50" cy="382" r="4"/>
<circle cx="75" cy="383" r="4"/>
<circle cx="117" cy="376" r="4"/>
<circle cx="137" cy="382" r="4"/>
<circle cx="175" cy="373" r="4"/>
<circle cx="197" cy="369" r="4"/>
<circle cx="218" cy="374" r="4"/>
<circle cx="240" cy="374" r="4"/>
<circle cx="282" cy="381" r="4"/>
<circle cx="315" cy="381" r="4"/>
<circle cx="13" cy="430" r="4"/>
<circle cx="103" cy="415" r="4"/>
<circle cx="116" cy="410" r="4"/>
<circle cx="129" cy="400" r="4"/>
<circle cx="142" cy="424" r="4"/>
<circle cx="163" cy="413" r="4"/>
<circle cx="191" cy="398" r="4"/>
<circle cx="269" cy="397" r="4"/>
<circle cx="311" cy="405" r="4"/>
<circle cx="335" cy="405" r="4"/>
<circle cx="43" cy="440" r="4"/>
<circle cx="70" cy="448" r="4"/>
<circle cx="105" cy="455" r="4"/>
<circle cx="135" cy="444" r="4"/>
<circle cx="186" cy="440" r="4"/>
<circle cx="190" cy="421" r="4"/>
<circle cx="216" cy="420" r="4"/>
<circle cx="218" cy="436" r="4"/>
<circle cx="227" cy="412" r="4"/>
<circle cx="246" cy="420" r="4"/>
<circle cx="258" cy="428" r="4"/>
<circle cx="250" cy="440" r="4"/>
<circle cx="291" cy="434" r="4"/>
<circle cx="315" cy="435" r="4"/>
<circle cx="301" cy="451" r="4"/>
<circle cx="332" cy="457" r="4"/>
<circle cx="280" cy="456" r="4"/>
<circle cx="110" cy="472" r="4"/>
<circle cx="140" cy="479" r="4"/>
<circle cx="159" cy="477" r="4"/>
<circle cx="167" cy="450" r="4"/>
<circle cx="172" cy="484" r="4"/>
<circle cx="201" cy="457" r="4"/>
<circle cx="209" cy="480" r="4"/>
<circle cx="236" cy="474" r="4"/>
<circle cx="243" cy="465" r="4"/>
<circle cx="260" cy="471" r="4"/>
<circle cx="291" cy="483" r="4"/>
<circle cx="39" cy="500" r="4"/>
<circle cx="146" cy="507" r="4"/>
<circle cx="186" cy="509" r="4"/>
<circle cx="206" cy="510" r="4"/>
<circle cx="229" cy="496" r="4"/>
<circle cx="234" cy="510" r="4"/>
<circle cx="263" cy="507" r="4"/>
<circle cx="293" cy="519" r="4"/>
<circle cx="312" cy="504" r="4"/>
<circle cx="45" cy="531" r="4"/>
<circle cx="73" cy="532" r="4"/>
<circle cx="94" cy="563" r="4"/>
<circle cx="130" cy="549" r="4"/>
<circle cx="142" cy="576" r="4"/>
<circle cx="169" cy="556" r="4"/>
<circle cx="204" cy="541" r="4"/>
<circle cx="243" cy="566" r="4"/>
<circle cx="162" cy="598" r="4"/>
<circle cx="272" cy="542" r="4"/>
<circle cx="275" cy="527" r="4"/>
<circle cx="357" cy="283" r="4"/>
<circle cx="263" cy="605" r="4"/>
<circle cx="209" cy="719" r="4"/>
<circle cx="257" cy="716" r="4"/>
<circle cx="308" cy="707" r="4"/>
<circle cx="357" cy="687" r="4"/>
<circle cx="328" cy="783" r="4"/>
<circle cx="307" cy="790" r="4"/>
<circle cx="427" cy="753" r="4"/>
<circle cx="451" cy="743" r="4"/>
<circle cx="484" cy="741" r="4"/>
<circle cx="479" cy="697" r="4"/>
<circle cx="525" cy="719" r="4"/>
<circle cx="514" cy="672" r="4"/>
<circle cx="555" cy="683" r="4"/>
<circle cx="563" cy="647" r="4"/>
<circle cx="399" cy="451" r="4"/>
<circle cx="425" cy="481" r="4"/>
<circle cx="437" cy="457" r="4"/>
<circle cx="444" cy="428" r="4"/>
<circle cx="443" cy="408" r="4"/>
<circle cx="429" cy="387" r="4"/>
<circle cx="392" cy="347" r="4"/>
<circle cx="424" cy="326" r="4"/>
<circle cx="440" cy="348" r="4"/>
<circle cx="437" cy="369" r="4"/>
<circle cx="508" cy="329" r="4"/>
<circle cx="513" cy="362" r="4"/>
<circle cx="516" cy="386" r="4"/>
<circle cx="516" cy="416" r="4"/>
<circle cx="511" cy="443" r="4"/>
<circle cx="502" cy="483" r="4"/>
<circle cx="571" cy="439" r="4"/>
<circle cx="570" cy="362" r="4"/>
<circle cx="475" cy="233" r="4"/>
<circle cx="486" cy="126" r="4"/>
<circle cx="519" cy="154" r="4"/>
<circle cx="544" cy="176" r="4"/>
<circle cx="583" cy="204" r="4"/>
<circle cx="606" cy="228" r="4"/>
<circle cx="580" cy="186" r="4"/>
<circle cx="592" cy="142" r="4"/>
<circle cx="564" cy="117" r="4"/>
<circle cx="531" cy="100" r="4"/>
<circle cx="490" cy="82" r="4"/>
<circle cx="595" cy="618" r="4"/>
<circle cx="611" cy="598" r="4"/>
<circle cx="632" cy="560" r="4"/>
<circle cx="643" cy="535" r="4"/>
<circle cx="656" cy="501" r="4"/>
<circle cx="667" cy="450" r="4"/>
<circle cx="670" cy="414" r="4"/>
<circle cx="672" cy="374" r="4"/>
<circle cx="667" cy="340" r="4"/>
<circle cx="651" cy="279" r="4"/>
<circle cx="424" cy="48" r="4"/>
<circle cx="393" cy="36" r="4"/>
<circle cx="372" cy="28" r="4"/>
<circle cx="301" cy="15" r="4"/>
<circle cx="224" cy="393" r="4" fill="yellow"/>
</g>
</svg>
\ No newline at end of file
<?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="877.8725"
height="238.06184"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="Stack.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
version="1.0">
<defs
id="defs4">
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path3595"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
<inkscape:perspective
id="perspective2390"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 526.18109 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective2397"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 526.18109 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
gridtolerance="10000"
guidetolerance="10"
objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="82.441629"
inkscape:cy="51.169001"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:window-width="944"
inkscape:window-height="334"
inkscape:window-x="14"
inkscape:window-y="732"
inkscape:snap-bbox="true"
inkscape:object-paths="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid2396"
visible="true"
enabled="false"
originx="-10.936806"
originy="-30.969077" />
</sodipodi:namedview>
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-22.931711,-813.82583)">
<g
id="g5578"
transform="translate(-23.246306,-18.180276)">
<path
id="rect2392"
d="M 61.055945,1044.6512 H 196.05595 v 24.6667 H 61.055945 Z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="M 61.055945,1019.9845 H 196.05595 v 24.6667 H 61.055945 Z"
id="path3165"
inkscape:connector-curvature="0" />
<path
id="path3167"
d="M 61.055945,994.98453 H 196.05595 v 24.66667 H 61.055945 Z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<text
id="text3169"
y="1039.6512"
x="46.568642"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1039.6512"
x="46.568642"
id="tspan3171"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">1</tspan></text>
<text
id="text3173"
y="1014.6512"
x="46.055946"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1014.6512"
x="46.055946"
id="tspan3175"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">2</tspan></text>
<text
id="text3177"
y="989.52429"
x="45.855751"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="989.52429"
x="45.855751"
id="tspan3179"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">3</tspan></text>
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="M 61.055945,969.98453 H 196.05595 v 24.66672 H 61.055945 Z"
id="path2403"
inkscape:connector-curvature="0" />
<path
id="path2405"
d="M 61.055945,944.98453 H 196.05595 v 24.66672 H 61.055945 Z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="46.178017"
y="964.62195"
id="text2407"><tspan
sodipodi:role="line"
id="tspan2409"
x="46.178017"
y="964.62195"
style="font-size:20px;line-height:1.25">4</tspan><tspan
id="tspan2415"
sodipodi:role="line"
x="46.178017"
y="989.62195"
style="font-size:20px;line-height:1.25"> </tspan></text>
<text
id="text2411"
y="1064.1959"
x="45.885048"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1064.1959"
x="45.885048"
id="tspan2413"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">0</tspan></text>
<path
id="path2544"
d="m 242.8671,1044.6512 h 135 v 24.6667 h -135 z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 242.8671,1019.9845 h 135 v 24.6667 h -135 z"
id="path2546"
inkscape:connector-curvature="0" />
<path
id="path2548"
d="m 242.8671,994.98453 h 135 v 24.66667 h -135 z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<text
id="text2550"
y="1039.6512"
x="228.37979"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1039.6512"
x="228.37979"
id="tspan2552"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">1</tspan></text>
<text
id="text2554"
y="1014.6512"
x="227.8671"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1014.6512"
x="227.8671"
id="tspan2556"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">2</tspan></text>
<text
id="text2558"
y="989.52429"
x="227.6669"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="989.52429"
x="227.6669"
id="tspan2560"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">3</tspan></text>
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 242.8671,969.98453 h 135 v 24.66672 h -135 z"
id="path2562"
inkscape:connector-curvature="0" />
<path
id="path2564"
d="m 242.86711,944.98453 h 135 v 24.66672 h -135 z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="227.98917"
y="964.62195"
id="text2566"><tspan
sodipodi:role="line"
id="tspan2568"
x="227.98917"
y="964.62195"
style="font-size:20px;line-height:1.25">4</tspan><tspan
id="tspan2570"
sodipodi:role="line"
x="227.98917"
y="989.62195"
style="font-size:20px;line-height:1.25"> </tspan></text>
<text
id="text2572"
y="1064.1959"
x="227.6962"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1064.1959"
x="227.6962"
id="tspan2574"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">0</tspan></text>
<path
id="path2580"
d="m 424.67822,1044.6512 h 135 v 24.6667 h -135 z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 424.67822,1019.9845 h 135 v 24.6667 h -135 z"
id="path2582"
inkscape:connector-curvature="0" />
<path
id="path2584"
d="m 424.67822,994.98453 h 135 v 24.66667 h -135 z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<text
id="text2586"
y="1039.6512"
x="410.19092"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1039.6512"
x="410.19092"
id="tspan2588"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">1</tspan></text>
<text
id="text2590"
y="1014.6512"
x="409.67822"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1014.6512"
x="409.67822"
id="tspan2592"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">2</tspan></text>
<text
id="text2594"
y="989.52429"
x="409.47803"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="989.52429"
x="409.47803"
id="tspan2596"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">3</tspan></text>
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 424.67822,969.98453 h 135 v 24.66672 h -135 z"
id="path2598"
inkscape:connector-curvature="0" />
<path
id="path2600"
d="m 424.67822,944.98453 h 135 v 24.66672 h -135 z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="409.80029"
y="964.62195"
id="text2602"><tspan
sodipodi:role="line"
id="tspan2604"
x="409.80029"
y="964.62195"
style="font-size:20px;line-height:1.25">4</tspan><tspan
id="tspan2606"
sodipodi:role="line"
x="409.80029"
y="989.62195"
style="font-size:20px;line-height:1.25"> </tspan></text>
<text
id="text2608"
y="1064.1959"
x="409.50732"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1064.1959"
x="409.50732"
id="tspan2610"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">0</tspan></text>
<path
id="path2616"
d="m 606.48937,1044.6512 h 135 v 24.6667 h -135 z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 606.48937,1019.9845 h 135 v 24.6667 h -135 z"
id="path2618"
inkscape:connector-curvature="0" />
<path
id="path2620"
d="m 606.48937,994.98453 h 135 v 24.66667 h -135 z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<text
id="text2622"
y="1039.6512"
x="592.00208"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1039.6512"
x="592.00208"
id="tspan2624"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">1</tspan></text>
<text
id="text2626"
y="1014.6512"
x="591.48938"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1014.6512"
x="591.48938"
id="tspan2628"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">2</tspan></text>
<text
id="text2630"
y="989.52429"
x="591.28918"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="989.52429"
x="591.28918"
id="tspan2632"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">3</tspan></text>
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 606.48937,969.98453 h 135 v 24.66672 h -135 z"
id="path2634"
inkscape:connector-curvature="0" />
<path
id="path2636"
d="m 606.48937,944.98453 h 135 v 24.66672 h -135 z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="591.61145"
y="964.62195"
id="text2638"><tspan
sodipodi:role="line"
id="tspan2640"
x="591.61145"
y="964.62195"
style="font-size:20px;line-height:1.25">4</tspan><tspan
id="tspan2642"
sodipodi:role="line"
x="591.61145"
y="989.62195"
style="font-size:20px;line-height:1.25"> </tspan></text>
<text
id="text2644"
y="1064.1959"
x="591.31848"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1064.1959"
x="591.31848"
id="tspan2646"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">0</tspan></text>
<g
transform="translate(769.3005,38.058349)"
id="g2650">
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 19,1006.5929 h 135 v 24.6667 H 19 Z"
id="path2652"
inkscape:connector-curvature="0" />
<path
id="path2654"
d="m 19,981.92618 h 135 v 24.66672 H 19 Z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="M 19,956.92618 H 154 V 981.5929 H 19 Z"
id="path2656"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="4.5126953"
y="1001.5929"
id="text2658"><tspan
sodipodi:role="line"
id="tspan2660"
x="4.5126953"
y="1001.5929"
style="font-size:20px;line-height:1.25">1</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="4"
y="976.5929"
id="text2662"><tspan
sodipodi:role="line"
id="tspan2664"
x="4"
y="976.5929"
style="font-size:20px;line-height:1.25">2</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="3.7998047"
y="951.46594"
id="text2666"><tspan
sodipodi:role="line"
id="tspan2668"
x="3.7998047"
y="951.46594"
style="font-size:20px;line-height:1.25">3</tspan></text>
<path
id="path2670"
d="M 19,931.92618 H 154 V 956.5929 H 19 Z"
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
style="display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="M 19,906.92618 H 154 V 931.5929 H 19 Z"
id="path2672"
inkscape:connector-curvature="0" />
<text
id="text2674"
y="926.5636"
x="4.1220703"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="926.5636"
x="4.1220703"
id="tspan2676"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">4</tspan><tspan
y="951.5636"
x="4.1220703"
sodipodi:role="line"
id="tspan2678"
style="font-size:20px;line-height:1.25"> </tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="3.8291016"
y="1026.1376"
id="text2680"><tspan
sodipodi:role="line"
id="tspan2682"
x="3.8291016"
y="1026.1376"
style="font-size:20px;line-height:1.25">0</tspan></text>
</g>
<text
id="text2684"
y="1064.1427"
x="303.69717"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1064.1427"
x="303.69717"
id="tspan2686"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">A</tspan></text>
<text
id="text2688"
y="1039.4761"
x="485.30811"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1039.4761"
x="485.30811"
id="tspan2690"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">B</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="485.5083"
y="1064.1427"
id="text2763"><tspan
sodipodi:role="line"
id="tspan2765"
x="485.5083"
y="1064.1427"
style="font-size:20px;line-height:1.25">A</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="121.88602"
y="846.32251"
id="text2816"><tspan
sodipodi:role="line"
id="tspan2818"
x="121.88602"
y="846.32251"
style="font-size:20px;line-height:1.25">A</tspan></text>
<g
transform="translate(-110.82003,-12.8571)"
id="g5458">
<g
id="g5454">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:none"
d="m 239.37598,930.5929 v -45"
id="path4887"
sodipodi:nodetypes="cs"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="ccc"
transform="translate(4.3759766,771.5929)"
id="path5452"
d="m 230,149 5,10 5,-10"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="303.49698"
y="846.32251"
id="text5496"><tspan
sodipodi:role="line"
id="tspan5498"
x="303.49698"
y="846.32251"
style="font-size:20px;line-height:1.25">B</tspan></text>
<g
id="g5500"
transform="translate(70.991133,-12.8571)">
<g
id="g5502">
<path
sodipodi:nodetypes="cs"
id="path5504"
d="m 239.37598,930.5929 v -45"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:none"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 230,149 5,10 5,-10"
id="path5506"
transform="translate(4.3759766,771.5929)"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0" />
</g>
</g>
<text
id="text5508"
y="846.32251"
x="485.30811"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="846.32251"
x="485.30811"
id="tspan5510"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">B</tspan></text>
<g
transform="matrix(1,0,0,-1,252.80224,1803.3287)"
id="g5512">
<g
id="g5514">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:none"
d="m 239.37598,930.5929 v -45"
id="path5516"
sodipodi:nodetypes="cs"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="ccc"
transform="translate(4.3759766,771.5929)"
id="path5518"
d="m 230,149 5,10 5,-10"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
</g>
<text
id="text5520"
y="1064.1427"
x="485.5083"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
y="1064.1427"
x="485.5083"
id="tspan5522"
sodipodi:role="line"
style="font-size:20px;line-height:1.25">A</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="667.31946"
y="1064.1427"
id="text5558"><tspan
sodipodi:role="line"
id="tspan5560"
x="667.31946"
y="1064.1427"
style="font-size:20px;line-height:1.25">A</tspan></text>
<g
id="g5566"
transform="matrix(1,0,0,-1,434.61339,1803.3287)">
<g
id="g5568">
<path
sodipodi:nodetypes="cs"
id="path5570"
d="m 239.37598,930.5929 v -45"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:none"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 230,149 5,10 5,-10"
id="path5572"
transform="translate(4.3759766,771.5929)"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:Arial;-inkscape-font-specification:Arial;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="667.31946"
y="846.32251"
id="text5574"><tspan
sodipodi:role="line"
id="tspan5576"
x="667.31946"
y="846.32251"
style="font-size:20px;line-height:1.25">A</tspan></text>
</g>
</g>
</svg>
slides_2022/figs/arbre1.png

20.3 KiB

slides_2022/figs/arbre2.png

20.9 KiB