You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

5245 lines
563 KiB

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Identifier les leaders d’opinion du domaine de l’IA sur Twitter\n",
"\n",
"Auteur : Jiayue LIU (MSc Data Management, Paris School of Business)\n",
"\n",
"Date : 18 Avril 2021 "
]
},
{
"cell_type": "code",
"execution_count": 204,
"metadata": {},
"outputs": [],
"source": [
"# Installer toutes les librairies nécessaires à l'exercice\n",
"import tweepy\n",
"import pandas as pd\n",
"pd.options.mode.chained_assignment = None\n",
"import igraph as ig\n",
"import datetime\n",
"\n",
"# Authentification API\n",
"auth = tweepy.OAuthHandler(\n",
" 'g5ktEfyoenGVaxGFbbz5Xt6CH', \n",
" 'D5RFlzzO5FMDvFFkUf5piWFF1mNKpgzEZpZEjC40uP7ZA4QhrY')\n",
"auth.set_access_token(\n",
" '1313171160973139973-eVa2VAFWUoha0lLgUzVwCQwQycWJ0c', \n",
" 'c4DdmZV6DWV2NwjpBTy5cZlN9tdPvwACbUrwWQyj3RKfX')\n",
"api = tweepy.API(auth,wait_on_rate_limit=True)"
]
},
{
"cell_type": "code",
"execution_count": 321,
"metadata": {},
"outputs": [],
"source": [
"# Extraire les tweets contenant les mots-clés définis\n",
"hashtags = ['#IA', '#IntelligenceArtificielle']\n",
"results = tweepy.Cursor(api.search, q=hashtags, lang='fr').items()\n",
"\n",
"# Convertir les résultats de recherche du json en dataframe\n",
"json_data = [r._json for r in results]\n",
"results_df = pd.json_normalize(json_data)\n",
"\n",
"results_df.to_csv(\"tweets_database.csv\", sep=\",\")"
]
},
{
"cell_type": "code",
"execution_count": 471,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Pendant la semaine du 11/04/2021 au 18/04/2021 , les tweets en français et ayant pour hashtags #IA ou #IntelligenceArtificielle sont les suivants : \n",
" time location user_id \\\n",
"0 Sun Apr 18 14:27:29 +0000 2021 France /Japon cerise_masquee \n",
"1 Sun Apr 18 14:00:32 +0000 2021 Paris ORSYS \n",
"2 Sun Apr 18 13:48:21 +0000 2021 France mdrechsler \n",
"3 Sun Apr 18 13:34:32 +0000 2021 RISKINTEL4 \n",
"4 Sun Apr 18 13:30:17 +0000 2021 NACREspirale \n",
".. ... ... ... \n",
"384 Sat Apr 10 11:21:06 +0000 2021 Avignon, France ThibFay \n",
"385 Sat Apr 10 11:03:50 +0000 2021 Paris YvesPDB \n",
"386 Sat Apr 10 10:22:04 +0000 2021 Paris, France DailyDigital \n",
"387 Sat Apr 10 10:02:25 +0000 2021 PierreRamette \n",
"388 Sat Apr 10 10:00:01 +0000 2021 Paris, France LaForge_AI \n",
"\n",
" num_followers mentions \n",
"0 201 [{'screen_name': 'LaForge_AI', 'name': 'La For... \n",
"1 5440 [] \n",
"2 20850 [{'screen_name': 'mdrechsler', 'name': 'Michèl... \n",
"3 103 [{'screen_name': 'LaForge_AI', 'name': 'La For... \n",
"4 2753 [{'screen_name': 'LaForge_AI', 'name': 'La For... \n",
".. ... ... \n",
"384 164 [{'screen_name': 'LaForge_AI', 'name': 'La For... \n",
"385 31445 [{'screen_name': 'Inst_Lecanuet', 'name': 'Ins... \n",
"386 13819 [] \n",
"387 244 [{'screen_name': 'LaForge_AI', 'name': 'La For... \n",
"388 9932 [] \n",
"\n",
"[389 rows x 5 columns]\n"
]
}
],
"source": [
"# Garder des informations qui nous intéresseraient en renommant les colonnes\n",
"simple_results = results_df[['created_at',\n",
" 'user.location',\n",
" 'user.screen_name',\n",
" 'user.followers_count',\n",
" 'entities.user_mentions']]\n",
"simple_results.columns = ['time',\n",
" 'location',\n",
" 'user_id',\n",
" 'num_followers',\n",
" 'mentions']\n",
"\n",
"# Afficher le résultat brute mais simplifié\n",
"today = datetime.date.today()\n",
"week_ago = today - datetime.timedelta(days=7)\n",
"print(\"Pendant la semaine du\", week_ago.strftime(\"%d/%m/%Y\"),\n",
" \"au\", today.strftime(\"%d/%m/%Y\"),\n",
" \", les tweets en français et ayant pour hashtags #IA ou #IntelligenceArtificielle sont les suivants : \\n\",\n",
" simple_results)"
]
},
{
"cell_type": "code",
"execution_count": 472,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"La liste des mentions entre les utilisateurs : \n",
" mentions user_id num_followers\n",
"0 LaForge_AI cerise_masquee 201\n",
"1 mdrechsler mdrechsler 20850\n",
"2 LaForge_AI RISKINTEL4 103\n",
"3 LaForge_AI NACREspirale 2753\n",
"4 VincentCespedes mpbarrouillet 893\n",
".. ... ... ...\n",
"314 TeensInAI ActuIAFr 11902\n",
"315 LaForge_AI ClaudioCimelli 1470\n",
"316 LaForge_AI ThibFay 164\n",
"317 Inst_Lecanuet YvesPDB 31445\n",
"318 LaForge_AI PierreRamette 244\n",
"\n",
"[319 rows x 3 columns]\n",
"La liste des utilisateurs Twitter ayant publié du contenu relatif à l'IA durant la semaine passée : \n",
" user_id num_followers\n",
"0 236News 4417.0\n",
"1 49mamie51 244.0\n",
"2 4inData NaN\n",
"3 AFD_France 85619.0\n",
"4 AIVids NaN\n",
".. ... ...\n",
"292 thot NaN\n",
"293 toniojj 1617.0\n",
"294 univbordeaux NaN\n",
"295 xavierquerat 8685.0\n",
"296 zdnetfr NaN\n",
"\n",
"[297 rows x 2 columns]\n"
]
}
],
"source": [
"# Convertir la colonne \"mentions\" en liste simple\n",
"mentioned_users = []\n",
"for mention in simple_results.mentions:\n",
" mentioned_users.append(list(map(lambda d: d['screen_name'], mention)))\n",
"simple_results['mentions'] = mentioned_users\n",
"\n",
"# Stocker tous les edges et nodes dans des dataframes\n",
"edges_df = simple_results.loc[:, ['mentions', 'user_id', 'num_followers']]\n",
"edges_df = edges_df.explode('mentions').reset_index().drop('index',1)\n",
"\n",
"mention_list = edges_df.mentions.to_list()\n",
"user_list = edges_df.user_id.to_list()\n",
"nodes_list = set(user_list + mention_list)\n",
"\n",
"edges = edges_df.dropna().reset_index().drop('index',1)\n",
"nodes = pd.DataFrame(nodes_list)\n",
"nodes.columns = (['user_id'])\n",
"nodes = pd.merge(nodes, edges, on='user_id', how='left')\n",
"nodes = nodes.drop(columns=['mentions']).groupby(by='user_id').mean().reset_index()\n",
"\n",
"print(\"La liste des mentions entre les utilisateurs : \\n\",\n",
" edges)\n",
"print(\"La liste des utilisateurs Twitter ayant publié du contenu relatif à l'IA durant la semaine passée : \\n\",\n",
" nodes)"
]
},
{
"cell_type": "code",
"execution_count": 483,
"metadata": {},
"outputs": [],
"source": [
"# Générer le graphe représentant le réseau social avec le package iGraph\n",
"\n",
"kol_map = ig.Graph.DataFrame(edges,\n",
" directed = True,\n",
" vertices = nodes)\n",
"kol_map.vs['name'] = nodes['user_id']\n",
"kol_map.vs['num_followers'] = nodes['num_followers']*0.001"
]
},
{
"cell_type": "code",
"execution_count": 489,
"metadata": {},
"outputs": [],
"source": [
"# Comparer le nombre d'abonnés des utilisateurs du réseau\n",
"nodes['num_followers'] = nodes['num_followers'].astype(pd.Int64Dtype())\n",
"rank_followers = nodes.sort_values(by='num_followers',\n",
" ascending=False)\n",
"rank_followers"
]
},
{
"cell_type": "code",
"execution_count": 476,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Les dix comptes Twitter ayant été le plus mentionnés durant la semaine passée sont : \n",
" node degree\n",
"233 eduscol_EMI 26\n",
"130 ModisFrance 25\n",
"268 mdrechsler 22\n",
"71 Edu_Num 20\n",
"7 ActuIAFr 14\n",
"90 GroupeLaPoste 10\n",
"9 AgenceRecherche 10\n",
"3 AFD_France 9\n",
"143 OpenvalueFR 9\n",
"223 ctricot 8\n"
]
}
],
"source": [
"# Calculer la centralité de degré en utilisant le package igraph\n",
"out_degrees = pd.DataFrame({'node': nodes['user_id'],\n",
" 'degree':kol_map.degree(mode=\"out\")})\n",
"out_degrees = out_degrees.sort_values(by='degree',\n",
" ascending=False)\n",
"\n",
"print(\"Les dix comptes Twitter ayant été le plus mentionnés durant la semaine passée sont : \\n\",\n",
" out_degrees.head(10))"
]
},
{
"cell_type": "code",
"execution_count": 497,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Carte représentant le réseau d'influence des comptes Twitter du domaine de l'IA : \n",
" (la taille des noeuds est proportionnelle à leur degré sortant) \n",
"\n",
"Carte représentant le réseau d'influence des comptes Twitter du domaine de l'IA : \n",
"(la taille des noeuds est proportionnelle à leur nombre d'abonnés) \n",
"\n"
]
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"500pt\" height=\"500pt\" viewBox=\"0 0 500 500\" version=\"1.1\">\n",
"<defs>\n",
"<g>\n",
"<symbol overflow=\"visible\" id=\"glyph0-0\">\n",
"<path style=\"stroke:none;\" d=\"M 0.160156 0 L 0.160156 -3.585938 L 3.007812 -3.585938 L 3.007812 0 Z M 2.558594 -0.449219 L 2.558594 -3.136719 L 0.609375 -3.136719 L 0.609375 -0.449219 Z M 2.558594 -0.449219 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-1\">\n",
"<path style=\"stroke:none;\" d=\"M 0.15625 0 C 0.171875 -0.300781 0.234375 -0.5625 0.34375 -0.785156 C 0.453125 -1.007812 0.664062 -1.210938 0.976562 -1.394531 L 1.445312 -1.664062 C 1.65625 -1.785156 1.800781 -1.890625 1.886719 -1.976562 C 2.019531 -2.113281 2.085938 -2.265625 2.085938 -2.441406 C 2.085938 -2.644531 2.027344 -2.804688 1.90625 -2.925781 C 1.78125 -3.046875 1.621094 -3.105469 1.414062 -3.105469 C 1.113281 -3.105469 0.90625 -2.992188 0.789062 -2.765625 C 0.726562 -2.640625 0.695312 -2.472656 0.6875 -2.257812 L 0.242188 -2.257812 C 0.246094 -2.5625 0.304688 -2.808594 0.410156 -3 C 0.601562 -3.339844 0.9375 -3.507812 1.417969 -3.507812 C 1.820312 -3.507812 2.113281 -3.398438 2.296875 -3.183594 C 2.480469 -2.96875 2.574219 -2.726562 2.574219 -2.460938 C 2.574219 -2.179688 2.476562 -1.941406 2.277344 -1.742188 C 2.164062 -1.628906 1.960938 -1.488281 1.664062 -1.324219 L 1.332031 -1.136719 C 1.171875 -1.050781 1.046875 -0.964844 0.953125 -0.886719 C 0.792969 -0.746094 0.6875 -0.585938 0.648438 -0.414062 L 2.554688 -0.414062 L 2.554688 0 Z M 0.15625 0 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-2\">\n",
"<path style=\"stroke:none;\" d=\"M 1.296875 0.09375 C 0.882812 0.09375 0.585938 -0.0195312 0.398438 -0.246094 C 0.210938 -0.472656 0.121094 -0.75 0.121094 -1.074219 L 0.578125 -1.074219 C 0.597656 -0.847656 0.640625 -0.683594 0.707031 -0.582031 C 0.820312 -0.398438 1.023438 -0.304688 1.324219 -0.304688 C 1.554688 -0.304688 1.738281 -0.367188 1.878906 -0.492188 C 2.019531 -0.613281 2.089844 -0.773438 2.089844 -0.96875 C 2.089844 -1.210938 2.015625 -1.378906 1.867188 -1.476562 C 1.722656 -1.570312 1.515625 -1.617188 1.253906 -1.617188 C 1.226562 -1.617188 1.195312 -1.617188 1.164062 -1.617188 C 1.136719 -1.617188 1.105469 -1.617188 1.074219 -1.613281 L 1.074219 -2 C 1.121094 -1.996094 1.15625 -1.992188 1.1875 -1.992188 C 1.21875 -1.992188 1.253906 -1.988281 1.289062 -1.988281 C 1.453125 -1.988281 1.589844 -2.015625 1.695312 -2.066406 C 1.878906 -2.160156 1.972656 -2.320312 1.972656 -2.554688 C 1.972656 -2.730469 1.910156 -2.863281 1.789062 -2.960938 C 1.664062 -3.054688 1.519531 -3.101562 1.355469 -3.101562 C 1.0625 -3.101562 0.859375 -3.003906 0.746094 -2.808594 C 0.683594 -2.699219 0.648438 -2.546875 0.640625 -2.347656 L 0.207031 -2.347656 C 0.207031 -2.609375 0.257812 -2.832031 0.363281 -3.011719 C 0.542969 -3.335938 0.859375 -3.5 1.308594 -3.5 C 1.664062 -3.5 1.941406 -3.421875 2.136719 -3.261719 C 2.332031 -3.105469 2.429688 -2.875 2.429688 -2.574219 C 2.429688 -2.359375 2.371094 -2.183594 2.257812 -2.050781 C 2.183594 -1.96875 2.089844 -1.902344 1.976562 -1.855469 C 2.160156 -1.804688 2.304688 -1.707031 2.410156 -1.5625 C 2.511719 -1.417969 2.5625 -1.242188 2.5625 -1.035156 C 2.5625 -0.703125 2.453125 -0.429688 2.234375 -0.21875 C 2.015625 -0.0078125 1.703125 0.09375 1.296875 0.09375 Z M 1.296875 0.09375 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-3\">\n",
"<path style=\"stroke:none;\" d=\"M 1.460938 -3.511719 C 1.851562 -3.511719 2.125 -3.410156 2.277344 -3.207031 C 2.433594 -3.003906 2.507812 -2.796875 2.507812 -2.582031 L 2.074219 -2.582031 C 2.046875 -2.71875 2.007812 -2.828125 1.949219 -2.90625 C 1.84375 -3.050781 1.683594 -3.125 1.46875 -3.125 C 1.222656 -3.125 1.027344 -3.011719 0.882812 -2.785156 C 0.738281 -2.558594 0.660156 -2.230469 0.640625 -1.808594 C 0.742188 -1.957031 0.871094 -2.066406 1.023438 -2.140625 C 1.164062 -2.207031 1.320312 -2.238281 1.492188 -2.238281 C 1.785156 -2.238281 2.039062 -2.144531 2.257812 -1.957031 C 2.476562 -1.769531 2.585938 -1.492188 2.585938 -1.121094 C 2.585938 -0.804688 2.480469 -0.523438 2.273438 -0.277344 C 2.066406 -0.03125 1.773438 0.0898438 1.390625 0.0898438 C 1.0625 0.0898438 0.78125 -0.0351562 0.542969 -0.28125 C 0.304688 -0.53125 0.1875 -0.949219 0.1875 -1.535156 C 0.1875 -1.96875 0.242188 -2.339844 0.347656 -2.640625 C 0.550781 -3.21875 0.921875 -3.511719 1.460938 -3.511719 Z M 1.429688 -0.300781 C 1.660156 -0.300781 1.835938 -0.378906 1.949219 -0.535156 C 2.0625 -0.6875 2.121094 -0.871094 2.121094 -1.085938 C 2.121094 -1.265625 2.070312 -1.433594 1.96875 -1.59375 C 1.867188 -1.757812 1.679688 -1.839844 1.410156 -1.839844 C 1.21875 -1.839844 1.054688 -1.777344 0.910156 -1.648438 C 0.769531 -1.523438 0.699219 -1.335938 0.699219 -1.085938 C 0.699219 -0.863281 0.761719 -0.675781 0.890625 -0.527344 C 1.019531 -0.375 1.203125 -0.300781 1.429688 -0.300781 Z M 1.429688 -0.300781 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-4\">\n",
"<path style=\"stroke:none;\" d=\"M 0.382812 -3.585938 L 0.953125 -3.585938 L 2.765625 -0.679688 L 2.765625 -3.585938 L 3.226562 -3.585938 L 3.226562 0 L 2.683594 0 L 0.84375 -2.902344 L 0.84375 0 L 0.382812 0 Z M 0.382812 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-5\">\n",
"<path style=\"stroke:none;\" d=\"M 1.410156 -2.671875 C 1.597656 -2.671875 1.777344 -2.628906 1.949219 -2.542969 C 2.125 -2.457031 2.257812 -2.34375 2.347656 -2.203125 C 2.4375 -2.070312 2.496094 -1.917969 2.523438 -1.742188 C 2.550781 -1.621094 2.5625 -1.429688 2.5625 -1.167969 L 0.648438 -1.167969 C 0.65625 -0.902344 0.71875 -0.6875 0.835938 -0.527344 C 0.953125 -0.367188 1.132812 -0.289062 1.378906 -0.289062 C 1.609375 -0.289062 1.792969 -0.363281 1.929688 -0.515625 C 2.007812 -0.601562 2.0625 -0.703125 2.09375 -0.820312 L 2.527344 -0.820312 C 2.515625 -0.722656 2.476562 -0.617188 2.414062 -0.5 C 2.347656 -0.382812 2.277344 -0.285156 2.195312 -0.210938 C 2.0625 -0.078125 1.898438 0.0078125 1.703125 0.0546875 C 1.597656 0.078125 1.476562 0.09375 1.34375 0.09375 C 1.015625 0.09375 0.742188 -0.0273438 0.515625 -0.261719 C 0.289062 -0.5 0.175781 -0.832031 0.175781 -1.257812 C 0.175781 -1.675781 0.289062 -2.019531 0.515625 -2.28125 C 0.746094 -2.542969 1.042969 -2.671875 1.410156 -2.671875 Z M 2.113281 -1.515625 C 2.09375 -1.707031 2.050781 -1.859375 1.988281 -1.972656 C 1.867188 -2.183594 1.664062 -2.289062 1.382812 -2.289062 C 1.183594 -2.289062 1.011719 -2.21875 0.875 -2.070312 C 0.738281 -1.925781 0.667969 -1.742188 0.660156 -1.515625 Z M 2.113281 -1.515625 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-6\">\n",
"<path style=\"stroke:none;\" d=\"M 0.523438 -2.613281 L 1.027344 -0.554688 L 1.539062 -2.613281 L 2.03125 -2.613281 L 2.542969 -0.566406 L 3.078125 -2.613281 L 3.519531 -2.613281 L 2.757812 0 L 2.300781 0 L 1.769531 -2.023438 L 1.253906 0 L 0.796875 0 L 0.0429688 -2.613281 Z M 0.523438 -2.613281 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-7\">\n",
"<path style=\"stroke:none;\" d=\"M 0.582031 -0.820312 C 0.597656 -0.671875 0.632812 -0.5625 0.695312 -0.484375 C 0.804688 -0.34375 0.996094 -0.269531 1.269531 -0.269531 C 1.433594 -0.269531 1.574219 -0.304688 1.699219 -0.378906 C 1.824219 -0.449219 1.882812 -0.558594 1.882812 -0.707031 C 1.882812 -0.820312 1.835938 -0.902344 1.734375 -0.960938 C 1.671875 -0.996094 1.546875 -1.039062 1.359375 -1.085938 L 1.011719 -1.175781 C 0.789062 -1.230469 0.625 -1.292969 0.515625 -1.359375 C 0.328125 -1.476562 0.234375 -1.644531 0.234375 -1.851562 C 0.234375 -2.101562 0.324219 -2.300781 0.5 -2.453125 C 0.679688 -2.605469 0.917969 -2.683594 1.21875 -2.683594 C 1.613281 -2.683594 1.898438 -2.566406 2.074219 -2.335938 C 2.183594 -2.191406 2.234375 -2.03125 2.230469 -1.863281 L 1.816406 -1.863281 C 1.808594 -1.960938 1.773438 -2.050781 1.710938 -2.132812 C 1.609375 -2.25 1.4375 -2.308594 1.1875 -2.308594 C 1.019531 -2.308594 0.894531 -2.273438 0.808594 -2.210938 C 0.722656 -2.148438 0.679688 -2.066406 0.679688 -1.960938 C 0.679688 -1.847656 0.738281 -1.753906 0.851562 -1.6875 C 0.914062 -1.648438 1.011719 -1.609375 1.136719 -1.578125 L 1.429688 -1.507812 C 1.746094 -1.433594 1.957031 -1.359375 2.0625 -1.285156 C 2.234375 -1.171875 2.320312 -0.996094 2.320312 -0.757812 C 2.320312 -0.523438 2.230469 -0.324219 2.054688 -0.152344 C 1.878906 0.015625 1.609375 0.101562 1.246094 0.101562 C 0.859375 0.101562 0.582031 0.0117188 0.421875 -0.164062 C 0.257812 -0.339844 0.171875 -0.558594 0.160156 -0.820312 Z M 0.582031 -0.820312 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-8\">\n",
"<path style=\"stroke:none;\" d=\"M 1.652344 -1.238281 L 1.652344 -2.820312 L 0.53125 -1.238281 Z M 1.660156 0 L 1.660156 -0.855469 L 0.125 -0.855469 L 0.125 -1.285156 L 1.726562 -3.507812 L 2.101562 -3.507812 L 2.101562 -1.238281 L 2.613281 -1.238281 L 2.613281 -0.855469 L 2.101562 -0.855469 L 2.101562 0 Z M 1.660156 0 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-9\">\n",
"<path style=\"stroke:none;\" d=\"M 0.664062 -0.84375 C 0.675781 -0.601562 0.769531 -0.433594 0.945312 -0.34375 C 1.035156 -0.292969 1.136719 -0.269531 1.246094 -0.269531 C 1.457031 -0.269531 1.636719 -0.355469 1.785156 -0.53125 C 1.933594 -0.707031 2.039062 -1.0625 2.101562 -1.597656 C 2.003906 -1.441406 1.882812 -1.332031 1.738281 -1.269531 C 1.59375 -1.207031 1.4375 -1.175781 1.273438 -1.175781 C 0.9375 -1.175781 0.667969 -1.28125 0.472656 -1.492188 C 0.277344 -1.703125 0.179688 -1.972656 0.179688 -2.300781 C 0.179688 -2.617188 0.273438 -2.898438 0.46875 -3.140625 C 0.664062 -3.382812 0.949219 -3.5 1.324219 -3.5 C 1.835938 -3.5 2.1875 -3.273438 2.378906 -2.8125 C 2.488281 -2.558594 2.542969 -2.246094 2.542969 -1.867188 C 2.542969 -1.4375 2.476562 -1.058594 2.347656 -0.726562 C 2.136719 -0.175781 1.773438 0.0976562 1.265625 0.0976562 C 0.921875 0.0976562 0.664062 0.0078125 0.484375 -0.171875 C 0.308594 -0.351562 0.21875 -0.574219 0.21875 -0.84375 Z M 1.332031 -1.5625 C 1.503906 -1.5625 1.664062 -1.621094 1.808594 -1.734375 C 1.953125 -1.847656 2.023438 -2.050781 2.023438 -2.335938 C 2.023438 -2.59375 1.960938 -2.785156 1.828125 -2.910156 C 1.699219 -3.039062 1.535156 -3.101562 1.335938 -3.101562 C 1.121094 -3.101562 0.949219 -3.027344 0.824219 -2.882812 C 0.699219 -2.738281 0.632812 -2.546875 0.632812 -2.308594 C 0.632812 -2.078125 0.691406 -1.898438 0.800781 -1.765625 C 0.910156 -1.628906 1.089844 -1.5625 1.332031 -1.5625 Z M 1.332031 -1.5625 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-10\">\n",
"<path style=\"stroke:none;\" d=\"M 0.320312 -2.613281 L 0.757812 -2.613281 L 0.757812 -2.242188 C 0.859375 -2.371094 0.957031 -2.464844 1.039062 -2.523438 C 1.183594 -2.625 1.347656 -2.671875 1.53125 -2.671875 C 1.742188 -2.671875 1.910156 -2.621094 2.035156 -2.519531 C 2.109375 -2.460938 2.171875 -2.375 2.230469 -2.261719 C 2.328125 -2.402344 2.445312 -2.503906 2.574219 -2.570312 C 2.707031 -2.640625 2.855469 -2.671875 3.019531 -2.671875 C 3.371094 -2.671875 3.609375 -2.546875 3.738281 -2.292969 C 3.804688 -2.15625 3.839844 -1.972656 3.839844 -1.742188 L 3.839844 0 L 3.382812 0 L 3.382812 -1.816406 C 3.382812 -1.992188 3.339844 -2.109375 3.253906 -2.175781 C 3.167969 -2.242188 3.058594 -2.273438 2.933594 -2.273438 C 2.761719 -2.273438 2.613281 -2.214844 2.488281 -2.101562 C 2.363281 -1.984375 2.300781 -1.792969 2.300781 -1.519531 L 2.300781 0 L 1.855469 0 L 1.855469 -1.707031 C 1.855469 -1.882812 1.835938 -2.011719 1.792969 -2.09375 C 1.726562 -2.214844 1.601562 -2.277344 1.417969 -2.277344 C 1.253906 -2.277344 1.101562 -2.214844 0.964844 -2.085938 C 0.828125 -1.957031 0.761719 -1.722656 0.761719 -1.386719 L 0.761719 0 L 0.320312 0 Z M 0.320312 -2.613281 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-11\">\n",
"<path style=\"stroke:none;\" d=\"M 0.660156 -0.695312 C 0.660156 -0.570312 0.707031 -0.46875 0.796875 -0.394531 C 0.890625 -0.320312 1 -0.285156 1.128906 -0.285156 C 1.28125 -0.285156 1.433594 -0.320312 1.578125 -0.394531 C 1.820312 -0.511719 1.945312 -0.707031 1.945312 -0.976562 L 1.945312 -1.332031 C 1.890625 -1.296875 1.820312 -1.269531 1.734375 -1.246094 C 1.652344 -1.222656 1.566406 -1.207031 1.488281 -1.195312 L 1.21875 -1.164062 C 1.0625 -1.140625 0.941406 -1.109375 0.863281 -1.0625 C 0.726562 -0.984375 0.660156 -0.863281 0.660156 -0.695312 Z M 1.722656 -1.585938 C 1.824219 -1.597656 1.890625 -1.640625 1.925781 -1.710938 C 1.945312 -1.75 1.957031 -1.804688 1.957031 -1.878906 C 1.957031 -2.03125 1.902344 -2.136719 1.796875 -2.207031 C 1.6875 -2.273438 1.535156 -2.308594 1.335938 -2.308594 C 1.109375 -2.308594 0.945312 -2.246094 0.851562 -2.121094 C 0.796875 -2.054688 0.761719 -1.953125 0.746094 -1.816406 L 0.335938 -1.816406 C 0.34375 -2.140625 0.445312 -2.363281 0.648438 -2.488281 C 0.847656 -2.613281 1.082031 -2.679688 1.347656 -2.679688 C 1.65625 -2.679688 1.90625 -2.621094 2.097656 -2.503906 C 2.289062 -2.386719 2.382812 -2.203125 2.382812 -1.957031 L 2.382812 -0.449219 C 2.382812 -0.402344 2.390625 -0.367188 2.410156 -0.339844 C 2.429688 -0.3125 2.46875 -0.296875 2.53125 -0.296875 C 2.550781 -0.296875 2.570312 -0.300781 2.59375 -0.300781 C 2.617188 -0.304688 2.644531 -0.308594 2.671875 -0.3125 L 2.671875 0.0117188 C 2.605469 0.03125 2.554688 0.0429688 2.515625 0.046875 C 2.480469 0.0546875 2.433594 0.0546875 2.371094 0.0546875 C 2.21875 0.0546875 2.109375 0.00390625 2.039062 -0.105469 C 2.003906 -0.164062 1.980469 -0.242188 1.964844 -0.347656 C 1.875 -0.230469 1.746094 -0.128906 1.578125 -0.0429688 C 1.410156 0.0429688 1.226562 0.0859375 1.023438 0.0859375 C 0.78125 0.0859375 0.585938 0.015625 0.429688 -0.132812 C 0.277344 -0.28125 0.199219 -0.464844 0.199219 -0.6875 C 0.199219 -0.929688 0.277344 -1.117188 0.425781 -1.25 C 0.578125 -1.382812 0.777344 -1.464844 1.023438 -1.496094 Z M 1.722656 -1.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-12\">\n",
"<path style=\"stroke:none;\" d=\"M 0.320312 -2.601562 L 0.769531 -2.601562 L 0.769531 0 L 0.320312 0 Z M 0.320312 -3.585938 L 0.769531 -3.585938 L 0.769531 -3.089844 L 0.320312 -3.089844 Z M 0.320312 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-13\">\n",
"<path style=\"stroke:none;\" d=\"M 0.617188 -0.890625 C 0.648438 -0.640625 0.761719 -0.46875 0.96875 -0.371094 C 1.070312 -0.320312 1.191406 -0.296875 1.328125 -0.296875 C 1.589844 -0.296875 1.78125 -0.382812 1.90625 -0.546875 C 2.03125 -0.710938 2.09375 -0.898438 2.09375 -1.097656 C 2.09375 -1.34375 2.019531 -1.53125 1.871094 -1.664062 C 1.722656 -1.796875 1.542969 -1.867188 1.335938 -1.867188 C 1.183594 -1.867188 1.054688 -1.835938 0.945312 -1.777344 C 0.835938 -1.71875 0.746094 -1.636719 0.667969 -1.53125 L 0.289062 -1.554688 L 0.554688 -3.4375 L 2.371094 -3.4375 L 2.371094 -3.011719 L 0.882812 -3.011719 L 0.734375 -2.039062 C 0.816406 -2.101562 0.894531 -2.148438 0.96875 -2.179688 C 1.097656 -2.234375 1.246094 -2.261719 1.417969 -2.261719 C 1.738281 -2.261719 2.011719 -2.15625 2.234375 -1.949219 C 2.457031 -1.742188 2.570312 -1.480469 2.570312 -1.164062 C 2.570312 -0.835938 2.464844 -0.542969 2.261719 -0.289062 C 2.058594 -0.0390625 1.730469 0.0859375 1.285156 0.0859375 C 1 0.0859375 0.746094 0.0078125 0.527344 -0.152344 C 0.308594 -0.3125 0.1875 -0.558594 0.160156 -0.890625 Z M 0.617188 -0.890625 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-14\">\n",
"<path style=\"stroke:none;\" d=\"M 0.476562 -2.476562 L 0.476562 -2.8125 C 0.796875 -2.84375 1.015625 -2.894531 1.140625 -2.96875 C 1.265625 -3.039062 1.363281 -3.210938 1.421875 -3.480469 L 1.769531 -3.480469 L 1.769531 0 L 1.300781 0 L 1.300781 -2.476562 Z M 0.476562 -2.476562 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-15\">\n",
"<path style=\"stroke:none;\" d=\"M 0.320312 -2.613281 L 0.738281 -2.613281 L 0.738281 -2.242188 C 0.863281 -2.394531 0.996094 -2.507812 1.132812 -2.574219 C 1.269531 -2.640625 1.425781 -2.671875 1.59375 -2.671875 C 1.964844 -2.671875 2.214844 -2.542969 2.347656 -2.285156 C 2.417969 -2.144531 2.453125 -1.941406 2.453125 -1.675781 L 2.453125 0 L 2.007812 0 L 2.007812 -1.648438 C 2.007812 -1.808594 1.984375 -1.9375 1.9375 -2.035156 C 1.859375 -2.195312 1.714844 -2.277344 1.511719 -2.277344 C 1.40625 -2.277344 1.320312 -2.265625 1.253906 -2.246094 C 1.132812 -2.210938 1.027344 -2.140625 0.9375 -2.03125 C 0.863281 -1.945312 0.816406 -1.855469 0.792969 -1.765625 C 0.773438 -1.671875 0.761719 -1.539062 0.761719 -1.371094 L 0.761719 0 L 0.320312 0 Z M 0.320312 -2.613281 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-16\">\n",
"<path style=\"stroke:none;\" d=\"M 1.757812 -0.414062 C 1.921875 -0.414062 2.058594 -0.433594 2.164062 -0.464844 C 2.351562 -0.53125 2.507812 -0.652344 2.625 -0.832031 C 2.722656 -0.976562 2.792969 -1.164062 2.835938 -1.390625 C 2.859375 -1.523438 2.871094 -1.648438 2.871094 -1.765625 C 2.871094 -2.210938 2.78125 -2.554688 2.605469 -2.800781 C 2.429688 -3.046875 2.144531 -3.167969 1.753906 -3.167969 L 0.890625 -3.167969 L 0.890625 -0.414062 Z M 0.402344 -3.585938 L 1.855469 -3.585938 C 2.347656 -3.585938 2.730469 -3.410156 3.003906 -3.0625 C 3.246094 -2.746094 3.367188 -2.339844 3.367188 -1.847656 C 3.367188 -1.46875 3.296875 -1.125 3.152344 -0.816406 C 2.898438 -0.273438 2.464844 0 1.851562 0 L 0.402344 0 Z M 0.402344 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-17\">\n",
"<path style=\"stroke:none;\" d=\"M 0.410156 -3.34375 L 0.855469 -3.34375 L 0.855469 -2.613281 L 1.273438 -2.613281 L 1.273438 -2.257812 L 0.855469 -2.257812 L 0.855469 -0.550781 C 0.855469 -0.457031 0.886719 -0.398438 0.945312 -0.367188 C 0.980469 -0.347656 1.039062 -0.339844 1.117188 -0.339844 C 1.140625 -0.339844 1.164062 -0.339844 1.1875 -0.339844 C 1.210938 -0.339844 1.238281 -0.34375 1.273438 -0.347656 L 1.273438 0 C 1.222656 0.015625 1.167969 0.0234375 1.113281 0.03125 C 1.058594 0.0390625 1 0.0429688 0.9375 0.0429688 C 0.734375 0.0429688 0.59375 -0.0117188 0.519531 -0.117188 C 0.445312 -0.222656 0.410156 -0.355469 0.410156 -0.523438 L 0.410156 -2.257812 L 0.0546875 -2.257812 L 0.0546875 -2.613281 L 0.410156 -2.613281 Z M 0.410156 -3.34375 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-18\">\n",
"<path style=\"stroke:none;\" d=\"M 2.222656 -1.46875 L 1.675781 -3.054688 L 1.097656 -1.46875 Z M 1.421875 -3.585938 L 1.972656 -3.585938 L 3.273438 0 L 2.742188 0 L 2.378906 -1.074219 L 0.960938 -1.074219 L 0.570312 0 L 0.0742188 0 Z M 1.421875 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-19\">\n",
"<path style=\"stroke:none;\" d=\"M 0.425781 -3.585938 L 2.914062 -3.585938 L 2.914062 -3.148438 L 0.914062 -3.148438 L 0.914062 -2.058594 L 2.671875 -2.058594 L 2.671875 -1.632812 L 0.914062 -1.632812 L 0.914062 0 L 0.425781 0 Z M 0.425781 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-20\">\n",
"<path style=\"stroke:none;\" d=\"M 0 0.625 L 0 0.378906 L 2.78125 0.378906 L 2.78125 0.625 Z M 0 0.625 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-21\">\n",
"<path style=\"stroke:none;\" d=\"M 0.335938 -2.613281 L 0.75 -2.613281 L 0.75 -2.164062 C 0.785156 -2.25 0.871094 -2.359375 1.003906 -2.484375 C 1.136719 -2.609375 1.289062 -2.671875 1.464844 -2.671875 C 1.472656 -2.671875 1.488281 -2.671875 1.507812 -2.671875 C 1.527344 -2.667969 1.558594 -2.664062 1.605469 -2.660156 L 1.605469 -2.195312 C 1.578125 -2.203125 1.554688 -2.207031 1.535156 -2.207031 C 1.511719 -2.207031 1.488281 -2.210938 1.460938 -2.210938 C 1.242188 -2.210938 1.070312 -2.136719 0.953125 -1.996094 C 0.832031 -1.851562 0.773438 -1.6875 0.773438 -1.503906 L 0.773438 0 L 0.335938 0 Z M 0.335938 -2.613281 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-22\">\n",
"<path style=\"stroke:none;\" d=\"M 1.332031 -2.691406 C 1.625 -2.691406 1.863281 -2.617188 2.050781 -2.476562 C 2.234375 -2.332031 2.34375 -2.085938 2.382812 -1.734375 L 1.957031 -1.734375 C 1.929688 -1.898438 1.871094 -2.03125 1.777344 -2.136719 C 1.683594 -2.242188 1.535156 -2.296875 1.332031 -2.296875 C 1.050781 -2.296875 0.851562 -2.160156 0.730469 -1.886719 C 0.652344 -1.710938 0.613281 -1.492188 0.613281 -1.230469 C 0.613281 -0.96875 0.667969 -0.746094 0.777344 -0.570312 C 0.890625 -0.390625 1.0625 -0.300781 1.300781 -0.300781 C 1.484375 -0.300781 1.628906 -0.355469 1.734375 -0.46875 C 1.839844 -0.578125 1.914062 -0.730469 1.957031 -0.925781 L 2.382812 -0.925781 C 2.335938 -0.578125 2.210938 -0.324219 2.015625 -0.164062 C 1.820312 -0.00390625 1.570312 0.0742188 1.265625 0.0742188 C 0.925781 0.0742188 0.652344 -0.0507812 0.449219 -0.300781 C 0.246094 -0.550781 0.144531 -0.859375 0.144531 -1.234375 C 0.144531 -1.695312 0.253906 -2.050781 0.476562 -2.308594 C 0.699219 -2.5625 0.984375 -2.691406 1.332031 -2.691406 Z M 1.332031 -2.691406 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-23\">\n",
"<path style=\"stroke:none;\" d=\"M 0.492188 -3.585938 L 0.980469 -3.585938 L 0.980469 0 L 0.492188 0 Z M 0.492188 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-24\">\n",
"<path style=\"stroke:none;\" d=\"M 0.664062 -3.585938 L 1.695312 -0.53125 L 2.710938 -3.585938 L 3.257812 -3.585938 L 1.949219 0 L 1.433594 0 L 0.125 -3.585938 Z M 0.664062 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-25\">\n",
"<path style=\"stroke:none;\" d=\"M 0.601562 -1.277344 C 0.601562 -0.996094 0.660156 -0.761719 0.777344 -0.574219 C 0.898438 -0.386719 1.089844 -0.289062 1.351562 -0.289062 C 1.554688 -0.289062 1.722656 -0.378906 1.851562 -0.554688 C 1.984375 -0.726562 2.046875 -0.980469 2.046875 -1.304688 C 2.046875 -1.636719 1.980469 -1.882812 1.84375 -2.039062 C 1.710938 -2.199219 1.542969 -2.277344 1.34375 -2.277344 C 1.125 -2.277344 0.945312 -2.191406 0.808594 -2.023438 C 0.671875 -1.855469 0.601562 -1.605469 0.601562 -1.277344 Z M 1.261719 -2.660156 C 1.460938 -2.660156 1.628906 -2.617188 1.765625 -2.535156 C 1.84375 -2.484375 1.933594 -2.398438 2.03125 -2.277344 L 2.03125 -3.597656 L 2.453125 -3.597656 L 2.453125 0 L 2.058594 0 L 2.058594 -0.363281 C 1.957031 -0.203125 1.835938 -0.0859375 1.695312 -0.015625 C 1.554688 0.0546875 1.394531 0.09375 1.214844 0.09375 C 0.921875 0.09375 0.667969 -0.03125 0.457031 -0.273438 C 0.242188 -0.519531 0.136719 -0.84375 0.136719 -1.253906 C 0.136719 -1.632812 0.234375 -1.964844 0.429688 -2.242188 C 0.625 -2.523438 0.902344 -2.660156 1.261719 -2.660156 Z M 1.261719 -2.660156 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-26\">\n",
"<path style=\"stroke:none;\" d=\"M 0.425781 -3.585938 L 2.039062 -3.585938 C 2.359375 -3.585938 2.617188 -3.496094 2.8125 -3.316406 C 3.007812 -3.136719 3.105469 -2.882812 3.105469 -2.558594 C 3.105469 -2.277344 3.019531 -2.035156 2.84375 -1.828125 C 2.671875 -1.621094 2.402344 -1.515625 2.039062 -1.515625 L 0.914062 -1.515625 L 0.914062 0 L 0.425781 0 Z M 2.613281 -2.554688 C 2.613281 -2.820312 2.515625 -3 2.320312 -3.09375 C 2.214844 -3.144531 2.066406 -3.167969 1.878906 -3.167969 L 0.914062 -3.167969 L 0.914062 -1.925781 L 1.878906 -1.925781 C 2.097656 -1.925781 2.273438 -1.972656 2.410156 -2.066406 C 2.546875 -2.160156 2.613281 -2.320312 2.613281 -2.554688 Z M 2.613281 -2.554688 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-27\">\n",
"<path style=\"stroke:none;\" d=\"M 1.726562 -2.070312 C 1.933594 -2.070312 2.09375 -2.097656 2.207031 -2.15625 C 2.386719 -2.246094 2.476562 -2.40625 2.476562 -2.640625 C 2.476562 -2.875 2.378906 -3.03125 2.191406 -3.113281 C 2.082031 -3.160156 1.921875 -3.179688 1.710938 -3.179688 L 0.84375 -3.179688 L 0.84375 -2.070312 Z M 1.890625 -0.414062 C 2.1875 -0.414062 2.402344 -0.5 2.53125 -0.671875 C 2.609375 -0.78125 2.648438 -0.914062 2.648438 -1.070312 C 2.648438 -1.328125 2.53125 -1.507812 2.300781 -1.601562 C 2.175781 -1.652344 2.011719 -1.675781 1.808594 -1.675781 L 0.84375 -1.675781 L 0.84375 -0.414062 Z M 0.367188 -3.585938 L 1.910156 -3.585938 C 2.328125 -3.585938 2.628906 -3.460938 2.804688 -3.210938 C 2.910156 -3.0625 2.960938 -2.890625 2.960938 -2.699219 C 2.960938 -2.472656 2.898438 -2.285156 2.769531 -2.140625 C 2.703125 -2.0625 2.605469 -1.996094 2.480469 -1.929688 C 2.664062 -1.859375 2.800781 -1.78125 2.894531 -1.695312 C 3.054688 -1.539062 3.132812 -1.324219 3.132812 -1.046875 C 3.132812 -0.816406 3.0625 -0.605469 2.917969 -0.421875 C 2.703125 -0.140625 2.355469 0 1.882812 0 L 0.367188 0 Z M 0.367188 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-28\">\n",
"<path style=\"stroke:none;\" d=\"M 0.394531 -3.585938 L 0.882812 -3.585938 L 0.882812 -2.105469 L 2.75 -2.105469 L 2.75 -3.585938 L 3.238281 -3.585938 L 3.238281 0 L 2.75 0 L 2.75 -1.675781 L 0.882812 -1.675781 L 0.882812 0 L 0.394531 0 Z M 0.394531 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-29\">\n",
"<path style=\"stroke:none;\" d=\"M 0.90625 -3.585938 L 0.90625 -1.371094 C 0.90625 -1.109375 0.957031 -0.894531 1.054688 -0.71875 C 1.199219 -0.460938 1.445312 -0.328125 1.789062 -0.328125 C 2.199219 -0.328125 2.480469 -0.46875 2.625 -0.75 C 2.707031 -0.90625 2.746094 -1.109375 2.746094 -1.371094 L 2.746094 -3.585938 L 3.238281 -3.585938 L 3.238281 -1.570312 C 3.238281 -1.128906 3.179688 -0.792969 3.0625 -0.554688 C 2.84375 -0.121094 2.429688 0.09375 1.828125 0.09375 C 1.222656 0.09375 0.808594 -0.121094 0.59375 -0.554688 C 0.476562 -0.792969 0.414062 -1.132812 0.414062 -1.570312 L 0.414062 -3.585938 Z M 0.90625 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-30\">\n",
"<path style=\"stroke:none;\" d=\"M 1.929688 -3.683594 C 2.5625 -3.683594 3.03125 -3.480469 3.335938 -3.074219 C 3.574219 -2.757812 3.691406 -2.351562 3.691406 -1.855469 C 3.691406 -1.320312 3.554688 -0.875 3.285156 -0.519531 C 2.964844 -0.101562 2.507812 0.105469 1.917969 0.105469 C 1.367188 0.105469 0.933594 -0.078125 0.617188 -0.441406 C 0.335938 -0.792969 0.195312 -1.238281 0.195312 -1.773438 C 0.195312 -2.257812 0.316406 -2.675781 0.554688 -3.019531 C 0.867188 -3.460938 1.324219 -3.683594 1.929688 -3.683594 Z M 1.976562 -0.328125 C 2.40625 -0.328125 2.714844 -0.484375 2.90625 -0.789062 C 3.097656 -1.097656 3.195312 -1.449219 3.195312 -1.847656 C 3.195312 -2.269531 3.082031 -2.609375 2.863281 -2.867188 C 2.640625 -3.125 2.339844 -3.25 1.957031 -3.25 C 1.585938 -3.25 1.285156 -3.125 1.050781 -2.871094 C 0.816406 -2.617188 0.699219 -2.238281 0.699219 -1.742188 C 0.699219 -1.34375 0.796875 -1.011719 1 -0.738281 C 1.199219 -0.464844 1.527344 -0.328125 1.976562 -0.328125 Z M 1.976562 -0.328125 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-31\">\n",
"<path style=\"stroke:none;\" d=\"M 0.289062 -3.597656 L 0.714844 -3.597656 L 0.714844 -2.296875 C 0.8125 -2.421875 0.925781 -2.519531 1.058594 -2.585938 C 1.191406 -2.652344 1.335938 -2.683594 1.492188 -2.683594 C 1.820312 -2.683594 2.082031 -2.570312 2.285156 -2.347656 C 2.488281 -2.125 2.589844 -1.792969 2.589844 -1.359375 C 2.589844 -0.945312 2.492188 -0.601562 2.289062 -0.328125 C 2.089844 -0.0546875 1.8125 0.0820312 1.457031 0.0820312 C 1.257812 0.0820312 1.089844 0.0351562 0.953125 -0.0625 C 0.871094 -0.117188 0.785156 -0.210938 0.695312 -0.335938 L 0.695312 0 L 0.289062 0 Z M 1.429688 -0.304688 C 1.667969 -0.304688 1.847656 -0.398438 1.964844 -0.589844 C 2.082031 -0.777344 2.140625 -1.027344 2.140625 -1.335938 C 2.140625 -1.609375 2.082031 -1.839844 1.964844 -2.019531 C 1.847656 -2.199219 1.671875 -2.289062 1.441406 -2.289062 C 1.242188 -2.289062 1.066406 -2.214844 0.917969 -2.066406 C 0.765625 -1.917969 0.691406 -1.675781 0.691406 -1.335938 C 0.691406 -1.089844 0.722656 -0.890625 0.785156 -0.738281 C 0.898438 -0.449219 1.113281 -0.304688 1.429688 -0.304688 Z M 1.429688 -0.304688 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-32\">\n",
"<path style=\"stroke:none;\" d=\"M 0.761719 -2.613281 L 0.761719 -0.878906 C 0.761719 -0.746094 0.78125 -0.636719 0.824219 -0.550781 C 0.902344 -0.394531 1.050781 -0.316406 1.261719 -0.316406 C 1.566406 -0.316406 1.777344 -0.453125 1.886719 -0.726562 C 1.945312 -0.875 1.976562 -1.074219 1.976562 -1.332031 L 1.976562 -2.613281 L 2.417969 -2.613281 L 2.417969 0 L 2 0 L 2.007812 -0.386719 C 1.949219 -0.285156 1.878906 -0.203125 1.792969 -0.132812 C 1.625 0.00390625 1.421875 0.0703125 1.183594 0.0703125 C 0.8125 0.0703125 0.558594 -0.0546875 0.421875 -0.304688 C 0.347656 -0.4375 0.3125 -0.613281 0.3125 -0.835938 L 0.3125 -2.613281 Z M 0.761719 -2.613281 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-33\">\n",
"<path style=\"stroke:none;\" d=\"M 0.367188 -3.585938 L 1.0625 -3.585938 L 2.09375 -0.554688 L 3.117188 -3.585938 L 3.804688 -3.585938 L 3.804688 0 L 3.34375 0 L 3.34375 -2.117188 C 3.34375 -2.191406 3.347656 -2.3125 3.351562 -2.480469 C 3.351562 -2.648438 3.355469 -2.832031 3.355469 -3.023438 L 2.332031 0 L 1.851562 0 L 0.820312 -3.023438 L 0.820312 -2.914062 C 0.820312 -2.828125 0.824219 -2.691406 0.828125 -2.511719 C 0.832031 -2.332031 0.832031 -2.203125 0.832031 -2.117188 L 0.832031 0 L 0.367188 0 Z M 0.367188 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-34\">\n",
"<path style=\"stroke:none;\" d=\"M 1.351562 -3.496094 C 1.804688 -3.496094 2.132812 -3.308594 2.335938 -2.9375 C 2.492188 -2.648438 2.570312 -2.253906 2.570312 -1.753906 C 2.570312 -1.277344 2.496094 -0.882812 2.355469 -0.574219 C 2.152344 -0.128906 1.816406 0.09375 1.351562 0.09375 C 0.929688 0.09375 0.617188 -0.0859375 0.414062 -0.453125 C 0.242188 -0.757812 0.15625 -1.164062 0.15625 -1.675781 C 0.15625 -2.074219 0.207031 -2.414062 0.308594 -2.699219 C 0.5 -3.230469 0.851562 -3.496094 1.351562 -3.496094 Z M 1.347656 -0.304688 C 1.574219 -0.304688 1.757812 -0.40625 1.890625 -0.609375 C 2.027344 -0.808594 2.09375 -1.1875 2.09375 -1.734375 C 2.09375 -2.132812 2.046875 -2.460938 1.949219 -2.714844 C 1.851562 -2.972656 1.660156 -3.101562 1.378906 -3.101562 C 1.121094 -3.101562 0.929688 -2.980469 0.8125 -2.734375 C 0.691406 -2.492188 0.632812 -2.132812 0.632812 -1.660156 C 0.632812 -1.304688 0.671875 -1.015625 0.746094 -0.800781 C 0.863281 -0.46875 1.0625 -0.304688 1.347656 -0.304688 Z M 1.347656 -0.304688 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-35\">\n",
"<path style=\"stroke:none;\" d=\"M 1.359375 -0.28125 C 1.652344 -0.28125 1.851562 -0.394531 1.960938 -0.613281 C 2.066406 -0.835938 2.121094 -1.078125 2.121094 -1.351562 C 2.121094 -1.59375 2.082031 -1.792969 2.003906 -1.945312 C 1.878906 -2.1875 1.667969 -2.308594 1.363281 -2.308594 C 1.09375 -2.308594 0.902344 -2.203125 0.777344 -2 C 0.65625 -1.792969 0.59375 -1.546875 0.59375 -1.257812 C 0.59375 -0.980469 0.65625 -0.746094 0.777344 -0.5625 C 0.898438 -0.375 1.09375 -0.28125 1.359375 -0.28125 Z M 1.375 -2.691406 C 1.714844 -2.691406 2 -2.578125 2.230469 -2.351562 C 2.464844 -2.128906 2.582031 -1.796875 2.582031 -1.363281 C 2.582031 -0.941406 2.476562 -0.59375 2.273438 -0.316406 C 2.066406 -0.0429688 1.75 0.09375 1.320312 0.09375 C 0.960938 0.09375 0.671875 -0.0273438 0.460938 -0.269531 C 0.25 -0.511719 0.144531 -0.839844 0.144531 -1.25 C 0.144531 -1.6875 0.253906 -2.039062 0.476562 -2.300781 C 0.699219 -2.5625 1 -2.691406 1.375 -2.691406 Z M 1.375 -2.691406 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-36\">\n",
"<path style=\"stroke:none;\" d=\"M 1.425781 -0.296875 C 1.632812 -0.296875 1.800781 -0.382812 1.9375 -0.554688 C 2.074219 -0.726562 2.140625 -0.980469 2.140625 -1.324219 C 2.140625 -1.53125 2.109375 -1.710938 2.050781 -1.859375 C 1.9375 -2.148438 1.726562 -2.292969 1.425781 -2.292969 C 1.121094 -2.292969 0.914062 -2.140625 0.800781 -1.835938 C 0.742188 -1.671875 0.710938 -1.464844 0.710938 -1.214844 C 0.710938 -1.015625 0.742188 -0.84375 0.800781 -0.699219 C 0.914062 -0.429688 1.125 -0.296875 1.425781 -0.296875 Z M 0.289062 -2.601562 L 0.714844 -2.601562 L 0.714844 -2.257812 C 0.804688 -2.375 0.898438 -2.464844 1.003906 -2.53125 C 1.152344 -2.628906 1.324219 -2.679688 1.527344 -2.679688 C 1.824219 -2.679688 2.074219 -2.566406 2.28125 -2.335938 C 2.488281 -2.109375 2.589844 -1.785156 2.589844 -1.363281 C 2.589844 -0.792969 2.441406 -0.386719 2.144531 -0.144531 C 1.953125 0.0117188 1.734375 0.0859375 1.484375 0.0859375 C 1.289062 0.0859375 1.121094 0.0429688 0.988281 -0.0429688 C 0.910156 -0.0898438 0.824219 -0.175781 0.726562 -0.292969 L 0.726562 1.042969 L 0.289062 1.042969 Z M 0.289062 -2.601562 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-37\">\n",
"<path style=\"stroke:none;\" d=\"M 0.335938 -3.585938 L 0.773438 -3.585938 L 0.773438 0 L 0.335938 0 Z M 0.335938 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-38\">\n",
"<path style=\"stroke:none;\" d=\"M 1.246094 -2.660156 C 1.449219 -2.660156 1.628906 -2.609375 1.78125 -2.507812 C 1.863281 -2.453125 1.949219 -2.371094 2.035156 -2.261719 L 2.035156 -2.589844 L 2.441406 -2.589844 L 2.441406 -0.210938 C 2.441406 0.121094 2.390625 0.382812 2.296875 0.574219 C 2.113281 0.929688 1.769531 1.105469 1.261719 1.105469 C 0.980469 1.105469 0.742188 1.042969 0.550781 0.917969 C 0.359375 0.789062 0.253906 0.59375 0.230469 0.324219 L 0.675781 0.324219 C 0.695312 0.441406 0.738281 0.53125 0.804688 0.59375 C 0.902344 0.691406 1.058594 0.742188 1.273438 0.742188 C 1.609375 0.742188 1.828125 0.625 1.933594 0.386719 C 1.996094 0.246094 2.023438 -0.00390625 2.019531 -0.363281 C 1.929688 -0.230469 1.824219 -0.132812 1.703125 -0.0664062 C 1.578125 0 1.414062 0.03125 1.210938 0.03125 C 0.929688 0.03125 0.679688 -0.0703125 0.46875 -0.269531 C 0.253906 -0.46875 0.148438 -0.804688 0.148438 -1.265625 C 0.148438 -1.703125 0.257812 -2.046875 0.46875 -2.292969 C 0.683594 -2.539062 0.941406 -2.660156 1.246094 -2.660156 Z M 2.035156 -1.320312 C 2.035156 -1.644531 1.96875 -1.882812 1.835938 -2.039062 C 1.703125 -2.195312 1.53125 -2.273438 1.324219 -2.273438 C 1.015625 -2.273438 0.804688 -2.128906 0.691406 -1.839844 C 0.632812 -1.683594 0.601562 -1.480469 0.601562 -1.230469 C 0.601562 -0.9375 0.660156 -0.710938 0.78125 -0.558594 C 0.898438 -0.40625 1.058594 -0.328125 1.261719 -0.328125 C 1.578125 -0.328125 1.800781 -0.46875 1.929688 -0.753906 C 2 -0.914062 2.035156 -1.101562 2.035156 -1.320312 Z M 2.035156 -1.320312 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-39\">\n",
"<path style=\"stroke:none;\" d=\"M 2.046875 -1.945312 C 2.277344 -1.945312 2.457031 -1.988281 2.589844 -2.078125 C 2.722656 -2.171875 2.789062 -2.335938 2.789062 -2.574219 C 2.789062 -2.828125 2.695312 -3.003906 2.507812 -3.09375 C 2.410156 -3.144531 2.277344 -3.167969 2.113281 -3.167969 L 0.925781 -3.167969 L 0.925781 -1.945312 Z M 0.4375 -3.585938 L 2.101562 -3.585938 C 2.375 -3.585938 2.597656 -3.546875 2.777344 -3.46875 C 3.113281 -3.3125 3.28125 -3.03125 3.28125 -2.621094 C 3.28125 -2.40625 3.238281 -2.230469 3.148438 -2.09375 C 3.058594 -1.957031 2.933594 -1.84375 2.777344 -1.761719 C 2.917969 -1.707031 3.019531 -1.632812 3.09375 -1.539062 C 3.164062 -1.445312 3.203125 -1.292969 3.210938 -1.085938 L 3.226562 -0.605469 C 3.230469 -0.46875 3.242188 -0.367188 3.261719 -0.300781 C 3.289062 -0.1875 3.34375 -0.113281 3.417969 -0.0820312 L 3.417969 0 L 2.820312 0 C 2.804688 -0.03125 2.792969 -0.0703125 2.78125 -0.121094 C 2.773438 -0.167969 2.765625 -0.261719 2.757812 -0.402344 L 2.730469 -1 C 2.71875 -1.234375 2.632812 -1.390625 2.46875 -1.472656 C 2.375 -1.515625 2.230469 -1.539062 2.03125 -1.539062 L 0.925781 -1.539062 L 0.925781 0 L 0.4375 0 Z M 0.4375 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-40\">\n",
"<path style=\"stroke:none;\" d=\"M 0.320312 -3.597656 L 0.761719 -3.597656 L 0.761719 -2.261719 C 0.867188 -2.394531 0.960938 -2.484375 1.042969 -2.539062 C 1.183594 -2.632812 1.359375 -2.679688 1.570312 -2.679688 C 1.949219 -2.679688 2.207031 -2.546875 2.34375 -2.28125 C 2.417969 -2.136719 2.453125 -1.933594 2.453125 -1.675781 L 2.453125 0 L 2 0 L 2 -1.648438 C 2 -1.839844 1.976562 -1.980469 1.929688 -2.070312 C 1.847656 -2.214844 1.699219 -2.285156 1.480469 -2.285156 C 1.296875 -2.285156 1.132812 -2.222656 0.984375 -2.097656 C 0.835938 -1.972656 0.761719 -1.734375 0.761719 -1.386719 L 0.761719 0 L 0.320312 0 Z M 0.320312 -3.597656 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-41\">\n",
"<path style=\"stroke:none;\" d=\"M 0.0742188 -2.613281 L 0.640625 -2.613281 L 1.242188 -1.695312 L 1.851562 -2.613281 L 2.386719 -2.601562 L 1.503906 -1.339844 L 2.425781 0 L 1.863281 0 L 1.214844 -0.980469 L 0.582031 0 L 0.0273438 0 L 0.945312 -1.339844 Z M 0.0742188 -2.613281 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-42\">\n",
"<path style=\"stroke:none;\" d=\"M 0.699219 -1.15625 C 0.710938 -0.953125 0.757812 -0.789062 0.84375 -0.660156 C 1.003906 -0.421875 1.289062 -0.304688 1.695312 -0.304688 C 1.875 -0.304688 2.042969 -0.332031 2.191406 -0.382812 C 2.480469 -0.484375 2.625 -0.664062 2.625 -0.925781 C 2.625 -1.121094 2.566406 -1.257812 2.445312 -1.34375 C 2.320312 -1.425781 2.125 -1.496094 1.863281 -1.554688 L 1.375 -1.664062 C 1.058594 -1.734375 0.835938 -1.816406 0.703125 -1.902344 C 0.476562 -2.050781 0.359375 -2.273438 0.359375 -2.574219 C 0.359375 -2.894531 0.472656 -3.160156 0.695312 -3.367188 C 0.917969 -3.574219 1.234375 -3.675781 1.644531 -3.675781 C 2.019531 -3.675781 2.339844 -3.585938 2.601562 -3.40625 C 2.863281 -3.222656 2.996094 -2.933594 2.996094 -2.535156 L 2.539062 -2.535156 C 2.515625 -2.726562 2.460938 -2.875 2.382812 -2.976562 C 2.234375 -3.164062 1.984375 -3.257812 1.628906 -3.257812 C 1.34375 -3.257812 1.136719 -3.195312 1.011719 -3.078125 C 0.886719 -2.957031 0.824219 -2.816406 0.824219 -2.65625 C 0.824219 -2.480469 0.894531 -2.351562 1.042969 -2.269531 C 1.140625 -2.21875 1.355469 -2.152344 1.695312 -2.074219 L 2.195312 -1.960938 C 2.4375 -1.90625 2.625 -1.828125 2.757812 -1.734375 C 2.984375 -1.566406 3.101562 -1.324219 3.101562 -1.003906 C 3.101562 -0.605469 2.957031 -0.320312 2.667969 -0.152344 C 2.378906 0.0195312 2.042969 0.105469 1.660156 0.105469 C 1.214844 0.105469 0.863281 -0.0078125 0.613281 -0.238281 C 0.359375 -0.464844 0.238281 -0.769531 0.242188 -1.15625 Z M 0.699219 -1.15625 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-43\">\n",
"<path style=\"stroke:none;\" d=\"M 0.433594 -3.011719 C 0.4375 -3.195312 0.46875 -3.328125 0.527344 -3.414062 C 0.628906 -3.5625 0.828125 -3.636719 1.121094 -3.636719 C 1.148438 -3.636719 1.175781 -3.636719 1.207031 -3.636719 C 1.234375 -3.632812 1.269531 -3.632812 1.304688 -3.628906 L 1.304688 -3.226562 C 1.261719 -3.230469 1.226562 -3.234375 1.207031 -3.234375 C 1.1875 -3.234375 1.167969 -3.234375 1.148438 -3.234375 C 1.015625 -3.234375 0.9375 -3.199219 0.910156 -3.132812 C 0.882812 -3.0625 0.871094 -2.886719 0.871094 -2.601562 L 1.304688 -2.601562 L 1.304688 -2.257812 L 0.867188 -2.257812 L 0.867188 0 L 0.433594 0 L 0.433594 -2.257812 L 0.0703125 -2.257812 L 0.0703125 -2.601562 L 0.433594 -2.601562 Z M 0.433594 -3.011719 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-44\">\n",
"<path style=\"stroke:none;\" d=\"M 1.359375 -2.03125 C 1.554688 -2.03125 1.703125 -2.085938 1.8125 -2.195312 C 1.921875 -2.300781 1.976562 -2.429688 1.976562 -2.582031 C 1.976562 -2.710938 1.925781 -2.832031 1.820312 -2.9375 C 1.71875 -3.046875 1.558594 -3.101562 1.34375 -3.101562 C 1.132812 -3.101562 0.980469 -3.046875 0.886719 -2.9375 C 0.792969 -2.828125 0.746094 -2.703125 0.746094 -2.554688 C 0.746094 -2.390625 0.804688 -2.261719 0.929688 -2.171875 C 1.050781 -2.078125 1.195312 -2.03125 1.359375 -2.03125 Z M 1.386719 -0.300781 C 1.589844 -0.300781 1.757812 -0.355469 1.894531 -0.464844 C 2.027344 -0.574219 2.09375 -0.738281 2.09375 -0.957031 C 2.09375 -1.183594 2.027344 -1.355469 1.886719 -1.472656 C 1.75 -1.589844 1.570312 -1.648438 1.355469 -1.648438 C 1.144531 -1.648438 0.972656 -1.589844 0.839844 -1.46875 C 0.707031 -1.347656 0.640625 -1.183594 0.640625 -0.972656 C 0.640625 -0.789062 0.703125 -0.632812 0.824219 -0.5 C 0.945312 -0.367188 1.132812 -0.300781 1.386719 -0.300781 Z M 0.761719 -1.863281 C 0.640625 -1.914062 0.542969 -1.976562 0.476562 -2.046875 C 0.347656 -2.175781 0.28125 -2.34375 0.28125 -2.554688 C 0.28125 -2.8125 0.378906 -3.039062 0.566406 -3.226562 C 0.753906 -3.414062 1.023438 -3.507812 1.371094 -3.507812 C 1.707031 -3.507812 1.96875 -3.417969 2.15625 -3.242188 C 2.347656 -3.066406 2.445312 -2.859375 2.445312 -2.621094 C 2.445312 -2.402344 2.386719 -2.226562 2.277344 -2.09375 C 2.214844 -2.015625 2.121094 -1.941406 1.988281 -1.867188 C 2.132812 -1.800781 2.25 -1.722656 2.332031 -1.636719 C 2.484375 -1.476562 2.5625 -1.265625 2.5625 -1.003906 C 2.5625 -0.695312 2.460938 -0.433594 2.253906 -0.222656 C 2.046875 -0.0078125 1.753906 0.101562 1.375 0.101562 C 1.035156 0.101562 0.75 0.0078125 0.515625 -0.175781 C 0.28125 -0.359375 0.160156 -0.628906 0.160156 -0.980469 C 0.160156 -1.1875 0.210938 -1.367188 0.3125 -1.515625 C 0.414062 -1.667969 0.5625 -1.78125 0.761719 -1.863281 Z M 0.761719 -1.863281 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-45\">\n",
"<path style=\"stroke:none;\" d=\"M 0.382812 -3.585938 L 0.867188 -3.585938 L 0.867188 -0.425781 L 2.683594 -0.425781 L 2.683594 0 L 0.382812 0 Z M 0.382812 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-46\">\n",
"<path style=\"stroke:none;\" d=\"M 2.613281 -3.4375 L 2.613281 -3.054688 C 2.5 -2.945312 2.351562 -2.753906 2.167969 -2.484375 C 1.980469 -2.214844 1.816406 -1.921875 1.671875 -1.609375 C 1.53125 -1.304688 1.421875 -1.03125 1.351562 -0.777344 C 1.304688 -0.617188 1.242188 -0.359375 1.167969 0 L 0.679688 0 C 0.792969 -0.667969 1.035156 -1.332031 1.414062 -1.992188 C 1.636719 -2.378906 1.871094 -2.714844 2.117188 -2.996094 L 0.183594 -2.996094 L 0.183594 -3.4375 Z M 2.613281 -3.4375 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-47\">\n",
"<path style=\"stroke:none;\" d=\"M 1.957031 -2.613281 L 2.441406 -2.613281 C 2.378906 -2.445312 2.242188 -2.066406 2.027344 -1.46875 C 1.867188 -1.019531 1.734375 -0.652344 1.628906 -0.367188 C 1.375 0.300781 1.195312 0.707031 1.089844 0.851562 C 0.988281 1 0.808594 1.070312 0.554688 1.070312 C 0.492188 1.070312 0.445312 1.070312 0.410156 1.0625 C 0.378906 1.058594 0.335938 1.050781 0.289062 1.039062 L 0.289062 0.636719 C 0.363281 0.65625 0.421875 0.671875 0.453125 0.675781 C 0.488281 0.679688 0.519531 0.683594 0.542969 0.683594 C 0.625 0.683594 0.6875 0.671875 0.722656 0.644531 C 0.761719 0.617188 0.792969 0.582031 0.820312 0.542969 C 0.828125 0.53125 0.859375 0.464844 0.90625 0.34375 C 0.957031 0.222656 0.996094 0.132812 1.019531 0.0742188 L 0.0507812 -2.613281 L 0.550781 -2.613281 L 1.25 -0.484375 Z M 1.957031 -2.613281 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-48\">\n",
"<path style=\"stroke:none;\" d=\"M 0.425781 -3.585938 L 3.042969 -3.585938 L 3.042969 -3.148438 L 0.902344 -3.148438 L 0.902344 -2.058594 L 2.882812 -2.058594 L 2.882812 -1.644531 L 0.902344 -1.644531 L 0.902344 -0.425781 L 3.078125 -0.425781 L 3.078125 0 L 0.425781 0 Z M 0.425781 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-49\">\n",
"<path style=\"stroke:none;\" d=\"M 0.101562 -3.585938 L 0.667969 -3.585938 L 1.699219 -1.863281 L 2.730469 -3.585938 L 3.296875 -3.585938 L 1.945312 -1.445312 L 1.945312 0 L 1.457031 0 L 1.457031 -1.445312 Z M 0.101562 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-50\">\n",
"<path style=\"stroke:none;\" d=\"M 2.140625 -1.070312 C 2.140625 -0.765625 2.097656 -0.53125 2.007812 -0.363281 C 1.839844 -0.0585938 1.523438 0.09375 1.058594 0.09375 C 0.789062 0.09375 0.5625 0.0234375 0.371094 -0.125 C 0.179688 -0.269531 0.0859375 -0.527344 0.0859375 -0.902344 L 0.0859375 -1.15625 L 0.542969 -1.15625 L 0.542969 -0.902344 C 0.542969 -0.707031 0.585938 -0.558594 0.671875 -0.460938 C 0.757812 -0.363281 0.894531 -0.3125 1.078125 -0.3125 C 1.335938 -0.3125 1.507812 -0.402344 1.585938 -0.578125 C 1.636719 -0.6875 1.660156 -0.894531 1.660156 -1.195312 L 1.660156 -3.585938 L 2.140625 -3.585938 Z M 2.140625 -1.070312 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-51\">\n",
"<path style=\"stroke:none;\" d=\"M 2.992188 -3.585938 L 2.992188 -3.160156 L 1.78125 -3.160156 L 1.78125 0 L 1.289062 0 L 1.289062 -3.160156 L 0.0820312 -3.160156 L 0.0820312 -3.585938 Z M 2.992188 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-52\">\n",
"<path style=\"stroke:none;\" d=\"M 0.539062 -2.613281 L 1.234375 -0.484375 L 1.964844 -2.613281 L 2.445312 -2.613281 L 1.460938 0 L 0.992188 0 L 0.0273438 -2.613281 Z M 0.539062 -2.613281 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-53\">\n",
"<path style=\"stroke:none;\" d=\"M 0.617188 -3.585938 L 1.292969 -0.667969 L 2.105469 -3.585938 L 2.632812 -3.585938 L 3.441406 -0.667969 L 4.117188 -3.585938 L 4.652344 -3.585938 L 3.707031 0 L 3.199219 0 L 2.371094 -2.972656 L 1.539062 0 L 1.027344 0 L 0.0898438 -3.585938 Z M 0.617188 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-54\">\n",
"<path style=\"stroke:none;\" d=\"M 1.890625 -3.683594 C 2.34375 -3.683594 2.699219 -3.5625 2.949219 -3.324219 C 3.199219 -3.085938 3.339844 -2.8125 3.367188 -2.507812 L 2.894531 -2.507812 C 2.839844 -2.742188 2.730469 -2.925781 2.570312 -3.058594 C 2.410156 -3.195312 2.1875 -3.261719 1.898438 -3.261719 C 1.542969 -3.261719 1.257812 -3.136719 1.042969 -2.890625 C 0.824219 -2.640625 0.714844 -2.261719 0.714844 -1.75 C 0.714844 -1.328125 0.8125 -0.988281 1.007812 -0.726562 C 1.203125 -0.464844 1.5 -0.335938 1.886719 -0.335938 C 2.246094 -0.335938 2.519531 -0.472656 2.703125 -0.746094 C 2.804688 -0.890625 2.878906 -1.082031 2.925781 -1.320312 L 3.402344 -1.320312 C 3.359375 -0.941406 3.21875 -0.625 2.980469 -0.367188 C 2.695312 -0.0625 2.3125 0.09375 1.828125 0.09375 C 1.410156 0.09375 1.0625 -0.0351562 0.777344 -0.285156 C 0.40625 -0.617188 0.21875 -1.132812 0.21875 -1.832031 C 0.21875 -2.359375 0.359375 -2.792969 0.640625 -3.132812 C 0.941406 -3.5 1.359375 -3.683594 1.890625 -3.683594 Z M 1.890625 -3.683594 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-55\">\n",
"<path style=\"stroke:none;\" d=\"M 0.125 -0.347656 L 1.675781 -2.222656 L 0.242188 -2.222656 L 0.242188 -2.613281 L 2.269531 -2.613281 L 2.269531 -2.257812 L 0.726562 -0.394531 L 2.3125 -0.394531 L 2.3125 0 L 0.125 0 Z M 0.125 -0.347656 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-56\">\n",
"<path style=\"stroke:none;\" d=\"M 0.761719 -3.078125 L 0.320312 -3.078125 L 0.320312 -3.585938 L 0.761719 -3.585938 Z M -0.09375 0.660156 C 0.105469 0.65625 0.222656 0.636719 0.261719 0.609375 C 0.300781 0.582031 0.320312 0.492188 0.320312 0.34375 L 0.320312 -2.601562 L 0.761719 -2.601562 L 0.761719 0.386719 C 0.761719 0.578125 0.730469 0.722656 0.667969 0.816406 C 0.566406 0.976562 0.371094 1.054688 0.0859375 1.054688 C 0.0625 1.054688 0.0429688 1.054688 0.0195312 1.050781 C -0.00390625 1.050781 -0.0429688 1.046875 -0.09375 1.042969 Z M -0.09375 0.660156 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-57\">\n",
"<path style=\"stroke:none;\" d=\"M 1.929688 -3.679688 C 2.265625 -3.679688 2.558594 -3.613281 2.804688 -3.484375 C 3.160156 -3.296875 3.378906 -2.96875 3.460938 -2.5 L 2.976562 -2.5 C 2.917969 -2.761719 2.796875 -2.953125 2.613281 -3.074219 C 2.429688 -3.191406 2.199219 -3.25 1.917969 -3.25 C 1.585938 -3.25 1.308594 -3.128906 1.082031 -2.878906 C 0.855469 -2.628906 0.738281 -2.257812 0.738281 -1.765625 C 0.738281 -1.339844 0.832031 -0.992188 1.019531 -0.722656 C 1.207031 -0.457031 1.511719 -0.320312 1.9375 -0.320312 C 2.261719 -0.320312 2.527344 -0.417969 2.742188 -0.605469 C 2.953125 -0.792969 3.0625 -1.097656 3.066406 -1.515625 L 1.945312 -1.515625 L 1.945312 -1.917969 L 3.519531 -1.917969 L 3.519531 0 L 3.207031 0 L 3.089844 -0.460938 C 2.925781 -0.28125 2.777344 -0.15625 2.652344 -0.0859375 C 2.4375 0.0351562 2.167969 0.09375 1.839844 0.09375 C 1.414062 0.09375 1.046875 -0.0429688 0.742188 -0.316406 C 0.410156 -0.664062 0.242188 -1.136719 0.242188 -1.738281 C 0.242188 -2.339844 0.40625 -2.816406 0.730469 -3.171875 C 1.039062 -3.511719 1.441406 -3.679688 1.929688 -3.679688 Z M 1.929688 -3.679688 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-58\">\n",
"<path style=\"stroke:none;\" d=\"M 0.3125 -3.585938 L 0.734375 -3.585938 L 0.734375 -1.503906 L 1.863281 -2.613281 L 2.425781 -2.613281 L 1.421875 -1.636719 L 2.480469 0 L 1.917969 0 L 1.101562 -1.320312 L 0.734375 -0.980469 L 0.734375 0 L 0.3125 0 Z M 0.3125 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-59\">\n",
"<path style=\"stroke:none;\" d=\"M 0.6875 0 L 0.101562 0 L 1.386719 -1.839844 L 0.183594 -3.585938 L 0.789062 -3.585938 L 1.707031 -2.214844 L 2.613281 -3.585938 L 3.195312 -3.585938 L 1.988281 -1.839844 L 3.25 0 L 2.648438 0 L 1.683594 -1.476562 Z M 0.6875 0 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-60\">\n",
"<path style=\"stroke:none;\" d=\"M 0.382812 -3.585938 L 0.855469 -3.585938 L 0.855469 -1.839844 L 2.601562 -3.585938 L 3.273438 -3.585938 L 1.78125 -2.140625 L 3.316406 0 L 2.683594 0 L 1.429688 -1.800781 L 0.855469 -1.25 L 0.855469 0 L 0.382812 0 Z M 0.382812 -3.585938 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-61\">\n",
"<path style=\"stroke:none;\" d=\"M 0.605469 -1.273438 C 0.605469 -1.046875 0.636719 -0.855469 0.699219 -0.703125 C 0.8125 -0.429688 1.015625 -0.296875 1.304688 -0.296875 C 1.609375 -0.296875 1.820312 -0.4375 1.9375 -0.726562 C 2 -0.882812 2.03125 -1.085938 2.03125 -1.332031 C 2.03125 -1.558594 1.996094 -1.746094 1.925781 -1.898438 C 1.808594 -2.15625 1.597656 -2.285156 1.296875 -2.285156 C 1.109375 -2.285156 0.945312 -2.203125 0.808594 -2.039062 C 0.671875 -1.871094 0.605469 -1.617188 0.605469 -1.273438 Z M 1.253906 -2.671875 C 1.472656 -2.671875 1.652344 -2.617188 1.800781 -2.507812 C 1.882812 -2.449219 1.960938 -2.363281 2.035156 -2.25 L 2.035156 -2.613281 L 2.453125 -2.613281 L 2.453125 1.042969 L 2.011719 1.042969 L 2.011719 -0.300781 C 1.9375 -0.183594 1.835938 -0.0898438 1.707031 -0.0195312 C 1.578125 0.046875 1.417969 0.0820312 1.222656 0.0820312 C 0.945312 0.0820312 0.695312 -0.0273438 0.476562 -0.242188 C 0.257812 -0.460938 0.148438 -0.792969 0.148438 -1.242188 C 0.148438 -1.660156 0.25 -2 0.457031 -2.269531 C 0.660156 -2.539062 0.929688 -2.671875 1.253906 -2.671875 Z M 1.253906 -2.671875 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-62\">\n",
"<path style=\"stroke:none;\" d=\"M 0.113281 -0.402344 L 2.3125 -3.160156 L 0.277344 -3.160156 L 0.277344 -3.585938 L 2.9375 -3.585938 L 2.9375 -3.167969 L 0.726562 -0.425781 L 2.9375 -0.425781 L 2.9375 0 L 0.113281 0 Z M 0.113281 -0.402344 \"/>\n",
"</symbol>\n",
"<symbol overflow=\"visible\" id=\"glyph0-63\">\n",
"<path style=\"stroke:none;\" d=\"M 3.664062 -0.0078125 L 3.417969 0.285156 L 2.863281 -0.136719 C 2.730469 -0.0625 2.585938 -0.00390625 2.429688 0.0390625 C 2.273438 0.0820312 2.105469 0.105469 1.921875 0.105469 C 1.363281 0.105469 0.929688 -0.078125 0.613281 -0.441406 C 0.335938 -0.796875 0.195312 -1.242188 0.195312 -1.773438 C 0.195312 -2.257812 0.316406 -2.675781 0.554688 -3.019531 C 0.867188 -3.460938 1.324219 -3.683594 1.929688 -3.683594 C 2.5625 -3.683594 3.03125 -3.480469 3.335938 -3.074219 C 3.574219 -2.757812 3.691406 -2.351562 3.691406 -1.855469 C 3.691406 -1.625 3.664062 -1.402344 3.605469 -1.1875 C 3.519531 -0.863281 3.375 -0.597656 3.167969 -0.394531 Z M 1.980469 -0.328125 C 2.082031 -0.328125 2.175781 -0.335938 2.261719 -0.351562 C 2.351562 -0.363281 2.425781 -0.390625 2.492188 -0.433594 L 2.101562 -0.738281 L 2.34375 -1.039062 L 2.8125 -0.675781 C 2.960938 -0.84375 3.0625 -1.035156 3.113281 -1.246094 C 3.167969 -1.457031 3.195312 -1.65625 3.195312 -1.847656 C 3.195312 -2.269531 3.082031 -2.609375 2.863281 -2.867188 C 2.640625 -3.125 2.339844 -3.25 1.957031 -3.25 C 1.570312 -3.25 1.265625 -3.128906 1.039062 -2.882812 C 0.8125 -2.636719 0.699219 -2.257812 0.699219 -1.742188 C 0.699219 -1.3125 0.808594 -0.96875 1.023438 -0.710938 C 1.242188 -0.457031 1.558594 -0.328125 1.980469 -0.328125 Z M 1.980469 -0.328125 \"/>\n",
"</symbol>\n",
"</g>\n",
"</defs>\n",
"<g id=\"surface17865\">\n",
"<rect x=\"0\" y=\"0\" width=\"500\" height=\"500\" style=\"fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;\"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.511719 285.0625 L 230.027344 279.527344 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 223.605469 276.429688 L 231.035156 277.441406 L 229.023438 281.613281 L 223.605469 276.429688 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.511719 285.0625 L 253.320312 279.148438 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 259.699219 275.953125 L 254.359375 281.21875 L 252.28125 277.074219 L 259.699219 275.953125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.511719 285.0625 L 247.480469 271.121094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 250.289062 264.5625 L 249.613281 272.035156 L 245.351562 270.210938 L 250.289062 264.5625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.8125 51.890625 L 272.996094 51.484375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 265.875 51.113281 L 273.117188 49.167969 L 272.875 53.796875 L 265.875 51.113281 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.8125 51.890625 L 285.3125 59.222656 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 289.042969 65.304688 L 283.335938 60.4375 L 287.289062 58.011719 L 289.042969 65.304688 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 363.722656 284.398438 L 365.433594 294.628906 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 366.613281 301.660156 L 363.148438 295.011719 L 367.722656 294.242188 L 366.613281 301.660156 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 429.511719 140.902344 L 414.320312 152.496094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.648438 156.820312 L 412.914062 150.652344 L 415.726562 154.335938 L 408.648438 156.820312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 408.203125 157.160156 C 412.398438 159.726562 415.328125 164.507812 412.566406 168.128906 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.238281 173.800781 L 410.722656 166.722656 L 414.410156 169.535156 L 408.238281 173.800781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 419.335938 180.136719 L 414.898438 177.972656 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.488281 174.847656 L 415.914062 175.886719 L 413.882812 180.054688 L 408.488281 174.847656 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 419.335938 180.136719 L 411.558594 164.082031 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.449219 157.664062 L 413.644531 163.074219 L 409.472656 165.09375 L 408.449219 157.664062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 313.859375 213.15625 L 313.585938 227.769531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 313.453125 234.902344 L 311.269531 227.726562 L 315.90625 227.8125 L 313.453125 234.902344 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 316.398438 218.183594 L 314.703125 227.878906 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 313.476562 234.902344 L 312.421875 227.476562 L 316.988281 228.277344 L 313.476562 234.902344 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.480469 20 L 251.003906 24.507812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 246.652344 30.160156 L 249.167969 23.09375 L 252.839844 25.921875 L 246.652344 30.160156 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 L 117.390625 296.464844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 123.695312 293.128906 L 118.472656 298.511719 L 116.304688 294.414062 L 123.695312 293.128906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 L 84.140625 321.363281 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 79.292969 326.59375 L 82.441406 319.785156 L 85.839844 322.9375 L 79.292969 326.59375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 99.695312 306.308594 101.832031 303.050781 100.753906 302.40625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 94.636719 298.738281 L 101.949219 300.417969 L 99.5625 304.394531 L 94.636719 298.738281 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 96.773438 303.804688 98.148438 299.542969 100.785156 299.902344 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 107.855469 300.859375 L 100.476562 302.199219 L 101.097656 297.605469 L 107.855469 300.859375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.027344 361.746094 L 95.648438 366.246094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 89.558594 369.960938 L 94.441406 364.269531 L 96.855469 368.226562 L 89.558594 369.960938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 186.96875 204.757812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 193.789062 206.847656 L 186.289062 206.972656 L 187.648438 202.542969 L 193.789062 206.847656 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.722656 372.324219 L 149.324219 368.339844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 154.109375 363.050781 L 151.042969 369.894531 L 147.605469 366.785156 L 154.109375 363.050781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 339.960938 114.027344 L 327.214844 117.789062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 320.375 119.808594 L 326.558594 115.566406 L 327.871094 120.011719 L 320.375 119.808594 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 339.960938 114.027344 L 351.378906 103.4375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 356.605469 98.585938 L 352.953125 105.136719 L 349.800781 101.738281 L 356.605469 98.585938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 155.042969 221.550781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 152.339844 228.152344 L 152.898438 220.671875 L 157.1875 222.425781 L 152.339844 228.152344 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.214844 173.207031 L 42.511719 173.597656 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 49.632812 173.980469 L 42.386719 175.910156 L 42.636719 171.28125 L 49.632812 173.980469 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.214844 173.207031 L 31.089844 179.992188 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 27.382812 186.085938 L 29.109375 178.785156 L 33.070312 181.195312 L 27.382812 186.085938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.125 250.71875 L 47.871094 249.398438 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 54.960938 248.601562 L 48.128906 251.703125 L 47.613281 247.097656 L 54.960938 248.601562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.042969 241.953125 L 48.308594 245.632812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 55.023438 248.039062 L 47.527344 247.816406 L 49.09375 243.453125 L 55.023438 248.039062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.214844 173.207031 L 35.429688 165.1875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 35.621094 158.054688 L 37.746094 165.246094 L 33.113281 165.125 L 35.621094 158.054688 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 339.960938 114.027344 C 338.828125 115.851562 335.222656 116.648438 335.15625 115.894531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 334.535156 108.789062 L 337.464844 115.695312 L 332.847656 116.097656 L 334.535156 108.789062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 339.960938 114.027344 L 353.890625 112.800781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 360.996094 112.175781 L 354.09375 115.109375 L 353.6875 110.492188 L 360.996094 112.175781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 339.960938 114.027344 L 341.542969 98.578125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 342.273438 91.484375 L 343.851562 98.816406 L 339.238281 98.34375 L 342.273438 91.484375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.125 250.71875 L 38.800781 235.769531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 40.058594 228.75 L 41.082031 236.179688 L 36.519531 235.359375 L 40.058594 228.75 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.042969 241.953125 L 38.996094 235.800781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 40.089844 228.753906 L 41.285156 236.15625 L 36.707031 235.445312 L 40.089844 228.753906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 339.960938 114.027344 L 325.90625 105.300781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 319.847656 101.535156 L 327.128906 103.332031 L 324.683594 107.269531 L 319.847656 101.535156 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 419.597656 134.117188 L 411.613281 150.265625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.453125 156.660156 L 409.535156 149.238281 L 413.691406 151.292969 L 408.453125 156.660156 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.605469 423.980469 L 174.15625 417.691406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 179.300781 412.75 L 175.761719 419.363281 L 172.550781 416.019531 L 179.300781 412.75 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.605469 423.980469 L 163.699219 431.917969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 160.546875 438.316406 L 161.621094 430.894531 L 165.777344 432.941406 L 160.546875 438.316406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 382.550781 157.320312 L 400.511719 157.210938 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 407.644531 157.164062 L 400.523438 159.527344 L 400.496094 154.890625 L 407.644531 157.164062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 389.140625 146.121094 L 401.546875 153.304688 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 407.71875 156.878906 L 400.386719 155.3125 L 402.707031 151.300781 L 407.71875 156.878906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.605469 423.980469 L 158.078125 417.722656 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 152.117188 413.804688 L 159.347656 415.785156 L 156.804688 419.65625 L 152.117188 413.804688 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 167.605469 423.980469 L 171.386719 426.644531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 177.21875 430.75 L 170.050781 428.539062 L 172.71875 424.746094 L 177.21875 430.75 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.125 250.71875 L 26.019531 244.253906 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 20.011719 240.40625 L 27.269531 242.300781 L 24.769531 246.207031 L 20.011719 240.40625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.042969 241.953125 L 27.121094 241.011719 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 20.015625 240.402344 L 27.320312 238.703125 L 26.921875 243.320312 L 20.015625 240.402344 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.125 250.71875 L 32.636719 251.523438 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 25.683594 253.121094 L 32.117188 249.265625 L 33.15625 253.78125 L 25.683594 253.121094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.042969 241.953125 L 30.722656 247.375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 24.992188 251.621094 L 29.34375 245.511719 L 32.101562 249.238281 L 24.992188 251.621094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.125 250.71875 L 29.867188 236.027344 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 27.074219 229.464844 L 32 235.121094 L 27.734375 236.9375 L 27.074219 229.464844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.042969 241.953125 L 31.792969 234.820312 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 27.09375 229.453125 L 33.535156 233.292969 L 30.050781 236.347656 L 27.09375 229.453125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 127.738281 79.449219 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 132.871094 74.5 L 129.34375 81.117188 L 126.128906 77.78125 L 132.871094 74.5 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.125 250.71875 L 45.144531 242.519531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 50.421875 237.722656 L 46.703125 244.234375 L 43.585938 240.804688 L 50.421875 237.722656 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.042969 241.953125 L 43.351562 239.714844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 49.921875 236.941406 L 44.25 241.851562 L 42.449219 237.578125 L 49.921875 236.941406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.125 250.71875 C 37.359375 253.425781 35.109375 255.367188 34.601562 257.6875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 36.125 250.71875 L 36.863281 258.183594 L 32.335938 257.191406 L 36.125 250.71875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.664062 196.546875 C 147.664062 232.011719 118.914062 260.761719 83.449219 260.761719 C 47.984375 260.761719 19.234375 232.011719 19.234375 196.546875 C 19.234375 161.082031 47.984375 132.332031 83.449219 132.332031 C 118.914062 132.332031 147.664062 161.082031 147.664062 196.546875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.125 250.71875 L 42.566406 255.171875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 48.4375 259.226562 L 41.25 257.078125 L 43.886719 253.265625 L 48.4375 259.226562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.042969 241.953125 L 44.773438 253.097656 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 48.460938 259.203125 L 42.789062 254.296875 L 46.757812 251.902344 L 48.460938 259.203125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 C 108.625 92.421875 104.3125 90.167969 101.828125 92.703125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 96.835938 97.796875 L 100.171875 91.082031 L 103.484375 94.324219 L 96.835938 97.796875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 336.613281 392.589844 L 337.960938 389.730469 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 340.996094 383.273438 L 340.058594 390.714844 L 335.863281 388.742188 L 340.996094 383.273438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.042969 241.953125 C 37.273438 239.363281 39.746094 237.820312 40.292969 235.871094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 38.363281 242.738281 L 38.0625 235.246094 L 42.523438 236.496094 L 38.363281 242.738281 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 249.640625 113.914062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 255.21875 109.46875 L 251.082031 115.726562 L 248.195312 112.101562 L 255.21875 109.46875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 140.078125 209.019531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 133.570312 211.949219 L 139.125 206.90625 L 141.027344 211.132812 L 133.570312 211.949219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 153.726562 192.53125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 147.324219 189.386719 L 154.75 190.453125 L 152.703125 194.613281 L 147.324219 189.386719 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.363281 406.382812 L 242.546875 408.628906 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 249.542969 410.035156 L 242.09375 410.902344 L 243.003906 406.355469 L 249.542969 410.035156 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 140.886719 189.621094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 134.152344 187.273438 L 141.648438 187.433594 L 140.125 191.8125 L 134.152344 187.273438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 408.203125 157.160156 L 425.464844 165.332031 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 431.910156 168.382812 L 424.472656 167.425781 L 426.457031 163.238281 L 431.910156 168.382812 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 416.09375 163.621094 C 417.515625 161.578125 417.5625 157.765625 415.878906 157.65625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.761719 157.195312 L 416.03125 155.34375 L 415.730469 159.96875 L 408.761719 157.195312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.027344 361.746094 L 105.015625 352.757812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 106.558594 345.792969 L 107.28125 353.257812 L 102.753906 352.257812 L 106.558594 345.792969 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 453.269531 222.746094 L 449.078125 218.640625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 443.980469 213.652344 L 450.699219 216.984375 L 447.457031 220.296875 L 443.980469 213.652344 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.101562 356.125 L 254.246094 360.265625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 259.800781 364.742188 L 252.789062 362.070312 L 255.699219 358.460938 L 259.800781 364.742188 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.363281 406.382812 L 239.632812 397.808594 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 244.585938 392.675781 L 241.300781 399.417969 L 237.964844 396.199219 L 244.585938 392.675781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.363281 406.382812 L 234.597656 417.0625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 236.664062 423.886719 L 232.378906 417.734375 L 236.816406 416.390625 L 236.664062 423.886719 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.363281 406.382812 L 220.296875 404.121094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 213.304688 402.695312 L 220.757812 401.851562 L 219.832031 406.390625 L 213.304688 402.695312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.363281 406.382812 L 225.523438 412.855469 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 220.746094 418.152344 L 223.800781 411.304688 L 227.246094 414.40625 L 220.746094 418.152344 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 231.363281 406.382812 L 228.332031 395.617188 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 226.398438 388.75 L 230.5625 394.988281 L 226.101562 396.246094 L 226.398438 388.75 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 99.585938 309.488281 103.808594 310.976562 105.125 308.660156 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 108.648438 302.457031 L 107.140625 309.804688 L 103.109375 307.515625 L 108.648438 302.457031 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.832031 365.960938 L 56.128906 370.257812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 58.1875 377.085938 L 53.910156 370.929688 L 58.347656 369.589844 L 58.1875 377.085938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 363.722656 284.398438 L 367.4375 272.082031 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 369.496094 265.253906 L 369.65625 272.75 L 365.21875 271.414062 L 369.496094 265.253906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 424.46875 98.546875 L 418.777344 96.945312 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 411.910156 95.011719 L 419.40625 94.714844 L 418.148438 99.175781 L 411.910156 95.011719 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.480469 317.570312 L 185.65625 306.847656 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 180.375 302.054688 L 187.214844 305.128906 L 184.101562 308.5625 L 180.375 302.054688 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 208.089844 472.007812 L 213.402344 473.644531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 220.21875 475.746094 L 212.722656 475.859375 L 214.085938 471.429688 L 220.21875 475.746094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 383.957031 170.332031 L 401.445312 160.832031 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 407.710938 157.429688 L 402.550781 162.871094 L 400.335938 158.796875 L 407.710938 157.429688 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.800781 454.585938 L 240.789062 454.980469 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 247.910156 455.449219 L 240.636719 457.292969 L 240.941406 452.667969 L 247.910156 455.449219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 384.484375 72.40625 C 381.894531 73.820312 377.773438 73.714844 377.472656 71.394531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 376.554688 64.320312 L 379.773438 71.097656 L 375.175781 71.695312 L 376.554688 64.320312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.714844 347.789062 L 120.289062 345.246094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 113.828125 342.21875 L 121.269531 343.148438 L 119.304688 347.34375 L 113.828125 342.21875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 384.484375 72.40625 L 389.871094 75.15625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 396.222656 78.398438 L 388.816406 77.21875 L 390.925781 73.089844 L 396.222656 78.398438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.042969 400.59375 L 76.109375 399.902344 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 83.066406 398.328125 L 76.617188 402.164062 L 75.597656 397.640625 L 83.066406 398.328125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 381.507812 228.660156 L 378 223.6875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 373.890625 217.859375 L 379.894531 222.351562 L 376.105469 225.023438 L 373.890625 217.859375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 314.179688 352.300781 C 316.761719 351.660156 317.796875 349.210938 319.605469 347.667969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 314.179688 352.300781 L 318.101562 345.90625 L 321.109375 349.429688 L 314.179688 352.300781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 314.179688 352.300781 C 315.21875 349.851562 317.796875 349.210938 319.605469 347.667969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 314.179688 352.300781 L 318.101562 345.90625 L 321.109375 349.429688 L 314.179688 352.300781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 314.179688 352.300781 C 317.53125 352.5625 317.796875 349.210938 319.605469 347.667969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 314.179688 352.300781 L 318.101562 345.90625 L 321.109375 349.429688 L 314.179688 352.300781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 314.179688 352.300781 C 314.445312 348.945312 317.796875 349.210938 319.605469 347.667969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 314.179688 352.300781 L 318.101562 345.90625 L 321.109375 349.429688 L 314.179688 352.300781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 309.050781 374.367188 L 310.703125 385.609375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 309.664062 378.554688 L 312.996094 385.273438 L 308.410156 385.949219 L 309.664062 378.554688 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 314.179688 352.300781 L 327.460938 340.960938 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 322.039062 345.589844 L 325.957031 339.195312 L 328.96875 342.722656 L 322.039062 345.589844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.804688 359.703125 L 279.542969 360.335938 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 286.660156 359.894531 L 279.683594 362.648438 L 279.398438 358.023438 L 286.660156 359.894531 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.535156 119.519531 L 62.53125 123.34375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 64.328125 130.246094 L 60.289062 123.929688 L 64.773438 122.757812 L 64.328125 130.246094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.390625 118.292969 L 70.71875 126.378906 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 64.855469 130.441406 L 69.398438 124.472656 L 72.035156 128.285156 L 64.855469 130.441406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.445312 341.816406 C 40.445312 344.664062 36.175781 344.664062 36.175781 341.816406 C 36.175781 338.96875 40.445312 338.96875 40.445312 341.816406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.800781 330.050781 L 32.808594 335.757812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 36.136719 342.066406 L 30.757812 336.835938 L 34.859375 334.675781 L 36.136719 342.066406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 463.851562 155.800781 L 464.898438 162.316406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 466.027344 169.359375 L 462.609375 162.683594 L 467.1875 161.949219 L 466.027344 169.359375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 319.585938 201.8125 C 321.863281 204.335938 322.90625 208.644531 320.320312 209.933594 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 313.9375 213.117188 L 319.285156 207.859375 L 321.355469 212.007812 L 313.9375 213.117188 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 316.398438 218.183594 C 318.148438 218.566406 320.257812 216.367188 320.3125 216.394531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 313.9375 213.195312 L 321.351562 214.324219 L 319.269531 218.464844 L 313.9375 213.195312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 314.078125 213.066406 C 314.078125 213.234375 313.824219 213.234375 313.824219 213.066406 C 313.824219 212.898438 314.078125 212.898438 314.078125 213.066406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.238281 465.980469 L 177.574219 465.4375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 170.476562 464.753906 L 177.796875 463.128906 L 177.355469 467.742188 L 170.476562 464.753906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.390625 118.292969 L 73.207031 118.832031 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 66.085938 119.25 L 73.070312 116.519531 L 73.339844 121.144531 L 66.085938 119.25 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.480469 317.570312 L 204.996094 330.546875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 208.566406 336.722656 L 202.988281 331.710938 L 207 329.386719 L 208.566406 336.722656 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 408.203125 157.160156 C 403.871094 159.492188 400.683594 164.105469 403.242188 167.871094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 407.25 173.773438 L 401.324219 169.175781 L 405.160156 166.570312 L 407.25 173.773438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 395.851562 177.996094 L 400.074219 176.742188 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 406.914062 174.714844 L 400.734375 178.964844 L 399.414062 174.523438 L 406.914062 174.714844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 395.851562 177.996094 L 404.28125 163.777344 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 407.917969 157.644531 L 406.273438 164.960938 L 402.289062 162.597656 L 407.917969 157.644531 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 238.875 142.382812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 244.625 146.601562 L 237.503906 144.25 L 240.246094 140.515625 L 244.625 146.601562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.480469 317.570312 L 216.554688 303.71875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 222.328125 299.527344 L 217.917969 305.59375 L 215.191406 301.84375 L 222.328125 299.527344 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.480469 317.570312 L 194.738281 331.394531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 193.347656 338.390625 L 192.464844 330.945312 L 197.011719 331.847656 L 193.347656 338.390625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.480469 317.570312 L 209.066406 321.496094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 215.824219 323.785156 L 208.324219 323.691406 L 209.8125 319.300781 L 215.824219 323.785156 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.800781 343.324219 L 39.003906 338.566406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 42 332.089844 L 41.109375 339.539062 L 36.902344 337.589844 L 42 332.089844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.800781 330.050781 L 34.507812 330.578125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 41.597656 331.375 L 34.25 332.882812 L 34.769531 328.273438 L 41.597656 331.375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 361.171875 342.105469 C 361.171875 345.640625 355.863281 345.640625 355.863281 342.105469 C 355.863281 338.570312 361.171875 338.570312 361.171875 342.105469 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 368.605469 345.582031 C 367.953125 348.296875 364.972656 351.175781 363.441406 349.851562 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 358.042969 345.1875 L 364.953125 348.097656 L 361.925781 351.605469 L 358.042969 345.1875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 345.101562 340.519531 C 346.167969 337.945312 349.554688 335.570312 350.855469 337.113281 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 355.449219 342.566406 L 349.082031 338.605469 L 352.625 335.621094 L 355.449219 342.566406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.480469 317.570312 L 182.625 316.808594 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 175.5 316.445312 L 182.742188 314.496094 L 182.503906 319.125 L 175.5 316.445312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 336.613281 392.589844 L 333.859375 398.210938 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 330.722656 404.617188 L 331.777344 397.195312 L 335.941406 399.230469 L 330.722656 404.617188 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.480469 317.570312 L 196.273438 305.628906 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 195.554688 298.53125 L 198.578125 305.394531 L 193.964844 305.863281 L 195.554688 298.53125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.632812 397.992188 L 152.582031 405.617188 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 151.605469 412.683594 L 150.285156 405.300781 L 154.875 405.933594 L 151.605469 412.683594 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 104.113281 305.710938 109.546875 301.34375 108.378906 294.886719 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 107.109375 287.867188 L 110.660156 294.476562 L 106.097656 295.300781 L 107.109375 287.867188 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 319.585938 201.8125 L 321.597656 201.285156 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 328.496094 199.480469 L 322.183594 203.527344 L 321.011719 199.042969 L 328.496094 199.480469 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 316.398438 218.183594 L 324.808594 205.839844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 328.824219 199.945312 L 326.722656 207.144531 L 322.894531 204.535156 L 328.824219 199.945312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 313.859375 213.15625 L 323.378906 204.589844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 328.679688 199.816406 L 324.929688 206.3125 L 321.828125 202.867188 L 328.679688 199.816406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 477.738281 233.957031 L 475.515625 239.167969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 472.71875 245.730469 L 473.382812 238.261719 L 477.648438 240.078125 L 472.71875 245.730469 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 122.910156 96.132812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 130.039062 96.394531 L 122.824219 98.449219 L 122.996094 93.816406 L 130.039062 96.394531 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 313.859375 213.15625 L 324.296875 223.882812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 329.269531 228.996094 L 322.636719 225.5 L 325.957031 222.265625 L 329.269531 228.996094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 316.398438 218.183594 L 323.808594 224.40625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 329.269531 228.996094 L 322.316406 226.183594 L 325.300781 222.632812 L 329.269531 228.996094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 197.480469 317.570312 L 185.644531 326.546875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 179.960938 330.855469 L 184.246094 324.699219 L 187.046875 328.394531 L 179.960938 330.855469 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 313.859375 213.15625 L 304.574219 222.835938 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 299.636719 227.984375 L 302.902344 221.230469 L 306.246094 224.441406 L 299.636719 227.984375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 316.398438 218.183594 L 305.792969 224.382812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 299.636719 227.984375 L 304.625 222.382812 L 306.964844 226.382812 L 299.636719 227.984375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 313.859375 213.15625 L 303.730469 213.300781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 296.597656 213.40625 L 303.695312 210.984375 L 303.761719 215.621094 L 296.597656 213.40625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 316.398438 218.183594 L 303.523438 215.226562 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 296.574219 213.628906 L 304.042969 212.96875 L 303.007812 217.484375 L 296.574219 213.628906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 316.398438 218.183594 C 315.667969 219.816406 312.648438 220.210938 312.640625 220.269531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 313.847656 213.238281 L 314.925781 220.660156 L 310.355469 219.875 L 313.847656 213.238281 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 319.585938 201.8125 L 313.949219 200.308594 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 307.054688 198.472656 L 314.546875 198.070312 L 313.351562 202.546875 L 307.054688 198.472656 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 316.398438 218.183594 L 310.105469 204.929688 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 307.042969 198.488281 L 312.195312 203.9375 L 308.011719 205.925781 L 307.042969 198.488281 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 313.859375 213.15625 L 310.050781 204.957031 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 307.042969 198.488281 L 312.152344 203.980469 L 307.949219 205.933594 L 307.042969 198.488281 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 319.585938 201.8125 L 326.78125 207.441406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 332.398438 211.839844 L 325.351562 209.265625 L 328.207031 205.617188 L 332.398438 211.839844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 316.398438 218.183594 L 325.726562 214.5625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 332.375 211.980469 L 326.566406 216.722656 L 324.886719 212.402344 L 332.375 211.980469 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 313.859375 213.15625 L 325.25 212.40625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 332.367188 211.9375 L 325.402344 214.71875 L 325.097656 210.09375 L 332.367188 211.9375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 316.398438 218.183594 L 318.203125 208.914062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 319.566406 201.910156 L 320.480469 209.355469 L 315.929688 208.46875 L 319.566406 201.910156 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 313.859375 213.15625 C 311.582031 210.636719 310.53125 206.332031 313.113281 205.042969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 319.492188 201.855469 L 314.148438 207.117188 L 312.078125 202.96875 L 319.492188 201.855469 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 405.699219 197.429688 L 407.023438 182.425781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 407.652344 175.320312 L 409.332031 182.628906 L 404.714844 182.21875 L 407.652344 175.320312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 432.734375 153.246094 L 415.800781 155.949219 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.757812 157.074219 L 415.433594 153.660156 L 416.164062 158.238281 L 408.757812 157.074219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 363.722656 284.398438 L 357.035156 274.890625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 352.933594 269.054688 L 358.933594 273.554688 L 355.140625 276.222656 L 352.933594 269.054688 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 339.960938 114.027344 L 331.683594 127.53125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 327.957031 133.609375 L 329.707031 126.320312 L 333.660156 128.742188 L 327.957031 133.609375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.390625 118.292969 L 80.367188 134.921875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 79.503906 142 L 78.066406 134.640625 L 82.667969 135.199219 L 79.503906 142 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.6875 275.792969 L 32.796875 275.035156 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 25.792969 273.671875 L 33.238281 272.761719 L 32.351562 277.308594 L 25.792969 273.671875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.109375 290.171875 L 26.699219 280.882812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 25.632812 273.828125 L 28.992188 280.535156 L 24.410156 281.230469 L 25.632812 273.828125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.125 250.71875 L 28.660156 266.972656 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 25.683594 273.457031 L 26.554688 266.007812 L 30.765625 267.941406 L 25.683594 273.457031 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 92.488281 99.4375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 85.496094 100.859375 L 92.023438 97.167969 L 92.949219 101.707031 L 85.496094 100.859375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.699219 97.9375 L 92.398438 99.050781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 85.492188 100.835938 L 91.816406 96.804688 L 92.976562 101.292969 L 85.492188 100.835938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.390625 118.292969 L 83.863281 108.515625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 84.925781 101.460938 L 86.15625 108.859375 L 81.570312 108.167969 L 84.925781 101.460938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 95.769531 308.699219 91.894531 309.105469 91.816406 307.851562 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 91.359375 300.734375 L 94.128906 307.707031 L 89.5 308 L 91.359375 300.734375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 L 101.585938 304.960938 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 107.980469 301.792969 L 102.617188 307.035156 L 100.558594 302.882812 L 107.980469 301.792969 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 100.984375 105.886719 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 96.015625 111 L 99.324219 104.269531 L 102.648438 107.503906 L 96.015625 111 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.699219 97.9375 L 96.242188 103.738281 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 95.679688 110.851562 L 93.929688 103.558594 L 98.550781 103.921875 L 95.679688 110.851562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.390625 118.292969 L 88.835938 114.933594 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 95.160156 111.636719 L 89.90625 116.988281 L 87.765625 112.875 L 95.160156 111.636719 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.699219 97.9375 C 96.625 100.523438 98.980469 103.902344 100.277344 103.007812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 106.152344 98.960938 L 101.59375 104.917969 L 98.964844 101.101562 L 106.152344 98.960938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.390625 118.292969 L 100.652344 103.8125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 106.242188 99.382812 L 102.09375 105.628906 L 99.210938 101.996094 L 106.242188 99.382812 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 363.722656 284.398438 L 374.582031 279.90625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 381.171875 277.175781 L 375.46875 282.046875 L 373.695312 277.761719 L 381.171875 277.175781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 125.726562 105.546875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 131.664062 109.5 L 124.441406 107.476562 L 127.007812 103.617188 L 131.664062 109.5 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 423.265625 247.53125 L 432.589844 248.289062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 439.699219 248.863281 L 432.402344 250.597656 L 432.777344 245.976562 L 439.699219 248.863281 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.109375 290.171875 L 33.003906 281.96875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 36.65625 275.839844 L 34.992188 283.15625 L 31.011719 280.78125 L 36.65625 275.839844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.125 250.71875 L 36.523438 268.601562 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 36.683594 275.734375 L 34.207031 268.65625 L 38.84375 268.550781 L 36.683594 275.734375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 363.722656 284.398438 L 355.34375 293.902344 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 350.628906 299.253906 L 353.605469 292.371094 L 357.085938 295.4375 L 350.628906 299.253906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 363.722656 284.398438 L 355.230469 283.933594 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 348.109375 283.539062 L 355.359375 281.617188 L 355.101562 286.246094 L 348.109375 283.539062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 423.265625 247.53125 L 422.117188 238.839844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 421.183594 231.769531 L 424.414062 238.539062 L 419.820312 239.144531 L 421.183594 231.769531 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.144531 89.375 C 126.144531 94.304688 122.148438 98.300781 117.21875 98.300781 C 112.289062 98.300781 108.289062 94.304688 108.289062 89.375 C 108.289062 84.445312 112.289062 80.445312 117.21875 80.445312 C 122.148438 80.445312 126.144531 84.445312 126.144531 89.375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 384.484375 72.40625 C 386 69.871094 386.050781 65.746094 383.746094 65.359375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 376.710938 64.171875 L 384.128906 63.074219 L 383.359375 67.644531 L 376.710938 64.171875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 363.722656 284.398438 L 374.15625 290.179688 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 380.398438 293.632812 L 373.035156 292.207031 L 375.28125 288.152344 L 380.398438 293.632812 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 102.40625 302.480469 109.070312 300.738281 113.511719 305.46875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 118.394531 310.667969 L 111.824219 307.054688 L 115.203125 303.882812 L 118.394531 310.667969 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 102.757812 306.214844 108.332031 308.089844 108.808594 313.144531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 109.480469 320.246094 L 106.503906 313.363281 L 111.117188 312.925781 L 109.480469 320.246094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 97.222656 300.054688 93.730469 293.890625 87.007812 293.957031 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 79.875 294.027344 L 86.984375 291.636719 L 87.03125 296.273438 L 79.875 294.027344 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 92.671875 304.859375 86.902344 305.136719 85.1875 309.734375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 82.691406 316.417969 L 83.015625 308.921875 L 87.359375 310.546875 L 82.691406 316.417969 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 93.523438 301.570312 87.339844 298.460938 82.082031 302.191406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 76.261719 306.316406 L 80.742188 300.300781 L 83.421875 304.082031 L 76.261719 306.316406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 92.734375 308.832031 88.917969 313.101562 91.023438 317.273438 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 94.238281 323.640625 L 88.957031 318.320312 L 93.09375 316.230469 L 94.238281 323.640625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 368.605469 345.582031 C 368.6875 342.792969 366.570312 339.234375 364.746094 340.105469 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 358.308594 343.183594 L 363.746094 338.015625 L 365.746094 342.199219 L 358.308594 343.183594 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 345.101562 340.519531 C 344.574219 343.253906 346.09375 347.097656 348.027344 346.527344 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 354.867188 344.503906 L 348.683594 348.75 L 347.371094 344.304688 L 354.867188 344.503906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 101.867188 304.820312 105.417969 299.984375 102.785156 296.421875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 98.546875 290.683594 L 104.648438 295.046875 L 100.917969 297.800781 L 98.546875 290.683594 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 339.960938 114.027344 C 342.105469 114.097656 344.777344 111.546875 344.1875 111.074219 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 338.628906 106.605469 L 345.640625 109.269531 L 342.734375 112.882812 L 338.628906 106.605469 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 117.324219 110.476562 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 120.160156 117.019531 L 115.195312 111.398438 L 119.449219 109.554688 L 120.160156 117.019531 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 220.53125 119.449219 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 217.886719 112.824219 L 222.683594 118.589844 L 218.378906 120.308594 L 217.886719 112.824219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.167969 32.40625 L 200.050781 29.503906 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 206.183594 25.859375 L 201.238281 31.496094 L 198.867188 27.511719 L 206.183594 25.859375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.214844 41.027344 L 203.210938 32.347656 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 206.191406 25.867188 L 205.316406 33.316406 L 201.105469 31.378906 L 206.191406 25.867188 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.890625 39.148438 L 200.800781 30.539062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 206.183594 25.863281 L 202.320312 32.289062 L 199.28125 28.789062 L 206.183594 25.863281 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 407.769531 132.09375 L 408.070312 149.46875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.195312 156.601562 L 405.753906 149.507812 L 410.386719 149.429688 L 408.195312 156.601562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.8125 51.890625 L 282.789062 43.335938 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 284.394531 36.386719 L 285.046875 43.855469 L 280.53125 42.8125 L 284.394531 36.386719 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 286.214844 22.53125 L 285.359375 29.070312 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 284.4375 36.144531 L 283.0625 28.773438 L 287.660156 29.371094 L 284.4375 36.144531 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 199.335938 161.023438 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 194.445312 166.214844 L 197.648438 159.433594 L 201.023438 162.609375 L 194.445312 166.214844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 189.125 171.890625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 194 166.6875 L 190.8125 173.476562 L 187.433594 170.304688 L 194 166.6875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 109.765625 74.308594 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 109.386719 67.1875 L 112.082031 74.1875 L 107.453125 74.433594 L 109.386719 67.1875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.167969 32.40625 L 188.816406 30.792969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 181.902344 29.039062 L 189.386719 28.546875 L 188.246094 33.042969 L 181.902344 29.039062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.214844 41.027344 L 187.753906 33.136719 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 181.878906 29.09375 L 189.066406 31.230469 L 186.4375 35.046875 L 181.878906 29.09375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.890625 39.148438 L 186.628906 34.421875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 181.851562 29.125 L 188.347656 32.867188 L 184.90625 35.972656 L 181.851562 29.125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 423.265625 247.53125 L 414.039062 247.34375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 406.910156 247.199219 L 414.085938 245.027344 L 413.992188 249.660156 L 406.910156 247.199219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.007812 376.054688 L 192.109375 376.277344 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 184.996094 376.820312 L 191.929688 373.964844 L 192.285156 378.585938 L 184.996094 376.820312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 423.265625 247.53125 L 423.113281 256.539062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 422.996094 263.671875 L 420.796875 256.5 L 425.433594 256.578125 L 422.996094 263.671875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.167969 32.40625 L 204.90625 36.441406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 211.496094 39.171875 L 204.019531 38.582031 L 205.792969 34.300781 L 211.496094 39.171875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.214844 41.027344 L 204.410156 40.3125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 211.476562 39.335938 L 204.726562 42.605469 L 204.09375 38.015625 L 211.476562 39.335938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.890625 39.148438 L 204.339844 39.242188 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 211.472656 39.289062 L 204.324219 41.558594 L 204.355469 36.921875 L 211.472656 39.289062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 109.082031 111.597656 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 108.273438 118.683594 L 106.78125 111.335938 L 111.386719 111.863281 L 108.273438 118.683594 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 239.824219 157.894531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 243.292969 164.128906 L 237.796875 159.023438 L 241.847656 156.769531 L 243.292969 164.128906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.167969 32.40625 L 188.597656 37.167969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 182.820312 41.351562 L 187.238281 35.289062 L 189.957031 39.042969 L 182.820312 41.351562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.214844 41.027344 L 190.664062 42.261719 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 183.601562 43.277344 L 190.332031 39.96875 L 190.992188 44.554688 L 183.601562 43.277344 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.890625 39.148438 L 189.921875 39.542969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 183.324219 42.25 L 189.042969 37.398438 L 190.800781 41.6875 L 183.324219 42.25 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 C 114.214844 93.980469 116.925781 90.066406 114.804688 87.644531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 110.109375 82.273438 L 116.550781 86.117188 L 113.0625 89.171875 L 110.109375 82.273438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.164062 80.324219 C 112.164062 82.480469 108.929688 82.480469 108.929688 80.324219 C 108.929688 78.167969 112.164062 78.167969 112.164062 80.324219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 248.660156 152.035156 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 254.117188 156.628906 L 247.167969 153.808594 L 250.152344 150.261719 L 254.117188 156.628906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 229.160156 146.027344 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 230.882812 152.949219 L 226.910156 146.589844 L 231.40625 145.46875 L 230.882812 152.949219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 474.339844 204.84375 L 470.023438 200.621094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 464.929688 195.628906 L 471.648438 198.964844 L 468.402344 202.273438 L 464.929688 195.628906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.476562 421.011719 L 277.257812 427.589844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 277.019531 434.71875 L 274.941406 427.511719 L 279.574219 427.664062 L 277.019531 434.71875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 274.699219 448.300781 L 275.808594 441.835938 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 277.011719 434.804688 L 278.089844 442.230469 L 273.523438 441.445312 L 277.011719 434.804688 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 238.03125 123.519531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 243.6875 119.175781 L 239.441406 125.359375 L 236.617188 121.679688 L 243.6875 119.175781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 200.152344 130.714844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 193.042969 130.121094 L 200.34375 128.402344 L 199.960938 133.023438 L 193.042969 130.121094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 228.664062 158.941406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 229.421875 166.03125 L 226.359375 159.1875 L 230.96875 158.695312 L 229.421875 166.03125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.167969 32.40625 L 194.03125 44.273438 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 193.347656 51.375 L 191.722656 44.050781 L 196.335938 44.496094 L 193.347656 51.375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.214844 41.027344 L 197.074219 45.167969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 193.792969 51.503906 L 195.015625 44.105469 L 199.132812 46.234375 L 193.792969 51.503906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.890625 39.148438 L 191.800781 44.359375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 193.023438 51.386719 L 189.515625 44.757812 L 194.082031 43.960938 L 193.023438 51.386719 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 242.027344 107.75 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 245.886719 101.75 L 243.976562 109.003906 L 240.078125 106.496094 L 245.886719 101.75 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 199.214844 41.027344 L 200.3125 43.371094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 197.28125 36.914062 L 202.410156 42.386719 L 198.214844 44.355469 L 197.28125 36.914062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.890625 39.148438 L 188.679688 42.632812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 192.503906 36.609375 L 190.636719 43.875 L 186.722656 41.390625 L 192.503906 36.609375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 200.566406 120.144531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 194.191406 116.941406 L 201.605469 118.070312 L 199.527344 122.214844 L 194.191406 116.941406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 213.40625 105.777344 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 210.421875 99.300781 L 215.511719 104.808594 L 211.300781 106.746094 L 210.421875 99.300781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 213.667969 126.683594 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 207.300781 123.46875 L 214.710938 124.617188 L 212.621094 128.753906 L 207.300781 123.46875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 253.75 122.894531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 260.46875 120.496094 L 254.53125 125.078125 L 252.972656 120.714844 L 260.46875 120.496094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 184.566406 215.164062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 189.957031 219.839844 L 183.050781 216.914062 L 186.085938 213.414062 L 189.957031 219.839844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 193.753906 156.195312 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 187.984375 160.386719 L 192.390625 154.320312 L 195.117188 158.070312 L 187.984375 160.386719 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 161 211.128906 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 159.070312 217.996094 L 158.769531 210.503906 L 163.230469 211.757812 L 159.070312 217.996094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 339.960938 114.027344 L 341.375 130.210938 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 341.992188 137.316406 L 339.0625 130.414062 L 343.683594 130.007812 L 341.992188 137.316406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 175.265625 196.824219 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 182.359375 196.078125 L 175.507812 199.128906 L 175.023438 194.519531 L 182.359375 196.078125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 333.753906 44.40625 L 323.410156 49.5625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 317.027344 52.742188 L 322.378906 47.488281 L 324.445312 51.636719 L 317.027344 52.742188 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 329.5625 50.957031 L 324.125 51.800781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 317.078125 52.898438 L 323.769531 49.511719 L 324.480469 54.089844 L 317.078125 52.898438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 145.882812 180.570312 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 140.640625 175.738281 L 147.453125 178.867188 L 144.3125 182.277344 L 140.640625 175.738281 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 333.753906 44.40625 C 330.964844 47.214844 329.527344 51.824219 332.445312 53.8125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 338.34375 57.828125 L 331.140625 55.730469 L 333.75 51.898438 L 338.34375 57.828125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 329.5625 50.957031 C 331.867188 49.21875 335.898438 48.75 336.488281 50.941406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 338.34375 57.828125 L 334.25 51.542969 L 338.726562 50.335938 L 338.34375 57.828125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 329.5625 50.957031 C 329.785156 53.921875 327 54.960938 325.722656 56.964844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 329.5625 50.957031 L 327.671875 58.214844 L 323.769531 55.714844 L 329.5625 50.957031 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 254.144531 132.75 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 261.277344 132.722656 L 254.152344 135.066406 L 254.136719 130.429688 L 261.277344 132.722656 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 230.5625 117.136719 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 232.601562 110.300781 L 232.785156 117.800781 L 228.34375 116.476562 L 232.601562 110.300781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 L 96.980469 306.273438 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 93.269531 300.183594 L 98.960938 305.066406 L 95.003906 307.480469 L 93.269531 300.183594 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 94.410156 300.917969 94.578125 293.949219 100.414062 290.953125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 106.757812 287.695312 L 101.472656 293.015625 L 99.355469 288.890625 L 106.757812 287.695312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 156.070312 178.019531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 153.230469 171.476562 L 158.195312 177.097656 L 153.941406 178.941406 L 153.230469 171.476562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 206.636719 112.671875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 201.714844 107.507812 L 208.3125 111.070312 L 204.960938 114.269531 L 201.714844 107.507812 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 223.148438 104.746094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 222.457031 97.648438 L 225.453125 104.523438 L 220.839844 104.972656 L 222.457031 97.648438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 204.578125 166.207031 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 200.742188 172.21875 L 202.625 164.957031 L 206.53125 167.453125 L 200.742188 172.21875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 239.652344 132.667969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 246.785156 132.574219 L 239.679688 134.984375 L 239.621094 130.351562 L 246.785156 132.574219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 232.980469 102.925781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 234.628906 95.984375 L 235.238281 103.460938 L 230.726562 102.390625 L 234.628906 95.984375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.5 142.046875 L 77.503906 150.925781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 75.945312 157.886719 L 75.246094 150.417969 L 79.765625 151.433594 L 75.945312 157.886719 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 138.558594 199.015625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 131.433594 199.308594 L 138.464844 196.699219 L 138.65625 201.332031 L 131.433594 199.308594 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 221.132812 141.300781 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 217.636719 147.523438 L 219.109375 140.167969 L 223.152344 142.4375 L 217.636719 147.523438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 252.902344 142.453125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 259.621094 144.839844 L 252.125 144.636719 L 253.675781 140.269531 L 259.621094 144.839844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 225.878906 132.847656 L 211.175781 137.140625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 204.328125 139.136719 L 210.527344 134.914062 L 211.824219 139.363281 L 204.328125 139.136719 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 416.09375 163.621094 C 414.371094 165.417969 410.640625 166.214844 410.203125 164.589844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.347656 157.703125 L 412.441406 163.988281 L 407.964844 165.191406 L 408.347656 157.703125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 170.863281 206.75 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 174.945312 212.601562 L 168.960938 208.078125 L 172.761719 205.425781 L 174.945312 212.601562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 164.578125 186.078125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 164.5 178.949219 L 166.898438 186.054688 L 162.261719 186.105469 L 164.5 178.949219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 146.011719 217.363281 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 141.0625 222.503906 L 144.339844 215.757812 L 147.679688 218.972656 L 141.0625 222.503906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 165.214844 224.804688 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 165.347656 231.9375 L 162.894531 224.847656 L 167.53125 224.761719 L 165.347656 231.9375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 194.816406 176.480469 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 200.625 172.339844 L 196.160156 178.367188 L 193.46875 174.59375 L 200.625 172.339844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 152.597656 203.789062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 146.175781 206.890625 L 151.589844 201.699219 L 153.609375 205.875 L 146.175781 206.890625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 184.007812 166.699219 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 187.757812 160.632812 L 185.980469 167.917969 L 182.039062 165.480469 L 187.757812 160.632812 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.710938 197.933594 L 174.964844 221.070312 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 177.855469 227.59375 L 172.847656 222.011719 L 177.085938 220.132812 L 177.855469 227.59375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.773438 304.703125 L 293.109375 293.324219 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 295.648438 286.660156 L 295.277344 294.148438 L 290.945312 292.5 L 295.648438 286.660156 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 100.558594 312.976562 106.222656 316.890625 112.015625 313.964844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 118.382812 310.75 L 113.0625 316.035156 L 110.96875 311.898438 L 118.382812 310.75 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 96.113281 312.234375 97.425781 317.96875 102.410156 318.941406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 109.410156 320.308594 L 101.964844 321.214844 L 102.855469 316.667969 L 109.410156 320.308594 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 90.75 308.972656 83.808594 307.5625 81.785156 301.148438 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 79.644531 294.347656 L 83.996094 300.453125 L 79.578125 301.84375 L 79.644531 294.347656 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 L 103.757812 326.515625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 105.960938 333.296875 L 101.554688 327.230469 L 105.964844 325.796875 L 105.960938 333.296875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 97.445312 312.242188 94.824219 317.390625 89.925781 317.066406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 82.808594 316.601562 L 90.078125 314.753906 L 89.773438 319.378906 L 82.808594 316.601562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 93.359375 312.34375 87.085938 315.261719 81.941406 311.375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 76.25 307.074219 L 83.339844 309.527344 L 80.546875 313.222656 L 76.25 307.074219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 101.390625 310.140625 103.777344 315.34375 100.53125 318.707031 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 95.582031 323.84375 L 98.863281 317.101562 L 102.199219 320.316406 L 95.582031 323.84375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 333.753906 44.40625 L 336.566406 44.542969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 343.691406 44.890625 L 336.453125 46.859375 L 336.679688 42.230469 L 343.691406 44.890625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 329.5625 50.957031 L 337.09375 48.542969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 343.886719 46.367188 L 337.800781 50.75 L 336.386719 46.335938 L 343.886719 46.367188 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 333.753906 44.40625 L 328.628906 39.980469 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 323.230469 35.320312 L 330.144531 38.226562 L 327.117188 41.734375 L 323.230469 35.320312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 329.5625 50.957031 L 325.75 42.089844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 322.933594 35.539062 L 327.878906 41.175781 L 323.621094 43.007812 L 322.933594 35.539062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 333.753906 44.40625 C 337.675781 44.921875 341.636719 47.683594 340.546875 51.042969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 338.34375 57.828125 L 338.34375 50.328125 L 342.75 51.757812 L 338.34375 57.828125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 329.5625 50.957031 C 328.433594 53.609375 328.945312 57.632812 331.210938 57.679688 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 338.34375 57.828125 L 331.164062 59.996094 L 331.257812 55.363281 L 338.34375 57.828125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 329.5625 50.957031 C 326.78125 52 327 54.960938 325.722656 56.964844 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 329.5625 50.957031 L 327.671875 58.214844 L 323.769531 55.714844 L 329.5625 50.957031 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 408.203125 157.160156 L 407.945312 166.496094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 407.75 173.628906 L 405.628906 166.433594 L 410.261719 166.5625 L 407.75 173.628906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 416.09375 163.621094 L 412.597656 168.15625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.242188 173.804688 L 410.761719 166.738281 L 414.433594 169.570312 L 408.242188 173.804688 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 416.09375 163.621094 L 414.15625 162.035156 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 408.636719 157.515625 L 415.625 160.242188 L 412.6875 163.828125 L 408.636719 157.515625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 395.78125 135.046875 L 404.4375 150.453125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 407.929688 156.671875 L 402.414062 151.589844 L 406.457031 149.320312 L 407.929688 156.671875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 339.960938 114.027344 L 348.96875 122.234375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 354.242188 127.039062 L 347.40625 123.945312 L 350.527344 120.519531 L 354.242188 127.039062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.773438 304.703125 L 273.214844 298.542969 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 266.585938 295.914062 L 274.070312 296.386719 L 272.363281 300.695312 L 266.585938 295.914062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.773438 304.703125 L 283.464844 315.382812 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 280.289062 321.769531 L 281.390625 314.347656 L 285.539062 316.414062 L 280.289062 321.769531 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 131.546875 89.226562 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 138.355469 87.09375 L 132.238281 91.4375 L 130.855469 87.015625 L 138.355469 87.09375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.773438 304.703125 L 296.144531 313.691406 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 300.667969 319.207031 L 294.351562 315.160156 L 297.9375 312.222656 L 300.667969 319.207031 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.773438 304.703125 L 300.066406 303.039062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 307.125 301.996094 L 300.40625 305.332031 L 299.730469 300.746094 L 307.125 301.996094 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.289062 411.925781 L 143.675781 412.730469 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 150.785156 413.34375 L 143.476562 415.039062 L 143.875 410.421875 L 150.785156 413.34375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.90625 411.667969 C 134.90625 412.148438 134.183594 412.148438 134.183594 411.667969 C 134.183594 411.1875 134.90625 411.1875 134.90625 411.667969 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.027344 361.746094 L 106.972656 369.746094 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 110.128906 376.140625 L 104.894531 370.769531 L 109.050781 368.71875 L 110.128906 376.140625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.390625 199.207031 L 68.976562 201.890625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 75.703125 204.269531 L 68.207031 204.074219 L 69.75 199.707031 L 75.703125 204.269531 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.519531 189.316406 L 78.4375 196.9375 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 76.558594 203.820312 L 76.203125 196.328125 L 80.671875 197.546875 L 76.558594 203.820312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.191406 219.386719 L 80.019531 211.449219 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 76.703125 205.132812 L 82.070312 210.371094 L 77.96875 212.527344 L 76.703125 205.132812 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.511719 285.0625 C 241.417969 292.378906 237.871094 298.863281 230.792969 298.972656 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 223.660156 299.085938 L 230.757812 296.65625 L 230.828125 301.292969 L 223.660156 299.085938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.433594 307.015625 C 92.550781 306.230469 87.730469 302.660156 89.191406 298.476562 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 91.542969 291.742188 L 91.378906 299.242188 L 87.003906 297.714844 L 91.542969 291.742188 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 288.734375 396.460938 L 292.5 399.378906 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 298.136719 403.75 L 291.078125 401.210938 L 293.917969 397.546875 L 298.136719 403.75 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.511719 285.0625 L 237.328125 271.699219 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 235.195312 264.890625 L 239.539062 271.003906 L 235.117188 272.390625 L 235.195312 264.890625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.289062 411.925781 L 128.140625 408.613281 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 121.859375 405.230469 L 129.238281 406.570312 L 127.039062 410.652344 L 121.859375 405.230469 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 366.65625 102.96875 C 366.65625 111.605469 359.652344 118.605469 351.019531 118.605469 C 342.382812 118.605469 335.378906 111.605469 335.378906 102.96875 C 335.378906 94.332031 342.382812 87.332031 351.019531 87.332031 C 359.652344 87.332031 366.65625 94.332031 366.65625 102.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.304688 443.820312 L 108.367188 427.914062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 113.941406 432.363281 L 106.921875 429.726562 L 109.8125 426.101562 L 113.941406 432.363281 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 117.632812 80.789062 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 120.570312 74.289062 L 119.746094 81.746094 L 115.519531 79.835938 L 120.570312 74.289062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.40625 81.46875 L 114.515625 78.125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 120.480469 74.214844 L 115.785156 80.0625 L 113.246094 76.183594 L 120.480469 74.214844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.90625 95.6875 L 108.265625 92.820312 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 103.429688 87.574219 L 109.96875 91.25 L 106.558594 94.390625 L 103.429688 87.574219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.40625 81.46875 L 114.011719 82.265625 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 106.984375 81.050781 L 114.410156 79.980469 L 113.617188 84.550781 L 106.984375 81.050781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 414.273438 304.847656 L 416.085938 299.269531 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 418.289062 292.484375 L 418.289062 299.984375 L 413.878906 298.554688 L 418.289062 292.484375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.40625 81.46875 C 106.851562 81.230469 103.355469 83.375 104.160156 84.6875 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 107.890625 90.769531 L 102.183594 85.898438 L 106.136719 83.476562 L 107.890625 90.769531 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.511719 285.0625 C 234.449219 283.148438 227.242188 284.78125 225.195312 291.558594 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 223.136719 298.386719 L 222.976562 290.890625 L 227.414062 292.230469 L 223.136719 298.386719 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.511719 285.0625 L 244.152344 297.03125 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 245.6875 304 L 241.886719 297.53125 L 246.414062 296.535156 L 245.6875 304 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.757812 419.109375 L 90.082031 411.945312 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 94.945312 417.164062 L 88.386719 413.527344 L 91.777344 410.367188 L 94.945312 417.164062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(26.666667%,26.666667%,26.666667%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 241.511719 285.0625 L 259.8125 292.988281 \"/>\n",
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(26.666667%,26.666667%,26.666667%);fill-opacity:1;\" d=\"M 266.359375 295.820312 L 258.890625 295.113281 L 260.734375 290.859375 L 266.359375 295.820312 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 302.089844 405.101562 C 302.089844 408.046875 297.671875 408.046875 297.671875 405.101562 C 297.671875 402.15625 302.089844 402.15625 302.089844 405.101562 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 284.542969 36.265625 C 284.542969 36.429688 284.300781 36.429688 284.300781 36.265625 C 284.300781 36.101562 284.542969 36.101562 284.542969 36.265625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.851562 241.953125 C 80.851562 265.597656 61.683594 284.761719 38.042969 284.761719 C 14.398438 284.761719 -4.769531 265.597656 -4.769531 241.953125 C -4.769531 218.308594 14.398438 199.144531 38.042969 199.144531 C 61.683594 199.144531 80.851562 218.308594 80.851562 241.953125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 235.597656 264.34375 C 235.597656 265.105469 234.453125 265.105469 234.453125 264.34375 C 234.453125 263.582031 235.597656 263.582031 235.597656 264.34375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.855469 95.6875 C 116.855469 98.972656 114.191406 101.636719 110.90625 101.636719 C 107.617188 101.636719 104.953125 98.972656 104.953125 95.6875 C 104.953125 92.398438 107.617188 89.734375 110.90625 89.734375 C 114.191406 89.734375 116.855469 92.398438 116.855469 95.6875 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 248.179688 455.457031 C 248.179688 455.640625 247.90625 455.640625 247.90625 455.457031 C 247.90625 455.277344 248.179688 455.277344 248.179688 455.457031 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.398438 250.71875 C 44.398438 255.289062 40.695312 258.996094 36.125 258.996094 C 31.554688 258.996094 27.847656 255.289062 27.847656 250.71875 C 27.847656 246.148438 31.554688 242.445312 36.125 242.445312 C 40.695312 242.445312 44.398438 246.148438 44.398438 250.71875 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 348.117188 283.28125 C 348.117188 289.550781 338.714844 289.550781 338.714844 283.28125 C 338.714844 277.015625 348.117188 277.015625 348.117188 283.28125 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 307.058594 198.464844 C 307.058594 198.5 307.007812 198.5 307.007812 198.464844 C 307.007812 198.429688 307.058594 198.429688 307.058594 198.464844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 215.894531 323.796875 C 215.894531 323.84375 215.820312 323.84375 215.820312 323.796875 C 215.820312 323.746094 215.894531 323.746094 215.894531 323.796875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.566406 320.324219 C 109.566406 320.425781 109.410156 320.425781 109.410156 320.324219 C 109.410156 320.21875 109.566406 320.21875 109.566406 320.324219 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.804688 230.332031 C 153.804688 233.472656 149.09375 233.472656 149.09375 230.332031 C 149.09375 227.191406 153.804688 227.191406 153.804688 230.332031 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.09375 119.519531 C 66.09375 125.597656 56.972656 125.597656 56.972656 119.519531 C 56.972656 113.441406 66.09375 113.441406 66.09375 119.519531 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 464.929688 195.628906 C 464.929688 195.628906 464.925781 195.628906 464.925781 195.628906 C 464.925781 195.625 464.929688 195.625 464.929688 195.628906 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 323.433594 34.78125 C 323.433594 35.878906 321.78125 35.878906 321.78125 34.78125 C 321.78125 33.679688 323.433594 33.679688 323.433594 34.78125 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.175781 111.386719 C 96.175781 112.105469 95.101562 112.105469 95.101562 111.386719 C 95.101562 110.667969 96.175781 110.667969 96.175781 111.386719 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.707031 30.273438 C 246.707031 30.46875 246.414062 30.46875 246.414062 30.273438 C 246.414062 30.078125 246.707031 30.078125 246.707031 30.273438 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.738281 157.941406 C 35.738281 158.09375 35.507812 158.09375 35.507812 157.941406 C 35.507812 157.785156 35.738281 157.785156 35.738281 157.941406 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.691406 146.625 C 244.691406 146.675781 244.617188 146.675781 244.617188 146.625 C 244.617188 146.574219 244.691406 146.574219 244.691406 146.625 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.710938 370.5 C 89.710938 371.882812 87.636719 371.882812 87.636719 370.5 C 87.636719 369.117188 89.710938 369.117188 89.710938 370.5 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.453125 132.714844 C 265.453125 135.5 261.277344 135.5 261.277344 132.714844 C 261.277344 129.933594 265.453125 129.933594 265.453125 132.714844 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.398438 164.191406 C 243.398438 164.285156 243.257812 164.285156 243.257812 164.191406 C 243.257812 164.09375 243.398438 164.09375 243.398438 164.191406 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 421.582031 231.316406 C 421.582031 231.925781 420.664062 231.925781 420.664062 231.316406 C 420.664062 230.703125 421.582031 230.703125 421.582031 231.316406 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.777344 228.84375 C 179.777344 230.667969 177.042969 230.667969 177.042969 228.84375 C 177.042969 227.019531 179.777344 227.019531 179.777344 228.84375 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 226.933594 388.050781 C 226.933594 389.023438 225.472656 389.023438 225.472656 388.050781 C 225.472656 387.074219 226.933594 387.074219 226.933594 388.050781 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 423.039062 263.714844 C 423.039062 263.777344 422.949219 263.777344 422.949219 263.714844 C 422.949219 263.65625 423.039062 263.65625 423.039062 263.714844 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 411.925781 94.90625 C 411.925781 95.429688 411.144531 95.429688 411.144531 94.90625 C 411.144531 94.386719 411.925781 94.386719 411.925781 94.90625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.910156 101.738281 C 245.910156 101.757812 245.878906 101.757812 245.878906 101.738281 C 245.878906 101.714844 245.910156 101.714844 245.910156 101.738281 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 280.347656 321.863281 C 280.347656 322 280.136719 322 280.136719 321.863281 C 280.136719 321.722656 280.347656 321.722656 280.347656 321.863281 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.65625 299.097656 C 223.65625 300.074219 222.1875 300.074219 222.1875 299.097656 C 222.1875 298.117188 223.65625 298.117188 223.65625 299.097656 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.507812 100.960938 C 85.507812 101.636719 84.496094 101.636719 84.496094 100.960938 C 84.496094 100.289062 85.507812 100.289062 85.507812 100.960938 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.417969 67.15625 C 109.417969 67.199219 109.355469 67.199219 109.355469 67.15625 C 109.355469 67.113281 109.417969 67.113281 109.417969 67.15625 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.660156 227.40625 C 41.660156 229.222656 38.9375 229.222656 38.9375 227.40625 C 38.9375 225.589844 41.660156 225.589844 41.660156 227.40625 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.273438 74.335938 C 133.273438 74.648438 132.804688 74.648438 132.804688 74.335938 C 132.804688 74.023438 133.273438 74.023438 133.273438 74.335938 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 301.023438 319.375 C 301.023438 319.664062 300.585938 319.664062 300.585938 319.375 C 300.585938 319.085938 301.023438 319.085938 301.023438 319.375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 178.359375 214.382812 C 178.359375 217.277344 174.015625 217.277344 174.015625 214.382812 C 174.015625 211.484375 178.359375 211.484375 178.359375 214.382812 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.546875 166.449219 C 194.546875 166.882812 193.898438 166.882812 193.898438 166.449219 C 193.898438 166.015625 194.546875 166.015625 194.546875 166.449219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.28125 116.566406 C 194.28125 117.6875 192.597656 117.6875 192.597656 116.566406 C 192.597656 115.445312 194.28125 115.445312 194.28125 116.566406 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 204.355469 139.335938 C 204.355469 140.285156 202.933594 140.285156 202.933594 139.335938 C 202.933594 138.390625 204.355469 138.390625 204.355469 139.335938 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 185.007812 377.089844 C 185.007812 381.789062 177.953125 381.789062 177.953125 377.089844 C 177.953125 372.386719 185.007812 372.386719 185.007812 377.089844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 164.699219 178.75 C 164.699219 179.015625 164.300781 179.015625 164.300781 178.75 C 164.300781 178.484375 164.699219 178.484375 164.699219 178.75 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 217.898438 112.804688 C 217.898438 112.832031 217.855469 112.832031 217.855469 112.804688 C 217.855469 112.773438 217.898438 112.773438 217.898438 112.804688 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 408.570312 174.476562 C 408.570312 175.605469 406.878906 175.605469 406.878906 174.476562 C 406.878906 173.34375 408.570312 173.34375 408.570312 174.476562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.546875 186.378906 C 27.546875 186.835938 26.863281 186.835938 26.863281 186.378906 C 26.863281 185.921875 27.546875 185.921875 27.546875 186.378906 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 234.941406 95.738281 C 234.941406 96.074219 234.433594 96.074219 234.433594 95.738281 C 234.433594 95.402344 234.941406 95.402344 234.941406 95.738281 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 133.667969 212.394531 C 133.667969 213.839844 131.5 213.839844 131.5 212.394531 C 131.5 210.949219 133.667969 210.949219 133.667969 212.394531 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 124.242188 292.992188 C 124.242188 293.378906 123.660156 293.378906 123.660156 292.992188 C 123.660156 292.605469 124.242188 292.605469 124.242188 292.992188 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.460938 99.234375 C 210.460938 99.328125 210.316406 99.328125 210.316406 99.234375 C 210.316406 99.136719 210.460938 99.136719 210.460938 99.234375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.433594 199.316406 C 131.433594 199.585938 131.03125 199.585938 131.03125 199.316406 C 131.03125 199.050781 131.433594 199.050781 131.433594 199.316406 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 342.773438 91.027344 C 342.773438 91.636719 341.863281 91.636719 341.863281 91.027344 C 341.863281 90.421875 342.773438 90.421875 342.773438 91.027344 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 261.683594 145.195312 C 261.683594 146.613281 259.558594 146.613281 259.558594 145.195312 C 259.558594 143.78125 261.683594 143.78125 261.683594 145.195312 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.457031 52.59375 C 194.457031 54.226562 192.007812 54.226562 192.007812 52.59375 C 192.007812 50.960938 194.457031 50.960938 194.457031 52.59375 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.0625 301.070312 C 111.0625 303.238281 107.808594 303.238281 107.808594 301.070312 C 107.808594 298.902344 111.0625 298.902344 111.0625 301.070312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 317.082031 52.976562 C 317.082031 53.683594 316.027344 53.683594 316.027344 52.976562 C 316.027344 52.273438 317.082031 52.273438 317.082031 52.976562 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.453125 248.460938 C 57.453125 250.132812 54.953125 250.132812 54.953125 248.460938 C 54.953125 246.792969 57.453125 246.792969 57.453125 248.460938 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.203125 235.875 C 55.203125 239.539062 49.707031 239.539062 49.707031 235.875 C 49.707031 232.210938 55.203125 232.210938 55.203125 235.875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 212.097656 39.292969 C 212.097656 39.710938 211.472656 39.710938 211.472656 39.292969 C 211.472656 38.875 212.097656 38.875 212.097656 39.292969 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 362.324219 44.40625 C 362.324219 60.1875 349.535156 72.980469 333.753906 72.980469 C 317.972656 72.980469 305.179688 60.1875 305.179688 44.40625 C 305.179688 28.628906 317.972656 15.835938 333.753906 15.835938 C 349.535156 15.835938 362.324219 28.628906 362.324219 44.40625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 352.046875 45.089844 C 352.046875 50.667969 343.6875 50.667969 343.6875 45.089844 C 343.6875 39.515625 352.046875 39.515625 352.046875 45.089844 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 308.507812 301.898438 C 308.507812 302.824219 307.117188 302.824219 307.117188 301.898438 C 307.117188 300.96875 308.507812 300.96875 308.507812 301.898438 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 181.90625 28.996094 C 181.90625 29.222656 181.566406 29.222656 181.566406 28.996094 C 181.566406 28.773438 181.90625 28.773438 181.90625 28.996094 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 296.597656 213.417969 C 296.597656 214.671875 294.714844 214.671875 294.714844 213.417969 C 294.714844 212.164062 296.597656 212.164062 296.597656 213.417969 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.824219 364.75 C 259.824219 364.769531 259.796875 364.769531 259.796875 364.75 C 259.796875 364.730469 259.824219 364.730469 259.824219 364.75 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 370.042969 264.847656 C 370.042969 265.414062 369.191406 265.414062 369.191406 264.847656 C 369.191406 264.28125 370.042969 264.28125 370.042969 264.847656 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.164062 158.160156 C 76.164062 158.53125 75.601562 158.53125 75.601562 158.160156 C 75.601562 157.785156 76.164062 157.785156 76.164062 158.160156 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.164062 475.886719 C 221.164062 476.53125 220.199219 476.53125 220.199219 475.886719 C 220.199219 475.242188 221.164062 475.242188 221.164062 475.886719 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.796875 273.632812 C 25.796875 273.898438 25.40625 273.898438 25.40625 273.632812 C 25.40625 273.371094 25.796875 273.371094 25.796875 273.632812 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.511719 310.71875 C 118.511719 310.808594 118.375 310.808594 118.375 310.71875 C 118.375 310.628906 118.511719 310.628906 118.511719 310.71875 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.742188 275.792969 C 36.742188 275.867188 36.628906 275.867188 36.628906 275.792969 C 36.628906 275.714844 36.742188 275.714844 36.742188 275.792969 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 244.59375 392.671875 C 244.59375 392.675781 244.582031 392.675781 244.582031 392.671875 C 244.582031 392.664062 244.59375 392.664062 244.59375 392.671875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.042969 331.09375 C 180.042969 331.613281 179.257812 331.613281 179.257812 331.09375 C 179.257812 330.570312 180.042969 330.570312 180.042969 331.09375 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43 331.453125 C 43 332.390625 41.59375 332.390625 41.59375 331.453125 C 41.59375 330.515625 43 330.515625 43 331.453125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.675781 117.359375 C 120.675781 117.847656 119.941406 117.847656 119.941406 117.359375 C 119.941406 116.867188 120.675781 116.867188 120.675781 117.359375 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 332.65625 211.929688 C 332.65625 212.121094 332.367188 212.121094 332.367188 211.929688 C 332.367188 211.734375 332.65625 211.734375 332.65625 211.929688 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 27.117188 229.398438 C 27.117188 229.496094 26.972656 229.496094 26.972656 229.398438 C 26.972656 229.304688 27.117188 229.304688 27.117188 229.398438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.859375 74.101562 C 120.859375 74.375 120.449219 74.375 120.449219 74.101562 C 120.449219 73.832031 120.859375 73.832031 120.859375 74.101562 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 328.003906 133.699219 C 328.003906 133.832031 327.800781 133.832031 327.800781 133.699219 C 327.800781 133.5625 328.003906 133.5625 328.003906 133.699219 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.632812 438.453125 C 160.632812 438.652344 160.332031 438.652344 160.332031 438.453125 C 160.332031 438.25 160.632812 438.25 160.632812 438.453125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.890625 97.9375 C 96.890625 98.195312 96.503906 98.195312 96.503906 97.9375 C 96.503906 97.679688 96.890625 97.679688 96.890625 97.9375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 466.527344 169.789062 C 466.527344 170.367188 465.660156 170.367188 465.660156 169.789062 C 465.660156 169.210938 466.527344 169.210938 466.527344 169.789062 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 207.335938 123.320312 C 207.335938 123.761719 206.671875 123.761719 206.671875 123.320312 C 206.671875 122.878906 207.335938 122.878906 207.335938 123.320312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.945312 324.6875 C 95.945312 326.253906 93.59375 326.253906 93.59375 324.6875 C 93.59375 323.121094 95.945312 323.121094 95.945312 324.6875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 338.34375 57.828125 L 338.34375 57.828125 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 354.269531 127.046875 C 354.269531 127.070312 354.238281 127.070312 354.238281 127.046875 C 354.238281 127.027344 354.269531 127.027344 354.269531 127.046875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 252.207031 263.300781 C 252.207031 265.132812 249.457031 265.132812 249.457031 263.300781 C 249.457031 261.464844 252.207031 261.464844 252.207031 263.300781 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 295.703125 286.625 C 295.703125 286.675781 295.625 286.675781 295.625 286.625 C 295.625 286.570312 295.703125 286.570312 295.703125 286.625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.78125 172.289062 C 200.78125 172.40625 200.609375 172.40625 200.609375 172.289062 C 200.609375 172.175781 200.78125 172.175781 200.78125 172.289062 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.4375 397.726562 C 88.4375 401.355469 82.996094 401.355469 82.996094 397.726562 C 82.996094 394.101562 88.4375 394.101562 88.4375 397.726562 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 326.855469 358.652344 C 326.855469 369.761719 317.847656 378.769531 306.738281 378.769531 C 295.628906 378.769531 286.621094 369.761719 286.621094 358.652344 C 286.621094 347.542969 295.628906 338.535156 306.738281 338.535156 C 317.847656 338.535156 326.855469 347.542969 326.855469 358.652344 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 376.710938 64.144531 C 376.710938 64.382812 376.355469 64.382812 376.355469 64.144531 C 376.355469 63.90625 376.710938 63.90625 376.710938 64.144531 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 313.945312 213.15625 C 313.945312 213.265625 313.777344 213.265625 313.777344 213.15625 C 313.777344 213.042969 313.945312 213.042969 313.945312 213.15625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 347.011719 379.457031 C 347.011719 385.082031 338.574219 385.082031 338.574219 379.457031 C 338.574219 373.832031 347.011719 373.832031 347.011719 379.457031 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.527344 411.925781 C 134.527344 412.246094 134.046875 412.246094 134.046875 411.925781 C 134.046875 411.601562 134.527344 411.601562 134.527344 411.925781 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.941406 130.71875 C 64.941406 131.367188 63.964844 131.367188 63.964844 130.71875 C 63.964844 130.066406 64.941406 130.066406 64.941406 130.71875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 165.464844 232.050781 C 165.464844 232.207031 165.234375 232.207031 165.234375 232.050781 C 165.234375 231.898438 165.464844 231.898438 165.464844 232.050781 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.707031 378.214844 C 59.707031 379.785156 57.351562 379.785156 57.351562 378.214844 C 57.351562 376.644531 59.707031 376.644531 59.707031 378.214844 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 140.738281 175.480469 C 140.738281 175.980469 139.988281 175.980469 139.988281 175.480469 C 139.988281 174.980469 140.738281 174.980469 140.738281 175.480469 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 331.257812 405.472656 C 331.257812 406.742188 329.351562 406.742188 329.351562 405.472656 C 329.351562 404.203125 331.257812 404.203125 331.257812 405.472656 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.375 287.546875 C 107.375 287.980469 106.726562 287.980469 106.726562 287.546875 C 106.726562 287.113281 107.375 287.113281 107.375 287.546875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 188.015625 160.488281 C 188.015625 160.714844 187.679688 160.714844 187.679688 160.488281 C 187.679688 160.261719 188.015625 160.261719 188.015625 160.488281 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 194.023438 206.882812 C 194.023438 207.042969 193.78125 207.042969 193.78125 206.882812 C 193.78125 206.722656 194.023438 206.722656 194.023438 206.882812 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 232.875 110.097656 C 232.875 110.382812 232.449219 110.382812 232.449219 110.097656 C 232.449219 109.816406 232.875 109.816406 232.875 110.097656 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 266.59375 295.871094 C 266.59375 296.03125 266.347656 296.03125 266.347656 295.871094 C 266.347656 295.707031 266.59375 295.707031 266.59375 295.871094 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.042969 130.09375 C 193.042969 130.566406 192.335938 130.566406 192.335938 130.09375 C 192.335938 129.621094 193.042969 129.621094 193.042969 130.09375 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.542969 142.046875 C 79.542969 142.105469 79.453125 142.105469 79.453125 142.046875 C 79.453125 141.984375 79.542969 141.984375 79.542969 142.046875 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 319.6875 201.8125 C 319.6875 201.945312 319.484375 201.945312 319.484375 201.8125 C 319.484375 201.675781 319.6875 201.675781 319.6875 201.8125 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 260.535156 120.484375 C 260.535156 120.53125 260.464844 120.53125 260.464844 120.484375 C 260.464844 120.441406 260.535156 120.441406 260.535156 120.484375 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 358.410156 343.980469 C 358.410156 346.339844 354.871094 346.339844 354.871094 343.980469 C 354.871094 341.625 358.410156 341.625 358.410156 343.980469 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 259.796875 275.929688 C 259.796875 275.996094 259.691406 275.996094 259.691406 275.929688 C 259.691406 275.859375 259.796875 275.859375 259.796875 275.929688 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 340.230469 102.90625 C 340.230469 106.335938 337.453125 109.113281 334.023438 109.113281 C 330.59375 109.113281 327.816406 106.335938 327.816406 102.90625 C 327.816406 99.476562 330.59375 96.699219 334.023438 96.699219 C 337.453125 96.699219 340.230469 99.476562 340.230469 102.90625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 353.40625 268.144531 C 353.40625 269.625 351.183594 269.625 351.183594 268.144531 C 351.183594 266.664062 353.40625 266.664062 353.40625 268.144531 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.871094 294.027344 C 79.871094 294.46875 79.214844 294.46875 79.214844 294.027344 C 79.214844 293.589844 79.871094 293.589844 79.871094 294.027344 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 350.867188 299.785156 C 350.867188 300.726562 349.457031 300.726562 349.457031 299.785156 C 349.457031 298.84375 350.867188 298.84375 350.867188 299.785156 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 193.472656 338.542969 C 193.472656 338.75 193.164062 338.75 193.164062 338.542969 C 193.164062 338.335938 193.472656 338.335938 193.472656 338.542969 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.941406 404.90625 C 121.941406 405.816406 120.578125 405.816406 120.578125 404.90625 C 120.578125 403.996094 121.941406 403.996094 121.941406 404.90625 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 141.128906 222.65625 C 141.128906 222.9375 140.707031 222.9375 140.707031 222.65625 C 140.707031 222.375 141.128906 222.375 141.128906 222.65625 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.195312 96.417969 C 131.195312 97.1875 130.039062 97.1875 130.039062 96.417969 C 130.039062 95.648438 131.195312 95.648438 131.195312 96.417969 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 444.113281 213.324219 C 444.113281 213.949219 443.171875 213.949219 443.171875 213.324219 C 443.171875 212.695312 444.113281 212.695312 444.113281 213.324219 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 249.546875 410.035156 C 249.546875 410.039062 249.542969 410.039062 249.542969 410.035156 C 249.542969 410.03125 249.546875 410.03125 249.546875 410.035156 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 147.378906 189.15625 C 147.378906 189.847656 146.339844 189.847656 146.339844 189.15625 C 146.339844 188.464844 147.378906 188.464844 147.378906 189.15625 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.484375 81.46875 C 110.484375 82.90625 108.328125 82.90625 108.328125 81.46875 C 108.328125 80.03125 110.484375 80.03125 110.484375 81.46875 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.292969 328.886719 C 80.292969 333.050781 74.046875 333.050781 74.046875 328.886719 C 74.046875 324.722656 80.292969 324.722656 80.292969 328.886719 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 245.785156 304.078125 C 245.785156 304.1875 245.621094 304.1875 245.621094 304.078125 C 245.621094 303.96875 245.785156 303.96875 245.785156 304.078125 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 186.625 433.730469 C 186.625 440.632812 176.273438 440.632812 176.273438 433.730469 C 176.273438 426.828125 186.625 426.828125 186.625 433.730469 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.578125 259.269531 C 48.578125 259.375 48.421875 259.375 48.421875 259.269531 C 48.421875 259.167969 48.578125 259.167969 48.578125 259.269531 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 206.214844 25.851562 C 206.214844 25.875 206.179688 25.875 206.179688 25.851562 C 206.179688 25.828125 206.214844 25.828125 206.214844 25.851562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.078125 362.175781 C 156.078125 363.746094 153.722656 363.746094 153.722656 362.175781 C 153.722656 360.605469 156.078125 360.605469 156.078125 362.175781 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 254.644531 156.820312 C 254.644531 157.21875 254.046875 157.21875 254.046875 156.820312 C 254.046875 156.421875 254.644531 156.421875 254.644531 156.820312 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.386719 428.664062 C 121.386719 437.347656 114.347656 444.386719 105.664062 444.386719 C 96.980469 444.386719 89.941406 437.347656 89.941406 428.664062 C 89.941406 419.980469 96.980469 412.941406 105.664062 412.941406 C 114.347656 412.941406 121.386719 419.980469 121.386719 428.664062 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 138.402344 87.089844 C 138.402344 87.121094 138.355469 87.121094 138.355469 87.089844 C 138.355469 87.058594 138.402344 87.058594 138.402344 87.089844 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 179.914062 412.503906 C 179.914062 412.976562 179.199219 412.976562 179.199219 412.503906 C 179.199219 412.027344 179.914062 412.027344 179.914062 412.503906 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 408.761719 157.160156 C 408.761719 157.90625 407.644531 157.90625 407.644531 157.160156 C 407.644531 156.414062 408.761719 156.414062 408.761719 157.160156 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.476562 464.710938 C 170.476562 465.3125 169.578125 465.3125 169.578125 464.710938 C 169.578125 464.113281 170.476562 464.113281 170.476562 464.710938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 357.382812 98.28125 C 357.382812 98.878906 356.488281 98.878906 356.488281 98.28125 C 356.488281 97.683594 357.382812 97.683594 357.382812 98.28125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.441406 339.464844 C 114.441406 343.046875 111.539062 345.949219 107.960938 345.949219 C 104.378906 345.949219 101.476562 343.046875 101.476562 339.464844 C 101.476562 335.886719 104.378906 332.984375 107.960938 332.984375 C 111.539062 332.984375 114.441406 335.886719 114.441406 339.464844 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 237.058594 424.179688 C 237.058594 424.585938 236.449219 424.585938 236.449219 424.179688 C 236.449219 423.773438 237.058594 423.773438 237.058594 424.179688 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 184.710938 195.953125 C 184.710938 197.523438 182.351562 197.523438 182.351562 195.953125 C 182.351562 194.382812 184.710938 194.382812 184.710938 195.953125 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 341.996094 137.320312 C 341.996094 137.320312 341.992188 137.320312 341.992188 137.320312 C 341.992188 137.316406 341.996094 137.316406 341.996094 137.320312 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 289.324219 65.464844 C 289.324219 65.710938 288.953125 65.710938 288.953125 65.464844 C 288.953125 65.214844 289.324219 65.214844 289.324219 65.464844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.878906 173.988281 C 49.878906 174.148438 49.632812 174.148438 49.632812 173.988281 C 49.632812 173.824219 49.878906 173.824219 49.878906 173.988281 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.230469 218.207031 C 159.230469 218.496094 158.796875 218.496094 158.796875 218.207031 C 158.796875 217.917969 159.230469 217.917969 159.230469 218.207031 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 313.589844 235.039062 C 313.589844 235.21875 313.316406 235.21875 313.316406 235.039062 C 313.316406 234.855469 313.589844 234.855469 313.589844 235.039062 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.015625 121.757812 C 111.015625 125.882812 104.828125 125.882812 104.828125 121.757812 C 104.828125 117.632812 111.015625 117.632812 111.015625 121.757812 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.015625 240.398438 C 20.015625 240.417969 19.984375 240.417969 19.984375 240.398438 C 19.984375 240.378906 20.015625 240.378906 20.015625 240.398438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 472.820312 245.886719 C 472.820312 246.109375 472.484375 246.109375 472.484375 245.886719 C 472.484375 245.664062 472.820312 245.664062 472.820312 245.886719 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 223.613281 276.386719 C 223.613281 276.519531 223.414062 276.519531 223.414062 276.386719 C 223.414062 276.25 223.613281 276.25 223.613281 276.386719 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 180.421875 301.933594 C 180.421875 302.175781 180.058594 302.175781 180.058594 301.933594 C 180.058594 301.691406 180.421875 301.691406 180.421875 301.933594 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 243.863281 119.117188 C 243.863281 119.246094 243.667969 119.246094 243.667969 119.117188 C 243.667969 118.984375 243.863281 118.984375 243.863281 119.117188 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 406.910156 247.195312 C 406.910156 247.519531 406.421875 247.519531 406.421875 247.195312 C 406.421875 246.871094 406.910156 246.871094 406.910156 247.195312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.703125 284.589844 C 101.703125 288.816406 98.273438 292.246094 94.042969 292.246094 C 89.8125 292.246094 86.382812 288.816406 86.382812 284.589844 C 86.382812 280.359375 89.8125 276.929688 94.042969 276.929688 C 98.273438 276.929688 101.703125 280.359375 101.703125 284.589844 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.269531 186.570312 C 134.269531 189.421875 129.992188 189.421875 129.992188 186.570312 C 129.992188 183.714844 134.269531 183.714844 134.269531 186.570312 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 131.699219 109.507812 C 131.699219 109.535156 131.660156 109.535156 131.660156 109.507812 C 131.660156 109.480469 131.699219 109.480469 131.699219 109.507812 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 222.617188 97.472656 C 222.617188 97.707031 222.261719 97.707031 222.261719 97.472656 C 222.261719 97.234375 222.617188 97.234375 222.617188 97.472656 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 170.808594 452.265625 C 170.808594 469.894531 156.519531 484.183594 138.890625 484.183594 C 121.265625 484.183594 106.976562 469.894531 106.976562 452.265625 C 106.976562 434.640625 121.265625 420.351562 138.890625 420.351562 C 156.519531 420.351562 170.808594 434.640625 170.808594 452.265625 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 190.300781 219.96875 C 190.300781 220.230469 189.90625 220.230469 189.90625 219.96875 C 189.90625 219.707031 190.300781 219.707031 190.300781 219.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 432.679688 168.558594 C 432.679688 169.09375 431.871094 169.09375 431.871094 168.558594 C 431.871094 168.019531 432.679688 168.019531 432.679688 168.558594 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.785156 254.027344 C 25.785156 259.425781 17.695312 259.425781 17.695312 254.027344 C 17.695312 248.632812 25.785156 248.632812 25.785156 254.027344 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 219.648438 150.953125 C 219.648438 156.199219 211.777344 156.199219 211.777344 150.953125 C 211.777344 145.707031 219.648438 145.707031 219.648438 150.953125 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 397.050781 78.597656 C 397.050781 79.179688 396.175781 79.179688 396.175781 78.597656 C 396.175781 78.015625 397.050781 78.015625 397.050781 78.597656 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 201.808594 107.289062 C 201.808594 107.695312 201.199219 107.695312 201.199219 107.289062 C 201.199219 106.882812 201.808594 106.882812 201.808594 107.289062 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 255.234375 109.460938 C 255.234375 109.472656 255.214844 109.472656 255.214844 109.460938 C 255.214844 109.449219 255.234375 109.449219 255.234375 109.460938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 362.691406 112.101562 C 362.691406 113.234375 360.992188 113.234375 360.992188 112.101562 C 360.992188 110.96875 362.691406 110.96875 362.691406 112.101562 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.34375 376.898438 C 111.34375 378.019531 109.65625 378.019531 109.65625 376.898438 C 109.65625 375.773438 111.34375 375.773438 111.34375 376.898438 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 152.234375 413.40625 C 152.234375 414.375 150.78125 414.375 150.78125 413.40625 C 150.78125 412.4375 152.234375 412.4375 152.234375 413.40625 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 320.386719 119.910156 C 320.386719 120.382812 319.679688 120.382812 319.679688 119.910156 C 319.679688 119.4375 320.386719 119.4375 320.386719 119.910156 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.277344 296.609375 C 95.277344 302.1875 86.910156 302.1875 86.910156 296.609375 C 86.910156 291.035156 95.277344 291.035156 95.277344 296.609375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.195312 206.96875 C 146.195312 207.203125 145.839844 207.203125 145.839844 206.96875 C 145.839844 206.734375 146.195312 206.734375 146.195312 206.96875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 277.066406 434.761719 C 277.066406 434.820312 276.976562 434.820312 276.976562 434.761719 C 276.976562 434.703125 277.066406 434.703125 277.066406 434.761719 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 200.144531 32.40625 C 200.144531 39.042969 190.191406 39.042969 190.191406 32.40625 C 190.191406 25.773438 200.144531 25.773438 200.144531 32.40625 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 175.5 316.425781 C 175.5 316.847656 174.871094 316.847656 174.871094 316.425781 C 174.871094 316.007812 175.5 316.007812 175.5 316.425781 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 382.121094 294.078125 C 382.121094 295.304688 380.28125 295.304688 380.28125 294.078125 C 380.28125 292.851562 382.121094 292.851562 382.121094 294.078125 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.152344 79.082031 C 107.152344 85.457031 101.984375 90.628906 95.609375 90.628906 C 89.234375 90.628906 84.0625 85.457031 84.0625 79.082031 C 84.0625 72.707031 89.234375 67.539062 95.609375 67.539062 C 101.984375 67.539062 107.152344 72.707031 107.152344 79.082031 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 213.308594 402.679688 C 213.308594 402.777344 213.164062 402.777344 213.164062 402.679688 C 213.164062 402.582031 213.308594 402.582031 213.308594 402.679688 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 329.296875 229.007812 C 329.296875 229.023438 329.265625 229.023438 329.265625 229.007812 C 329.265625 228.988281 329.296875 228.988281 329.296875 229.007812 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 369.667969 304.246094 C 369.667969 307.738281 364.425781 307.738281 364.425781 304.246094 C 364.425781 300.753906 369.667969 300.753906 369.667969 304.246094 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.894531 170.464844 C 153.894531 171.9375 151.6875 171.9375 151.6875 170.464844 C 151.6875 168.992188 153.894531 168.992188 153.894531 170.464844 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 221.820312 420.566406 C 221.820312 424.898438 215.320312 424.898438 215.320312 420.566406 C 215.320312 416.230469 221.820312 416.230469 221.820312 420.566406 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.082031 204.503906 C 77.082031 205.453125 75.664062 205.453125 75.664062 204.503906 C 75.664062 203.558594 77.082031 203.558594 77.082031 204.503906 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 350.386719 114.027344 C 350.386719 119.785156 345.71875 124.453125 339.960938 124.453125 C 334.203125 124.453125 329.535156 119.785156 329.535156 114.027344 C 329.535156 108.269531 334.203125 103.601562 339.960938 103.601562 C 345.71875 103.601562 350.386719 108.269531 350.386719 114.027344 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 195.574219 298.507812 C 195.574219 298.539062 195.527344 298.539062 195.527344 298.507812 C 195.527344 298.476562 195.574219 298.476562 195.574219 298.507812 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 265.875 51.089844 C 265.875 51.683594 264.980469 51.683594 264.980469 51.089844 C 264.980469 50.492188 265.875 50.492188 265.875 51.089844 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 251.023438 132.546875 C 251.023438 135.375 246.78125 135.375 246.78125 132.546875 C 246.78125 129.722656 251.023438 129.722656 251.023438 132.546875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 319.875 101.4375 C 319.875 101.6875 319.5 101.6875 319.5 101.4375 C 319.5 101.1875 319.875 101.1875 319.875 101.4375 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 299.636719 227.984375 C 299.636719 227.988281 299.632812 227.988281 299.632812 227.984375 C 299.632812 227.980469 299.636719 227.980469 299.636719 227.984375 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.222656 343.324219 C 38.222656 345.222656 35.375 345.222656 35.375 343.324219 C 35.375 341.425781 38.222656 341.425781 38.222656 343.324219 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 229.511719 166.113281 C 229.511719 166.21875 229.351562 166.21875 229.351562 166.113281 C 229.351562 166.003906 229.511719 166.003906 229.511719 166.113281 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 373.957031 217.730469 C 373.957031 217.941406 373.640625 217.941406 373.640625 217.730469 C 373.640625 217.519531 373.957031 217.519531 373.957031 217.730469 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 383.617188 276.691406 C 383.617188 278.386719 381.074219 278.386719 381.074219 276.691406 C 381.074219 274.996094 383.617188 274.996094 383.617188 276.691406 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 418.601562 292.257812 C 418.601562 292.578125 418.121094 292.578125 418.121094 292.257812 C 418.121094 291.9375 418.601562 291.9375 418.601562 292.257812 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 439.8125 248.871094 C 439.8125 248.945312 439.699219 248.945312 439.699219 248.871094 C 439.699219 248.792969 439.8125 248.792969 439.8125 248.871094 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 210.070312 337.589844 C 210.070312 338.925781 208.066406 338.925781 208.066406 337.589844 C 208.066406 336.253906 210.070312 336.253906 210.070312 337.589844 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.378906 306.6875 C 76.378906 307.539062 75.101562 307.539062 75.101562 306.6875 C 75.101562 305.835938 76.378906 305.835938 76.378906 306.6875 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 230.890625 152.957031 C 230.890625 152.964844 230.875 152.964844 230.875 152.957031 C 230.875 152.949219 230.890625 152.949219 230.890625 152.957031 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.808594 316.585938 C 82.808594 316.828125 82.445312 316.828125 82.445312 316.585938 C 82.445312 316.347656 82.808594 316.347656 82.808594 316.585938 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 330.089844 199.277344 C 330.089844 200.355469 328.472656 200.355469 328.472656 199.277344 C 328.472656 198.199219 330.089844 198.199219 330.089844 199.277344 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<path style=\"fill-rule:nonzero;fill:rgb(11.372549%,63.137255%,94.901961%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 183.648438 43.898438 C 183.648438 49.6875 174.960938 49.6875 174.960938 43.898438 C 174.960938 38.109375 183.648438 38.109375 183.648438 43.898438 \"/>\n",
"<path style=\"fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 0 0 L 0 0 \"/>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-1\" x=\"289.472656\" y=\"407.472656\"/>\n",
" <use xlink:href=\"#glyph0-2\" x=\"292.253418\" y=\"407.472656\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"295.03418\" y=\"407.472656\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"297.814941\" y=\"407.472656\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"301.425781\" y=\"407.472656\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"304.206543\" y=\"407.472656\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"307.817383\" y=\"407.472656\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-8\" x=\"271.800781\" y=\"38.632812\"/>\n",
" <use xlink:href=\"#glyph0-9\" x=\"274.581543\" y=\"38.632812\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"277.362305\" y=\"38.632812\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"281.527344\" y=\"38.632812\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"284.308105\" y=\"38.632812\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"288.473145\" y=\"38.632812\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"289.583984\" y=\"38.632812\"/>\n",
" <use xlink:href=\"#glyph0-13\" x=\"292.364746\" y=\"38.632812\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"295.145508\" y=\"38.632812\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-8\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"10.283203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"13.063965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"14.453125\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"23.941406\" y=\"244.320312\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"27.276367\" y=\"244.320312\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"30.330566\" y=\"244.320312\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"33.941406\" y=\"244.320312\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"36.722168\" y=\"244.320312\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"39.776367\" y=\"244.320312\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"41.441406\" y=\"244.320312\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"44.222168\" y=\"244.320312\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"47.00293\" y=\"244.320312\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"49.50293\" y=\"244.320312\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-24\" x=\"4.724121\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"8.059082\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"9.169922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"11.950684\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"221.148438\" y=\"266.761719\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"224.483398\" y=\"266.761719\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"227.818359\" y=\"266.761719\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"231.15332\" y=\"266.761719\"/>\n",
" <use xlink:href=\"#glyph0-28\" x=\"234.488281\" y=\"266.761719\"/>\n",
" <use xlink:href=\"#glyph0-29\" x=\"238.099121\" y=\"266.761719\"/>\n",
" <use xlink:href=\"#glyph0-30\" x=\"241.709961\" y=\"266.761719\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"245.599121\" y=\"266.761719\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"8.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"11.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"15.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-34\" x=\"18.623047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"21.403809\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"24.18457\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-13\" x=\"26.965332\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"29.746094\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-34\" x=\"32.526855\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"35.307617\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"101.175781\" y=\"98.054688\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"104.510742\" y=\"98.054688\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"107.010742\" y=\"98.054688\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"108.399902\" y=\"98.054688\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"111.180664\" y=\"98.054688\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"112.569824\" y=\"98.054688\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"115.904785\" y=\"98.054688\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"118.958984\" y=\"98.054688\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"234.582031\" y=\"457.832031\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"237.916992\" y=\"457.832031\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"240.697754\" y=\"457.832031\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"243.478516\" y=\"457.832031\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"246.259277\" y=\"457.832031\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"247.648438\" y=\"457.832031\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"250.429199\" y=\"457.832031\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"253.483398\" y=\"457.832031\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"254.594238\" y=\"457.832031\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"257.375\" y=\"457.832031\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"260.155762\" y=\"457.832031\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"15.628906\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"18.963867\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"21.744629\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"24.525391\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"27.306152\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"29.806152\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"32.586914\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"36.197754\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"38.978516\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"41.478516\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"44.259277\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"47.040039\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"48.705078\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"51.205078\" y=\"253.09375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"53.98584\" y=\"253.09375\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"331.808594\" y=\"285.652344\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"335.143555\" y=\"285.652344\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"337.924316\" y=\"285.652344\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"339.035156\" y=\"285.652344\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"340.700195\" y=\"285.652344\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"343.200195\" y=\"285.652344\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"346.535156\" y=\"285.652344\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"348.200195\" y=\"285.652344\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"349.865234\" y=\"285.652344\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"352.365234\" y=\"285.652344\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"293.714844\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"297.049805\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"298.160645\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"300.941406\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"303.441406\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"304.552246\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"307.052246\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"310.106445\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"312.887207\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"313.998047\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"315.108887\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"316.219727\" y=\"200.832031\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"319.000488\" y=\"200.832031\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"4.445801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"7.226562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"8.337402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"10.837402\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"7.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"10.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"13.615723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"16.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"17.785645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"18.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"21.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"24.458008\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"203.28125\" y=\"326.164062\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"206.616211\" y=\"326.164062\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"209.396973\" y=\"326.164062\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"211.896973\" y=\"326.164062\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"214.677734\" y=\"326.164062\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"217.458496\" y=\"326.164062\"/>\n",
" <use xlink:href=\"#glyph0-44\" x=\"220.239258\" y=\"326.164062\"/>\n",
" <use xlink:href=\"#glyph0-44\" x=\"223.02002\" y=\"326.164062\"/>\n",
" <use xlink:href=\"#glyph0-44\" x=\"225.800781\" y=\"326.164062\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"7.504883\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"10.285645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"11.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"14.177246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"16.958008\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"20.568848\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"23.349609\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"7.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"10.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"11.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"15.556641\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"18.337402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"21.118164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"24.729004\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"27.509766\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"30.290527\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"33.071289\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"7.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"10.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"13.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"16.123047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"18.903809\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"21.68457\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"90.394531\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"93.729492\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"96.510254\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"99.291016\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"100.956055\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"103.736816\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"106.236816\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"109.017578\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"112.352539\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-30\" x=\"115.963379\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-49\" x=\"119.852539\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"123.1875\" y=\"322.742188\"/>\n",
" <use xlink:href=\"#glyph0-9\" x=\"125.968262\" y=\"322.742188\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-18\" x=\"138.429688\" y=\"232.699219\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"141.764648\" y=\"232.699219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"144.264648\" y=\"232.699219\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"147.04541\" y=\"232.699219\"/>\n",
" <use xlink:href=\"#glyph0-50\" x=\"148.15625\" y=\"232.699219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"150.65625\" y=\"232.699219\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"153.437012\" y=\"232.699219\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"156.217773\" y=\"232.699219\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"158.998535\" y=\"232.699219\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"161.779297\" y=\"232.699219\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"41.710938\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"45.045898\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"48.100098\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"50.880859\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"53.935059\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"56.71582\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"59.21582\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"61.996582\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"65.331543\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"68.112305\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"69.777344\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"72.277344\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"73.388184\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"75.888184\" y=\"121.9375\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"78.668945\" y=\"121.9375\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"6.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-53\" x=\"10.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"15\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"17.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"21.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"23.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"25.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"26.672363\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"451.570312\" y=\"197.996094\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"454.905273\" y=\"197.996094\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"457.959473\" y=\"197.996094\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"460.740234\" y=\"197.996094\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"463.520996\" y=\"197.996094\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"465.186035\" y=\"197.996094\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"467.966797\" y=\"197.996094\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"470.747559\" y=\"197.996094\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"473.52832\" y=\"197.996094\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"476.309082\" y=\"197.996094\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"313.773438\" y=\"37.195312\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"317.108398\" y=\"37.195312\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"319.88916\" y=\"37.195312\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"321\" y=\"37.195312\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"323.780762\" y=\"37.195312\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"324.891602\" y=\"37.195312\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"327.672363\" y=\"37.195312\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"80.054688\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"83.389648\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"86.17041\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"88.951172\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"91.731934\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"93.396973\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"94.507812\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"97.007812\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"100.062012\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"102.842773\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"105.623535\" y=\"113.761719\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"108.404297\" y=\"113.761719\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"232.945312\" y=\"32.648438\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"236.280273\" y=\"32.648438\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"239.061035\" y=\"32.648438\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"241.841797\" y=\"32.648438\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"244.622559\" y=\"32.648438\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"247.40332\" y=\"32.648438\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"250.184082\" y=\"32.648438\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"252.964844\" y=\"32.648438\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"257.129883\" y=\"32.648438\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"24.898438\" y=\"160.3125\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"28.233398\" y=\"160.3125\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"31.01416\" y=\"160.3125\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"32.40332\" y=\"160.3125\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"35.184082\" y=\"160.3125\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"37.964844\" y=\"160.3125\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"40.745605\" y=\"160.3125\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"43.526367\" y=\"160.3125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"232.453125\" y=\"148.992188\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"235.788086\" y=\"148.992188\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"238.568848\" y=\"148.992188\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"241.349609\" y=\"148.992188\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"242.73877\" y=\"148.992188\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"244.12793\" y=\"148.992188\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"246.908691\" y=\"148.992188\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"251.07373\" y=\"148.992188\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"253.57373\" y=\"148.992188\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"74.066406\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"77.401367\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"79.066406\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"81.847168\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"82.958008\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"85.73877\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"89.349609\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"92.130371\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"94.911133\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"96.576172\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"97.687012\" y=\"372.867188\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"100.467773\" y=\"372.867188\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"248.097656\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"251.432617\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"253.097656\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"254.208496\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"256.989258\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"258.100098\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"259.489258\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"260.878418\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"263.65918\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"266.994141\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"268.10498\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"270.885742\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"272.550781\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"274.21582\" y=\"135.082031\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"276.996582\" y=\"135.082031\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-27\" x=\"222.816406\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"226.151367\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"227.816406\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"230.597168\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"233.37793\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"236.158691\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"240.32373\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"241.43457\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"244.215332\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"246.996094\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"249.776855\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"252.557617\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"255.338379\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"258.119141\" y=\"166.558594\"/>\n",
" <use xlink:href=\"#glyph0-13\" x=\"260.899902\" y=\"166.558594\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"405.621094\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"409.231934\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"412.842773\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-24\" x=\"414.231934\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"417.566895\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"420.347656\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"422.012695\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"423.401855\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"426.182617\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"429.517578\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"432.017578\" y=\"233.730469\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"434.79834\" y=\"233.730469\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"6.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"10.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"11.669922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"12.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"15.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"18.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"21.123047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"23.903809\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"25.014648\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"27.79541\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"30.576172\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"32.241211\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"6.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"10.556641\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"11.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"15.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"18.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"22.502441\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"25.837402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"27.226562\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"9.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"10.283203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"13.063965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"14.729004\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"17.229004\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"20.563965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"23.344727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"26.125488\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"28.90625\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"31.687012\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"10.556641\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"13.337402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"16.118164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"18.618164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"22.229004\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"25.009766\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"27.790527\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"28.901367\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"31.682129\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"165.878906\" y=\"231.261719\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"169.489746\" y=\"231.261719\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"172.270508\" y=\"231.261719\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"175.05127\" y=\"231.261719\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"177.832031\" y=\"231.261719\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"180.612793\" y=\"231.261719\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"183.393555\" y=\"231.261719\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"186.174316\" y=\"231.261719\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"188.955078\" y=\"231.261719\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"214.304688\" y=\"390.464844\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"217.915527\" y=\"390.464844\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"220.696289\" y=\"390.464844\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"223.196289\" y=\"390.464844\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"224.307129\" y=\"390.464844\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"225.417969\" y=\"390.464844\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"228.19873\" y=\"390.464844\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"231.533691\" y=\"390.464844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"232.644531\" y=\"390.464844\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"235.425293\" y=\"390.464844\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"8.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"10.002441\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"11.113281\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"13.894043\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"17.504883\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-56\" x=\"20.285645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"21.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"24.177246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"26.958008\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"9.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"10.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"13.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"15.007324\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"16.672363\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"408.265625\" y=\"266.132812\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"411.876465\" y=\"266.132812\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"414.657227\" y=\"266.132812\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"417.157227\" y=\"266.132812\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"419.657227\" y=\"266.132812\"/>\n",
" <use xlink:href=\"#glyph0-57\" x=\"422.437988\" y=\"266.132812\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"426.327148\" y=\"266.132812\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"429.10791\" y=\"266.132812\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"430.772949\" y=\"266.132812\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"434.937988\" y=\"266.132812\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"399.8125\" y=\"97.324219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"403.42334\" y=\"97.324219\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"406.204102\" y=\"97.324219\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"408.704102\" y=\"97.324219\"/>\n",
" <use xlink:href=\"#glyph0-30\" x=\"409.814941\" y=\"97.324219\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"413.704102\" y=\"97.324219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"416.484863\" y=\"97.324219\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"419.265625\" y=\"97.324219\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"421.765625\" y=\"97.324219\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"9.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"11.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"12.783203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"14.448242\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"17.229004\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"20.009766\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"23.063965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"25.844727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"28.625488\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"30.290527\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"31.401367\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"33.901367\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"8.056641\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"9.16748\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"11.66748\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"15.27832\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"18.059082\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"20.839844\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"23.620605\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"26.401367\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"228.441406\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"232.052246\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"234.833008\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"236.498047\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"237.608887\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"240.108887\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"241.498047\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"244.278809\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"245.389648\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"248.17041\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"250.951172\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"253.731934\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"257.896973\" y=\"104.152344\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"260.677734\" y=\"104.152344\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"261.890625\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"265.501465\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"268.282227\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"269.947266\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"271.058105\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"273.558105\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"274.947266\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"276.058105\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"278.838867\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"281.619629\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"284.95459\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"287.45459\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"290.235352\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"293.016113\" y=\"324.277344\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"295.796875\" y=\"324.277344\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"207.003906\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"210.614746\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"211.725586\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"214.506348\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"217.287109\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"220.067871\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"221.178711\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"223.959473\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"227.570312\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"228.681152\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"232.846191\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"235.626953\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"236.737793\" y=\"301.511719\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"237.848633\" y=\"301.511719\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"73.25\" y=\"103.378906\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"76.86084\" y=\"103.378906\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"77.97168\" y=\"103.378906\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"80.752441\" y=\"103.378906\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"83.252441\" y=\"103.378906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"84.641602\" y=\"103.378906\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"87.422363\" y=\"103.378906\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"89.087402\" y=\"103.378906\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"91.868164\" y=\"103.378906\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"93.257324\" y=\"103.378906\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"94.925781\" y=\"69.574219\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"98.536621\" y=\"69.574219\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"101.317383\" y=\"69.574219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"104.098145\" y=\"69.574219\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"106.878906\" y=\"69.574219\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"109.659668\" y=\"69.574219\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"112.994629\" y=\"69.574219\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"115.775391\" y=\"69.574219\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"118.556152\" y=\"69.574219\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"121.056152\" y=\"69.574219\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"23.710938\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"27.321777\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"30.102539\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"34.267578\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"38.432617\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"41.213379\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"43.994141\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"47.329102\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"48.718262\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"50.383301\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"51.494141\" y=\"229.824219\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"53.994141\" y=\"229.824219\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"118.921875\" y=\"76.753906\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"122.532715\" y=\"76.753906\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"125.313477\" y=\"76.753906\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"129.478516\" y=\"76.753906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"132.259277\" y=\"76.753906\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"135.040039\" y=\"76.753906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"136.705078\" y=\"76.753906\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"139.48584\" y=\"76.753906\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"142.266602\" y=\"76.753906\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"145.047363\" y=\"76.753906\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"146.158203\" y=\"76.753906\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"288.019531\" y=\"321.792969\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"291.630371\" y=\"321.792969\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"294.411133\" y=\"321.792969\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"297.191895\" y=\"321.792969\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"299.691895\" y=\"321.792969\"/>\n",
" <use xlink:href=\"#glyph0-24\" x=\"302.472656\" y=\"321.792969\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"305.807617\" y=\"321.792969\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"306.918457\" y=\"321.792969\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"309.699219\" y=\"321.792969\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"310.810059\" y=\"321.792969\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-54\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"9.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"10.837402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"13.618164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"16.398926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"18.898926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"21.679688\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"24.179688\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"26.679688\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"29.460449\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"30.849609\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"31.960449\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"34.741211\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"156.839844\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"160.450684\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"163.785645\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"167.396484\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"170.731445\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"174.896484\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"177.677246\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"180.458008\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"181.847168\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"184.62793\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"187.408691\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"188.519531\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"189.630371\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"190.741211\" y=\"216.75\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"193.521973\" y=\"216.75\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"175.601562\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"179.212402\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"182.547363\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"186.158203\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"189.493164\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"192.273926\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"195.884766\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"196.995605\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"199.776367\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"201.441406\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"205.606445\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"208.387207\" y=\"168.867188\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"211.167969\" y=\"168.867188\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"7.502441\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"8.613281\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"11.113281\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"14.724121\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"15.834961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"18.615723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"19.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"21.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"23.896484\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"182.648438\" y=\"118.933594\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"186.259277\" y=\"118.933594\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"189.040039\" y=\"118.933594\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"191.820801\" y=\"118.933594\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"194.601562\" y=\"118.933594\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"197.655762\" y=\"118.933594\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"198.766602\" y=\"118.933594\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"201.266602\" y=\"118.933594\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"194.050781\" y=\"141.703125\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"197.661621\" y=\"141.703125\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"200.442383\" y=\"141.703125\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"203.223145\" y=\"141.703125\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"206.003906\" y=\"141.703125\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"208.784668\" y=\"141.703125\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"211.56543\" y=\"141.703125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"163.375\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"166.98584\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"169.766602\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"171.155762\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"173.936523\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"177.271484\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"180.052246\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"182.833008\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"186.998047\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"189.778809\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"192.55957\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"193.94873\" y=\"379.464844\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"196.729492\" y=\"379.464844\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"7.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"10.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"14.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"16.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"19.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"21.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"24.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"25.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"28.623047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"30.288086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"32.788086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"35.842285\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"146.703125\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"150.313965\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"153.094727\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"154.205566\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"156.986328\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"159.76709\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"160.87793\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"163.658691\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"166.439453\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"169.774414\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"172.555176\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"175.055176\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"177.835938\" y=\"181.164062\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"180.616699\" y=\"181.164062\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"201.613281\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"205.224121\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"208.004883\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"212.169922\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"214.950684\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"217.731445\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"219.120605\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"220.231445\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"223.012207\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"224.677246\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"227.458008\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"228.568848\" y=\"115.171875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"231.068848\" y=\"115.171875\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"396.855469\" y=\"176.867188\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"400.466309\" y=\"176.867188\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"403.24707\" y=\"176.867188\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"405.74707\" y=\"176.867188\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"409.912109\" y=\"176.867188\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"412.412109\" y=\"176.867188\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"415.192871\" y=\"176.867188\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"416.582031\" y=\"176.867188\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"10.002441\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"12.783203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"15.563965\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"4.72168\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"7.502441\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"8.613281\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"10.002441\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"12.783203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"13.894043\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"15.283203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"16.948242\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"19.729004\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"22.509766\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-8\" x=\"25.009766\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"27.790527\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"31.955566\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"7.796875\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"11.407715\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"12.518555\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"15.299316\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"16.688477\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"19.469238\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-28\" x=\"20.580078\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"24.190918\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"26.97168\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"31.136719\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"33.91748\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"36.698242\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"39.479004\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"40.868164\" y=\"188.746094\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"43.648926\" y=\"188.746094\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"223.1875\" y=\"98.105469\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"226.79834\" y=\"98.105469\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"229.579102\" y=\"98.105469\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"232.079102\" y=\"98.105469\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"234.579102\" y=\"98.105469\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"237.914062\" y=\"98.105469\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"240.694824\" y=\"98.105469\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"242.359863\" y=\"98.105469\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"243.470703\" y=\"98.105469\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-16\" x=\"118.808594\" y=\"214.808594\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"122.419434\" y=\"214.808594\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"125.200195\" y=\"214.808594\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"127.700195\" y=\"214.808594\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"130.480957\" y=\"214.808594\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"133.261719\" y=\"214.808594\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"136.04248\" y=\"214.808594\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"138.823242\" y=\"214.808594\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"139.934082\" y=\"214.808594\"/>\n",
" <use xlink:href=\"#glyph0-57\" x=\"142.434082\" y=\"214.808594\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"111.8125\" y=\"295.410156\"/>\n",
" <use xlink:href=\"#glyph0-59\" x=\"115.147461\" y=\"295.410156\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"118.482422\" y=\"295.410156\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"121.536621\" y=\"295.410156\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"122.925781\" y=\"295.410156\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"126.536621\" y=\"295.410156\"/>\n",
" <use xlink:href=\"#glyph0-57\" x=\"129.317383\" y=\"295.410156\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"133.206543\" y=\"295.410156\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"196.109375\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"199.444336\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"202.225098\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"203.335938\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"206.116699\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"209.727539\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"212.508301\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"213.897461\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"216.678223\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"219.458984\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"220.569824\" y=\"101.609375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"221.680664\" y=\"101.609375\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"7.226562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"8.615723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"9.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"12.507324\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"15.288086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"17.788086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"21.123047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"22.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"25.014648\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"8.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"11.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"15.288086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"18.068848\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"116.316406\" y=\"201.691406\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"119.651367\" y=\"201.691406\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"122.432129\" y=\"201.691406\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"125.212891\" y=\"201.691406\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"127.712891\" y=\"201.691406\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"131.87793\" y=\"201.691406\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"134.658691\" y=\"201.691406\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"137.439453\" y=\"201.691406\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"140.220215\" y=\"201.691406\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"141.331055\" y=\"201.691406\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"144.111816\" y=\"201.691406\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"334.363281\" y=\"93.398438\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"337.698242\" y=\"93.398438\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"341.863281\" y=\"93.398438\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"344.644043\" y=\"93.398438\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"347.424805\" y=\"93.398438\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"239.324219\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"242.65918\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"246.824219\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"250.989258\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"253.77002\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"256.550781\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"259.331543\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"262.112305\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"263.223145\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"266.558105\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"269.338867\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"270.728027\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"273.508789\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"276.289551\" y=\"147.570312\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"279.070312\" y=\"147.570312\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"176.527344\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"179.862305\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"181.527344\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"182.638184\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"185.138184\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"188.473145\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"191.808105\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"194.588867\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"197.923828\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"200.978027\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"203.758789\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"205.423828\" y=\"55.011719\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"208.20459\" y=\"55.011719\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"93.902344\" y=\"303.488281\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"97.237305\" y=\"303.488281\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"98.902344\" y=\"303.488281\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"100.013184\" y=\"303.488281\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"102.513184\" y=\"303.488281\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"105.567383\" y=\"303.488281\"/>\n",
" <use xlink:href=\"#glyph0-59\" x=\"106.956543\" y=\"303.488281\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"110.291504\" y=\"303.488281\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"113.626465\" y=\"303.488281\"/>\n",
" <use xlink:href=\"#glyph0-30\" x=\"117.237305\" y=\"303.488281\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"121.126465\" y=\"303.488281\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"5.834961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"8.615723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"11.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"13.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"16.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"18.066406\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-48\" x=\"297.332031\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"300.666992\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"302.056152\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"303.166992\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"305.947754\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"308.728516\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"311.509277\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"314.290039\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"317.900879\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"320.681641\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"324.84668\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"327.627441\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"330.408203\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"331.797363\" y=\"55.347656\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"334.578125\" y=\"55.347656\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-19\" x=\"45.464844\" y=\"250.832031\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"48.519043\" y=\"250.832031\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"51.573242\" y=\"250.832031\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"54.908203\" y=\"250.832031\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"59.073242\" y=\"250.832031\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"61.854004\" y=\"250.832031\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"64.908203\" y=\"250.832031\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-19\" x=\"42.125\" y=\"238.25\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"45.179199\" y=\"238.25\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"48.790039\" y=\"238.25\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"52.125\" y=\"238.25\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"53.23584\" y=\"238.25\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"56.016602\" y=\"238.25\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"58.797363\" y=\"238.25\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"59.908203\" y=\"238.25\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-19\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"3.054199\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"5.834961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"7.224121\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"10.004883\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"12.785645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"15.566406\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-19\" x=\"194.929688\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"197.983887\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"199.094727\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"200.205566\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"201.316406\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"204.097168\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"205.486328\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"207.151367\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"209.932129\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"212.712891\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-57\" x=\"215.493652\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"219.382812\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"223.547852\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"226.328613\" y=\"41.710938\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"227.439453\" y=\"41.710938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-19\" x=\"320.675781\" y=\"46.78125\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"323.72998\" y=\"46.78125\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"324.84082\" y=\"46.78125\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"327.621582\" y=\"46.78125\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"330.121582\" y=\"46.78125\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"332.902344\" y=\"46.78125\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"335.956543\" y=\"46.78125\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"339.567383\" y=\"46.78125\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"342.348145\" y=\"46.78125\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"345.128906\" y=\"46.78125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-19\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"3.054199\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"4.165039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"6.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"9.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"11.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"13.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"18.056641\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"19.16748\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"21.66748\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"24.16748\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"26.948242\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-19\" x=\"332.421875\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"335.476074\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"337.141113\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"339.921875\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"342.702637\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"345.202637\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"347.702637\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"350.202637\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"353.537598\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"356.318359\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"359.099121\" y=\"47.464844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"360.209961\" y=\"47.464844\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-19\" x=\"295.050781\" y=\"304.265625\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"298.10498\" y=\"304.265625\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"299.77002\" y=\"304.265625\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"302.550781\" y=\"304.265625\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"305.331543\" y=\"304.265625\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"307.831543\" y=\"304.265625\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"310.612305\" y=\"304.265625\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"313.393066\" y=\"304.265625\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"314.782227\" y=\"304.265625\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"317.562988\" y=\"304.265625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-19\" x=\"163.492188\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"166.546387\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"168.211426\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"170.992188\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"173.772949\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"176.272949\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"179.053711\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"182.388672\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"184.053711\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"186.834473\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"189.334473\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"190.723633\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"193.504395\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"196.285156\" y=\"31.371094\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"198.785156\" y=\"31.371094\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-57\" x=\"278.128906\" y=\"215.835938\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"282.018066\" y=\"215.835938\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"284.798828\" y=\"215.835938\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"288.133789\" y=\"215.835938\"/>\n",
" <use xlink:href=\"#glyph0-30\" x=\"291.46875\" y=\"215.835938\"/>\n",
" <use xlink:href=\"#glyph0-29\" x=\"295.35791\" y=\"215.835938\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"298.96875\" y=\"215.835938\"/>\n",
" <use xlink:href=\"#glyph0-28\" x=\"302.57959\" y=\"215.835938\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"306.19043\" y=\"215.835938\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"309.525391\" y=\"215.835938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-57\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"3.88916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"5.554199\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"8.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"11.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"13.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-50\" x=\"16.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"19.177246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"21.958008\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"24.73877\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"27.23877\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-57\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"3.88916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"5.554199\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"8.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"11.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"13.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"16.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"19.458008\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"22.23877\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"25.57373\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"28.354492\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"30.854492\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"32.243652\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-57\" x=\"243.378906\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"247.268066\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"248.933105\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"251.713867\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"254.494629\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"257.275391\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"260.056152\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"262.836914\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"265.617676\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"268.117676\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"270.898438\" y=\"367.167969\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"273.679199\" y=\"367.167969\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-57\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"3.88916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"5.554199\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"8.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"11.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"13.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"16.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-24\" x=\"19.458008\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"22.792969\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"23.903809\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"26.68457\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-57\" x=\"349.019531\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"352.908691\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"355.689453\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"356.800293\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"357.911133\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"359.021973\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"361.802734\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"364.583496\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"368.748535\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"371.529297\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"374.864258\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"378.475098\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"382.085938\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"385.420898\" y=\"267.261719\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"388.20166\" y=\"267.261719\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-28\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"6.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"9.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"13.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"16.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"19.177246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"22.788086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"25.568848\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"28.349609\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"31.130371\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"33.911133\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-28\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"10.002441\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"12.783203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"15.563965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"18.344727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"21.125488\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"23.625488\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"26.40625\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"27.79541\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"28.90625\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"31.687012\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-28\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"6.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"10.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"13.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"16.115723\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-28\" x=\"56.253906\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"59.864746\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"62.645508\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"65.42627\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"68.207031\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"69.87207\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"72.652832\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"76.263672\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"79.044434\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"81.825195\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"85.990234\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"88.770996\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"89.881836\" y=\"160.574219\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"92.662598\" y=\"160.574219\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-28\" x=\"209.398438\" y=\"478.253906\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"213.009277\" y=\"478.253906\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"215.790039\" y=\"478.253906\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"217.179199\" y=\"478.253906\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"219.959961\" y=\"478.253906\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"221.070801\" y=\"478.253906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"223.570801\" y=\"478.253906\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"226.351562\" y=\"478.253906\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"229.132324\" y=\"478.253906\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-23\" x=\"15.527344\" y=\"276.007812\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"16.916504\" y=\"276.007812\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"20.251465\" y=\"276.007812\"/>\n",
" <use xlink:href=\"#glyph0-29\" x=\"23.032227\" y=\"276.007812\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"26.643066\" y=\"276.007812\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"29.978027\" y=\"276.007812\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"32.758789\" y=\"276.007812\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-23\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"1.38916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"5.554199\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-24\" x=\"8.88916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"12.224121\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"15.004883\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"19.169922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"21.950684\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-23\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"1.38916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"2.77832\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"6.943359\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"10.27832\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"13.059082\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"14.724121\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"15.834961\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-23\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"1.38916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"4.169922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"6.950684\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"8.615723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"11.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-34\" x=\"13.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"16.677246\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-23\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"1.38916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"4.169922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"6.669922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"8.059082\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"10.839844\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"13.620605\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"16.401367\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"18.901367\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"21.682129\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"24.462891\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"27.243652\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"30.024414\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-23\" x=\"100.632812\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"102.021973\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"104.521973\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"107.302734\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"110.083496\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"112.864258\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"113.975098\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"115.085938\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"117.866699\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"122.031738\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"124.8125\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"125.92334\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"128.704102\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"131.484863\" y=\"313.09375\"/>\n",
" <use xlink:href=\"#glyph0-8\" x=\"133.149902\" y=\"313.09375\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-23\" x=\"20.769531\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"22.158691\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"24.658691\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"27.439453\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"30.220215\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"33.831055\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"36.611816\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"39.392578\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"43.557617\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"44.668457\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"47.168457\" y=\"278.210938\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"49.668457\" y=\"278.210938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-50\" x=\"220.46875\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"222.96875\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"225.749512\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"229.084473\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"232.695312\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"235.476074\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"238.811035\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"242.145996\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-28\" x=\"245.756836\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"249.367676\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"252.978516\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"256.313477\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"260.478516\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"261.867676\" y=\"395.085938\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"265.202637\" y=\"395.085938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-50\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"2.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"5.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"8.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"10.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"14.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"17.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"20.014648\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"21.125488\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-57\" x=\"23.625488\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-50\" x=\"165.621094\" y=\"333.46875\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"168.121094\" y=\"333.46875\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"170.901855\" y=\"333.46875\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"173.682617\" y=\"333.46875\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"176.463379\" y=\"333.46875\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"180.074219\" y=\"333.46875\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"182.85498\" y=\"333.46875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"185.35498\" y=\"333.46875\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"188.135742\" y=\"333.46875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"190.916504\" y=\"333.46875\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-50\" x=\"26.996094\" y=\"333.820312\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"29.496094\" y=\"333.820312\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"32.276855\" y=\"333.820312\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"34.776855\" y=\"333.820312\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"38.387695\" y=\"333.820312\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"41.168457\" y=\"333.820312\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"45.333496\" y=\"333.820312\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"48.114258\" y=\"333.820312\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"49.779297\" y=\"333.820312\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"50.890137\" y=\"333.820312\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"53.670898\" y=\"333.820312\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-60\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"8.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"11.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-50\" x=\"14.458008\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"16.958008\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"19.73877\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"20.849609\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"21.960449\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-60\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"7.226562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"9.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"12.507324\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"15.288086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"17.788086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"21.398926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"24.179688\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"25.568848\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-60\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"10.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"13.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-28\" x=\"14.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"17.783203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"20.563965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"21.674805\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"22.785645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"25.566406\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-60\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"7.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"10.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"11.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"14.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"17.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"18.344727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"21.679688\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-60\" x=\"106.753906\" y=\"119.773438\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"110.088867\" y=\"119.773438\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"112.869629\" y=\"119.773438\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"114.534668\" y=\"119.773438\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"115.645508\" y=\"119.773438\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"118.42627\" y=\"119.773438\"/>\n",
" <use xlink:href=\"#glyph0-56\" x=\"121.207031\" y=\"119.773438\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"122.317871\" y=\"119.773438\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"125.098633\" y=\"119.773438\"/>\n",
" <use xlink:href=\"#glyph0-61\" x=\"127.598633\" y=\"119.773438\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"130.379395\" y=\"119.773438\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-45\" x=\"317.488281\" y=\"214.296875\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"320.269043\" y=\"214.296875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"323.323242\" y=\"214.296875\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"326.104004\" y=\"214.296875\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"328.884766\" y=\"214.296875\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"331.384766\" y=\"214.296875\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"334.165527\" y=\"214.296875\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"336.946289\" y=\"214.296875\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"339.727051\" y=\"214.296875\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"342.507812\" y=\"214.296875\"/>\n",
" <use xlink:href=\"#glyph0-24\" x=\"343.896973\" y=\"214.296875\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-45\" x=\"19.105469\" y=\"231.792969\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"21.88623\" y=\"231.792969\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"25.49707\" y=\"231.792969\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"28.832031\" y=\"231.792969\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"31.612793\" y=\"231.792969\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"33.001953\" y=\"231.792969\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-45\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-29\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"8.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"10.002441\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"12.783203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"15.563965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"19.174805\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"20.285645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"23.066406\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"24.177246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"25.566406\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"28.347168\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"29.458008\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-45\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"8.615723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"11.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"13.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"15.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"18.623047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"21.403809\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"24.73877\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-45\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"8.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"9.731445\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"10.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"12.231445\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"13.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"16.123047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"19.458008\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"22.23877\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"25.019531\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"26.130371\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-44\" x=\"27.241211\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"30.021973\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-45\" x=\"103.539062\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"106.319824\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"109.100586\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"111.881348\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"113.546387\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"116.327148\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"119.10791\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"120.49707\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"124.10791\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"126.888672\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"128.553711\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"131.053711\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"133.834473\" y=\"76.519531\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"136.615234\" y=\"76.519531\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-45\" x=\"307.246094\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"310.026855\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"312.807617\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"315.588379\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"318.088379\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"320.869141\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"322.258301\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"325.039062\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"329.204102\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"333.369141\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"336.149902\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"338.930664\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"341.711426\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"344.492188\" y=\"136.066406\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"345.603027\" y=\"136.066406\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-45\" x=\"146.035156\" y=\"440.867188\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"148.815918\" y=\"440.867188\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"151.59668\" y=\"440.867188\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"155.20752\" y=\"440.867188\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"158.818359\" y=\"440.867188\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"161.599121\" y=\"440.867188\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"164.379883\" y=\"440.867188\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"167.160645\" y=\"440.867188\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"170.495605\" y=\"440.867188\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"173.276367\" y=\"440.867188\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-45\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"8.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"11.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"14.177246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"15.288086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"18.068848\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"20.849609\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"23.630371\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-45\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"5.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"8.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"11.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"13.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"15.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"17.231445\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"20.012207\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"22.512207\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"84.734375\" y=\"100.304688\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"88.899414\" y=\"100.304688\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"91.680176\" y=\"100.304688\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"92.791016\" y=\"100.304688\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"95.291016\" y=\"100.304688\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"98.071777\" y=\"100.304688\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"100.852539\" y=\"100.304688\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"103.633301\" y=\"100.304688\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"105.022461\" y=\"100.304688\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"4.165039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"6.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"9.445801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"10.834961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"13.615723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"15.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"17.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"20.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"22.226562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"25.007324\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"28.061523\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"452.707031\" y=\"172.15625\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"456.87207\" y=\"172.15625\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"457.98291\" y=\"172.15625\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"460.48291\" y=\"172.15625\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"462.147949\" y=\"172.15625\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"464.928711\" y=\"172.15625\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"467.428711\" y=\"172.15625\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"468.539551\" y=\"172.15625\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"469.928711\" y=\"172.15625\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"472.428711\" y=\"172.15625\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"476.039551\" y=\"172.15625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"4.165039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"5.275879\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"7.775879\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"9.440918\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"12.22168\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"14.72168\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"17.502441\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"18.891602\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"193.101562\" y=\"125.691406\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"197.266602\" y=\"125.691406\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"198.377441\" y=\"125.691406\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"199.488281\" y=\"125.691406\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"202.269043\" y=\"125.691406\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"205.049805\" y=\"125.691406\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"207.830566\" y=\"125.691406\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"211.441406\" y=\"125.691406\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"212.552246\" y=\"125.691406\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"215.333008\" y=\"125.691406\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"218.11377\" y=\"125.691406\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"4.165039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"6.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"9.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"10.837402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"13.337402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"16.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"18.056641\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"20.837402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"23.618164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"26.118164\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"75.925781\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"80.09082\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"82.871582\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"85.652344\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"86.763184\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"89.263184\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"92.874023\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"95.654785\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"98.154785\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"99.819824\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"102.600586\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"103.989746\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"106.770508\" y=\"327.0625\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"109.824707\" y=\"327.0625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"4.165039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"6.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"9.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"12.226562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"13.337402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"16.118164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"18.898926\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"327.996094\" y=\"60.195312\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"332.161133\" y=\"60.195312\"/>\n",
" <use xlink:href=\"#glyph0-60\" x=\"333.826172\" y=\"60.195312\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"337.161133\" y=\"60.195312\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"339.941895\" y=\"60.195312\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"344.106934\" y=\"60.195312\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"345.217773\" y=\"60.195312\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"342.355469\" y=\"129.414062\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"346.520508\" y=\"129.414062\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"348.185547\" y=\"129.414062\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"351.520508\" y=\"129.414062\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"354.30127\" y=\"129.414062\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"356.80127\" y=\"129.414062\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"359.30127\" y=\"129.414062\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"360.412109\" y=\"129.414062\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"363.192871\" y=\"129.414062\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-33\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"4.165039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"6.665039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"8.330078\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"11.11084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"13.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"15\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"18.334961\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-4\" x=\"234.632812\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"238.243652\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"241.578613\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"245.189453\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"248.800293\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"252.135254\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"254.635254\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"257.416016\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"258.526855\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"260.191895\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"262.972656\" y=\"265.714844\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"264.083496\" y=\"265.714844\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-4\" x=\"281.085938\" y=\"289.039062\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"284.696777\" y=\"289.039062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"287.477539\" y=\"289.039062\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"290.258301\" y=\"289.039062\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"294.42334\" y=\"289.039062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"295.53418\" y=\"289.039062\"/>\n",
" <use xlink:href=\"#glyph0-57\" x=\"298.314941\" y=\"289.039062\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"302.204102\" y=\"289.039062\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"303.314941\" y=\"289.039062\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"304.425781\" y=\"289.039062\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"308.59082\" y=\"289.039062\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-4\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"9.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"11.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"14.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"17.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"18.623047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"21.403809\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-4\" x=\"185.578125\" y=\"174.65625\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"189.188965\" y=\"174.65625\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"191.969727\" y=\"174.65625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"196.134766\" y=\"174.65625\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"198.915527\" y=\"174.65625\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"200.580566\" y=\"174.65625\"/>\n",
" <use xlink:href=\"#glyph0-61\" x=\"201.691406\" y=\"174.65625\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"204.472168\" y=\"174.65625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"207.25293\" y=\"174.65625\"/>\n",
" <use xlink:href=\"#glyph0-2\" x=\"210.033691\" y=\"174.65625\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"212.814453\" y=\"174.65625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-30\" x=\"76.984375\" y=\"400.144531\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"80.873535\" y=\"400.144531\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"84.484375\" y=\"400.144531\"/>\n",
" <use xlink:href=\"#glyph0-49\" x=\"87.819336\" y=\"400.144531\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"91.154297\" y=\"400.144531\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-30\" x=\"296.957031\" y=\"361.070312\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"300.846191\" y=\"361.070312\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"304.457031\" y=\"361.070312\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"305.567871\" y=\"361.070312\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"308.348633\" y=\"361.070312\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"311.129395\" y=\"361.070312\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"313.910156\" y=\"361.070312\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-30\" x=\"359.515625\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"363.404785\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"366.185547\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"368.685547\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-50\" x=\"371.466309\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"373.966309\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"376.74707\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"377.85791\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"380.638672\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"383.138672\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"385.638672\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"386.749512\" y=\"66.558594\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"390.084473\" y=\"66.558594\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-30\" x=\"298.433594\" y=\"215.574219\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"302.322754\" y=\"215.574219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"305.103516\" y=\"215.574219\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"307.884277\" y=\"215.574219\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"310.665039\" y=\"215.574219\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"313.165039\" y=\"215.574219\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"315.945801\" y=\"215.574219\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"317.056641\" y=\"215.574219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"319.837402\" y=\"215.574219\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"322.618164\" y=\"215.574219\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"325.672363\" y=\"215.574219\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-30\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"3.88916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"6.669922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"9.450684\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"11.950684\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"15.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"18.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"21.953125\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-30\" x=\"327.855469\" y=\"381.875\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"331.744629\" y=\"381.875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"333.409668\" y=\"381.875\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"336.19043\" y=\"381.875\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"338.971191\" y=\"381.875\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"341.751953\" y=\"381.875\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"344.532715\" y=\"381.875\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"347.867676\" y=\"381.875\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"350.648438\" y=\"381.875\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"354.259277\" y=\"381.875\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-30\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"3.88916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"5.554199\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"8.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"11.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"13.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"16.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"19.458008\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"22.512207\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"25.292969\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"26.682129\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"29.462891\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"31.12793\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"120.429688\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"123.764648\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"126.818848\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"128.483887\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"131.264648\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"135.429688\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"136.540527\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"139.321289\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"141.821289\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"142.932129\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"144.042969\" y=\"414.292969\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"145.153809\" y=\"414.292969\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"46.28125\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"49.616211\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"52.396973\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"55.177734\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"57.677734\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"60.458496\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"63.239258\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"66.02002\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"67.40918\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"68.79834\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"71.579102\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"74.359863\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"76.024902\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"77.135742\" y=\"133.113281\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"79.635742\" y=\"133.113281\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"7.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"9.169922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"10.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"12.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"15.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"18.342285\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"156.738281\" y=\"234.421875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"160.073242\" y=\"234.421875\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"162.854004\" y=\"234.421875\"/>\n",
" <use xlink:href=\"#glyph0-9\" x=\"165.354004\" y=\"234.421875\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"168.134766\" y=\"234.421875\"/>\n",
" <use xlink:href=\"#glyph0-8\" x=\"170.915527\" y=\"234.421875\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"41.929688\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"45.264648\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"48.04541\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"50.54541\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"53.04541\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"55.826172\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"56.937012\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"61.102051\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"63.882812\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"66.663574\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"69.444336\" y=\"380.589844\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"72.225098\" y=\"380.589844\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"124.546875\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"127.881836\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"130.662598\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"133.162598\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"135.662598\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"138.443359\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"139.554199\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"143.165039\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"145.945801\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"148.726562\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"151.507324\" y=\"177.851562\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"153.172363\" y=\"177.851562\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"316.5625\" y=\"407.839844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"319.897461\" y=\"407.839844\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"322.678223\" y=\"407.839844\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"325.178223\" y=\"407.839844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"327.678223\" y=\"407.839844\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"330.458984\" y=\"407.839844\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"331.569824\" y=\"407.839844\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"335.180664\" y=\"407.839844\"/>\n",
" <use xlink:href=\"#glyph0-49\" x=\"338.515625\" y=\"407.839844\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"341.850586\" y=\"407.839844\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"95.542969\" y=\"289.914062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"98.87793\" y=\"289.914062\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"101.658691\" y=\"289.914062\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"104.439453\" y=\"289.914062\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"107.220215\" y=\"289.914062\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"110.000977\" y=\"289.914062\"/>\n",
" <use xlink:href=\"#glyph0-8\" x=\"112.781738\" y=\"289.914062\"/>\n",
" <use xlink:href=\"#glyph0-34\" x=\"115.5625\" y=\"289.914062\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"8.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"10.285645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"11.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"14.177246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-34\" x=\"18.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-34\" x=\"21.123047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"23.903809\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"174.550781\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"177.885742\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"180.666504\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"182.055664\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"183.166504\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"184.555664\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"187.890625\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"189.001465\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"191.501465\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"194.282227\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"195.393066\" y=\"162.855469\"/>\n",
" <use xlink:href=\"#glyph0-9\" x=\"198.173828\" y=\"162.855469\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"175.714844\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"179.049805\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"181.830566\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"184.611328\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"188.222168\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"191.00293\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"193.783691\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"197.118652\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"198.229492\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"200.729492\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"203.510254\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"207.675293\" y=\"209.300781\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"209.340332\" y=\"209.300781\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"219.476562\" y=\"112.472656\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"222.811523\" y=\"112.472656\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"223.922363\" y=\"112.472656\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"226.703125\" y=\"112.472656\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"228.368164\" y=\"112.472656\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"230.033203\" y=\"112.472656\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"232.813965\" y=\"112.472656\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"236.424805\" y=\"112.472656\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"239.205566\" y=\"112.472656\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"241.986328\" y=\"112.472656\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"243.097168\" y=\"112.472656\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"250.25\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"253.584961\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"254.695801\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"257.476562\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"259.141602\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"260.806641\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"263.587402\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"267.198242\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"269.979004\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"274.144043\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"276.924805\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"278.313965\" y=\"298.238281\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"279.703125\" y=\"298.238281\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"175.046875\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"178.381836\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"181.162598\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"182.273438\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"185.054199\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"187.834961\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"191.445801\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"194.780762\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"198.391602\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"201.726562\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-34\" x=\"204.507324\" y=\"132.460938\"/>\n",
" <use xlink:href=\"#glyph0-8\" x=\"207.288086\" y=\"132.460938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"58.535156\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"61.870117\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"63.535156\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"66.315918\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"68.815918\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"71.315918\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"74.926758\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"77.70752\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"80.20752\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"81.318359\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"84.099121\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"87.709961\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"91.320801\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"94.101562\" y=\"144.414062\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"97.712402\" y=\"144.414062\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"305.089844\" y=\"204.183594\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"308.424805\" y=\"204.183594\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"310.089844\" y=\"204.183594\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"312.870605\" y=\"204.183594\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"315.651367\" y=\"204.183594\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"318.432129\" y=\"204.183594\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"320.932129\" y=\"204.183594\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"323.712891\" y=\"204.183594\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"326.212891\" y=\"204.183594\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"328.993652\" y=\"204.183594\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"330.382812\" y=\"204.183594\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"242.515625\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"245.850586\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"247.515625\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"250.296387\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"251.685547\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"255.296387\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"258.077148\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"260.577148\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"264.742188\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"267.522949\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"269.187988\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"270.577148\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"271.687988\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"274.46875\" y=\"122.878906\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"275.57959\" y=\"122.878906\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"340.832031\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"344.166992\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"345.832031\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"348.612793\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"350.001953\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"352.782715\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"355.563477\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"356.674316\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"359.455078\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"362.23584\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"365.016602\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"366.681641\" y=\"346.375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"369.462402\" y=\"346.375\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-26\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"7.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"11.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"14.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"16.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"18.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"20.285645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"23.066406\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"25.847168\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"28.62793\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-39\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"6.945801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"9.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"11.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"14.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"16.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"19.733887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"22.514648\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-39\" x=\"245.296875\" y=\"278.34375\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"248.907715\" y=\"278.34375\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"250.296875\" y=\"278.34375\"/>\n",
" <use xlink:href=\"#glyph0-60\" x=\"253.631836\" y=\"278.34375\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"256.966797\" y=\"278.34375\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"258.355957\" y=\"278.34375\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"261.966797\" y=\"278.34375\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"265.020996\" y=\"278.34375\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"268.355957\" y=\"278.34375\"/>\n",
" <use xlink:href=\"#glyph0-8\" x=\"271.136719\" y=\"278.34375\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-39\" x=\"320.632812\" y=\"105.273438\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"324.243652\" y=\"105.273438\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"327.024414\" y=\"105.273438\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"330.635254\" y=\"105.273438\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"332.024414\" y=\"105.273438\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"334.805176\" y=\"105.273438\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"337.585938\" y=\"105.273438\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"340.366699\" y=\"105.273438\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"344.531738\" y=\"105.273438\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-39\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"3.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"6.391602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"9.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"11.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"15.563965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"18.344727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"21.125488\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"22.236328\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"24.736328\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"27.51709\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"30.297852\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"33.078613\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-39\" x=\"338.28125\" y=\"270.511719\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"341.89209\" y=\"270.511719\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"344.672852\" y=\"270.511719\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"348.837891\" y=\"270.511719\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"351.618652\" y=\"270.511719\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"352.729492\" y=\"270.511719\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"355.510254\" y=\"270.511719\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"358.291016\" y=\"270.511719\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"361.625977\" y=\"270.511719\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"363.291016\" y=\"270.511719\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-39\" x=\"61.835938\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"65.446777\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"68.227539\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"71.008301\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"73.789062\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"76.569824\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"79.350586\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"82.685547\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"85.466309\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"87.131348\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"89.912109\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"92.692871\" y=\"296.402344\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"94.35791\" y=\"296.402344\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-42\" x=\"336.511719\" y=\"302.203125\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"339.84668\" y=\"302.203125\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"342.627441\" y=\"302.203125\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"345.408203\" y=\"302.203125\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"348.188965\" y=\"302.203125\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"352.354004\" y=\"302.203125\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"355.134766\" y=\"302.203125\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"356.245605\" y=\"302.203125\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"359.026367\" y=\"302.203125\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"361.807129\" y=\"302.203125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-42\" x=\"184.617188\" y=\"340.960938\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"187.952148\" y=\"340.960938\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"190.452148\" y=\"340.960938\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"193.23291\" y=\"340.960938\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"194.34375\" y=\"340.960938\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"197.124512\" y=\"340.960938\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"198.513672\" y=\"340.960938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-42\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"8.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"11.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"14.458008\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"17.792969\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"20.292969\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-42\" x=\"109.277344\" y=\"407.324219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"112.612305\" y=\"407.324219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"115.393066\" y=\"407.324219\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"118.173828\" y=\"407.324219\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"119.562988\" y=\"407.324219\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"122.34375\" y=\"407.324219\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"125.124512\" y=\"407.324219\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"127.905273\" y=\"407.324219\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"130.686035\" y=\"407.324219\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-42\" x=\"123.398438\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"126.733398\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"129.51416\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"133.679199\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"136.459961\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"137.570801\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"138.681641\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"142.29248\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"145.073242\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"146.184082\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"148.964844\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"151.745605\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"152.856445\" y=\"225.074219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"155.637207\" y=\"225.074219\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-42\" x=\"114.726562\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"118.061523\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"122.226562\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"125.007324\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"126.672363\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"128.061523\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"131.115723\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"133.896484\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"136.396484\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"139.177246\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"141.958008\" y=\"98.835938\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"145.292969\" y=\"98.835938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-42\" x=\"430.152344\" y=\"215.738281\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"433.487305\" y=\"215.738281\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"434.876465\" y=\"215.738281\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"437.657227\" y=\"215.738281\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"440.157227\" y=\"215.738281\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"442.937988\" y=\"215.738281\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"445.992188\" y=\"215.738281\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"448.772949\" y=\"215.738281\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"451.553711\" y=\"215.738281\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"454.334473\" y=\"215.738281\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-42\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"4.724121\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"7.504883\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"10.285645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"11.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"14.177246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"17.231445\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-42\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"6.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"7.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"10.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"11.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"14.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"17.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"19.733887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"22.514648\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"23.625488\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"24.736328\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"25.847168\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-42\" x=\"231.726562\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"235.061523\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"237.561523\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"238.672363\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"241.172363\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"243.953125\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"245.063965\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"247.844727\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"250.625488\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"253.40625\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"255.90625\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"258.687012\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"259.797852\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"262.578613\" y=\"412.453125\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"265.359375\" y=\"412.453125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-51\" x=\"133.796875\" y=\"191.53125\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"136.851074\" y=\"191.53125\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"139.631836\" y=\"191.53125\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"142.131836\" y=\"191.53125\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"143.520996\" y=\"191.53125\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"144.631836\" y=\"191.53125\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"145.742676\" y=\"191.53125\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"148.523438\" y=\"191.53125\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"151.304199\" y=\"191.53125\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"154.63916\" y=\"191.53125\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"157.419922\" y=\"191.53125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-51\" x=\"98.171875\" y=\"83.835938\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"101.226074\" y=\"83.835938\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"104.006836\" y=\"83.835938\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"106.787598\" y=\"83.835938\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"109.568359\" y=\"83.835938\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"112.068359\" y=\"83.835938\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"113.45752\" y=\"83.835938\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"116.238281\" y=\"83.835938\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"119.573242\" y=\"83.835938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-51\" x=\"58.894531\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"61.94873\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"64.729492\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"67.510254\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"71.121094\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"73.901855\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"75.566895\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"76.677734\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"79.458496\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"82.239258\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"84.739258\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"87.52002\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"90.300781\" y=\"331.300781\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"92.800781\" y=\"331.300781\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-51\" x=\"236.664062\" y=\"306.453125\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"239.718262\" y=\"306.453125\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"242.499023\" y=\"306.453125\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"243.609863\" y=\"306.453125\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"246.390625\" y=\"306.453125\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"249.444824\" y=\"306.453125\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"252.225586\" y=\"306.453125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-51\" x=\"159.910156\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"162.964355\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"165.745117\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"168.525879\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"172.690918\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"175.47168\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"177.97168\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-30\" x=\"181.58252\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"185.47168\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"188.525879\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"191.580078\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"192.969238\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"196.580078\" y=\"436.148438\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"199.915039\" y=\"436.148438\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-29\" x=\"29.640625\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"33.251465\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"36.862305\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"40.197266\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"42.978027\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"46.588867\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"49.369629\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"51.869629\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"54.650391\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"57.431152\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"59.096191\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"61.596191\" y=\"261.6875\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"64.376953\" y=\"261.6875\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-24\" x=\"189.265625\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"192.600586\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"193.711426\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"194.822266\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"195.933105\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"198.713867\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"201.494629\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"202.605469\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"205.38623\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"208.166992\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"211.777832\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"214.558594\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"217.339355\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"218.450195\" y=\"28.226562\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"221.230957\" y=\"28.226562\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-24\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"3.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"4.445801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"7.226562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"9.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"12.507324\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"15.288086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"16.677246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"20.288086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"23.068848\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"25.568848\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"28.349609\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"31.130371\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"33.911133\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"36.691895\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-49\" x=\"142.171875\" y=\"364.542969\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"145.506836\" y=\"364.542969\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"148.287598\" y=\"364.542969\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"150.787598\" y=\"364.542969\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"151.898438\" y=\"364.542969\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"154.679199\" y=\"364.542969\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"158.290039\" y=\"364.542969\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"159.400879\" y=\"364.542969\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"162.181641\" y=\"364.542969\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"164.962402\" y=\"364.542969\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-49\" x=\"243.96875\" y=\"159.195312\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"247.303711\" y=\"159.195312\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"250.084473\" y=\"159.195312\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"252.865234\" y=\"159.195312\"/>\n",
" <use xlink:href=\"#glyph0-39\" x=\"255.645996\" y=\"159.195312\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"259.256836\" y=\"159.195312\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"262.037598\" y=\"159.195312\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-49\" x=\"95.015625\" y=\"431.03125\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"98.350586\" y=\"431.03125\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"100.850586\" y=\"431.03125\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"103.631348\" y=\"431.03125\"/>\n",
" <use xlink:href=\"#glyph0-26\" x=\"106.131348\" y=\"431.03125\"/>\n",
" <use xlink:href=\"#glyph0-16\" x=\"109.466309\" y=\"431.03125\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"113.077148\" y=\"431.03125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-62\" x=\"127.960938\" y=\"89.464844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"131.015137\" y=\"89.464844\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"133.795898\" y=\"89.464844\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"136.295898\" y=\"89.464844\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"139.07666\" y=\"89.464844\"/>\n",
" <use xlink:href=\"#glyph0-51\" x=\"141.857422\" y=\"89.464844\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"144.911621\" y=\"89.464844\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"147.411621\" y=\"89.464844\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-20\" x=\"168.222656\" y=\"414.917969\"/>\n",
" <use xlink:href=\"#glyph0-30\" x=\"171.003418\" y=\"414.917969\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"174.892578\" y=\"414.917969\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"176.003418\" y=\"414.917969\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"177.114258\" y=\"414.917969\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"179.614258\" y=\"414.917969\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"180.725098\" y=\"414.917969\"/>\n",
" <use xlink:href=\"#glyph0-27\" x=\"183.505859\" y=\"414.917969\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"186.84082\" y=\"414.917969\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"189.621582\" y=\"414.917969\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-20\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-30\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"6.669922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"9.450684\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"12.231445\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-42\" x=\"15.012207\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"18.347168\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"19.736328\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"22.51709\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"25.297852\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"26.408691\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"29.189453\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-20\" x=\"398.226562\" y=\"159.527344\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"401.007324\" y=\"159.527344\"/>\n",
" <use xlink:href=\"#glyph0-45\" x=\"403.788086\" y=\"159.527344\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"406.568848\" y=\"159.527344\"/>\n",
" <use xlink:href=\"#glyph0-4\" x=\"409.903809\" y=\"159.527344\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"413.514648\" y=\"159.527344\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"414.903809\" y=\"159.527344\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-11\" x=\"157.257812\" y=\"467.085938\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"160.038574\" y=\"467.085938\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"162.819336\" y=\"467.085938\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"165.600098\" y=\"467.085938\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"166.710938\" y=\"467.085938\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"169.491699\" y=\"467.085938\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"170.602539\" y=\"467.085938\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"173.102539\" y=\"467.085938\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"175.883301\" y=\"467.085938\"/>\n",
" <use xlink:href=\"#glyph0-44\" x=\"177.272461\" y=\"467.085938\"/>\n",
" <use xlink:href=\"#glyph0-9\" x=\"180.053223\" y=\"467.085938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-11\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"7.226562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"10.007324\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"12.788086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"16.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"19.733887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"22.514648\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"23.625488\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-11\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"9.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"11.118164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"13.898926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"16.679688\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"19.460449\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-11\" x=\"340.375\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"343.155762\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"344.266602\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"347.047363\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"349.547363\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"352.328125\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"355.108887\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"357.889648\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"359.554688\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"362.335449\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-9\" x=\"365.116211\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"367.896973\" y=\"100.65625\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"370.677734\" y=\"100.65625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-11\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"9.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"11.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"14.733887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"17.514648\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"20.014648\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"22.79541\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"26.960449\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"29.741211\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"32.521973\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-11\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"9.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"11.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"14.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"17.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"20.014648\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"22.79541\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"24.18457\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"25.57373\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-11\" x=\"90.085938\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"92.866699\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"95.647461\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"98.428223\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"100.093262\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"102.874023\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"106.484863\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"110.649902\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"113.430664\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"115.095703\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"116.760742\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"117.871582\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"120.371582\" y=\"341.839844\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"123.152344\" y=\"341.839844\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-11\" x=\"219.796875\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"222.577637\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"225.358398\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"228.13916\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"230.919922\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"232.030762\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-61\" x=\"233.141602\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"235.922363\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"238.703125\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"241.483887\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"242.594727\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"243.705566\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"246.486328\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"249.26709\" y=\"426.554688\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"250.932129\" y=\"426.554688\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-11\" x=\"175.679688\" y=\"198.328125\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"178.460449\" y=\"198.328125\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"179.849609\" y=\"198.328125\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"182.630371\" y=\"198.328125\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"183.741211\" y=\"198.328125\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"184.852051\" y=\"198.328125\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"185.962891\" y=\"198.328125\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"188.743652\" y=\"198.328125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-11\" x=\"331.355469\" y=\"139.691406\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"334.13623\" y=\"139.691406\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"336.63623\" y=\"139.691406\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"338.025391\" y=\"139.691406\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"340.806152\" y=\"139.691406\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"343.586914\" y=\"139.691406\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"346.367676\" y=\"139.691406\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"348.867676\" y=\"139.691406\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"349.978516\" y=\"139.691406\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-31\" x=\"279.011719\" y=\"67.835938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"281.79248\" y=\"67.835938\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"284.573242\" y=\"67.835938\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"287.354004\" y=\"67.835938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"288.464844\" y=\"67.835938\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"291.245605\" y=\"67.835938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"293.745605\" y=\"67.835938\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"296.526367\" y=\"67.835938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-31\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"9.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"13.618164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"16.398926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"19.179688\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"20.290527\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"22.790527\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"25.571289\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"28.071289\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"30.852051\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"32.51709\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"33.62793\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-31\" x=\"40.804688\" y=\"176.359375\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"43.585449\" y=\"176.359375\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"44.696289\" y=\"176.359375\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"46.085449\" y=\"176.359375\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"48.866211\" y=\"176.359375\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"51.646973\" y=\"176.359375\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"54.146973\" y=\"176.359375\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"56.646973\" y=\"176.359375\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-31\" x=\"146.175781\" y=\"220.578125\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"148.956543\" y=\"220.578125\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"151.737305\" y=\"220.578125\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"154.518066\" y=\"220.578125\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"157.018066\" y=\"220.578125\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"159.798828\" y=\"220.578125\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"163.963867\" y=\"220.578125\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"166.744629\" y=\"220.578125\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"169.244629\" y=\"220.578125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-31\" x=\"298.351562\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"301.132324\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"302.797363\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"305.578125\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"306.688965\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"309.188965\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"311.969727\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"314.750488\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"317.53125\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"320.312012\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"321.422852\" y=\"237.414062\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"325.587891\" y=\"237.414062\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"92.394531\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"94.894531\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"97.675293\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"99.340332\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"100.451172\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"103.231934\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"106.012695\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"108.793457\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"112.958496\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"115.739258\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"118.52002\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"119.630859\" y=\"124.132812\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"120.741699\" y=\"124.132812\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"2.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"5.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"6.669922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"9.450684\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"12.231445\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"15.012207\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"17.792969\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"20.292969\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"22.792969\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"13.421875\" y=\"242.773438\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"15.921875\" y=\"242.773438\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"18.702637\" y=\"242.773438\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"21.483398\" y=\"242.773438\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"22.872559\" y=\"242.773438\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"23.983398\" y=\"242.773438\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"2.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"5.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"8.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"9.726562\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"10.837402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"13.337402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"16.118164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"18.898926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"21.679688\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"23.344727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"26.125488\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"460.59375\" y=\"248.253906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"463.09375\" y=\"248.253906\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"465.874512\" y=\"248.253906\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"466.985352\" y=\"248.253906\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"468.096191\" y=\"248.253906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"470.876953\" y=\"248.253906\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"473.657715\" y=\"248.253906\"/>\n",
" <use xlink:href=\"#glyph0-34\" x=\"476.438477\" y=\"248.253906\"/>\n",
" <use xlink:href=\"#glyph0-34\" x=\"479.219238\" y=\"248.253906\"/>\n",
" <use xlink:href=\"#glyph0-44\" x=\"482\" y=\"248.253906\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"205.207031\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"207.707031\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"210.487793\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"212.152832\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"213.263672\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"215.763672\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"218.544434\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"221.325195\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"225.490234\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"228.270996\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-61\" x=\"230.770996\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"233.551758\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"236.33252\" y=\"278.753906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"239.113281\" y=\"278.753906\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"166.917969\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"169.417969\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"172.19873\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"174.979492\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"177.760254\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"178.871094\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"181.651855\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"182.762695\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"185.543457\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"188.324219\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"189.989258\" y=\"304.300781\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"191.100098\" y=\"304.300781\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"229.828125\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"232.328125\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"235.108887\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"236.219727\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"239.000488\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"241.78125\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"244.562012\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"247.342773\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"248.453613\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"249.564453\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"252.345215\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"255.125977\" y=\"121.488281\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"256.791016\" y=\"121.488281\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"2.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"5.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"6.669922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"7.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"10.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"13.061523\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"2.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"6.665039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"9.445801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"11.11084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"13.61084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"16.391602\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"388.003906\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"390.503906\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"393.284668\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"396.06543\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"398.56543\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"400.230469\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"401.341309\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"404.12207\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"406.902832\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"408.291992\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"410.791992\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"413.572754\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"417.183594\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"419.964355\" y=\"249.566406\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"422.745117\" y=\"249.566406\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"2.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"3.88916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"5.554199\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"6.665039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"9.165039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"11.945801\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-22\" x=\"76.550781\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"79.050781\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"81.550781\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"84.331543\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"87.112305\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"88.777344\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"91.277344\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"94.058105\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"96.558105\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"99.338867\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"100.728027\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"103.508789\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"106.289551\" y=\"286.980469\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"109.070312\" y=\"286.980469\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-25\" x=\"111.726562\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"114.507324\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"117.288086\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"120.068848\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"122.849609\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"125.630371\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"128.411133\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"131.191895\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"133.972656\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"136.472656\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"138.972656\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"141.753418\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"145.918457\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"148.699219\" y=\"188.941406\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"150.088379\" y=\"188.941406\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-25\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"6.950684\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"9.731445\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"13.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"16.123047\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-25\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"6.950684\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"9.731445\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-19\" x=\"12.231445\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"15.285645\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-25\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"8.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"10.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"15.007324\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"16.118164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"17.229004\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"19.729004\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-25\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"7.783203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"9.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"11.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"13.063965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"14.174805\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"17.785645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"20.566406\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"22.231445\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"23.342285\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-25\" x=\"114.265625\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"117.046387\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"119.827148\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"122.60791\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"125.388672\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"128.169434\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"130.950195\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"133.730957\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"136.511719\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"139.29248\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"140.681641\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"143.462402\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"144.573242\" y=\"111.882812\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"147.354004\" y=\"111.882812\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-25\" x=\"212.882812\" y=\"99.84375\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"215.663574\" y=\"99.84375\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"218.163574\" y=\"99.84375\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"220.944336\" y=\"99.84375\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"223.725098\" y=\"99.84375\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"226.505859\" y=\"99.84375\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"229.286621\" y=\"99.84375\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-5\" x=\"122.152344\" y=\"454.640625\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"124.933105\" y=\"454.640625\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"127.433105\" y=\"454.640625\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"130.213867\" y=\"454.640625\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"134.378906\" y=\"454.640625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"137.159668\" y=\"454.640625\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"139.94043\" y=\"454.640625\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"143.55127\" y=\"454.640625\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"146.05127\" y=\"454.640625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"150.216309\" y=\"454.640625\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"152.99707\" y=\"454.640625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-5\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"8.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"10.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"13.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"16.123047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"17.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-48\" x=\"20.014648\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-33\" x=\"23.349609\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-23\" x=\"27.514648\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-5\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"4.169922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"6.950684\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"8.615723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"11.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"14.177246\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"16.958008\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-5\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"9.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"11.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-8\" x=\"14.733887\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-5\" x=\"179.828125\" y=\"222.363281\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"182.608887\" y=\"222.363281\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"183.719727\" y=\"222.363281\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"186.500488\" y=\"222.363281\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"187.889648\" y=\"222.363281\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"190.67041\" y=\"222.363281\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"193.451172\" y=\"222.363281\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"194.840332\" y=\"222.363281\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"197.621094\" y=\"222.363281\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-5\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"4.445801\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"5.556641\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"8.056641\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"10.837402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"13.618164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"16.398926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"18.063965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"20.844727\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-5\" x=\"416.855469\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"419.63623\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"421.025391\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"423.806152\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"424.916992\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"427.416992\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"430.197754\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"431.586914\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"435.751953\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"438.532715\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"441.313477\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"442.424316\" y=\"170.929688\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"445.205078\" y=\"170.929688\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-5\" x=\"4.667969\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"7.44873\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"9.94873\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"12.729492\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"15.510254\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"17.175293\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"18.564453\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"19.675293\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"22.175293\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"24.956055\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"26.345215\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"28.010254\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"30.791016\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"33.571777\" y=\"256.421875\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"36.071777\" y=\"256.421875\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-43\" x=\"206.144531\" y=\"153.347656\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"207.533691\" y=\"153.347656\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"210.314453\" y=\"153.347656\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"213.095215\" y=\"153.347656\"/>\n",
" <use xlink:href=\"#glyph0-61\" x=\"215.595215\" y=\"153.347656\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"218.375977\" y=\"153.347656\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"221.156738\" y=\"153.347656\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"223.9375\" y=\"153.347656\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-43\" x=\"390.355469\" y=\"80.992188\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"391.744629\" y=\"80.992188\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"394.244629\" y=\"80.992188\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"397.025391\" y=\"80.992188\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"399.806152\" y=\"80.992188\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"401.195312\" y=\"80.992188\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-43\" x=\"191\" y=\"109.683594\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"192.38916\" y=\"109.683594\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"193.5\" y=\"109.683594\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"196.280762\" y=\"109.683594\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"198.780762\" y=\"109.683594\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"201.561523\" y=\"109.683594\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"204.342285\" y=\"109.683594\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"207.123047\" y=\"109.683594\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"209.623047\" y=\"109.683594\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-43\" x=\"237.863281\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"239.252441\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"242.033203\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"244.533203\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"247.313965\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"248.424805\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"251.205566\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"253.986328\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"255.375488\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"258.15625\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"260.937012\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"263.437012\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"266.217773\" y=\"111.855469\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"268.998535\" y=\"111.855469\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-43\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"1.38916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"3.054199\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"5.834961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"8.615723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"11.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"13.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"17.507324\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"20.288086\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-38\" x=\"352.515625\" y=\"114.46875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"355.296387\" y=\"114.46875\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"358.077148\" y=\"114.46875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"360.85791\" y=\"114.46875\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"363.638672\" y=\"114.46875\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"366.138672\" y=\"114.46875\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"367.527832\" y=\"114.46875\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"368.638672\" y=\"114.46875\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-38\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"8.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"10.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"13.623047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"17.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"20.014648\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"21.125488\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-38\" x=\"97.945312\" y=\"379.273438\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"100.726074\" y=\"379.273438\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"101.836914\" y=\"379.273438\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"103.501953\" y=\"379.273438\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"106.001953\" y=\"379.273438\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"108.782715\" y=\"379.273438\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"111.563477\" y=\"379.273438\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"113.228516\" y=\"379.273438\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"116.009277\" y=\"379.273438\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"118.790039\" y=\"379.273438\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"120.455078\" y=\"379.273438\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-38\" x=\"138.371094\" y=\"415.820312\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"141.151855\" y=\"415.820312\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"143.932617\" y=\"415.820312\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"146.713379\" y=\"415.820312\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"148.102539\" y=\"415.820312\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"149.767578\" y=\"415.820312\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"152.54834\" y=\"415.820312\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"155.04834\" y=\"415.820312\"/>\n",
" <use xlink:href=\"#glyph0-57\" x=\"157.829102\" y=\"415.820312\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"161.718262\" y=\"415.820312\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-40\" x=\"304.5625\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"307.343262\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"310.124023\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"311.789062\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"314.569824\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"317.350586\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"320.131348\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"321.520508\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"324.30127\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"327.082031\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-44\" x=\"329.862793\" y=\"122.285156\"/>\n",
" <use xlink:href=\"#glyph0-9\" x=\"332.643555\" y=\"122.285156\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-40\" x=\"82.207031\" y=\"299.003906\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"84.987793\" y=\"299.003906\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"87.768555\" y=\"299.003906\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"90.549316\" y=\"299.003906\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"93.330078\" y=\"299.003906\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"94.719238\" y=\"299.003906\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"98.884277\" y=\"299.003906\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-40\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"5.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"8.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"10.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"13.623047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"16.403809\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-12\" x=\"133.246094\" y=\"209.335938\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"134.356934\" y=\"209.335938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"138.521973\" y=\"209.335938\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"141.302734\" y=\"209.335938\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"142.967773\" y=\"209.335938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"145.467773\" y=\"209.335938\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"148.248535\" y=\"209.335938\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"151.029297\" y=\"209.335938\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"153.810059\" y=\"209.335938\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"156.59082\" y=\"209.335938\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"157.70166\" y=\"209.335938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-12\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"1.11084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"9.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"11.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"14.733887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"15.844727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"16.955566\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"18.066406\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-56\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"1.11084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"9.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"12.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"15.014648\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-56\" x=\"265.691406\" y=\"437.15625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"266.802246\" y=\"437.15625\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"269.583008\" y=\"437.15625\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"270.972168\" y=\"437.15625\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"272.361328\" y=\"437.15625\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"275.14209\" y=\"437.15625\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"277.64209\" y=\"437.15625\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"280.422852\" y=\"437.15625\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"283.203613\" y=\"437.15625\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"285.984375\" y=\"437.15625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-56\" x=\"182.472656\" y=\"34.777344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"183.583496\" y=\"34.777344\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"186.364258\" y=\"34.777344\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"188.029297\" y=\"34.777344\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"190.810059\" y=\"34.777344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"194.975098\" y=\"34.777344\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"197.755859\" y=\"34.777344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"198.866699\" y=\"34.777344\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"201.647461\" y=\"34.777344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"202.758301\" y=\"34.777344\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"205.539062\" y=\"34.777344\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-56\" x=\"164.453125\" y=\"318.800781\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"165.563965\" y=\"318.800781\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"169.729004\" y=\"318.800781\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"172.229004\" y=\"318.800781\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"175.009766\" y=\"318.800781\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"179.174805\" y=\"318.800781\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"181.955566\" y=\"318.800781\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"184.736328\" y=\"318.800781\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-58\" x=\"371.765625\" y=\"296.453125\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"374.265625\" y=\"296.453125\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"377.046387\" y=\"296.453125\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"379.827148\" y=\"296.453125\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"382.60791\" y=\"296.453125\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"383.71875\" y=\"296.453125\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"384.82959\" y=\"296.453125\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"385.94043\" y=\"296.453125\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"388.721191\" y=\"296.453125\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-37\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"1.11084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"9.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"12.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"16.398926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"19.179688\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"20.844727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"21.955566\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-37\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"1.11084\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"8.056641\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"10.837402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"13.618164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"16.398926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"19.179688\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"20.568848\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-37\" x=\"80.183594\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"81.294434\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"84.075195\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"86.575195\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"89.355957\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"92.136719\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"94.91748\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"96.58252\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"99.363281\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"100.474121\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"101.584961\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"104.365723\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"107.146484\" y=\"81.449219\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"109.927246\" y=\"81.449219\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-37\" x=\"199.054688\" y=\"405.054688\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"200.165527\" y=\"405.054688\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"202.946289\" y=\"405.054688\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"205.727051\" y=\"405.054688\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"208.507812\" y=\"405.054688\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"211.288574\" y=\"405.054688\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"213.788574\" y=\"405.054688\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"216.569336\" y=\"405.054688\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"219.350098\" y=\"405.054688\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"221.850098\" y=\"405.054688\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"224.630859\" y=\"405.054688\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-10\" x=\"312.128906\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"316.293945\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"319.074707\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"321.855469\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"324.63623\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"325.74707\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"328.527832\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"329.638672\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"332.419434\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-9\" x=\"335.200195\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-9\" x=\"337.980957\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"340.761719\" y=\"231.378906\"/>\n",
" <use xlink:href=\"#glyph0-13\" x=\"343.54248\" y=\"231.378906\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-10\" x=\"351.011719\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"355.176758\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"357.95752\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"360.738281\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"363.519043\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"366.299805\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"369.080566\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"370.745605\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"373.245605\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"376.026367\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"378.807129\" y=\"306.492188\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"380.196289\" y=\"306.492188\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-10\" x=\"135.644531\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"139.80957\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"142.590332\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"144.255371\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"146.755371\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"149.536133\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"152.316895\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"155.097656\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"157.597656\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"160.378418\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"161.489258\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"164.27002\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"165.935059\" y=\"172.832031\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"167.045898\" y=\"172.832031\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-10\" x=\"199.335938\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"203.500977\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"206.281738\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"207.946777\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"210.727539\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"213.508301\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"215.17334\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"216.28418\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"219.064941\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"221.845703\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"223.510742\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"226.291504\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"230.456543\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"233.237305\" y=\"422.941406\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"234.902344\" y=\"422.941406\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-10\" x=\"66.714844\" y=\"206.753906\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"70.879883\" y=\"206.753906\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"73.660645\" y=\"206.753906\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"75.049805\" y=\"206.753906\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"77.830566\" y=\"206.753906\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"80.611328\" y=\"206.753906\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"83.39209\" y=\"206.753906\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-10\" x=\"327.464844\" y=\"116.402344\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"331.629883\" y=\"116.402344\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"334.410645\" y=\"116.402344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"336.075684\" y=\"116.402344\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"338.856445\" y=\"116.402344\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"341.356445\" y=\"116.402344\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"344.137207\" y=\"116.402344\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"346.637207\" y=\"116.402344\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"347.748047\" y=\"116.402344\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"350.528809\" y=\"116.402344\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-10\" x=\"182.941406\" y=\"300.875\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"187.106445\" y=\"300.875\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"188.217285\" y=\"300.875\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"190.998047\" y=\"300.875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"192.663086\" y=\"300.875\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"195.443848\" y=\"300.875\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"198.224609\" y=\"300.875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"199.889648\" y=\"300.875\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"202.67041\" y=\"300.875\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"205.17041\" y=\"300.875\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-10\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-56\" x=\"4.165039\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"5.275879\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"8.056641\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"10.837402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"13.618164\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"16.398926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"17.509766\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"20.290527\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"22.790527\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"25.571289\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"28.352051\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"31.132812\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"33.913574\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"36.694336\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-10\" x=\"250.875\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"255.040039\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"257.820801\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"260.601562\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"263.382324\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"265.047363\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"266.712402\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"269.493164\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"272.273926\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"273.384766\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"274.495605\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"275.606445\" y=\"53.464844\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"278.387207\" y=\"53.464844\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-15\" x=\"233.921875\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"236.702637\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"239.483398\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"242.26416\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"245.875\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"248.655762\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"249.766602\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"252.547363\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"254.212402\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"256.993164\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"259.773926\" y=\"134.964844\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"260.884766\" y=\"134.964844\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-35\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"7.783203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"10.563965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-1\" x=\"13.344727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-2\" x=\"16.125488\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-3\" x=\"18.90625\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-36\" x=\"303.199219\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"305.97998\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"307.09082\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"309.871582\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"311.536621\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"313.20166\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"315.982422\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"318.763184\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"319.874023\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"322.654785\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"323.765625\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"326.546387\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"329.046387\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"331.827148\" y=\"103.804688\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"333.216309\" y=\"103.804688\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-36\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"3.891602\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"8.337402\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"10.002441\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"12.783203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"15.283203\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"18.063965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"20.844727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"23.625488\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"26.40625\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"27.51709\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"28.62793\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-36\" x=\"290.761719\" y=\"229.90625\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"293.54248\" y=\"229.90625\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"296.323242\" y=\"229.90625\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"299.104004\" y=\"229.90625\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"301.604004\" y=\"229.90625\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"304.104004\" y=\"229.90625\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"305.769043\" y=\"229.90625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-36\" x=\"23.097656\" y=\"345.695312\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"25.878418\" y=\"345.695312\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"27.543457\" y=\"345.695312\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"30.324219\" y=\"345.695312\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"32.824219\" y=\"345.695312\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"33.935059\" y=\"345.695312\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"36.435059\" y=\"345.695312\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"39.21582\" y=\"345.695312\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"43.380859\" y=\"345.695312\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"46.161621\" y=\"345.695312\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"48.942383\" y=\"345.695312\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-36\" x=\"219.035156\" y=\"168.507812\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"221.815918\" y=\"168.507812\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"223.480957\" y=\"168.507812\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"226.261719\" y=\"168.507812\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"227.650879\" y=\"168.507812\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"230.431641\" y=\"168.507812\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"233.212402\" y=\"168.507812\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"235.993164\" y=\"168.507812\"/>\n",
" <use xlink:href=\"#glyph0-56\" x=\"238.773926\" y=\"168.507812\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-21\" x=\"356.363281\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"358.02832\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"360.809082\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"363.589844\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"364.979004\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"367.759766\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"370.540527\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"373.321289\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"376.102051\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"378.882812\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"379.993652\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"382.774414\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"385.555176\" y=\"220.097656\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"388.335938\" y=\"220.097656\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-7\" x=\"369.09375\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"371.59375\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"374.374512\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"377.155273\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"379.936035\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"382.436035\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"385.216797\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"387.997559\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"389.108398\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"391.88916\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"393.27832\" y=\"279.0625\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"394.66748\" y=\"279.0625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-7\" x=\"407.035156\" y=\"294.625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"409.535156\" y=\"294.625\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"412.315918\" y=\"294.625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"413.426758\" y=\"294.625\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"416.20752\" y=\"294.625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"418.988281\" y=\"294.625\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"421.769043\" y=\"294.625\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"424.549805\" y=\"294.625\"/>\n",
" <use xlink:href=\"#glyph0-58\" x=\"427.049805\" y=\"294.625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-7\" x=\"423.164062\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"425.664062\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"428.444824\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"430.109863\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"432.890625\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"435.671387\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"437.060547\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"439.841309\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"441.506348\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"445.671387\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"448.452148\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"449.841309\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"450.952148\" y=\"251.261719\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"453.73291\" y=\"251.261719\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-7\" x=\"196.644531\" y=\"339.960938\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"199.144531\" y=\"339.960938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"200.533691\" y=\"339.960938\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"203.314453\" y=\"339.960938\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"206.095215\" y=\"339.960938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"208.875977\" y=\"339.960938\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"211.656738\" y=\"339.960938\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"213.321777\" y=\"339.960938\"/>\n",
" <use xlink:href=\"#glyph0-2\" x=\"216.102539\" y=\"339.960938\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"218.883301\" y=\"339.960938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-7\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"2.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"3.88916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"6.669922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"8.334961\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"11.115723\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"13.896484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"16.396484\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-20\" x=\"17.785645\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-63\" x=\"20.566406\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-18\" x=\"24.455566\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-7\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-47\" x=\"2.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"7.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"10.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"11.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"12.783203\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-17\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"1.38916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-6\" x=\"4.169922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"7.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"10.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"11.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-54\" x=\"14.453125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"18.063965\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"20.844727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"22.233887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"23.344727\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"26.125488\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"28.90625\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-17\" x=\"64.539062\" y=\"309.0625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"65.928223\" y=\"309.0625\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"68.708984\" y=\"309.0625\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"71.208984\" y=\"309.0625\"/>\n",
" <use xlink:href=\"#glyph0-2\" x=\"73.989746\" y=\"309.0625\"/>\n",
" <use xlink:href=\"#glyph0-44\" x=\"76.770508\" y=\"309.0625\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"79.55127\" y=\"309.0625\"/>\n",
" <use xlink:href=\"#glyph0-2\" x=\"82.332031\" y=\"309.0625\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"85.112793\" y=\"309.0625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-17\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"1.38916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"4.169922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"5.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-22\" x=\"8.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"10.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"13.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"17.507324\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"20.288086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"22.788086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"25.568848\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-17\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"1.38916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"4.169922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-37\" x=\"6.950684\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"8.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"10.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-38\" x=\"13.342285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"16.123047\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"17.788086\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"20.568848\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-36\" x=\"23.349609\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-17\" x=\"220.792969\" y=\"155.332031\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"222.182129\" y=\"155.332031\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"224.962891\" y=\"155.332031\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"227.743652\" y=\"155.332031\"/>\n",
" <use xlink:href=\"#glyph0-55\" x=\"230.243652\" y=\"155.332031\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"232.743652\" y=\"155.332031\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"235.524414\" y=\"155.332031\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"238.305176\" y=\"155.332031\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-17\" x=\"64.066406\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"65.455566\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"68.236328\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"71.01709\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"75.182129\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"77.962891\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-7\" x=\"80.462891\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"82.962891\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-10\" x=\"84.07373\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"88.23877\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"91.019531\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-8\" x=\"93.800293\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-46\" x=\"96.581055\" y=\"318.960938\"/>\n",
" <use xlink:href=\"#glyph0-14\" x=\"99.361816\" y=\"318.960938\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-17\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-40\" x=\"1.38916\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"4.169922\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"6.950684\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-17\" x=\"322.894531\" y=\"201.644531\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"324.283691\" y=\"201.644531\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"327.064453\" y=\"201.644531\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"329.845215\" y=\"201.644531\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"330.956055\" y=\"201.644531\"/>\n",
" <use xlink:href=\"#glyph0-56\" x=\"333.736816\" y=\"201.644531\"/>\n",
" <use xlink:href=\"#glyph0-56\" x=\"334.847656\" y=\"201.644531\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-32\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"2.780762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"5.561523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"6.672363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-31\" x=\"9.172363\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-35\" x=\"11.953125\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"14.733887\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"16.398926\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"19.179688\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"21.960449\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"24.741211\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-41\" x=\"27.521973\" y=\"0\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-41\" x=\"165.59375\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"168.09375\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-52\" x=\"170.874512\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-12\" x=\"173.374512\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"174.485352\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"177.266113\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-61\" x=\"178.931152\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-32\" x=\"181.711914\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"184.492676\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"187.273438\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-11\" x=\"188.938477\" y=\"46.265625\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"191.719238\" y=\"46.265625\"/>\n",
"</g>\n",
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n",
" <use xlink:href=\"#glyph0-55\" x=\"0\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-25\" x=\"2.5\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-15\" x=\"5.280762\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-5\" x=\"8.061523\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-17\" x=\"10.842285\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-43\" x=\"12.231445\" y=\"0\"/>\n",
" <use xlink:href=\"#glyph0-21\" x=\"13.620605\" y=\"0\"/>\n",
"</g>\n",
"</g>\n",
"</svg>\n"
],
"text/plain": [
"<igraph.drawing.Plot at 0x7f9072532550>"
]
},
"execution_count": 497,
"metadata": {
"image/svg+xml": {
"isolated": true
}
},
"output_type": "execute_result"
}
],
"source": [
"# Apppliquer la méthode \"Fruchterman-Reingold force-directed\" pour construire le réseau\n",
"layout = kol_map.layout('fr')\n",
"\n",
"visual_style = {}\n",
"visual_style[\"vertex_size\"] = kol_map.degree()\n",
"visual_style[\"vertex_color\"] = \"#1DA1F2\"\n",
"visual_style[\"vertex_label\"] = kol_map.vs[\"name\"]\n",
"visual_style[\"vertex_label_size\"] = 5\n",
"visual_style[\"edge_arrow_size\"] = 0.5\n",
"visual_style[\"layout\"] = layout\n",
"visual_style[\"bbox\"] = (500, 500)\n",
"visual_style[\"margin\"] = 20\n",
"\n",
"kol_map0 = kol_map.copy()\n",
"visual_style0 = visual_style.copy()\n",
"visual_style0[\"vertex_size\"] = kol_map.vs['num_followers']\n",
"\n",
"# Afficher et sauvegarder les graphes générés\n",
"print(\"Carte représentant le réseau d'influence des comptes Twitter du domaine de l'IA : \\n\",\n",
" \"(la taille des noeuds est proportionnelle à leur degré sortant) \\n\")\n",
"ig.plot(kol_map, \"twitter_network_mapping_degree.pdf\", **visual_style)\n",
"\n",
"print(\"Carte représentant le réseau d'influence des comptes Twitter du domaine de l'IA : \\n\"\n",
" \"(la taille des noeuds est proportionnelle à leur nombre d'abonnés) \\n\")\n",
"ig.plot(kol_map0, \"twitter_network_mapping_follower.pdf\", **visual_style0)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.5"
}
},
"nbformat": 4,
"nbformat_minor": 4
}