Skip to content
Snippets Groups Projects
Commit 5a9a79c4 authored by Robin VAN DE MERGHEL's avatar Robin VAN DE MERGHEL :computer:
Browse files

New Manim project (demineur)

parent 925be4d7
No related branches found
No related tags found
No related merge requests found
Showing
with 1909 additions and 0 deletions
File added
from manim import *
import random
# On met la seed
random.seed(0)
class Explication(MovingCameraScene):
def construct(self):
# On va faire une animation sur des listes doublement chaînées :
# On veut représenter un démineur
# On a une grille de 10x10 cases
# Chaque case est reliée à ses voisines doublement (nord, sud, est, ouest, nord-est, nord-ouest, sud-est, sud-ouest)
# Chaque case peut être vide, contenir un mine, ou contenir un nombre
# On va représenter les cases par des carrés, et les mines par des cercles
# On va représenter les nombres par des textes
# On met un titre "L'algorithme du démineur"
title = Text("L'algorithme du démineur")
self.play(Write(title))
# On attend 3s
self.wait(7)
# On efface le titre
self.play(FadeOut(title))
MINE_PERCENTAGE = 0.4
GRID_SIZE = 10
CELL_SIZE = 0.5
CELL_PADDING = 0.1
CELL_COLOR = WHITE
MINE_COLOR = RED
NUMBER_COLOR = BLACK
# On va générer la grille pour pouvoir la manipuler
grid = []
for i in range(GRID_SIZE):
grid.append([])
for j in range(GRID_SIZE):
grid[i].append({
"type": "empty", # Type a pour valeur "empty", "mine" ou "number"
"neighbors": 0 # Nombre de voisins
})
# On va générer les mines
for i in range(GRID_SIZE):
for j in range(GRID_SIZE):
if random.random() < MINE_PERCENTAGE:
grid[i][j]["type"] = "mine"
for i in range(GRID_SIZE):
for j in range(GRID_SIZE):
if grid[i][j]["type"] == "mine":
for x in range(-1, 2):
for y in range(-1, 2):
if i + x >= 0 and i + x < GRID_SIZE and j + y >= 0 and j + y < GRID_SIZE:
grid[i + x][j + y]["neighbors"] += 1
# On va dessiner la grille, les mines, et les nombres, l'animation au total doit durer 3s
# La grille va s'afficher instantanément, les mines et les nombres vont apparaître progressivement
# On va créer un groupe pour la grille
grid_group = VGroup()
# On va créer un groupe pour les mines
mines_group = VGroup()
# On va créer un groupe pour les nombres
numbers_group = VGroup()
# On va créer un groupe pour tout
all_group = VGroup()
# On va tout créer au centre de l'écran
for i in range(GRID_SIZE):
for j in range(GRID_SIZE):
# On va créer la case
cell = Square(side_length=CELL_SIZE, color=CELL_COLOR)
# On va la positionner
cell.move_to([i * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
j * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2, 0])
# On va l'ajouter au groupe de la grille
grid_group.add(cell)
# On va créer la mine
if grid[i][j]["type"] == "mine":
mine = Circle(radius=CELL_SIZE / 2 -
CELL_PADDING, color=MINE_COLOR)
# On va la positionner
mine.move_to([i * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
j * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2, 0])
# On va l'ajouter au groupe des mines
mines_group.add(mine)
# On va créer le nombre
if grid[i][j]["type"] == "number":
number = Text(
str(grid[i][j]["neighbors"]), color=NUMBER_COLOR)
# On va le positionner
number.move_to([i * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
j * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2, 0])
# On va l'ajouter au groupe des nombres
numbers_group.add(number)
# On va ajouter les groupes à all_group
all_group.add(grid_group)
all_group.add(mines_group)
all_group.add(numbers_group)
# On va faire apparaître la grille
self.play(Write(grid_group))
# On va faire apparaître les mines
self.play(Write(mines_group))
# On va faire apparaître les nombres
self.play(Write(numbers_group))
# On attend 2s
self.wait(2)
# On zoom sur la case du milieu, on centre bien la case
self.play(self.camera.frame.animate.scale(1/3).move_to(
grid_group[GRID_SIZE * GRID_SIZE // 2 + GRID_SIZE // 2]))
# On colorie la case du milieu en bleu (on la remplie)
self.play(grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2].animate.set_fill(BLUE, opacity=.5))
self.wait(4)
# On fait un groupe pour les voisines
neighbors_group = VGroup()
# On colorie ses voisines en vert (on les remplies) sauf celle du milieu
for x in range(-1, 2):
for y in range(-1, 2):
if x != 0 or y != 0:
neighbors_group.add(
grid_group[GRID_SIZE * GRID_SIZE // 2 + GRID_SIZE // 2 + x + y * GRID_SIZE])
self.play(neighbors_group.animate.set_fill(GREEN, opacity=.5))
self.wait(6)
# On fait des flèches pour les voisines
neighbors_arrows = VGroup()
for x in range(-1, 2):
for y in range(-1, 2):
if x != 0 or y != 0:
arrow = Arrow(
grid_group[GRID_SIZE * GRID_SIZE //
2 + GRID_SIZE // 2].get_center(),
grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2 + x + y * GRID_SIZE].get_center(),
buff=0,
color=RED
)
neighbors_arrows.add(arrow)
self.play(Write(neighbors_arrows))
self.wait(10)
# On déplace la caméra de CELL_SIZE vers le bas
self.play(self.camera.frame.animate.move_to(
[CELL_SIZE/2, -CELL_SIZE/2, 0]))
# On colorie la case du bas en bleu (on la remplie)
self.play(grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2 - 1].animate.set_fill(PURPLE, opacity=.5))
self.wait(4)
# On enlève les flèches
self.play(FadeOut(neighbors_arrows))
self.wait(.5)
# On ajoute une flèche pour la case du bas vers la case du milieu
arrow = Arrow(
grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2 - 1].get_center(),
grid_group[GRID_SIZE * GRID_SIZE //
2 + GRID_SIZE // 2].get_center(),
buff=0,
color=RED
)
self.play(Write(arrow))
self.wait(8)
# On enlève la flèche
self.play(FadeOut(arrow))
# On déplace la caméra de CELL_SIZE vers le haut
self.play(self.camera.frame.animate.move_to(
[CELL_SIZE/2, CELL_SIZE/2, 0]))
# On colorie les cases autour de la case du milieu en jaune (on les remplies)
self.play(neighbors_group.animate.set_fill(YELLOW, opacity=.5))
# On fait des flèches qui partent des voisines vers la case du milieu
neighbors_arrows = VGroup()
for x in range(-1, 2):
for y in range(-1, 2):
if x != 0 or y != 0:
arrow = Arrow(
grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2 + x + y * GRID_SIZE].get_center(),
grid_group[GRID_SIZE * GRID_SIZE //
2 + GRID_SIZE // 2].get_center(),
buff=0,
color=RED
)
neighbors_arrows.add(arrow)
self.play(Write(neighbors_arrows))
self.wait(6)
# On enlève les flèches
self.play(FadeOut(neighbors_arrows))
self.wait(4)
# On va :
# Pour chaque voisine, faire une flèche du milieu vers la voisine
# Puis incrémenter le nombre de voisines QUI CONTIENNENT UNE BOMBE et afficher le nouveau nombre dans la cellule du milieu
n = 0
# On affiche le nombre de voisines de la case du milieu
number = Text(
str(n), color=WHITE)
# On va le positionner
number.move_to([CELL_SIZE/2, CELL_SIZE/2, 10])
# Réduire sa taille
number.scale(1/2)
# On l'ajoute au groupe des nombres
numbers_group.add(number)
# On fait apparaître le nombre en noir
self.play(Write(number))
self.wait(3)
arrowGroup = VGroup()
for x in range(-1, 2):
for y in range(-1, 2):
if x != 0 or y != 0:
# On fait une flèche du milieu vers la voisine
arrow = Arrow(
grid_group[GRID_SIZE * GRID_SIZE //
2 + GRID_SIZE // 2].get_center(),
grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2 + x + y * GRID_SIZE].get_center(),
buff=0,
color=RED
)
arrowGroup.add(arrow)
self.play(Write(arrow), run_time=.15)
# Si la case actuelle contient une bombe, on utilise le grid[x][y]["type"] == "mine" pour vérifier
# On doit calculer la position de la case actuelle dans le tableau à partir de la position de la case du milieu
cellX = GRID_SIZE // 2 + x
cellY = GRID_SIZE // 2 + y
if grid[cellX][cellY]["type"] == "mine":
self.play(FadeOut(number))
# On incrémente le nombre de voisines qui contiennent une bombe
n += 1
# On affiche le nouveau nombre de voisines de la case du milieu
number = Text(
str(n), color=WHITE)
# On va le positionner
number.move_to([CELL_SIZE/2, CELL_SIZE/2, 10])
# Réduire sa taille
number.scale(1/2)
# On l'ajoute au groupe des nombres
numbers_group.add(number)
# On fait apparaître le nombre en noir
self.play(Write(number))
self.wait(5)
# On enlève les flèches
self.play(FadeOut(arrowGroup))
# On enlève le nombre
self.play(FadeOut(number))
self.wait(1)
# On dézoom et on déplace la caméra en 00
self.play(self.camera.frame.animate.scale(
1/CELL_SIZE).move_to([0, 0, 0]))
self.wait(3)
# On va faire apparaître les nombres de voisines de chaque case
neighbors_numbers = VGroup()
for x in range(GRID_SIZE):
for y in range(GRID_SIZE):
if (grid[x][y]["type"] == "mine"):
continue
# On affiche le nombre de voisines de la case du milieu
number = Text(
str(grid[x][y]["neighbors"]), color=WHITE)
# On va le positionner
number.move_to([x * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
y * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2, 0])
# Réduire sa taille
number.scale(1/2)
# On fait apparaître le nombre en noir
neighbors_numbers.add(number)
self.play(Write(neighbors_numbers))
self.wait(8)
# On enlève les nombres et on enlève les cases et les cercles
self.play(FadeOut(neighbors_numbers), FadeOut(grid_group),
FadeOut(mines_group), FadeOut(numbers_group))
# On fait du texte avec écrit "Génération de la grille"
text = Text("Génération de la grille", color=WHITE)
# On le positionne
text.move_to([0, 0, 0])
# On l'affiche
self.play(Write(text))
self.wait(7)
# On enlève le texte
self.play(FadeOut(text))
# On fait apparaître une cellule en haut à gauche
cell = Square(
side_length=CELL_SIZE,
color=WHITE,
fill_color=WHITE,
fill_opacity=0
)
# On la positionne
cell.move_to([-GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
GRID_SIZE * CELL_SIZE / 2 - CELL_SIZE / 2, 0])
# On l'affiche
self.play(Write(cell))
self.wait(.4)
# On zoom sur la cellule
self.play(self.camera.frame.animate.scale(CELL_SIZE).move_to([-GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
GRID_SIZE * CELL_SIZE / 2 - CELL_SIZE / 2, 0]))
# On ajoute des flèches orientées
arrows = VGroup()
for x in range(-1, 2):
for y in range(-1, 2):
if x != 0 or y != 0:
arrow = Arrow(
cell.get_center(),
cell.get_center() + [x * CELL_SIZE, y * CELL_SIZE, 0],
buff=0,
color=RED
)
arrows.add(arrow)
self.play(Write(arrows))
self.wait(8)
# On ne garde que les flèches orientées vers la droite, le bas, et bas droite
for arrow in arrows:
if arrow.get_end()[0] < cell.get_center()[0] or arrow.get_end()[1] > cell.get_center()[1]:
self.play(FadeOut(arrow), run_time=.1)
self.wait(4)
# On ajoute une cellule à droite de la première
cell2 = Square(
side_length=CELL_SIZE,
color=WHITE,
fill_color=WHITE,
fill_opacity=0
)
# On la positionne avec un écart de CELL_SIZE
cell2.move_to([-GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2,
GRID_SIZE * CELL_SIZE / 2 - CELL_SIZE / 2, 0])
# On l'affiche
self.play(Write(cell2))
self.wait(.4)
# On ajoute une flèche orientée en bleu depuis la cellule de droite vers la cellule de gauche
arrow = Arrow(
cell2.get_center(),
cell.get_right(),
buff=0,
color=BLUE
)
self.play(Write(arrow))
self.wait(5)
# On enlève la flèche
self.play(FadeOut(arrow))
# On rajoute une cellule encore plus à droite
cell3 = Square(
side_length=CELL_SIZE,
color=WHITE,
fill_color=WHITE,
fill_opacity=0
)
# On la positionne avec un écart de CELL_SIZE
cell3.move_to([-GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2,
GRID_SIZE * CELL_SIZE / 2 - CELL_SIZE / 2, 0])
# On l'affiche
self.play(Write(cell3))
# On ajoute une flèche orientée en bleu depuis la cellule 3 vers la cellule 2
arrow = Arrow(
cell3.get_center(),
cell2.get_right(),
buff=0,
color=BLUE
)
self.play(Write(arrow))
self.wait(5)
# On enlève la flèche
self.play(FadeOut(arrow))
# On rajoute trois petits points pour indiquer qu'il y a des cellules après
dots = Text("...", color=WHITE)
# On les positionne
dots.move_to([-GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2,
GRID_SIZE * CELL_SIZE / 2 - CELL_SIZE / 2, 0])
# On les affiche
self.play(Write(dots))
self.wait(4)
# On dézoom légèrement
self.play(self.camera.frame.animate.scale(1/CELL_SIZE).move_to([-GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
GRID_SIZE * CELL_SIZE / 2 - CELL_SIZE / 2, 0]))
self.wait(6)
# On rajoute une cellule en bas à gauche
cell4 = Square(
side_length=CELL_SIZE,
color=WHITE,
fill_color=WHITE,
fill_opacity=0
)
# On la positionne avec un écart de CELL_SIZE
cell4.move_to([-GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
GRID_SIZE * CELL_SIZE / 2 - CELL_SIZE / 2 - CELL_SIZE - CELL_SIZE / 2, 0])
# On l'affiche
self.play(Write(cell4))
self.wait(.4)
# On ajoute une flèche orientée en bleu depuis la cellule 4 vers la cellule 1
arrow = Arrow(
cell4.get_center(),
cell.get_center(),
buff=0,
color=BLUE
)
self.play(Write(arrow))
self.wait(4)
# On enlève la flèche
self.play(FadeOut(arrow))
# On rajoute une flèche orientée en bleu depuis la cellule 4 vers la cellule 2
arrow = Arrow(
cell4.get_center(),
cell2.get_center(),
buff=0,
color=BLUE
)
self.play(Write(arrow))
self.wait(4)
# On enlève la flèche
self.play(FadeOut(arrow))
# On rajoute une flèche orientée en bleu depuis la cellule 2 vers la cellule 4
arrow = Arrow(
cell2.get_center(),
cell4.get_center(),
buff=0,
color=ORANGE
)
self.play(Write(arrow))
self.wait(3)
# On enlève la flèche
self.play(FadeOut(arrow))
# On ajoute une cellule en bas à droite
cell5 = Square(
side_length=CELL_SIZE,
color=WHITE,
fill_color=WHITE,
fill_opacity=0
)
# On la positionne avec un écart de CELL_SIZE
cell5.move_to([-GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2,
GRID_SIZE * CELL_SIZE / 2 - CELL_SIZE / 2 - CELL_SIZE - CELL_SIZE / 2, 0])
# On l'affiche
self.play(Write(cell5))
self.wait(.2)
# On ajoute une flèche orientée en bleu depuis la cellule 5 vers la cellule 1
arrow = Arrow(
cell5.get_center(),
cell.get_center(),
buff=0,
color=BLUE
)
self.play(Write(arrow))
self.wait(.2)
# On enlève la flèche
self.play(FadeOut(arrow))
# On ajoute une flèche orientée en bleu depuis la cellule 5 vers la cellule 2
arrow = Arrow(
cell5.get_center(),
cell2.get_center(),
buff=0,
color=BLUE
)
self.play(Write(arrow))
self.wait(.2)
# On enlève la flèche
self.play(FadeOut(arrow))
# On ajoute une flèche orientée en bleu depuis la cellule 5 vers la cellule 3
arrow = Arrow(
cell5.get_center(),
cell3.get_center(),
buff=0,
color=BLUE
)
self.play(Write(arrow))
self.wait(.2)
# On enlève la flèche
self.play(FadeOut(arrow))
# On ajoute une flèche orientée en bleu depuis la cellule 5 vers la cellule 4
arrow = Arrow(
cell5.get_center(),
cell4.get_center(),
buff=0,
color=BLUE
)
self.play(Write(arrow))
self.wait(.2)
# On enlève la flèche
self.play(FadeOut(arrow))
# On ajoute une flèche orientée en bleu depuis la cellule 3 vers la cellule 5
arrow = Arrow(
cell3.get_center(),
cell5.get_center(),
buff=0,
color=ORANGE
)
self.play(Write(arrow))
self.wait(.2)
# On enlève la flèche
self.play(FadeOut(arrow))
# On ajoute une flèche orientée en bleu depuis la cellule 2 vers la cellule 5
arrow = Arrow(
cell2.get_center(),
cell5.get_center(),
buff=0,
color=ORANGE
)
self.play(Write(arrow))
self.wait(.2)
# On enlève la flèche
self.play(FadeOut(arrow))
# On ajoute une flèche orientée en bleu depuis la cellule 4 vers la cellule 5
arrow = Arrow(
cell4.get_center(),
cell5.get_center(),
buff=0,
color=ORANGE
)
self.play(Write(arrow))
# On rajoute trois petits points pour indiquer qu'il y a des cellules après
dots2 = Text("...", color=WHITE)
# On les positionne
dots2.move_to([-GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2,
GRID_SIZE * CELL_SIZE / 2 - CELL_SIZE / 2 - CELL_SIZE - CELL_SIZE / 2, 0])
# On les affiche
self.play(Write(dots2))
# On affiche le texte "Et ainsi de suite..."
text = Text("Et ainsi de suite...", color=WHITE)
# On le positionne
text.move_to([-GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2 + CELL_SIZE + CELL_SIZE / 2,
GRID_SIZE * CELL_SIZE / 2 - CELL_SIZE / 2 - CELL_SIZE - CELL_SIZE / 2 - CELL_SIZE - CELL_SIZE / 2, 0])
# On l'affiche
self.play(Write(text))
self.wait(5)
# On enlève les petits points
self.play(FadeOut(dots), FadeOut(dots2), FadeOut(cell), FadeOut(
cell2), FadeOut(cell3), FadeOut(cell4), FadeOut(cell5), FadeOut(arrow), FadeOut(arrows), FadeOut(text))
self.wait(1)
# On affiche "En cas de question me contacter Discord @UnSavantFou#2534"
text = Text("En cas de question me contacter", color=WHITE)
# On réduit la taille du texte
text.scale(0.5)
# On le positionne au centre
text.move_to([0, 0, 0])
# On centre le texte (pour que le texte soit centré par rapport à la position)
text.center()
# On l'affiche
self.play(Write(text))
self.wait(9)
# On enlève le texte
self.play(FadeOut(text))
self.wait(7)
\ No newline at end of file
from manim import *
import random
# On met la seed
random.seed(0)
class Explication(MovingCameraScene):
def construct(self):
# On va faire une animation sur des listes doublement chaînées :
# On veut représenter un démineur
# On a une grille de 10x10 cases
# Chaque case est reliée à ses voisines doublement (nord, sud, est, ouest, nord-est, nord-ouest, sud-est, sud-ouest)
# Chaque case peut être vide, contenir un mine, ou contenir un nombre
# On va représenter les cases par des carrés, et les mines par des cercles
# On va représenter les nombres par des textes
# On met un titre "L'algorithme du démineur"
title = Text("L'algorithme du démineur")
self.play(Write(title))
# On attend 3s
self.wait(7)
# On efface le titre
self.play(FadeOut(title))
MINE_PERCENTAGE = 0.2
GRID_SIZE = 10
CELL_SIZE = 0.5
CELL_PADDING = 0.1
CELL_COLOR = WHITE
MINE_COLOR = RED
NUMBER_COLOR = BLACK
# On va générer la grille pour pouvoir la manipuler
grid = []
for i in range(GRID_SIZE):
grid.append([])
for j in range(GRID_SIZE):
grid[i].append({
"type": "empty", # Type a pour valeur "empty", "mine" ou "number"
"neighbors": 0 # Nombre de voisins
})
# On va générer les mines
for i in range(GRID_SIZE):
for j in range(GRID_SIZE):
if random.random() < MINE_PERCENTAGE:
grid[i][j]["type"] = "mine"
for i in range(GRID_SIZE):
for j in range(GRID_SIZE):
if grid[i][j]["type"] == "mine":
for x in range(-1, 2):
for y in range(-1, 2):
if i + x >= 0 and i + x < GRID_SIZE and j + y >= 0 and j + y < GRID_SIZE:
grid[i + x][j + y]["neighbors"] += 1
# On va dessiner la grille, les mines, et les nombres, l'animation au total doit durer 3s
# La grille va s'afficher instantanément, les mines et les nombres vont apparaître progressivement
# On va créer un groupe pour la grille
grid_group = VGroup()
# On va créer un groupe pour les mines
mines_group = VGroup()
# On va créer un groupe pour les nombres
numbers_group = VGroup()
# On va créer un groupe pour tout
all_group = VGroup()
# On va tout créer au centre de l'écran
for i in range(GRID_SIZE):
for j in range(GRID_SIZE):
# On va créer la case
cell = Square(side_length=CELL_SIZE, color=CELL_COLOR)
# On va la positionner
cell.move_to([i * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
j * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2, 0])
# On va l'ajouter au groupe de la grille
grid_group.add(cell)
# On va créer la mine
if grid[i][j]["type"] == "mine":
mine = Circle(radius=CELL_SIZE / 2 -
CELL_PADDING, color=MINE_COLOR)
# On va la positionner
mine.move_to([i * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
j * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2, 0])
# On va l'ajouter au groupe des mines
mines_group.add(mine)
# On va créer le nombre
if grid[i][j]["type"] == "number":
number = Text(
str(grid[i][j]["neighbors"]), color=NUMBER_COLOR)
# On va le positionner
number.move_to([i * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2,
j * CELL_SIZE - GRID_SIZE * CELL_SIZE / 2 + CELL_SIZE / 2, 0])
# On va l'ajouter au groupe des nombres
numbers_group.add(number)
# On va ajouter les groupes à all_group
all_group.add(grid_group)
all_group.add(mines_group)
all_group.add(numbers_group)
# On va faire apparaître la grille
self.play(Write(grid_group))
# On va faire apparaître les mines
self.play(Write(mines_group))
# On va faire apparaître les nombres
self.play(Write(numbers_group))
# On attend 2s
self.wait(2)
# On zoom sur la case du milieu, on centre bien la case
self.play(self.camera.frame.animate.scale(1/3).move_to(
grid_group[GRID_SIZE * GRID_SIZE // 2 + GRID_SIZE // 2]))
# On colorie la case du milieu en bleu (on la remplie)
self.play(grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2].animate.set_fill(BLUE, opacity=.5))
self.wait(2)
# On fait un groupe pour les voisines
neighbors_group = VGroup()
# On colorie ses voisines en vert (on les remplies) sauf celle du milieu
for x in range(-1, 2):
for y in range(-1, 2):
if x != 0 or y != 0:
neighbors_group.add(
grid_group[GRID_SIZE * GRID_SIZE // 2 + GRID_SIZE // 2 + x + y * GRID_SIZE])
self.play(neighbors_group.animate.set_fill(GREEN, opacity=.5))
self.wait(2)
# On fait des flèches pour les voisines
neighbors_arrows = VGroup()
for x in range(-1, 2):
for y in range(-1, 2):
if x != 0 or y != 0:
arrow = Arrow(
grid_group[GRID_SIZE * GRID_SIZE //
2 + GRID_SIZE // 2].get_center(),
grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2 + x + y * GRID_SIZE].get_center(),
buff=0,
color=RED
)
neighbors_arrows.add(arrow)
self.play(Write(neighbors_arrows))
self.wait(2)
# On déplace la caméra de CELL_SIZE vers le bas
self.play(self.camera.frame.animate.move_to(
[CELL_SIZE/2, -CELL_SIZE/2, 0]))
# On colorie la case du bas en bleu (on la remplie)
self.play(grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2 - 1].animate.set_fill(BLUE, opacity=.5))
self.wait(1)
# On enlève les flèches
self.play(FadeOut(neighbors_arrows))
self.wait(.5)
# On ajoute une flèche pour la case du bas vers la case du milieu
arrow = Arrow(
grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2 - 1].get_center(),
grid_group[GRID_SIZE * GRID_SIZE //
2 + GRID_SIZE // 2].get_center(),
buff=0,
color=RED
)
self.play(Write(arrow))
self.wait(4)
# On enlève la flèche
self.play(FadeOut(arrow))
# On déplace la caméra de CELL_SIZE vers le haut
self.play(self.camera.frame.animate.move_to(
[CELL_SIZE/2, CELL_SIZE/2, 0]))
# On colorie les cases autour de la case du milieu en jaune (on les remplies)
self.play(neighbors_group.animate.set_fill(YELLOW, opacity=.5))
# On fait des flèches qui partent des voisines vers la case du milieu
neighbors_arrows = VGroup()
for x in range(-1, 2):
for y in range(-1, 2):
if x != 0 or y != 0:
arrow = Arrow(
grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2 + x + y * GRID_SIZE].get_center(),
grid_group[GRID_SIZE * GRID_SIZE //
2 + GRID_SIZE // 2].get_center(),
buff=0,
color=RED
)
neighbors_arrows.add(arrow)
self.play(Write(neighbors_arrows))
self.wait(4)
# On enlève les flèches
self.play(FadeOut(neighbors_arrows))
self.wait(1)
# On va :
# Pour chaque voisine, faire une flèche du milieu vers la voisine
# Puis incrémenter le nombre de voisines QUI CONTIENNENT UNE BOMBE et afficher le nouveau nombre dans la cellule du milieu
n = 0
# On affiche le nombre de voisines de la case du milieu
number = Text(
str(n), color=WHITE)
# On va le positionner
number.move_to([CELL_SIZE/2, CELL_SIZE/2, 10])
# Réduire sa taille
number.scale(1/2)
# On l'ajoute au groupe des nombres
numbers_group.add(number)
# On fait apparaître le nombre en noir
self.play(Write(number))
self.wait(1)
arrowGroup = VGroup()
for x in range(-1, 2):
for y in range(-1, 2):
if x != 0 or y != 0:
# On fait une flèche du milieu vers la voisine
arrow = Arrow(
grid_group[GRID_SIZE * GRID_SIZE //
2 + GRID_SIZE // 2].get_center(),
grid_group[GRID_SIZE * GRID_SIZE // 2 +
GRID_SIZE // 2 + x + y * GRID_SIZE].get_center(),
buff=0,
color=RED
)
arrowGroup.add(arrow)
self.play(FadeOut(number), run_time=.05)
self.play(Write(arrow), run_time=.15)
if (x == 0 and y == -1) or (x == -1 and y == 1):
n += 1
# On affiche le nouveau nombre de voisines de la case du milieu
number = Text(
str(n), color=WHITE)
# On va le positionner
number.move_to([CELL_SIZE/2, CELL_SIZE/2, 10])
# Réduire sa taille
number.scale(1/2)
# On l'ajoute au groupe des nombres
numbers_group.add(number)
# On fait apparaître le nombre en noir
self.play(Write(number))
self.wait(2)
# On enlève les flèches
self.play(FadeOut(arrowGroup))
Manim/media/images/explication/Explication_ManimCE_v0.17.2.png

26.8 KiB

<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.035156 -1.132812 C 1.273438 -1.132812 1.589844 -1.007812 1.980469 -0.761719 C 2.375 -0.515625 2.707031 -0.390625 2.980469 -0.390625 C 3.589844 -0.390625 4.039062 -0.59375 4.335938 -1.003906 C 4.632812 -1.414062 4.777344 -1.863281 4.777344 -2.34375 C 4.777344 -2.808594 4.660156 -3.214844 4.421875 -3.566406 C 4.015625 -4.160156 3.335938 -4.460938 2.375 -4.460938 C 2.320312 -4.460938 2.265625 -4.457031 2.214844 -4.457031 C 2.160156 -4.453125 2.101562 -4.449219 2.03125 -4.441406 L 2.019531 -4.609375 C 2.714844 -4.859375 3.257812 -5.148438 3.660156 -5.476562 C 4.058594 -5.800781 4.257812 -6.230469 4.257812 -6.765625 C 4.257812 -7.238281 4.101562 -7.597656 3.785156 -7.84375 C 3.472656 -8.09375 3.113281 -8.214844 2.707031 -8.214844 C 2.230469 -8.214844 1.808594 -8.039062 1.445312 -7.6875 C 1.246094 -7.496094 1.03125 -7.203125 0.800781 -6.804688 L 0.597656 -6.847656 C 0.773438 -7.507812 1.097656 -8.035156 1.570312 -8.429688 C 2.042969 -8.824219 2.589844 -9.023438 3.210938 -9.023438 C 3.875 -9.023438 4.386719 -8.839844 4.75 -8.476562 C 5.113281 -8.113281 5.292969 -7.691406 5.292969 -7.214844 C 5.292969 -6.792969 5.144531 -6.40625 4.84375 -6.054688 C 4.675781 -5.855469 4.410156 -5.632812 4.054688 -5.382812 C 4.472656 -5.207031 4.808594 -4.996094 5.058594 -4.757812 C 5.53125 -4.304688 5.769531 -3.726562 5.769531 -3.027344 C 5.769531 -2.203125 5.445312 -1.476562 4.792969 -0.847656 C 4.144531 -0.21875 3.222656 0.0976562 2.023438 0.0976562 C 1.492188 0.0976562 1.117188 0.0195312 0.902344 -0.140625 C 0.6875 -0.296875 0.578125 -0.46875 0.578125 -0.652344 C 0.578125 -0.765625 0.613281 -0.871094 0.6875 -0.976562 C 0.757812 -1.082031 0.875 -1.132812 1.035156 -1.132812 Z "/>
</symbol>
</g>
</defs>
<g id="surface41">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.398438 -0.148438 C 1.984375 -1.796875 3.0625 -3.011719 3.632812 -3.78125 C 4.203125 -4.554688 4.484375 -5.308594 4.484375 -6.042969 C 4.484375 -6.683594 4.3125 -7.171875 3.964844 -7.507812 C 3.617188 -7.84375 3.203125 -8.015625 2.722656 -8.015625 C 2.128906 -8.015625 1.644531 -7.796875 1.277344 -7.363281 C 1.074219 -7.125 0.875 -6.757812 0.691406 -6.261719 L 0.410156 -6.320312 C 0.628906 -7.320312 0.996094 -8.011719 1.511719 -8.402344 C 2.03125 -8.789062 2.589844 -8.984375 3.183594 -8.984375 C 3.917969 -8.984375 4.511719 -8.753906 4.964844 -8.289062 C 5.417969 -7.828125 5.644531 -7.261719 5.644531 -6.59375 C 5.644531 -5.882812 5.398438 -5.199219 4.910156 -4.539062 C 4.417969 -3.878906 3.351562 -2.703125 1.710938 -1.015625 L 4.699219 -1.015625 C 5.117188 -1.015625 5.410156 -1.066406 5.578125 -1.164062 C 5.75 -1.265625 5.941406 -1.507812 6.152344 -1.894531 L 6.320312 -1.816406 L 5.597656 0 L 0.398438 0 Z "/>
</symbol>
</g>
</defs>
<g id="surface122">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.828125 -3.5625 C 1.351562 -3.617188 1.753906 -3.734375 2.03125 -3.914062 C 2.457031 -4.191406 2.667969 -4.632812 2.667969 -5.242188 L 2.683594 -7.03125 C 2.683594 -7.835938 2.996094 -8.382812 3.625 -8.671875 C 3.992188 -8.839844 4.636719 -8.953125 5.566406 -9.011719 L 5.566406 -8.71875 C 5.097656 -8.664062 4.667969 -8.511719 4.28125 -8.257812 C 3.890625 -8.003906 3.699219 -7.585938 3.699219 -7.003906 L 3.699219 -5.410156 C 3.699219 -4.722656 3.53125 -4.253906 3.203125 -3.996094 C 2.875 -3.742188 2.289062 -3.527344 1.445312 -3.359375 L 1.21875 -3.3125 L 1.21875 -3.28125 C 2.109375 -3.210938 2.742188 -3.011719 3.117188 -2.675781 C 3.496094 -2.339844 3.6875 -1.902344 3.699219 -1.355469 L 3.71875 0.480469 C 3.722656 1.019531 3.941406 1.421875 4.375 1.691406 C 4.621094 1.84375 5.019531 1.976562 5.566406 2.082031 L 5.566406 2.375 C 4.695312 2.375 3.996094 2.226562 3.46875 1.925781 C 2.945312 1.628906 2.683594 1.125 2.683594 0.417969 L 2.667969 -1.589844 C 2.667969 -2.09375 2.445312 -2.472656 1.992188 -2.726562 C 1.734375 -2.871094 1.347656 -2.992188 0.828125 -3.085938 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.152344 -9.011719 C 1.355469 -9.011719 1.488281 -8.953125 1.550781 -8.84375 C 1.613281 -8.734375 1.648438 -8.582031 1.648438 -8.390625 C 1.648438 -8.359375 1.644531 -8.332031 1.644531 -8.300781 C 1.640625 -8.269531 1.632812 -8.179688 1.613281 -8.035156 L 1.296875 -5.167969 L 1.0625 -5.167969 L 0.722656 -7.820312 C 0.710938 -7.929688 0.699219 -8.035156 0.6875 -8.136719 C 0.675781 -8.242188 0.671875 -8.347656 0.671875 -8.457031 C 0.671875 -8.589844 0.699219 -8.71875 0.757812 -8.835938 C 0.816406 -8.953125 0.949219 -9.011719 1.152344 -9.011719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.390625 -6.003906 L 3.390625 -5.535156 L 2.0625 -5.535156 L 2.050781 -1.785156 C 2.050781 -1.453125 2.078125 -1.203125 2.136719 -1.035156 C 2.238281 -0.734375 2.445312 -0.585938 2.746094 -0.585938 C 2.902344 -0.585938 3.039062 -0.621094 3.152344 -0.695312 C 3.269531 -0.769531 3.402344 -0.886719 3.546875 -1.046875 L 3.71875 -0.90625 L 3.574219 -0.710938 C 3.347656 -0.40625 3.109375 -0.191406 2.859375 -0.0664062 C 2.605469 0.0585938 2.363281 0.125 2.128906 0.125 C 1.617188 0.125 1.269531 -0.105469 1.085938 -0.558594 C 0.988281 -0.808594 0.9375 -1.148438 0.9375 -1.589844 L 0.9375 -5.535156 L 0.226562 -5.535156 C 0.207031 -5.546875 0.191406 -5.558594 0.179688 -5.574219 C 0.167969 -5.585938 0.164062 -5.601562 0.164062 -5.625 C 0.164062 -5.667969 0.171875 -5.703125 0.191406 -5.726562 C 0.210938 -5.75 0.273438 -5.804688 0.378906 -5.890625 C 0.675781 -6.140625 0.894531 -6.339844 1.023438 -6.492188 C 1.15625 -6.648438 1.46875 -7.054688 1.960938 -7.714844 C 2.015625 -7.714844 2.050781 -7.710938 2.058594 -7.703125 C 2.070312 -7.695312 2.078125 -7.660156 2.078125 -7.605469 L 2.078125 -6.003906 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.183594 -5.984375 L 2.929688 -5.984375 L 2.929688 -5.78125 C 2.710938 -5.777344 2.550781 -5.757812 2.449219 -5.722656 C 2.25 -5.667969 2.148438 -5.554688 2.148438 -5.390625 C 2.148438 -5.328125 2.160156 -5.269531 2.179688 -5.203125 C 2.203125 -5.140625 2.242188 -5.046875 2.296875 -4.921875 L 3.820312 -1.542969 L 5.046875 -4.949219 C 5.058594 -4.984375 5.078125 -5.0625 5.105469 -5.183594 C 5.136719 -5.304688 5.148438 -5.386719 5.148438 -5.429688 C 5.148438 -5.542969 5.109375 -5.625 5.03125 -5.675781 C 4.953125 -5.730469 4.855469 -5.757812 4.734375 -5.769531 L 4.53125 -5.78125 L 4.53125 -5.984375 L 6.320312 -5.984375 L 6.320312 -5.78125 C 6.144531 -5.757812 6.011719 -5.699219 5.921875 -5.597656 C 5.832031 -5.5 5.753906 -5.359375 5.691406 -5.183594 L 3.640625 0.246094 C 3.285156 1.183594 2.941406 1.863281 2.617188 2.285156 C 2.292969 2.707031 1.878906 2.917969 1.378906 2.917969 C 1.136719 2.917969 0.910156 2.855469 0.695312 2.734375 C 0.484375 2.613281 0.378906 2.417969 0.378906 2.15625 C 0.378906 1.980469 0.441406 1.839844 0.570312 1.726562 C 0.699219 1.617188 0.859375 1.5625 1.054688 1.5625 C 1.167969 1.5625 1.335938 1.605469 1.558594 1.6875 C 1.78125 1.769531 1.941406 1.808594 2.039062 1.808594 C 2.28125 1.808594 2.535156 1.527344 2.804688 0.964844 C 3.074219 0.398438 3.210938 0.0234375 3.210938 -0.167969 C 3.210938 -0.207031 3.203125 -0.257812 3.191406 -0.3125 C 3.175781 -0.367188 3.160156 -0.417969 3.144531 -0.460938 L 1.0625 -4.96875 C 0.914062 -5.289062 0.785156 -5.5 0.671875 -5.601562 C 0.5625 -5.703125 0.398438 -5.769531 0.183594 -5.800781 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.128906 -1.199219 C 2.242188 -0.902344 2.410156 -0.683594 2.632812 -0.535156 C 2.855469 -0.390625 3.121094 -0.320312 3.425781 -0.320312 C 3.894531 -0.320312 4.292969 -0.550781 4.625 -1.019531 C 4.957031 -1.484375 5.125 -2.136719 5.125 -2.96875 C 5.125 -3.765625 4.949219 -4.363281 4.605469 -4.757812 C 4.261719 -5.152344 3.859375 -5.351562 3.40625 -5.351562 C 3.085938 -5.351562 2.789062 -5.253906 2.527344 -5.054688 C 2.261719 -4.859375 2.128906 -4.664062 2.128906 -4.472656 Z M 0.0585938 2.6875 C 0.464844 2.664062 0.726562 2.574219 0.835938 2.429688 C 0.945312 2.28125 1.003906 2.046875 1.003906 1.730469 L 1.003906 -4.519531 C 1.003906 -4.847656 0.960938 -5.058594 0.882812 -5.152344 C 0.800781 -5.246094 0.652344 -5.292969 0.429688 -5.292969 C 0.382812 -5.292969 0.335938 -5.289062 0.296875 -5.285156 C 0.253906 -5.28125 0.195312 -5.273438 0.117188 -5.261719 L 0.117188 -5.476562 L 0.734375 -5.675781 C 0.757812 -5.679688 1.195312 -5.832031 2.042969 -6.125 C 2.066406 -6.125 2.082031 -6.117188 2.09375 -6.097656 C 2.105469 -6.078125 2.109375 -6.054688 2.109375 -6.027344 L 2.109375 -5.148438 C 2.394531 -5.4375 2.648438 -5.648438 2.863281 -5.789062 C 3.253906 -6.03125 3.65625 -6.152344 4.070312 -6.152344 C 4.667969 -6.152344 5.183594 -5.898438 5.613281 -5.386719 C 6.046875 -4.878906 6.261719 -4.179688 6.261719 -3.292969 C 6.261719 -2.425781 6.003906 -1.636719 5.484375 -0.929688 C 4.964844 -0.222656 4.3125 0.128906 3.527344 0.128906 C 3.285156 0.128906 3.074219 0.101562 2.898438 0.0390625 C 2.621094 -0.0507812 2.363281 -0.21875 2.128906 -0.460938 L 2.128906 1.667969 C 2.128906 2.105469 2.199219 2.375 2.34375 2.472656 C 2.488281 2.574219 2.800781 2.640625 3.28125 2.675781 L 3.28125 2.902344 L 0.0585938 2.902344 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.054688 -6.105469 C 3.664062 -6.105469 4.203125 -5.894531 4.660156 -5.472656 C 5.121094 -5.050781 5.351562 -4.449219 5.351562 -3.671875 L 1.21875 -3.671875 C 1.261719 -2.664062 1.488281 -1.929688 1.902344 -1.472656 C 2.3125 -1.011719 2.800781 -0.78125 3.367188 -0.78125 C 3.820312 -0.78125 4.207031 -0.902344 4.519531 -1.140625 C 4.832031 -1.378906 5.121094 -1.714844 5.382812 -2.15625 L 5.613281 -2.078125 C 5.433594 -1.527344 5.101562 -1.015625 4.613281 -0.546875 C 4.125 -0.078125 3.527344 0.15625 2.820312 0.15625 C 2.003906 0.15625 1.371094 -0.152344 0.925781 -0.769531 C 0.480469 -1.386719 0.261719 -2.09375 0.261719 -2.898438 C 0.261719 -3.769531 0.519531 -4.523438 1.035156 -5.15625 C 1.550781 -5.789062 2.222656 -6.105469 3.054688 -6.105469 Z M 2.675781 -5.632812 C 2.179688 -5.632812 1.804688 -5.414062 1.542969 -4.972656 C 1.402344 -4.738281 1.304688 -4.445312 1.242188 -4.089844 L 3.992188 -4.089844 C 3.945312 -4.523438 3.859375 -4.847656 3.742188 -5.058594 C 3.53125 -5.441406 3.175781 -5.632812 2.675781 -5.632812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.527344 -5.410156 C 2.527344 -5.191406 2.449219 -5.015625 2.300781 -4.878906 C 2.152344 -4.742188 1.980469 -4.675781 1.789062 -4.675781 C 1.582031 -4.675781 1.410156 -4.75 1.277344 -4.894531 C 1.140625 -5.042969 1.074219 -5.210938 1.074219 -5.402344 C 1.074219 -5.601562 1.144531 -5.773438 1.28125 -5.914062 C 1.421875 -6.054688 1.589844 -6.125 1.789062 -6.125 C 1.980469 -6.125 2.152344 -6.058594 2.300781 -5.921875 C 2.449219 -5.785156 2.527344 -5.613281 2.527344 -5.410156 Z M 1.769531 0.109375 C 1.589844 0.109375 1.425781 0.0390625 1.285156 -0.105469 C 1.144531 -0.246094 1.074219 -0.421875 1.074219 -0.625 C 1.074219 -0.820312 1.144531 -0.992188 1.28125 -1.136719 C 1.421875 -1.28125 1.59375 -1.355469 1.796875 -1.355469 C 2 -1.355469 2.179688 -1.285156 2.332031 -1.140625 C 2.484375 -1 2.558594 -0.832031 2.558594 -0.632812 C 2.558594 -0.441406 2.488281 -0.269531 2.34375 -0.117188 C 2.199219 0.0351562 2.007812 0.109375 1.769531 0.109375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 0.214844 -0.167969 C 0.554688 -0.199219 0.777344 -0.257812 0.890625 -0.339844 C 1.066406 -0.464844 1.152344 -0.714844 1.152344 -1.09375 L 1.152344 -4.460938 C 1.152344 -4.78125 1.109375 -4.992188 1.023438 -5.089844 C 0.941406 -5.191406 0.800781 -5.242188 0.605469 -5.242188 C 0.515625 -5.242188 0.445312 -5.238281 0.398438 -5.226562 C 0.355469 -5.21875 0.300781 -5.203125 0.242188 -5.183594 L 0.242188 -5.410156 L 0.710938 -5.566406 C 0.878906 -5.621094 1.15625 -5.726562 1.542969 -5.871094 C 1.929688 -6.019531 2.132812 -6.09375 2.15625 -6.09375 C 2.175781 -6.09375 2.191406 -6.082031 2.195312 -6.0625 C 2.199219 -6.039062 2.199219 -6 2.199219 -5.9375 L 2.199219 -5.058594 C 2.628906 -5.449219 3 -5.71875 3.3125 -5.867188 C 3.625 -6.019531 3.949219 -6.09375 4.277344 -6.09375 C 4.722656 -6.09375 5.082031 -5.941406 5.34375 -5.636719 C 5.484375 -5.472656 5.597656 -5.25 5.691406 -4.96875 C 6.011719 -5.292969 6.292969 -5.535156 6.53125 -5.691406 C 6.941406 -5.960938 7.363281 -6.09375 7.792969 -6.09375 C 8.492188 -6.09375 8.957031 -5.808594 9.191406 -5.242188 C 9.328125 -4.921875 9.394531 -4.410156 9.394531 -3.71875 L 9.394531 -1.015625 C 9.394531 -0.707031 9.460938 -0.496094 9.597656 -0.386719 C 9.734375 -0.277344 9.980469 -0.203125 10.339844 -0.167969 L 10.339844 0 L 7.402344 0 L 7.402344 -0.183594 C 7.78125 -0.21875 8.027344 -0.292969 8.148438 -0.410156 C 8.265625 -0.527344 8.328125 -0.765625 8.328125 -1.125 L 8.328125 -3.933594 C 8.328125 -4.355469 8.28125 -4.664062 8.191406 -4.863281 C 8.03125 -5.21875 7.714844 -5.398438 7.246094 -5.398438 C 6.964844 -5.398438 6.683594 -5.304688 6.40625 -5.117188 C 6.246094 -5.007812 6.046875 -4.835938 5.8125 -4.597656 L 5.8125 -1.261719 C 5.8125 -0.910156 5.875 -0.644531 6 -0.460938 C 6.125 -0.28125 6.382812 -0.183594 6.785156 -0.167969 L 6.785156 0 L 3.796875 0 L 3.796875 -0.167969 C 4.207031 -0.222656 4.46875 -0.320312 4.582031 -0.46875 C 4.695312 -0.617188 4.753906 -0.980469 4.753906 -1.554688 L 4.753906 -3.378906 C 4.753906 -4.046875 4.710938 -4.507812 4.621094 -4.757812 C 4.480469 -5.183594 4.175781 -5.398438 3.710938 -5.398438 C 3.445312 -5.398438 3.1875 -5.324219 2.929688 -5.179688 C 2.671875 -5.035156 2.449219 -4.84375 2.253906 -4.609375 L 2.253906 -1.046875 C 2.253906 -0.71875 2.308594 -0.492188 2.425781 -0.363281 C 2.539062 -0.238281 2.789062 -0.171875 3.175781 -0.167969 L 3.175781 0 L 0.214844 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 1.09375 -8.40625 C 1.09375 -8.59375 1.160156 -8.753906 1.289062 -8.886719 C 1.417969 -9.019531 1.578125 -9.089844 1.769531 -9.089844 C 1.957031 -9.089844 2.117188 -9.023438 2.25 -8.890625 C 2.382812 -8.757812 2.449219 -8.597656 2.449219 -8.40625 C 2.449219 -8.21875 2.382812 -8.058594 2.25 -7.925781 C 2.117188 -7.792969 1.957031 -7.726562 1.769531 -7.726562 C 1.578125 -7.726562 1.417969 -7.792969 1.289062 -7.925781 C 1.160156 -8.058594 1.09375 -8.21875 1.09375 -8.40625 Z M 0.261719 -0.183594 C 0.726562 -0.226562 1.019531 -0.304688 1.140625 -0.417969 C 1.261719 -0.535156 1.320312 -0.847656 1.320312 -1.355469 L 1.320312 -4.460938 C 1.320312 -4.742188 1.300781 -4.9375 1.261719 -5.046875 C 1.199219 -5.222656 1.0625 -5.3125 0.851562 -5.3125 C 0.804688 -5.3125 0.757812 -5.308594 0.710938 -5.300781 C 0.667969 -5.292969 0.535156 -5.257812 0.320312 -5.195312 L 0.320312 -5.398438 L 0.597656 -5.488281 C 1.359375 -5.734375 1.886719 -5.921875 2.1875 -6.046875 C 2.308594 -6.101562 2.386719 -6.125 2.421875 -6.125 C 2.429688 -6.09375 2.433594 -6.0625 2.433594 -6.027344 L 2.433594 -1.355469 C 2.433594 -0.859375 2.496094 -0.550781 2.613281 -0.421875 C 2.734375 -0.296875 3.003906 -0.21875 3.425781 -0.183594 L 3.425781 0 L 0.261719 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 0.242188 -0.183594 C 0.550781 -0.222656 0.765625 -0.296875 0.886719 -0.414062 C 1.011719 -0.527344 1.074219 -0.785156 1.074219 -1.183594 L 1.074219 -4.484375 C 1.074219 -4.761719 1.046875 -4.957031 0.996094 -5.070312 C 0.914062 -5.234375 0.746094 -5.320312 0.488281 -5.320312 C 0.449219 -5.320312 0.410156 -5.316406 0.367188 -5.3125 C 0.328125 -5.308594 0.277344 -5.300781 0.214844 -5.292969 L 0.214844 -5.519531 C 0.394531 -5.574219 0.8125 -5.707031 1.476562 -5.925781 L 2.089844 -6.125 C 2.121094 -6.125 2.136719 -6.117188 2.144531 -6.09375 C 2.152344 -6.070312 2.15625 -6.042969 2.15625 -6.003906 L 2.15625 -5.046875 C 2.554688 -5.417969 2.867188 -5.675781 3.09375 -5.8125 C 3.429688 -6.027344 3.78125 -6.132812 4.148438 -6.132812 C 4.441406 -6.132812 4.710938 -6.046875 4.953125 -5.878906 C 5.421875 -5.550781 5.65625 -4.960938 5.65625 -4.113281 L 5.65625 -1.074219 C 5.65625 -0.761719 5.71875 -0.535156 5.847656 -0.398438 C 5.972656 -0.257812 6.183594 -0.1875 6.476562 -0.183594 L 6.476562 0 L 3.699219 0 L 3.699219 -0.183594 C 4.015625 -0.226562 4.234375 -0.3125 4.363281 -0.445312 C 4.488281 -0.578125 4.550781 -0.867188 4.550781 -1.308594 L 4.550781 -4.089844 C 4.550781 -4.460938 4.480469 -4.769531 4.34375 -5.015625 C 4.203125 -5.261719 3.949219 -5.382812 3.574219 -5.382812 C 3.316406 -5.382812 3.058594 -5.296875 2.792969 -5.125 C 2.644531 -5.023438 2.453125 -4.859375 2.21875 -4.628906 L 2.21875 -0.984375 C 2.21875 -0.671875 2.289062 -0.460938 2.429688 -0.355469 C 2.566406 -0.25 2.785156 -0.191406 3.085938 -0.183594 L 3.085938 0 L 0.242188 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 3.269531 -0.136719 C 3.269531 0.300781 3.109375 0.710938 2.792969 1.085938 C 2.476562 1.464844 2.136719 1.734375 1.769531 1.902344 L 1.648438 1.640625 C 2.0625 1.40625 2.351562 1.152344 2.507812 0.878906 C 2.667969 0.605469 2.746094 0.378906 2.746094 0.195312 C 2.746094 0.132812 2.726562 0.09375 2.6875 0.078125 C 2.648438 0.0625 2.609375 0.0507812 2.566406 0.0507812 L 2.128906 0.0976562 C 1.945312 0.0976562 1.78125 0.0390625 1.628906 -0.0820312 C 1.476562 -0.199219 1.398438 -0.375 1.398438 -0.597656 C 1.398438 -0.773438 1.460938 -0.941406 1.589844 -1.105469 C 1.714844 -1.269531 1.921875 -1.355469 2.207031 -1.355469 C 2.480469 -1.355469 2.726562 -1.246094 2.941406 -1.03125 C 3.160156 -0.816406 3.269531 -0.519531 3.269531 -0.136719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 1.308594 1.203125 C 1.308594 1.570312 1.511719 1.820312 1.921875 1.960938 C 2.332031 2.097656 2.804688 2.167969 3.332031 2.167969 C 4.054688 2.167969 4.640625 2.042969 5.089844 1.792969 C 5.542969 1.542969 5.769531 1.238281 5.769531 0.871094 C 5.769531 0.582031 5.585938 0.386719 5.222656 0.292969 C 4.996094 0.238281 4.566406 0.203125 3.9375 0.195312 C 3.777344 0.191406 3.609375 0.183594 3.429688 0.179688 C 3.253906 0.171875 3.089844 0.164062 2.941406 0.15625 C 2.847656 0.152344 2.691406 0.132812 2.480469 0.105469 C 2.269531 0.0742188 2.109375 0.046875 2.003906 0.0273438 C 1.953125 0.0273438 1.824219 0.164062 1.621094 0.4375 C 1.414062 0.714844 1.308594 0.96875 1.308594 1.203125 Z M 2.15625 -2.1875 C 1.761719 -2.316406 1.453125 -2.550781 1.234375 -2.882812 C 1.015625 -3.21875 0.90625 -3.59375 0.90625 -4.011719 C 0.90625 -4.519531 1.105469 -5 1.511719 -5.457031 C 1.914062 -5.910156 2.484375 -6.140625 3.222656 -6.140625 C 3.539062 -6.140625 3.890625 -6.0625 4.269531 -5.914062 C 4.652344 -5.765625 5.019531 -5.691406 5.371094 -5.691406 C 5.460938 -5.691406 5.601562 -5.691406 5.785156 -5.699219 C 5.96875 -5.707031 6.101562 -5.710938 6.183594 -5.710938 L 6.261719 -5.710938 L 6.261719 -5.183594 L 5.136719 -5.183594 C 5.214844 -5 5.277344 -4.839844 5.320312 -4.707031 C 5.394531 -4.457031 5.429688 -4.214844 5.429688 -3.992188 C 5.429688 -3.496094 5.222656 -3.042969 4.8125 -2.625 C 4.402344 -2.210938 3.851562 -2.003906 3.15625 -2.003906 C 3.046875 -2.003906 2.855469 -2.023438 2.570312 -2.0625 C 2.445312 -2.0625 2.28125 -1.957031 2.074219 -1.746094 C 1.867188 -1.53125 1.765625 -1.359375 1.765625 -1.222656 C 1.765625 -1.085938 1.917969 -0.984375 2.21875 -0.917969 C 2.417969 -0.875 2.640625 -0.851562 2.882812 -0.851562 C 4 -0.851562 4.757812 -0.789062 5.15625 -0.664062 C 5.8125 -0.460938 6.140625 -0.0234375 6.140625 0.652344 C 6.140625 1.335938 5.757812 1.882812 4.988281 2.292969 C 4.222656 2.699219 3.449219 2.902344 2.667969 2.902344 C 1.957031 2.902344 1.394531 2.757812 0.976562 2.46875 C 0.558594 2.179688 0.351562 1.878906 0.351562 1.5625 C 0.351562 1.40625 0.40625 1.253906 0.515625 1.101562 C 0.628906 0.953125 0.847656 0.730469 1.171875 0.4375 L 1.601562 0.0507812 L 1.679688 -0.0273438 C 1.480469 -0.105469 1.332031 -0.179688 1.230469 -0.253906 C 1.058594 -0.386719 0.96875 -0.542969 0.96875 -0.714844 C 0.96875 -0.875 1.042969 -1.054688 1.195312 -1.246094 C 1.34375 -1.441406 1.664062 -1.753906 2.15625 -2.1875 Z M 3.390625 -2.316406 C 3.628906 -2.316406 3.832031 -2.382812 3.992188 -2.511719 C 4.25 -2.722656 4.382812 -3.082031 4.382812 -3.601562 C 4.382812 -4.011719 4.277344 -4.476562 4.066406 -4.992188 C 3.855469 -5.507812 3.503906 -5.769531 3.015625 -5.769531 C 2.589844 -5.769531 2.296875 -5.566406 2.136719 -5.164062 C 2.054688 -4.949219 2.011719 -4.6875 2.011719 -4.375 C 2.011719 -3.84375 2.140625 -3.371094 2.394531 -2.949219 C 2.652344 -2.527344 2.984375 -2.316406 3.390625 -2.316406 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 0.117188 -0.183594 C 0.472656 -0.230469 0.707031 -0.316406 0.816406 -0.445312 C 0.925781 -0.574219 0.984375 -0.875 0.984375 -1.355469 L 0.984375 -7.605469 C 0.984375 -7.847656 0.953125 -8.027344 0.886719 -8.140625 C 0.824219 -8.257812 0.671875 -8.3125 0.429688 -8.3125 C 0.382812 -8.3125 0.335938 -8.308594 0.289062 -8.304688 C 0.242188 -8.296875 0.191406 -8.289062 0.136719 -8.28125 L 0.136719 -8.515625 C 0.328125 -8.570312 0.5625 -8.640625 0.84375 -8.71875 C 1.125 -8.800781 1.316406 -8.859375 1.425781 -8.894531 L 2.050781 -9.089844 L 2.0625 -9.042969 L 2.0625 -5.046875 C 2.335938 -5.359375 2.582031 -5.589844 2.792969 -5.734375 C 3.175781 -5.996094 3.585938 -6.125 4.03125 -6.125 C 4.734375 -6.125 5.210938 -5.832031 5.46875 -5.242188 C 5.609375 -4.929688 5.675781 -4.519531 5.675781 -4.011719 L 5.675781 -1.355469 C 5.675781 -0.894531 5.730469 -0.59375 5.835938 -0.457031 C 5.941406 -0.316406 6.160156 -0.226562 6.492188 -0.183594 L 6.492188 0 L 3.671875 0 L 3.671875 -0.183594 C 4.050781 -0.234375 4.292969 -0.324219 4.402344 -0.449219 C 4.511719 -0.574219 4.5625 -0.875 4.5625 -1.355469 L 4.5625 -3.992188 C 4.5625 -4.414062 4.492188 -4.753906 4.351562 -5.011719 C 4.210938 -5.273438 3.945312 -5.402344 3.554688 -5.402344 C 3.214844 -5.402344 2.886719 -5.28125 2.570312 -5.039062 C 2.253906 -4.796875 2.097656 -4.636719 2.097656 -4.5625 L 2.097656 -1.355469 C 2.097656 -0.867188 2.152344 -0.5625 2.265625 -0.441406 C 2.378906 -0.320312 2.621094 -0.234375 2.988281 -0.183594 L 2.988281 0 L 0.117188 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 0.046875 -8.28125 L 0.046875 -8.503906 C 0.539062 -8.617188 0.984375 -8.742188 1.378906 -8.878906 C 1.773438 -9.019531 1.988281 -9.089844 2.019531 -9.089844 C 2.027344 -9.0625 2.03125 -9.035156 2.03125 -9.011719 L 2.03125 -5.046875 C 2.144531 -5.253906 2.3125 -5.453125 2.539062 -5.636719 C 2.9375 -5.964844 3.398438 -6.125 3.917969 -6.125 C 4.558594 -6.125 5.101562 -5.855469 5.554688 -5.320312 C 6.003906 -4.78125 6.230469 -4.082031 6.230469 -3.222656 C 6.230469 -2.300781 5.9375 -1.515625 5.351562 -0.859375 C 4.765625 -0.203125 3.996094 0.125 3.039062 0.125 C 2.558594 0.125 2.085938 0.0273438 1.621094 -0.164062 C 1.15625 -0.355469 0.925781 -0.542969 0.925781 -0.734375 L 0.925781 -7.617188 C 0.925781 -7.867188 0.890625 -8.046875 0.820312 -8.152344 C 0.75 -8.261719 0.589844 -8.3125 0.339844 -8.3125 Z M 2.003906 -0.949219 C 2.042969 -0.722656 2.214844 -0.5625 2.511719 -0.464844 C 2.8125 -0.367188 3.074219 -0.320312 3.300781 -0.320312 C 3.910156 -0.320312 4.359375 -0.546875 4.652344 -1.003906 C 4.945312 -1.457031 5.089844 -2.007812 5.089844 -2.65625 C 5.089844 -3.304688 4.953125 -3.902344 4.679688 -4.449219 C 4.40625 -5 3.964844 -5.273438 3.351562 -5.273438 C 3.042969 -5.273438 2.742188 -5.179688 2.449219 -4.988281 C 2.152344 -4.800781 2.003906 -4.5625 2.003906 -4.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 0.339844 -3.019531 C 0.339844 -3.882812 0.613281 -4.613281 1.160156 -5.210938 C 1.710938 -5.808594 2.417969 -6.105469 3.28125 -6.105469 C 4.140625 -6.105469 4.851562 -5.824219 5.417969 -5.261719 C 5.980469 -4.695312 6.261719 -3.945312 6.261719 -3.007812 C 6.261719 -2.144531 5.988281 -1.394531 5.441406 -0.753906 C 4.894531 -0.117188 4.1875 0.203125 3.320312 0.203125 C 2.488281 0.203125 1.78125 -0.105469 1.203125 -0.714844 C 0.625 -1.328125 0.339844 -2.097656 0.339844 -3.019531 Z M 3.097656 -5.714844 C 2.753906 -5.714844 2.457031 -5.601562 2.207031 -5.378906 C 1.773438 -4.984375 1.554688 -4.300781 1.554688 -3.332031 C 1.554688 -2.558594 1.730469 -1.839844 2.078125 -1.171875 C 2.429688 -0.503906 2.914062 -0.167969 3.535156 -0.167969 C 4.019531 -0.167969 4.394531 -0.394531 4.65625 -0.839844 C 4.921875 -1.285156 5.050781 -1.871094 5.050781 -2.597656 C 5.050781 -3.347656 4.886719 -4.054688 4.550781 -4.71875 C 4.214844 -5.382812 3.734375 -5.714844 3.097656 -5.714844 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 0.0585938 -0.214844 C 0.457031 -0.25 0.722656 -0.320312 0.851562 -0.425781 C 0.984375 -0.53125 1.046875 -0.757812 1.046875 -1.105469 L 1.046875 -4.042969 C 1.046875 -4.472656 1.007812 -4.78125 0.925781 -4.964844 C 0.847656 -5.148438 0.699219 -5.242188 0.488281 -5.242188 C 0.445312 -5.242188 0.386719 -5.234375 0.316406 -5.222656 C 0.246094 -5.214844 0.167969 -5.199219 0.0898438 -5.183594 L 0.0898438 -5.398438 C 0.339844 -5.484375 0.59375 -5.574219 0.851562 -5.664062 C 1.113281 -5.753906 1.292969 -5.820312 1.394531 -5.859375 C 1.609375 -5.941406 1.832031 -6.035156 2.0625 -6.140625 C 2.09375 -6.140625 2.113281 -6.128906 2.117188 -6.105469 C 2.125 -6.085938 2.128906 -6.039062 2.128906 -5.96875 L 2.128906 -4.902344 C 2.40625 -5.289062 2.675781 -5.589844 2.933594 -5.808594 C 3.191406 -6.023438 3.460938 -6.132812 3.738281 -6.132812 C 3.957031 -6.132812 4.136719 -6.066406 4.277344 -5.933594 C 4.417969 -5.800781 4.484375 -5.636719 4.484375 -5.4375 C 4.484375 -5.257812 4.433594 -5.109375 4.324219 -4.988281 C 4.21875 -4.867188 4.085938 -4.804688 3.925781 -4.804688 C 3.761719 -4.804688 3.59375 -4.878906 3.425781 -5.03125 C 3.261719 -5.183594 3.128906 -5.261719 3.035156 -5.261719 C 2.882812 -5.261719 2.695312 -5.136719 2.472656 -4.890625 C 2.253906 -4.648438 2.140625 -4.394531 2.140625 -4.132812 L 2.140625 -1.199219 C 2.140625 -0.824219 2.230469 -0.566406 2.402344 -0.417969 C 2.574219 -0.273438 2.863281 -0.207031 3.269531 -0.214844 L 3.269531 0 L 0.0585938 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.691406 -2.050781 L 0.90625 -2.050781 C 1.003906 -1.554688 1.140625 -1.175781 1.308594 -0.910156 C 1.613281 -0.425781 2.058594 -0.183594 2.644531 -0.183594 C 2.96875 -0.183594 3.226562 -0.273438 3.414062 -0.453125 C 3.601562 -0.632812 3.699219 -0.867188 3.699219 -1.152344 C 3.699219 -1.335938 3.644531 -1.511719 3.535156 -1.679688 C 3.425781 -1.847656 3.234375 -2.015625 2.960938 -2.175781 L 2.234375 -2.589844 C 1.699219 -2.878906 1.304688 -3.167969 1.054688 -3.457031 C 0.804688 -3.746094 0.675781 -4.089844 0.675781 -4.484375 C 0.675781 -4.972656 0.851562 -5.371094 1.199219 -5.683594 C 1.546875 -5.996094 1.980469 -6.152344 2.507812 -6.152344 C 2.738281 -6.152344 2.988281 -6.109375 3.265625 -6.023438 C 3.539062 -5.9375 3.695312 -5.890625 3.730469 -5.890625 C 3.808594 -5.890625 3.863281 -5.902344 3.898438 -5.925781 C 3.933594 -5.945312 3.964844 -5.980469 3.992188 -6.027344 L 4.148438 -6.027344 L 4.191406 -4.210938 L 3.992188 -4.210938 C 3.90625 -4.632812 3.785156 -4.960938 3.640625 -5.195312 C 3.371094 -5.628906 2.980469 -5.847656 2.472656 -5.847656 C 2.167969 -5.847656 1.929688 -5.753906 1.757812 -5.566406 C 1.585938 -5.378906 1.496094 -5.160156 1.496094 -4.910156 C 1.496094 -4.511719 1.796875 -4.152344 2.394531 -3.839844 L 3.253906 -3.378906 C 4.179688 -2.875 4.640625 -2.289062 4.640625 -1.621094 C 4.640625 -1.109375 4.449219 -0.691406 4.066406 -0.363281 C 3.683594 -0.0390625 3.179688 0.125 2.558594 0.125 C 2.296875 0.125 2.003906 0.0820312 1.671875 -0.0078125 C 1.34375 -0.09375 1.148438 -0.136719 1.085938 -0.136719 C 1.035156 -0.136719 0.988281 -0.117188 0.949219 -0.0820312 C 0.910156 -0.0429688 0.882812 0 0.859375 0.0507812 L 0.691406 0.0507812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 1.035156 -1.132812 C 1.273438 -1.132812 1.589844 -1.007812 1.980469 -0.761719 C 2.375 -0.515625 2.707031 -0.390625 2.980469 -0.390625 C 3.589844 -0.390625 4.039062 -0.59375 4.335938 -1.003906 C 4.632812 -1.414062 4.777344 -1.863281 4.777344 -2.34375 C 4.777344 -2.808594 4.660156 -3.214844 4.421875 -3.566406 C 4.015625 -4.160156 3.335938 -4.460938 2.375 -4.460938 C 2.320312 -4.460938 2.265625 -4.457031 2.214844 -4.457031 C 2.160156 -4.453125 2.101562 -4.449219 2.03125 -4.441406 L 2.019531 -4.609375 C 2.714844 -4.859375 3.257812 -5.148438 3.660156 -5.476562 C 4.058594 -5.800781 4.257812 -6.230469 4.257812 -6.765625 C 4.257812 -7.238281 4.101562 -7.597656 3.785156 -7.84375 C 3.472656 -8.09375 3.113281 -8.214844 2.707031 -8.214844 C 2.230469 -8.214844 1.808594 -8.039062 1.445312 -7.6875 C 1.246094 -7.496094 1.03125 -7.203125 0.800781 -6.804688 L 0.597656 -6.847656 C 0.773438 -7.507812 1.097656 -8.035156 1.570312 -8.429688 C 2.042969 -8.824219 2.589844 -9.023438 3.210938 -9.023438 C 3.875 -9.023438 4.386719 -8.839844 4.75 -8.476562 C 5.113281 -8.113281 5.292969 -7.691406 5.292969 -7.214844 C 5.292969 -6.792969 5.144531 -6.40625 4.84375 -6.054688 C 4.675781 -5.855469 4.410156 -5.632812 4.054688 -5.382812 C 4.472656 -5.207031 4.808594 -4.996094 5.058594 -4.757812 C 5.53125 -4.304688 5.769531 -3.726562 5.769531 -3.027344 C 5.769531 -2.203125 5.445312 -1.476562 4.792969 -0.847656 C 4.144531 -0.21875 3.222656 0.0976562 2.023438 0.0976562 C 1.492188 0.0976562 1.117188 0.0195312 0.902344 -0.140625 C 0.6875 -0.296875 0.578125 -0.46875 0.578125 -0.652344 C 0.578125 -0.765625 0.613281 -0.871094 0.6875 -0.976562 C 0.757812 -1.082031 0.875 -1.132812 1.035156 -1.132812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 5.566406 -3.085938 C 5.03125 -2.984375 4.640625 -2.863281 4.386719 -2.722656 C 3.949219 -2.464844 3.730469 -2.085938 3.730469 -1.589844 L 3.71875 0.417969 C 3.71875 1.121094 3.457031 1.621094 2.9375 1.921875 C 2.414062 2.226562 1.710938 2.375 0.828125 2.375 L 0.828125 2.082031 C 1.375 1.972656 1.769531 1.84375 2.019531 1.691406 C 2.460938 1.421875 2.683594 1.019531 2.683594 0.480469 L 2.695312 -1.355469 C 2.695312 -1.945312 2.90625 -2.394531 3.328125 -2.707031 C 3.75 -3.019531 4.367188 -3.210938 5.183594 -3.28125 L 5.183594 -3.3125 C 4.242188 -3.5 3.628906 -3.6875 3.351562 -3.875 C 2.914062 -4.167969 2.695312 -4.679688 2.695312 -5.410156 L 2.695312 -7.003906 C 2.695312 -7.625 2.4375 -8.085938 1.921875 -8.386719 C 1.628906 -8.554688 1.265625 -8.664062 0.828125 -8.71875 L 0.828125 -9.011719 C 1.941406 -9.011719 2.703125 -8.832031 3.109375 -8.472656 C 3.515625 -8.113281 3.71875 -7.632812 3.71875 -7.03125 L 3.730469 -5.242188 C 3.730469 -4.613281 3.957031 -4.160156 4.414062 -3.886719 C 4.675781 -3.726562 5.058594 -3.617188 5.566406 -3.5625 Z "/>
</symbol>
</g>
</defs>
<g id="surface121">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
<use xlink:href="#glyph0-2" x="36" y="30"/>
<use xlink:href="#glyph0-3" x="38" y="30"/>
<use xlink:href="#glyph0-4" x="42" y="30"/>
<use xlink:href="#glyph0-5" x="49" y="30"/>
<use xlink:href="#glyph0-6" x="56" y="30"/>
<use xlink:href="#glyph0-2" x="62" y="30"/>
<use xlink:href="#glyph0-7" x="64" y="30"/>
<use xlink:href="#glyph0-8" x="68" y="30"/>
<use xlink:href="#glyph0-2" x="71" y="30"/>
<use xlink:href="#glyph0-9" x="73" y="30"/>
<use xlink:href="#glyph0-10" x="83" y="30"/>
<use xlink:href="#glyph0-11" x="87" y="30"/>
<use xlink:href="#glyph0-6" x="94" y="30"/>
<use xlink:href="#glyph0-2" x="100" y="30"/>
<use xlink:href="#glyph0-12" x="102" y="30"/>
<use xlink:href="#glyph0-8" x="105" y="30"/>
<use xlink:href="#glyph0-2" x="108" y="30"/>
<use xlink:href="#glyph0-11" x="110" y="30"/>
<use xlink:href="#glyph0-6" x="117" y="30"/>
<use xlink:href="#glyph0-10" x="123" y="30"/>
<use xlink:href="#glyph0-13" x="127" y="30"/>
<use xlink:href="#glyph0-14" x="134" y="30"/>
<use xlink:href="#glyph0-15" x="141" y="30"/>
<use xlink:href="#glyph0-16" x="148" y="30"/>
<use xlink:href="#glyph0-17" x="155" y="30"/>
<use xlink:href="#glyph0-18" x="159" y="30"/>
<use xlink:href="#glyph0-2" x="164" y="30"/>
<use xlink:href="#glyph0-7" x="166" y="30"/>
<use xlink:href="#glyph0-8" x="170" y="30"/>
<use xlink:href="#glyph0-19" x="173" y="30"/>
<use xlink:href="#glyph0-20" x="180" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.828125 -3.5625 C 1.351562 -3.617188 1.753906 -3.734375 2.03125 -3.914062 C 2.457031 -4.191406 2.667969 -4.632812 2.667969 -5.242188 L 2.683594 -7.03125 C 2.683594 -7.835938 2.996094 -8.382812 3.625 -8.671875 C 3.992188 -8.839844 4.636719 -8.953125 5.566406 -9.011719 L 5.566406 -8.71875 C 5.097656 -8.664062 4.667969 -8.511719 4.28125 -8.257812 C 3.890625 -8.003906 3.699219 -7.585938 3.699219 -7.003906 L 3.699219 -5.410156 C 3.699219 -4.722656 3.53125 -4.253906 3.203125 -3.996094 C 2.875 -3.742188 2.289062 -3.527344 1.445312 -3.359375 L 1.21875 -3.3125 L 1.21875 -3.28125 C 2.109375 -3.210938 2.742188 -3.011719 3.117188 -2.675781 C 3.496094 -2.339844 3.6875 -1.902344 3.699219 -1.355469 L 3.71875 0.480469 C 3.722656 1.019531 3.941406 1.421875 4.375 1.691406 C 4.621094 1.84375 5.019531 1.976562 5.566406 2.082031 L 5.566406 2.375 C 4.695312 2.375 3.996094 2.226562 3.46875 1.925781 C 2.945312 1.628906 2.683594 1.125 2.683594 0.417969 L 2.667969 -1.589844 C 2.667969 -2.09375 2.445312 -2.472656 1.992188 -2.726562 C 1.734375 -2.871094 1.347656 -2.992188 0.828125 -3.085938 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.152344 -9.011719 C 1.355469 -9.011719 1.488281 -8.953125 1.550781 -8.84375 C 1.613281 -8.734375 1.648438 -8.582031 1.648438 -8.390625 C 1.648438 -8.359375 1.644531 -8.332031 1.644531 -8.300781 C 1.640625 -8.269531 1.632812 -8.179688 1.613281 -8.035156 L 1.296875 -5.167969 L 1.0625 -5.167969 L 0.722656 -7.820312 C 0.710938 -7.929688 0.699219 -8.035156 0.6875 -8.136719 C 0.675781 -8.242188 0.671875 -8.347656 0.671875 -8.457031 C 0.671875 -8.589844 0.699219 -8.71875 0.757812 -8.835938 C 0.816406 -8.953125 0.949219 -9.011719 1.152344 -9.011719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.390625 -6.003906 L 3.390625 -5.535156 L 2.0625 -5.535156 L 2.050781 -1.785156 C 2.050781 -1.453125 2.078125 -1.203125 2.136719 -1.035156 C 2.238281 -0.734375 2.445312 -0.585938 2.746094 -0.585938 C 2.902344 -0.585938 3.039062 -0.621094 3.152344 -0.695312 C 3.269531 -0.769531 3.402344 -0.886719 3.546875 -1.046875 L 3.71875 -0.90625 L 3.574219 -0.710938 C 3.347656 -0.40625 3.109375 -0.191406 2.859375 -0.0664062 C 2.605469 0.0585938 2.363281 0.125 2.128906 0.125 C 1.617188 0.125 1.269531 -0.105469 1.085938 -0.558594 C 0.988281 -0.808594 0.9375 -1.148438 0.9375 -1.589844 L 0.9375 -5.535156 L 0.226562 -5.535156 C 0.207031 -5.546875 0.191406 -5.558594 0.179688 -5.574219 C 0.167969 -5.585938 0.164062 -5.601562 0.164062 -5.625 C 0.164062 -5.667969 0.171875 -5.703125 0.191406 -5.726562 C 0.210938 -5.75 0.273438 -5.804688 0.378906 -5.890625 C 0.675781 -6.140625 0.894531 -6.339844 1.023438 -6.492188 C 1.15625 -6.648438 1.46875 -7.054688 1.960938 -7.714844 C 2.015625 -7.714844 2.050781 -7.710938 2.058594 -7.703125 C 2.070312 -7.695312 2.078125 -7.660156 2.078125 -7.605469 L 2.078125 -6.003906 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.183594 -5.984375 L 2.929688 -5.984375 L 2.929688 -5.78125 C 2.710938 -5.777344 2.550781 -5.757812 2.449219 -5.722656 C 2.25 -5.667969 2.148438 -5.554688 2.148438 -5.390625 C 2.148438 -5.328125 2.160156 -5.269531 2.179688 -5.203125 C 2.203125 -5.140625 2.242188 -5.046875 2.296875 -4.921875 L 3.820312 -1.542969 L 5.046875 -4.949219 C 5.058594 -4.984375 5.078125 -5.0625 5.105469 -5.183594 C 5.136719 -5.304688 5.148438 -5.386719 5.148438 -5.429688 C 5.148438 -5.542969 5.109375 -5.625 5.03125 -5.675781 C 4.953125 -5.730469 4.855469 -5.757812 4.734375 -5.769531 L 4.53125 -5.78125 L 4.53125 -5.984375 L 6.320312 -5.984375 L 6.320312 -5.78125 C 6.144531 -5.757812 6.011719 -5.699219 5.921875 -5.597656 C 5.832031 -5.5 5.753906 -5.359375 5.691406 -5.183594 L 3.640625 0.246094 C 3.285156 1.183594 2.941406 1.863281 2.617188 2.285156 C 2.292969 2.707031 1.878906 2.917969 1.378906 2.917969 C 1.136719 2.917969 0.910156 2.855469 0.695312 2.734375 C 0.484375 2.613281 0.378906 2.417969 0.378906 2.15625 C 0.378906 1.980469 0.441406 1.839844 0.570312 1.726562 C 0.699219 1.617188 0.859375 1.5625 1.054688 1.5625 C 1.167969 1.5625 1.335938 1.605469 1.558594 1.6875 C 1.78125 1.769531 1.941406 1.808594 2.039062 1.808594 C 2.28125 1.808594 2.535156 1.527344 2.804688 0.964844 C 3.074219 0.398438 3.210938 0.0234375 3.210938 -0.167969 C 3.210938 -0.207031 3.203125 -0.257812 3.191406 -0.3125 C 3.175781 -0.367188 3.160156 -0.417969 3.144531 -0.460938 L 1.0625 -4.96875 C 0.914062 -5.289062 0.785156 -5.5 0.671875 -5.601562 C 0.5625 -5.703125 0.398438 -5.769531 0.183594 -5.800781 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.128906 -1.199219 C 2.242188 -0.902344 2.410156 -0.683594 2.632812 -0.535156 C 2.855469 -0.390625 3.121094 -0.320312 3.425781 -0.320312 C 3.894531 -0.320312 4.292969 -0.550781 4.625 -1.019531 C 4.957031 -1.484375 5.125 -2.136719 5.125 -2.96875 C 5.125 -3.765625 4.949219 -4.363281 4.605469 -4.757812 C 4.261719 -5.152344 3.859375 -5.351562 3.40625 -5.351562 C 3.085938 -5.351562 2.789062 -5.253906 2.527344 -5.054688 C 2.261719 -4.859375 2.128906 -4.664062 2.128906 -4.472656 Z M 0.0585938 2.6875 C 0.464844 2.664062 0.726562 2.574219 0.835938 2.429688 C 0.945312 2.28125 1.003906 2.046875 1.003906 1.730469 L 1.003906 -4.519531 C 1.003906 -4.847656 0.960938 -5.058594 0.882812 -5.152344 C 0.800781 -5.246094 0.652344 -5.292969 0.429688 -5.292969 C 0.382812 -5.292969 0.335938 -5.289062 0.296875 -5.285156 C 0.253906 -5.28125 0.195312 -5.273438 0.117188 -5.261719 L 0.117188 -5.476562 L 0.734375 -5.675781 C 0.757812 -5.679688 1.195312 -5.832031 2.042969 -6.125 C 2.066406 -6.125 2.082031 -6.117188 2.09375 -6.097656 C 2.105469 -6.078125 2.109375 -6.054688 2.109375 -6.027344 L 2.109375 -5.148438 C 2.394531 -5.4375 2.648438 -5.648438 2.863281 -5.789062 C 3.253906 -6.03125 3.65625 -6.152344 4.070312 -6.152344 C 4.667969 -6.152344 5.183594 -5.898438 5.613281 -5.386719 C 6.046875 -4.878906 6.261719 -4.179688 6.261719 -3.292969 C 6.261719 -2.425781 6.003906 -1.636719 5.484375 -0.929688 C 4.964844 -0.222656 4.3125 0.128906 3.527344 0.128906 C 3.285156 0.128906 3.074219 0.101562 2.898438 0.0390625 C 2.621094 -0.0507812 2.363281 -0.21875 2.128906 -0.460938 L 2.128906 1.667969 C 2.128906 2.105469 2.199219 2.375 2.34375 2.472656 C 2.488281 2.574219 2.800781 2.640625 3.28125 2.675781 L 3.28125 2.902344 L 0.0585938 2.902344 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.054688 -6.105469 C 3.664062 -6.105469 4.203125 -5.894531 4.660156 -5.472656 C 5.121094 -5.050781 5.351562 -4.449219 5.351562 -3.671875 L 1.21875 -3.671875 C 1.261719 -2.664062 1.488281 -1.929688 1.902344 -1.472656 C 2.3125 -1.011719 2.800781 -0.78125 3.367188 -0.78125 C 3.820312 -0.78125 4.207031 -0.902344 4.519531 -1.140625 C 4.832031 -1.378906 5.121094 -1.714844 5.382812 -2.15625 L 5.613281 -2.078125 C 5.433594 -1.527344 5.101562 -1.015625 4.613281 -0.546875 C 4.125 -0.078125 3.527344 0.15625 2.820312 0.15625 C 2.003906 0.15625 1.371094 -0.152344 0.925781 -0.769531 C 0.480469 -1.386719 0.261719 -2.09375 0.261719 -2.898438 C 0.261719 -3.769531 0.519531 -4.523438 1.035156 -5.15625 C 1.550781 -5.789062 2.222656 -6.105469 3.054688 -6.105469 Z M 2.675781 -5.632812 C 2.179688 -5.632812 1.804688 -5.414062 1.542969 -4.972656 C 1.402344 -4.738281 1.304688 -4.445312 1.242188 -4.089844 L 3.992188 -4.089844 C 3.945312 -4.523438 3.859375 -4.847656 3.742188 -5.058594 C 3.53125 -5.441406 3.175781 -5.632812 2.675781 -5.632812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.527344 -5.410156 C 2.527344 -5.191406 2.449219 -5.015625 2.300781 -4.878906 C 2.152344 -4.742188 1.980469 -4.675781 1.789062 -4.675781 C 1.582031 -4.675781 1.410156 -4.75 1.277344 -4.894531 C 1.140625 -5.042969 1.074219 -5.210938 1.074219 -5.402344 C 1.074219 -5.601562 1.144531 -5.773438 1.28125 -5.914062 C 1.421875 -6.054688 1.589844 -6.125 1.789062 -6.125 C 1.980469 -6.125 2.152344 -6.058594 2.300781 -5.921875 C 2.449219 -5.785156 2.527344 -5.613281 2.527344 -5.410156 Z M 1.769531 0.109375 C 1.589844 0.109375 1.425781 0.0390625 1.285156 -0.105469 C 1.144531 -0.246094 1.074219 -0.421875 1.074219 -0.625 C 1.074219 -0.820312 1.144531 -0.992188 1.28125 -1.136719 C 1.421875 -1.28125 1.59375 -1.355469 1.796875 -1.355469 C 2 -1.355469 2.179688 -1.285156 2.332031 -1.140625 C 2.484375 -1 2.558594 -0.832031 2.558594 -0.632812 C 2.558594 -0.441406 2.488281 -0.269531 2.34375 -0.117188 C 2.199219 0.0351562 2.007812 0.109375 1.769531 0.109375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 0.214844 -0.167969 C 0.554688 -0.199219 0.777344 -0.257812 0.890625 -0.339844 C 1.066406 -0.464844 1.152344 -0.714844 1.152344 -1.09375 L 1.152344 -4.460938 C 1.152344 -4.78125 1.109375 -4.992188 1.023438 -5.089844 C 0.941406 -5.191406 0.800781 -5.242188 0.605469 -5.242188 C 0.515625 -5.242188 0.445312 -5.238281 0.398438 -5.226562 C 0.355469 -5.21875 0.300781 -5.203125 0.242188 -5.183594 L 0.242188 -5.410156 L 0.710938 -5.566406 C 0.878906 -5.621094 1.15625 -5.726562 1.542969 -5.871094 C 1.929688 -6.019531 2.132812 -6.09375 2.15625 -6.09375 C 2.175781 -6.09375 2.191406 -6.082031 2.195312 -6.0625 C 2.199219 -6.039062 2.199219 -6 2.199219 -5.9375 L 2.199219 -5.058594 C 2.628906 -5.449219 3 -5.71875 3.3125 -5.867188 C 3.625 -6.019531 3.949219 -6.09375 4.277344 -6.09375 C 4.722656 -6.09375 5.082031 -5.941406 5.34375 -5.636719 C 5.484375 -5.472656 5.597656 -5.25 5.691406 -4.96875 C 6.011719 -5.292969 6.292969 -5.535156 6.53125 -5.691406 C 6.941406 -5.960938 7.363281 -6.09375 7.792969 -6.09375 C 8.492188 -6.09375 8.957031 -5.808594 9.191406 -5.242188 C 9.328125 -4.921875 9.394531 -4.410156 9.394531 -3.71875 L 9.394531 -1.015625 C 9.394531 -0.707031 9.460938 -0.496094 9.597656 -0.386719 C 9.734375 -0.277344 9.980469 -0.203125 10.339844 -0.167969 L 10.339844 0 L 7.402344 0 L 7.402344 -0.183594 C 7.78125 -0.21875 8.027344 -0.292969 8.148438 -0.410156 C 8.265625 -0.527344 8.328125 -0.765625 8.328125 -1.125 L 8.328125 -3.933594 C 8.328125 -4.355469 8.28125 -4.664062 8.191406 -4.863281 C 8.03125 -5.21875 7.714844 -5.398438 7.246094 -5.398438 C 6.964844 -5.398438 6.683594 -5.304688 6.40625 -5.117188 C 6.246094 -5.007812 6.046875 -4.835938 5.8125 -4.597656 L 5.8125 -1.261719 C 5.8125 -0.910156 5.875 -0.644531 6 -0.460938 C 6.125 -0.28125 6.382812 -0.183594 6.785156 -0.167969 L 6.785156 0 L 3.796875 0 L 3.796875 -0.167969 C 4.207031 -0.222656 4.46875 -0.320312 4.582031 -0.46875 C 4.695312 -0.617188 4.753906 -0.980469 4.753906 -1.554688 L 4.753906 -3.378906 C 4.753906 -4.046875 4.710938 -4.507812 4.621094 -4.757812 C 4.480469 -5.183594 4.175781 -5.398438 3.710938 -5.398438 C 3.445312 -5.398438 3.1875 -5.324219 2.929688 -5.179688 C 2.671875 -5.035156 2.449219 -4.84375 2.253906 -4.609375 L 2.253906 -1.046875 C 2.253906 -0.71875 2.308594 -0.492188 2.425781 -0.363281 C 2.539062 -0.238281 2.789062 -0.171875 3.175781 -0.167969 L 3.175781 0 L 0.214844 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 1.09375 -8.40625 C 1.09375 -8.59375 1.160156 -8.753906 1.289062 -8.886719 C 1.417969 -9.019531 1.578125 -9.089844 1.769531 -9.089844 C 1.957031 -9.089844 2.117188 -9.023438 2.25 -8.890625 C 2.382812 -8.757812 2.449219 -8.597656 2.449219 -8.40625 C 2.449219 -8.21875 2.382812 -8.058594 2.25 -7.925781 C 2.117188 -7.792969 1.957031 -7.726562 1.769531 -7.726562 C 1.578125 -7.726562 1.417969 -7.792969 1.289062 -7.925781 C 1.160156 -8.058594 1.09375 -8.21875 1.09375 -8.40625 Z M 0.261719 -0.183594 C 0.726562 -0.226562 1.019531 -0.304688 1.140625 -0.417969 C 1.261719 -0.535156 1.320312 -0.847656 1.320312 -1.355469 L 1.320312 -4.460938 C 1.320312 -4.742188 1.300781 -4.9375 1.261719 -5.046875 C 1.199219 -5.222656 1.0625 -5.3125 0.851562 -5.3125 C 0.804688 -5.3125 0.757812 -5.308594 0.710938 -5.300781 C 0.667969 -5.292969 0.535156 -5.257812 0.320312 -5.195312 L 0.320312 -5.398438 L 0.597656 -5.488281 C 1.359375 -5.734375 1.886719 -5.921875 2.1875 -6.046875 C 2.308594 -6.101562 2.386719 -6.125 2.421875 -6.125 C 2.429688 -6.09375 2.433594 -6.0625 2.433594 -6.027344 L 2.433594 -1.355469 C 2.433594 -0.859375 2.496094 -0.550781 2.613281 -0.421875 C 2.734375 -0.296875 3.003906 -0.21875 3.425781 -0.183594 L 3.425781 0 L 0.261719 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 0.242188 -0.183594 C 0.550781 -0.222656 0.765625 -0.296875 0.886719 -0.414062 C 1.011719 -0.527344 1.074219 -0.785156 1.074219 -1.183594 L 1.074219 -4.484375 C 1.074219 -4.761719 1.046875 -4.957031 0.996094 -5.070312 C 0.914062 -5.234375 0.746094 -5.320312 0.488281 -5.320312 C 0.449219 -5.320312 0.410156 -5.316406 0.367188 -5.3125 C 0.328125 -5.308594 0.277344 -5.300781 0.214844 -5.292969 L 0.214844 -5.519531 C 0.394531 -5.574219 0.8125 -5.707031 1.476562 -5.925781 L 2.089844 -6.125 C 2.121094 -6.125 2.136719 -6.117188 2.144531 -6.09375 C 2.152344 -6.070312 2.15625 -6.042969 2.15625 -6.003906 L 2.15625 -5.046875 C 2.554688 -5.417969 2.867188 -5.675781 3.09375 -5.8125 C 3.429688 -6.027344 3.78125 -6.132812 4.148438 -6.132812 C 4.441406 -6.132812 4.710938 -6.046875 4.953125 -5.878906 C 5.421875 -5.550781 5.65625 -4.960938 5.65625 -4.113281 L 5.65625 -1.074219 C 5.65625 -0.761719 5.71875 -0.535156 5.847656 -0.398438 C 5.972656 -0.257812 6.183594 -0.1875 6.476562 -0.183594 L 6.476562 0 L 3.699219 0 L 3.699219 -0.183594 C 4.015625 -0.226562 4.234375 -0.3125 4.363281 -0.445312 C 4.488281 -0.578125 4.550781 -0.867188 4.550781 -1.308594 L 4.550781 -4.089844 C 4.550781 -4.460938 4.480469 -4.769531 4.34375 -5.015625 C 4.203125 -5.261719 3.949219 -5.382812 3.574219 -5.382812 C 3.316406 -5.382812 3.058594 -5.296875 2.792969 -5.125 C 2.644531 -5.023438 2.453125 -4.859375 2.21875 -4.628906 L 2.21875 -0.984375 C 2.21875 -0.671875 2.289062 -0.460938 2.429688 -0.355469 C 2.566406 -0.25 2.785156 -0.191406 3.085938 -0.183594 L 3.085938 0 L 0.242188 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 3.269531 -0.136719 C 3.269531 0.300781 3.109375 0.710938 2.792969 1.085938 C 2.476562 1.464844 2.136719 1.734375 1.769531 1.902344 L 1.648438 1.640625 C 2.0625 1.40625 2.351562 1.152344 2.507812 0.878906 C 2.667969 0.605469 2.746094 0.378906 2.746094 0.195312 C 2.746094 0.132812 2.726562 0.09375 2.6875 0.078125 C 2.648438 0.0625 2.609375 0.0507812 2.566406 0.0507812 L 2.128906 0.0976562 C 1.945312 0.0976562 1.78125 0.0390625 1.628906 -0.0820312 C 1.476562 -0.199219 1.398438 -0.375 1.398438 -0.597656 C 1.398438 -0.773438 1.460938 -0.941406 1.589844 -1.105469 C 1.714844 -1.269531 1.921875 -1.355469 2.207031 -1.355469 C 2.480469 -1.355469 2.726562 -1.246094 2.941406 -1.03125 C 3.160156 -0.816406 3.269531 -0.519531 3.269531 -0.136719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 1.308594 1.203125 C 1.308594 1.570312 1.511719 1.820312 1.921875 1.960938 C 2.332031 2.097656 2.804688 2.167969 3.332031 2.167969 C 4.054688 2.167969 4.640625 2.042969 5.089844 1.792969 C 5.542969 1.542969 5.769531 1.238281 5.769531 0.871094 C 5.769531 0.582031 5.585938 0.386719 5.222656 0.292969 C 4.996094 0.238281 4.566406 0.203125 3.9375 0.195312 C 3.777344 0.191406 3.609375 0.183594 3.429688 0.179688 C 3.253906 0.171875 3.089844 0.164062 2.941406 0.15625 C 2.847656 0.152344 2.691406 0.132812 2.480469 0.105469 C 2.269531 0.0742188 2.109375 0.046875 2.003906 0.0273438 C 1.953125 0.0273438 1.824219 0.164062 1.621094 0.4375 C 1.414062 0.714844 1.308594 0.96875 1.308594 1.203125 Z M 2.15625 -2.1875 C 1.761719 -2.316406 1.453125 -2.550781 1.234375 -2.882812 C 1.015625 -3.21875 0.90625 -3.59375 0.90625 -4.011719 C 0.90625 -4.519531 1.105469 -5 1.511719 -5.457031 C 1.914062 -5.910156 2.484375 -6.140625 3.222656 -6.140625 C 3.539062 -6.140625 3.890625 -6.0625 4.269531 -5.914062 C 4.652344 -5.765625 5.019531 -5.691406 5.371094 -5.691406 C 5.460938 -5.691406 5.601562 -5.691406 5.785156 -5.699219 C 5.96875 -5.707031 6.101562 -5.710938 6.183594 -5.710938 L 6.261719 -5.710938 L 6.261719 -5.183594 L 5.136719 -5.183594 C 5.214844 -5 5.277344 -4.839844 5.320312 -4.707031 C 5.394531 -4.457031 5.429688 -4.214844 5.429688 -3.992188 C 5.429688 -3.496094 5.222656 -3.042969 4.8125 -2.625 C 4.402344 -2.210938 3.851562 -2.003906 3.15625 -2.003906 C 3.046875 -2.003906 2.855469 -2.023438 2.570312 -2.0625 C 2.445312 -2.0625 2.28125 -1.957031 2.074219 -1.746094 C 1.867188 -1.53125 1.765625 -1.359375 1.765625 -1.222656 C 1.765625 -1.085938 1.917969 -0.984375 2.21875 -0.917969 C 2.417969 -0.875 2.640625 -0.851562 2.882812 -0.851562 C 4 -0.851562 4.757812 -0.789062 5.15625 -0.664062 C 5.8125 -0.460938 6.140625 -0.0234375 6.140625 0.652344 C 6.140625 1.335938 5.757812 1.882812 4.988281 2.292969 C 4.222656 2.699219 3.449219 2.902344 2.667969 2.902344 C 1.957031 2.902344 1.394531 2.757812 0.976562 2.46875 C 0.558594 2.179688 0.351562 1.878906 0.351562 1.5625 C 0.351562 1.40625 0.40625 1.253906 0.515625 1.101562 C 0.628906 0.953125 0.847656 0.730469 1.171875 0.4375 L 1.601562 0.0507812 L 1.679688 -0.0273438 C 1.480469 -0.105469 1.332031 -0.179688 1.230469 -0.253906 C 1.058594 -0.386719 0.96875 -0.542969 0.96875 -0.714844 C 0.96875 -0.875 1.042969 -1.054688 1.195312 -1.246094 C 1.34375 -1.441406 1.664062 -1.753906 2.15625 -2.1875 Z M 3.390625 -2.316406 C 3.628906 -2.316406 3.832031 -2.382812 3.992188 -2.511719 C 4.25 -2.722656 4.382812 -3.082031 4.382812 -3.601562 C 4.382812 -4.011719 4.277344 -4.476562 4.066406 -4.992188 C 3.855469 -5.507812 3.503906 -5.769531 3.015625 -5.769531 C 2.589844 -5.769531 2.296875 -5.566406 2.136719 -5.164062 C 2.054688 -4.949219 2.011719 -4.6875 2.011719 -4.375 C 2.011719 -3.84375 2.140625 -3.371094 2.394531 -2.949219 C 2.652344 -2.527344 2.984375 -2.316406 3.390625 -2.316406 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 0.117188 -0.183594 C 0.472656 -0.230469 0.707031 -0.316406 0.816406 -0.445312 C 0.925781 -0.574219 0.984375 -0.875 0.984375 -1.355469 L 0.984375 -7.605469 C 0.984375 -7.847656 0.953125 -8.027344 0.886719 -8.140625 C 0.824219 -8.257812 0.671875 -8.3125 0.429688 -8.3125 C 0.382812 -8.3125 0.335938 -8.308594 0.289062 -8.304688 C 0.242188 -8.296875 0.191406 -8.289062 0.136719 -8.28125 L 0.136719 -8.515625 C 0.328125 -8.570312 0.5625 -8.640625 0.84375 -8.71875 C 1.125 -8.800781 1.316406 -8.859375 1.425781 -8.894531 L 2.050781 -9.089844 L 2.0625 -9.042969 L 2.0625 -5.046875 C 2.335938 -5.359375 2.582031 -5.589844 2.792969 -5.734375 C 3.175781 -5.996094 3.585938 -6.125 4.03125 -6.125 C 4.734375 -6.125 5.210938 -5.832031 5.46875 -5.242188 C 5.609375 -4.929688 5.675781 -4.519531 5.675781 -4.011719 L 5.675781 -1.355469 C 5.675781 -0.894531 5.730469 -0.59375 5.835938 -0.457031 C 5.941406 -0.316406 6.160156 -0.226562 6.492188 -0.183594 L 6.492188 0 L 3.671875 0 L 3.671875 -0.183594 C 4.050781 -0.234375 4.292969 -0.324219 4.402344 -0.449219 C 4.511719 -0.574219 4.5625 -0.875 4.5625 -1.355469 L 4.5625 -3.992188 C 4.5625 -4.414062 4.492188 -4.753906 4.351562 -5.011719 C 4.210938 -5.273438 3.945312 -5.402344 3.554688 -5.402344 C 3.214844 -5.402344 2.886719 -5.28125 2.570312 -5.039062 C 2.253906 -4.796875 2.097656 -4.636719 2.097656 -4.5625 L 2.097656 -1.355469 C 2.097656 -0.867188 2.152344 -0.5625 2.265625 -0.441406 C 2.378906 -0.320312 2.621094 -0.234375 2.988281 -0.183594 L 2.988281 0 L 0.117188 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 0.046875 -8.28125 L 0.046875 -8.503906 C 0.539062 -8.617188 0.984375 -8.742188 1.378906 -8.878906 C 1.773438 -9.019531 1.988281 -9.089844 2.019531 -9.089844 C 2.027344 -9.0625 2.03125 -9.035156 2.03125 -9.011719 L 2.03125 -5.046875 C 2.144531 -5.253906 2.3125 -5.453125 2.539062 -5.636719 C 2.9375 -5.964844 3.398438 -6.125 3.917969 -6.125 C 4.558594 -6.125 5.101562 -5.855469 5.554688 -5.320312 C 6.003906 -4.78125 6.230469 -4.082031 6.230469 -3.222656 C 6.230469 -2.300781 5.9375 -1.515625 5.351562 -0.859375 C 4.765625 -0.203125 3.996094 0.125 3.039062 0.125 C 2.558594 0.125 2.085938 0.0273438 1.621094 -0.164062 C 1.15625 -0.355469 0.925781 -0.542969 0.925781 -0.734375 L 0.925781 -7.617188 C 0.925781 -7.867188 0.890625 -8.046875 0.820312 -8.152344 C 0.75 -8.261719 0.589844 -8.3125 0.339844 -8.3125 Z M 2.003906 -0.949219 C 2.042969 -0.722656 2.214844 -0.5625 2.511719 -0.464844 C 2.8125 -0.367188 3.074219 -0.320312 3.300781 -0.320312 C 3.910156 -0.320312 4.359375 -0.546875 4.652344 -1.003906 C 4.945312 -1.457031 5.089844 -2.007812 5.089844 -2.65625 C 5.089844 -3.304688 4.953125 -3.902344 4.679688 -4.449219 C 4.40625 -5 3.964844 -5.273438 3.351562 -5.273438 C 3.042969 -5.273438 2.742188 -5.179688 2.449219 -4.988281 C 2.152344 -4.800781 2.003906 -4.5625 2.003906 -4.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 0.339844 -3.019531 C 0.339844 -3.882812 0.613281 -4.613281 1.160156 -5.210938 C 1.710938 -5.808594 2.417969 -6.105469 3.28125 -6.105469 C 4.140625 -6.105469 4.851562 -5.824219 5.417969 -5.261719 C 5.980469 -4.695312 6.261719 -3.945312 6.261719 -3.007812 C 6.261719 -2.144531 5.988281 -1.394531 5.441406 -0.753906 C 4.894531 -0.117188 4.1875 0.203125 3.320312 0.203125 C 2.488281 0.203125 1.78125 -0.105469 1.203125 -0.714844 C 0.625 -1.328125 0.339844 -2.097656 0.339844 -3.019531 Z M 3.097656 -5.714844 C 2.753906 -5.714844 2.457031 -5.601562 2.207031 -5.378906 C 1.773438 -4.984375 1.554688 -4.300781 1.554688 -3.332031 C 1.554688 -2.558594 1.730469 -1.839844 2.078125 -1.171875 C 2.429688 -0.503906 2.914062 -0.167969 3.535156 -0.167969 C 4.019531 -0.167969 4.394531 -0.394531 4.65625 -0.839844 C 4.921875 -1.285156 5.050781 -1.871094 5.050781 -2.597656 C 5.050781 -3.347656 4.886719 -4.054688 4.550781 -4.71875 C 4.214844 -5.382812 3.734375 -5.714844 3.097656 -5.714844 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 0.0585938 -0.214844 C 0.457031 -0.25 0.722656 -0.320312 0.851562 -0.425781 C 0.984375 -0.53125 1.046875 -0.757812 1.046875 -1.105469 L 1.046875 -4.042969 C 1.046875 -4.472656 1.007812 -4.78125 0.925781 -4.964844 C 0.847656 -5.148438 0.699219 -5.242188 0.488281 -5.242188 C 0.445312 -5.242188 0.386719 -5.234375 0.316406 -5.222656 C 0.246094 -5.214844 0.167969 -5.199219 0.0898438 -5.183594 L 0.0898438 -5.398438 C 0.339844 -5.484375 0.59375 -5.574219 0.851562 -5.664062 C 1.113281 -5.753906 1.292969 -5.820312 1.394531 -5.859375 C 1.609375 -5.941406 1.832031 -6.035156 2.0625 -6.140625 C 2.09375 -6.140625 2.113281 -6.128906 2.117188 -6.105469 C 2.125 -6.085938 2.128906 -6.039062 2.128906 -5.96875 L 2.128906 -4.902344 C 2.40625 -5.289062 2.675781 -5.589844 2.933594 -5.808594 C 3.191406 -6.023438 3.460938 -6.132812 3.738281 -6.132812 C 3.957031 -6.132812 4.136719 -6.066406 4.277344 -5.933594 C 4.417969 -5.800781 4.484375 -5.636719 4.484375 -5.4375 C 4.484375 -5.257812 4.433594 -5.109375 4.324219 -4.988281 C 4.21875 -4.867188 4.085938 -4.804688 3.925781 -4.804688 C 3.761719 -4.804688 3.59375 -4.878906 3.425781 -5.03125 C 3.261719 -5.183594 3.128906 -5.261719 3.035156 -5.261719 C 2.882812 -5.261719 2.695312 -5.136719 2.472656 -4.890625 C 2.253906 -4.648438 2.140625 -4.394531 2.140625 -4.132812 L 2.140625 -1.199219 C 2.140625 -0.824219 2.230469 -0.566406 2.402344 -0.417969 C 2.574219 -0.273438 2.863281 -0.207031 3.269531 -0.214844 L 3.269531 0 L 0.0585938 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.691406 -2.050781 L 0.90625 -2.050781 C 1.003906 -1.554688 1.140625 -1.175781 1.308594 -0.910156 C 1.613281 -0.425781 2.058594 -0.183594 2.644531 -0.183594 C 2.96875 -0.183594 3.226562 -0.273438 3.414062 -0.453125 C 3.601562 -0.632812 3.699219 -0.867188 3.699219 -1.152344 C 3.699219 -1.335938 3.644531 -1.511719 3.535156 -1.679688 C 3.425781 -1.847656 3.234375 -2.015625 2.960938 -2.175781 L 2.234375 -2.589844 C 1.699219 -2.878906 1.304688 -3.167969 1.054688 -3.457031 C 0.804688 -3.746094 0.675781 -4.089844 0.675781 -4.484375 C 0.675781 -4.972656 0.851562 -5.371094 1.199219 -5.683594 C 1.546875 -5.996094 1.980469 -6.152344 2.507812 -6.152344 C 2.738281 -6.152344 2.988281 -6.109375 3.265625 -6.023438 C 3.539062 -5.9375 3.695312 -5.890625 3.730469 -5.890625 C 3.808594 -5.890625 3.863281 -5.902344 3.898438 -5.925781 C 3.933594 -5.945312 3.964844 -5.980469 3.992188 -6.027344 L 4.148438 -6.027344 L 4.191406 -4.210938 L 3.992188 -4.210938 C 3.90625 -4.632812 3.785156 -4.960938 3.640625 -5.195312 C 3.371094 -5.628906 2.980469 -5.847656 2.472656 -5.847656 C 2.167969 -5.847656 1.929688 -5.753906 1.757812 -5.566406 C 1.585938 -5.378906 1.496094 -5.160156 1.496094 -4.910156 C 1.496094 -4.511719 1.796875 -4.152344 2.394531 -3.839844 L 3.253906 -3.378906 C 4.179688 -2.875 4.640625 -2.289062 4.640625 -1.621094 C 4.640625 -1.109375 4.449219 -0.691406 4.066406 -0.363281 C 3.683594 -0.0390625 3.179688 0.125 2.558594 0.125 C 2.296875 0.125 2.003906 0.0820312 1.671875 -0.0078125 C 1.34375 -0.09375 1.148438 -0.136719 1.085938 -0.136719 C 1.035156 -0.136719 0.988281 -0.117188 0.949219 -0.0820312 C 0.910156 -0.0429688 0.882812 0 0.859375 0.0507812 L 0.691406 0.0507812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 0.398438 -0.148438 C 1.984375 -1.796875 3.0625 -3.011719 3.632812 -3.78125 C 4.203125 -4.554688 4.484375 -5.308594 4.484375 -6.042969 C 4.484375 -6.683594 4.3125 -7.171875 3.964844 -7.507812 C 3.617188 -7.84375 3.203125 -8.015625 2.722656 -8.015625 C 2.128906 -8.015625 1.644531 -7.796875 1.277344 -7.363281 C 1.074219 -7.125 0.875 -6.757812 0.691406 -6.261719 L 0.410156 -6.320312 C 0.628906 -7.320312 0.996094 -8.011719 1.511719 -8.402344 C 2.03125 -8.789062 2.589844 -8.984375 3.183594 -8.984375 C 3.917969 -8.984375 4.511719 -8.753906 4.964844 -8.289062 C 5.417969 -7.828125 5.644531 -7.261719 5.644531 -6.59375 C 5.644531 -5.882812 5.398438 -5.199219 4.910156 -4.539062 C 4.417969 -3.878906 3.351562 -2.703125 1.710938 -1.015625 L 4.699219 -1.015625 C 5.117188 -1.015625 5.410156 -1.066406 5.578125 -1.164062 C 5.75 -1.265625 5.941406 -1.507812 6.152344 -1.894531 L 6.320312 -1.816406 L 5.597656 0 L 0.398438 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 5.566406 -3.085938 C 5.03125 -2.984375 4.640625 -2.863281 4.386719 -2.722656 C 3.949219 -2.464844 3.730469 -2.085938 3.730469 -1.589844 L 3.71875 0.417969 C 3.71875 1.121094 3.457031 1.621094 2.9375 1.921875 C 2.414062 2.226562 1.710938 2.375 0.828125 2.375 L 0.828125 2.082031 C 1.375 1.972656 1.769531 1.84375 2.019531 1.691406 C 2.460938 1.421875 2.683594 1.019531 2.683594 0.480469 L 2.695312 -1.355469 C 2.695312 -1.945312 2.90625 -2.394531 3.328125 -2.707031 C 3.75 -3.019531 4.367188 -3.210938 5.183594 -3.28125 L 5.183594 -3.3125 C 4.242188 -3.5 3.628906 -3.6875 3.351562 -3.875 C 2.914062 -4.167969 2.695312 -4.679688 2.695312 -5.410156 L 2.695312 -7.003906 C 2.695312 -7.625 2.4375 -8.085938 1.921875 -8.386719 C 1.628906 -8.554688 1.265625 -8.664062 0.828125 -8.71875 L 0.828125 -9.011719 C 1.941406 -9.011719 2.703125 -8.832031 3.109375 -8.472656 C 3.515625 -8.113281 3.71875 -7.632812 3.71875 -7.03125 L 3.730469 -5.242188 C 3.730469 -4.613281 3.957031 -4.160156 4.414062 -3.886719 C 4.675781 -3.726562 5.058594 -3.617188 5.566406 -3.5625 Z "/>
</symbol>
</g>
</defs>
<g id="surface115">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
<use xlink:href="#glyph0-2" x="36" y="30"/>
<use xlink:href="#glyph0-3" x="38" y="30"/>
<use xlink:href="#glyph0-4" x="42" y="30"/>
<use xlink:href="#glyph0-5" x="49" y="30"/>
<use xlink:href="#glyph0-6" x="56" y="30"/>
<use xlink:href="#glyph0-2" x="62" y="30"/>
<use xlink:href="#glyph0-7" x="64" y="30"/>
<use xlink:href="#glyph0-8" x="68" y="30"/>
<use xlink:href="#glyph0-2" x="71" y="30"/>
<use xlink:href="#glyph0-9" x="73" y="30"/>
<use xlink:href="#glyph0-10" x="83" y="30"/>
<use xlink:href="#glyph0-11" x="87" y="30"/>
<use xlink:href="#glyph0-6" x="94" y="30"/>
<use xlink:href="#glyph0-2" x="100" y="30"/>
<use xlink:href="#glyph0-12" x="102" y="30"/>
<use xlink:href="#glyph0-8" x="105" y="30"/>
<use xlink:href="#glyph0-2" x="108" y="30"/>
<use xlink:href="#glyph0-11" x="110" y="30"/>
<use xlink:href="#glyph0-6" x="117" y="30"/>
<use xlink:href="#glyph0-10" x="123" y="30"/>
<use xlink:href="#glyph0-13" x="127" y="30"/>
<use xlink:href="#glyph0-14" x="134" y="30"/>
<use xlink:href="#glyph0-15" x="141" y="30"/>
<use xlink:href="#glyph0-16" x="148" y="30"/>
<use xlink:href="#glyph0-17" x="155" y="30"/>
<use xlink:href="#glyph0-18" x="159" y="30"/>
<use xlink:href="#glyph0-2" x="164" y="30"/>
<use xlink:href="#glyph0-7" x="166" y="30"/>
<use xlink:href="#glyph0-8" x="170" y="30"/>
<use xlink:href="#glyph0-19" x="173" y="30"/>
<use xlink:href="#glyph0-20" x="180" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.984375 -8.820312 L 5.984375 -8.605469 L 3.15625 0.125 L 2.296875 0.125 L 4.933594 -7.839844 L 2.097656 -7.839844 C 1.675781 -7.839844 1.371094 -7.769531 1.1875 -7.628906 C 1.003906 -7.492188 0.769531 -7.199219 0.488281 -6.757812 L 0.261719 -6.863281 C 0.542969 -7.558594 0.71875 -7.984375 0.785156 -8.148438 C 0.851562 -8.3125 0.941406 -8.535156 1.046875 -8.820312 Z "/>
</symbol>
</g>
</defs>
<g id="surface36">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 4.933594 -8.976562 C 5.449219 -8.976562 5.960938 -8.90625 6.457031 -8.761719 C 6.957031 -8.621094 7.242188 -8.546875 7.316406 -8.546875 C 7.507812 -8.546875 7.644531 -8.585938 7.722656 -8.660156 C 7.804688 -8.734375 7.875 -8.839844 7.929688 -8.976562 L 8.222656 -8.976562 L 8.328125 -6.171875 L 8.019531 -6.171875 C 7.746094 -6.820312 7.464844 -7.300781 7.175781 -7.617188 C 6.648438 -8.171875 5.964844 -8.449219 5.125 -8.449219 C 4.269531 -8.449219 3.515625 -8.125 2.867188 -7.476562 C 2.21875 -6.828125 1.894531 -5.757812 1.894531 -4.269531 C 1.894531 -3.042969 2.21875 -2.082031 2.863281 -1.394531 C 3.511719 -0.703125 4.308594 -0.359375 5.261719 -0.359375 C 5.421875 -0.359375 5.609375 -0.375 5.828125 -0.402344 C 6.042969 -0.433594 6.25 -0.480469 6.445312 -0.546875 C 6.761719 -0.652344 6.960938 -0.742188 7.039062 -0.816406 C 7.117188 -0.894531 7.15625 -1.003906 7.15625 -1.152344 L 7.15625 -3.28125 C 7.15625 -3.792969 7.082031 -4.113281 6.9375 -4.238281 C 6.792969 -4.363281 6.472656 -4.441406 5.984375 -4.472656 L 5.984375 -4.71875 L 9.382812 -4.71875 L 9.382812 -4.472656 C 9.050781 -4.449219 8.832031 -4.398438 8.722656 -4.308594 C 8.542969 -4.171875 8.449219 -3.882812 8.449219 -3.449219 L 8.449219 -0.828125 C 8.449219 -0.671875 8.066406 -0.460938 7.300781 -0.203125 C 6.535156 0.0585938 5.796875 0.1875 5.089844 0.1875 C 3.789062 0.1875 2.691406 -0.191406 1.796875 -0.949219 C 0.8125 -1.789062 0.320312 -2.914062 0.320312 -4.324219 C 0.320312 -5.566406 0.710938 -6.628906 1.496094 -7.511719 C 2.359375 -8.488281 3.507812 -8.976562 4.933594 -8.976562 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.054688 -6.105469 C 3.664062 -6.105469 4.203125 -5.894531 4.660156 -5.472656 C 5.121094 -5.050781 5.351562 -4.449219 5.351562 -3.671875 L 1.21875 -3.671875 C 1.261719 -2.664062 1.488281 -1.929688 1.902344 -1.472656 C 2.3125 -1.011719 2.800781 -0.78125 3.367188 -0.78125 C 3.820312 -0.78125 4.207031 -0.902344 4.519531 -1.140625 C 4.832031 -1.378906 5.121094 -1.714844 5.382812 -2.15625 L 5.613281 -2.078125 C 5.433594 -1.527344 5.101562 -1.015625 4.613281 -0.546875 C 4.125 -0.078125 3.527344 0.15625 2.820312 0.15625 C 2.003906 0.15625 1.371094 -0.152344 0.925781 -0.769531 C 0.480469 -1.386719 0.261719 -2.09375 0.261719 -2.898438 C 0.261719 -3.769531 0.519531 -4.523438 1.035156 -5.15625 C 1.550781 -5.789062 2.222656 -6.105469 3.054688 -6.105469 Z M 2.675781 -5.632812 C 2.179688 -5.632812 1.804688 -5.414062 1.542969 -4.972656 C 1.402344 -4.738281 1.304688 -4.445312 1.242188 -4.089844 L 3.992188 -4.089844 C 3.945312 -4.523438 3.859375 -4.847656 3.742188 -5.058594 C 3.53125 -5.441406 3.175781 -5.632812 2.675781 -5.632812 Z M 5.027344 -8.621094 C 5.027344 -8.496094 4.992188 -8.390625 4.921875 -8.308594 C 4.851562 -8.226562 4.75 -8.140625 4.617188 -8.054688 L 2.566406 -6.757812 L 2.023438 -6.757812 L 3.984375 -8.730469 C 4.054688 -8.800781 4.140625 -8.871094 4.246094 -8.945312 C 4.347656 -9.019531 4.460938 -9.054688 4.578125 -9.054688 C 4.691406 -9.054688 4.792969 -9.015625 4.886719 -8.933594 C 4.980469 -8.855469 5.027344 -8.75 5.027344 -8.621094 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 0.242188 -0.183594 C 0.550781 -0.222656 0.765625 -0.296875 0.886719 -0.414062 C 1.011719 -0.527344 1.074219 -0.785156 1.074219 -1.183594 L 1.074219 -4.484375 C 1.074219 -4.761719 1.046875 -4.957031 0.996094 -5.070312 C 0.914062 -5.234375 0.746094 -5.320312 0.488281 -5.320312 C 0.449219 -5.320312 0.410156 -5.316406 0.367188 -5.3125 C 0.328125 -5.308594 0.277344 -5.300781 0.214844 -5.292969 L 0.214844 -5.519531 C 0.394531 -5.574219 0.8125 -5.707031 1.476562 -5.925781 L 2.089844 -6.125 C 2.121094 -6.125 2.136719 -6.117188 2.144531 -6.09375 C 2.152344 -6.070312 2.15625 -6.042969 2.15625 -6.003906 L 2.15625 -5.046875 C 2.554688 -5.417969 2.867188 -5.675781 3.09375 -5.8125 C 3.429688 -6.027344 3.78125 -6.132812 4.148438 -6.132812 C 4.441406 -6.132812 4.710938 -6.046875 4.953125 -5.878906 C 5.421875 -5.550781 5.65625 -4.960938 5.65625 -4.113281 L 5.65625 -1.074219 C 5.65625 -0.761719 5.71875 -0.535156 5.847656 -0.398438 C 5.972656 -0.257812 6.183594 -0.1875 6.476562 -0.183594 L 6.476562 0 L 3.699219 0 L 3.699219 -0.183594 C 4.015625 -0.226562 4.234375 -0.3125 4.363281 -0.445312 C 4.488281 -0.578125 4.550781 -0.867188 4.550781 -1.308594 L 4.550781 -4.089844 C 4.550781 -4.460938 4.480469 -4.769531 4.34375 -5.015625 C 4.203125 -5.261719 3.949219 -5.382812 3.574219 -5.382812 C 3.316406 -5.382812 3.058594 -5.296875 2.792969 -5.125 C 2.644531 -5.023438 2.453125 -4.859375 2.21875 -4.628906 L 2.21875 -0.984375 C 2.21875 -0.671875 2.289062 -0.460938 2.429688 -0.355469 C 2.566406 -0.25 2.785156 -0.191406 3.085938 -0.183594 L 3.085938 0 L 0.242188 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.0585938 -0.214844 C 0.457031 -0.25 0.722656 -0.320312 0.851562 -0.425781 C 0.984375 -0.53125 1.046875 -0.757812 1.046875 -1.105469 L 1.046875 -4.042969 C 1.046875 -4.472656 1.007812 -4.78125 0.925781 -4.964844 C 0.847656 -5.148438 0.699219 -5.242188 0.488281 -5.242188 C 0.445312 -5.242188 0.386719 -5.234375 0.316406 -5.222656 C 0.246094 -5.214844 0.167969 -5.199219 0.0898438 -5.183594 L 0.0898438 -5.398438 C 0.339844 -5.484375 0.59375 -5.574219 0.851562 -5.664062 C 1.113281 -5.753906 1.292969 -5.820312 1.394531 -5.859375 C 1.609375 -5.941406 1.832031 -6.035156 2.0625 -6.140625 C 2.09375 -6.140625 2.113281 -6.128906 2.117188 -6.105469 C 2.125 -6.085938 2.128906 -6.039062 2.128906 -5.96875 L 2.128906 -4.902344 C 2.40625 -5.289062 2.675781 -5.589844 2.933594 -5.808594 C 3.191406 -6.023438 3.460938 -6.132812 3.738281 -6.132812 C 3.957031 -6.132812 4.136719 -6.066406 4.277344 -5.933594 C 4.417969 -5.800781 4.484375 -5.636719 4.484375 -5.4375 C 4.484375 -5.257812 4.433594 -5.109375 4.324219 -4.988281 C 4.21875 -4.867188 4.085938 -4.804688 3.925781 -4.804688 C 3.761719 -4.804688 3.59375 -4.878906 3.425781 -5.03125 C 3.261719 -5.183594 3.128906 -5.261719 3.035156 -5.261719 C 2.882812 -5.261719 2.695312 -5.136719 2.472656 -4.890625 C 2.253906 -4.648438 2.140625 -4.394531 2.140625 -4.132812 L 2.140625 -1.199219 C 2.140625 -0.824219 2.230469 -0.566406 2.402344 -0.417969 C 2.574219 -0.273438 2.863281 -0.207031 3.269531 -0.214844 L 3.269531 0 L 0.0585938 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.820312 -3.605469 C 3.320312 -3.441406 2.910156 -3.257812 2.585938 -3.058594 C 1.960938 -2.671875 1.648438 -2.234375 1.648438 -1.746094 C 1.648438 -1.351562 1.777344 -1.058594 2.039062 -0.871094 C 2.207031 -0.75 2.394531 -0.691406 2.605469 -0.691406 C 2.890625 -0.691406 3.164062 -0.769531 3.425781 -0.929688 C 3.691406 -1.089844 3.820312 -1.296875 3.820312 -1.542969 Z M 0.488281 -1.296875 C 0.488281 -1.925781 0.804688 -2.449219 1.433594 -2.871094 C 1.832031 -3.132812 2.628906 -3.484375 3.820312 -3.933594 L 3.820312 -4.484375 C 3.820312 -4.929688 3.777344 -5.238281 3.691406 -5.410156 C 3.542969 -5.699219 3.238281 -5.847656 2.773438 -5.847656 C 2.550781 -5.847656 2.339844 -5.789062 2.140625 -5.675781 C 1.941406 -5.558594 1.84375 -5.398438 1.84375 -5.195312 C 1.84375 -5.144531 1.851562 -5.054688 1.875 -4.929688 C 1.898438 -4.808594 1.90625 -4.730469 1.90625 -4.695312 C 1.90625 -4.453125 1.828125 -4.28125 1.667969 -4.1875 C 1.574219 -4.128906 1.46875 -4.101562 1.339844 -4.101562 C 1.144531 -4.101562 0.996094 -4.164062 0.890625 -4.292969 C 0.789062 -4.421875 0.734375 -4.5625 0.734375 -4.71875 C 0.734375 -5.023438 0.921875 -5.339844 1.296875 -5.671875 C 1.671875 -6.003906 2.222656 -6.171875 2.949219 -6.171875 C 3.792969 -6.171875 4.363281 -5.898438 4.660156 -5.351562 C 4.820312 -5.050781 4.902344 -4.617188 4.902344 -4.042969 L 4.902344 -1.433594 C 4.902344 -1.179688 4.917969 -1.007812 4.953125 -0.910156 C 5.011719 -0.742188 5.128906 -0.65625 5.304688 -0.65625 C 5.40625 -0.65625 5.488281 -0.671875 5.554688 -0.703125 C 5.617188 -0.734375 5.730469 -0.808594 5.890625 -0.925781 L 5.890625 -0.585938 C 5.753906 -0.417969 5.601562 -0.277344 5.441406 -0.167969 C 5.199219 -0.00390625 4.953125 0.078125 4.699219 0.078125 C 4.40625 0.078125 4.191406 -0.015625 4.058594 -0.207031 C 3.925781 -0.398438 3.855469 -0.628906 3.839844 -0.890625 C 3.511719 -0.605469 3.230469 -0.394531 2.996094 -0.253906 C 2.601562 -0.0195312 2.222656 0.0976562 1.867188 0.0976562 C 1.496094 0.0976562 1.171875 -0.0351562 0.898438 -0.296875 C 0.625 -0.558594 0.488281 -0.890625 0.488281 -1.296875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.390625 -6.003906 L 3.390625 -5.535156 L 2.0625 -5.535156 L 2.050781 -1.785156 C 2.050781 -1.453125 2.078125 -1.203125 2.136719 -1.035156 C 2.238281 -0.734375 2.445312 -0.585938 2.746094 -0.585938 C 2.902344 -0.585938 3.039062 -0.621094 3.152344 -0.695312 C 3.269531 -0.769531 3.402344 -0.886719 3.546875 -1.046875 L 3.71875 -0.90625 L 3.574219 -0.710938 C 3.347656 -0.40625 3.109375 -0.191406 2.859375 -0.0664062 C 2.605469 0.0585938 2.363281 0.125 2.128906 0.125 C 1.617188 0.125 1.269531 -0.105469 1.085938 -0.558594 C 0.988281 -0.808594 0.9375 -1.148438 0.9375 -1.589844 L 0.9375 -5.535156 L 0.226562 -5.535156 C 0.207031 -5.546875 0.191406 -5.558594 0.179688 -5.574219 C 0.167969 -5.585938 0.164062 -5.601562 0.164062 -5.625 C 0.164062 -5.667969 0.171875 -5.703125 0.191406 -5.726562 C 0.210938 -5.75 0.273438 -5.804688 0.378906 -5.890625 C 0.675781 -6.140625 0.894531 -6.339844 1.023438 -6.492188 C 1.15625 -6.648438 1.46875 -7.054688 1.960938 -7.714844 C 2.015625 -7.714844 2.050781 -7.710938 2.058594 -7.703125 C 2.070312 -7.695312 2.078125 -7.660156 2.078125 -7.605469 L 2.078125 -6.003906 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 1.09375 -8.40625 C 1.09375 -8.59375 1.160156 -8.753906 1.289062 -8.886719 C 1.417969 -9.019531 1.578125 -9.089844 1.769531 -9.089844 C 1.957031 -9.089844 2.117188 -9.023438 2.25 -8.890625 C 2.382812 -8.757812 2.449219 -8.597656 2.449219 -8.40625 C 2.449219 -8.21875 2.382812 -8.058594 2.25 -7.925781 C 2.117188 -7.792969 1.957031 -7.726562 1.769531 -7.726562 C 1.578125 -7.726562 1.417969 -7.792969 1.289062 -7.925781 C 1.160156 -8.058594 1.09375 -8.21875 1.09375 -8.40625 Z M 0.261719 -0.183594 C 0.726562 -0.226562 1.019531 -0.304688 1.140625 -0.417969 C 1.261719 -0.535156 1.320312 -0.847656 1.320312 -1.355469 L 1.320312 -4.460938 C 1.320312 -4.742188 1.300781 -4.9375 1.261719 -5.046875 C 1.199219 -5.222656 1.0625 -5.3125 0.851562 -5.3125 C 0.804688 -5.3125 0.757812 -5.308594 0.710938 -5.300781 C 0.667969 -5.292969 0.535156 -5.257812 0.320312 -5.195312 L 0.320312 -5.398438 L 0.597656 -5.488281 C 1.359375 -5.734375 1.886719 -5.921875 2.1875 -6.046875 C 2.308594 -6.101562 2.386719 -6.125 2.421875 -6.125 C 2.429688 -6.09375 2.433594 -6.0625 2.433594 -6.027344 L 2.433594 -1.355469 C 2.433594 -0.859375 2.496094 -0.550781 2.613281 -0.421875 C 2.734375 -0.296875 3.003906 -0.21875 3.425781 -0.183594 L 3.425781 0 L 0.261719 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 0.339844 -3.019531 C 0.339844 -3.882812 0.613281 -4.613281 1.160156 -5.210938 C 1.710938 -5.808594 2.417969 -6.105469 3.28125 -6.105469 C 4.140625 -6.105469 4.851562 -5.824219 5.417969 -5.261719 C 5.980469 -4.695312 6.261719 -3.945312 6.261719 -3.007812 C 6.261719 -2.144531 5.988281 -1.394531 5.441406 -0.753906 C 4.894531 -0.117188 4.1875 0.203125 3.320312 0.203125 C 2.488281 0.203125 1.78125 -0.105469 1.203125 -0.714844 C 0.625 -1.328125 0.339844 -2.097656 0.339844 -3.019531 Z M 3.097656 -5.714844 C 2.753906 -5.714844 2.457031 -5.601562 2.207031 -5.378906 C 1.773438 -4.984375 1.554688 -4.300781 1.554688 -3.332031 C 1.554688 -2.558594 1.730469 -1.839844 2.078125 -1.171875 C 2.429688 -0.503906 2.914062 -0.167969 3.535156 -0.167969 C 4.019531 -0.167969 4.394531 -0.394531 4.65625 -0.839844 C 4.921875 -1.285156 5.050781 -1.871094 5.050781 -2.597656 C 5.050781 -3.347656 4.886719 -4.054688 4.550781 -4.71875 C 4.214844 -5.382812 3.734375 -5.714844 3.097656 -5.714844 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.15625 -6.152344 C 3.472656 -6.152344 3.765625 -6.082031 4.03125 -5.945312 C 4.203125 -5.851562 4.371094 -5.726562 4.53125 -5.566406 L 4.53125 -7.636719 C 4.53125 -7.902344 4.5 -8.082031 4.441406 -8.183594 C 4.382812 -8.285156 4.246094 -8.332031 4.023438 -8.332031 C 3.972656 -8.332031 3.925781 -8.332031 3.886719 -8.328125 C 3.847656 -8.324219 3.761719 -8.3125 3.625 -8.300781 L 3.625 -8.515625 L 4.160156 -8.652344 C 4.355469 -8.703125 4.550781 -8.757812 4.746094 -8.816406 C 4.941406 -8.871094 5.113281 -8.925781 5.261719 -8.976562 C 5.332031 -9 5.445312 -9.039062 5.605469 -9.101562 L 5.644531 -9.089844 L 5.632812 -8.40625 C 5.628906 -8.15625 5.621094 -7.902344 5.617188 -7.640625 C 5.613281 -7.378906 5.613281 -7.117188 5.613281 -6.863281 L 5.597656 -1.542969 C 5.597656 -1.261719 5.632812 -1.0625 5.703125 -0.949219 C 5.773438 -0.835938 5.957031 -0.78125 6.257812 -0.78125 C 6.304688 -0.78125 6.351562 -0.78125 6.398438 -0.785156 C 6.445312 -0.785156 6.496094 -0.792969 6.542969 -0.800781 L 6.542969 -0.585938 C 6.515625 -0.578125 6.203125 -0.46875 5.597656 -0.261719 L 4.578125 0.125 L 4.53125 0.0664062 L 4.53125 -0.734375 C 4.289062 -0.46875 4.078125 -0.28125 3.898438 -0.167969 C 3.582031 0.0273438 3.214844 0.125 2.800781 0.125 C 2.0625 0.125 1.464844 -0.160156 1.003906 -0.730469 C 0.546875 -1.300781 0.320312 -1.964844 0.320312 -2.714844 C 0.320312 -3.65625 0.59375 -4.464844 1.140625 -5.140625 C 1.691406 -5.816406 2.363281 -6.152344 3.15625 -6.152344 Z M 3.398438 -0.578125 C 3.738281 -0.578125 4.011719 -0.679688 4.21875 -0.878906 C 4.425781 -1.078125 4.53125 -1.265625 4.53125 -1.445312 L 4.53125 -4.238281 C 4.53125 -4.800781 4.378906 -5.199219 4.078125 -5.433594 C 3.777344 -5.664062 3.484375 -5.78125 3.195312 -5.78125 C 2.648438 -5.78125 2.222656 -5.539062 1.921875 -5.054688 C 1.617188 -4.570312 1.464844 -3.976562 1.464844 -3.269531 C 1.464844 -2.570312 1.625 -1.945312 1.949219 -1.398438 C 2.273438 -0.851562 2.757812 -0.578125 3.398438 -0.578125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 3.054688 -6.105469 C 3.664062 -6.105469 4.203125 -5.894531 4.660156 -5.472656 C 5.121094 -5.050781 5.351562 -4.449219 5.351562 -3.671875 L 1.21875 -3.671875 C 1.261719 -2.664062 1.488281 -1.929688 1.902344 -1.472656 C 2.3125 -1.011719 2.800781 -0.78125 3.367188 -0.78125 C 3.820312 -0.78125 4.207031 -0.902344 4.519531 -1.140625 C 4.832031 -1.378906 5.121094 -1.714844 5.382812 -2.15625 L 5.613281 -2.078125 C 5.433594 -1.527344 5.101562 -1.015625 4.613281 -0.546875 C 4.125 -0.078125 3.527344 0.15625 2.820312 0.15625 C 2.003906 0.15625 1.371094 -0.152344 0.925781 -0.769531 C 0.480469 -1.386719 0.261719 -2.09375 0.261719 -2.898438 C 0.261719 -3.769531 0.519531 -4.523438 1.035156 -5.15625 C 1.550781 -5.789062 2.222656 -6.105469 3.054688 -6.105469 Z M 2.675781 -5.632812 C 2.179688 -5.632812 1.804688 -5.414062 1.542969 -4.972656 C 1.402344 -4.738281 1.304688 -4.445312 1.242188 -4.089844 L 3.992188 -4.089844 C 3.945312 -4.523438 3.859375 -4.847656 3.742188 -5.058594 C 3.53125 -5.441406 3.175781 -5.632812 2.675781 -5.632812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 0.273438 -0.183594 C 0.675781 -0.222656 0.949219 -0.300781 1.09375 -0.425781 C 1.238281 -0.550781 1.308594 -0.792969 1.308594 -1.152344 L 1.308594 -7.511719 C 1.308594 -7.800781 1.285156 -7.996094 1.238281 -8.105469 C 1.152344 -8.289062 0.972656 -8.378906 0.710938 -8.378906 C 0.648438 -8.378906 0.582031 -8.371094 0.511719 -8.359375 C 0.441406 -8.347656 0.347656 -8.328125 0.242188 -8.300781 L 0.242188 -8.515625 C 0.828125 -8.671875 1.53125 -8.878906 2.355469 -9.140625 C 2.386719 -9.140625 2.40625 -9.128906 2.410156 -9.101562 C 2.417969 -9.074219 2.421875 -9.019531 2.421875 -8.933594 L 2.421875 -1.125 C 2.421875 -0.75 2.488281 -0.503906 2.617188 -0.394531 C 2.746094 -0.285156 3.015625 -0.210938 3.425781 -0.183594 L 3.425781 0 L 0.273438 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 1.308594 1.203125 C 1.308594 1.570312 1.511719 1.820312 1.921875 1.960938 C 2.332031 2.097656 2.804688 2.167969 3.332031 2.167969 C 4.054688 2.167969 4.640625 2.042969 5.089844 1.792969 C 5.542969 1.542969 5.769531 1.238281 5.769531 0.871094 C 5.769531 0.582031 5.585938 0.386719 5.222656 0.292969 C 4.996094 0.238281 4.566406 0.203125 3.9375 0.195312 C 3.777344 0.191406 3.609375 0.183594 3.429688 0.179688 C 3.253906 0.171875 3.089844 0.164062 2.941406 0.15625 C 2.847656 0.152344 2.691406 0.132812 2.480469 0.105469 C 2.269531 0.0742188 2.109375 0.046875 2.003906 0.0273438 C 1.953125 0.0273438 1.824219 0.164062 1.621094 0.4375 C 1.414062 0.714844 1.308594 0.96875 1.308594 1.203125 Z M 2.15625 -2.1875 C 1.761719 -2.316406 1.453125 -2.550781 1.234375 -2.882812 C 1.015625 -3.21875 0.90625 -3.59375 0.90625 -4.011719 C 0.90625 -4.519531 1.105469 -5 1.511719 -5.457031 C 1.914062 -5.910156 2.484375 -6.140625 3.222656 -6.140625 C 3.539062 -6.140625 3.890625 -6.0625 4.269531 -5.914062 C 4.652344 -5.765625 5.019531 -5.691406 5.371094 -5.691406 C 5.460938 -5.691406 5.601562 -5.691406 5.785156 -5.699219 C 5.96875 -5.707031 6.101562 -5.710938 6.183594 -5.710938 L 6.261719 -5.710938 L 6.261719 -5.183594 L 5.136719 -5.183594 C 5.214844 -5 5.277344 -4.839844 5.320312 -4.707031 C 5.394531 -4.457031 5.429688 -4.214844 5.429688 -3.992188 C 5.429688 -3.496094 5.222656 -3.042969 4.8125 -2.625 C 4.402344 -2.210938 3.851562 -2.003906 3.15625 -2.003906 C 3.046875 -2.003906 2.855469 -2.023438 2.570312 -2.0625 C 2.445312 -2.0625 2.28125 -1.957031 2.074219 -1.746094 C 1.867188 -1.53125 1.765625 -1.359375 1.765625 -1.222656 C 1.765625 -1.085938 1.917969 -0.984375 2.21875 -0.917969 C 2.417969 -0.875 2.640625 -0.851562 2.882812 -0.851562 C 4 -0.851562 4.757812 -0.789062 5.15625 -0.664062 C 5.8125 -0.460938 6.140625 -0.0234375 6.140625 0.652344 C 6.140625 1.335938 5.757812 1.882812 4.988281 2.292969 C 4.222656 2.699219 3.449219 2.902344 2.667969 2.902344 C 1.957031 2.902344 1.394531 2.757812 0.976562 2.46875 C 0.558594 2.179688 0.351562 1.878906 0.351562 1.5625 C 0.351562 1.40625 0.40625 1.253906 0.515625 1.101562 C 0.628906 0.953125 0.847656 0.730469 1.171875 0.4375 L 1.601562 0.0507812 L 1.679688 -0.0273438 C 1.480469 -0.105469 1.332031 -0.179688 1.230469 -0.253906 C 1.058594 -0.386719 0.96875 -0.542969 0.96875 -0.714844 C 0.96875 -0.875 1.042969 -1.054688 1.195312 -1.246094 C 1.34375 -1.441406 1.664062 -1.753906 2.15625 -2.1875 Z M 3.390625 -2.316406 C 3.628906 -2.316406 3.832031 -2.382812 3.992188 -2.511719 C 4.25 -2.722656 4.382812 -3.082031 4.382812 -3.601562 C 4.382812 -4.011719 4.277344 -4.476562 4.066406 -4.992188 C 3.855469 -5.507812 3.503906 -5.769531 3.015625 -5.769531 C 2.589844 -5.769531 2.296875 -5.566406 2.136719 -5.164062 C 2.054688 -4.949219 2.011719 -4.6875 2.011719 -4.375 C 2.011719 -3.84375 2.140625 -3.371094 2.394531 -2.949219 C 2.652344 -2.527344 2.984375 -2.316406 3.390625 -2.316406 Z "/>
</symbol>
</g>
</defs>
<g id="surface81">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
<use xlink:href="#glyph0-2" x="40" y="30"/>
<use xlink:href="#glyph0-3" x="46" y="30"/>
<use xlink:href="#glyph0-2" x="53" y="30"/>
<use xlink:href="#glyph0-4" x="59" y="30"/>
<use xlink:href="#glyph0-5" x="63" y="30"/>
<use xlink:href="#glyph0-6" x="69" y="30"/>
<use xlink:href="#glyph0-7" x="73" y="30"/>
<use xlink:href="#glyph0-8" x="77" y="30"/>
<use xlink:href="#glyph0-3" x="84" y="30"/>
<use xlink:href="#glyph0-9" x="91" y="30"/>
<use xlink:href="#glyph0-10" x="94" y="30"/>
<use xlink:href="#glyph0-11" x="101" y="30"/>
<use xlink:href="#glyph0-9" x="107" y="30"/>
<use xlink:href="#glyph0-12" x="110" y="30"/>
<use xlink:href="#glyph0-5" x="114" y="30"/>
<use xlink:href="#glyph0-9" x="120" y="30"/>
<use xlink:href="#glyph0-13" x="123" y="30"/>
<use xlink:href="#glyph0-4" x="130" y="30"/>
<use xlink:href="#glyph0-7" x="134" y="30"/>
<use xlink:href="#glyph0-12" x="138" y="30"/>
<use xlink:href="#glyph0-12" x="142" y="30"/>
<use xlink:href="#glyph0-11" x="146" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.148438 -0.242188 C 0.640625 -0.292969 0.957031 -0.378906 1.101562 -0.503906 C 1.25 -0.628906 1.320312 -0.941406 1.320312 -1.445312 L 1.320312 -7.375 C 1.320312 -7.847656 1.25 -8.160156 1.105469 -8.304688 C 0.964844 -8.449219 0.644531 -8.539062 0.148438 -8.574219 L 0.148438 -8.820312 L 7.234375 -8.820312 L 7.277344 -6.90625 L 6.941406 -6.90625 C 6.828125 -7.496094 6.65625 -7.878906 6.433594 -8.054688 C 6.207031 -8.226562 5.703125 -8.3125 4.921875 -8.3125 L 3.113281 -8.3125 C 2.917969 -8.3125 2.796875 -8.28125 2.75 -8.21875 C 2.703125 -8.15625 2.683594 -8.039062 2.683594 -7.863281 L 2.683594 -4.890625 L 4.734375 -4.890625 C 5.300781 -4.890625 5.664062 -4.972656 5.820312 -5.144531 C 5.976562 -5.3125 6.101562 -5.65625 6.199219 -6.171875 L 6.511719 -6.171875 L 6.511719 -3.085938 L 6.199219 -3.085938 C 6.097656 -3.601562 5.96875 -3.945312 5.8125 -4.109375 C 5.65625 -4.277344 5.296875 -4.363281 4.734375 -4.363281 L 2.683594 -4.363281 L 2.683594 -1.0625 C 2.683594 -0.796875 2.765625 -0.640625 2.933594 -0.59375 C 3.101562 -0.546875 3.601562 -0.519531 4.433594 -0.519531 C 5.335938 -0.519531 6.003906 -0.621094 6.433594 -0.816406 C 6.863281 -1.015625 7.25 -1.492188 7.589844 -2.253906 L 7.960938 -2.253906 L 7.355469 0 L 0.148438 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.242188 -0.183594 C 0.550781 -0.222656 0.765625 -0.296875 0.886719 -0.414062 C 1.011719 -0.527344 1.074219 -0.785156 1.074219 -1.183594 L 1.074219 -4.484375 C 1.074219 -4.761719 1.046875 -4.957031 0.996094 -5.070312 C 0.914062 -5.234375 0.746094 -5.320312 0.488281 -5.320312 C 0.449219 -5.320312 0.410156 -5.316406 0.367188 -5.3125 C 0.328125 -5.308594 0.277344 -5.300781 0.214844 -5.292969 L 0.214844 -5.519531 C 0.394531 -5.574219 0.8125 -5.707031 1.476562 -5.925781 L 2.089844 -6.125 C 2.121094 -6.125 2.136719 -6.117188 2.144531 -6.09375 C 2.152344 -6.070312 2.15625 -6.042969 2.15625 -6.003906 L 2.15625 -5.046875 C 2.554688 -5.417969 2.867188 -5.675781 3.09375 -5.8125 C 3.429688 -6.027344 3.78125 -6.132812 4.148438 -6.132812 C 4.441406 -6.132812 4.710938 -6.046875 4.953125 -5.878906 C 5.421875 -5.550781 5.65625 -4.960938 5.65625 -4.113281 L 5.65625 -1.074219 C 5.65625 -0.761719 5.71875 -0.535156 5.847656 -0.398438 C 5.972656 -0.257812 6.183594 -0.1875 6.476562 -0.183594 L 6.476562 0 L 3.699219 0 L 3.699219 -0.183594 C 4.015625 -0.226562 4.234375 -0.3125 4.363281 -0.445312 C 4.488281 -0.578125 4.550781 -0.867188 4.550781 -1.308594 L 4.550781 -4.089844 C 4.550781 -4.460938 4.480469 -4.769531 4.34375 -5.015625 C 4.203125 -5.261719 3.949219 -5.382812 3.574219 -5.382812 C 3.316406 -5.382812 3.058594 -5.296875 2.792969 -5.125 C 2.644531 -5.023438 2.453125 -4.859375 2.21875 -4.628906 L 2.21875 -0.984375 C 2.21875 -0.671875 2.289062 -0.460938 2.429688 -0.355469 C 2.566406 -0.25 2.785156 -0.191406 3.085938 -0.183594 L 3.085938 0 L 0.242188 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 3.3125 -6.140625 C 3.855469 -6.140625 4.324219 -6 4.714844 -5.71875 C 5.109375 -5.4375 5.304688 -5.132812 5.304688 -4.796875 C 5.304688 -4.65625 5.257812 -4.519531 5.15625 -4.398438 C 5.054688 -4.273438 4.902344 -4.210938 4.695312 -4.210938 C 4.542969 -4.210938 4.410156 -4.265625 4.292969 -4.367188 C 4.179688 -4.472656 4.09375 -4.625 4.042969 -4.824219 L 3.964844 -5.136719 C 3.910156 -5.367188 3.8125 -5.53125 3.671875 -5.625 C 3.527344 -5.714844 3.339844 -5.761719 3.105469 -5.761719 C 2.609375 -5.761719 2.191406 -5.546875 1.851562 -5.113281 C 1.511719 -4.683594 1.339844 -4.109375 1.339844 -3.390625 C 1.339844 -2.734375 1.527344 -2.148438 1.902344 -1.628906 C 2.277344 -1.105469 2.785156 -0.847656 3.425781 -0.847656 C 3.875 -0.847656 4.277344 -0.992188 4.628906 -1.289062 C 4.828125 -1.457031 5.054688 -1.726562 5.304688 -2.097656 L 5.488281 -1.984375 C 5.242188 -1.464844 4.980469 -1.050781 4.707031 -0.75 C 4.183594 -0.167969 3.574219 0.125 2.882812 0.125 C 2.207031 0.125 1.609375 -0.144531 1.085938 -0.675781 C 0.566406 -1.210938 0.304688 -1.9375 0.304688 -2.851562 C 0.304688 -3.75 0.589844 -4.523438 1.160156 -5.167969 C 1.726562 -5.816406 2.445312 -6.140625 3.3125 -6.140625 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 3.820312 -3.605469 C 3.320312 -3.441406 2.910156 -3.257812 2.585938 -3.058594 C 1.960938 -2.671875 1.648438 -2.234375 1.648438 -1.746094 C 1.648438 -1.351562 1.777344 -1.058594 2.039062 -0.871094 C 2.207031 -0.75 2.394531 -0.691406 2.605469 -0.691406 C 2.890625 -0.691406 3.164062 -0.769531 3.425781 -0.929688 C 3.691406 -1.089844 3.820312 -1.296875 3.820312 -1.542969 Z M 0.488281 -1.296875 C 0.488281 -1.925781 0.804688 -2.449219 1.433594 -2.871094 C 1.832031 -3.132812 2.628906 -3.484375 3.820312 -3.933594 L 3.820312 -4.484375 C 3.820312 -4.929688 3.777344 -5.238281 3.691406 -5.410156 C 3.542969 -5.699219 3.238281 -5.847656 2.773438 -5.847656 C 2.550781 -5.847656 2.339844 -5.789062 2.140625 -5.675781 C 1.941406 -5.558594 1.84375 -5.398438 1.84375 -5.195312 C 1.84375 -5.144531 1.851562 -5.054688 1.875 -4.929688 C 1.898438 -4.808594 1.90625 -4.730469 1.90625 -4.695312 C 1.90625 -4.453125 1.828125 -4.28125 1.667969 -4.1875 C 1.574219 -4.128906 1.46875 -4.101562 1.339844 -4.101562 C 1.144531 -4.101562 0.996094 -4.164062 0.890625 -4.292969 C 0.789062 -4.421875 0.734375 -4.5625 0.734375 -4.71875 C 0.734375 -5.023438 0.921875 -5.339844 1.296875 -5.671875 C 1.671875 -6.003906 2.222656 -6.171875 2.949219 -6.171875 C 3.792969 -6.171875 4.363281 -5.898438 4.660156 -5.351562 C 4.820312 -5.050781 4.902344 -4.617188 4.902344 -4.042969 L 4.902344 -1.433594 C 4.902344 -1.179688 4.917969 -1.007812 4.953125 -0.910156 C 5.011719 -0.742188 5.128906 -0.65625 5.304688 -0.65625 C 5.40625 -0.65625 5.488281 -0.671875 5.554688 -0.703125 C 5.617188 -0.734375 5.730469 -0.808594 5.890625 -0.925781 L 5.890625 -0.585938 C 5.753906 -0.417969 5.601562 -0.277344 5.441406 -0.167969 C 5.199219 -0.00390625 4.953125 0.078125 4.699219 0.078125 C 4.40625 0.078125 4.191406 -0.015625 4.058594 -0.207031 C 3.925781 -0.398438 3.855469 -0.628906 3.839844 -0.890625 C 3.511719 -0.605469 3.230469 -0.394531 2.996094 -0.253906 C 2.601562 -0.0195312 2.222656 0.0976562 1.867188 0.0976562 C 1.496094 0.0976562 1.171875 -0.0351562 0.898438 -0.296875 C 0.625 -0.558594 0.488281 -0.890625 0.488281 -1.296875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.691406 -2.050781 L 0.90625 -2.050781 C 1.003906 -1.554688 1.140625 -1.175781 1.308594 -0.910156 C 1.613281 -0.425781 2.058594 -0.183594 2.644531 -0.183594 C 2.96875 -0.183594 3.226562 -0.273438 3.414062 -0.453125 C 3.601562 -0.632812 3.699219 -0.867188 3.699219 -1.152344 C 3.699219 -1.335938 3.644531 -1.511719 3.535156 -1.679688 C 3.425781 -1.847656 3.234375 -2.015625 2.960938 -2.175781 L 2.234375 -2.589844 C 1.699219 -2.878906 1.304688 -3.167969 1.054688 -3.457031 C 0.804688 -3.746094 0.675781 -4.089844 0.675781 -4.484375 C 0.675781 -4.972656 0.851562 -5.371094 1.199219 -5.683594 C 1.546875 -5.996094 1.980469 -6.152344 2.507812 -6.152344 C 2.738281 -6.152344 2.988281 -6.109375 3.265625 -6.023438 C 3.539062 -5.9375 3.695312 -5.890625 3.730469 -5.890625 C 3.808594 -5.890625 3.863281 -5.902344 3.898438 -5.925781 C 3.933594 -5.945312 3.964844 -5.980469 3.992188 -6.027344 L 4.148438 -6.027344 L 4.191406 -4.210938 L 3.992188 -4.210938 C 3.90625 -4.632812 3.785156 -4.960938 3.640625 -5.195312 C 3.371094 -5.628906 2.980469 -5.847656 2.472656 -5.847656 C 2.167969 -5.847656 1.929688 -5.753906 1.757812 -5.566406 C 1.585938 -5.378906 1.496094 -5.160156 1.496094 -4.910156 C 1.496094 -4.511719 1.796875 -4.152344 2.394531 -3.839844 L 3.253906 -3.378906 C 4.179688 -2.875 4.640625 -2.289062 4.640625 -1.621094 C 4.640625 -1.109375 4.449219 -0.691406 4.066406 -0.363281 C 3.683594 -0.0390625 3.179688 0.125 2.558594 0.125 C 2.296875 0.125 2.003906 0.0820312 1.671875 -0.0078125 C 1.34375 -0.09375 1.148438 -0.136719 1.085938 -0.136719 C 1.035156 -0.136719 0.988281 -0.117188 0.949219 -0.0820312 C 0.910156 -0.0429688 0.882812 0 0.859375 0.0507812 L 0.691406 0.0507812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 3.15625 -6.152344 C 3.472656 -6.152344 3.765625 -6.082031 4.03125 -5.945312 C 4.203125 -5.851562 4.371094 -5.726562 4.53125 -5.566406 L 4.53125 -7.636719 C 4.53125 -7.902344 4.5 -8.082031 4.441406 -8.183594 C 4.382812 -8.285156 4.246094 -8.332031 4.023438 -8.332031 C 3.972656 -8.332031 3.925781 -8.332031 3.886719 -8.328125 C 3.847656 -8.324219 3.761719 -8.3125 3.625 -8.300781 L 3.625 -8.515625 L 4.160156 -8.652344 C 4.355469 -8.703125 4.550781 -8.757812 4.746094 -8.816406 C 4.941406 -8.871094 5.113281 -8.925781 5.261719 -8.976562 C 5.332031 -9 5.445312 -9.039062 5.605469 -9.101562 L 5.644531 -9.089844 L 5.632812 -8.40625 C 5.628906 -8.15625 5.621094 -7.902344 5.617188 -7.640625 C 5.613281 -7.378906 5.613281 -7.117188 5.613281 -6.863281 L 5.597656 -1.542969 C 5.597656 -1.261719 5.632812 -1.0625 5.703125 -0.949219 C 5.773438 -0.835938 5.957031 -0.78125 6.257812 -0.78125 C 6.304688 -0.78125 6.351562 -0.78125 6.398438 -0.785156 C 6.445312 -0.785156 6.496094 -0.792969 6.542969 -0.800781 L 6.542969 -0.585938 C 6.515625 -0.578125 6.203125 -0.46875 5.597656 -0.261719 L 4.578125 0.125 L 4.53125 0.0664062 L 4.53125 -0.734375 C 4.289062 -0.46875 4.078125 -0.28125 3.898438 -0.167969 C 3.582031 0.0273438 3.214844 0.125 2.800781 0.125 C 2.0625 0.125 1.464844 -0.160156 1.003906 -0.730469 C 0.546875 -1.300781 0.320312 -1.964844 0.320312 -2.714844 C 0.320312 -3.65625 0.59375 -4.464844 1.140625 -5.140625 C 1.691406 -5.816406 2.363281 -6.152344 3.15625 -6.152344 Z M 3.398438 -0.578125 C 3.738281 -0.578125 4.011719 -0.679688 4.21875 -0.878906 C 4.425781 -1.078125 4.53125 -1.265625 4.53125 -1.445312 L 4.53125 -4.238281 C 4.53125 -4.800781 4.378906 -5.199219 4.078125 -5.433594 C 3.777344 -5.664062 3.484375 -5.78125 3.195312 -5.78125 C 2.648438 -5.78125 2.222656 -5.539062 1.921875 -5.054688 C 1.617188 -4.570312 1.464844 -3.976562 1.464844 -3.269531 C 1.464844 -2.570312 1.625 -1.945312 1.949219 -1.398438 C 2.273438 -0.851562 2.757812 -0.578125 3.398438 -0.578125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 3.054688 -6.105469 C 3.664062 -6.105469 4.203125 -5.894531 4.660156 -5.472656 C 5.121094 -5.050781 5.351562 -4.449219 5.351562 -3.671875 L 1.21875 -3.671875 C 1.261719 -2.664062 1.488281 -1.929688 1.902344 -1.472656 C 2.3125 -1.011719 2.800781 -0.78125 3.367188 -0.78125 C 3.820312 -0.78125 4.207031 -0.902344 4.519531 -1.140625 C 4.832031 -1.378906 5.121094 -1.714844 5.382812 -2.15625 L 5.613281 -2.078125 C 5.433594 -1.527344 5.101562 -1.015625 4.613281 -0.546875 C 4.125 -0.078125 3.527344 0.15625 2.820312 0.15625 C 2.003906 0.15625 1.371094 -0.152344 0.925781 -0.769531 C 0.480469 -1.386719 0.261719 -2.09375 0.261719 -2.898438 C 0.261719 -3.769531 0.519531 -4.523438 1.035156 -5.15625 C 1.550781 -5.789062 2.222656 -6.105469 3.054688 -6.105469 Z M 2.675781 -5.632812 C 2.179688 -5.632812 1.804688 -5.414062 1.542969 -4.972656 C 1.402344 -4.738281 1.304688 -4.445312 1.242188 -4.089844 L 3.992188 -4.089844 C 3.945312 -4.523438 3.859375 -4.847656 3.742188 -5.058594 C 3.53125 -5.441406 3.175781 -5.632812 2.675781 -5.632812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 3.175781 -0.695312 C 3.28125 -0.695312 3.421875 -0.714844 3.597656 -0.75 C 3.773438 -0.785156 3.9375 -0.84375 4.089844 -0.925781 C 4.296875 -1.039062 4.421875 -1.136719 4.464844 -1.222656 C 4.507812 -1.308594 4.53125 -1.472656 4.53125 -1.710938 L 4.53125 -4.460938 C 4.53125 -4.804688 4.480469 -5.070312 4.375 -5.261719 C 4.179688 -5.609375 3.8125 -5.78125 3.269531 -5.78125 C 2.652344 -5.78125 2.195312 -5.527344 1.902344 -5.015625 C 1.609375 -4.507812 1.464844 -3.921875 1.464844 -3.269531 C 1.464844 -2.5 1.613281 -1.878906 1.910156 -1.40625 C 2.207031 -0.933594 2.628906 -0.695312 3.175781 -0.695312 Z M 3.328125 -6.140625 C 3.621094 -6.140625 3.882812 -6.097656 4.109375 -6.015625 C 4.261719 -5.964844 4.488281 -5.851562 4.796875 -5.675781 L 5.519531 -6.105469 C 5.558594 -6.125 5.589844 -6.136719 5.613281 -6.140625 C 5.632812 -6.121094 5.648438 -6.109375 5.652344 -6.101562 C 5.65625 -6.09375 5.65625 -6.0625 5.65625 -6.015625 L 5.65625 1.902344 C 5.65625 2.132812 5.699219 2.300781 5.78125 2.414062 C 5.90625 2.585938 6.148438 2.6875 6.511719 2.722656 L 6.511719 2.902344 L 3.359375 2.902344 L 3.359375 2.6875 C 3.746094 2.683594 4.03125 2.621094 4.222656 2.492188 C 4.410156 2.367188 4.503906 2.085938 4.503906 1.652344 L 4.503906 -0.828125 C 4.199219 -0.527344 3.9375 -0.3125 3.71875 -0.183594 C 3.351562 0.03125 2.941406 0.136719 2.488281 0.136719 C 1.945312 0.136719 1.449219 -0.113281 0.996094 -0.613281 C 0.542969 -1.117188 0.320312 -1.851562 0.320312 -2.824219 C 0.320312 -3.71875 0.597656 -4.496094 1.15625 -5.152344 C 1.714844 -5.808594 2.4375 -6.140625 3.328125 -6.140625 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 2.0625 -6.027344 L 2.0625 -1.863281 C 2.0625 -1.566406 2.105469 -1.332031 2.1875 -1.152344 C 2.347656 -0.824219 2.644531 -0.65625 3.074219 -0.65625 C 3.367188 -0.65625 3.65625 -0.753906 3.9375 -0.949219 C 4.097656 -1.058594 4.261719 -1.207031 4.425781 -1.398438 L 4.425781 -4.96875 C 4.425781 -5.300781 4.363281 -5.519531 4.230469 -5.625 C 4.101562 -5.730469 3.839844 -5.792969 3.449219 -5.8125 L 3.449219 -6.027344 L 5.554688 -6.027344 L 5.554688 -1.445312 C 5.554688 -1.148438 5.605469 -0.945312 5.710938 -0.835938 C 5.820312 -0.726562 6.042969 -0.675781 6.386719 -0.691406 L 6.386719 -0.507812 C 6.148438 -0.441406 5.972656 -0.394531 5.859375 -0.359375 C 5.746094 -0.328125 5.558594 -0.269531 5.292969 -0.183594 C 5.179688 -0.144531 4.933594 -0.0507812 4.550781 0.0976562 C 4.527344 0.0976562 4.515625 0.0859375 4.511719 0.0664062 C 4.507812 0.046875 4.503906 0.0273438 4.503906 0 L 4.503906 -1.046875 C 4.210938 -0.695312 3.941406 -0.4375 3.699219 -0.265625 C 3.328125 -0.0078125 2.9375 0.125 2.527344 0.125 C 2.148438 0.125 1.792969 -0.0117188 1.457031 -0.28125 C 1.121094 -0.546875 0.949219 -0.988281 0.949219 -1.613281 L 0.949219 -4.992188 C 0.949219 -5.339844 0.875 -5.574219 0.730469 -5.691406 C 0.632812 -5.765625 0.429688 -5.816406 0.117188 -5.847656 L 0.117188 -6.027344 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 3.390625 -6.003906 L 3.390625 -5.535156 L 2.0625 -5.535156 L 2.050781 -1.785156 C 2.050781 -1.453125 2.078125 -1.203125 2.136719 -1.035156 C 2.238281 -0.734375 2.445312 -0.585938 2.746094 -0.585938 C 2.902344 -0.585938 3.039062 -0.621094 3.152344 -0.695312 C 3.269531 -0.769531 3.402344 -0.886719 3.546875 -1.046875 L 3.71875 -0.90625 L 3.574219 -0.710938 C 3.347656 -0.40625 3.109375 -0.191406 2.859375 -0.0664062 C 2.605469 0.0585938 2.363281 0.125 2.128906 0.125 C 1.617188 0.125 1.269531 -0.105469 1.085938 -0.558594 C 0.988281 -0.808594 0.9375 -1.148438 0.9375 -1.589844 L 0.9375 -5.535156 L 0.226562 -5.535156 C 0.207031 -5.546875 0.191406 -5.558594 0.179688 -5.574219 C 0.167969 -5.585938 0.164062 -5.601562 0.164062 -5.625 C 0.164062 -5.667969 0.171875 -5.703125 0.191406 -5.726562 C 0.210938 -5.75 0.273438 -5.804688 0.378906 -5.890625 C 0.675781 -6.140625 0.894531 -6.339844 1.023438 -6.492188 C 1.15625 -6.648438 1.46875 -7.054688 1.960938 -7.714844 C 2.015625 -7.714844 2.050781 -7.710938 2.058594 -7.703125 C 2.070312 -7.695312 2.078125 -7.660156 2.078125 -7.605469 L 2.078125 -6.003906 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 1.09375 -8.40625 C 1.09375 -8.59375 1.160156 -8.753906 1.289062 -8.886719 C 1.417969 -9.019531 1.578125 -9.089844 1.769531 -9.089844 C 1.957031 -9.089844 2.117188 -9.023438 2.25 -8.890625 C 2.382812 -8.757812 2.449219 -8.597656 2.449219 -8.40625 C 2.449219 -8.21875 2.382812 -8.058594 2.25 -7.925781 C 2.117188 -7.792969 1.957031 -7.726562 1.769531 -7.726562 C 1.578125 -7.726562 1.417969 -7.792969 1.289062 -7.925781 C 1.160156 -8.058594 1.09375 -8.21875 1.09375 -8.40625 Z M 0.261719 -0.183594 C 0.726562 -0.226562 1.019531 -0.304688 1.140625 -0.417969 C 1.261719 -0.535156 1.320312 -0.847656 1.320312 -1.355469 L 1.320312 -4.460938 C 1.320312 -4.742188 1.300781 -4.9375 1.261719 -5.046875 C 1.199219 -5.222656 1.0625 -5.3125 0.851562 -5.3125 C 0.804688 -5.3125 0.757812 -5.308594 0.710938 -5.300781 C 0.667969 -5.292969 0.535156 -5.257812 0.320312 -5.195312 L 0.320312 -5.398438 L 0.597656 -5.488281 C 1.359375 -5.734375 1.886719 -5.921875 2.1875 -6.046875 C 2.308594 -6.101562 2.386719 -6.125 2.421875 -6.125 C 2.429688 -6.09375 2.433594 -6.0625 2.433594 -6.027344 L 2.433594 -1.355469 C 2.433594 -0.859375 2.496094 -0.550781 2.613281 -0.421875 C 2.734375 -0.296875 3.003906 -0.21875 3.425781 -0.183594 L 3.425781 0 L 0.261719 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 0.339844 -3.019531 C 0.339844 -3.882812 0.613281 -4.613281 1.160156 -5.210938 C 1.710938 -5.808594 2.417969 -6.105469 3.28125 -6.105469 C 4.140625 -6.105469 4.851562 -5.824219 5.417969 -5.261719 C 5.980469 -4.695312 6.261719 -3.945312 6.261719 -3.007812 C 6.261719 -2.144531 5.988281 -1.394531 5.441406 -0.753906 C 4.894531 -0.117188 4.1875 0.203125 3.320312 0.203125 C 2.488281 0.203125 1.78125 -0.105469 1.203125 -0.714844 C 0.625 -1.328125 0.339844 -2.097656 0.339844 -3.019531 Z M 3.097656 -5.714844 C 2.753906 -5.714844 2.457031 -5.601562 2.207031 -5.378906 C 1.773438 -4.984375 1.554688 -4.300781 1.554688 -3.332031 C 1.554688 -2.558594 1.730469 -1.839844 2.078125 -1.171875 C 2.429688 -0.503906 2.914062 -0.167969 3.535156 -0.167969 C 4.019531 -0.167969 4.394531 -0.394531 4.65625 -0.839844 C 4.921875 -1.285156 5.050781 -1.871094 5.050781 -2.597656 C 5.050781 -3.347656 4.886719 -4.054688 4.550781 -4.71875 C 4.214844 -5.382812 3.734375 -5.714844 3.097656 -5.714844 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 0.214844 -0.167969 C 0.554688 -0.199219 0.777344 -0.257812 0.890625 -0.339844 C 1.066406 -0.464844 1.152344 -0.714844 1.152344 -1.09375 L 1.152344 -4.460938 C 1.152344 -4.78125 1.109375 -4.992188 1.023438 -5.089844 C 0.941406 -5.191406 0.800781 -5.242188 0.605469 -5.242188 C 0.515625 -5.242188 0.445312 -5.238281 0.398438 -5.226562 C 0.355469 -5.21875 0.300781 -5.203125 0.242188 -5.183594 L 0.242188 -5.410156 L 0.710938 -5.566406 C 0.878906 -5.621094 1.15625 -5.726562 1.542969 -5.871094 C 1.929688 -6.019531 2.132812 -6.09375 2.15625 -6.09375 C 2.175781 -6.09375 2.191406 -6.082031 2.195312 -6.0625 C 2.199219 -6.039062 2.199219 -6 2.199219 -5.9375 L 2.199219 -5.058594 C 2.628906 -5.449219 3 -5.71875 3.3125 -5.867188 C 3.625 -6.019531 3.949219 -6.09375 4.277344 -6.09375 C 4.722656 -6.09375 5.082031 -5.941406 5.34375 -5.636719 C 5.484375 -5.472656 5.597656 -5.25 5.691406 -4.96875 C 6.011719 -5.292969 6.292969 -5.535156 6.53125 -5.691406 C 6.941406 -5.960938 7.363281 -6.09375 7.792969 -6.09375 C 8.492188 -6.09375 8.957031 -5.808594 9.191406 -5.242188 C 9.328125 -4.921875 9.394531 -4.410156 9.394531 -3.71875 L 9.394531 -1.015625 C 9.394531 -0.707031 9.460938 -0.496094 9.597656 -0.386719 C 9.734375 -0.277344 9.980469 -0.203125 10.339844 -0.167969 L 10.339844 0 L 7.402344 0 L 7.402344 -0.183594 C 7.78125 -0.21875 8.027344 -0.292969 8.148438 -0.410156 C 8.265625 -0.527344 8.328125 -0.765625 8.328125 -1.125 L 8.328125 -3.933594 C 8.328125 -4.355469 8.28125 -4.664062 8.191406 -4.863281 C 8.03125 -5.21875 7.714844 -5.398438 7.246094 -5.398438 C 6.964844 -5.398438 6.683594 -5.304688 6.40625 -5.117188 C 6.246094 -5.007812 6.046875 -4.835938 5.8125 -4.597656 L 5.8125 -1.261719 C 5.8125 -0.910156 5.875 -0.644531 6 -0.460938 C 6.125 -0.28125 6.382812 -0.183594 6.785156 -0.167969 L 6.785156 0 L 3.796875 0 L 3.796875 -0.167969 C 4.207031 -0.222656 4.46875 -0.320312 4.582031 -0.46875 C 4.695312 -0.617188 4.753906 -0.980469 4.753906 -1.554688 L 4.753906 -3.378906 C 4.753906 -4.046875 4.710938 -4.507812 4.621094 -4.757812 C 4.480469 -5.183594 4.175781 -5.398438 3.710938 -5.398438 C 3.445312 -5.398438 3.1875 -5.324219 2.929688 -5.179688 C 2.671875 -5.035156 2.449219 -4.84375 2.253906 -4.609375 L 2.253906 -1.046875 C 2.253906 -0.71875 2.308594 -0.492188 2.425781 -0.363281 C 2.539062 -0.238281 2.789062 -0.171875 3.175781 -0.167969 L 3.175781 0 L 0.214844 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 0.0585938 -0.214844 C 0.457031 -0.25 0.722656 -0.320312 0.851562 -0.425781 C 0.984375 -0.53125 1.046875 -0.757812 1.046875 -1.105469 L 1.046875 -4.042969 C 1.046875 -4.472656 1.007812 -4.78125 0.925781 -4.964844 C 0.847656 -5.148438 0.699219 -5.242188 0.488281 -5.242188 C 0.445312 -5.242188 0.386719 -5.234375 0.316406 -5.222656 C 0.246094 -5.214844 0.167969 -5.199219 0.0898438 -5.183594 L 0.0898438 -5.398438 C 0.339844 -5.484375 0.59375 -5.574219 0.851562 -5.664062 C 1.113281 -5.753906 1.292969 -5.820312 1.394531 -5.859375 C 1.609375 -5.941406 1.832031 -6.035156 2.0625 -6.140625 C 2.09375 -6.140625 2.113281 -6.128906 2.117188 -6.105469 C 2.125 -6.085938 2.128906 -6.039062 2.128906 -5.96875 L 2.128906 -4.902344 C 2.40625 -5.289062 2.675781 -5.589844 2.933594 -5.808594 C 3.191406 -6.023438 3.460938 -6.132812 3.738281 -6.132812 C 3.957031 -6.132812 4.136719 -6.066406 4.277344 -5.933594 C 4.417969 -5.800781 4.484375 -5.636719 4.484375 -5.4375 C 4.484375 -5.257812 4.433594 -5.109375 4.324219 -4.988281 C 4.21875 -4.867188 4.085938 -4.804688 3.925781 -4.804688 C 3.761719 -4.804688 3.59375 -4.878906 3.425781 -5.03125 C 3.261719 -5.183594 3.128906 -5.261719 3.035156 -5.261719 C 2.882812 -5.261719 2.695312 -5.136719 2.472656 -4.890625 C 2.253906 -4.648438 2.140625 -4.394531 2.140625 -4.132812 L 2.140625 -1.199219 C 2.140625 -0.824219 2.230469 -0.566406 2.402344 -0.417969 C 2.574219 -0.273438 2.863281 -0.207031 3.269531 -0.214844 L 3.269531 0 L 0.0585938 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 2.742188 -1.027344 C 2.742188 -0.8125 2.792969 -0.667969 2.898438 -0.597656 C 3.007812 -0.527344 3.226562 -0.496094 3.5625 -0.496094 C 4.601562 -0.496094 5.460938 -0.699219 6.132812 -1.113281 C 7.164062 -1.746094 7.683594 -2.828125 7.683594 -4.363281 C 7.683594 -5.730469 7.257812 -6.757812 6.40625 -7.449219 C 5.675781 -8.039062 4.710938 -8.332031 3.507812 -8.332031 C 3.210938 -8.332031 3.007812 -8.300781 2.898438 -8.234375 C 2.792969 -8.171875 2.742188 -8.027344 2.742188 -7.804688 Z M 0.214844 -0.242188 C 0.699219 -0.292969 1.019531 -0.378906 1.164062 -0.503906 C 1.3125 -0.628906 1.386719 -0.941406 1.386719 -1.445312 L 1.386719 -7.375 C 1.386719 -7.863281 1.316406 -8.175781 1.171875 -8.3125 C 1.027344 -8.453125 0.710938 -8.539062 0.214844 -8.574219 L 0.214844 -8.820312 L 3.808594 -8.820312 C 5.019531 -8.820312 6.042969 -8.621094 6.882812 -8.222656 C 8.390625 -7.507812 9.148438 -6.226562 9.148438 -4.382812 C 9.148438 -3.71875 9.011719 -3.085938 8.738281 -2.488281 C 8.46875 -1.886719 8.058594 -1.382812 7.511719 -0.96875 C 7.164062 -0.710938 6.804688 -0.511719 6.433594 -0.378906 C 5.75 -0.125 4.914062 0 3.917969 0 L 0.214844 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 4.875 -3.261719 C 4.875 -2.980469 4.949219 -2.757812 5.09375 -2.589844 C 5.238281 -2.425781 5.433594 -2.34375 5.675781 -2.34375 C 6.191406 -2.34375 6.609375 -2.761719 6.921875 -3.597656 C 7.238281 -4.433594 7.394531 -5.042969 7.394531 -5.429688 C 7.394531 -5.65625 7.332031 -5.832031 7.207031 -5.964844 C 7.082031 -6.09375 6.90625 -6.160156 6.679688 -6.160156 C 6.242188 -6.160156 5.832031 -5.824219 5.449219 -5.15625 C 5.066406 -4.488281 4.875 -3.855469 4.875 -3.261719 Z M 6.179688 0.1875 C 4.8125 0.1875 3.640625 -0.222656 2.667969 -1.046875 C 1.6875 -1.886719 1.199219 -2.902344 1.199219 -4.101562 C 1.199219 -5.460938 1.734375 -6.617188 2.8125 -7.578125 C 3.878906 -8.53125 5.171875 -9.011719 6.6875 -9.011719 C 7.863281 -9.011719 8.859375 -8.683594 9.679688 -8.027344 C 10.539062 -7.332031 10.96875 -6.445312 10.96875 -5.363281 C 10.96875 -4.496094 10.695312 -3.699219 10.144531 -2.96875 C 9.59375 -2.238281 8.964844 -1.875 8.261719 -1.875 C 7.796875 -1.875 7.453125 -2.019531 7.234375 -2.304688 C 7.085938 -2.496094 7.007812 -2.703125 7.003906 -2.929688 C 6.90625 -2.664062 6.710938 -2.421875 6.417969 -2.199219 C 6.128906 -1.980469 5.816406 -1.867188 5.488281 -1.867188 C 4.996094 -1.867188 4.585938 -2.035156 4.246094 -2.371094 C 3.910156 -2.703125 3.742188 -3.152344 3.742188 -3.710938 C 3.742188 -4.445312 4.027344 -5.117188 4.597656 -5.730469 C 5.167969 -6.347656 5.792969 -6.652344 6.472656 -6.652344 C 6.78125 -6.652344 7.042969 -6.574219 7.257812 -6.414062 C 7.476562 -6.257812 7.617188 -6.0625 7.683594 -5.832031 L 7.898438 -6.492188 L 8.964844 -6.492188 L 8.605469 -5.382812 C 8.457031 -4.929688 8.328125 -4.503906 8.214844 -4.113281 C 8.035156 -3.480469 7.941406 -3.082031 7.941406 -2.921875 C 7.941406 -2.835938 7.972656 -2.738281 8.035156 -2.628906 C 8.136719 -2.449219 8.296875 -2.355469 8.515625 -2.355469 C 8.9375 -2.355469 9.371094 -2.644531 9.816406 -3.226562 C 10.265625 -3.804688 10.488281 -4.511719 10.488281 -5.34375 C 10.488281 -6.363281 10.097656 -7.144531 9.320312 -7.6875 C 8.539062 -8.230469 7.683594 -8.503906 6.75 -8.503906 C 5.582031 -8.503906 4.535156 -8.101562 3.605469 -7.296875 C 2.597656 -6.429688 2.097656 -5.367188 2.097656 -4.113281 C 2.097656 -2.945312 2.515625 -2.003906 3.359375 -1.289062 C 4.15625 -0.613281 5.160156 -0.273438 6.367188 -0.273438 C 6.78125 -0.273438 7.230469 -0.335938 7.722656 -0.457031 C 8.472656 -0.636719 9.117188 -0.933594 9.65625 -1.339844 L 9.902344 -0.96875 C 9.25 -0.554688 8.636719 -0.257812 8.058594 -0.078125 C 7.480469 0.101562 6.855469 0.1875 6.179688 0.1875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 3.964844 -8.820312 L 3.964844 -8.574219 C 3.453125 -8.539062 3.121094 -8.453125 2.96875 -8.316406 C 2.816406 -8.179688 2.742188 -7.867188 2.742188 -7.375 L 2.742188 -3.113281 C 2.742188 -2.414062 2.835938 -1.867188 3.027344 -1.476562 C 3.382812 -0.765625 4.058594 -0.410156 5.050781 -0.410156 C 6.140625 -0.410156 6.871094 -0.773438 7.246094 -1.503906 C 7.453125 -1.910156 7.558594 -2.542969 7.558594 -3.390625 L 7.558594 -6.863281 C 7.558594 -7.585938 7.472656 -8.042969 7.296875 -8.226562 C 7.125 -8.410156 6.792969 -8.527344 6.308594 -8.574219 L 6.308594 -8.820312 L 9.394531 -8.820312 L 9.394531 -8.574219 C 8.878906 -8.519531 8.539062 -8.394531 8.382812 -8.199219 C 8.222656 -8.007812 8.144531 -7.5625 8.144531 -6.863281 L 8.144531 -3.390625 C 8.144531 -2.472656 8.003906 -1.753906 7.722656 -1.238281 C 7.199219 -0.285156 6.210938 0.1875 4.753906 0.1875 C 3.3125 0.1875 2.332031 -0.28125 1.808594 -1.21875 C 1.527344 -1.722656 1.386719 -2.386719 1.386719 -3.210938 L 1.386719 -7.375 C 1.386719 -7.863281 1.3125 -8.171875 1.160156 -8.308594 C 1.011719 -8.445312 0.6875 -8.535156 0.183594 -8.574219 L 0.183594 -8.820312 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 0.859375 -2.683594 C 1.085938 -2.082031 1.351562 -1.605469 1.652344 -1.25 C 2.183594 -0.628906 2.839844 -0.320312 3.625 -0.320312 C 4.050781 -0.320312 4.417969 -0.453125 4.730469 -0.722656 C 5.039062 -0.992188 5.195312 -1.367188 5.195312 -1.847656 C 5.195312 -2.28125 5.039062 -2.660156 4.726562 -2.980469 C 4.523438 -3.183594 4.09375 -3.492188 3.4375 -3.898438 L 2.296875 -4.609375 C 1.953125 -4.828125 1.683594 -5.046875 1.476562 -5.265625 C 1.101562 -5.6875 0.910156 -6.152344 0.910156 -6.660156 C 0.910156 -7.332031 1.136719 -7.894531 1.582031 -8.339844 C 2.027344 -8.785156 2.621094 -9.011719 3.359375 -9.011719 C 3.664062 -9.011719 4.027344 -8.933594 4.457031 -8.785156 C 4.882812 -8.636719 5.128906 -8.5625 5.1875 -8.5625 C 5.351562 -8.5625 5.46875 -8.601562 5.53125 -8.679688 C 5.59375 -8.757812 5.640625 -8.867188 5.675781 -9.011719 L 5.949219 -9.011719 L 6.242188 -6.171875 L 5.925781 -6.171875 C 5.707031 -7.027344 5.359375 -7.625 4.878906 -7.960938 C 4.398438 -8.300781 3.925781 -8.46875 3.457031 -8.46875 C 3.09375 -8.46875 2.773438 -8.363281 2.503906 -8.148438 C 2.230469 -7.933594 2.097656 -7.632812 2.097656 -7.253906 C 2.097656 -6.910156 2.199219 -6.617188 2.410156 -6.375 C 2.617188 -6.125 2.941406 -5.867188 3.378906 -5.597656 L 4.550781 -4.875 C 5.285156 -4.425781 5.800781 -4.011719 6.101562 -3.632812 C 6.394531 -3.25 6.542969 -2.800781 6.542969 -2.277344 C 6.542969 -1.578125 6.277344 -0.996094 5.75 -0.527344 C 5.222656 -0.0585938 4.550781 0.175781 3.730469 0.175781 C 3.316406 0.175781 2.886719 0.0976562 2.4375 -0.0585938 C 1.988281 -0.214844 1.730469 -0.292969 1.667969 -0.292969 C 1.511719 -0.292969 1.40625 -0.246094 1.351562 -0.148438 C 1.296875 -0.0546875 1.261719 0.046875 1.242188 0.15625 L 0.949219 0.15625 L 0.554688 -2.683594 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 2.863281 -6.046875 L 2.863281 -5.847656 C 2.636719 -5.820312 2.480469 -5.785156 2.386719 -5.742188 C 2.292969 -5.699219 2.246094 -5.601562 2.246094 -5.457031 C 2.246094 -5.386719 2.253906 -5.320312 2.273438 -5.257812 C 2.292969 -5.195312 2.328125 -5.101562 2.375 -4.980469 L 3.730469 -1.613281 L 4.902344 -4.597656 C 4.957031 -4.738281 5.011719 -4.890625 5.0625 -5.046875 C 5.113281 -5.203125 5.136719 -5.320312 5.136719 -5.402344 C 5.136719 -5.574219 5.054688 -5.695312 4.894531 -5.769531 C 4.800781 -5.808594 4.671875 -5.832031 4.503906 -5.847656 L 4.503906 -6.046875 L 6.355469 -6.046875 L 6.355469 -5.847656 C 6.140625 -5.828125 5.988281 -5.757812 5.894531 -5.632812 C 5.800781 -5.511719 5.667969 -5.226562 5.488281 -4.777344 L 3.605469 -0.0898438 C 3.570312 -0.0078125 3.542969 0.046875 3.523438 0.078125 C 3.5 0.109375 3.46875 0.125 3.429688 0.125 C 3.386719 0.125 3.351562 0.0976562 3.320312 0.046875 C 3.289062 0 3.257812 -0.0625 3.222656 -0.136719 L 1.230469 -4.902344 C 1.070312 -5.289062 0.898438 -5.550781 0.714844 -5.691406 C 0.605469 -5.769531 0.449219 -5.820312 0.242188 -5.847656 L 0.242188 -6.046875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 0.148438 -0.242188 C 0.675781 -0.296875 1 -0.394531 1.128906 -0.53125 C 1.257812 -0.667969 1.320312 -1.023438 1.320312 -1.601562 L 1.320312 -7.375 C 1.320312 -7.847656 1.25 -8.160156 1.105469 -8.304688 C 0.964844 -8.449219 0.644531 -8.539062 0.148438 -8.574219 L 0.148438 -8.820312 L 7.253906 -8.820312 L 7.296875 -6.90625 L 6.925781 -6.90625 C 6.835938 -7.519531 6.664062 -7.90625 6.414062 -8.070312 C 6.160156 -8.234375 5.664062 -8.3125 4.921875 -8.3125 L 3.097656 -8.3125 C 2.921875 -8.3125 2.808594 -8.285156 2.757812 -8.222656 C 2.707031 -8.160156 2.683594 -8.042969 2.683594 -7.863281 L 2.683594 -4.890625 L 4.609375 -4.890625 C 5.179688 -4.890625 5.539062 -4.972656 5.695312 -5.144531 C 5.851562 -5.3125 5.980469 -5.65625 6.074219 -6.171875 L 6.386719 -6.171875 L 6.386719 -3.085938 L 6.074219 -3.085938 C 5.972656 -3.601562 5.847656 -3.945312 5.691406 -4.109375 C 5.535156 -4.277344 5.171875 -4.363281 4.609375 -4.363281 L 2.683594 -4.363281 L 2.683594 -1.445312 C 2.683594 -0.953125 2.757812 -0.640625 2.90625 -0.503906 C 3.054688 -0.367188 3.382812 -0.28125 3.886719 -0.242188 L 3.886719 0 L 0.148438 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 3.71875 -3.28125 L 4.316406 -5.519531 L 2.910156 -5.519531 L 2.3125 -3.28125 Z M 0.105469 -3.28125 L 1.523438 -3.28125 L 2.140625 -5.535156 L 0.722656 -5.535156 L 0.828125 -6.015625 L 2.253906 -6.015625 L 3.019531 -8.808594 L 3.820312 -8.808594 L 3.054688 -6.015625 L 4.460938 -6.015625 L 5.214844 -8.808594 L 6.003906 -8.808594 L 5.226562 -6.015625 L 6.648438 -6.015625 L 6.523438 -5.535156 L 5.105469 -5.535156 L 4.503906 -3.28125 L 5.925781 -3.28125 L 5.78125 -2.792969 L 4.382812 -2.792969 L 3.625 0 L 2.820312 0 L 3.59375 -2.792969 L 2.1875 -2.792969 L 1.433594 0 L 0.644531 0 L 1.398438 -2.792969 L 0 -2.792969 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 0.398438 -0.148438 C 1.984375 -1.796875 3.0625 -3.011719 3.632812 -3.78125 C 4.203125 -4.554688 4.484375 -5.308594 4.484375 -6.042969 C 4.484375 -6.683594 4.3125 -7.171875 3.964844 -7.507812 C 3.617188 -7.84375 3.203125 -8.015625 2.722656 -8.015625 C 2.128906 -8.015625 1.644531 -7.796875 1.277344 -7.363281 C 1.074219 -7.125 0.875 -6.757812 0.691406 -6.261719 L 0.410156 -6.320312 C 0.628906 -7.320312 0.996094 -8.011719 1.511719 -8.402344 C 2.03125 -8.789062 2.589844 -8.984375 3.183594 -8.984375 C 3.917969 -8.984375 4.511719 -8.753906 4.964844 -8.289062 C 5.417969 -7.828125 5.644531 -7.261719 5.644531 -6.59375 C 5.644531 -5.882812 5.398438 -5.199219 4.910156 -4.539062 C 4.417969 -3.878906 3.351562 -2.703125 1.710938 -1.015625 L 4.699219 -1.015625 C 5.117188 -1.015625 5.410156 -1.066406 5.578125 -1.164062 C 5.75 -1.265625 5.941406 -1.507812 6.152344 -1.894531 L 6.320312 -1.816406 L 5.597656 0 L 0.398438 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 0.996094 -1.191406 C 1.242188 -1.191406 1.566406 -1.050781 1.96875 -0.769531 C 2.371094 -0.492188 2.679688 -0.351562 2.898438 -0.351562 C 3.398438 -0.351562 3.832031 -0.570312 4.207031 -1.011719 C 4.578125 -1.453125 4.765625 -1.996094 4.765625 -2.636719 C 4.765625 -3.761719 4.167969 -4.570312 2.96875 -5.066406 C 2.304688 -5.339844 1.6875 -5.476562 1.113281 -5.476562 C 1.019531 -5.476562 0.957031 -5.476562 0.933594 -5.484375 C 0.910156 -5.492188 0.882812 -5.515625 0.847656 -5.554688 C 0.855469 -5.589844 0.863281 -5.617188 0.867188 -5.640625 C 0.875 -5.664062 0.882812 -5.6875 0.890625 -5.710938 L 2.3125 -8.820312 L 5.105469 -8.820312 C 5.242188 -8.820312 5.351562 -8.84375 5.425781 -8.894531 C 5.503906 -8.941406 5.601562 -9.03125 5.722656 -9.160156 L 5.828125 -9.070312 L 5.320312 -7.863281 C 5.300781 -7.824219 5.253906 -7.800781 5.175781 -7.789062 C 5.097656 -7.777344 5.011719 -7.773438 4.921875 -7.773438 L 2.402344 -7.773438 L 1.847656 -6.632812 C 2.558594 -6.511719 3.082031 -6.398438 3.410156 -6.289062 C 3.953125 -6.105469 4.40625 -5.835938 4.773438 -5.480469 C 5.085938 -5.171875 5.320312 -4.828125 5.480469 -4.441406 C 5.640625 -4.058594 5.722656 -3.652344 5.722656 -3.222656 C 5.722656 -2.261719 5.378906 -1.460938 4.695312 -0.820312 C 4.011719 -0.179688 3.148438 0.144531 2.101562 0.144531 C 1.675781 0.144531 1.335938 0.101562 1.074219 0.0195312 C 0.640625 -0.113281 0.421875 -0.355469 0.421875 -0.703125 C 0.421875 -0.832031 0.46875 -0.945312 0.5625 -1.042969 C 0.65625 -1.140625 0.800781 -1.191406 0.996094 -1.191406 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 1.035156 -1.132812 C 1.273438 -1.132812 1.589844 -1.007812 1.980469 -0.761719 C 2.375 -0.515625 2.707031 -0.390625 2.980469 -0.390625 C 3.589844 -0.390625 4.039062 -0.59375 4.335938 -1.003906 C 4.632812 -1.414062 4.777344 -1.863281 4.777344 -2.34375 C 4.777344 -2.808594 4.660156 -3.214844 4.421875 -3.566406 C 4.015625 -4.160156 3.335938 -4.460938 2.375 -4.460938 C 2.320312 -4.460938 2.265625 -4.457031 2.214844 -4.457031 C 2.160156 -4.453125 2.101562 -4.449219 2.03125 -4.441406 L 2.019531 -4.609375 C 2.714844 -4.859375 3.257812 -5.148438 3.660156 -5.476562 C 4.058594 -5.800781 4.257812 -6.230469 4.257812 -6.765625 C 4.257812 -7.238281 4.101562 -7.597656 3.785156 -7.84375 C 3.472656 -8.09375 3.113281 -8.214844 2.707031 -8.214844 C 2.230469 -8.214844 1.808594 -8.039062 1.445312 -7.6875 C 1.246094 -7.496094 1.03125 -7.203125 0.800781 -6.804688 L 0.597656 -6.847656 C 0.773438 -7.507812 1.097656 -8.035156 1.570312 -8.429688 C 2.042969 -8.824219 2.589844 -9.023438 3.210938 -9.023438 C 3.875 -9.023438 4.386719 -8.839844 4.75 -8.476562 C 5.113281 -8.113281 5.292969 -7.691406 5.292969 -7.214844 C 5.292969 -6.792969 5.144531 -6.40625 4.84375 -6.054688 C 4.675781 -5.855469 4.410156 -5.632812 4.054688 -5.382812 C 4.472656 -5.207031 4.808594 -4.996094 5.058594 -4.757812 C 5.53125 -4.304688 5.769531 -3.726562 5.769531 -3.027344 C 5.769531 -2.203125 5.445312 -1.476562 4.792969 -0.847656 C 4.144531 -0.21875 3.222656 0.0976562 2.023438 0.0976562 C 1.492188 0.0976562 1.117188 0.0195312 0.902344 -0.140625 C 0.6875 -0.296875 0.578125 -0.46875 0.578125 -0.652344 C 0.578125 -0.765625 0.613281 -0.871094 0.6875 -0.976562 C 0.757812 -1.082031 0.875 -1.132812 1.035156 -1.132812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 3.886719 -7.605469 L 0.691406 -3.085938 L 3.886719 -3.085938 Z M 4.316406 -8.945312 L 4.933594 -8.945312 L 4.933594 -3.085938 L 6.296875 -3.085938 L 6.296875 -2.21875 L 4.933594 -2.21875 L 4.933594 0 L 3.898438 0 L 3.898438 -2.21875 L 0.148438 -2.21875 L 0.148438 -3.085938 Z "/>
</symbol>
</g>
</defs>
<g id="surface496">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
<use xlink:href="#glyph0-2" x="38" y="30"/>
<use xlink:href="#glyph0-3" x="45" y="30"/>
<use xlink:href="#glyph0-4" x="48" y="30"/>
<use xlink:href="#glyph0-5" x="54" y="30"/>
<use xlink:href="#glyph0-6" x="60" y="30"/>
<use xlink:href="#glyph0-3" x="65" y="30"/>
<use xlink:href="#glyph0-7" x="68" y="30"/>
<use xlink:href="#glyph0-8" x="75" y="30"/>
<use xlink:href="#glyph0-3" x="81" y="30"/>
<use xlink:href="#glyph0-9" x="84" y="30"/>
<use xlink:href="#glyph0-10" x="91" y="30"/>
<use xlink:href="#glyph0-8" x="98" y="30"/>
<use xlink:href="#glyph0-6" x="104" y="30"/>
<use xlink:href="#glyph0-11" x="109" y="30"/>
<use xlink:href="#glyph0-12" x="113" y="30"/>
<use xlink:href="#glyph0-13" x="117" y="30"/>
<use xlink:href="#glyph0-2" x="124" y="30"/>
<use xlink:href="#glyph0-3" x="131" y="30"/>
<use xlink:href="#glyph0-14" x="134" y="30"/>
<use xlink:href="#glyph0-8" x="144" y="30"/>
<use xlink:href="#glyph0-3" x="150" y="30"/>
<use xlink:href="#glyph0-4" x="153" y="30"/>
<use xlink:href="#glyph0-13" x="159" y="30"/>
<use xlink:href="#glyph0-2" x="166" y="30"/>
<use xlink:href="#glyph0-11" x="173" y="30"/>
<use xlink:href="#glyph0-5" x="177" y="30"/>
<use xlink:href="#glyph0-4" x="183" y="30"/>
<use xlink:href="#glyph0-11" x="189" y="30"/>
<use xlink:href="#glyph0-8" x="193" y="30"/>
<use xlink:href="#glyph0-15" x="199" y="30"/>
<use xlink:href="#glyph0-3" x="203" y="30"/>
<use xlink:href="#glyph0-16" x="206" y="30"/>
<use xlink:href="#glyph0-12" x="216" y="30"/>
<use xlink:href="#glyph0-6" x="220" y="30"/>
<use xlink:href="#glyph0-4" x="225" y="30"/>
<use xlink:href="#glyph0-13" x="231" y="30"/>
<use xlink:href="#glyph0-15" x="238" y="30"/>
<use xlink:href="#glyph0-7" x="242" y="30"/>
<use xlink:href="#glyph0-3" x="249" y="30"/>
<use xlink:href="#glyph0-17" x="252" y="30"/>
<use xlink:href="#glyph0-18" x="264" y="30"/>
<use xlink:href="#glyph0-2" x="274" y="30"/>
<use xlink:href="#glyph0-19" x="281" y="30"/>
<use xlink:href="#glyph0-5" x="288" y="30"/>
<use xlink:href="#glyph0-20" x="294" y="30"/>
<use xlink:href="#glyph0-5" x="301" y="30"/>
<use xlink:href="#glyph0-2" x="307" y="30"/>
<use xlink:href="#glyph0-11" x="314" y="30"/>
<use xlink:href="#glyph0-21" x="318" y="30"/>
<use xlink:href="#glyph0-13" x="325" y="30"/>
<use xlink:href="#glyph0-10" x="332" y="30"/>
<use xlink:href="#glyph0-22" x="339" y="30"/>
<use xlink:href="#glyph0-23" x="346" y="30"/>
<use xlink:href="#glyph0-24" x="353" y="30"/>
<use xlink:href="#glyph0-25" x="360" y="30"/>
<use xlink:href="#glyph0-26" x="367" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 1.035156 -1.132812 C 1.273438 -1.132812 1.589844 -1.007812 1.980469 -0.761719 C 2.375 -0.515625 2.707031 -0.390625 2.980469 -0.390625 C 3.589844 -0.390625 4.039062 -0.59375 4.335938 -1.003906 C 4.632812 -1.414062 4.777344 -1.863281 4.777344 -2.34375 C 4.777344 -2.808594 4.660156 -3.214844 4.421875 -3.566406 C 4.015625 -4.160156 3.335938 -4.460938 2.375 -4.460938 C 2.320312 -4.460938 2.265625 -4.457031 2.214844 -4.457031 C 2.160156 -4.453125 2.101562 -4.449219 2.03125 -4.441406 L 2.019531 -4.609375 C 2.714844 -4.859375 3.257812 -5.148438 3.660156 -5.476562 C 4.058594 -5.800781 4.257812 -6.230469 4.257812 -6.765625 C 4.257812 -7.238281 4.101562 -7.597656 3.785156 -7.84375 C 3.472656 -8.09375 3.113281 -8.214844 2.707031 -8.214844 C 2.230469 -8.214844 1.808594 -8.039062 1.445312 -7.6875 C 1.246094 -7.496094 1.03125 -7.203125 0.800781 -6.804688 L 0.597656 -6.847656 C 0.773438 -7.507812 1.097656 -8.035156 1.570312 -8.429688 C 2.042969 -8.824219 2.589844 -9.023438 3.210938 -9.023438 C 3.875 -9.023438 4.386719 -8.839844 4.75 -8.476562 C 5.113281 -8.113281 5.292969 -7.691406 5.292969 -7.214844 C 5.292969 -6.792969 5.144531 -6.40625 4.84375 -6.054688 C 4.675781 -5.855469 4.410156 -5.632812 4.054688 -5.382812 C 4.472656 -5.207031 4.808594 -4.996094 5.058594 -4.757812 C 5.53125 -4.304688 5.769531 -3.726562 5.769531 -3.027344 C 5.769531 -2.203125 5.445312 -1.476562 4.792969 -0.847656 C 4.144531 -0.21875 3.222656 0.0976562 2.023438 0.0976562 C 1.492188 0.0976562 1.117188 0.0195312 0.902344 -0.140625 C 0.6875 -0.296875 0.578125 -0.46875 0.578125 -0.652344 C 0.578125 -0.765625 0.613281 -0.871094 0.6875 -0.976562 C 0.757812 -1.082031 0.875 -1.132812 1.035156 -1.132812 Z "/>
</symbol>
</g>
</defs>
<g id="surface164">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 5.984375 -8.820312 L 5.984375 -8.605469 L 3.15625 0.125 L 2.296875 0.125 L 4.933594 -7.839844 L 2.097656 -7.839844 C 1.675781 -7.839844 1.371094 -7.769531 1.1875 -7.628906 C 1.003906 -7.492188 0.769531 -7.199219 0.488281 -6.757812 L 0.261719 -6.863281 C 0.542969 -7.558594 0.71875 -7.984375 0.785156 -8.148438 C 0.851562 -8.3125 0.941406 -8.535156 1.046875 -8.820312 Z "/>
</symbol>
</g>
</defs>
<g id="surface332">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.996094 -1.191406 C 1.242188 -1.191406 1.566406 -1.050781 1.96875 -0.769531 C 2.371094 -0.492188 2.679688 -0.351562 2.898438 -0.351562 C 3.398438 -0.351562 3.832031 -0.570312 4.207031 -1.011719 C 4.578125 -1.453125 4.765625 -1.996094 4.765625 -2.636719 C 4.765625 -3.761719 4.167969 -4.570312 2.96875 -5.066406 C 2.304688 -5.339844 1.6875 -5.476562 1.113281 -5.476562 C 1.019531 -5.476562 0.957031 -5.476562 0.933594 -5.484375 C 0.910156 -5.492188 0.882812 -5.515625 0.847656 -5.554688 C 0.855469 -5.589844 0.863281 -5.617188 0.867188 -5.640625 C 0.875 -5.664062 0.882812 -5.6875 0.890625 -5.710938 L 2.3125 -8.820312 L 5.105469 -8.820312 C 5.242188 -8.820312 5.351562 -8.84375 5.425781 -8.894531 C 5.503906 -8.941406 5.601562 -9.03125 5.722656 -9.160156 L 5.828125 -9.070312 L 5.320312 -7.863281 C 5.300781 -7.824219 5.253906 -7.800781 5.175781 -7.789062 C 5.097656 -7.777344 5.011719 -7.773438 4.921875 -7.773438 L 2.402344 -7.773438 L 1.847656 -6.632812 C 2.558594 -6.511719 3.082031 -6.398438 3.410156 -6.289062 C 3.953125 -6.105469 4.40625 -5.835938 4.773438 -5.480469 C 5.085938 -5.171875 5.320312 -4.828125 5.480469 -4.441406 C 5.640625 -4.058594 5.722656 -3.652344 5.722656 -3.222656 C 5.722656 -2.261719 5.378906 -1.460938 4.695312 -0.820312 C 4.011719 -0.179688 3.148438 0.144531 2.101562 0.144531 C 1.675781 0.144531 1.335938 0.101562 1.074219 0.0195312 C 0.640625 -0.113281 0.421875 -0.355469 0.421875 -0.703125 C 0.421875 -0.832031 0.46875 -0.945312 0.5625 -1.042969 C 0.65625 -1.140625 0.800781 -1.191406 0.996094 -1.191406 Z "/>
</symbol>
</g>
</defs>
<g id="surface248">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.148438 -0.242188 C 0.640625 -0.292969 0.957031 -0.378906 1.101562 -0.503906 C 1.25 -0.628906 1.320312 -0.941406 1.320312 -1.445312 L 1.320312 -7.375 C 1.320312 -7.847656 1.25 -8.160156 1.105469 -8.304688 C 0.964844 -8.449219 0.644531 -8.539062 0.148438 -8.574219 L 0.148438 -8.820312 L 3.917969 -8.820312 L 3.917969 -8.574219 C 3.429688 -8.546875 3.101562 -8.46875 2.933594 -8.332031 C 2.765625 -8.199219 2.683594 -7.910156 2.683594 -7.46875 L 2.683594 -1.0625 C 2.683594 -0.914062 2.707031 -0.796875 2.757812 -0.710938 C 2.808594 -0.628906 2.917969 -0.574219 3.085938 -0.554688 C 3.1875 -0.539062 3.289062 -0.53125 3.402344 -0.527344 C 3.511719 -0.523438 3.71875 -0.519531 4.023438 -0.519531 C 5.207031 -0.519531 6.007812 -0.617188 6.425781 -0.8125 C 6.84375 -1.007812 7.246094 -1.507812 7.636719 -2.3125 L 7.976562 -2.3125 L 7.324219 0 L 0.148438 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.152344 -9.011719 C 1.355469 -9.011719 1.488281 -8.953125 1.550781 -8.84375 C 1.613281 -8.734375 1.648438 -8.582031 1.648438 -8.390625 C 1.648438 -8.359375 1.644531 -8.332031 1.644531 -8.300781 C 1.640625 -8.269531 1.632812 -8.179688 1.613281 -8.035156 L 1.296875 -5.167969 L 1.0625 -5.167969 L 0.722656 -7.820312 C 0.710938 -7.929688 0.699219 -8.035156 0.6875 -8.136719 C 0.675781 -8.242188 0.671875 -8.347656 0.671875 -8.457031 C 0.671875 -8.589844 0.699219 -8.71875 0.757812 -8.835938 C 0.816406 -8.953125 0.949219 -9.011719 1.152344 -9.011719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.820312 -3.605469 C 3.320312 -3.441406 2.910156 -3.257812 2.585938 -3.058594 C 1.960938 -2.671875 1.648438 -2.234375 1.648438 -1.746094 C 1.648438 -1.351562 1.777344 -1.058594 2.039062 -0.871094 C 2.207031 -0.75 2.394531 -0.691406 2.605469 -0.691406 C 2.890625 -0.691406 3.164062 -0.769531 3.425781 -0.929688 C 3.691406 -1.089844 3.820312 -1.296875 3.820312 -1.542969 Z M 0.488281 -1.296875 C 0.488281 -1.925781 0.804688 -2.449219 1.433594 -2.871094 C 1.832031 -3.132812 2.628906 -3.484375 3.820312 -3.933594 L 3.820312 -4.484375 C 3.820312 -4.929688 3.777344 -5.238281 3.691406 -5.410156 C 3.542969 -5.699219 3.238281 -5.847656 2.773438 -5.847656 C 2.550781 -5.847656 2.339844 -5.789062 2.140625 -5.675781 C 1.941406 -5.558594 1.84375 -5.398438 1.84375 -5.195312 C 1.84375 -5.144531 1.851562 -5.054688 1.875 -4.929688 C 1.898438 -4.808594 1.90625 -4.730469 1.90625 -4.695312 C 1.90625 -4.453125 1.828125 -4.28125 1.667969 -4.1875 C 1.574219 -4.128906 1.46875 -4.101562 1.339844 -4.101562 C 1.144531 -4.101562 0.996094 -4.164062 0.890625 -4.292969 C 0.789062 -4.421875 0.734375 -4.5625 0.734375 -4.71875 C 0.734375 -5.023438 0.921875 -5.339844 1.296875 -5.671875 C 1.671875 -6.003906 2.222656 -6.171875 2.949219 -6.171875 C 3.792969 -6.171875 4.363281 -5.898438 4.660156 -5.351562 C 4.820312 -5.050781 4.902344 -4.617188 4.902344 -4.042969 L 4.902344 -1.433594 C 4.902344 -1.179688 4.917969 -1.007812 4.953125 -0.910156 C 5.011719 -0.742188 5.128906 -0.65625 5.304688 -0.65625 C 5.40625 -0.65625 5.488281 -0.671875 5.554688 -0.703125 C 5.617188 -0.734375 5.730469 -0.808594 5.890625 -0.925781 L 5.890625 -0.585938 C 5.753906 -0.417969 5.601562 -0.277344 5.441406 -0.167969 C 5.199219 -0.00390625 4.953125 0.078125 4.699219 0.078125 C 4.40625 0.078125 4.191406 -0.015625 4.058594 -0.207031 C 3.925781 -0.398438 3.855469 -0.628906 3.839844 -0.890625 C 3.511719 -0.605469 3.230469 -0.394531 2.996094 -0.253906 C 2.601562 -0.0195312 2.222656 0.0976562 1.867188 0.0976562 C 1.496094 0.0976562 1.171875 -0.0351562 0.898438 -0.296875 C 0.625 -0.558594 0.488281 -0.890625 0.488281 -1.296875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.273438 -0.183594 C 0.675781 -0.222656 0.949219 -0.300781 1.09375 -0.425781 C 1.238281 -0.550781 1.308594 -0.792969 1.308594 -1.152344 L 1.308594 -7.511719 C 1.308594 -7.800781 1.285156 -7.996094 1.238281 -8.105469 C 1.152344 -8.289062 0.972656 -8.378906 0.710938 -8.378906 C 0.648438 -8.378906 0.582031 -8.371094 0.511719 -8.359375 C 0.441406 -8.347656 0.347656 -8.328125 0.242188 -8.300781 L 0.242188 -8.515625 C 0.828125 -8.671875 1.53125 -8.878906 2.355469 -9.140625 C 2.386719 -9.140625 2.40625 -9.128906 2.410156 -9.101562 C 2.417969 -9.074219 2.421875 -9.019531 2.421875 -8.933594 L 2.421875 -1.125 C 2.421875 -0.75 2.488281 -0.503906 2.617188 -0.394531 C 2.746094 -0.285156 3.015625 -0.210938 3.425781 -0.183594 L 3.425781 0 L 0.273438 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.308594 1.203125 C 1.308594 1.570312 1.511719 1.820312 1.921875 1.960938 C 2.332031 2.097656 2.804688 2.167969 3.332031 2.167969 C 4.054688 2.167969 4.640625 2.042969 5.089844 1.792969 C 5.542969 1.542969 5.769531 1.238281 5.769531 0.871094 C 5.769531 0.582031 5.585938 0.386719 5.222656 0.292969 C 4.996094 0.238281 4.566406 0.203125 3.9375 0.195312 C 3.777344 0.191406 3.609375 0.183594 3.429688 0.179688 C 3.253906 0.171875 3.089844 0.164062 2.941406 0.15625 C 2.847656 0.152344 2.691406 0.132812 2.480469 0.105469 C 2.269531 0.0742188 2.109375 0.046875 2.003906 0.0273438 C 1.953125 0.0273438 1.824219 0.164062 1.621094 0.4375 C 1.414062 0.714844 1.308594 0.96875 1.308594 1.203125 Z M 2.15625 -2.1875 C 1.761719 -2.316406 1.453125 -2.550781 1.234375 -2.882812 C 1.015625 -3.21875 0.90625 -3.59375 0.90625 -4.011719 C 0.90625 -4.519531 1.105469 -5 1.511719 -5.457031 C 1.914062 -5.910156 2.484375 -6.140625 3.222656 -6.140625 C 3.539062 -6.140625 3.890625 -6.0625 4.269531 -5.914062 C 4.652344 -5.765625 5.019531 -5.691406 5.371094 -5.691406 C 5.460938 -5.691406 5.601562 -5.691406 5.785156 -5.699219 C 5.96875 -5.707031 6.101562 -5.710938 6.183594 -5.710938 L 6.261719 -5.710938 L 6.261719 -5.183594 L 5.136719 -5.183594 C 5.214844 -5 5.277344 -4.839844 5.320312 -4.707031 C 5.394531 -4.457031 5.429688 -4.214844 5.429688 -3.992188 C 5.429688 -3.496094 5.222656 -3.042969 4.8125 -2.625 C 4.402344 -2.210938 3.851562 -2.003906 3.15625 -2.003906 C 3.046875 -2.003906 2.855469 -2.023438 2.570312 -2.0625 C 2.445312 -2.0625 2.28125 -1.957031 2.074219 -1.746094 C 1.867188 -1.53125 1.765625 -1.359375 1.765625 -1.222656 C 1.765625 -1.085938 1.917969 -0.984375 2.21875 -0.917969 C 2.417969 -0.875 2.640625 -0.851562 2.882812 -0.851562 C 4 -0.851562 4.757812 -0.789062 5.15625 -0.664062 C 5.8125 -0.460938 6.140625 -0.0234375 6.140625 0.652344 C 6.140625 1.335938 5.757812 1.882812 4.988281 2.292969 C 4.222656 2.699219 3.449219 2.902344 2.667969 2.902344 C 1.957031 2.902344 1.394531 2.757812 0.976562 2.46875 C 0.558594 2.179688 0.351562 1.878906 0.351562 1.5625 C 0.351562 1.40625 0.40625 1.253906 0.515625 1.101562 C 0.628906 0.953125 0.847656 0.730469 1.171875 0.4375 L 1.601562 0.0507812 L 1.679688 -0.0273438 C 1.480469 -0.105469 1.332031 -0.179688 1.230469 -0.253906 C 1.058594 -0.386719 0.96875 -0.542969 0.96875 -0.714844 C 0.96875 -0.875 1.042969 -1.054688 1.195312 -1.246094 C 1.34375 -1.441406 1.664062 -1.753906 2.15625 -2.1875 Z M 3.390625 -2.316406 C 3.628906 -2.316406 3.832031 -2.382812 3.992188 -2.511719 C 4.25 -2.722656 4.382812 -3.082031 4.382812 -3.601562 C 4.382812 -4.011719 4.277344 -4.476562 4.066406 -4.992188 C 3.855469 -5.507812 3.503906 -5.769531 3.015625 -5.769531 C 2.589844 -5.769531 2.296875 -5.566406 2.136719 -5.164062 C 2.054688 -4.949219 2.011719 -4.6875 2.011719 -4.375 C 2.011719 -3.84375 2.140625 -3.371094 2.394531 -2.949219 C 2.652344 -2.527344 2.984375 -2.316406 3.390625 -2.316406 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.339844 -3.019531 C 0.339844 -3.882812 0.613281 -4.613281 1.160156 -5.210938 C 1.710938 -5.808594 2.417969 -6.105469 3.28125 -6.105469 C 4.140625 -6.105469 4.851562 -5.824219 5.417969 -5.261719 C 5.980469 -4.695312 6.261719 -3.945312 6.261719 -3.007812 C 6.261719 -2.144531 5.988281 -1.394531 5.441406 -0.753906 C 4.894531 -0.117188 4.1875 0.203125 3.320312 0.203125 C 2.488281 0.203125 1.78125 -0.105469 1.203125 -0.714844 C 0.625 -1.328125 0.339844 -2.097656 0.339844 -3.019531 Z M 3.097656 -5.714844 C 2.753906 -5.714844 2.457031 -5.601562 2.207031 -5.378906 C 1.773438 -4.984375 1.554688 -4.300781 1.554688 -3.332031 C 1.554688 -2.558594 1.730469 -1.839844 2.078125 -1.171875 C 2.429688 -0.503906 2.914062 -0.167969 3.535156 -0.167969 C 4.019531 -0.167969 4.394531 -0.394531 4.65625 -0.839844 C 4.921875 -1.285156 5.050781 -1.871094 5.050781 -2.597656 C 5.050781 -3.347656 4.886719 -4.054688 4.550781 -4.71875 C 4.214844 -5.382812 3.734375 -5.714844 3.097656 -5.714844 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0.0585938 -0.214844 C 0.457031 -0.25 0.722656 -0.320312 0.851562 -0.425781 C 0.984375 -0.53125 1.046875 -0.757812 1.046875 -1.105469 L 1.046875 -4.042969 C 1.046875 -4.472656 1.007812 -4.78125 0.925781 -4.964844 C 0.847656 -5.148438 0.699219 -5.242188 0.488281 -5.242188 C 0.445312 -5.242188 0.386719 -5.234375 0.316406 -5.222656 C 0.246094 -5.214844 0.167969 -5.199219 0.0898438 -5.183594 L 0.0898438 -5.398438 C 0.339844 -5.484375 0.59375 -5.574219 0.851562 -5.664062 C 1.113281 -5.753906 1.292969 -5.820312 1.394531 -5.859375 C 1.609375 -5.941406 1.832031 -6.035156 2.0625 -6.140625 C 2.09375 -6.140625 2.113281 -6.128906 2.117188 -6.105469 C 2.125 -6.085938 2.128906 -6.039062 2.128906 -5.96875 L 2.128906 -4.902344 C 2.40625 -5.289062 2.675781 -5.589844 2.933594 -5.808594 C 3.191406 -6.023438 3.460938 -6.132812 3.738281 -6.132812 C 3.957031 -6.132812 4.136719 -6.066406 4.277344 -5.933594 C 4.417969 -5.800781 4.484375 -5.636719 4.484375 -5.4375 C 4.484375 -5.257812 4.433594 -5.109375 4.324219 -4.988281 C 4.21875 -4.867188 4.085938 -4.804688 3.925781 -4.804688 C 3.761719 -4.804688 3.59375 -4.878906 3.425781 -5.03125 C 3.261719 -5.183594 3.128906 -5.261719 3.035156 -5.261719 C 2.882812 -5.261719 2.695312 -5.136719 2.472656 -4.890625 C 2.253906 -4.648438 2.140625 -4.394531 2.140625 -4.132812 L 2.140625 -1.199219 C 2.140625 -0.824219 2.230469 -0.566406 2.402344 -0.417969 C 2.574219 -0.273438 2.863281 -0.207031 3.269531 -0.214844 L 3.269531 0 L 0.0585938 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 1.09375 -8.40625 C 1.09375 -8.59375 1.160156 -8.753906 1.289062 -8.886719 C 1.417969 -9.019531 1.578125 -9.089844 1.769531 -9.089844 C 1.957031 -9.089844 2.117188 -9.023438 2.25 -8.890625 C 2.382812 -8.757812 2.449219 -8.597656 2.449219 -8.40625 C 2.449219 -8.21875 2.382812 -8.058594 2.25 -7.925781 C 2.117188 -7.792969 1.957031 -7.726562 1.769531 -7.726562 C 1.578125 -7.726562 1.417969 -7.792969 1.289062 -7.925781 C 1.160156 -8.058594 1.09375 -8.21875 1.09375 -8.40625 Z M 0.261719 -0.183594 C 0.726562 -0.226562 1.019531 -0.304688 1.140625 -0.417969 C 1.261719 -0.535156 1.320312 -0.847656 1.320312 -1.355469 L 1.320312 -4.460938 C 1.320312 -4.742188 1.300781 -4.9375 1.261719 -5.046875 C 1.199219 -5.222656 1.0625 -5.3125 0.851562 -5.3125 C 0.804688 -5.3125 0.757812 -5.308594 0.710938 -5.300781 C 0.667969 -5.292969 0.535156 -5.257812 0.320312 -5.195312 L 0.320312 -5.398438 L 0.597656 -5.488281 C 1.359375 -5.734375 1.886719 -5.921875 2.1875 -6.046875 C 2.308594 -6.101562 2.386719 -6.125 2.421875 -6.125 C 2.429688 -6.09375 2.433594 -6.0625 2.433594 -6.027344 L 2.433594 -1.355469 C 2.433594 -0.859375 2.496094 -0.550781 2.613281 -0.421875 C 2.734375 -0.296875 3.003906 -0.21875 3.425781 -0.183594 L 3.425781 0 L 0.261719 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 3.390625 -6.003906 L 3.390625 -5.535156 L 2.0625 -5.535156 L 2.050781 -1.785156 C 2.050781 -1.453125 2.078125 -1.203125 2.136719 -1.035156 C 2.238281 -0.734375 2.445312 -0.585938 2.746094 -0.585938 C 2.902344 -0.585938 3.039062 -0.621094 3.152344 -0.695312 C 3.269531 -0.769531 3.402344 -0.886719 3.546875 -1.046875 L 3.71875 -0.90625 L 3.574219 -0.710938 C 3.347656 -0.40625 3.109375 -0.191406 2.859375 -0.0664062 C 2.605469 0.0585938 2.363281 0.125 2.128906 0.125 C 1.617188 0.125 1.269531 -0.105469 1.085938 -0.558594 C 0.988281 -0.808594 0.9375 -1.148438 0.9375 -1.589844 L 0.9375 -5.535156 L 0.226562 -5.535156 C 0.207031 -5.546875 0.191406 -5.558594 0.179688 -5.574219 C 0.167969 -5.585938 0.164062 -5.601562 0.164062 -5.625 C 0.164062 -5.667969 0.171875 -5.703125 0.191406 -5.726562 C 0.210938 -5.75 0.273438 -5.804688 0.378906 -5.890625 C 0.675781 -6.140625 0.894531 -6.339844 1.023438 -6.492188 C 1.15625 -6.648438 1.46875 -7.054688 1.960938 -7.714844 C 2.015625 -7.714844 2.050781 -7.710938 2.058594 -7.703125 C 2.070312 -7.695312 2.078125 -7.660156 2.078125 -7.605469 L 2.078125 -6.003906 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 0.117188 -0.183594 C 0.472656 -0.230469 0.707031 -0.316406 0.816406 -0.445312 C 0.925781 -0.574219 0.984375 -0.875 0.984375 -1.355469 L 0.984375 -7.605469 C 0.984375 -7.847656 0.953125 -8.027344 0.886719 -8.140625 C 0.824219 -8.257812 0.671875 -8.3125 0.429688 -8.3125 C 0.382812 -8.3125 0.335938 -8.308594 0.289062 -8.304688 C 0.242188 -8.296875 0.191406 -8.289062 0.136719 -8.28125 L 0.136719 -8.515625 C 0.328125 -8.570312 0.5625 -8.640625 0.84375 -8.71875 C 1.125 -8.800781 1.316406 -8.859375 1.425781 -8.894531 L 2.050781 -9.089844 L 2.0625 -9.042969 L 2.0625 -5.046875 C 2.335938 -5.359375 2.582031 -5.589844 2.792969 -5.734375 C 3.175781 -5.996094 3.585938 -6.125 4.03125 -6.125 C 4.734375 -6.125 5.210938 -5.832031 5.46875 -5.242188 C 5.609375 -4.929688 5.675781 -4.519531 5.675781 -4.011719 L 5.675781 -1.355469 C 5.675781 -0.894531 5.730469 -0.59375 5.835938 -0.457031 C 5.941406 -0.316406 6.160156 -0.226562 6.492188 -0.183594 L 6.492188 0 L 3.671875 0 L 3.671875 -0.183594 C 4.050781 -0.234375 4.292969 -0.324219 4.402344 -0.449219 C 4.511719 -0.574219 4.5625 -0.875 4.5625 -1.355469 L 4.5625 -3.992188 C 4.5625 -4.414062 4.492188 -4.753906 4.351562 -5.011719 C 4.210938 -5.273438 3.945312 -5.402344 3.554688 -5.402344 C 3.214844 -5.402344 2.886719 -5.28125 2.570312 -5.039062 C 2.253906 -4.796875 2.097656 -4.636719 2.097656 -4.5625 L 2.097656 -1.355469 C 2.097656 -0.867188 2.152344 -0.5625 2.265625 -0.441406 C 2.378906 -0.320312 2.621094 -0.234375 2.988281 -0.183594 L 2.988281 0 L 0.117188 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 0.214844 -0.167969 C 0.554688 -0.199219 0.777344 -0.257812 0.890625 -0.339844 C 1.066406 -0.464844 1.152344 -0.714844 1.152344 -1.09375 L 1.152344 -4.460938 C 1.152344 -4.78125 1.109375 -4.992188 1.023438 -5.089844 C 0.941406 -5.191406 0.800781 -5.242188 0.605469 -5.242188 C 0.515625 -5.242188 0.445312 -5.238281 0.398438 -5.226562 C 0.355469 -5.21875 0.300781 -5.203125 0.242188 -5.183594 L 0.242188 -5.410156 L 0.710938 -5.566406 C 0.878906 -5.621094 1.15625 -5.726562 1.542969 -5.871094 C 1.929688 -6.019531 2.132812 -6.09375 2.15625 -6.09375 C 2.175781 -6.09375 2.191406 -6.082031 2.195312 -6.0625 C 2.199219 -6.039062 2.199219 -6 2.199219 -5.9375 L 2.199219 -5.058594 C 2.628906 -5.449219 3 -5.71875 3.3125 -5.867188 C 3.625 -6.019531 3.949219 -6.09375 4.277344 -6.09375 C 4.722656 -6.09375 5.082031 -5.941406 5.34375 -5.636719 C 5.484375 -5.472656 5.597656 -5.25 5.691406 -4.96875 C 6.011719 -5.292969 6.292969 -5.535156 6.53125 -5.691406 C 6.941406 -5.960938 7.363281 -6.09375 7.792969 -6.09375 C 8.492188 -6.09375 8.957031 -5.808594 9.191406 -5.242188 C 9.328125 -4.921875 9.394531 -4.410156 9.394531 -3.71875 L 9.394531 -1.015625 C 9.394531 -0.707031 9.460938 -0.496094 9.597656 -0.386719 C 9.734375 -0.277344 9.980469 -0.203125 10.339844 -0.167969 L 10.339844 0 L 7.402344 0 L 7.402344 -0.183594 C 7.78125 -0.21875 8.027344 -0.292969 8.148438 -0.410156 C 8.265625 -0.527344 8.328125 -0.765625 8.328125 -1.125 L 8.328125 -3.933594 C 8.328125 -4.355469 8.28125 -4.664062 8.191406 -4.863281 C 8.03125 -5.21875 7.714844 -5.398438 7.246094 -5.398438 C 6.964844 -5.398438 6.683594 -5.304688 6.40625 -5.117188 C 6.246094 -5.007812 6.046875 -4.835938 5.8125 -4.597656 L 5.8125 -1.261719 C 5.8125 -0.910156 5.875 -0.644531 6 -0.460938 C 6.125 -0.28125 6.382812 -0.183594 6.785156 -0.167969 L 6.785156 0 L 3.796875 0 L 3.796875 -0.167969 C 4.207031 -0.222656 4.46875 -0.320312 4.582031 -0.46875 C 4.695312 -0.617188 4.753906 -0.980469 4.753906 -1.554688 L 4.753906 -3.378906 C 4.753906 -4.046875 4.710938 -4.507812 4.621094 -4.757812 C 4.480469 -5.183594 4.175781 -5.398438 3.710938 -5.398438 C 3.445312 -5.398438 3.1875 -5.324219 2.929688 -5.179688 C 2.671875 -5.035156 2.449219 -4.84375 2.253906 -4.609375 L 2.253906 -1.046875 C 2.253906 -0.71875 2.308594 -0.492188 2.425781 -0.363281 C 2.539062 -0.238281 2.789062 -0.171875 3.175781 -0.167969 L 3.175781 0 L 0.214844 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 3.054688 -6.105469 C 3.664062 -6.105469 4.203125 -5.894531 4.660156 -5.472656 C 5.121094 -5.050781 5.351562 -4.449219 5.351562 -3.671875 L 1.21875 -3.671875 C 1.261719 -2.664062 1.488281 -1.929688 1.902344 -1.472656 C 2.3125 -1.011719 2.800781 -0.78125 3.367188 -0.78125 C 3.820312 -0.78125 4.207031 -0.902344 4.519531 -1.140625 C 4.832031 -1.378906 5.121094 -1.714844 5.382812 -2.15625 L 5.613281 -2.078125 C 5.433594 -1.527344 5.101562 -1.015625 4.613281 -0.546875 C 4.125 -0.078125 3.527344 0.15625 2.820312 0.15625 C 2.003906 0.15625 1.371094 -0.152344 0.925781 -0.769531 C 0.480469 -1.386719 0.261719 -2.09375 0.261719 -2.898438 C 0.261719 -3.769531 0.519531 -4.523438 1.035156 -5.15625 C 1.550781 -5.789062 2.222656 -6.105469 3.054688 -6.105469 Z M 2.675781 -5.632812 C 2.179688 -5.632812 1.804688 -5.414062 1.542969 -4.972656 C 1.402344 -4.738281 1.304688 -4.445312 1.242188 -4.089844 L 3.992188 -4.089844 C 3.945312 -4.523438 3.859375 -4.847656 3.742188 -5.058594 C 3.53125 -5.441406 3.175781 -5.632812 2.675781 -5.632812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 3.15625 -6.152344 C 3.472656 -6.152344 3.765625 -6.082031 4.03125 -5.945312 C 4.203125 -5.851562 4.371094 -5.726562 4.53125 -5.566406 L 4.53125 -7.636719 C 4.53125 -7.902344 4.5 -8.082031 4.441406 -8.183594 C 4.382812 -8.285156 4.246094 -8.332031 4.023438 -8.332031 C 3.972656 -8.332031 3.925781 -8.332031 3.886719 -8.328125 C 3.847656 -8.324219 3.761719 -8.3125 3.625 -8.300781 L 3.625 -8.515625 L 4.160156 -8.652344 C 4.355469 -8.703125 4.550781 -8.757812 4.746094 -8.816406 C 4.941406 -8.871094 5.113281 -8.925781 5.261719 -8.976562 C 5.332031 -9 5.445312 -9.039062 5.605469 -9.101562 L 5.644531 -9.089844 L 5.632812 -8.40625 C 5.628906 -8.15625 5.621094 -7.902344 5.617188 -7.640625 C 5.613281 -7.378906 5.613281 -7.117188 5.613281 -6.863281 L 5.597656 -1.542969 C 5.597656 -1.261719 5.632812 -1.0625 5.703125 -0.949219 C 5.773438 -0.835938 5.957031 -0.78125 6.257812 -0.78125 C 6.304688 -0.78125 6.351562 -0.78125 6.398438 -0.785156 C 6.445312 -0.785156 6.496094 -0.792969 6.542969 -0.800781 L 6.542969 -0.585938 C 6.515625 -0.578125 6.203125 -0.46875 5.597656 -0.261719 L 4.578125 0.125 L 4.53125 0.0664062 L 4.53125 -0.734375 C 4.289062 -0.46875 4.078125 -0.28125 3.898438 -0.167969 C 3.582031 0.0273438 3.214844 0.125 2.800781 0.125 C 2.0625 0.125 1.464844 -0.160156 1.003906 -0.730469 C 0.546875 -1.300781 0.320312 -1.964844 0.320312 -2.714844 C 0.320312 -3.65625 0.59375 -4.464844 1.140625 -5.140625 C 1.691406 -5.816406 2.363281 -6.152344 3.15625 -6.152344 Z M 3.398438 -0.578125 C 3.738281 -0.578125 4.011719 -0.679688 4.21875 -0.878906 C 4.425781 -1.078125 4.53125 -1.265625 4.53125 -1.445312 L 4.53125 -4.238281 C 4.53125 -4.800781 4.378906 -5.199219 4.078125 -5.433594 C 3.777344 -5.664062 3.484375 -5.78125 3.195312 -5.78125 C 2.648438 -5.78125 2.222656 -5.539062 1.921875 -5.054688 C 1.617188 -4.570312 1.464844 -3.976562 1.464844 -3.269531 C 1.464844 -2.570312 1.625 -1.945312 1.949219 -1.398438 C 2.273438 -0.851562 2.757812 -0.578125 3.398438 -0.578125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 2.0625 -6.027344 L 2.0625 -1.863281 C 2.0625 -1.566406 2.105469 -1.332031 2.1875 -1.152344 C 2.347656 -0.824219 2.644531 -0.65625 3.074219 -0.65625 C 3.367188 -0.65625 3.65625 -0.753906 3.9375 -0.949219 C 4.097656 -1.058594 4.261719 -1.207031 4.425781 -1.398438 L 4.425781 -4.96875 C 4.425781 -5.300781 4.363281 -5.519531 4.230469 -5.625 C 4.101562 -5.730469 3.839844 -5.792969 3.449219 -5.8125 L 3.449219 -6.027344 L 5.554688 -6.027344 L 5.554688 -1.445312 C 5.554688 -1.148438 5.605469 -0.945312 5.710938 -0.835938 C 5.820312 -0.726562 6.042969 -0.675781 6.386719 -0.691406 L 6.386719 -0.507812 C 6.148438 -0.441406 5.972656 -0.394531 5.859375 -0.359375 C 5.746094 -0.328125 5.558594 -0.269531 5.292969 -0.183594 C 5.179688 -0.144531 4.933594 -0.0507812 4.550781 0.0976562 C 4.527344 0.0976562 4.515625 0.0859375 4.511719 0.0664062 C 4.507812 0.046875 4.503906 0.0273438 4.503906 0 L 4.503906 -1.046875 C 4.210938 -0.695312 3.941406 -0.4375 3.699219 -0.265625 C 3.328125 -0.0078125 2.9375 0.125 2.527344 0.125 C 2.148438 0.125 1.792969 -0.0117188 1.457031 -0.28125 C 1.121094 -0.546875 0.949219 -0.988281 0.949219 -1.613281 L 0.949219 -4.992188 C 0.949219 -5.339844 0.875 -5.574219 0.730469 -5.691406 C 0.632812 -5.765625 0.429688 -5.816406 0.117188 -5.847656 L 0.117188 -6.027344 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 3.054688 -6.105469 C 3.664062 -6.105469 4.203125 -5.894531 4.660156 -5.472656 C 5.121094 -5.050781 5.351562 -4.449219 5.351562 -3.671875 L 1.21875 -3.671875 C 1.261719 -2.664062 1.488281 -1.929688 1.902344 -1.472656 C 2.3125 -1.011719 2.800781 -0.78125 3.367188 -0.78125 C 3.820312 -0.78125 4.207031 -0.902344 4.519531 -1.140625 C 4.832031 -1.378906 5.121094 -1.714844 5.382812 -2.15625 L 5.613281 -2.078125 C 5.433594 -1.527344 5.101562 -1.015625 4.613281 -0.546875 C 4.125 -0.078125 3.527344 0.15625 2.820312 0.15625 C 2.003906 0.15625 1.371094 -0.152344 0.925781 -0.769531 C 0.480469 -1.386719 0.261719 -2.09375 0.261719 -2.898438 C 0.261719 -3.769531 0.519531 -4.523438 1.035156 -5.15625 C 1.550781 -5.789062 2.222656 -6.105469 3.054688 -6.105469 Z M 2.675781 -5.632812 C 2.179688 -5.632812 1.804688 -5.414062 1.542969 -4.972656 C 1.402344 -4.738281 1.304688 -4.445312 1.242188 -4.089844 L 3.992188 -4.089844 C 3.945312 -4.523438 3.859375 -4.847656 3.742188 -5.058594 C 3.53125 -5.441406 3.175781 -5.632812 2.675781 -5.632812 Z M 5.027344 -8.621094 C 5.027344 -8.496094 4.992188 -8.390625 4.921875 -8.308594 C 4.851562 -8.226562 4.75 -8.140625 4.617188 -8.054688 L 2.566406 -6.757812 L 2.023438 -6.757812 L 3.984375 -8.730469 C 4.054688 -8.800781 4.140625 -8.871094 4.246094 -8.945312 C 4.347656 -9.019531 4.460938 -9.054688 4.578125 -9.054688 C 4.691406 -9.054688 4.792969 -9.015625 4.886719 -8.933594 C 4.980469 -8.855469 5.027344 -8.75 5.027344 -8.621094 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 0.242188 -0.183594 C 0.550781 -0.222656 0.765625 -0.296875 0.886719 -0.414062 C 1.011719 -0.527344 1.074219 -0.785156 1.074219 -1.183594 L 1.074219 -4.484375 C 1.074219 -4.761719 1.046875 -4.957031 0.996094 -5.070312 C 0.914062 -5.234375 0.746094 -5.320312 0.488281 -5.320312 C 0.449219 -5.320312 0.410156 -5.316406 0.367188 -5.3125 C 0.328125 -5.308594 0.277344 -5.300781 0.214844 -5.292969 L 0.214844 -5.519531 C 0.394531 -5.574219 0.8125 -5.707031 1.476562 -5.925781 L 2.089844 -6.125 C 2.121094 -6.125 2.136719 -6.117188 2.144531 -6.09375 C 2.152344 -6.070312 2.15625 -6.042969 2.15625 -6.003906 L 2.15625 -5.046875 C 2.554688 -5.417969 2.867188 -5.675781 3.09375 -5.8125 C 3.429688 -6.027344 3.78125 -6.132812 4.148438 -6.132812 C 4.441406 -6.132812 4.710938 -6.046875 4.953125 -5.878906 C 5.421875 -5.550781 5.65625 -4.960938 5.65625 -4.113281 L 5.65625 -1.074219 C 5.65625 -0.761719 5.71875 -0.535156 5.847656 -0.398438 C 5.972656 -0.257812 6.183594 -0.1875 6.476562 -0.183594 L 6.476562 0 L 3.699219 0 L 3.699219 -0.183594 C 4.015625 -0.226562 4.234375 -0.3125 4.363281 -0.445312 C 4.488281 -0.578125 4.550781 -0.867188 4.550781 -1.308594 L 4.550781 -4.089844 C 4.550781 -4.460938 4.480469 -4.769531 4.34375 -5.015625 C 4.203125 -5.261719 3.949219 -5.382812 3.574219 -5.382812 C 3.316406 -5.382812 3.058594 -5.296875 2.792969 -5.125 C 2.644531 -5.023438 2.453125 -4.859375 2.21875 -4.628906 L 2.21875 -0.984375 C 2.21875 -0.671875 2.289062 -0.460938 2.429688 -0.355469 C 2.566406 -0.25 2.785156 -0.191406 3.085938 -0.183594 L 3.085938 0 L 0.242188 0 Z "/>
</symbol>
</g>
</defs>
<g id="surface1">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
<use xlink:href="#glyph0-2" x="38" y="30"/>
<use xlink:href="#glyph0-3" x="40" y="30"/>
<use xlink:href="#glyph0-4" x="46" y="30"/>
<use xlink:href="#glyph0-5" x="50" y="30"/>
<use xlink:href="#glyph0-6" x="57" y="30"/>
<use xlink:href="#glyph0-7" x="64" y="30"/>
<use xlink:href="#glyph0-8" x="68" y="30"/>
<use xlink:href="#glyph0-9" x="72" y="30"/>
<use xlink:href="#glyph0-10" x="76" y="30"/>
<use xlink:href="#glyph0-11" x="83" y="30"/>
<use xlink:href="#glyph0-12" x="93" y="30"/>
<use xlink:href="#glyph0-13" x="99" y="30"/>
<use xlink:href="#glyph0-14" x="102" y="30"/>
<use xlink:href="#glyph0-15" x="109" y="30"/>
<use xlink:href="#glyph0-13" x="116" y="30"/>
<use xlink:href="#glyph0-14" x="119" y="30"/>
<use xlink:href="#glyph0-16" x="126" y="30"/>
<use xlink:href="#glyph0-11" x="132" y="30"/>
<use xlink:href="#glyph0-8" x="142" y="30"/>
<use xlink:href="#glyph0-17" x="146" y="30"/>
<use xlink:href="#glyph0-12" x="153" y="30"/>
<use xlink:href="#glyph0-15" x="159" y="30"/>
<use xlink:href="#glyph0-7" x="166" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 6.238281 -2.960938 C 6.238281 -2.167969 5.980469 -1.453125 5.472656 -0.8125 C 4.960938 -0.175781 4.300781 0.144531 3.484375 0.144531 C 2.71875 0.144531 2.023438 -0.214844 1.394531 -0.929688 C 0.769531 -1.648438 0.457031 -2.601562 0.457031 -3.789062 C 0.457031 -5.320312 1.0625 -6.636719 2.277344 -7.734375 C 3.363281 -8.65625 4.582031 -9.113281 5.9375 -9.113281 L 5.96875 -8.898438 C 5.425781 -8.800781 4.960938 -8.664062 4.566406 -8.492188 C 4.175781 -8.320312 3.824219 -8.082031 3.515625 -7.773438 C 3.199219 -7.460938 2.902344 -7.0625 2.625 -6.582031 C 2.347656 -6.101562 2.15625 -5.621094 2.050781 -5.148438 C 2.320312 -5.3125 2.550781 -5.4375 2.746094 -5.515625 C 3.09375 -5.652344 3.445312 -5.722656 3.796875 -5.722656 C 4.484375 -5.722656 5.066406 -5.484375 5.535156 -5.007812 C 6.003906 -4.53125 6.238281 -3.847656 6.238281 -2.960938 Z M 5.046875 -2.460938 C 5.046875 -3.039062 4.953125 -3.550781 4.773438 -3.996094 C 4.46875 -4.742188 3.953125 -5.117188 3.222656 -5.117188 C 2.550781 -5.117188 2.101562 -4.917969 1.882812 -4.519531 C 1.75 -4.285156 1.6875 -3.894531 1.6875 -3.347656 C 1.6875 -2.640625 1.835938 -1.945312 2.136719 -1.269531 C 2.441406 -0.59375 2.917969 -0.253906 3.566406 -0.253906 C 4.082031 -0.253906 4.460938 -0.472656 4.695312 -0.914062 C 4.929688 -1.355469 5.046875 -1.871094 5.046875 -2.460938 Z "/>
</symbol>
</g>
</defs>
<g id="surface6">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.828125 -3.5625 C 1.351562 -3.617188 1.753906 -3.734375 2.03125 -3.914062 C 2.457031 -4.191406 2.667969 -4.632812 2.667969 -5.242188 L 2.683594 -7.03125 C 2.683594 -7.835938 2.996094 -8.382812 3.625 -8.671875 C 3.992188 -8.839844 4.636719 -8.953125 5.566406 -9.011719 L 5.566406 -8.71875 C 5.097656 -8.664062 4.667969 -8.511719 4.28125 -8.257812 C 3.890625 -8.003906 3.699219 -7.585938 3.699219 -7.003906 L 3.699219 -5.410156 C 3.699219 -4.722656 3.53125 -4.253906 3.203125 -3.996094 C 2.875 -3.742188 2.289062 -3.527344 1.445312 -3.359375 L 1.21875 -3.3125 L 1.21875 -3.28125 C 2.109375 -3.210938 2.742188 -3.011719 3.117188 -2.675781 C 3.496094 -2.339844 3.6875 -1.902344 3.699219 -1.355469 L 3.71875 0.480469 C 3.722656 1.019531 3.941406 1.421875 4.375 1.691406 C 4.621094 1.84375 5.019531 1.976562 5.566406 2.082031 L 5.566406 2.375 C 4.695312 2.375 3.996094 2.226562 3.46875 1.925781 C 2.945312 1.628906 2.683594 1.125 2.683594 0.417969 L 2.667969 -1.589844 C 2.667969 -2.09375 2.445312 -2.472656 1.992188 -2.726562 C 1.734375 -2.871094 1.347656 -2.992188 0.828125 -3.085938 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 1.152344 -9.011719 C 1.355469 -9.011719 1.488281 -8.953125 1.550781 -8.84375 C 1.613281 -8.734375 1.648438 -8.582031 1.648438 -8.390625 C 1.648438 -8.359375 1.644531 -8.332031 1.644531 -8.300781 C 1.640625 -8.269531 1.632812 -8.179688 1.613281 -8.035156 L 1.296875 -5.167969 L 1.0625 -5.167969 L 0.722656 -7.820312 C 0.710938 -7.929688 0.699219 -8.035156 0.6875 -8.136719 C 0.675781 -8.242188 0.671875 -8.347656 0.671875 -8.457031 C 0.671875 -8.589844 0.699219 -8.71875 0.757812 -8.835938 C 0.816406 -8.953125 0.949219 -9.011719 1.152344 -9.011719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 3.390625 -6.003906 L 3.390625 -5.535156 L 2.0625 -5.535156 L 2.050781 -1.785156 C 2.050781 -1.453125 2.078125 -1.203125 2.136719 -1.035156 C 2.238281 -0.734375 2.445312 -0.585938 2.746094 -0.585938 C 2.902344 -0.585938 3.039062 -0.621094 3.152344 -0.695312 C 3.269531 -0.769531 3.402344 -0.886719 3.546875 -1.046875 L 3.71875 -0.90625 L 3.574219 -0.710938 C 3.347656 -0.40625 3.109375 -0.191406 2.859375 -0.0664062 C 2.605469 0.0585938 2.363281 0.125 2.128906 0.125 C 1.617188 0.125 1.269531 -0.105469 1.085938 -0.558594 C 0.988281 -0.808594 0.9375 -1.148438 0.9375 -1.589844 L 0.9375 -5.535156 L 0.226562 -5.535156 C 0.207031 -5.546875 0.191406 -5.558594 0.179688 -5.574219 C 0.167969 -5.585938 0.164062 -5.601562 0.164062 -5.625 C 0.164062 -5.667969 0.171875 -5.703125 0.191406 -5.726562 C 0.210938 -5.75 0.273438 -5.804688 0.378906 -5.890625 C 0.675781 -6.140625 0.894531 -6.339844 1.023438 -6.492188 C 1.15625 -6.648438 1.46875 -7.054688 1.960938 -7.714844 C 2.015625 -7.714844 2.050781 -7.710938 2.058594 -7.703125 C 2.070312 -7.695312 2.078125 -7.660156 2.078125 -7.605469 L 2.078125 -6.003906 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 0.183594 -5.984375 L 2.929688 -5.984375 L 2.929688 -5.78125 C 2.710938 -5.777344 2.550781 -5.757812 2.449219 -5.722656 C 2.25 -5.667969 2.148438 -5.554688 2.148438 -5.390625 C 2.148438 -5.328125 2.160156 -5.269531 2.179688 -5.203125 C 2.203125 -5.140625 2.242188 -5.046875 2.296875 -4.921875 L 3.820312 -1.542969 L 5.046875 -4.949219 C 5.058594 -4.984375 5.078125 -5.0625 5.105469 -5.183594 C 5.136719 -5.304688 5.148438 -5.386719 5.148438 -5.429688 C 5.148438 -5.542969 5.109375 -5.625 5.03125 -5.675781 C 4.953125 -5.730469 4.855469 -5.757812 4.734375 -5.769531 L 4.53125 -5.78125 L 4.53125 -5.984375 L 6.320312 -5.984375 L 6.320312 -5.78125 C 6.144531 -5.757812 6.011719 -5.699219 5.921875 -5.597656 C 5.832031 -5.5 5.753906 -5.359375 5.691406 -5.183594 L 3.640625 0.246094 C 3.285156 1.183594 2.941406 1.863281 2.617188 2.285156 C 2.292969 2.707031 1.878906 2.917969 1.378906 2.917969 C 1.136719 2.917969 0.910156 2.855469 0.695312 2.734375 C 0.484375 2.613281 0.378906 2.417969 0.378906 2.15625 C 0.378906 1.980469 0.441406 1.839844 0.570312 1.726562 C 0.699219 1.617188 0.859375 1.5625 1.054688 1.5625 C 1.167969 1.5625 1.335938 1.605469 1.558594 1.6875 C 1.78125 1.769531 1.941406 1.808594 2.039062 1.808594 C 2.28125 1.808594 2.535156 1.527344 2.804688 0.964844 C 3.074219 0.398438 3.210938 0.0234375 3.210938 -0.167969 C 3.210938 -0.207031 3.203125 -0.257812 3.191406 -0.3125 C 3.175781 -0.367188 3.160156 -0.417969 3.144531 -0.460938 L 1.0625 -4.96875 C 0.914062 -5.289062 0.785156 -5.5 0.671875 -5.601562 C 0.5625 -5.703125 0.398438 -5.769531 0.183594 -5.800781 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.128906 -1.199219 C 2.242188 -0.902344 2.410156 -0.683594 2.632812 -0.535156 C 2.855469 -0.390625 3.121094 -0.320312 3.425781 -0.320312 C 3.894531 -0.320312 4.292969 -0.550781 4.625 -1.019531 C 4.957031 -1.484375 5.125 -2.136719 5.125 -2.96875 C 5.125 -3.765625 4.949219 -4.363281 4.605469 -4.757812 C 4.261719 -5.152344 3.859375 -5.351562 3.40625 -5.351562 C 3.085938 -5.351562 2.789062 -5.253906 2.527344 -5.054688 C 2.261719 -4.859375 2.128906 -4.664062 2.128906 -4.472656 Z M 0.0585938 2.6875 C 0.464844 2.664062 0.726562 2.574219 0.835938 2.429688 C 0.945312 2.28125 1.003906 2.046875 1.003906 1.730469 L 1.003906 -4.519531 C 1.003906 -4.847656 0.960938 -5.058594 0.882812 -5.152344 C 0.800781 -5.246094 0.652344 -5.292969 0.429688 -5.292969 C 0.382812 -5.292969 0.335938 -5.289062 0.296875 -5.285156 C 0.253906 -5.28125 0.195312 -5.273438 0.117188 -5.261719 L 0.117188 -5.476562 L 0.734375 -5.675781 C 0.757812 -5.679688 1.195312 -5.832031 2.042969 -6.125 C 2.066406 -6.125 2.082031 -6.117188 2.09375 -6.097656 C 2.105469 -6.078125 2.109375 -6.054688 2.109375 -6.027344 L 2.109375 -5.148438 C 2.394531 -5.4375 2.648438 -5.648438 2.863281 -5.789062 C 3.253906 -6.03125 3.65625 -6.152344 4.070312 -6.152344 C 4.667969 -6.152344 5.183594 -5.898438 5.613281 -5.386719 C 6.046875 -4.878906 6.261719 -4.179688 6.261719 -3.292969 C 6.261719 -2.425781 6.003906 -1.636719 5.484375 -0.929688 C 4.964844 -0.222656 4.3125 0.128906 3.527344 0.128906 C 3.285156 0.128906 3.074219 0.101562 2.898438 0.0390625 C 2.621094 -0.0507812 2.363281 -0.21875 2.128906 -0.460938 L 2.128906 1.667969 C 2.128906 2.105469 2.199219 2.375 2.34375 2.472656 C 2.488281 2.574219 2.800781 2.640625 3.28125 2.675781 L 3.28125 2.902344 L 0.0585938 2.902344 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 3.054688 -6.105469 C 3.664062 -6.105469 4.203125 -5.894531 4.660156 -5.472656 C 5.121094 -5.050781 5.351562 -4.449219 5.351562 -3.671875 L 1.21875 -3.671875 C 1.261719 -2.664062 1.488281 -1.929688 1.902344 -1.472656 C 2.3125 -1.011719 2.800781 -0.78125 3.367188 -0.78125 C 3.820312 -0.78125 4.207031 -0.902344 4.519531 -1.140625 C 4.832031 -1.378906 5.121094 -1.714844 5.382812 -2.15625 L 5.613281 -2.078125 C 5.433594 -1.527344 5.101562 -1.015625 4.613281 -0.546875 C 4.125 -0.078125 3.527344 0.15625 2.820312 0.15625 C 2.003906 0.15625 1.371094 -0.152344 0.925781 -0.769531 C 0.480469 -1.386719 0.261719 -2.09375 0.261719 -2.898438 C 0.261719 -3.769531 0.519531 -4.523438 1.035156 -5.15625 C 1.550781 -5.789062 2.222656 -6.105469 3.054688 -6.105469 Z M 2.675781 -5.632812 C 2.179688 -5.632812 1.804688 -5.414062 1.542969 -4.972656 C 1.402344 -4.738281 1.304688 -4.445312 1.242188 -4.089844 L 3.992188 -4.089844 C 3.945312 -4.523438 3.859375 -4.847656 3.742188 -5.058594 C 3.53125 -5.441406 3.175781 -5.632812 2.675781 -5.632812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 2.527344 -5.410156 C 2.527344 -5.191406 2.449219 -5.015625 2.300781 -4.878906 C 2.152344 -4.742188 1.980469 -4.675781 1.789062 -4.675781 C 1.582031 -4.675781 1.410156 -4.75 1.277344 -4.894531 C 1.140625 -5.042969 1.074219 -5.210938 1.074219 -5.402344 C 1.074219 -5.601562 1.144531 -5.773438 1.28125 -5.914062 C 1.421875 -6.054688 1.589844 -6.125 1.789062 -6.125 C 1.980469 -6.125 2.152344 -6.058594 2.300781 -5.921875 C 2.449219 -5.785156 2.527344 -5.613281 2.527344 -5.410156 Z M 1.769531 0.109375 C 1.589844 0.109375 1.425781 0.0390625 1.285156 -0.105469 C 1.144531 -0.246094 1.074219 -0.421875 1.074219 -0.625 C 1.074219 -0.820312 1.144531 -0.992188 1.28125 -1.136719 C 1.421875 -1.28125 1.59375 -1.355469 1.796875 -1.355469 C 2 -1.355469 2.179688 -1.285156 2.332031 -1.140625 C 2.484375 -1 2.558594 -0.832031 2.558594 -0.632812 C 2.558594 -0.441406 2.488281 -0.269531 2.34375 -0.117188 C 2.199219 0.0351562 2.007812 0.109375 1.769531 0.109375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 0.214844 -0.167969 C 0.554688 -0.199219 0.777344 -0.257812 0.890625 -0.339844 C 1.066406 -0.464844 1.152344 -0.714844 1.152344 -1.09375 L 1.152344 -4.460938 C 1.152344 -4.78125 1.109375 -4.992188 1.023438 -5.089844 C 0.941406 -5.191406 0.800781 -5.242188 0.605469 -5.242188 C 0.515625 -5.242188 0.445312 -5.238281 0.398438 -5.226562 C 0.355469 -5.21875 0.300781 -5.203125 0.242188 -5.183594 L 0.242188 -5.410156 L 0.710938 -5.566406 C 0.878906 -5.621094 1.15625 -5.726562 1.542969 -5.871094 C 1.929688 -6.019531 2.132812 -6.09375 2.15625 -6.09375 C 2.175781 -6.09375 2.191406 -6.082031 2.195312 -6.0625 C 2.199219 -6.039062 2.199219 -6 2.199219 -5.9375 L 2.199219 -5.058594 C 2.628906 -5.449219 3 -5.71875 3.3125 -5.867188 C 3.625 -6.019531 3.949219 -6.09375 4.277344 -6.09375 C 4.722656 -6.09375 5.082031 -5.941406 5.34375 -5.636719 C 5.484375 -5.472656 5.597656 -5.25 5.691406 -4.96875 C 6.011719 -5.292969 6.292969 -5.535156 6.53125 -5.691406 C 6.941406 -5.960938 7.363281 -6.09375 7.792969 -6.09375 C 8.492188 -6.09375 8.957031 -5.808594 9.191406 -5.242188 C 9.328125 -4.921875 9.394531 -4.410156 9.394531 -3.71875 L 9.394531 -1.015625 C 9.394531 -0.707031 9.460938 -0.496094 9.597656 -0.386719 C 9.734375 -0.277344 9.980469 -0.203125 10.339844 -0.167969 L 10.339844 0 L 7.402344 0 L 7.402344 -0.183594 C 7.78125 -0.21875 8.027344 -0.292969 8.148438 -0.410156 C 8.265625 -0.527344 8.328125 -0.765625 8.328125 -1.125 L 8.328125 -3.933594 C 8.328125 -4.355469 8.28125 -4.664062 8.191406 -4.863281 C 8.03125 -5.21875 7.714844 -5.398438 7.246094 -5.398438 C 6.964844 -5.398438 6.683594 -5.304688 6.40625 -5.117188 C 6.246094 -5.007812 6.046875 -4.835938 5.8125 -4.597656 L 5.8125 -1.261719 C 5.8125 -0.910156 5.875 -0.644531 6 -0.460938 C 6.125 -0.28125 6.382812 -0.183594 6.785156 -0.167969 L 6.785156 0 L 3.796875 0 L 3.796875 -0.167969 C 4.207031 -0.222656 4.46875 -0.320312 4.582031 -0.46875 C 4.695312 -0.617188 4.753906 -0.980469 4.753906 -1.554688 L 4.753906 -3.378906 C 4.753906 -4.046875 4.710938 -4.507812 4.621094 -4.757812 C 4.480469 -5.183594 4.175781 -5.398438 3.710938 -5.398438 C 3.445312 -5.398438 3.1875 -5.324219 2.929688 -5.179688 C 2.671875 -5.035156 2.449219 -4.84375 2.253906 -4.609375 L 2.253906 -1.046875 C 2.253906 -0.71875 2.308594 -0.492188 2.425781 -0.363281 C 2.539062 -0.238281 2.789062 -0.171875 3.175781 -0.167969 L 3.175781 0 L 0.214844 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.269531 -0.136719 C 3.269531 0.300781 3.109375 0.710938 2.792969 1.085938 C 2.476562 1.464844 2.136719 1.734375 1.769531 1.902344 L 1.648438 1.640625 C 2.0625 1.40625 2.351562 1.152344 2.507812 0.878906 C 2.667969 0.605469 2.746094 0.378906 2.746094 0.195312 C 2.746094 0.132812 2.726562 0.09375 2.6875 0.078125 C 2.648438 0.0625 2.609375 0.0507812 2.566406 0.0507812 L 2.128906 0.0976562 C 1.945312 0.0976562 1.78125 0.0390625 1.628906 -0.0820312 C 1.476562 -0.199219 1.398438 -0.375 1.398438 -0.597656 C 1.398438 -0.773438 1.460938 -0.941406 1.589844 -1.105469 C 1.714844 -1.269531 1.921875 -1.355469 2.207031 -1.355469 C 2.480469 -1.355469 2.726562 -1.246094 2.941406 -1.03125 C 3.160156 -0.816406 3.269531 -0.519531 3.269531 -0.136719 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 0.242188 -0.183594 C 0.550781 -0.222656 0.765625 -0.296875 0.886719 -0.414062 C 1.011719 -0.527344 1.074219 -0.785156 1.074219 -1.183594 L 1.074219 -4.484375 C 1.074219 -4.761719 1.046875 -4.957031 0.996094 -5.070312 C 0.914062 -5.234375 0.746094 -5.320312 0.488281 -5.320312 C 0.449219 -5.320312 0.410156 -5.316406 0.367188 -5.3125 C 0.328125 -5.308594 0.277344 -5.300781 0.214844 -5.292969 L 0.214844 -5.519531 C 0.394531 -5.574219 0.8125 -5.707031 1.476562 -5.925781 L 2.089844 -6.125 C 2.121094 -6.125 2.136719 -6.117188 2.144531 -6.09375 C 2.152344 -6.070312 2.15625 -6.042969 2.15625 -6.003906 L 2.15625 -5.046875 C 2.554688 -5.417969 2.867188 -5.675781 3.09375 -5.8125 C 3.429688 -6.027344 3.78125 -6.132812 4.148438 -6.132812 C 4.441406 -6.132812 4.710938 -6.046875 4.953125 -5.878906 C 5.421875 -5.550781 5.65625 -4.960938 5.65625 -4.113281 L 5.65625 -1.074219 C 5.65625 -0.761719 5.71875 -0.535156 5.847656 -0.398438 C 5.972656 -0.257812 6.183594 -0.1875 6.476562 -0.183594 L 6.476562 0 L 3.699219 0 L 3.699219 -0.183594 C 4.015625 -0.226562 4.234375 -0.3125 4.363281 -0.445312 C 4.488281 -0.578125 4.550781 -0.867188 4.550781 -1.308594 L 4.550781 -4.089844 C 4.550781 -4.460938 4.480469 -4.769531 4.34375 -5.015625 C 4.203125 -5.261719 3.949219 -5.382812 3.574219 -5.382812 C 3.316406 -5.382812 3.058594 -5.296875 2.792969 -5.125 C 2.644531 -5.023438 2.453125 -4.859375 2.21875 -4.628906 L 2.21875 -0.984375 C 2.21875 -0.671875 2.289062 -0.460938 2.429688 -0.355469 C 2.566406 -0.25 2.785156 -0.191406 3.085938 -0.183594 L 3.085938 0 L 0.242188 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 1.09375 -8.40625 C 1.09375 -8.59375 1.160156 -8.753906 1.289062 -8.886719 C 1.417969 -9.019531 1.578125 -9.089844 1.769531 -9.089844 C 1.957031 -9.089844 2.117188 -9.023438 2.25 -8.890625 C 2.382812 -8.757812 2.449219 -8.597656 2.449219 -8.40625 C 2.449219 -8.21875 2.382812 -8.058594 2.25 -7.925781 C 2.117188 -7.792969 1.957031 -7.726562 1.769531 -7.726562 C 1.578125 -7.726562 1.417969 -7.792969 1.289062 -7.925781 C 1.160156 -8.058594 1.09375 -8.21875 1.09375 -8.40625 Z M 0.261719 -0.183594 C 0.726562 -0.226562 1.019531 -0.304688 1.140625 -0.417969 C 1.261719 -0.535156 1.320312 -0.847656 1.320312 -1.355469 L 1.320312 -4.460938 C 1.320312 -4.742188 1.300781 -4.9375 1.261719 -5.046875 C 1.199219 -5.222656 1.0625 -5.3125 0.851562 -5.3125 C 0.804688 -5.3125 0.757812 -5.308594 0.710938 -5.300781 C 0.667969 -5.292969 0.535156 -5.257812 0.320312 -5.195312 L 0.320312 -5.398438 L 0.597656 -5.488281 C 1.359375 -5.734375 1.886719 -5.921875 2.1875 -6.046875 C 2.308594 -6.101562 2.386719 -6.125 2.421875 -6.125 C 2.429688 -6.09375 2.433594 -6.0625 2.433594 -6.027344 L 2.433594 -1.355469 C 2.433594 -0.859375 2.496094 -0.550781 2.613281 -0.421875 C 2.734375 -0.296875 3.003906 -0.21875 3.425781 -0.183594 L 3.425781 0 L 0.261719 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 1.308594 1.203125 C 1.308594 1.570312 1.511719 1.820312 1.921875 1.960938 C 2.332031 2.097656 2.804688 2.167969 3.332031 2.167969 C 4.054688 2.167969 4.640625 2.042969 5.089844 1.792969 C 5.542969 1.542969 5.769531 1.238281 5.769531 0.871094 C 5.769531 0.582031 5.585938 0.386719 5.222656 0.292969 C 4.996094 0.238281 4.566406 0.203125 3.9375 0.195312 C 3.777344 0.191406 3.609375 0.183594 3.429688 0.179688 C 3.253906 0.171875 3.089844 0.164062 2.941406 0.15625 C 2.847656 0.152344 2.691406 0.132812 2.480469 0.105469 C 2.269531 0.0742188 2.109375 0.046875 2.003906 0.0273438 C 1.953125 0.0273438 1.824219 0.164062 1.621094 0.4375 C 1.414062 0.714844 1.308594 0.96875 1.308594 1.203125 Z M 2.15625 -2.1875 C 1.761719 -2.316406 1.453125 -2.550781 1.234375 -2.882812 C 1.015625 -3.21875 0.90625 -3.59375 0.90625 -4.011719 C 0.90625 -4.519531 1.105469 -5 1.511719 -5.457031 C 1.914062 -5.910156 2.484375 -6.140625 3.222656 -6.140625 C 3.539062 -6.140625 3.890625 -6.0625 4.269531 -5.914062 C 4.652344 -5.765625 5.019531 -5.691406 5.371094 -5.691406 C 5.460938 -5.691406 5.601562 -5.691406 5.785156 -5.699219 C 5.96875 -5.707031 6.101562 -5.710938 6.183594 -5.710938 L 6.261719 -5.710938 L 6.261719 -5.183594 L 5.136719 -5.183594 C 5.214844 -5 5.277344 -4.839844 5.320312 -4.707031 C 5.394531 -4.457031 5.429688 -4.214844 5.429688 -3.992188 C 5.429688 -3.496094 5.222656 -3.042969 4.8125 -2.625 C 4.402344 -2.210938 3.851562 -2.003906 3.15625 -2.003906 C 3.046875 -2.003906 2.855469 -2.023438 2.570312 -2.0625 C 2.445312 -2.0625 2.28125 -1.957031 2.074219 -1.746094 C 1.867188 -1.53125 1.765625 -1.359375 1.765625 -1.222656 C 1.765625 -1.085938 1.917969 -0.984375 2.21875 -0.917969 C 2.417969 -0.875 2.640625 -0.851562 2.882812 -0.851562 C 4 -0.851562 4.757812 -0.789062 5.15625 -0.664062 C 5.8125 -0.460938 6.140625 -0.0234375 6.140625 0.652344 C 6.140625 1.335938 5.757812 1.882812 4.988281 2.292969 C 4.222656 2.699219 3.449219 2.902344 2.667969 2.902344 C 1.957031 2.902344 1.394531 2.757812 0.976562 2.46875 C 0.558594 2.179688 0.351562 1.878906 0.351562 1.5625 C 0.351562 1.40625 0.40625 1.253906 0.515625 1.101562 C 0.628906 0.953125 0.847656 0.730469 1.171875 0.4375 L 1.601562 0.0507812 L 1.679688 -0.0273438 C 1.480469 -0.105469 1.332031 -0.179688 1.230469 -0.253906 C 1.058594 -0.386719 0.96875 -0.542969 0.96875 -0.714844 C 0.96875 -0.875 1.042969 -1.054688 1.195312 -1.246094 C 1.34375 -1.441406 1.664062 -1.753906 2.15625 -2.1875 Z M 3.390625 -2.316406 C 3.628906 -2.316406 3.832031 -2.382812 3.992188 -2.511719 C 4.25 -2.722656 4.382812 -3.082031 4.382812 -3.601562 C 4.382812 -4.011719 4.277344 -4.476562 4.066406 -4.992188 C 3.855469 -5.507812 3.503906 -5.769531 3.015625 -5.769531 C 2.589844 -5.769531 2.296875 -5.566406 2.136719 -5.164062 C 2.054688 -4.949219 2.011719 -4.6875 2.011719 -4.375 C 2.011719 -3.84375 2.140625 -3.371094 2.394531 -2.949219 C 2.652344 -2.527344 2.984375 -2.316406 3.390625 -2.316406 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 0.117188 -0.183594 C 0.472656 -0.230469 0.707031 -0.316406 0.816406 -0.445312 C 0.925781 -0.574219 0.984375 -0.875 0.984375 -1.355469 L 0.984375 -7.605469 C 0.984375 -7.847656 0.953125 -8.027344 0.886719 -8.140625 C 0.824219 -8.257812 0.671875 -8.3125 0.429688 -8.3125 C 0.382812 -8.3125 0.335938 -8.308594 0.289062 -8.304688 C 0.242188 -8.296875 0.191406 -8.289062 0.136719 -8.28125 L 0.136719 -8.515625 C 0.328125 -8.570312 0.5625 -8.640625 0.84375 -8.71875 C 1.125 -8.800781 1.316406 -8.859375 1.425781 -8.894531 L 2.050781 -9.089844 L 2.0625 -9.042969 L 2.0625 -5.046875 C 2.335938 -5.359375 2.582031 -5.589844 2.792969 -5.734375 C 3.175781 -5.996094 3.585938 -6.125 4.03125 -6.125 C 4.734375 -6.125 5.210938 -5.832031 5.46875 -5.242188 C 5.609375 -4.929688 5.675781 -4.519531 5.675781 -4.011719 L 5.675781 -1.355469 C 5.675781 -0.894531 5.730469 -0.59375 5.835938 -0.457031 C 5.941406 -0.316406 6.160156 -0.226562 6.492188 -0.183594 L 6.492188 0 L 3.671875 0 L 3.671875 -0.183594 C 4.050781 -0.234375 4.292969 -0.324219 4.402344 -0.449219 C 4.511719 -0.574219 4.5625 -0.875 4.5625 -1.355469 L 4.5625 -3.992188 C 4.5625 -4.414062 4.492188 -4.753906 4.351562 -5.011719 C 4.210938 -5.273438 3.945312 -5.402344 3.554688 -5.402344 C 3.214844 -5.402344 2.886719 -5.28125 2.570312 -5.039062 C 2.253906 -4.796875 2.097656 -4.636719 2.097656 -4.5625 L 2.097656 -1.355469 C 2.097656 -0.867188 2.152344 -0.5625 2.265625 -0.441406 C 2.378906 -0.320312 2.621094 -0.234375 2.988281 -0.183594 L 2.988281 0 L 0.117188 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 0.046875 -8.28125 L 0.046875 -8.503906 C 0.539062 -8.617188 0.984375 -8.742188 1.378906 -8.878906 C 1.773438 -9.019531 1.988281 -9.089844 2.019531 -9.089844 C 2.027344 -9.0625 2.03125 -9.035156 2.03125 -9.011719 L 2.03125 -5.046875 C 2.144531 -5.253906 2.3125 -5.453125 2.539062 -5.636719 C 2.9375 -5.964844 3.398438 -6.125 3.917969 -6.125 C 4.558594 -6.125 5.101562 -5.855469 5.554688 -5.320312 C 6.003906 -4.78125 6.230469 -4.082031 6.230469 -3.222656 C 6.230469 -2.300781 5.9375 -1.515625 5.351562 -0.859375 C 4.765625 -0.203125 3.996094 0.125 3.039062 0.125 C 2.558594 0.125 2.085938 0.0273438 1.621094 -0.164062 C 1.15625 -0.355469 0.925781 -0.542969 0.925781 -0.734375 L 0.925781 -7.617188 C 0.925781 -7.867188 0.890625 -8.046875 0.820312 -8.152344 C 0.75 -8.261719 0.589844 -8.3125 0.339844 -8.3125 Z M 2.003906 -0.949219 C 2.042969 -0.722656 2.214844 -0.5625 2.511719 -0.464844 C 2.8125 -0.367188 3.074219 -0.320312 3.300781 -0.320312 C 3.910156 -0.320312 4.359375 -0.546875 4.652344 -1.003906 C 4.945312 -1.457031 5.089844 -2.007812 5.089844 -2.65625 C 5.089844 -3.304688 4.953125 -3.902344 4.679688 -4.449219 C 4.40625 -5 3.964844 -5.273438 3.351562 -5.273438 C 3.042969 -5.273438 2.742188 -5.179688 2.449219 -4.988281 C 2.152344 -4.800781 2.003906 -4.5625 2.003906 -4.269531 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 0.339844 -3.019531 C 0.339844 -3.882812 0.613281 -4.613281 1.160156 -5.210938 C 1.710938 -5.808594 2.417969 -6.105469 3.28125 -6.105469 C 4.140625 -6.105469 4.851562 -5.824219 5.417969 -5.261719 C 5.980469 -4.695312 6.261719 -3.945312 6.261719 -3.007812 C 6.261719 -2.144531 5.988281 -1.394531 5.441406 -0.753906 C 4.894531 -0.117188 4.1875 0.203125 3.320312 0.203125 C 2.488281 0.203125 1.78125 -0.105469 1.203125 -0.714844 C 0.625 -1.328125 0.339844 -2.097656 0.339844 -3.019531 Z M 3.097656 -5.714844 C 2.753906 -5.714844 2.457031 -5.601562 2.207031 -5.378906 C 1.773438 -4.984375 1.554688 -4.300781 1.554688 -3.332031 C 1.554688 -2.558594 1.730469 -1.839844 2.078125 -1.171875 C 2.429688 -0.503906 2.914062 -0.167969 3.535156 -0.167969 C 4.019531 -0.167969 4.394531 -0.394531 4.65625 -0.839844 C 4.921875 -1.285156 5.050781 -1.871094 5.050781 -2.597656 C 5.050781 -3.347656 4.886719 -4.054688 4.550781 -4.71875 C 4.214844 -5.382812 3.734375 -5.714844 3.097656 -5.714844 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 0.0585938 -0.214844 C 0.457031 -0.25 0.722656 -0.320312 0.851562 -0.425781 C 0.984375 -0.53125 1.046875 -0.757812 1.046875 -1.105469 L 1.046875 -4.042969 C 1.046875 -4.472656 1.007812 -4.78125 0.925781 -4.964844 C 0.847656 -5.148438 0.699219 -5.242188 0.488281 -5.242188 C 0.445312 -5.242188 0.386719 -5.234375 0.316406 -5.222656 C 0.246094 -5.214844 0.167969 -5.199219 0.0898438 -5.183594 L 0.0898438 -5.398438 C 0.339844 -5.484375 0.59375 -5.574219 0.851562 -5.664062 C 1.113281 -5.753906 1.292969 -5.820312 1.394531 -5.859375 C 1.609375 -5.941406 1.832031 -6.035156 2.0625 -6.140625 C 2.09375 -6.140625 2.113281 -6.128906 2.117188 -6.105469 C 2.125 -6.085938 2.128906 -6.039062 2.128906 -5.96875 L 2.128906 -4.902344 C 2.40625 -5.289062 2.675781 -5.589844 2.933594 -5.808594 C 3.191406 -6.023438 3.460938 -6.132812 3.738281 -6.132812 C 3.957031 -6.132812 4.136719 -6.066406 4.277344 -5.933594 C 4.417969 -5.800781 4.484375 -5.636719 4.484375 -5.4375 C 4.484375 -5.257812 4.433594 -5.109375 4.324219 -4.988281 C 4.21875 -4.867188 4.085938 -4.804688 3.925781 -4.804688 C 3.761719 -4.804688 3.59375 -4.878906 3.425781 -5.03125 C 3.261719 -5.183594 3.128906 -5.261719 3.035156 -5.261719 C 2.882812 -5.261719 2.695312 -5.136719 2.472656 -4.890625 C 2.253906 -4.648438 2.140625 -4.394531 2.140625 -4.132812 L 2.140625 -1.199219 C 2.140625 -0.824219 2.230469 -0.566406 2.402344 -0.417969 C 2.574219 -0.273438 2.863281 -0.207031 3.269531 -0.214844 L 3.269531 0 L 0.0585938 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 0.691406 -2.050781 L 0.90625 -2.050781 C 1.003906 -1.554688 1.140625 -1.175781 1.308594 -0.910156 C 1.613281 -0.425781 2.058594 -0.183594 2.644531 -0.183594 C 2.96875 -0.183594 3.226562 -0.273438 3.414062 -0.453125 C 3.601562 -0.632812 3.699219 -0.867188 3.699219 -1.152344 C 3.699219 -1.335938 3.644531 -1.511719 3.535156 -1.679688 C 3.425781 -1.847656 3.234375 -2.015625 2.960938 -2.175781 L 2.234375 -2.589844 C 1.699219 -2.878906 1.304688 -3.167969 1.054688 -3.457031 C 0.804688 -3.746094 0.675781 -4.089844 0.675781 -4.484375 C 0.675781 -4.972656 0.851562 -5.371094 1.199219 -5.683594 C 1.546875 -5.996094 1.980469 -6.152344 2.507812 -6.152344 C 2.738281 -6.152344 2.988281 -6.109375 3.265625 -6.023438 C 3.539062 -5.9375 3.695312 -5.890625 3.730469 -5.890625 C 3.808594 -5.890625 3.863281 -5.902344 3.898438 -5.925781 C 3.933594 -5.945312 3.964844 -5.980469 3.992188 -6.027344 L 4.148438 -6.027344 L 4.191406 -4.210938 L 3.992188 -4.210938 C 3.90625 -4.632812 3.785156 -4.960938 3.640625 -5.195312 C 3.371094 -5.628906 2.980469 -5.847656 2.472656 -5.847656 C 2.167969 -5.847656 1.929688 -5.753906 1.757812 -5.566406 C 1.585938 -5.378906 1.496094 -5.160156 1.496094 -4.910156 C 1.496094 -4.511719 1.796875 -4.152344 2.394531 -3.839844 L 3.253906 -3.378906 C 4.179688 -2.875 4.640625 -2.289062 4.640625 -1.621094 C 4.640625 -1.109375 4.449219 -0.691406 4.066406 -0.363281 C 3.683594 -0.0390625 3.179688 0.125 2.558594 0.125 C 2.296875 0.125 2.003906 0.0820312 1.671875 -0.0078125 C 1.34375 -0.09375 1.148438 -0.136719 1.085938 -0.136719 C 1.035156 -0.136719 0.988281 -0.117188 0.949219 -0.0820312 C 0.910156 -0.0429688 0.882812 0 0.859375 0.0507812 L 0.691406 0.0507812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 3.945312 -8.945312 C 3.960938 -8.921875 3.972656 -8.90625 3.972656 -8.894531 C 3.976562 -8.886719 3.976562 -8.859375 3.976562 -8.820312 L 3.976562 -0.984375 C 3.976562 -0.648438 4.066406 -0.4375 4.246094 -0.34375 C 4.421875 -0.253906 4.753906 -0.199219 5.242188 -0.183594 L 5.242188 0 L 1.570312 0 L 1.570312 -0.195312 C 2.09375 -0.222656 2.4375 -0.292969 2.597656 -0.410156 C 2.757812 -0.527344 2.839844 -0.78125 2.839844 -1.171875 L 2.839844 -7.199219 C 2.839844 -7.410156 2.8125 -7.566406 2.761719 -7.675781 C 2.707031 -7.785156 2.59375 -7.839844 2.421875 -7.839844 C 2.308594 -7.839844 2.164062 -7.808594 1.980469 -7.742188 C 1.800781 -7.679688 1.632812 -7.613281 1.476562 -7.546875 L 1.476562 -7.726562 L 3.867188 -8.945312 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 5.566406 -3.085938 C 5.03125 -2.984375 4.640625 -2.863281 4.386719 -2.722656 C 3.949219 -2.464844 3.730469 -2.085938 3.730469 -1.589844 L 3.71875 0.417969 C 3.71875 1.121094 3.457031 1.621094 2.9375 1.921875 C 2.414062 2.226562 1.710938 2.375 0.828125 2.375 L 0.828125 2.082031 C 1.375 1.972656 1.769531 1.84375 2.019531 1.691406 C 2.460938 1.421875 2.683594 1.019531 2.683594 0.480469 L 2.695312 -1.355469 C 2.695312 -1.945312 2.90625 -2.394531 3.328125 -2.707031 C 3.75 -3.019531 4.367188 -3.210938 5.183594 -3.28125 L 5.183594 -3.3125 C 4.242188 -3.5 3.628906 -3.6875 3.351562 -3.875 C 2.914062 -4.167969 2.695312 -4.679688 2.695312 -5.410156 L 2.695312 -7.003906 C 2.695312 -7.625 2.4375 -8.085938 1.921875 -8.386719 C 1.628906 -8.554688 1.265625 -8.664062 0.828125 -8.71875 L 0.828125 -9.011719 C 1.941406 -9.011719 2.703125 -8.832031 3.109375 -8.472656 C 3.515625 -8.113281 3.71875 -7.632812 3.71875 -7.03125 L 3.730469 -5.242188 C 3.730469 -4.613281 3.957031 -4.160156 4.414062 -3.886719 C 4.675781 -3.726562 5.058594 -3.617188 5.566406 -3.5625 Z "/>
</symbol>
</g>
</defs>
<g id="surface103">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
<use xlink:href="#glyph0-2" x="36" y="30"/>
<use xlink:href="#glyph0-3" x="38" y="30"/>
<use xlink:href="#glyph0-4" x="42" y="30"/>
<use xlink:href="#glyph0-5" x="49" y="30"/>
<use xlink:href="#glyph0-6" x="56" y="30"/>
<use xlink:href="#glyph0-2" x="62" y="30"/>
<use xlink:href="#glyph0-7" x="64" y="30"/>
<use xlink:href="#glyph0-8" x="68" y="30"/>
<use xlink:href="#glyph0-2" x="71" y="30"/>
<use xlink:href="#glyph0-6" x="73" y="30"/>
<use xlink:href="#glyph0-9" x="79" y="30"/>
<use xlink:href="#glyph0-5" x="89" y="30"/>
<use xlink:href="#glyph0-3" x="96" y="30"/>
<use xlink:href="#glyph0-4" x="100" y="30"/>
<use xlink:href="#glyph0-2" x="107" y="30"/>
<use xlink:href="#glyph0-10" x="109" y="30"/>
<use xlink:href="#glyph0-8" x="112" y="30"/>
<use xlink:href="#glyph0-2" x="115" y="30"/>
<use xlink:href="#glyph0-11" x="117" y="30"/>
<use xlink:href="#glyph0-6" x="124" y="30"/>
<use xlink:href="#glyph0-12" x="130" y="30"/>
<use xlink:href="#glyph0-13" x="134" y="30"/>
<use xlink:href="#glyph0-14" x="141" y="30"/>
<use xlink:href="#glyph0-15" x="148" y="30"/>
<use xlink:href="#glyph0-16" x="155" y="30"/>
<use xlink:href="#glyph0-17" x="162" y="30"/>
<use xlink:href="#glyph0-18" x="166" y="30"/>
<use xlink:href="#glyph0-2" x="171" y="30"/>
<use xlink:href="#glyph0-7" x="173" y="30"/>
<use xlink:href="#glyph0-8" x="177" y="30"/>
<use xlink:href="#glyph0-19" x="180" y="30"/>
<use xlink:href="#glyph0-20" x="187" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.148438 -0.242188 C 0.640625 -0.292969 0.957031 -0.378906 1.101562 -0.503906 C 1.25 -0.628906 1.320312 -0.941406 1.320312 -1.445312 L 1.320312 -7.375 C 1.320312 -7.847656 1.25 -8.160156 1.105469 -8.304688 C 0.964844 -8.449219 0.644531 -8.539062 0.148438 -8.574219 L 0.148438 -8.820312 L 7.234375 -8.820312 L 7.277344 -6.90625 L 6.941406 -6.90625 C 6.828125 -7.496094 6.65625 -7.878906 6.433594 -8.054688 C 6.207031 -8.226562 5.703125 -8.3125 4.921875 -8.3125 L 3.113281 -8.3125 C 2.917969 -8.3125 2.796875 -8.28125 2.75 -8.21875 C 2.703125 -8.15625 2.683594 -8.039062 2.683594 -7.863281 L 2.683594 -4.890625 L 4.734375 -4.890625 C 5.300781 -4.890625 5.664062 -4.972656 5.820312 -5.144531 C 5.976562 -5.3125 6.101562 -5.65625 6.199219 -6.171875 L 6.511719 -6.171875 L 6.511719 -3.085938 L 6.199219 -3.085938 C 6.097656 -3.601562 5.96875 -3.945312 5.8125 -4.109375 C 5.65625 -4.277344 5.296875 -4.363281 4.734375 -4.363281 L 2.683594 -4.363281 L 2.683594 -1.0625 C 2.683594 -0.796875 2.765625 -0.640625 2.933594 -0.59375 C 3.101562 -0.546875 3.601562 -0.519531 4.433594 -0.519531 C 5.335938 -0.519531 6.003906 -0.621094 6.433594 -0.816406 C 6.863281 -1.015625 7.25 -1.492188 7.589844 -2.253906 L 7.960938 -2.253906 L 7.355469 0 L 0.148438 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.390625 -6.003906 L 3.390625 -5.535156 L 2.0625 -5.535156 L 2.050781 -1.785156 C 2.050781 -1.453125 2.078125 -1.203125 2.136719 -1.035156 C 2.238281 -0.734375 2.445312 -0.585938 2.746094 -0.585938 C 2.902344 -0.585938 3.039062 -0.621094 3.152344 -0.695312 C 3.269531 -0.769531 3.402344 -0.886719 3.546875 -1.046875 L 3.71875 -0.90625 L 3.574219 -0.710938 C 3.347656 -0.40625 3.109375 -0.191406 2.859375 -0.0664062 C 2.605469 0.0585938 2.363281 0.125 2.128906 0.125 C 1.617188 0.125 1.269531 -0.105469 1.085938 -0.558594 C 0.988281 -0.808594 0.9375 -1.148438 0.9375 -1.589844 L 0.9375 -5.535156 L 0.226562 -5.535156 C 0.207031 -5.546875 0.191406 -5.558594 0.179688 -5.574219 C 0.167969 -5.585938 0.164062 -5.601562 0.164062 -5.625 C 0.164062 -5.667969 0.171875 -5.703125 0.191406 -5.726562 C 0.210938 -5.75 0.273438 -5.804688 0.378906 -5.890625 C 0.675781 -6.140625 0.894531 -6.339844 1.023438 -6.492188 C 1.15625 -6.648438 1.46875 -7.054688 1.960938 -7.714844 C 2.015625 -7.714844 2.050781 -7.710938 2.058594 -7.703125 C 2.070312 -7.695312 2.078125 -7.660156 2.078125 -7.605469 L 2.078125 -6.003906 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<g>
</g>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 3.820312 -3.605469 C 3.320312 -3.441406 2.910156 -3.257812 2.585938 -3.058594 C 1.960938 -2.671875 1.648438 -2.234375 1.648438 -1.746094 C 1.648438 -1.351562 1.777344 -1.058594 2.039062 -0.871094 C 2.207031 -0.75 2.394531 -0.691406 2.605469 -0.691406 C 2.890625 -0.691406 3.164062 -0.769531 3.425781 -0.929688 C 3.691406 -1.089844 3.820312 -1.296875 3.820312 -1.542969 Z M 0.488281 -1.296875 C 0.488281 -1.925781 0.804688 -2.449219 1.433594 -2.871094 C 1.832031 -3.132812 2.628906 -3.484375 3.820312 -3.933594 L 3.820312 -4.484375 C 3.820312 -4.929688 3.777344 -5.238281 3.691406 -5.410156 C 3.542969 -5.699219 3.238281 -5.847656 2.773438 -5.847656 C 2.550781 -5.847656 2.339844 -5.789062 2.140625 -5.675781 C 1.941406 -5.558594 1.84375 -5.398438 1.84375 -5.195312 C 1.84375 -5.144531 1.851562 -5.054688 1.875 -4.929688 C 1.898438 -4.808594 1.90625 -4.730469 1.90625 -4.695312 C 1.90625 -4.453125 1.828125 -4.28125 1.667969 -4.1875 C 1.574219 -4.128906 1.46875 -4.101562 1.339844 -4.101562 C 1.144531 -4.101562 0.996094 -4.164062 0.890625 -4.292969 C 0.789062 -4.421875 0.734375 -4.5625 0.734375 -4.71875 C 0.734375 -5.023438 0.921875 -5.339844 1.296875 -5.671875 C 1.671875 -6.003906 2.222656 -6.171875 2.949219 -6.171875 C 3.792969 -6.171875 4.363281 -5.898438 4.660156 -5.351562 C 4.820312 -5.050781 4.902344 -4.617188 4.902344 -4.042969 L 4.902344 -1.433594 C 4.902344 -1.179688 4.917969 -1.007812 4.953125 -0.910156 C 5.011719 -0.742188 5.128906 -0.65625 5.304688 -0.65625 C 5.40625 -0.65625 5.488281 -0.671875 5.554688 -0.703125 C 5.617188 -0.734375 5.730469 -0.808594 5.890625 -0.925781 L 5.890625 -0.585938 C 5.753906 -0.417969 5.601562 -0.277344 5.441406 -0.167969 C 5.199219 -0.00390625 4.953125 0.078125 4.699219 0.078125 C 4.40625 0.078125 4.191406 -0.015625 4.058594 -0.207031 C 3.925781 -0.398438 3.855469 -0.628906 3.839844 -0.890625 C 3.511719 -0.605469 3.230469 -0.394531 2.996094 -0.253906 C 2.601562 -0.0195312 2.222656 0.0976562 1.867188 0.0976562 C 1.496094 0.0976562 1.171875 -0.0351562 0.898438 -0.296875 C 0.625 -0.558594 0.488281 -0.890625 0.488281 -1.296875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 1.09375 -8.40625 C 1.09375 -8.59375 1.160156 -8.753906 1.289062 -8.886719 C 1.417969 -9.019531 1.578125 -9.089844 1.769531 -9.089844 C 1.957031 -9.089844 2.117188 -9.023438 2.25 -8.890625 C 2.382812 -8.757812 2.449219 -8.597656 2.449219 -8.40625 C 2.449219 -8.21875 2.382812 -8.058594 2.25 -7.925781 C 2.117188 -7.792969 1.957031 -7.726562 1.769531 -7.726562 C 1.578125 -7.726562 1.417969 -7.792969 1.289062 -7.925781 C 1.160156 -8.058594 1.09375 -8.21875 1.09375 -8.40625 Z M 0.261719 -0.183594 C 0.726562 -0.226562 1.019531 -0.304688 1.140625 -0.417969 C 1.261719 -0.535156 1.320312 -0.847656 1.320312 -1.355469 L 1.320312 -4.460938 C 1.320312 -4.742188 1.300781 -4.9375 1.261719 -5.046875 C 1.199219 -5.222656 1.0625 -5.3125 0.851562 -5.3125 C 0.804688 -5.3125 0.757812 -5.308594 0.710938 -5.300781 C 0.667969 -5.292969 0.535156 -5.257812 0.320312 -5.195312 L 0.320312 -5.398438 L 0.597656 -5.488281 C 1.359375 -5.734375 1.886719 -5.921875 2.1875 -6.046875 C 2.308594 -6.101562 2.386719 -6.125 2.421875 -6.125 C 2.429688 -6.09375 2.433594 -6.0625 2.433594 -6.027344 L 2.433594 -1.355469 C 2.433594 -0.859375 2.496094 -0.550781 2.613281 -0.421875 C 2.734375 -0.296875 3.003906 -0.21875 3.425781 -0.183594 L 3.425781 0 L 0.261719 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.242188 -0.183594 C 0.550781 -0.222656 0.765625 -0.296875 0.886719 -0.414062 C 1.011719 -0.527344 1.074219 -0.785156 1.074219 -1.183594 L 1.074219 -4.484375 C 1.074219 -4.761719 1.046875 -4.957031 0.996094 -5.070312 C 0.914062 -5.234375 0.746094 -5.320312 0.488281 -5.320312 C 0.449219 -5.320312 0.410156 -5.316406 0.367188 -5.3125 C 0.328125 -5.308594 0.277344 -5.300781 0.214844 -5.292969 L 0.214844 -5.519531 C 0.394531 -5.574219 0.8125 -5.707031 1.476562 -5.925781 L 2.089844 -6.125 C 2.121094 -6.125 2.136719 -6.117188 2.144531 -6.09375 C 2.152344 -6.070312 2.15625 -6.042969 2.15625 -6.003906 L 2.15625 -5.046875 C 2.554688 -5.417969 2.867188 -5.675781 3.09375 -5.8125 C 3.429688 -6.027344 3.78125 -6.132812 4.148438 -6.132812 C 4.441406 -6.132812 4.710938 -6.046875 4.953125 -5.878906 C 5.421875 -5.550781 5.65625 -4.960938 5.65625 -4.113281 L 5.65625 -1.074219 C 5.65625 -0.761719 5.71875 -0.535156 5.847656 -0.398438 C 5.972656 -0.257812 6.183594 -0.1875 6.476562 -0.183594 L 6.476562 0 L 3.699219 0 L 3.699219 -0.183594 C 4.015625 -0.226562 4.234375 -0.3125 4.363281 -0.445312 C 4.488281 -0.578125 4.550781 -0.867188 4.550781 -1.308594 L 4.550781 -4.089844 C 4.550781 -4.460938 4.480469 -4.769531 4.34375 -5.015625 C 4.203125 -5.261719 3.949219 -5.382812 3.574219 -5.382812 C 3.316406 -5.382812 3.058594 -5.296875 2.792969 -5.125 C 2.644531 -5.023438 2.453125 -4.859375 2.21875 -4.628906 L 2.21875 -0.984375 C 2.21875 -0.671875 2.289062 -0.460938 2.429688 -0.355469 C 2.566406 -0.25 2.785156 -0.191406 3.085938 -0.183594 L 3.085938 0 L 0.242188 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 0.691406 -2.050781 L 0.90625 -2.050781 C 1.003906 -1.554688 1.140625 -1.175781 1.308594 -0.910156 C 1.613281 -0.425781 2.058594 -0.183594 2.644531 -0.183594 C 2.96875 -0.183594 3.226562 -0.273438 3.414062 -0.453125 C 3.601562 -0.632812 3.699219 -0.867188 3.699219 -1.152344 C 3.699219 -1.335938 3.644531 -1.511719 3.535156 -1.679688 C 3.425781 -1.847656 3.234375 -2.015625 2.960938 -2.175781 L 2.234375 -2.589844 C 1.699219 -2.878906 1.304688 -3.167969 1.054688 -3.457031 C 0.804688 -3.746094 0.675781 -4.089844 0.675781 -4.484375 C 0.675781 -4.972656 0.851562 -5.371094 1.199219 -5.683594 C 1.546875 -5.996094 1.980469 -6.152344 2.507812 -6.152344 C 2.738281 -6.152344 2.988281 -6.109375 3.265625 -6.023438 C 3.539062 -5.9375 3.695312 -5.890625 3.730469 -5.890625 C 3.808594 -5.890625 3.863281 -5.902344 3.898438 -5.925781 C 3.933594 -5.945312 3.964844 -5.980469 3.992188 -6.027344 L 4.148438 -6.027344 L 4.191406 -4.210938 L 3.992188 -4.210938 C 3.90625 -4.632812 3.785156 -4.960938 3.640625 -5.195312 C 3.371094 -5.628906 2.980469 -5.847656 2.472656 -5.847656 C 2.167969 -5.847656 1.929688 -5.753906 1.757812 -5.566406 C 1.585938 -5.378906 1.496094 -5.160156 1.496094 -4.910156 C 1.496094 -4.511719 1.796875 -4.152344 2.394531 -3.839844 L 3.253906 -3.378906 C 4.179688 -2.875 4.640625 -2.289062 4.640625 -1.621094 C 4.640625 -1.109375 4.449219 -0.691406 4.066406 -0.363281 C 3.683594 -0.0390625 3.179688 0.125 2.558594 0.125 C 2.296875 0.125 2.003906 0.0820312 1.671875 -0.0078125 C 1.34375 -0.09375 1.148438 -0.136719 1.085938 -0.136719 C 1.035156 -0.136719 0.988281 -0.117188 0.949219 -0.0820312 C 0.910156 -0.0429688 0.882812 0 0.859375 0.0507812 L 0.691406 0.0507812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 3.15625 -6.152344 C 3.472656 -6.152344 3.765625 -6.082031 4.03125 -5.945312 C 4.203125 -5.851562 4.371094 -5.726562 4.53125 -5.566406 L 4.53125 -7.636719 C 4.53125 -7.902344 4.5 -8.082031 4.441406 -8.183594 C 4.382812 -8.285156 4.246094 -8.332031 4.023438 -8.332031 C 3.972656 -8.332031 3.925781 -8.332031 3.886719 -8.328125 C 3.847656 -8.324219 3.761719 -8.3125 3.625 -8.300781 L 3.625 -8.515625 L 4.160156 -8.652344 C 4.355469 -8.703125 4.550781 -8.757812 4.746094 -8.816406 C 4.941406 -8.871094 5.113281 -8.925781 5.261719 -8.976562 C 5.332031 -9 5.445312 -9.039062 5.605469 -9.101562 L 5.644531 -9.089844 L 5.632812 -8.40625 C 5.628906 -8.15625 5.621094 -7.902344 5.617188 -7.640625 C 5.613281 -7.378906 5.613281 -7.117188 5.613281 -6.863281 L 5.597656 -1.542969 C 5.597656 -1.261719 5.632812 -1.0625 5.703125 -0.949219 C 5.773438 -0.835938 5.957031 -0.78125 6.257812 -0.78125 C 6.304688 -0.78125 6.351562 -0.78125 6.398438 -0.785156 C 6.445312 -0.785156 6.496094 -0.792969 6.542969 -0.800781 L 6.542969 -0.585938 C 6.515625 -0.578125 6.203125 -0.46875 5.597656 -0.261719 L 4.578125 0.125 L 4.53125 0.0664062 L 4.53125 -0.734375 C 4.289062 -0.46875 4.078125 -0.28125 3.898438 -0.167969 C 3.582031 0.0273438 3.214844 0.125 2.800781 0.125 C 2.0625 0.125 1.464844 -0.160156 1.003906 -0.730469 C 0.546875 -1.300781 0.320312 -1.964844 0.320312 -2.714844 C 0.320312 -3.65625 0.59375 -4.464844 1.140625 -5.140625 C 1.691406 -5.816406 2.363281 -6.152344 3.15625 -6.152344 Z M 3.398438 -0.578125 C 3.738281 -0.578125 4.011719 -0.679688 4.21875 -0.878906 C 4.425781 -1.078125 4.53125 -1.265625 4.53125 -1.445312 L 4.53125 -4.238281 C 4.53125 -4.800781 4.378906 -5.199219 4.078125 -5.433594 C 3.777344 -5.664062 3.484375 -5.78125 3.195312 -5.78125 C 2.648438 -5.78125 2.222656 -5.539062 1.921875 -5.054688 C 1.617188 -4.570312 1.464844 -3.976562 1.464844 -3.269531 C 1.464844 -2.570312 1.625 -1.945312 1.949219 -1.398438 C 2.273438 -0.851562 2.757812 -0.578125 3.398438 -0.578125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 3.054688 -6.105469 C 3.664062 -6.105469 4.203125 -5.894531 4.660156 -5.472656 C 5.121094 -5.050781 5.351562 -4.449219 5.351562 -3.671875 L 1.21875 -3.671875 C 1.261719 -2.664062 1.488281 -1.929688 1.902344 -1.472656 C 2.3125 -1.011719 2.800781 -0.78125 3.367188 -0.78125 C 3.820312 -0.78125 4.207031 -0.902344 4.519531 -1.140625 C 4.832031 -1.378906 5.121094 -1.714844 5.382812 -2.15625 L 5.613281 -2.078125 C 5.433594 -1.527344 5.101562 -1.015625 4.613281 -0.546875 C 4.125 -0.078125 3.527344 0.15625 2.820312 0.15625 C 2.003906 0.15625 1.371094 -0.152344 0.925781 -0.769531 C 0.480469 -1.386719 0.261719 -2.09375 0.261719 -2.898438 C 0.261719 -3.769531 0.519531 -4.523438 1.035156 -5.15625 C 1.550781 -5.789062 2.222656 -6.105469 3.054688 -6.105469 Z M 2.675781 -5.632812 C 2.179688 -5.632812 1.804688 -5.414062 1.542969 -4.972656 C 1.402344 -4.738281 1.304688 -4.445312 1.242188 -4.089844 L 3.992188 -4.089844 C 3.945312 -4.523438 3.859375 -4.847656 3.742188 -5.058594 C 3.53125 -5.441406 3.175781 -5.632812 2.675781 -5.632812 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 2.0625 -6.027344 L 2.0625 -1.863281 C 2.0625 -1.566406 2.105469 -1.332031 2.1875 -1.152344 C 2.347656 -0.824219 2.644531 -0.65625 3.074219 -0.65625 C 3.367188 -0.65625 3.65625 -0.753906 3.9375 -0.949219 C 4.097656 -1.058594 4.261719 -1.207031 4.425781 -1.398438 L 4.425781 -4.96875 C 4.425781 -5.300781 4.363281 -5.519531 4.230469 -5.625 C 4.101562 -5.730469 3.839844 -5.792969 3.449219 -5.8125 L 3.449219 -6.027344 L 5.554688 -6.027344 L 5.554688 -1.445312 C 5.554688 -1.148438 5.605469 -0.945312 5.710938 -0.835938 C 5.820312 -0.726562 6.042969 -0.675781 6.386719 -0.691406 L 6.386719 -0.507812 C 6.148438 -0.441406 5.972656 -0.394531 5.859375 -0.359375 C 5.746094 -0.328125 5.558594 -0.269531 5.292969 -0.183594 C 5.179688 -0.144531 4.933594 -0.0507812 4.550781 0.0976562 C 4.527344 0.0976562 4.515625 0.0859375 4.511719 0.0664062 C 4.507812 0.046875 4.503906 0.0273438 4.503906 0 L 4.503906 -1.046875 C 4.210938 -0.695312 3.941406 -0.4375 3.699219 -0.265625 C 3.328125 -0.0078125 2.9375 0.125 2.527344 0.125 C 2.148438 0.125 1.792969 -0.0117188 1.457031 -0.28125 C 1.121094 -0.546875 0.949219 -0.988281 0.949219 -1.613281 L 0.949219 -4.992188 C 0.949219 -5.339844 0.875 -5.574219 0.730469 -5.691406 C 0.632812 -5.765625 0.429688 -5.816406 0.117188 -5.847656 L 0.117188 -6.027344 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 2.175781 0.15625 C 1.964844 0.15625 1.789062 0.0820312 1.648438 -0.0625 C 1.503906 -0.207031 1.433594 -0.382812 1.433594 -0.585938 C 1.433594 -0.789062 1.503906 -0.964844 1.648438 -1.105469 C 1.796875 -1.25 1.96875 -1.320312 2.175781 -1.320312 C 2.378906 -1.320312 2.550781 -1.25 2.695312 -1.105469 C 2.839844 -0.964844 2.910156 -0.789062 2.910156 -0.585938 C 2.910156 -0.382812 2.839844 -0.207031 2.699219 -0.0625 C 2.558594 0.0820312 2.382812 0.15625 2.175781 0.15625 Z "/>
</symbol>
</g>
</defs>
<g id="surface392">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
<use xlink:href="#glyph0-2" x="38" y="30"/>
<use xlink:href="#glyph0-3" x="42" y="30"/>
<use xlink:href="#glyph0-4" x="45" y="30"/>
<use xlink:href="#glyph0-5" x="51" y="30"/>
<use xlink:href="#glyph0-6" x="55" y="30"/>
<use xlink:href="#glyph0-7" x="62" y="30"/>
<use xlink:href="#glyph0-5" x="67" y="30"/>
<use xlink:href="#glyph0-3" x="71" y="30"/>
<use xlink:href="#glyph0-8" x="74" y="30"/>
<use xlink:href="#glyph0-9" x="81" y="30"/>
<use xlink:href="#glyph0-3" x="87" y="30"/>
<use xlink:href="#glyph0-7" x="90" y="30"/>
<use xlink:href="#glyph0-10" x="95" y="30"/>
<use xlink:href="#glyph0-5" x="102" y="30"/>
<use xlink:href="#glyph0-2" x="106" y="30"/>
<use xlink:href="#glyph0-9" x="110" y="30"/>
<use xlink:href="#glyph0-11" x="116" y="30"/>
<use xlink:href="#glyph0-11" x="119" y="30"/>
<use xlink:href="#glyph0-11" x="122" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 3.351562 -0.222656 C 3.851562 -0.222656 4.230469 -0.359375 4.484375 -0.636719 C 4.742188 -0.914062 4.871094 -1.261719 4.871094 -1.679688 C 4.871094 -2.152344 4.734375 -2.535156 4.460938 -2.828125 C 4.191406 -3.121094 3.636719 -3.566406 2.792969 -4.160156 C 2.417969 -3.925781 2.148438 -3.621094 1.980469 -3.25 C 1.808594 -2.875 1.726562 -2.515625 1.726562 -2.167969 C 1.726562 -1.574219 1.878906 -1.101562 2.183594 -0.75 C 2.488281 -0.398438 2.878906 -0.222656 3.351562 -0.222656 Z M 3.4375 -5.195312 C 3.84375 -5.480469 4.128906 -5.722656 4.285156 -5.917969 C 4.554688 -6.253906 4.6875 -6.65625 4.6875 -7.128906 C 4.6875 -7.542969 4.558594 -7.890625 4.304688 -8.179688 C 4.050781 -8.46875 3.667969 -8.613281 3.152344 -8.613281 C 2.753906 -8.613281 2.421875 -8.488281 2.160156 -8.234375 C 1.902344 -7.984375 1.769531 -7.679688 1.769531 -7.316406 C 1.769531 -6.910156 1.921875 -6.53125 2.230469 -6.179688 C 2.535156 -5.832031 2.9375 -5.503906 3.4375 -5.195312 Z M 2.433594 -4.441406 C 1.863281 -4.902344 1.472656 -5.265625 1.261719 -5.539062 C 0.941406 -5.957031 0.78125 -6.417969 0.78125 -6.921875 C 0.78125 -7.492188 1.019531 -7.980469 1.492188 -8.378906 C 1.96875 -8.777344 2.585938 -8.976562 3.347656 -8.976562 C 4.046875 -8.976562 4.601562 -8.789062 5.011719 -8.410156 C 5.425781 -8.035156 5.632812 -7.59375 5.632812 -7.097656 C 5.632812 -6.589844 5.421875 -6.132812 5 -5.730469 C 4.757812 -5.5 4.363281 -5.234375 3.820312 -4.933594 C 4.558594 -4.386719 5.085938 -3.910156 5.40625 -3.503906 C 5.726562 -3.097656 5.886719 -2.621094 5.886719 -2.070312 C 5.886719 -1.445312 5.648438 -0.921875 5.179688 -0.496094 C 4.707031 -0.0703125 4.078125 0.144531 3.289062 0.144531 C 2.582031 0.144531 1.972656 -0.0546875 1.46875 -0.445312 C 0.960938 -0.839844 0.710938 -1.355469 0.710938 -2 C 0.710938 -2.550781 0.886719 -3.035156 1.238281 -3.457031 C 1.46875 -3.730469 1.867188 -4.058594 2.433594 -4.441406 Z "/>
</symbol>
</g>
</defs>
<g id="surface374">
<g style="fill:rgb(100%,100%,100%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
</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="854pt" height="480pt" viewBox="0 0 854 480" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.214844 0 L 0.214844 -8.820312 L 9.316406 -8.820312 L 9.316406 0 Z M 8.117188 -1.199219 L 8.117188 -7.625 L 1.414062 -7.625 L 1.414062 -1.199219 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 3.945312 -8.945312 C 3.960938 -8.921875 3.972656 -8.90625 3.972656 -8.894531 C 3.976562 -8.886719 3.976562 -8.859375 3.976562 -8.820312 L 3.976562 -0.984375 C 3.976562 -0.648438 4.066406 -0.4375 4.246094 -0.34375 C 4.421875 -0.253906 4.753906 -0.199219 5.242188 -0.183594 L 5.242188 0 L 1.570312 0 L 1.570312 -0.195312 C 2.09375 -0.222656 2.4375 -0.292969 2.597656 -0.410156 C 2.757812 -0.527344 2.839844 -0.78125 2.839844 -1.171875 L 2.839844 -7.199219 C 2.839844 -7.410156 2.8125 -7.566406 2.761719 -7.675781 C 2.707031 -7.785156 2.59375 -7.839844 2.421875 -7.839844 C 2.308594 -7.839844 2.164062 -7.808594 1.980469 -7.742188 C 1.800781 -7.679688 1.632812 -7.613281 1.476562 -7.546875 L 1.476562 -7.726562 L 3.867188 -8.945312 Z "/>
</symbol>
</g>
</defs>
<g id="surface11">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="30" y="30"/>
</g>
</g>
</svg>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment