uqo-imm1003 v2 — site de notes de cours interactives déployé sur MacLustr (dist + server.mjs + générateur + manifeste mld + README détaillé)
53 changed files +20,001 −0
added
.gitignore
+3 −0
@@ -0,0 +1,3 @@ | ||
| 1 | +.DS_Store | |
| 2 | +node_modules/ | |
| 3 | +__pycache__/ | |
added
README.md
+437 −0
@@ -0,0 +1,437 @@ | ||
| 1 | +# uqo-imm1003 — Éléments d’évaluation immobilière | |
| 2 | + | |
| 3 | +> **Notes de cours interactives du cours IMM1003 (IMM1003-20, Automne 2026) de l'Université du Québec en Outaouais (UQO).** | |
| 4 | +> Site statique généré à partir des sources LaTeX du manuel, servi par le cluster MacLustr. | |
| 5 | + | |
| 6 | +| | | | |
| 7 | +|---|---| | |
| 8 | +| **Site public** | https://www.uqo-imm1003.app | | |
| 9 | +| **Cours** | IMM1003 — Éléments d’évaluation immobilière · 3 crédits · premier cycle · 14 séances | | |
| 10 | +| **Trimestre** | Automne 2026 | | |
| 11 | +| **Cours jumeau** | IMM1033 — Méthodes du coût en évaluation immobilière · https://www.uqo-imm1033.app | | |
| 12 | +| **App `mld`** | `uqo-imm1003` · port `8160` · nœud actuel : voir `mld status` (au 2026-09-06 : **M4M64b**) | | |
| 13 | +| **Processus PM2** | `uqo-imm1003` (Node, `server.mjs`) · `uqo-imm1003-ngrok` (tunnel `www.uqo-imm1003.app`) | | |
| 14 | +| **Santé** | `GET /api/health` → `{"ok":true,"started":…,"root":…,"uptime":…}` | | |
| 15 | +| **Dépôt** | `gitsrv:~/srv/git/uqo-imm1003.git` (spbgit, git.spboucher.ai) | | |
| 16 | +| **Auteur / contact** | **Simon-Pierre Boucher** — contact@spboucher.ai | | |
| 17 | +| **Version publiée** | v2 « refonte majeure » — build du 2026-09-05 23:36:59, déployée le 2026-09-05 23:37 | | |
| 18 | + | |
| 19 | +--- | |
| 20 | + | |
| 21 | +## Sommaire | |
| 22 | + | |
| 23 | +1. [Présentation](#1-présentation) | |
| 24 | +2. [Ce que contient le site](#2-ce-que-contient-le-site) | |
| 25 | +3. [Fonctionnalités interactives](#3-fonctionnalités-interactives) | |
| 26 | +4. [Structure du cours publiée](#4-structure-du-cours-publiée) | |
| 27 | +5. [Contenu du dépôt](#5-contenu-du-dépôt) | |
| 28 | +6. [Arborescence du site généré (`dist/`)](#6-arborescence-du-site-généré-dist) | |
| 29 | +7. [Le serveur `server.mjs`](#7-le-serveur-servermjs) | |
| 30 | +8. [Chaîne de génération LaTeX → HTML](#8-chaîne-de-génération-latex--html) | |
| 31 | +9. [Déploiement sur le cluster MacLustr (`mld`)](#9-déploiement-sur-le-cluster-maclustr-mld) | |
| 32 | +10. [Exploitation au quotidien](#10-exploitation-au-quotidien) | |
| 33 | +11. [Mettre à jour le contenu](#11-mettre-à-jour-le-contenu) | |
| 34 | +12. [Données personnelles, sécurité, performance](#12-données-personnelles-sécurité-performance) | |
| 35 | +13. [Identité visuelle](#13-identité-visuelle) | |
| 36 | +14. [Historique](#14-historique) | |
| 37 | +15. [Droits et licence](#15-droits-et-licence) | |
| 38 | +16. [Contact](#16-contact) | |
| 39 | + | |
| 40 | +--- | |
| 41 | + | |
| 42 | +## 1. Présentation | |
| 43 | + | |
| 44 | +`uqo-imm1003` est la version web, interactive et « mobile-first » des notes de cours de **IMM1003 — Éléments d’évaluation immobilière** | |
| 45 | +(IMM1003-20, Automne 2026, 3 crédits · premier cycle · 14 séances), enseigné à l'UQO par Simon-Pierre Boucher. | |
| 46 | + | |
| 47 | +Principes, méthodes et pratique de l’évaluation immobilière au Québec : fondements, cadre professionnel, analyse de marché et les trois méthodes d’évaluation. | |
| 48 | + | |
| 49 | +Le site n'est **pas** une application avec base de données : c'est un **site statique** (HTML, CSS, JavaScript, | |
| 50 | +JSON, SVG, PDF) produit par un générateur maison à partir des **sources LaTeX** du manuel (`uqo-notes.sty`) et du | |
| 51 | +rapport *Le marché de l'habitation au Québec*. Toute l'interactivité (quiz, entraînement, jeux, progression, notes, | |
| 52 | +recherche, synthèse vocale, explorateurs) s'exécute **dans le navigateur** ; la progression est conservée | |
| 53 | +localement (`localStorage`) et exportable en JSON. Aucun compte, aucune collecte côté serveur. | |
| 54 | + | |
| 55 | +Le rendu est optimisé pour le téléphone (375 px) autant que pour l'ordinateur, installable comme PWA | |
| 56 | +(`manifest.webmanifest`, icônes 192/512), et indexable (`sitemap.xml`, `robots.txt`, balises Open Graph). | |
| 57 | + | |
| 58 | +**Source de vérité du contenu = les fichiers `.tex`** du dépôt de cours `UQO_COURS`. On ne modifie jamais le HTML | |
| 59 | +généré à la main : on modifie le LaTeX, on reconstruit, on redéploie (voir §11). | |
| 60 | + | |
| 61 | +## 2. Ce que contient le site | |
| 62 | + | |
| 63 | +Statistiques du build publié (`dist/data/meta.json`, build `2026-09-05 23:36:59`) : | |
| 64 | + | |
| 65 | +| Indicateur | Valeur | | |
| 66 | +|---|---| | |
| 67 | +| Séances (chapitres) | 14 | | |
| 68 | +| Mots de notes | 110 717 | | |
| 69 | +| Définitions | 87 | | |
| 70 | +| Formules encadrées | 27 | | |
| 71 | +| Exemples résolus | 85 | | |
| 72 | +| Exercices | 82 | | |
| 73 | +| Figures (TikZ → SVG, PDF → SVG) | 61 | | |
| 74 | +| Questions de quiz (14 chapitres) | 109 | | |
| 75 | +| Entrées de glossaire | 81 | | |
| 76 | +| Fiches recto-verso | 195 | | |
| 77 | +| Explorateurs interactifs insérés dans les séances | 9 | | |
| 78 | +| Générateurs de problèmes d'entraînement | 13 | | |
| 79 | +| Séquences (jeu de remise en ordre) | 6 | | |
| 80 | +| Entrées de l'index de recherche plein texte | 2 269 | | |
| 81 | +| Diapositives (PDF, une par séance) | 14 | | |
| 82 | +| Travaux pratiques publiés (énoncé PDF + gabarit Excel) | 3 | | |
| 83 | +| Rapport marché de l'habitation | 21 sections · 67 figures SVG · 28 tableaux | | |
| 84 | +| Fichiers dans `dist/` | 275 (≈ 47 Mo) | | |
| 85 | + | |
| 86 | +**Publié** : notes intégrales des 14 séances, annexes, bibliographie, plan de cours (PDF), notes complètes (PDF), | |
| 87 | +diapositives (PDF), énoncés des TP et gabarits Excel, rapport marché (HTML + PDF + données HPI ACI xlsx + script | |
| 88 | +Python d'analyse). | |
| 89 | + | |
| 90 | +**Jamais publié** (règle absolue du projet) : solutionnaires des TP, questionnaires d'examen, grilles de correction. | |
| 91 | +Le générateur ne les copie pas ; ne pas les ajouter à la main dans `dist/`. | |
| 92 | + | |
| 93 | +## 3. Fonctionnalités interactives | |
| 94 | + | |
| 95 | +### 3.1 Séances (`/seance/01` … `/seance/14`) | |
| 96 | +- Notes intégrales converties depuis LaTeX : boîtes pédagogiques (définition, formule, exemple, exercice, attention, | |
| 97 | + à retenir), **notes marginales** façon Tufte, mathématiques **KaTeX** pré-rendues au build, tableaux, figures | |
| 98 | + **TikZ** rendues en SVG, références auteur-année (`references.bib`). | |
| 99 | +- **Stepper de sections** (précédent / suivant), sommaire latéral avec sections déjà lues, **objectifs cochables**, | |
| 100 | + **mode révision** (masque les exemples, met en avant définitions et formules). | |
| 101 | +- **Explorateurs SVG** insérés à la fin de la première sous-section ciblée (9 par cours, voir §4) : curseurs et | |
| 102 | + graphiques recalculés en direct. | |
| 103 | +- **Surlignage + notes personnelles** (sélection de texte → surligner / annoter ; export Markdown), **lecture audio** | |
| 104 | + (synthèse vocale du navigateur, section par section), **quiz de fin de séance** intégré. | |
| 105 | +- Infobulles de glossaire sur les termes définis. | |
| 106 | + | |
| 107 | +### 3.2 Réviser | |
| 108 | +- `/aide-memoire` : toutes les formules et règles clés par séance. | |
| 109 | +- `/glossaire` et `/definitions` : glossaire alphabétique, définitions intégrales avec lien vers la séance. | |
| 110 | +- `/fiches` : fiches recto-verso (question / réponse) mélangeables, filtrables par séance. | |
| 111 | +- `/carte` : **carte du cours** (SVG radial : parties → séances → objectifs). | |
| 112 | +- `/exercices` : banque de tous les exercices avec lien vers le contexte. | |
| 113 | + | |
| 114 | +### 3.3 S'exercer | |
| 115 | +- `/quiz` : quiz par séance ou **examen blanc** (tirage aléatoire multi-séances, correction commentée, score). | |
| 116 | +- `/entrainement` : **problèmes à données aléatoires** (13 générateurs, `data/entrainement.js`) avec solution | |
| 117 | + détaillée recalculée à chaque tirage. | |
| 118 | +- `/jeux` : association (terme ↔ définition), vrai / faux, **remise en ordre** (6 séquences du cours). | |
| 119 | +- `/outils` : calculateurs spécialisés (`data/outils.js`). | |
| 120 | +- `/progression` : tableau de bord (séances lues, objectifs cochés, quiz réussis, fiches maîtrisées) ; | |
| 121 | + **export / import JSON** pour changer d'appareil. | |
| 122 | + | |
| 123 | +### 3.4 Ressources | |
| 124 | +- `/diapositives` : 14 PDF (`files/slides/`), `/ressources` : téléchargements (plan, notes PDF, TP, gabarits). | |
| 125 | +- `/rapport` : rapport *Le marché de l'habitation au Québec* en 21 sections HTML (`rapport/0` … `rapport/15`, | |
| 126 | + annexes `A` … `F`), 67 figures SVG, 28 tableaux, valeurs clés, **explorateurs HPI ACI** (`data/hpi.json`) et | |
| 127 | + **FRED** (`data/fred.json`), PDF complet et données sources dans `files/rapport/`. | |
| 128 | +- `/bibliographie` : bibliographie fusionnée du manuel et du rapport. | |
| 129 | +- `/recherche` : recherche plein texte côté client (`data/search.json`, 2 269 entrées). | |
| 130 | + | |
| 131 | +### 3.5 Transversal | |
| 132 | +- Thème clair UQO par défaut, thème sombre, taille de texte réglable, navigation clavier. | |
| 133 | +- PWA installable, `404.html` personnalisée, redirections propres (`/glossaire` → `/glossaire/`). | |
| 134 | + | |
| 135 | +## 4. Structure du cours publiée | |
| 136 | + | |
| 137 | +**Parties et séances** | |
| 138 | + | |
| 139 | +| Partie | Titre | Séances | | |
| 140 | +|---|---|---| | |
| 141 | +| I | Fondements de l’évaluation immobilière | 1 — Introduction à l'évaluation immobilière · 2 — Le cadre professionnel au Québec · 3 — Les principes fondamentaux de l'évaluation | | |
| 142 | +| II | Valeur, marché et données | 4 — La valeur : concepts et types · 5 — Le marché immobilier québécois · 6 — Collecte et analyse des données · 7 — Examen mi-session : révision des blocs 1 et 2 | | |
| 143 | +| III | Les trois méthodes d’évaluation | 8 — La méthode de comparaison — Partie 1 : principes et sélection des comparables · 9 — La méthode de comparaison — Partie 2 : ajustements et réconciliation · 10 — La méthode du coût · 11 — La méthode du revenu — Partie 1 : du revenu brut au RNE · 12 — La méthode du revenu — Partie 2 : le taux et le DCF | | |
| 144 | +| IV | Synthèse et pratique professionnelle | 13 — Le rapport d'évaluation · 14 — Révision générale et cas intégrateur | | |
| 145 | + | |
| 146 | +**Évaluations affichées sur le site** (la pondération et le calendrier viennent de `courses.py`) : | |
| 147 | + | |
| 148 | +| Évaluation | Portée / format | Pondération | Échéance | | |
| 149 | +|---|---|---|---| | |
| 150 | +| TP1 — Tableau de bord du marché de Gatineau | Séances 1 à 5 · Excel + note de synthèse | 10 % | Séance 6 | | |
| 151 | +| Examen intra | Séances 1 à 6 · maison, fenêtre de 72 h | 30 % | Séance 7 | | |
| 152 | +| TP2 — Méthode de comparaison (53, rue du Tropique, Aylmer) | Grille de comparables chaînée (Excel) | 10 % | Séance 10 | | |
| 153 | +| TP3 — Méthode du revenu (triplex du 44, rue Jumonville, Hull) | Chaîne RBP → RNE → V (Excel) | 10 % | Séance 13 | | |
| 154 | +| Examen final | Toute la matière, accent séances 8 à 13 · maison, 72 h | 40 % | Période d’examens | | |
| 155 | + | |
| 156 | +**Travaux pratiques publiés** (`files/tp/`) : | |
| 157 | + | |
| 158 | +| TP | Pondération | Remise | Fichiers publiés | Description | | |
| 159 | +|---|---|---|---|---| | |
| 160 | +| TP1 — Tableau de bord du marché | 10 % | Séance 6 | `files/tp/IMM1003-20_TP1_enonce.pdf`, `files/tp/IMM1003-20_TP1_gabarit.xlsx` | Secteur de Gatineau assigné selon le dernier chiffre du code permanent ; indicateurs de marché réels (APCIQ, SCHL, Banque du Canada). | | |
| 161 | +| TP2 — Méthode de comparaison | 10 % | Séance 10 | `files/tp/IMM1003-20_TP2_enonce.pdf`, `files/tp/IMM1003-20_TP2_gabarit.xlsx` | Grille d’ajustements sur une inscription réelle du secteur Aylmer ; seuils net/brut, réconciliation motivée. | | |
| 162 | +| TP3 — Méthode du revenu | 10 % | Séance 13 | `files/tp/IMM1003-20_TP3_enonce.pdf`, `files/tp/IMM1003-20_TP3_gabarit.xlsx` | Triplex réel de Hull : reconstruction du RNE, extraction du TGA, capitalisation directe et sensibilité. | | |
| 163 | + | |
| 164 | +**Explorateurs interactifs** (widget → emplacement dans la séance) : | |
| 165 | + | |
| 166 | +| Widget | Inséré dans | Séance | | |
| 167 | +|---|---|---| | |
| 168 | +| `rpv` | `#s-1-4-3` | 1 — Introduction à l'évaluation immobilière | | |
| 169 | +| `mutation` | `#s-1-6-3` | 1 — Introduction à l'évaluation immobilière | | |
| 170 | +| `offre-demande` | `#s-3-1` | 3 — Les principes fondamentaux de l'évaluation | | |
| 171 | +| `cycle` | `#s-5-2` | 5 — Le marché immobilier québécois | | |
| 172 | +| `seuils` | `#s-9-4` | 9 — La méthode de comparaison — Partie 2 : ajustements et réconciliation | | |
| 173 | +| `age-vie` | `#s-10-3` | 10 — La méthode du coût | | |
| 174 | +| `cascade-revenus` | `#s-11-2` | 11 — La méthode du revenu — Partie 1 : du revenu brut au RNE | | |
| 175 | +| `sensibilite-tga` | `#s-12-1` | 12 — La méthode du revenu — Partie 2 : le taux et le DCF | | |
| 176 | +| `dcf` | `#s-12-3` | 12 — La méthode du revenu — Partie 2 : le taux et le DCF | | |
| 177 | + | |
| 178 | +**Séquences du jeu de remise en ordre** : | |
| 179 | + | |
| 180 | +- **Le processus d’évaluation en sept étapes** (7 étapes) → `/seance/01/#s-1-5-4` | |
| 181 | +- **L’ordre séquentiel des ajustements** (6 étapes) → `/seance/09/#s-9-2` | |
| 182 | +- **La cascade des revenus** (5 étapes) → `/seance/11/#s-11-2` | |
| 183 | +- **Le parcours vers le titre d’évaluateur agréé** (5 étapes) → `/seance/01/#s-1-2-2` | |
| 184 | +- **Le processus disciplinaire** (4 étapes) → `/seance/02/#s-2-3` | |
| 185 | +- **Les quatre critères de l’utilisation optimale** (4 étapes) → `/seance/03/#s-3-3` | |
| 186 | + | |
| 187 | +## 5. Contenu du dépôt | |
| 188 | + | |
| 189 | +``` | |
| 190 | +uqo-imm1003/ | |
| 191 | +├── README.md ← ce document | |
| 192 | +├── server.mjs ← serveur statique Node ≥ 20, zéro dépendance (déployé tel quel) | |
| 193 | +├── package.json ← {"start": "node server.mjs"} (aucune dépendance npm) | |
| 194 | +├── dist/ ← LE SITE GÉNÉRÉ, identique octet pour octet à ce qui tourne sur le nœud | |
| 195 | +├── deploy/ | |
| 196 | +│ └── uqo-imm1003.manifest.json ← copie du manifeste mld (M1M32:~/dispatch/apps/uqo-imm1003.json) — sans secret | |
| 197 | +└── generator/ ← instantané du générateur au moment du build (lecture seule, voir ci-dessous) | |
| 198 | + ├── README.md ← README du générateur (_Site_web) | |
| 199 | + ├── package.json ← dépendance KaTeX pour le rendu des maths au build | |
| 200 | + ├── build/ ← build.py, latex2html.py, rapport.py, tikz.py, render_math.mjs, bib.py, | |
| 201 | + │ brand.py, templates.py, courses.py, test_convert.py | |
| 202 | + ├── data/ ← quiz-*.json, outils-*.js, entrainement-*.js (les deux cours) | |
| 203 | + └── assets/ ← css/site.css, js/app.js, brand/ (logos UQO sources) | |
| 204 | +``` | |
| 205 | + | |
| 206 | +⚠️ **`generator/` est un instantané.** Le générateur canonique vit dans le dépôt de cours | |
| 207 | +`UQO_COURS/_Site_web/` (GitHub `spboucher-ai/UQO_COURS`, dossier partagé par les deux cours). Il est copié ici pour | |
| 208 | +que le dépôt de l'app soit auto-suffisant et lisible, mais **toute modification doit se faire dans `UQO_COURS`**, puis | |
| 209 | +être reconstruite et resynchronisée (§11). Les sources LaTeX (`.tex`) ne sont **pas** dans ce dépôt : elles | |
| 210 | +contiennent aussi les solutionnaires et examens, qui ne doivent jamais sortir de `UQO_COURS`. | |
| 211 | + | |
| 212 | +Ce qui est volontairement exclu : `cache/` du générateur (SVG TikZ et figures rendues, régénérables), | |
| 213 | +`node_modules/`, `.DS_Store`. | |
| 214 | + | |
| 215 | +## 6. Arborescence du site généré (`dist/`) | |
| 216 | + | |
| 217 | +| Chemin | Fichiers | Taille | Rôle | | |
| 218 | +|---|---|---|---| | |
| 219 | +| `aide-memoire/` | 1 | 171 Ko | Aide-mémoire (formules et règles par séance) | | |
| 220 | +| `assets/` | 182 | 21 Mo | CSS, JS, polices, SVG des figures (TikZ + rapport), logos, icônes PWA, image OG | | |
| 221 | +| `bibliographie/` | 1 | 47 Ko | Bibliographie fusionnée manuel + rapport | | |
| 222 | +| `carte/` | 1 | 41 Ko | Carte du cours (SVG radial) | | |
| 223 | +| `data/` | 9 | 2 Mo | JSON/JS consommés par le client (quiz, fiches, glossaire, recherche, outils, entraînement, HPI, FRED, meta) | | |
| 224 | +| `definitions/` | 1 | 106 Ko | Toutes les définitions | | |
| 225 | +| `diapositives/` | 1 | 28 Ko | Liste des 14 PDF de diapositives | | |
| 226 | +| `entrainement/` | 1 | 23 Ko | Problèmes à données aléatoires | | |
| 227 | +| `exercices/` | 1 | 579 Ko | Banque d'exercices | | |
| 228 | +| `fiches/` | 1 | 24 Ko | Fiches recto-verso | | |
| 229 | +| `files/` | 26 | 19 Mo | PDF (notes, plan, diapositives, TP, rapport), gabarits xlsx, données HPI, script Python | | |
| 230 | +| `glossaire/` | 1 | 49 Ko | Glossaire alphabétique | | |
| 231 | +| `jeux/` | 1 | 25 Ko | Association, vrai/faux, remise en ordre | | |
| 232 | +| `outils/` | 1 | 23 Ko | Calculateurs | | |
| 233 | +| `progression/` | 1 | 24 Ko | Tableau de bord + export/import JSON | | |
| 234 | +| `quiz/` | 1 | 23 Ko | Quiz par séance + examen blanc | | |
| 235 | +| `rapport/` | 22 | 835 Ko | Rapport marché de l'habitation : 21 sections + annexes A–F | | |
| 236 | +| `recherche/` | 1 | 23 Ko | Recherche plein texte | | |
| 237 | +| `ressources/` | 1 | 35 Ko | Téléchargements | | |
| 238 | +| `seance/` | 14 | 3 Mo | Les 14 séances (`seance/01` … `seance/14`) | | |
| 239 | +| `index.html` | 1 | — | Accueil : héros, parties, calendrier, évaluations, accès rapides | | |
| 240 | +| `404.html` | 1 | — | Page introuvable (servie avec le statut 404) | | |
| 241 | +| `manifest.webmanifest` | 1 | — | PWA (`name`, `short_name`, icônes, `theme_color #0f6180`) | | |
| 242 | +| `sitemap.xml`, `robots.txt` | 2 | — | Indexation (`Allow: /`) | | |
| 243 | +| `favicon.ico`, `favicon.svg` | 2 | — | Icônes (générées par `brand.py`) | | |
| 244 | + | |
| 245 | +`dist/data/` en détail : `meta.json` (statistiques + chapitres), `quiz.json` (109 questions en 14 chapitres), | |
| 246 | +`cards.json` (195 fiches), `glossaire.json`, `search.json` (index plein texte), `outils.js`, | |
| 247 | +`entrainement.js`, `hpi.json` (indice HPI ACI mensuel, désaisonnalisé et brut), `fred.json` (séries FRED). | |
| 248 | + | |
| 249 | +`dist/files/` en détail : `IMM1003_notes_de_cours.pdf`, `IMM1003_plan_de_cours.pdf`, `slides/` (14 PDF), | |
| 250 | +`tp/` (3 énoncés PDF + 3 gabarits `.xlsx`), `rapport/` (`rapport_immobilier_quebec.pdf`, | |
| 251 | +`HPI_ACI_mensuel_desaisonnalise.xlsx`, `HPI_ACI_mensuel_non_desaisonnalise.xlsx`, `analyse_hpi_quebec.py`). | |
| 252 | + | |
| 253 | +## 7. Le serveur `server.mjs` | |
| 254 | + | |
| 255 | +Serveur HTTP statique en **Node.js pur** (`node:http`, `node:fs`, `node:zlib`), aucune dépendance npm, ≈ 170 lignes. | |
| 256 | + | |
| 257 | +``` | |
| 258 | +node server.mjs <port> <dossier-dist> | |
| 259 | +# en production : node server.mjs 8160 /Users/simon-pierreboucher/apps/uqo-imm1003/dist | |
| 260 | +``` | |
| 261 | + | |
| 262 | +Comportement : | |
| 263 | + | |
| 264 | +| Aspect | Détail | | |
| 265 | +|---|---| | |
| 266 | +| Méthodes | `GET` et `HEAD` seulement ; autres → `405` + `Allow: GET, HEAD` | | |
| 267 | +| Santé | `GET /api/health` → JSON `{ok, started, root, uptime}` avec `Cache-Control: no-store` (utilisé par `mld` et par le monitoring) | | |
| 268 | +| Résolution | `/x/` → `x/index.html` ; `/x` sans extension → redirection `301` vers `/x/` si `x/index.html` existe, sinon `x.html` | | |
| 269 | +| Sécurité chemin | `safeJoin` : normalisation, refus de sortie de la racine (`400`) | | |
| 270 | +| Types MIME | html, css, js/mjs, json, svg, png, jpg, webp, ico, pdf, xlsx, woff/woff2/ttf, txt, xml, webmanifest | | |
| 271 | +| Compression | **Brotli** (qualité 5) ou **gzip** (niveau 6) à la volée pour html/css/js/json/svg/txt/xml/webmanifest > 1 Ko, selon `Accept-Encoding` ; `Vary: Accept-Encoding` | | |
| 272 | +| Cache | `ETag` faible (taille + mtime) + `304` ; `Cache-Control: no-cache` pour HTML et JSON ; `public, max-age=86400, stale-while-revalidate=604800` sous `/assets/` et `/files/` ; `public, max-age=3600` ailleurs | | |
| 273 | +| Plages | `Range: bytes=…` → `206` / `416` (lecture partielle des PDF dans le navigateur) | | |
| 274 | +| En-têtes | `X-Content-Type-Options: nosniff`, `Referrer-Policy: strict-origin-when-cross-origin`, `Accept-Ranges: bytes`, `Content-Security-Policy: frame-ancestors 'self'` sur le HTML | | |
| 275 | +| 404 | Sert `404.html` avec le statut 404 | | |
| 276 | +| Écoute | `0.0.0.0:<port>` (ngrok se connecte en local) ; journal de démarrage `[uqo-cours] port … · racine …` | | |
| 277 | + | |
| 278 | +Les SVG des figures matplotlib du rapport font ≈ 300 Ko chacun ; la compression Brotli/gzip les ramène à quelques | |
| 279 | +dizaines de Ko sur le fil. | |
| 280 | + | |
| 281 | +## 8. Chaîne de génération LaTeX → HTML | |
| 282 | + | |
| 283 | +Le pipeline (`generator/build/build.py`, ≈ 1 s par cours grâce aux caches) : | |
| 284 | + | |
| 285 | +1. **Lecture des métadonnées** (`courses.py`) : identité, parties et couleurs, calendrier, évaluations, TP à publier, | |
| 286 | + widgets et séquences. | |
| 287 | +2. **Conversion LaTeX → HTML** (`latex2html.py`, ≈ 1 500 lignes) : dialecte `uqo-notes.sty` (boîtes, notes | |
| 288 | + marginales, `\oe` avec avalement d'espace TeX, tableaux, listes, références croisées) et article du rapport. | |
| 289 | + 0 avertissement sur les 32 fichiers de séances + le rapport. | |
| 290 | +3. **TikZ → SVG** (`tikz.py`) : chaque `tikzpicture` est compilé en `standalone` avec `pdflatex`, converti par | |
| 291 | + `pdftocairo`, mis en cache dans `cache/tikz/` (clé = hachage du source). | |
| 292 | +4. **Mathématiques** (`render_math.mjs`) : KaTeX exécuté en lot par Node au build → HTML statique, aucun JS | |
| 293 | + mathématique côté client. | |
| 294 | +5. **Bibliographie** (`bib.py`) : `references.bib` → citations auteur-année + page `/bibliographie`. | |
| 295 | +6. **Rapport** (`rapport.py`) : découpage en 21 sections, tableaux `\input`, valeurs clés, figures PDF → SVG | |
| 296 | + (`cache/rapport-fig/`), extraction HPI (xlsx → `hpi.json`) et FRED (json). | |
| 297 | +7. **Identité** (`brand.py`, Pillow + Fira Sans OTF de TeX Live) : logo UQO recoloré, favicons, `apple-touch-icon`, | |
| 298 | + image Open Graph 1200 × 630 par cours. | |
| 299 | +8. **Gabarits** (`templates.py`) : accueil, séance, carte, rapport, jeux, entraînement, progression, recherche… | |
| 300 | +9. **Données** : `quiz-<code>.json`, `outils-<code>.js`, `entrainement-<code>.js` copiés dans `dist/data/`, | |
| 301 | + index de recherche et fiches générés. | |
| 302 | +10. **Client** : `assets/css/site.css` (Fraunces / Source Serif 4 / Fira Sans, couleur par partie, mobile) et | |
| 303 | + `assets/js/app.js` (recherche, quiz, fiches, widgets SVG, entraînement, jeux, progression, notes, TTS, | |
| 304 | + explorateurs HPI/FRED). | |
| 305 | + | |
| 306 | +**Prérequis** : Python ≥ 3.12 (Pillow, openpyxl), Node ≥ 20 (`npm install` pour KaTeX), TeX Live (`pdflatex`, | |
| 307 | +FiraSans, fontawesome5, pgfplots), poppler (`pdftocairo`, `pdfinfo`). | |
| 308 | + | |
| 309 | +```bash | |
| 310 | +cd ~/Desktop/Academique/UQO/UQO_COURS/_Site_web | |
| 311 | +npm install # KaTeX, une fois | |
| 312 | +python3 build/build.py imm1003 # → dist/imm1003 | |
| 313 | +node server/server.mjs 8160 dist/imm1003 # test local : http://localhost:8160 | |
| 314 | +python3 build/test_convert.py # test de conversion complet | |
| 315 | +``` | |
| 316 | + | |
| 317 | +Pièges connus : Python 3.14 refuse `\"` dans les expressions de f-strings imbriquées (utiliser des variables | |
| 318 | +intermédiaires) ; un widget doit être inséré en fin de première sous-section, jamais dans une boîte ; `\oe` suivi | |
| 319 | +d'un espace doit avaler l'espace (sémantique TeX). | |
| 320 | + | |
| 321 | +## 9. Déploiement sur le cluster MacLustr (`mld`) | |
| 322 | + | |
| 323 | +L'app est orchestrée par **maclustr-dispatch (`mld`)** depuis la passerelle **M1M32** : elle choisit le nœud le plus | |
| 324 | +efficient, synchronise par rsync, démarre les processus PM2, ouvre le tunnel ngrok, vérifie la santé et met à jour | |
| 325 | +le registre (`M1M32:~/dispatch/registry.json`, copie laptop `~/Desktop/cluster-skill/cluster-registry.json`). | |
| 326 | + | |
| 327 | +Manifeste (`deploy/uqo-imm1003.manifest.json`, copie de `M1M32:~/dispatch/apps/uqo-imm1003.json`) : | |
| 328 | + | |
| 329 | +| Clé | Valeur | | |
| 330 | +|---|---| | |
| 331 | +| `domain` / `port` | `www.uqo-imm1003.app` / `8160` | | |
| 332 | +| `health_path` | `/api/health` | | |
| 333 | +| `requires.runtimes` | `ngrok`, `node`, `pm2` · `ram_gb: 1` · port `8160` libre | | |
| 334 | +| `processes[0]` | PM2 `uqo-imm1003` : `/opt/homebrew/bin/node server.mjs 8160 ~/apps/uqo-imm1003/dist`, `autorestart`, `max_memory_restart: 300M` (≈ 80 Mo observés) | | |
| 335 | +| `ngrok` | PM2 `uqo-imm1003-ngrok` → `https://www.uqo-imm1003.app` (CNAME chez le registraire → ngrok) | | |
| 336 | +| `placement` | libre (pas de `pin`), `source_node: laptop` | | |
| 337 | +| `sync_excludes` | `.DS_Store` | | |
| 338 | + | |
| 339 | +Procédure complète depuis le laptop : | |
| 340 | + | |
| 341 | +```bash | |
| 342 | +# 1. (re)construire le site | |
| 343 | +cd ~/Desktop/Academique/UQO/UQO_COURS/_Site_web && python3 build/build.py imm1003 | |
| 344 | + | |
| 345 | +# 2. rafraîchir le dossier d'app (= ce dépôt) et versionner | |
| 346 | +rm -rf stage/uqo-imm1003/dist && cp -R dist/imm1003 stage/uqo-imm1003/dist | |
| 347 | +cd stage/uqo-imm1003 && git add -A && git commit -m "build $(date +%F)" && git push origin main | |
| 348 | + | |
| 349 | +# 3. laptop → passerelle M1M32 (staging), puis déploiement sur le nœud choisi par score | |
| 350 | +~/Desktop/cluster-skill/mld stage ~/Desktop/Academique/UQO/UQO_COURS/_Site_web/stage/uqo-imm1003 uqo-imm1003 | |
| 351 | +~/Desktop/cluster-skill/mld deploy uqo-imm1003 # --node X pour imposer un nœud | |
| 352 | + | |
| 353 | +# 4. vérifier | |
| 354 | +~/Desktop/cluster-skill/mld status --live | grep uqo-imm1003 | |
| 355 | +curl -s https://www.uqo-imm1003.app/api/health | |
| 356 | +``` | |
| 357 | + | |
| 358 | +Autres commandes utiles : `mld move uqo-imm1003 --to <nœud>` (migration à chaud avec rollback), `mld plan uqo-imm1003` | |
| 359 | +(placement simulé), `mld apps` (manifestes). Le nœud n'a **pas** de dépôt git : c'est `mld` qui synchronise depuis le | |
| 360 | +staging de M1M32 ; ce dépôt spbgit est la référence versionnée de ce qui est déployé. | |
| 361 | + | |
| 362 | +## 10. Exploitation au quotidien | |
| 363 | + | |
| 364 | +```bash | |
| 365 | +NODE=$(~/Desktop/cluster-skill/mld status | awk '/uqo-imm1003 /{print $2}') # ou lire mld status | |
| 366 | +ssh $NODE 'pm2 ls | grep uqo-imm1003; pm2 logs uqo-imm1003 --lines 50 --nostream' | |
| 367 | +ssh $NODE 'pm2 restart uqo-imm1003' # redémarrage du serveur Node | |
| 368 | +ssh $NODE 'pm2 restart uqo-imm1003-ngrok' # tunnel | |
| 369 | +curl -sI https://www.uqo-imm1003.app/ | head -5 # 200 + en-têtes | |
| 370 | +curl -s https://www.uqo-imm1003.app/api/health # uptime | |
| 371 | +``` | |
| 372 | + | |
| 373 | +- PM2 est configuré au démarrage (`pm2 startup`) sur tous les nœuds d'apps : l'app revient après un redémarrage. | |
| 374 | +- Le site est aussi surveillé par l'app MacLustr (macOS / iOS) via le registre `mld` (santé loopback + PM2). | |
| 375 | +- Emplacement disque sur le nœud : `~/apps/uqo-imm1003/` (`server.mjs`, `package.json`, `README.md`, `dist/`, ≈ 47 Mo). | |
| 376 | +- Si `mld status` montre `stale`/`offline` : `ssh <nœud> pm2 ls`, puis `mld deploy uqo-imm1003` (idempotent). | |
| 377 | + | |
| 378 | +## 11. Mettre à jour le contenu | |
| 379 | + | |
| 380 | +| Changement | Où | Puis | | |
| 381 | +|---|---|---| | |
| 382 | +| Texte, exemple, exercice, figure d'une séance | `.tex` dans `UQO_COURS/IMM1003-20_Elements_evaluation_immobiliere/IMM1003_Notes_de_cours/sources/` | build → §9 | | |
| 383 | +| Question de quiz | `_Site_web/data/quiz-imm1003.json` (`q`, `c` choix, `a` index, `e` explication, `url`) | build → §9 | | |
| 384 | +| Problème d'entraînement | `_Site_web/data/entrainement-imm1003.js` : objet `{id, title, ch, url, gen(R)}` | build → §9 | | |
| 385 | +| Calculateur | `_Site_web/data/outils-imm1003.js` | build → §9 | | |
| 386 | +| Widget dans une séance | `courses.py → widgets` : `("s-<ch>-<sec>", "<nom>")` + `Widgets.register("<nom>", …)` dans `assets/js/app.js` | build → §9 | | |
| 387 | +| Séquence (remise en ordre) | `courses.py → sequences` : `(titre, [étapes…], "/seance/NN/#ancre")` | build → §9 | | |
| 388 | +| Calendrier, évaluations, TP publiés | `courses.py → events / evaluation / tps` | build → §9 | | |
| 389 | +| Diapositives | PDF dans `02_Slides/pdf/seance*.pdf` du cours | build → §9 | | |
| 390 | +| Rapport marché | `Rapport_Immobilier_Quebec/` (LaTeX, figures PDF, xlsx HPI, json FRED) | build → §9 | | |
| 391 | +| Style / comportement client | `assets/css/site.css`, `assets/js/app.js` | build → §9 | | |
| 392 | + | |
| 393 | +Après un rebuild des notes, penser à **ré-ingérer** le site dans **UQO-Chat** (tuteur IA, dépôt `uqo-chat`) : il | |
| 394 | +indexe le HTML de `dist/<cours>/seance/NN` pour son RAG. | |
| 395 | + | |
| 396 | +## 12. Données personnelles, sécurité, performance | |
| 397 | + | |
| 398 | +- **Aucune donnée côté serveur** : pas de compte, pas de base, pas de formulaire, pas de cookie de suivi. La | |
| 399 | + progression, les notes, les surlignages et les préférences sont dans le `localStorage` du navigateur de | |
| 400 | + l'étudiant·e (export/import JSON depuis `/progression`). | |
| 401 | +- Polices servies localement ou via le CSS du site ; KaTeX pré-rendu (pas de CDN mathématique au chargement). | |
| 402 | +- En-têtes de sécurité posés par `server.mjs` (§7) ; ngrok termine le TLS (`https://www.uqo-imm1003.app`). | |
| 403 | +- Performance : HTML < 300 Ko par séance avant compression, SVG compressés à la volée, cache long sur `/assets/` et | |
| 404 | + `/files/`, `ETag`/`304`. Un site complet pèse ≈ 47 Mo dont ≈ 18 Mo de PDF. | |
| 405 | +- Accessibilité : contrastes du thème UQO vérifiés, navigation clavier, `lang="fr-CA"`, lecture audio. | |
| 406 | + | |
| 407 | +## 13. Identité visuelle | |
| 408 | + | |
| 409 | +- Couleur principale UQO **teal `#0F6180`**, or `#cca424`, couleur par partie (`part_colors`), accent du cours | |
| 410 | + `#2976bb`. | |
| 411 | +- Typographies : **Fraunces** (titres), **Source Serif 4** (texte), **Fira Sans** (interface). | |
| 412 | +- Logo : mot-symbole UQO (source Wikimedia + sources LaTeX, `generator/assets/brand/`) recoloré par `brand.py` ; | |
| 413 | + favicons, `apple-touch-icon`, icônes PWA 192/512 et image OG 1200 × 630 générés au build. | |
| 414 | +- Le logo et le nom UQO appartiennent à l'Université du Québec en Outaouais ; usage dans le cadre du cours. | |
| 415 | + | |
| 416 | +## 14. Historique | |
| 417 | + | |
| 418 | +| Date | Étape | | |
| 419 | +|---|---| | |
| 420 | +| 2026-08-28 | Manuels LaTeX IMM1003 / IMM1033 (`uqo-notes.sty`, `latexmk`) — base du contenu | | |
| 421 | +| 2026-09-04 → 05 (nuit) | v1 : générateur `_Site_web` (latex2html, TikZ→SVG, KaTeX, quiz, outils), `server.mjs`, premier déploiement `mld` | | |
| 422 | +| 2026-09-05 (soir) | **v2 « refonte majeure »** : thème UQO, brand.py, 9 explorateurs par cours, entraînement, jeux, carte, progression, notes/audio, rapport marché intégré (HPI + FRED) ; build `2026-09-05 23:36:59`, déployé à 23:37 sur M4M64b | | |
| 423 | +| 2026-09-06 | UQO-Chat (tuteur IA) indexe ce site pour son RAG (714 passages pour les deux cours) | | |
| 424 | +| 2026-09-06 | Dépôt spbgit `uqo-imm1003.git` créé : artefact déployé + instantané du générateur + ce README | | |
| 425 | + | |
| 426 | +## 15. Droits et licence | |
| 427 | + | |
| 428 | +Contenu pédagogique © Simon-Pierre Boucher, UQO — usage réservé aux étudiant·es du cours ; toute reproduction | |
| 429 | +hors de ce cadre requiert une autorisation écrite. Code du générateur et du serveur : © Simon-Pierre Boucher, tous | |
| 430 | +droits réservés (dépôt privé). Données externes : ACI (HPI), FRED, sources citées dans la bibliographie du rapport. | |
| 431 | + | |
| 432 | +## 16. Contact | |
| 433 | + | |
| 434 | +**Simon-Pierre Boucher** | |
| 435 | +Courriel : **contact@spboucher.ai** | |
| 436 | +Git personnel : https://git.spboucher.ai (spbgit, dépôt `uqo-imm1003`) | |
| 437 | +Cours : https://www.uqo-imm1003.app · cours jumeau : https://www.uqo-imm1033.app · tuteur IA : https://www.uqo-chat.app | |
added
deploy/uqo-imm1003.manifest.json
+35 −0
@@ -0,0 +1,35 @@ | ||
| 1 | +{ | |
| 2 | + "label": "UQO IMM1003 — Notes de cours interactives", | |
| 3 | + "domain": "www.uqo-imm1003.app", | |
| 4 | + "port": 8160, | |
| 5 | + "health_path": "/api/health", | |
| 6 | + "extra_paths": [], | |
| 7 | + "sync_excludes": [".DS_Store"], | |
| 8 | + "requires": {"runtimes": ["ngrok", "node", "pm2"], "ram_gb": 1, "ports": [8160]}, | |
| 9 | + "ram_mb_observed": 80, | |
| 10 | + "size_mb": 25, | |
| 11 | + "placement": {"pin": null, "prefer": null, "avoid": [], "reason": ""}, | |
| 12 | + "processes": [ | |
| 13 | + { | |
| 14 | + "name": "uqo-imm1003", | |
| 15 | + "manager": "pm2", | |
| 16 | + "script": "/opt/homebrew/bin/node", | |
| 17 | + "args": ["server.mjs", "8160", "/Users/simon-pierreboucher/apps/uqo-imm1003/dist"], | |
| 18 | + "interpreter": null, | |
| 19 | + "cwd": "/Users/simon-pierreboucher/apps/uqo-imm1003", | |
| 20 | + "env": {"PORT": "8160"}, | |
| 21 | + "cron_restart": null, | |
| 22 | + "autorestart": true, | |
| 23 | + "max_memory_restart": "300M" | |
| 24 | + } | |
| 25 | + ], | |
| 26 | + "ngrok": {"name": "uqo-imm1003-ngrok", "url": "www.uqo-imm1003.app", "port": 8160}, | |
| 27 | + "launchd": [], | |
| 28 | + "env_overrides": {}, | |
| 29 | + "hooks": {"post_sync": [], "post_start": []}, | |
| 30 | + "ka_repo": false, | |
| 31 | + "app": "uqo-imm1003", | |
| 32 | + "dir": "~/apps/uqo-imm1003", | |
| 33 | + "venv_python": null, | |
| 34 | + "source_node": "laptop" | |
| 35 | +} | |
added
dist/404.html
+115 −0
@@ -0,0 +1,115 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr" data-theme="light"> | |
| 3 | +<head> | |
| 4 | +<meta charset="utf-8"> | |
| 5 | +<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> | |
| 6 | +<title>Page introuvable · IMM1003 — Éléments d’évaluation immobilière</title> | |
| 7 | +<meta name="description" content="Principes, méthodes et pratique de l’évaluation immobilière au Québec : fondements, cadre professionnel, analyse de marché et les trois méthodes d’évaluation."> | |
| 8 | +<meta name="author" content="Simon-Pierre Boucher — Université du Québec en Outaouais"> | |
| 9 | +<meta name="theme-color" content="#0f6180"> | |
| 10 | +<meta property="og:site_name" content="IMM1003 — UQO"> | |
| 11 | +<meta property="og:title" content="Page introuvable · IMM1003 — Éléments d’évaluation immobilière"> | |
| 12 | +<meta property="og:description" content="Principes, méthodes et pratique de l’évaluation immobilière au Québec : fondements, cadre professionnel, analyse de marché et les trois méthodes d’évaluation."> | |
| 13 | +<meta property="og:type" content="website"> | |
| 14 | +<meta property="og:url" content="https://www.uqo-imm1003.app/404.html"> | |
| 15 | +<meta property="og:image" content="https://www.uqo-imm1003.app/assets/og.png"> | |
| 16 | +<meta property="og:image:width" content="1200"><meta property="og:image:height" content="630"> | |
| 17 | +<meta property="og:image:alt" content="IMM1003 — Éléments d’évaluation immobilière — UQO"> | |
| 18 | +<meta property="og:locale" content="fr_CA"> | |
| 19 | +<meta name="twitter:card" content="summary_large_image"> | |
| 20 | +<meta name="twitter:title" content="Page introuvable · IMM1003 — Éléments d’évaluation immobilière"> | |
| 21 | +<meta name="twitter:description" content="Principes, méthodes et pratique de l’évaluation immobilière au Québec : fondements, cadre professionnel, analyse de marché et les trois méthodes d’évaluation."> | |
| 22 | +<meta name="twitter:image" content="https://www.uqo-imm1003.app/assets/og.png"> | |
| 23 | +<link rel="canonical" href="https://www.uqo-imm1003.app/404.html"> | |
| 24 | +<link rel="icon" href="/favicon.svg" type="image/svg+xml"> | |
| 25 | +<link rel="icon" href="/assets/brand/favicon-32.png" sizes="32x32" type="image/png"> | |
| 26 | +<link rel="icon" href="/favicon.ico" sizes="any"> | |
| 27 | +<link rel="apple-touch-icon" href="/assets/brand/apple-touch-icon.png"> | |
| 28 | +<link rel="manifest" href="/manifest.webmanifest"> | |
| 29 | +<link rel="preconnect" href="https://fonts.googleapis.com"> | |
| 30 | +<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| 31 | +<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&display=swap"> | |
| 32 | +<link rel="stylesheet" href="/assets/katex/katex.min.css"> | |
| 33 | +<link rel="stylesheet" href="/assets/css/site.css"> | |
| 34 | +<script>(function(){try{var t=localStorage.getItem('uqo:theme');if(t)document.documentElement.dataset.theme=JSON.parse(t);var f=localStorage.getItem('uqo:fs');if(f&&JSON.parse(f))document.documentElement.dataset.fs=JSON.parse(f);}catch(e){}})();</script> | |
| 35 | + | |
| 36 | +</head> | |
| 37 | +<body class="course-imm1003 " data-course="imm1003"> | |
| 38 | + | |
| 39 | +<svg xmlns="http://www.w3.org/2000/svg" style="display:none" aria-hidden="true"> | |
| 40 | + <symbol id="i-book" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M2 4h6a4 4 0 0 1 4 4v12a3 3 0 0 0-3-3H2zM22 4h-6a4 4 0 0 0-4 4v12a3 3 0 0 1 3-3h7z"/></symbol> | |
| 41 | + <symbol id="i-formula" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M3 12h3l3 8 4-16 3 8h5"/></symbol> | |
| 42 | + <symbol id="i-bulb" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M9 18h6M10 22h4M12 2a7 7 0 0 0-4 12.7c.6.5 1 1.3 1 2.3h6c0-1 .4-1.8 1-2.3A7 7 0 0 0 12 2z"/></symbol> | |
| 43 | + <symbol id="i-pencil" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M12 20h9M16.5 3.5a2.1 2.1 0 0 1 3 3L7 19l-4 1 1-4z"/></symbol> | |
| 44 | + <symbol id="i-warning" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M10.3 3.9 1.8 18a2 2 0 0 0 1.7 3h17a2 2 0 0 0 1.7-3L13.7 3.9a2 2 0 0 0-3.4 0zM12 9v4M12 17h.01"/></symbol> | |
| 45 | + <symbol id="i-hardhat" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M2 18h20M4 18v-3a8 8 0 0 1 5-7.4V12M20 18v-3a8 8 0 0 0-5-7.4V12M10 4h4v8h-4z"/></symbol> | |
| 46 | + <symbol id="i-pen" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M12 19l7-7 3 3-7 7-3-3zM18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5zM2 2l7.6 7.6"/><circle cx="11" cy="11" r="2" fill="none" stroke="currentColor" stroke-width="2"/></symbol> | |
| 47 | + <symbol id="i-map" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M1 6v16l7-4 8 4 7-4V2l-7 4-8-4zM8 2v16M16 6v16"/></symbol> | |
| 48 | + <symbol id="i-star" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 6.9L12 17.8 5.8 21l1.2-6.9-5-4.9 6.9-1z"/></symbol> | |
| 49 | + <symbol id="i-target" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="12" cy="12" r="6" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="12" cy="12" r="2" fill="currentColor"/></symbol> | |
| 50 | + <symbol id="i-clipboard" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2zM9 14l2 2 4-4"/></symbol> | |
| 51 | + <symbol id="i-check" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="currentColor" stroke-width="2"/><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M8 12l3 3 5-6"/></symbol> | |
| 52 | + <symbol id="i-search" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M20 20l-3.5-3.5"/></symbol> | |
| 53 | + <symbol id="i-sun" viewBox="0 0 24 24"><circle cx="12" cy="12" r="4" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4"/></symbol> | |
| 54 | + <symbol id="i-menu" viewBox="0 0 24 24"><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M4 6h16M4 12h16M4 18h16"/></symbol> | |
| 55 | + <symbol id="i-text" viewBox="0 0 24 24"><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M4 7V5h16v2M12 5v14M9 19h6"/></symbol> | |
| 56 | + <symbol id="i-slides" viewBox="0 0 24 24"><rect x="2" y="3" width="20" height="14" rx="2" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M8 21h8M12 17v4"/></symbol> | |
| 57 | + <symbol id="i-quiz" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="currentColor" stroke-width="2"/><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M9.1 9a3 3 0 0 1 5.8 1c0 2-3 3-3 3M12 17h.01"/></symbol> | |
| 58 | + <symbol id="i-cards" viewBox="0 0 24 24"><rect x="3" y="6" width="14" height="16" rx="2" fill="none" stroke="currentColor" stroke-width="2"/><path fill="none" stroke="currentColor" stroke-width="2" d="M7 2h12a2 2 0 0 1 2 2v14"/></symbol> | |
| 59 | + <symbol id="i-calc" viewBox="0 0 24 24"><rect x="4" y="2" width="16" height="20" rx="2" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M8 6h8M8 11h.01M12 11h.01M16 11h.01M8 15h.01M12 15h.01M16 15h.01M8 19h.01M12 19h.01M16 19h.01"/></symbol> | |
| 60 | + <symbol id="i-download" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3"/></symbol> | |
| 61 | + <symbol id="i-eye" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3" fill="none" stroke="currentColor" stroke-width="2"/></symbol> | |
| 62 | + <symbol id="i-arrow" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M5 12h14M13 6l6 6-6 6"/></symbol> | |
| 63 | + <symbol id="i-bib" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></symbol> | |
| 64 | + <symbol id="i-list" viewBox="0 0 24 24"><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M8 6h13M8 12h13M8 18h13M3 6h.01M3 12h.01M3 18h.01"/></symbol> | |
| 65 | + <symbol id="i-note" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M14 3v4a1 1 0 0 0 1 1h4M17 21H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7l5 5v11a2 2 0 0 1-2 2zM9 13h6M9 17h6"/></symbol> | |
| 66 | + <symbol id="i-audio" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M11 5 6 9H2v6h4l5 4zM15.5 8.5a5 5 0 0 1 0 7M19 5a10 10 0 0 1 0 14"/></symbol> | |
| 67 | + <symbol id="i-up" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M12 19V5M5 12l7-7 7 7"/></symbol> | |
| 68 | + <symbol id="i-dumbbell" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M6 5v14M18 5v14M3 8v8M21 8v8M6 12h12"/></symbol> | |
| 69 | + <symbol id="i-game" viewBox="0 0 24 24"><rect x="2" y="7" width="20" height="12" rx="4" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M7 11v4M5 13h4M15 12h.01M18 14h.01"/></symbol> | |
| 70 | + <symbol id="i-chart" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M3 3v18h18M7 15l4-5 4 3 5-7"/></symbol> | |
| 71 | + <symbol id="i-progress" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M4 20V10M10 20V4M16 20v-8M22 20H2"/></symbol> | |
| 72 | + <symbol id="i-network" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="4" cy="6" r="2" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="20" cy="6" r="2" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="4" cy="18" r="2" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="20" cy="18" r="2" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" d="M6 7l4 3M18 7l-4 3M6 17l4-3M18 17l-4-3"/></symbol> | |
| 73 | + <symbol id="i-report" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM14 2v6h6M8 17l3-4 2 2 3-5"/></symbol> | |
| 74 | +</svg> | |
| 75 | + | |
| 76 | +<a class="skip" href="#main">Aller au contenu</a> | |
| 77 | +<header class="topbar"> | |
| 78 | + <div class="topbar-inner"> | |
| 79 | + <a class="brand" href="/" aria-label="IMM1003 — accueil"><img class="brand-logo" src="/assets/brand/uqo-logo.png" alt="UQO" width="568" height="238"><span class="brand-sep"></span><span class="brand-text"><span class="brand-code">IMM1003</span><span class="brand-title">Éléments d’évaluation immobilière</span></span></a> | |
| 80 | + <nav class="topnav" aria-label="Navigation principale"><div class="dd"><button type="button" aria-expanded="false" aria-haspopup="true">Séances <span class="caret" aria-hidden="true">▾</span></button><div class="dd-menu wide"><div class="dd-part"><i style="background:#2976bb"></i>Partie I — Fondements de l’évaluation immobilière</div><a href="/seance/01/" data-ch="01"><span class="pastille" style="background:#2976bb">1</span><span>Introduction à l'évaluation immobilière</span></a><a href="/seance/02/" data-ch="02"><span class="pastille" style="background:#2976bb">2</span><span>Le cadre professionnel au Québec</span></a><a href="/seance/03/" data-ch="03"><span class="pastille" style="background:#2976bb">3</span><span>Les principes fondamentaux de l'évaluation</span></a><div class="dd-part"><i style="background:#0f8b8d"></i>Partie II — Valeur, marché et données</div><a href="/seance/04/" data-ch="04"><span class="pastille" style="background:#0f8b8d">4</span><span>La valeur : concepts et types</span></a><a href="/seance/05/" data-ch="05"><span class="pastille" style="background:#0f8b8d">5</span><span>Le marché immobilier québécois</span></a><a href="/seance/06/" data-ch="06"><span class="pastille" style="background:#0f8b8d">6</span><span>Collecte et analyse des données</span></a><a href="/seance/07/" data-ch="07"><span class="pastille" style="background:#0f8b8d">7</span><span>Examen mi-session : révision des blocs 1 et 2</span></a><div class="dd-part"><i style="background:#cca424"></i>Partie III — Les trois méthodes d’évaluation</div><a href="/seance/08/" data-ch="08"><span class="pastille" style="background:#cca424">8</span><span>La méthode de comparaison — Partie 1 : principes et sélection des comparables</span></a><a href="/seance/09/" data-ch="09"><span class="pastille" style="background:#cca424">9</span><span>La méthode de comparaison — Partie 2 : ajustements et réconciliation</span></a><a href="/seance/10/" data-ch="10"><span class="pastille" style="background:#cca424">10</span><span>La méthode du coût</span></a><a href="/seance/11/" data-ch="11"><span class="pastille" style="background:#cca424">11</span><span>La méthode du revenu — Partie 1 : du revenu brut au RNE</span></a><a href="/seance/12/" data-ch="12"><span class="pastille" style="background:#cca424">12</span><span>La méthode du revenu — Partie 2 : le taux et le DCF</span></a><div class="dd-part"><i style="background:#6b4fbb"></i>Partie IV — Synthèse et pratique professionnelle</div><a href="/seance/13/" data-ch="13"><span class="pastille" style="background:#6b4fbb">13</span><span>Le rapport d'évaluation</span></a><a href="/seance/14/" data-ch="14"><span class="pastille" style="background:#6b4fbb">14</span><span>Révision générale et cas intégrateur</span></a><div class="dd-part">Annexes</div><a href="/aide-memoire/"><span class="pastille">A</span><span>Aide-mémoire des formules</span></a><a href="/glossaire/"><span class="pastille">B</span><span>Glossaire</span></a><a href="/rapport/"><span class="pastille" style="background:var(--teal)">R</span><span>Rapport — Le marché de l’habitation au Québec</span></a></div></div><div class="dd"><button type="button" aria-expanded="false" aria-haspopup="true">Réviser <span class="caret" aria-hidden="true">▾</span></button><div class="dd-menu "><a href="/aide-memoire/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span>Aide-mémoire<span class="dd-desc">Toutes les formules commentées</span></span></a><a href="/glossaire/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-book"/></svg></span><span>Glossaire<span class="dd-desc">Termes du métier, équivalents anglais</span></span></a><a href="/definitions/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-list"/></svg></span><span>Toutes les définitions<span class="dd-desc">Les formulations attendues aux examens</span></span></a><a href="/fiches/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-cards"/></svg></span><span>Fiches de révision<span class="dd-desc">Recto-verso, suivi d’acquisition</span></span></a><a href="/carte/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-network"/></svg></span><span>Carte du cours<span class="dd-desc">Les 14 séances et leurs objectifs en un coup d’œil</span></span></a><a href="/exercices/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-pencil"/></svg></span><span>Banque d’exercices<span class="dd-desc">Tous les exercices corrigés</span></span></a></div></div><div class="dd"><button type="button" aria-expanded="false" aria-haspopup="true">S’exercer <span class="caret" aria-hidden="true">▾</span></button><div class="dd-menu "><a href="/quiz/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-quiz"/></svg></span><span>Quiz et examens blancs<span class="dd-desc">QCM avec rétroaction, chronomètre</span></span></a><a href="/entrainement/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-dumbbell"/></svg></span><span>Entraînement<span class="dd-desc">Problèmes à données aléatoires, corrigés pas à pas</span></span></a><a href="/jeux/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-game"/></svg></span><span>Jeux de révision<span class="dd-desc">Association, vrai ou faux, remise en ordre</span></span></a><a href="/outils/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-calc"/></svg></span><span>Calculateurs<span class="dd-desc">Les formules en interactif</span></span></a><a href="/progression/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-progress"/></svg></span><span>Ma progression<span class="dd-desc">Lecture, quiz, objectifs, notes</span></span></a></div></div><div class="dd"><button type="button" aria-expanded="false" aria-haspopup="true">Ressources <span class="caret" aria-hidden="true">▾</span></button><div class="dd-menu "><a href="/diapositives/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-slides"/></svg></span><span>Diapositives<span class="dd-desc">Les 14 présentations en ligne</span></span></a><a href="/ressources/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-download"/></svg></span><span>Téléchargements<span class="dd-desc">Manuel, plan, TP, gabarits Excel</span></span></a><a href="/rapport/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-report"/></svg></span><span>Rapport marché QC<span class="dd-desc">Indices de prix, macro, abordabilité — 26 sections, 67 figures</span></span></a><a href="/bibliographie/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-bib"/></svg></span><span>Bibliographie<span class="dd-desc">Références citées</span></span></a><a href="/recherche/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-search"/></svg></span><span>Recherche<span class="dd-desc">Tout le manuel indexé</span></span></a></div></div></nav> | |
| 81 | + <div class="topbar-actions"> | |
| 82 | + <button class="icon-btn search-btn" type="button" data-action="search" aria-label="Rechercher"><svg class="" aria-hidden="true"><use href="#i-search"/></svg><span>Rechercher</span><kbd>⌘K</kbd></button> | |
| 83 | + <button class="icon-btn" type="button" data-action="theme" aria-label="Thème clair ou sombre" title="Thème"><svg class="" aria-hidden="true"><use href="#i-sun"/></svg></button> | |
| 84 | + <button class="icon-btn menu-btn" type="button" aria-label="Menu" aria-expanded="false"><svg class="" aria-hidden="true"><use href="#i-menu"/></svg></button> | |
| 85 | + </div> | |
| 86 | + </div> | |
| 87 | + | |
| 88 | +</header> | |
| 89 | +<main id="main" class="page" style="text-align:center;padding:80px 20px"><div class="eyebrow" style="justify-content:center">Erreur 404</div><h1 style="color:var(--bleu);font-family:var(--display)">Cette page n’existe pas</h1><p class="lead" style="margin:0 auto 24px">La valeur d’une page introuvable est nulle — mais la substitution est facile.</p><div class="hero-cta" style="justify-content:center"><a class="btn" href="/">Accueil</a><a class="btn btn-ghost" href="/recherche/">Rechercher</a></div></main> | |
| 90 | +<footer class="site-footer"> | |
| 91 | + <div class="footer-inner"> | |
| 92 | + <div class="footer-brand"> | |
| 93 | + <img src="/assets/brand/uqo-logo-white.png" alt="UQO" width="140" height="59" style="width:140px;height:auto;margin-bottom:10px"> | |
| 94 | + <div class="brand-code">IMM1003</div> | |
| 95 | + <div>Éléments d’évaluation immobilière</div> | |
| 96 | + <div style="opacity:.7;margin-top:6px;font-size:.85rem">Automne 2026 · 3 crédits · premier cycle · 14 séances</div> | |
| 97 | + <div style="margin-top:14px;font-size:.85rem">Simon-Pierre Boucher, professeur<br>Département des sciences administratives<br>Université du Québec en Outaouais<br><a href="mailto:simon-pierre.boucher@uqo.ca" style="display:inline;padding:0">simon-pierre.boucher@uqo.ca</a></div> | |
| 98 | + </div> | |
| 99 | + <div><h4>Étudier</h4><a href="/seance/01/">Séances</a><a href="/aide-memoire/">Aide-mémoire</a><a href="/glossaire/">Glossaire</a><a href="/definitions/">Toutes les définitions</a><a href="/carte/">Carte du cours</a><a href="/exercices/">Banque d’exercices</a></div> | |
| 100 | + <div><h4>S’exercer</h4><a href="/quiz/">Quiz et examens blancs</a><a href="/entrainement/">Entraînement</a><a href="/jeux/">Jeux de révision</a><a href="/fiches/">Fiches de révision</a><a href="/outils/">Calculateurs</a><a href="/progression/">Ma progression</a></div> | |
| 101 | + <div><h4>Ressources</h4><a href="/diapositives/">Diapositives</a><a href="/ressources/">Téléchargements</a><a href="/rapport/">Rapport — marché de l’habitation</a><a href="/bibliographie/">Bibliographie</a><a href="/recherche/">Recherche</a><a href="https://www.uqo-imm1033.app" rel="noopener">IMM1033 — Méthodes du coût en évaluation immobilière</a></div> | |
| 102 | + </div> | |
| 103 | + <div class="footer-legal"><div><span>© 2026 Simon-Pierre Boucher — Université du Québec en Outaouais. Document destiné aux étudiantes et étudiants inscrits au cours IMM1003 ; toute reproduction ou diffusion sans autorisation écrite de l’auteur est interdite.</span><span>Généré depuis les sources LaTeX · KaTeX · TikZ</span></div></div> | |
| 104 | +</footer> | |
| 105 | +<div id="search-modal" class="search-modal" role="dialog" aria-modal="true" aria-label="Recherche dans les notes"> | |
| 106 | + <div class="search-box"> | |
| 107 | + <input type="search" placeholder="Rechercher une notion, une formule, un exemple…" autocomplete="off" spellcheck="false"> | |
| 108 | + <div class="search-results"></div> | |
| 109 | + <div class="search-foot"><span><kbd>↑</kbd><kbd>↓</kbd> naviguer</span><span><kbd>↵</kbd> ouvrir</span><span><kbd>Échap</kbd> fermer</span><span style="margin-left:auto"><a href="/recherche/">Page de recherche complète</a></span></div> | |
| 110 | + </div> | |
| 111 | +</div> | |
| 112 | + | |
| 113 | +<script src="/assets/js/app.js" defer></script> | |
| 114 | +</body> | |
| 115 | +</html> | |
added
dist/aide-memoire/index.html
+204 −0
@@ -0,0 +1,204 @@ | ||
| 1 | +<!DOCTYPE html> | |
| 2 | +<html lang="fr" data-theme="light"> | |
| 3 | +<head> | |
| 4 | +<meta charset="utf-8"> | |
| 5 | +<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"> | |
| 6 | +<title>Aide-mémoire des formules · IMM1003 — Éléments d’évaluation immobilière</title> | |
| 7 | +<meta name="description" content="Principes, méthodes et pratique de l’évaluation immobilière au Québec : fondements, cadre professionnel, analyse de marché et les trois méthodes d’évaluation."> | |
| 8 | +<meta name="author" content="Simon-Pierre Boucher — Université du Québec en Outaouais"> | |
| 9 | +<meta name="theme-color" content="#0f6180"> | |
| 10 | +<meta property="og:site_name" content="IMM1003 — UQO"> | |
| 11 | +<meta property="og:title" content="Aide-mémoire des formules · IMM1003 — Éléments d’évaluation immobilière"> | |
| 12 | +<meta property="og:description" content="Principes, méthodes et pratique de l’évaluation immobilière au Québec : fondements, cadre professionnel, analyse de marché et les trois méthodes d’évaluation."> | |
| 13 | +<meta property="og:type" content="website"> | |
| 14 | +<meta property="og:url" content="https://www.uqo-imm1003.app/aide-memoire/"> | |
| 15 | +<meta property="og:image" content="https://www.uqo-imm1003.app/assets/og.png"> | |
| 16 | +<meta property="og:image:width" content="1200"><meta property="og:image:height" content="630"> | |
| 17 | +<meta property="og:image:alt" content="IMM1003 — Éléments d’évaluation immobilière — UQO"> | |
| 18 | +<meta property="og:locale" content="fr_CA"> | |
| 19 | +<meta name="twitter:card" content="summary_large_image"> | |
| 20 | +<meta name="twitter:title" content="Aide-mémoire des formules · IMM1003 — Éléments d’évaluation immobilière"> | |
| 21 | +<meta name="twitter:description" content="Principes, méthodes et pratique de l’évaluation immobilière au Québec : fondements, cadre professionnel, analyse de marché et les trois méthodes d’évaluation."> | |
| 22 | +<meta name="twitter:image" content="https://www.uqo-imm1003.app/assets/og.png"> | |
| 23 | +<link rel="canonical" href="https://www.uqo-imm1003.app/aide-memoire/"> | |
| 24 | +<link rel="icon" href="/favicon.svg" type="image/svg+xml"> | |
| 25 | +<link rel="icon" href="/assets/brand/favicon-32.png" sizes="32x32" type="image/png"> | |
| 26 | +<link rel="icon" href="/favicon.ico" sizes="any"> | |
| 27 | +<link rel="apple-touch-icon" href="/assets/brand/apple-touch-icon.png"> | |
| 28 | +<link rel="manifest" href="/manifest.webmanifest"> | |
| 29 | +<link rel="preconnect" href="https://fonts.googleapis.com"> | |
| 30 | +<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| 31 | +<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&display=swap"> | |
| 32 | +<link rel="stylesheet" href="/assets/katex/katex.min.css"> | |
| 33 | +<link rel="stylesheet" href="/assets/css/site.css"> | |
| 34 | +<script>(function(){try{var t=localStorage.getItem('uqo:theme');if(t)document.documentElement.dataset.theme=JSON.parse(t);var f=localStorage.getItem('uqo:fs');if(f&&JSON.parse(f))document.documentElement.dataset.fs=JSON.parse(f);}catch(e){}})();</script> | |
| 35 | + | |
| 36 | +</head> | |
| 37 | +<body class="course-imm1003 " data-course="imm1003"> | |
| 38 | + | |
| 39 | +<svg xmlns="http://www.w3.org/2000/svg" style="display:none" aria-hidden="true"> | |
| 40 | + <symbol id="i-book" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M2 4h6a4 4 0 0 1 4 4v12a3 3 0 0 0-3-3H2zM22 4h-6a4 4 0 0 0-4 4v12a3 3 0 0 1 3-3h7z"/></symbol> | |
| 41 | + <symbol id="i-formula" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M3 12h3l3 8 4-16 3 8h5"/></symbol> | |
| 42 | + <symbol id="i-bulb" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M9 18h6M10 22h4M12 2a7 7 0 0 0-4 12.7c.6.5 1 1.3 1 2.3h6c0-1 .4-1.8 1-2.3A7 7 0 0 0 12 2z"/></symbol> | |
| 43 | + <symbol id="i-pencil" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M12 20h9M16.5 3.5a2.1 2.1 0 0 1 3 3L7 19l-4 1 1-4z"/></symbol> | |
| 44 | + <symbol id="i-warning" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M10.3 3.9 1.8 18a2 2 0 0 0 1.7 3h17a2 2 0 0 0 1.7-3L13.7 3.9a2 2 0 0 0-3.4 0zM12 9v4M12 17h.01"/></symbol> | |
| 45 | + <symbol id="i-hardhat" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M2 18h20M4 18v-3a8 8 0 0 1 5-7.4V12M20 18v-3a8 8 0 0 0-5-7.4V12M10 4h4v8h-4z"/></symbol> | |
| 46 | + <symbol id="i-pen" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M12 19l7-7 3 3-7 7-3-3zM18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5zM2 2l7.6 7.6"/><circle cx="11" cy="11" r="2" fill="none" stroke="currentColor" stroke-width="2"/></symbol> | |
| 47 | + <symbol id="i-map" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M1 6v16l7-4 8 4 7-4V2l-7 4-8-4zM8 2v16M16 6v16"/></symbol> | |
| 48 | + <symbol id="i-star" viewBox="0 0 24 24"><path fill="currentColor" d="M12 2l3.1 6.3 6.9 1-5 4.9 1.2 6.9L12 17.8 5.8 21l1.2-6.9-5-4.9 6.9-1z"/></symbol> | |
| 49 | + <symbol id="i-target" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="12" cy="12" r="6" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="12" cy="12" r="2" fill="currentColor"/></symbol> | |
| 50 | + <symbol id="i-clipboard" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M9 5H7a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v0a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2zM9 14l2 2 4-4"/></symbol> | |
| 51 | + <symbol id="i-check" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="currentColor" stroke-width="2"/><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M8 12l3 3 5-6"/></symbol> | |
| 52 | + <symbol id="i-search" viewBox="0 0 24 24"><circle cx="11" cy="11" r="7" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M20 20l-3.5-3.5"/></symbol> | |
| 53 | + <symbol id="i-sun" viewBox="0 0 24 24"><circle cx="12" cy="12" r="4" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4"/></symbol> | |
| 54 | + <symbol id="i-menu" viewBox="0 0 24 24"><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M4 6h16M4 12h16M4 18h16"/></symbol> | |
| 55 | + <symbol id="i-text" viewBox="0 0 24 24"><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M4 7V5h16v2M12 5v14M9 19h6"/></symbol> | |
| 56 | + <symbol id="i-slides" viewBox="0 0 24 24"><rect x="2" y="3" width="20" height="14" rx="2" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M8 21h8M12 17v4"/></symbol> | |
| 57 | + <symbol id="i-quiz" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="currentColor" stroke-width="2"/><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M9.1 9a3 3 0 0 1 5.8 1c0 2-3 3-3 3M12 17h.01"/></symbol> | |
| 58 | + <symbol id="i-cards" viewBox="0 0 24 24"><rect x="3" y="6" width="14" height="16" rx="2" fill="none" stroke="currentColor" stroke-width="2"/><path fill="none" stroke="currentColor" stroke-width="2" d="M7 2h12a2 2 0 0 1 2 2v14"/></symbol> | |
| 59 | + <symbol id="i-calc" viewBox="0 0 24 24"><rect x="4" y="2" width="16" height="20" rx="2" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M8 6h8M8 11h.01M12 11h.01M16 11h.01M8 15h.01M12 15h.01M16 15h.01M8 19h.01M12 19h.01M16 19h.01"/></symbol> | |
| 60 | + <symbol id="i-download" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3"/></symbol> | |
| 61 | + <symbol id="i-eye" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3" fill="none" stroke="currentColor" stroke-width="2"/></symbol> | |
| 62 | + <symbol id="i-arrow" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M5 12h14M13 6l6 6-6 6"/></symbol> | |
| 63 | + <symbol id="i-bib" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"/></symbol> | |
| 64 | + <symbol id="i-list" viewBox="0 0 24 24"><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M8 6h13M8 12h13M8 18h13M3 6h.01M3 12h.01M3 18h.01"/></symbol> | |
| 65 | + <symbol id="i-note" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M14 3v4a1 1 0 0 0 1 1h4M17 21H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7l5 5v11a2 2 0 0 1-2 2zM9 13h6M9 17h6"/></symbol> | |
| 66 | + <symbol id="i-audio" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M11 5 6 9H2v6h4l5 4zM15.5 8.5a5 5 0 0 1 0 7M19 5a10 10 0 0 1 0 14"/></symbol> | |
| 67 | + <symbol id="i-up" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M12 19V5M5 12l7-7 7 7"/></symbol> | |
| 68 | + <symbol id="i-dumbbell" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M6 5v14M18 5v14M3 8v8M21 8v8M6 12h12"/></symbol> | |
| 69 | + <symbol id="i-game" viewBox="0 0 24 24"><rect x="2" y="7" width="20" height="12" rx="4" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M7 11v4M5 13h4M15 12h.01M18 14h.01"/></symbol> | |
| 70 | + <symbol id="i-chart" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M3 3v18h18M7 15l4-5 4 3 5-7"/></symbol> | |
| 71 | + <symbol id="i-progress" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" d="M4 20V10M10 20V4M16 20v-8M22 20H2"/></symbol> | |
| 72 | + <symbol id="i-network" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="4" cy="6" r="2" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="20" cy="6" r="2" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="4" cy="18" r="2" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="20" cy="18" r="2" fill="none" stroke="currentColor" stroke-width="2"/><path stroke="currentColor" stroke-width="2" d="M6 7l4 3M18 7l-4 3M6 17l4-3M18 17l-4-3"/></symbol> | |
| 73 | + <symbol id="i-report" viewBox="0 0 24 24"><path fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8zM14 2v6h6M8 17l3-4 2 2 3-5"/></symbol> | |
| 74 | +</svg> | |
| 75 | + | |
| 76 | +<a class="skip" href="#main">Aller au contenu</a> | |
| 77 | +<header class="topbar"> | |
| 78 | + <div class="topbar-inner"> | |
| 79 | + <a class="brand" href="/" aria-label="IMM1003 — accueil"><img class="brand-logo" src="/assets/brand/uqo-logo.png" alt="UQO" width="568" height="238"><span class="brand-sep"></span><span class="brand-text"><span class="brand-code">IMM1003</span><span class="brand-title">Éléments d’évaluation immobilière</span></span></a> | |
| 80 | + <nav class="topnav" aria-label="Navigation principale"><div class="dd"><button type="button" aria-expanded="false" aria-haspopup="true">Séances <span class="caret" aria-hidden="true">▾</span></button><div class="dd-menu wide"><div class="dd-part"><i style="background:#2976bb"></i>Partie I — Fondements de l’évaluation immobilière</div><a href="/seance/01/" data-ch="01"><span class="pastille" style="background:#2976bb">1</span><span>Introduction à l'évaluation immobilière</span></a><a href="/seance/02/" data-ch="02"><span class="pastille" style="background:#2976bb">2</span><span>Le cadre professionnel au Québec</span></a><a href="/seance/03/" data-ch="03"><span class="pastille" style="background:#2976bb">3</span><span>Les principes fondamentaux de l'évaluation</span></a><div class="dd-part"><i style="background:#0f8b8d"></i>Partie II — Valeur, marché et données</div><a href="/seance/04/" data-ch="04"><span class="pastille" style="background:#0f8b8d">4</span><span>La valeur : concepts et types</span></a><a href="/seance/05/" data-ch="05"><span class="pastille" style="background:#0f8b8d">5</span><span>Le marché immobilier québécois</span></a><a href="/seance/06/" data-ch="06"><span class="pastille" style="background:#0f8b8d">6</span><span>Collecte et analyse des données</span></a><a href="/seance/07/" data-ch="07"><span class="pastille" style="background:#0f8b8d">7</span><span>Examen mi-session : révision des blocs 1 et 2</span></a><div class="dd-part"><i style="background:#cca424"></i>Partie III — Les trois méthodes d’évaluation</div><a href="/seance/08/" data-ch="08"><span class="pastille" style="background:#cca424">8</span><span>La méthode de comparaison — Partie 1 : principes et sélection des comparables</span></a><a href="/seance/09/" data-ch="09"><span class="pastille" style="background:#cca424">9</span><span>La méthode de comparaison — Partie 2 : ajustements et réconciliation</span></a><a href="/seance/10/" data-ch="10"><span class="pastille" style="background:#cca424">10</span><span>La méthode du coût</span></a><a href="/seance/11/" data-ch="11"><span class="pastille" style="background:#cca424">11</span><span>La méthode du revenu — Partie 1 : du revenu brut au RNE</span></a><a href="/seance/12/" data-ch="12"><span class="pastille" style="background:#cca424">12</span><span>La méthode du revenu — Partie 2 : le taux et le DCF</span></a><div class="dd-part"><i style="background:#6b4fbb"></i>Partie IV — Synthèse et pratique professionnelle</div><a href="/seance/13/" data-ch="13"><span class="pastille" style="background:#6b4fbb">13</span><span>Le rapport d'évaluation</span></a><a href="/seance/14/" data-ch="14"><span class="pastille" style="background:#6b4fbb">14</span><span>Révision générale et cas intégrateur</span></a><div class="dd-part">Annexes</div><a href="/aide-memoire/"><span class="pastille">A</span><span>Aide-mémoire des formules</span></a><a href="/glossaire/"><span class="pastille">B</span><span>Glossaire</span></a><a href="/rapport/"><span class="pastille" style="background:var(--teal)">R</span><span>Rapport — Le marché de l’habitation au Québec</span></a></div></div><div class="dd current"><button type="button" aria-expanded="false" aria-haspopup="true">Réviser <span class="caret" aria-hidden="true">▾</span></button><div class="dd-menu "><a href="/aide-memoire/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span>Aide-mémoire<span class="dd-desc">Toutes les formules commentées</span></span></a><a href="/glossaire/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-book"/></svg></span><span>Glossaire<span class="dd-desc">Termes du métier, équivalents anglais</span></span></a><a href="/definitions/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-list"/></svg></span><span>Toutes les définitions<span class="dd-desc">Les formulations attendues aux examens</span></span></a><a href="/fiches/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-cards"/></svg></span><span>Fiches de révision<span class="dd-desc">Recto-verso, suivi d’acquisition</span></span></a><a href="/carte/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-network"/></svg></span><span>Carte du cours<span class="dd-desc">Les 14 séances et leurs objectifs en un coup d’œil</span></span></a><a href="/exercices/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-pencil"/></svg></span><span>Banque d’exercices<span class="dd-desc">Tous les exercices corrigés</span></span></a></div></div><div class="dd"><button type="button" aria-expanded="false" aria-haspopup="true">S’exercer <span class="caret" aria-hidden="true">▾</span></button><div class="dd-menu "><a href="/quiz/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-quiz"/></svg></span><span>Quiz et examens blancs<span class="dd-desc">QCM avec rétroaction, chronomètre</span></span></a><a href="/entrainement/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-dumbbell"/></svg></span><span>Entraînement<span class="dd-desc">Problèmes à données aléatoires, corrigés pas à pas</span></span></a><a href="/jeux/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-game"/></svg></span><span>Jeux de révision<span class="dd-desc">Association, vrai ou faux, remise en ordre</span></span></a><a href="/outils/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-calc"/></svg></span><span>Calculateurs<span class="dd-desc">Les formules en interactif</span></span></a><a href="/progression/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-progress"/></svg></span><span>Ma progression<span class="dd-desc">Lecture, quiz, objectifs, notes</span></span></a></div></div><div class="dd"><button type="button" aria-expanded="false" aria-haspopup="true">Ressources <span class="caret" aria-hidden="true">▾</span></button><div class="dd-menu "><a href="/diapositives/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-slides"/></svg></span><span>Diapositives<span class="dd-desc">Les 14 présentations en ligne</span></span></a><a href="/ressources/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-download"/></svg></span><span>Téléchargements<span class="dd-desc">Manuel, plan, TP, gabarits Excel</span></span></a><a href="/rapport/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-report"/></svg></span><span>Rapport marché QC<span class="dd-desc">Indices de prix, macro, abordabilité — 26 sections, 67 figures</span></span></a><a href="/bibliographie/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-bib"/></svg></span><span>Bibliographie<span class="dd-desc">Références citées</span></span></a><a href="/recherche/"><span class="dd-ico"><svg class="" aria-hidden="true"><use href="#i-search"/></svg></span><span>Recherche<span class="dd-desc">Tout le manuel indexé</span></span></a></div></div></nav> | |
| 81 | + <div class="topbar-actions"> | |
| 82 | + <button class="icon-btn search-btn" type="button" data-action="search" aria-label="Rechercher"><svg class="" aria-hidden="true"><use href="#i-search"/></svg><span>Rechercher</span><kbd>⌘K</kbd></button> | |
| 83 | + <button class="icon-btn" type="button" data-action="theme" aria-label="Thème clair ou sombre" title="Thème"><svg class="" aria-hidden="true"><use href="#i-sun"/></svg></button> | |
| 84 | + <button class="icon-btn menu-btn" type="button" aria-label="Menu" aria-expanded="false"><svg class="" aria-hidden="true"><use href="#i-menu"/></svg></button> | |
| 85 | + </div> | |
| 86 | + </div> | |
| 87 | + | |
| 88 | +</header> | |
| 89 | + | |
| 90 | +<main id="main" class="page"> | |
| 91 | + <div class="page-head"><div class="eyebrow">Annexe A</div><h1>Aide-mémoire des formules</h1><p class="lead">Toutes les formules du cours, classées par thème, avec la définition de chaque variable et les repères chiffrés utiles.</p></div> | |
| 92 | + <div class="two-col"> | |
| 93 | + <article class="prose"><p id="pA-1">Cette annexe regroupe toutes les formules du cours, classées par thème, avec la définition de chaque variable et les repères chiffrés utiles. C'est l'outil de révision par excellence : chaque formule doit pouvoir être écrite <em>et expliquée</em> de mémoire à l'examen final.</p> | |
| 94 | +<h2 id="s-A-1" class="h-section"><span class="h-num">A.1</span><span class="h-text">Méthode de comparaison</span><a class="h-anchor" href="#s-A-1" aria-label="Lien vers cette section">#</a></h2> | |
| 95 | +<div class="box box-form" id="form-A-1"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.1</span><span class="box-title">— valeur par comparaison</span><a class="box-anchor" href="#form-A-1" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><msub><mi>V</mi><mtext>sujet</mtext></msub><mtext> </mtext><mo>≈</mo><mtext> </mtext><mtext>Prix du comparable</mtext><mtext> </mtext><mo>±</mo><mtext> </mtext><mtext>Ajustements</mtext></mrow><annotation encoding="application/x-tex">V_{\text{sujet}} \;\approx\; \text{Prix du comparable} \;\pm\; \text{Ajustements}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.9694em;vertical-align:-0.2861em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3175em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">sujet</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.2861em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">≈</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.8889em;vertical-align:-0.1944em;"></span><span class="mord text"><span class="mord">Prix du comparable</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">±</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.8778em;vertical-align:-0.1944em;"></span><span class="mord text"><span class="mord">Ajustements</span></span></span></span></span></span></div> | |
| 96 | +<div class="center"><div class="table-wrap"><table class="tbl"><tbody><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>V</mi><mtext>sujet</mtext></msub></mrow><annotation encoding="application/x-tex">V_{\text{sujet}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.9694em;vertical-align:-0.2861em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3175em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">sujet</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.2861em;"><span></span></span></span></span></span></span></span></span></span></td><td>Indication de valeur du bien évalué</td></tr><tr><td>Prix du comparable</td><td>Prix de vente réel et vérifié du bien comparable</td></tr><tr><td>Ajustements</td><td>Corrections (en $ ou en %) pour chaque différence pertinente</td></tr></tbody></table></div></div></div></div> | |
| 97 | +<div class="box box-form" id="form-A-2"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.2</span><span class="box-title">— ajustement en pourcentage</span><a class="box-anchor" href="#form-A-2" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mtext>Ajustement (%)</mtext><mtext> </mtext><mo>=</mo><mtext> </mtext><mfrac><mrow><mtext>Diff</mtext><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover><mtext>rence attribuable au facteur</mtext></mrow><mtext>Prix du comparable</mtext></mfrac><mo>×</mo><mn>100</mn></mrow><annotation encoding="application/x-tex">\text{Ajustement (\%)} \;=\; \frac{\text{Différence attribuable au facteur}} | |
| 98 | +{\text{Prix du comparable}} \times 100</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord text"><span class="mord">Ajustement (%)</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.2519em;vertical-align:-0.8804em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3714em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">Prix du comparable</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">Diff</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˊ</span></span></span></span></span></span></span><span class="mord">rence attribuable au facteur</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.8804em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.6444em;"></span><span class="mord">100</span></span></span></span></span></div></div></div> | |
| 99 | +<div class="box box-form" id="form-A-3"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.3</span><span class="box-title">— ajustement temporel (conditions de marché)</span><a class="box-anchor" href="#form-A-3" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mtext>Ajustement temporel</mtext><mtext> </mtext><mo>=</mo><mtext> </mtext><mtext>Prix du comparable</mtext><mo>×</mo><msub><mi>g</mi><mtext>mensuel</mtext></msub><mo>×</mo><msub><mi>n</mi><mtext>mois</mtext></msub></mrow><annotation encoding="application/x-tex">\text{Ajustement temporel} \;=\; \text{Prix du comparable} \times g_{\text{mensuel}} | |
| 100 | +\times n_{\text{mois}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8889em;vertical-align:-0.1944em;"></span><span class="mord text"><span class="mord">Ajustement temporel</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.8889em;vertical-align:-0.1944em;"></span><span class="mord text"><span class="mord">Prix du comparable</span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.7778em;vertical-align:-0.1944em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0359em;">g</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0359em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">mensuel</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.5806em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal">n</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3175em;"><span style="top:-2.55em;margin-left:0em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">mois</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></span></div> | |
| 101 | +<div class="center"><div class="table-wrap"><table class="tbl"><tbody><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>g</mi><mtext>mensuel</mtext></msub></mrow><annotation encoding="application/x-tex">g_{\text{mensuel}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.625em;vertical-align:-0.1944em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0359em;">g</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0359em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">mensuel</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Taux de variation mensuel du marché (p. ex. 0,5 %/mois)</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>n</mi><mtext>mois</mtext></msub></mrow><annotation encoding="application/x-tex">n_{\text{mois}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.5806em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal">n</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3175em;"><span style="top:-2.55em;margin-left:0em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">mois</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Nombre de mois entre la vente et la date d'évaluation</td></tr></tbody></table></div></div></div></div> | |
| 102 | +<div class="box box-rem" id="remarque-A-2"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-pen"/></svg></span><span class="box-label">règles de pratique — comparaison</span><a class="box-anchor" href="#remarque-A-2" aria-label="Lien">#</a></div><div class="box-body"><p id="pA-3">Les ajustements se font toujours <strong>du comparable vers le sujet</strong> : comparable supérieur <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>→</mo></mrow><annotation encoding="application/x-tex">\rightarrow</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.3669em;"></span><span class="mrel">→</span></span></span></span> ajustement <strong>négatif</strong> ; comparable inférieur <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>→</mo></mrow><annotation encoding="application/x-tex">\rightarrow</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.3669em;"></span><span class="mrel">→</span></span></span></span> ajustement <strong>positif</strong>. Seuils usuels : ajustement <strong>net <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>≤</mo></mrow><annotation encoding="application/x-tex">\leq</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.7719em;vertical-align:-0.136em;"></span><span class="mrel">≤</span></span></span></span> 15 %</strong> et <strong>brut <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>≤</mo></mrow><annotation encoding="application/x-tex">\leq</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.7719em;vertical-align:-0.136em;"></span><span class="mrel">≤</span></span></span></span> 25 %</strong> du prix de vente ; au-delà, le comparable perd sa fiabilité.</p></div></div> | |
| 103 | +<h2 id="s-A-2" class="h-section"><span class="h-num">A.2</span><span class="h-text">Méthode du coût</span><a class="h-anchor" href="#s-A-2" aria-label="Lien vers cette section">#</a></h2> | |
| 104 | +<div class="box box-form" id="form-A-4"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.4</span><span class="box-title">— valeur par la méthode du coût</span><a class="box-anchor" href="#form-A-4" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><menclose notation="box"><mstyle scriptlevel="0" displaystyle="false"><mstyle scriptlevel="0" displaystyle="false"><mstyle scriptlevel="0" displaystyle="true"><mrow><mtext> </mtext><mi>V</mi><mtext> </mtext><mo>=</mo><mtext> </mtext><msub><mi>C</mi><mtext>neuf</mtext></msub><mtext> </mtext><mo>−</mo><mtext> </mtext><msub><mi>D</mi><mtext>totale</mtext></msub><mtext> </mtext><mo>+</mo><mtext> </mtext><msub><mi>V</mi><mtext>terrain</mtext></msub><mtext> </mtext></mrow></mstyle></mstyle></mstyle></menclose></mrow><annotation encoding="application/x-tex">\boxed{\;V \;=\; C_{\text{neuf}} \;-\; D_{\text{totale}} \;+\; V_{\text{terrain}}\;}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:1.5133em;vertical-align:-0.49em;"></span><span class="mord"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.0233em;"><span style="top:-3.5133em;"><span class="pstrut" style="height:3.5133em;"></span><span class="boxpad"><span class="mord"><span class="mord"><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0715em;">C</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0715em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">neuf</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">totale</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3175em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">terrain</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span></span></span></span></span><span style="top:-3.0233em;"><span class="pstrut" style="height:3.5133em;"></span><span class="katex-stretchy fbox" style="height:1.5133em;border-style:solid;border-width:0.04em;"></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.49em;"><span></span></span></span></span></span></span></span></span></span></div> | |
| 105 | +<div class="center"><div class="table-wrap"><table class="tbl"><tbody><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>C</mi><mtext>neuf</mtext></msub></mrow><annotation encoding="application/x-tex">C_{\text{neuf}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0715em;">C</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0715em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">neuf</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Coût de remplacement (ou de reproduction) à neuf</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>D</mi><mtext>totale</mtext></msub></mrow><annotation encoding="application/x-tex">D_{\text{totale}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">totale</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Dépréciation totale (physique + fonctionnelle + économique)</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>V</mi><mtext>terrain</mtext></msub></mrow><annotation encoding="application/x-tex">V_{\text{terrain}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3175em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">terrain</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Valeur du terrain comme s'il était vacant</td></tr></tbody></table></div></div></div></div> | |
| 106 | +<div class="box box-form" id="form-A-5"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.5</span><span class="box-title">— coût de remplacement à neuf</span><a class="box-anchor" href="#form-A-5" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><msub><mi>C</mi><mtext>neuf</mtext></msub><mtext> </mtext><mo>=</mo><mtext> </mtext><mrow><mtext>Co</mtext><mover accent="true"><mtext>u</mtext><mo>ˆ</mo></mover><mtext>ts directs</mtext></mrow><mtext> </mtext><mo>+</mo><mtext> </mtext><mrow><mtext>Co</mtext><mover accent="true"><mtext>u</mtext><mo>ˆ</mo></mover><mtext>ts indirects</mtext></mrow><mtext> </mtext><mo>+</mo><mtext> </mtext><mtext>Profit de l’entrepreneur</mtext></mrow><annotation encoding="application/x-tex">C_{\text{neuf}} \;=\; \text{Coûts directs} \;+\; \text{Coûts indirects} | |
| 107 | +\;+\; \text{Profit de l'entrepreneur}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0715em;">C</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0715em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">neuf</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.7778em;vertical-align:-0.0833em;"></span><span class="mord text"><span class="mord">Co</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">u</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˆ</span></span></span></span></span></span></span><span class="mord">ts directs</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.7778em;vertical-align:-0.0833em;"></span><span class="mord text"><span class="mord">Co</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">u</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˆ</span></span></span></span></span></span></span><span class="mord">ts indirects</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.8889em;vertical-align:-0.1944em;"></span><span class="mord text"><span class="mord">Profit de l’entrepreneur</span></span></span></span></span></span></div> | |
| 108 | +<div class="center"><div class="table-wrap"><table class="tbl"><tbody><tr><td>Coûts directs</td><td>Matériaux, main-d'œuvre, équipements (taux unitaires <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>×</mo></mrow><annotation encoding="application/x-tex">\times</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6667em;vertical-align:-0.0833em;"></span><span class="mord">×</span></span></span></span> superficies)</td></tr><tr><td>Coûts indirects</td><td>Honoraires professionnels, permis, financement de chantier, assurances (souvent 10–15 % des coûts directs)</td></tr><tr><td>Profit</td><td>Profit de l'entrepreneur (souvent 8–10 % des coûts directs)</td></tr></tbody></table></div></div></div></div> | |
| 109 | +<div class="box box-form" id="form-A-6"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.6</span><span class="box-title">— dépréciation physique — méthode âge/vie</span><a class="box-anchor" href="#form-A-6" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><msub><mi>D</mi><mtext>physique</mtext></msub><mtext> </mtext><mo>=</mo><mtext> </mtext><mfrac><mrow><mover accent="true"><mtext>A</mtext><mo>ˆ</mo></mover><mtext>ge effectif</mtext></mrow><mrow><mtext>Vie utile </mtext><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover><mtext>conomique</mtext></mrow></mfrac><mo>×</mo><msub><mi>C</mi><mtext>neuf</mtext></msub></mrow><annotation encoding="application/x-tex">D_{\text{physique}} \;=\; \frac{\text{Âge effectif}}{\text{Vie utile économique}} | |
| 110 | +\times C_{\text{neuf}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.9694em;vertical-align:-0.2861em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">physique</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.2861em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.5042em;vertical-align:-0.8804em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.6238em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">Vie utile </span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˊ</span></span></span></span></span></span></span><span class="mord">conomique</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.9468em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">A</span></span><span style="top:-3.2523em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˆ</span></span></span></span></span></span></span><span class="mord">ge effectif</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.8804em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0715em;">C</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0715em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">neuf</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></span></div> | |
| 111 | +<div class="center"><div class="table-wrap"><table class="tbl"><tbody><tr><td>Âge effectif</td><td>Âge apparent compte tenu de l'entretien et des rénovations (peut différer de l'âge chronologique)</td></tr><tr><td>Vie utile économique</td><td>Durée totale pendant laquelle le bâtiment contribue à la valeur</td></tr></tbody></table></div></div></div></div> | |
| 112 | +<div class="box box-form" id="form-A-7"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.7</span><span class="box-title">— dépréciation totale ventilée</span><a class="box-anchor" href="#form-A-7" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mtable rowspacing="0.25em" columnalign="right left" columnspacing="0em"><mtr><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow><msub><mi>D</mi><mtext>totale</mtext></msub><mo>=</mo><mrow></mrow></mrow></mstyle></mtd><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow><mrow></mrow><msub><mi>D</mi><mtext>phys. curable</mtext></msub><mo>+</mo><msub><mi>D</mi><mtext>phys. incurable</mtext></msub></mrow></mstyle></mtd></mtr><mtr><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow></mrow></mstyle></mtd><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow><mrow></mrow><mo>+</mo><msub><mi>D</mi><mtext>fonct. curable</mtext></msub><mo>+</mo><msub><mi>D</mi><mtext>fonct. incurable</mtext></msub><mo>+</mo><msub><mi>D</mi><mrow><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover><mtext>conomique</mtext></mrow></msub></mrow></mstyle></mtd></mtr></mtable><annotation encoding="application/x-tex">\begin{aligned}D_{\text{totale}} = {} & D_{\text{phys.\ curable}} + D_{\text{phys.\ incurable}} \\ | |
| 113 | +& + D_{\text{fonct.\ curable}} + D_{\text{fonct.\ incurable}} + D_{\text{économique}}\end{aligned}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:2.7em;vertical-align:-1.1em;"></span><span class="mord"><span class="mtable"><span class="col-align-r"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.6em;"><span style="top:-3.76em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">totale</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord"></span></span></span><span style="top:-2.26em;"><span class="pstrut" style="height:3em;"></span><span class="mord"></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.1em;"><span></span></span></span></span></span><span class="col-align-l"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.6em;"><span style="top:-3.76em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">phys. curable</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.2861em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">phys. incurable</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.2861em;"><span></span></span></span></span></span></span></span></span><span style="top:-2.26em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">fonct. curable</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">fonct. incurable</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord katex-accent mtight"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-2.7em;"><span class="pstrut" style="height:2.7em;"></span><span class="mord mtight">e</span></span><span style="top:-2.7em;"><span class="pstrut" style="height:2.7em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord mtight">ˊ</span></span></span></span></span></span></span><span class="mord mtight">conomique</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.2861em;"><span></span></span></span></span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.1em;"><span></span></span></span></span></span></span></span></span></span></span></span></div> | |
| 114 | +<p id="pA-4">Lorsque des éléments curables sont chiffrés d'abord, la dépréciation physique incurable se calcule sur la <strong>base résiduelle</strong> : <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>D</mi><mtext>phys. incurable</mtext></msub><mo>=</mo><mstyle scriptlevel="0" displaystyle="true"><mfrac><mrow><mover accent="true"><mtext>A</mtext><mo>ˆ</mo></mover><mtext>ge effectif</mtext></mrow><mtext>Vie utile</mtext></mfrac></mstyle><mo>×</mo><mrow><mo fence="true">(</mo><msub><mi>C</mi><mtext>neuf</mtext></msub><mo>−</mo><msub><mi>D</mi><mtext>phys. curable</mtext></msub><mo fence="true">)</mo></mrow></mrow><annotation encoding="application/x-tex">D_{\text{phys.\ incurable}} = \dfrac{\text{Âge effectif}}{\text{Vie utile}} | |
| 115 | +\times \left(C_{\text{neuf}} - D_{\text{phys.\ curable}}\right)</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.9694em;vertical-align:-0.2861em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">phys. incurable</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.2861em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.3098em;vertical-align:-0.686em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.6238em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">Vie utile</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.9468em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">A</span></span><span style="top:-3.2523em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˆ</span></span></span></span></span></span></span><span class="mord">ge effectif</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.686em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:1.0361em;vertical-align:-0.2861em;"></span><span class="minner"><span class="mopen delimcenter" style="top:0em;">(</span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0715em;">C</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0715em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">neuf</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0278em;">D</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.0278em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">phys. curable</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.2861em;"><span></span></span></span></span></span></span><span class="mclose delimcenter" style="top:0em;">)</span></span></span></span></span>.</p></div></div> | |
| 116 | +<div class="box box-rem" id="remarque-A-5"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-pen"/></svg></span><span class="box-label">remplacement ou reproduction</span><a class="box-anchor" href="#remarque-A-5" aria-label="Lien">#</a></div><div class="box-body"><p id="pA-6"><strong>Coût de remplacement</strong> : bâtiment d'<em>utilité équivalente</em>, matériaux et normes modernes — la base usuelle. <strong>Coût de reproduction</strong> : <em>réplique exacte</em>, mêmes matériaux et mêmes défauts — réservé aux bâtiments patrimoniaux ou à certains litiges.</p></div></div> | |
| 117 | +<h2 id="s-A-3" class="h-section"><span class="h-num">A.3</span><span class="h-text">Méthode du revenu</span><a class="h-anchor" href="#s-A-3" aria-label="Lien vers cette section">#</a></h2> | |
| 118 | +<div class="box box-form" id="form-A-8"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.8</span><span class="box-title">— cascade des revenus</span><a class="box-anchor" href="#form-A-8" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mtable rowspacing="0.25em" columnalign="right left" columnspacing="0em"><mtr><mtd><mstyle scriptlevel="0" displaystyle="true"><mtext>RBP</mtext></mstyle></mtd><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow><mrow></mrow><mo>=</mo><mrow><mtext>Somme des loyers du march</mtext><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover><mtext> </mtext><mover accent="true"><mtext>a</mtext><mo>ˋ</mo></mover><mtext> 100 % d’occupation</mtext></mrow></mrow></mstyle></mtd></mtr><mtr><mtd><mstyle scriptlevel="0" displaystyle="true"><mtext>RBE</mtext></mstyle></mtd><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow><mrow></mrow><mo>=</mo><mtext>RBP</mtext><mo>−</mo><mtext>Inoccupation</mtext><mo>−</mo><mrow><mtext>Mauvaises cr</mtext><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover><mtext>ances</mtext></mrow><mo>+</mo><mtext>Autres revenus</mtext></mrow></mstyle></mtd></mtr><mtr><mtd><mstyle scriptlevel="0" displaystyle="true"><mtext>RNE</mtext></mstyle></mtd><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow><mrow></mrow><mo>=</mo><mtext>RBE</mtext><mo>−</mo><mrow><mtext>D</mtext><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover><mtext>penses d’exploitation</mtext></mrow></mrow></mstyle></mtd></mtr></mtable><annotation encoding="application/x-tex">\begin{aligned}\text{RBP} &= \text{Somme des loyers du marché à 100~\% d'occupation} \\ | |
| 119 | +\text{RBE} &= \text{RBP} - \text{Inoccupation} - \text{Mauvaises créances} | |
| 120 | ++ \text{Autres revenus} \\ | |
| 121 | +\text{RNE} &= \text{RBE} - \text{Dépenses d'exploitation}\end{aligned}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:4.2em;vertical-align:-1.85em;"></span><span class="mord"><span class="mtable"><span class="col-align-r"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:2.35em;"><span style="top:-4.51em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">RBP</span></span></span></span><span style="top:-3.01em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">RBE</span></span></span></span><span style="top:-1.51em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">RNE</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.85em;"><span></span></span></span></span></span><span class="col-align-l"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:2.35em;"><span style="top:-4.51em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord text"><span class="mord">Somme des loyers du march</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˊ</span></span></span></span></span></span></span><span class="mord"> </span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">a</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˋ</span></span></span></span></span></span></span><span class="mord"> 100</span><span class="mord nobreak"> </span><span class="mord">% d’occupation</span></span></span></span><span style="top:-3.01em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord text"><span class="mord">RBP</span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord text"><span class="mord">Inoccupation</span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord text"><span class="mord">Mauvaises cr</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˊ</span></span></span></span></span></span></span><span class="mord">ances</span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord text"><span class="mord">Autres revenus</span></span></span></span><span style="top:-1.51em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord text"><span class="mord">RBE</span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord text"><span class="mord">D</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˊ</span></span></span></span></span></span></span><span class="mord">penses d’exploitation</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.85em;"><span></span></span></span></span></span></span></span></span></span></span></span></div> | |
| 122 | +<div class="center"><div class="table-wrap"><table class="tbl"><tbody><tr><td>RBP</td><td>Revenu brut potentiel</td></tr><tr><td>RBE</td><td>Revenu brut effectif</td></tr><tr><td>RNE</td><td>Revenu net d'exploitation (avant service de la dette et impôts)</td></tr></tbody></table></div></div></div></div> | |
| 123 | +<div class="box box-form" id="form-A-9"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.9</span><span class="box-title">— capitalisation directe</span><a class="box-anchor" href="#form-A-9" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><menclose notation="box"><mstyle scriptlevel="0" displaystyle="false"><mstyle scriptlevel="0" displaystyle="false"><mstyle scriptlevel="0" displaystyle="true"><mrow><mtext> </mtext><mi>V</mi><mtext> </mtext><mo>=</mo><mtext> </mtext><mfrac><mtext>RNE</mtext><mtext>TGA</mtext></mfrac><mtext> </mtext></mrow></mstyle></mstyle></mstyle></menclose><mspace width="2em"/><mrow><mtext>et, par sym</mtext><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover><mtext>trie,</mtext></mrow><mspace width="2em"/><mtext>TGA</mtext><mo>=</mo><mfrac><mtext>RNE</mtext><mi>V</mi></mfrac></mrow><annotation encoding="application/x-tex">\boxed{\;V \;=\; \frac{\text{RNE}}{\text{TGA}}\;} | |
| 124 | +\qquad\text{et, par symétrie,}\qquad | |
| 125 | +\text{TGA} = \frac{\text{RNE}}{V}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:2.7263em;vertical-align:-1.026em;"></span><span class="mord"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.7003em;"><span style="top:-4.7263em;"><span class="pstrut" style="height:4.7263em;"></span><span class="boxpad"><span class="mord"><span class="mord"><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3603em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">TGA</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">RNE</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.686em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.2778em;"></span></span></span></span></span><span style="top:-3.7003em;"><span class="pstrut" style="height:4.7263em;"></span><span class="katex-stretchy fbox" style="height:2.7263em;border-style:solid;border-width:0.04em;"></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.026em;"><span></span></span></span></span></span><span class="mspace" style="margin-right:2em;"></span><span class="mord text"><span class="mord">et, par sym</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˊ</span></span></span></span></span></span></span><span class="mord">trie,</span></span><span class="mspace" style="margin-right:2em;"></span><span class="mord text"><span class="mord">TGA</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.0463em;vertical-align:-0.686em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3603em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">RNE</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.686em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span></span></span></span></span></div></div></div> | |
| 126 | +<div class="box box-form" id="form-A-10"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.10</span><span class="box-title">— extraction du TGA sur ventes comparables</span><a class="box-anchor" href="#form-A-10" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><msub><mtext>TGA</mtext><mtext>extrait</mtext></msub><mtext> </mtext><mo>=</mo><mtext> </mtext><mfrac><mtext>RNE du comparable</mtext><mtext>Prix de vente du comparable</mtext></mfrac></mrow><annotation encoding="application/x-tex">\text{TGA}_{\text{extrait}} \;=\; \frac{\text{RNE du comparable}} | |
| 127 | +{\text{Prix de vente du comparable}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord text"><span class="mord">TGA</span></span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3175em;"><span style="top:-2.55em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">extrait</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.2519em;vertical-align:-0.8804em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3714em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">Prix de vente du comparable</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">RNE du comparable</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.8804em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span></span></span></span></span></div> | |
| 128 | +<p id="pA-7">Retenir un taux <em>jugé</em> à partir des extractions — pondérer les comparables les plus semblables, ne pas faire une moyenne aveugle.</p></div></div> | |
| 129 | +<div class="box box-form" id="form-A-11"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.11</span><span class="box-title">— TGA par bande d'investissement (hypothèque–équité)</span><a class="box-anchor" href="#form-A-11" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><menclose notation="box"><mstyle scriptlevel="0" displaystyle="false"><mstyle scriptlevel="0" displaystyle="false"><mstyle scriptlevel="0" displaystyle="true"><mrow><mtext> </mtext><mtext>TGA</mtext><mtext> </mtext><mo>=</mo><mtext> </mtext><mi>M</mi><mo>×</mo><msub><mi>R</mi><mi>m</mi></msub><mtext> </mtext><mo>+</mo><mtext> </mtext><mo stretchy="false">(</mo><mn>1</mn><mo>−</mo><mi>M</mi><mo stretchy="false">)</mo><mo>×</mo><msub><mi>R</mi><mi>e</mi></msub><mtext> </mtext></mrow></mstyle></mstyle></mstyle></menclose><mspace width="2em"/><msub><mi>R</mi><mi>m</mi></msub><mo>=</mo><mn>12</mn><mo>×</mo><mfrac><mrow><mi>i</mi><mi mathvariant="normal">/</mi><mn>12</mn></mrow><mrow><mn>1</mn><mo>−</mo><msup><mrow><mo fence="true">(</mo><mn>1</mn><mo>+</mo><mi>i</mi><mi mathvariant="normal">/</mi><mn>12</mn><mo fence="true">)</mo></mrow><mrow><mo>−</mo><mi>n</mi></mrow></msup></mrow></mfrac></mrow><annotation encoding="application/x-tex">\boxed{\;\text{TGA} \;=\; M \times R_m \;+\; (1 - M) \times R_e\;} | |
| 130 | +\qquad | |
| 131 | +R_m = 12 \times \frac{i/12}{1 - \left(1 + i/12\right)^{-n}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:1.68em;vertical-align:-0.59em;"></span><span class="mord"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.09em;"><span style="top:-3.68em;"><span class="pstrut" style="height:3.68em;"></span><span class="boxpad"><span class="mord"><span class="mord"><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord text"><span class="mord">TGA</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord mathnormal" style="margin-right:0.109em;">M</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0077em;">R</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.1514em;"><span style="top:-2.55em;margin-left:-0.0077em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">m</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mopen">(</span><span class="mord">1</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord mathnormal" style="margin-right:0.109em;">M</span><span class="mclose">)</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0077em;">R</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.1514em;"><span style="top:-2.55em;margin-left:-0.0077em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">e</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span></span></span></span></span><span style="top:-3.09em;"><span class="pstrut" style="height:3.68em;"></span><span class="katex-stretchy fbox" style="height:1.68em;border-style:solid;border-width:0.04em;"></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.59em;"><span></span></span></span></span></span><span class="mspace" style="margin-right:2em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0077em;">R</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.1514em;"><span style="top:-2.55em;margin-left:-0.0077em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">m</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.7278em;vertical-align:-0.0833em;"></span><span class="mord">12</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.4782em;vertical-align:-1.0512em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.427em;"><span style="top:-2.1988em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord">1</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="minner"><span class="minner"><span class="mopen delimcenter" style="top:0em;">(</span><span class="mord">1</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord mathnormal">i</span><span class="mord">/12</span><span class="mclose delimcenter" style="top:0em;">)</span></span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.9112em;"><span style="top:-3.2029em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mtight">−</span><span class="mord mathnormal mtight">n</span></span></span></span></span></span></span></span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord mathnormal">i</span><span class="mord">/12</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.0512em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span></span></span></span></span></div> | |
| 132 | +<div class="center"><div class="table-wrap"><table class="tbl"><tbody><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>M</mi></mrow><annotation encoding="application/x-tex">M</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6833em;"></span><span class="mord mathnormal" style="margin-right:0.109em;">M</span></span></span></span></td><td>Ratio prêt/valeur (part hypothécaire du financement)</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>R</mi><mi>m</mi></msub></mrow><annotation encoding="application/x-tex">R_m</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0077em;">R</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.1514em;"><span style="top:-2.55em;margin-left:-0.0077em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">m</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Constante hypothécaire annuelle (service de la dette <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>÷</mo></mrow><annotation encoding="application/x-tex">\div</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6667em;vertical-align:-0.0833em;"></span><span class="mord">÷</span></span></span></span> montant du prêt)</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>R</mi><mi>e</mi></msub></mrow><annotation encoding="application/x-tex">R_e</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0077em;">R</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.1514em;"><span style="top:-2.55em;margin-left:-0.0077em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">e</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Taux de rendement exigé sur l'équité</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>i</mi></mrow><annotation encoding="application/x-tex">i</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6595em;"></span><span class="mord mathnormal">i</span></span></span></span></td><td>Taux d'intérêt nominal annuel ; <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>n</mi></mrow><annotation encoding="application/x-tex">n</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4306em;"></span><span class="mord mathnormal">n</span></span></span></span> : nombre de mensualités</td></tr></tbody></table></div></div></div></div> | |
| 133 | +<div class="box box-form" id="form-A-12"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.12</span><span class="box-title">— construction du TGA par sommation</span><a class="box-anchor" href="#form-A-12" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mtable rowspacing="0.25em" columnalign="right left" columnspacing="0em"><mtr><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow><mtext>TGA</mtext><mo>=</mo><mrow></mrow></mrow></mstyle></mtd><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow><mrow></mrow><mtext>Taux sans risque</mtext><mo>+</mo><mtext>Prime de risque immobilier</mtext></mrow></mstyle></mtd></mtr><mtr><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow></mrow></mstyle></mtd><mtd><mstyle scriptlevel="0" displaystyle="true"><mrow><mrow></mrow><mo>+</mo><mrow><mtext>Prime de non-liquidit</mtext><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover></mrow><mo>+</mo><mtext>Prime de gestion</mtext><mo>−</mo><mrow><mtext>Croissance anticip</mtext><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover><mtext>e des revenus</mtext></mrow></mrow></mstyle></mtd></mtr></mtable><annotation encoding="application/x-tex">\begin{aligned}\text{TGA} ={} & \text{Taux sans risque} + \text{Prime de risque immobilier} \\ | |
| 134 | +& + \text{Prime de non-liquidité} + \text{Prime de gestion} | |
| 135 | +- \text{Croissance anticipée des revenus}\end{aligned}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:2.7em;vertical-align:-1.1em;"></span><span class="mord"><span class="mtable"><span class="col-align-r"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.6em;"><span style="top:-3.76em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">TGA</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord"></span></span></span><span style="top:-2.26em;"><span class="pstrut" style="height:3em;"></span><span class="mord"></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.1em;"><span></span></span></span></span></span><span class="col-align-l"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.6em;"><span style="top:-3.76em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"></span><span class="mord text"><span class="mord">Taux sans risque</span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord text"><span class="mord">Prime de risque immobilier</span></span></span></span><span style="top:-2.26em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord text"><span class="mord">Prime de non-liquidit</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˊ</span></span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord text"><span class="mord">Prime de gestion</span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord text"><span class="mord">Croissance anticip</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˊ</span></span></span></span></span></span></span><span class="mord">e des revenus</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.1em;"><span></span></span></span></span></span></span></span></span></span></span></span></div></div></div> | |
| 136 | +<div class="box box-form" id="form-A-13"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.13</span><span class="box-title">— multiplicateurs de revenu</span><a class="box-anchor" href="#form-A-13" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mtext>MRB</mtext><mo>=</mo><mfrac><mtext>Prix de vente</mtext><mtext>RBE</mtext></mfrac><mspace width="1em"/><mo>⇔</mo><mspace width="1em"/><mi>V</mi><mo>=</mo><mtext>RBE</mtext><mo>×</mo><mtext>MRB</mtext><mspace width="2em"/><mspace width="2em"/><mtext>MRN</mtext><mo>=</mo><mfrac><mtext>Prix de vente</mtext><mtext>RNE</mtext></mfrac><mo>=</mo><mfrac><mn>1</mn><mtext>TGA</mtext></mfrac></mrow><annotation encoding="application/x-tex">\text{MRB} = \frac{\text{Prix de vente}}{\text{RBE}} | |
| 137 | +\quad\Leftrightarrow\quad | |
| 138 | +V = \text{RBE} \times \text{MRB} | |
| 139 | +\qquad\qquad | |
| 140 | +\text{MRN} = \frac{\text{Prix de vente}}{\text{RNE}} = \frac{1}{\text{TGA}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6833em;"></span><span class="mord text"><span class="mord">MRB</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.0574em;vertical-align:-0.686em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3714em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">RBE</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">Prix de vente</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.686em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:1em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">⇔</span><span class="mspace" style="margin-right:1em;"></span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.6833em;"></span><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.7667em;vertical-align:-0.0833em;"></span><span class="mord text"><span class="mord">RBE</span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.6833em;"></span><span class="mord text"><span class="mord">MRB</span></span><span class="mspace" style="margin-right:2em;"></span><span class="mspace" style="margin-right:2em;"></span><span class="mord text"><span class="mord">MRN</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.0574em;vertical-align:-0.686em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3714em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">RNE</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">Prix de vente</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.686em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.0074em;vertical-align:-0.686em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3214em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">TGA</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord">1</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.686em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span></span></span></span></span></div> | |
| 141 | +<div class="center"><div class="table-wrap"><table class="tbl"><tbody><tr><td>MRB</td><td>Multiplicateur de revenu brut (sur le RBE)</td></tr><tr><td>MRN</td><td>Multiplicateur de revenu net — l'inverse du TGA</td></tr></tbody></table></div></div></div></div> | |
| 142 | +<h2 id="s-A-4" class="h-section"><span class="h-num">A.4</span><span class="h-text">Mathématiques financières et DCF</span><a class="h-anchor" href="#s-A-4" aria-label="Lien vers cette section">#</a></h2> | |
| 143 | +<div class="box box-form" id="form-A-14"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.14</span><span class="box-title">— valeur future et valeur présente</span><a class="box-anchor" href="#form-A-14" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mi>F</mi><mi>V</mi><mo>=</mo><mi>P</mi><mi>V</mi><mo>×</mo><mo stretchy="false">(</mo><mn>1</mn><mo>+</mo><mi>r</mi><msup><mo stretchy="false">)</mo><mi>n</mi></msup><mspace width="2em"/><mspace width="2em"/><mi>P</mi><mi>V</mi><mo>=</mo><mfrac><mrow><mi>F</mi><mi>V</mi></mrow><mrow><mo stretchy="false">(</mo><mn>1</mn><mo>+</mo><mi>r</mi><msup><mo stretchy="false">)</mo><mi>n</mi></msup></mrow></mfrac></mrow><annotation encoding="application/x-tex">FV = PV \times (1+r)^n | |
| 144 | +\qquad\qquad | |
| 145 | +PV = \frac{FV}{(1+r)^n}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6833em;"></span><span class="mord mathnormal" style="margin-right:0.1389em;">F</span><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.7667em;vertical-align:-0.0833em;"></span><span class="mord mathnormal" style="margin-right:0.1389em;">P</span><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mopen">(</span><span class="mord">1</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:1em;vertical-align:-0.25em;"></span><span class="mord mathnormal" style="margin-right:0.0278em;">r</span><span class="mclose"><span class="mclose">)</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7144em;"><span style="top:-3.113em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">n</span></span></span></span></span></span></span></span><span class="mspace" style="margin-right:2em;"></span><span class="mspace" style="margin-right:2em;"></span><span class="mord mathnormal" style="margin-right:0.1389em;">P</span><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.2963em;vertical-align:-0.936em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3603em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mopen">(</span><span class="mord">1</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord mathnormal" style="margin-right:0.0278em;">r</span><span class="mclose"><span class="mclose">)</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.5904em;"><span style="top:-2.989em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">n</span></span></span></span></span></span></span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.1389em;">F</span><span class="mord mathnormal" style="margin-right:0.2222em;">V</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.936em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span></span></span></span></span></div> | |
| 146 | +<div class="center"><div class="table-wrap"><table class="tbl"><tbody><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>P</mi><mi>V</mi></mrow><annotation encoding="application/x-tex">PV</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6833em;"></span><span class="mord mathnormal" style="margin-right:0.1389em;">P</span><span class="mord mathnormal" style="margin-right:0.2222em;">V</span></span></span></span>, <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>F</mi><mi>V</mi></mrow><annotation encoding="application/x-tex">FV</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6833em;"></span><span class="mord mathnormal" style="margin-right:0.1389em;">F</span><span class="mord mathnormal" style="margin-right:0.2222em;">V</span></span></span></span></td><td>Valeur présente ; valeur future</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>r</mi></mrow><annotation encoding="application/x-tex">r</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4306em;"></span><span class="mord mathnormal" style="margin-right:0.0278em;">r</span></span></span></span></td><td>Taux d'intérêt ou d'actualisation par période</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>n</mi></mrow><annotation encoding="application/x-tex">n</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4306em;"></span><span class="mord mathnormal">n</span></span></span></span></td><td>Nombre de périodes</td></tr></tbody></table></div></div></div></div> | |
| 147 | +<div class="box box-form" id="form-A-15"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.15</span><span class="box-title">— actualisation des flux monétaires (DCF)</span><a class="box-anchor" href="#form-A-15" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><menclose notation="box"><mstyle scriptlevel="0" displaystyle="false"><mstyle scriptlevel="0" displaystyle="false"><mstyle scriptlevel="0" displaystyle="true"><mrow><mtext> </mtext><msub><mi>V</mi><mn>0</mn></msub><mtext> </mtext><mo>=</mo><mtext> </mtext><munderover><mo>∑</mo><mrow><mi>t</mi><mo>=</mo><mn>1</mn></mrow><mi>n</mi></munderover><mfrac><msub><mtext>RNE</mtext><mi>t</mi></msub><mrow><mo stretchy="false">(</mo><mn>1</mn><mo>+</mo><mi>r</mi><msup><mo stretchy="false">)</mo><mi>t</mi></msup></mrow></mfrac><mtext> </mtext><mo>+</mo><mtext> </mtext><mfrac><msub><mi>V</mi><mi>n</mi></msub><mrow><mo stretchy="false">(</mo><mn>1</mn><mo>+</mo><mi>r</mi><msup><mo stretchy="false">)</mo><mi>n</mi></msup></mrow></mfrac><mtext> </mtext></mrow></mstyle></mstyle></mstyle></menclose><mspace width="2em"/><msub><mi>V</mi><mi>n</mi></msub><mo>=</mo><mfrac><msub><mtext>RNE</mtext><mrow><mi>n</mi><mo>+</mo><mn>1</mn></mrow></msub><msub><mtext>TGA</mtext><mtext>sortie</mtext></msub></mfrac><mo>−</mo><mtext>frais de vente</mtext></mrow><annotation encoding="application/x-tex">\boxed{\;V_0 \;=\; \sum_{t=1}^{n} \frac{\text{RNE}_t}{(1+r)^t} | |
| 148 | +\;+\; \frac{V_n}{(1+r)^n}\;} | |
| 149 | +\qquad | |
| 150 | +V_n = \frac{\text{RNE}_{n+1}}{\text{TGA}_{\text{sortie}}} - \text{frais de vente}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:3.5985em;vertical-align:-1.6071em;"></span><span class="mord"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.9914em;"><span style="top:-5.5985em;"><span class="pstrut" style="height:5.5985em;"></span><span class="boxpad"><span class="mord"><span class="mord"><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3011em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight">0</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mop op-limits"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.6514em;"><span style="top:-1.8829em;margin-left:0em;"><span class="pstrut" style="height:3.05em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight">t</span><span class="mrel mtight">=</span><span class="mord mtight">1</span></span></span></span><span style="top:-3.05em;"><span class="pstrut" style="height:3.05em;"></span><span><span class="mop op-symbol large-op">∑</span></span></span><span style="top:-4.3em;margin-left:0em;"><span class="pstrut" style="height:3.05em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight">n</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.2671em;"><span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3603em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mopen">(</span><span class="mord">1</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord mathnormal" style="margin-right:0.0278em;">r</span><span class="mclose"><span class="mclose">)</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.7196em;"><span style="top:-2.989em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">t</span></span></span></span></span></span></span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"><span class="mord text"><span class="mord">RNE</span></span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.2806em;"><span style="top:-2.55em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">t</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.936em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3603em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mopen">(</span><span class="mord">1</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord mathnormal" style="margin-right:0.0278em;">r</span><span class="mclose"><span class="mclose">)</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.5904em;"><span style="top:-2.989em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">n</span></span></span></span></span></span></span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.1514em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">n</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.936em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.2778em;"></span></span></span></span></span><span style="top:-3.9914em;"><span class="pstrut" style="height:5.5985em;"></span><span class="katex-stretchy fbox" style="height:3.5985em;border-style:solid;border-width:0.04em;"></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.6071em;"><span></span></span></span></span></span><span class="mspace" style="margin-right:2em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.1514em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">n</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.1963em;vertical-align:-0.836em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3603em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"><span class="mord text"><span class="mord">TGA</span></span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3175em;"><span style="top:-2.55em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">sortie</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord"><span class="mord text"><span class="mord">RNE</span></span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3011em;"><span style="top:-2.55em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight">n</span><span class="mbin mtight">+</span><span class="mord mtight">1</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.2083em;"><span></span></span></span></span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.836em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.6944em;"></span><span class="mord text"><span class="mord">frais de vente</span></span></span></span></span></span></div> | |
| 151 | +<div class="center"><div class="table-wrap"><table class="tbl"><tbody><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>V</mi><mn>0</mn></msub></mrow><annotation encoding="application/x-tex">V_0</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3011em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight">0</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Valeur actuelle de l'immeuble</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mtext>RNE</mtext><mi>t</mi></msub></mrow><annotation encoding="application/x-tex">\text{RNE}_t</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord text"><span class="mord">RNE</span></span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.2806em;"><span style="top:-2.55em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">t</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Revenu net d'exploitation de l'année <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>t</mi></mrow><annotation encoding="application/x-tex">t</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6151em;"></span><span class="mord mathnormal">t</span></span></span></span></td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>r</mi></mrow><annotation encoding="application/x-tex">r</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4306em;"></span><span class="mord mathnormal" style="margin-right:0.0278em;">r</span></span></span></span></td><td>Taux d'actualisation (rendement exigé par l'investisseur)</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>n</mi></mrow><annotation encoding="application/x-tex">n</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4306em;"></span><span class="mord mathnormal">n</span></span></span></span></td><td>Période de détention (typiquement 5–10 ans)</td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>V</mi><mi>n</mi></msub></mrow><annotation encoding="application/x-tex">V_n</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.1514em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">n</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Valeur de réversion (revente) à la fin de l'année <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>n</mi></mrow><annotation encoding="application/x-tex">n</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4306em;"></span><span class="mord mathnormal">n</span></span></span></span></td></tr><tr><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mtext>TGA</mtext><mtext>sortie</mtext></msub></mrow><annotation encoding="application/x-tex">\text{TGA}_{\text{sortie}}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord text"><span class="mord">TGA</span></span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3175em;"><span style="top:-2.55em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">sortie</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span></td><td>Taux de capitalisation à la revente (souvent <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>></mo></mrow><annotation encoding="application/x-tex">></annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.5782em;vertical-align:-0.0391em;"></span><span class="mrel">></span></span></span></span> TGA d'entrée)</td></tr></tbody></table></div></div></div></div> | |
| 152 | +<div class="box box-form" id="form-A-16"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.16</span><span class="box-title">— lien entre taux d'actualisation et TGA</span><a class="box-anchor" href="#form-A-16" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><menclose notation="box"><mstyle scriptlevel="0" displaystyle="false"><mstyle scriptlevel="0" displaystyle="false"><mstyle scriptlevel="0" displaystyle="true"><mrow><mtext> </mtext><mi>r</mi><mtext> </mtext><mo>≈</mo><mtext> </mtext><mtext>TGA</mtext><mo>+</mo><mi>g</mi><mspace width="1em"/><mo>⇔</mo><mspace width="1em"/><mtext>TGA</mtext><mtext> </mtext><mo>≈</mo><mtext> </mtext><mi>r</mi><mo>−</mo><mi>g</mi><mtext> </mtext></mrow></mstyle></mstyle></mstyle></menclose></mrow><annotation encoding="application/x-tex">\boxed{\;r \;\approx\; \text{TGA} + g | |
| 153 | +\quad\Leftrightarrow\quad | |
| 154 | +\text{TGA} \;\approx\; r - g\;}</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:1.5578em;vertical-align:-0.5344em;"></span><span class="mord"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.0233em;"><span style="top:-3.5578em;"><span class="pstrut" style="height:3.5578em;"></span><span class="boxpad"><span class="mord"><span class="mord"><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord mathnormal" style="margin-right:0.0278em;">r</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">≈</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord text"><span class="mord">TGA</span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">+</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord mathnormal" style="margin-right:0.0359em;">g</span><span class="mspace" style="margin-right:1em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">⇔</span><span class="mspace" style="margin-right:1em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord text"><span class="mord">TGA</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">≈</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mord mathnormal" style="margin-right:0.0278em;">r</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">−</span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mord mathnormal" style="margin-right:0.0359em;">g</span><span class="mspace" style="margin-right:0.2778em;"></span></span></span></span></span><span style="top:-3.0233em;"><span class="pstrut" style="height:3.5578em;"></span><span class="katex-stretchy fbox" style="height:1.5578em;border-style:solid;border-width:0.04em;"></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.5344em;"><span></span></span></span></span></span></span></span></span></span></div> | |
| 155 | +<p id="pA-8">où <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>g</mi></mrow><annotation encoding="application/x-tex">g</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.625em;vertical-align:-0.1944em;"></span><span class="mord mathnormal" style="margin-right:0.0359em;">g</span></span></span></span> est le taux de croissance anticipé des revenus. Un TGA <em>contient</em> implicitement les attentes de croissance ; un taux d'actualisation les isole.</p></div></div> | |
| 156 | +<div class="box box-form" id="form-A-17"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.17</span><span class="box-title">— réconciliation pondérée</span><a class="box-anchor" href="#form-A-17" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><msub><mi>V</mi><mtext>conclue</mtext></msub><mtext> </mtext><mo>=</mo><mtext> </mtext><munder><mo>∑</mo><mi>i</mi></munder><msub><mi>w</mi><mi>i</mi></msub><mo>×</mo><msub><mi>V</mi><mi>i</mi></msub><mspace width="2em"/><mtext>avec </mtext><munder><mo>∑</mo><mi>i</mi></munder><msub><mi>w</mi><mi>i</mi></msub><mo>=</mo><mn>1</mn></mrow><annotation encoding="application/x-tex">V_{\text{conclue}} \;=\; \sum_{i} w_i \times V_i | |
| 157 | +\qquad \text{avec } \sum_i w_i = 1</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3361em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord text mtight"><span class="mord mtight">conclue</span></span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.3277em;vertical-align:-1.2777em;"></span><span class="mop op-limits"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.05em;"><span style="top:-1.8723em;margin-left:0em;"><span class="pstrut" style="height:3.05em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mtight"><span class="mord mathnormal mtight">i</span></span></span></span><span style="top:-3.05em;"><span class="pstrut" style="height:3.05em;"></span><span><span class="mop op-symbol large-op">∑</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.2777em;"><span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0269em;">w</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3117em;"><span style="top:-2.55em;margin-left:-0.0269em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">i</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.3277em;vertical-align:-1.2777em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3117em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">i</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:2em;"></span><span class="mord text"><span class="mord">avec </span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mop op-limits"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.05em;"><span style="top:-1.8723em;margin-left:0em;"><span class="pstrut" style="height:3.05em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">i</span></span></span><span style="top:-3.05em;"><span class="pstrut" style="height:3.05em;"></span><span><span class="mop op-symbol large-op">∑</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:1.2777em;"><span></span></span></span></span></span><span class="mspace" style="margin-right:0.1667em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0269em;">w</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3117em;"><span style="top:-2.55em;margin-left:-0.0269em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">i</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.6444em;"></span><span class="mord">1</span></span></span></span></span></div> | |
| 158 | +<p id="pA-9">où <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>V</mi><mi>i</mi></msub></mrow><annotation encoding="application/x-tex">V_i</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8333em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.2222em;">V</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3117em;"><span style="top:-2.55em;margin-left:-0.2222em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">i</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span> est l'indication de la méthode <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>i</mi></mrow><annotation encoding="application/x-tex">i</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6595em;"></span><span class="mord mathnormal">i</span></span></span></span> et <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><msub><mi>w</mi><mi>i</mi></msub></mrow><annotation encoding="application/x-tex">w_i</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.5806em;vertical-align:-0.15em;"></span><span class="mord"><span class="mord mathnormal" style="margin-right:0.0269em;">w</span><span class="msupsub"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:0.3117em;"><span style="top:-2.55em;margin-left:-0.0269em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="katex-sizing reset-size6 size3 mtight"><span class="mord mathnormal mtight">i</span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.15em;"><span></span></span></span></span></span></span></span></span></span> son poids, justifié par la pertinence de la méthode, la qualité des données et le comportement des acheteurs types.</p></div></div> | |
| 159 | +<h2 id="s-A-5" class="h-section"><span class="h-num">A.5</span><span class="h-text">Ratios de marché et de financement</span><a class="h-anchor" href="#s-A-5" aria-label="Lien vers cette section">#</a></h2> | |
| 160 | +<div class="box box-form" id="form-A-18"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.18</span><span class="box-title">— ratio prêt/valeur (RPV)</span><a class="box-anchor" href="#form-A-18" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mtext>RPV</mtext><mtext> </mtext><mo>=</mo><mtext> </mtext><mfrac><mrow><mtext>Montant du pr</mtext><mover accent="true"><mtext>e</mtext><mo>ˆ</mo></mover><mtext>t</mtext></mrow><mtext>Valeur</mtext></mfrac><mo>×</mo><mn>100</mn></mrow><annotation encoding="application/x-tex">\text{RPV} \;=\; \frac{\text{Montant du prêt}}{\text{Valeur}} \times 100</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6833em;"></span><span class="mord text"><span class="mord">RPV</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.0574em;vertical-align:-0.686em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3714em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">Valeur</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">Montant du pr</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˆ</span></span></span></span></span></span></span><span class="mord">t</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.686em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.6444em;"></span><span class="mord">100</span></span></span></span></span></div> | |
| 161 | +<p id="pA-10">Prêt <strong>conventionnel</strong> si RPV <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>≤</mo></mrow><annotation encoding="application/x-tex">\leq</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.7719em;vertical-align:-0.136em;"></span><span class="mrel">≤</span></span></span></span> 80 % ; au-delà, assurance prêt obligatoire (SCHL, Sagen, Canada Guaranty).</p></div></div> | |
| 162 | +<div class="box box-form" id="form-A-19"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.19</span><span class="box-title">— ratio de dépenses d'exploitation</span><a class="box-anchor" href="#form-A-19" aria-label="Lien">#</a></div><div class="box-body"><div class="eq"><span class="katex-display"><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"><semantics><mrow><mrow><mtext>Ratio de d</mtext><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover><mtext>penses</mtext></mrow><mtext> </mtext><mo>=</mo><mtext> </mtext><mfrac><mrow><mtext>D</mtext><mover accent="true"><mtext>e</mtext><mo>ˊ</mo></mover><mtext>penses d’exploitation</mtext></mrow><mtext>RBE</mtext></mfrac><mo>×</mo><mn>100</mn></mrow><annotation encoding="application/x-tex">\text{Ratio de dépenses} \;=\; \frac{\text{Dépenses d'exploitation}}{\text{RBE}} | |
| 163 | +\times 100</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.8889em;vertical-align:-0.1944em;"></span><span class="mord text"><span class="mord">Ratio de d</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˊ</span></span></span></span></span></span></span><span class="mord">penses</span></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2778em;"></span><span class="mspace" style="margin-right:0.2778em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:2.0574em;vertical-align:-0.686em;"></span><span class="mord"><span class="mopen nulldelimiter"></span><span class="mfrac"><span class="vlist-t vlist-t2"><span class="vlist-r"><span class="vlist" style="height:1.3714em;"><span style="top:-2.314em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">RBE</span></span></span></span><span style="top:-3.23em;"><span class="pstrut" style="height:3em;"></span><span class="frac-line" style="border-bottom-width:0.04em;"></span></span><span style="top:-3.677em;"><span class="pstrut" style="height:3em;"></span><span class="mord"><span class="mord text"><span class="mord">D</span><span class="mord katex-accent"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.6944em;"><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="mord">e</span></span><span style="top:-3em;"><span class="pstrut" style="height:3em;"></span><span class="accent-body" style="left:-0.25em;"><span class="mord">ˊ</span></span></span></span></span></span></span><span class="mord">penses d’exploitation</span></span></span></span></span><span class="vlist-s"></span></span><span class="vlist-r"><span class="vlist" style="height:0.686em;"><span></span></span></span></span></span><span class="mclose nulldelimiter"></span></span><span class="mspace" style="margin-right:0.2222em;"></span><span class="mbin">×</span><span class="mspace" style="margin-right:0.2222em;"></span></span><span class="katex-base"><span class="katex-strut" style="height:0.6444em;"></span><span class="mord">100</span></span></span></span></span></div> | |
| 164 | +<p id="pA-11">Fourchette usuelle des multilogements québécois : <strong>35–45 %</strong> du RBE (chauffage à la charge du propriétaire, immeubles mixtes ou énergivores : davantage — documenter tout écart).</p></div></div> | |
| 165 | +<div class="box box-form" id="form-A-20"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-formula"/></svg></span><span class="box-label">Formule A.20</span><span class="box-title">— droits de mutation immobilière (Québec, 2026)</span><a class="box-anchor" href="#form-A-20" aria-label="Lien">#</a></div><div class="box-body"><p id="pA-12">Barème général par tranches du plus élevé du prix payé ou de la valeur marchande :</p> | |
| 166 | +<div class="center"><div class="table-wrap"><table class="tbl"><thead><tr><th>Tranche de la base d'imposition</th><th class="al-r">Taux</th></tr></thead><tbody><tr><td>Jusqu'à <span class="num">62 900 $</span></td><td class="al-r">0,5 %</td></tr><tr><td>De <span class="num">62 900 $</span> à <span class="num">315 000 $</span></td><td class="al-r">1,0 %</td></tr><tr><td>Au-delà de <span class="num">315 000 $</span></td><td class="al-r">1,5 %</td></tr></tbody></table></div></div> | |
| 167 | +<p id="pA-13">Tranches indexées annuellement ; Montréal applique son propre barème (jusqu'à 4 % pour les tranches supérieures) <span class="citation">(<a class="cite" href="/bibliographie/#quebecMutations" data-cite="quebecMutations">Gouvernement du Québec, 2026</a>; <a class="cite" href="/bibliographie/#ldmi" data-cite="ldmi">Québec, 1976</a>)</span>.</p></div></div> | |
| 168 | +<h2 id="s-A-6" class="h-section"><span class="h-num">A.6</span><span class="h-text">Tableaux de repères</span><a class="h-anchor" href="#s-A-6" aria-label="Lien vers cette section">#</a></h2> | |
| 169 | +<h3 id="s-A-6-1" class="h-subsection"><span class="h-num">A.6.1</span><span class="h-text">Fourchettes indicatives</span><a class="h-anchor" href="#s-A-6-1" aria-label="Lien vers cette section">#</a></h3> | |
| 170 | +<div class="center"><div class="table-wrap"><table class="tbl"><thead><tr><th>Paramètre</th><th>Repère indicatif (cours)</th></tr></thead><tbody><tr><td>TGA — multilogements Gatineau (2026)</td><td>environ 5,0–6,0 % selon l'âge, l'état et le secteur</td></tr><tr><td>MRB — immeubles à revenus</td><td>environ 9–11 <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>×</mo></mrow><annotation encoding="application/x-tex">\times</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.6667em;vertical-align:-0.0833em;"></span><span class="mord">×</span></span></span></span> le RBE</td></tr><tr><td>Inoccupation et mauvaises créances</td><td>3–5 % du RBP (selon SCHL et le secteur)</td></tr><tr><td>Ratio de dépenses</td><td>35–45 % du RBE</td></tr><tr><td>Coûts indirects de construction</td><td>10–15 % des coûts directs</td></tr><tr><td>Profit de l'entrepreneur</td><td>8–10 % des coûts directs</td></tr><tr><td>Gestion immobilière</td><td>environ 5 % du RBE</td></tr><tr><td>Frais de vente à la réversion (DCF)</td><td>environ 3 % de la valeur brute</td></tr><tr><td>Période de détention (DCF)</td><td>5–10 ans</td></tr></tbody></table></div></div> | |
| 171 | +<div class="box box-att" id="attention-A-14"><div class="box-head"><span class="box-icon"><svg class="" aria-hidden="true"><use href="#i-warning"/></svg></span><span class="box-label">Attention</span><a class="box-anchor" href="#attention-A-14" aria-label="Lien">#</a></div><div class="box-body"><p id="pA-15">Ces fourchettes sont des <strong>repères pédagogiques</strong> tirés des cas du cours, pas des normes : à l'examen, utilisez toujours les données de l'énoncé ; en pratique, extrayez toujours les taux du marché du bien évalué.</p></div></div> | |
| 172 | +<h3 id="s-A-6-2" class="h-subsection"><span class="h-num">A.6.2</span><span class="h-text">Seuils et règles à mémoriser</span><a class="h-anchor" href="#s-A-6-2" aria-label="Lien vers cette section">#</a></h3> | |
| 173 | +<div class="center"><div class="table-wrap"><table class="tbl"><thead><tr><th>Règle</th><th>Valeur</th></tr></thead><tbody><tr><td>Ajustement net maximal (comparaison)</td><td>15 % du prix du comparable</td></tr><tr><td>Ajustement brut maximal (comparaison)</td><td>25 % du prix du comparable</td></tr><tr><td>RPV maximal d'un prêt conventionnel</td><td>80 %</td></tr><tr><td>Conservation des dossiers (OEAQ)</td><td>au moins 5 ans</td></tr><tr><td>Critères de l'utilisation optimale</td><td>légal, physique, financier, maximalement productif</td></tr><tr><td>Éléments de la certification</td><td>8 déclarations obligatoires</td></tr><tr><td>Note de passage du cours</td><td>60 %</td></tr></tbody></table></div></div> | |
| 174 | +<h3 id="s-A-6-3" class="h-subsection"><span class="h-num">A.6.3</span><span class="h-text">Conversions utiles</span><a class="h-anchor" href="#s-A-6-3" aria-label="Lien vers cette section">#</a></h3> | |
| 175 | +<div class="center"><div class="table-wrap"><table class="tbl"><thead><tr><th>Conversion</th><th>Facteur</th></tr></thead><tbody><tr><td>1 m<sup>2</sup></td><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>≈</mo></mrow><annotation encoding="application/x-tex">\approx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4831em;"></span><span class="mrel">≈</span></span></span></span> 10,764 pi<sup>2</sup></td></tr><tr><td>1 pi<sup>2</sup></td><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>≈</mo></mrow><annotation encoding="application/x-tex">\approx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4831em;"></span><span class="mrel">≈</span></span></span></span> 0,0929 m<sup>2</sup></td></tr><tr><td>1 mètre</td><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>≈</mo></mrow><annotation encoding="application/x-tex">\approx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4831em;"></span><span class="mrel">≈</span></span></span></span> 3,281 pieds</td></tr><tr><td>1 acre</td><td><span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>≈</mo></mrow><annotation encoding="application/x-tex">\approx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4831em;"></span><span class="mrel">≈</span></span></span></span> <span class="num">43 560</span> pi<sup>2</sup> <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>≈</mo></mrow><annotation encoding="application/x-tex">\approx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4831em;"></span><span class="mrel">≈</span></span></span></span> <span class="num">4047</span> m<sup>2</sup></td></tr><tr><td>1 hectare</td><td>= <span class="num">10 000</span> m<sup>2</sup> <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mo>≈</mo></mrow><annotation encoding="application/x-tex">\approx</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4831em;"></span><span class="mrel">≈</span></span></span></span> 2,471 acres</td></tr></tbody></table></div></div><hr class="sep"><h2 class="h-section" id="index-formules"><span class="h-text">Toutes les formules numérotées du cours</span></h2><p>Les 27 formules encadrées dans les séances, dans leur contexte.</p><ul class="form-index"><li><span class="fi-ch">1.1</span><a href="/seance/01/#form-1-1">ratio prêt/valeur</a></li><li><span class="fi-ch">8.1</span><a href="/seance/08/#form-8-1">ajustement temporel au prorata</a></li><li><span class="fi-ch">8.2</span><a href="/seance/08/#form-8-2">ajustements net et brut</a></li><li><span class="fi-ch">9.1</span><a href="/seance/09/#form-9-1">composition des ajustements transactionnels</a></li><li><span class="fi-ch">9.2</span><a href="/seance/09/#form-9-2">capitalisation d'une différence de loyer</a></li><li><span class="fi-ch">10.1</span><a href="/seance/10/#form-10-1">méthode du coût</a></li><li><span class="fi-ch">10.2</span><a href="/seance/10/#form-10-2">décomposition de la dépréciation</a></li><li><span class="fi-ch">10.3</span><a href="/seance/10/#form-10-3">méthode âge/vie modifiée</a></li><li><span class="fi-ch">10.4</span><a href="/seance/10/#form-10-4">dépréciation totale, forme développée</a></li><li><span class="fi-ch">10.5</span><a href="/seance/10/#form-10-5">méthode d'extraction du terrain</a></li><li><span class="fi-ch">10.6</span><a href="/seance/10/#form-10-6">méthode de répartition</a></li><li><span class="fi-ch">10.7</span><a href="/seance/10/#form-10-7">conclusion du cas</a></li><li><span class="fi-ch">11.1</span><a href="/seance/11/#form-11-1">capitalisation directe</a></li><li><span class="fi-ch">11.2</span><a href="/seance/11/#form-11-2">revenu brut effectif</a></li><li><span class="fi-ch">11.3</span><a href="/seance/11/#form-11-3">chaîne du RNE</a></li><li><span class="fi-ch">11.4</span><a href="/seance/11/#form-11-4">RNE du cas</a></li><li><span class="fi-ch">12.1</span><a href="/seance/12/#form-12-1">bande d'investissement</a></li><li><span class="fi-ch">12.2</span><a href="/seance/12/#form-12-2">constante hypothécaire</a></li><li><span class="fi-ch">12.3</span><a href="/seance/12/#form-12-3">taux construit</a></li><li><span class="fi-ch">12.4</span><a href="/seance/12/#form-12-4">DCF immobilier</a></li><li><span class="fi-ch">12.5</span><a href="/seance/12/#form-12-5">valeur de réversion</a></li><li><span class="fi-ch">12.6</span><a href="/seance/12/#form-12-6">relation entre <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/Math/MathML"><semantics><mrow><mi>r</mi></mrow><annotation encoding="application/x-tex">r</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="katex-base"><span class="katex-strut" style="height:0.4306em;"></span><span class="mord mathnormal" style="margin-right:0.0278em;">r</span></span></span></span>, TGA et croissance</a></li><li><span class="fi-ch">12.7</span><a href="/seance/12/#form-12-7">valeur par DCF</a></li><li><span class="fi-ch">12.8</span><a href="/seance/12/#form-12-8">multiplicateur du revenu brut</a></li><li><span class="fi-ch">12.9</span><a href="/seance/12/#form-12-9">multiplicateur du revenu net</a></li><li><span class="fi-ch">14.1</span><a href="/seance/14/#form-14-1">méthode du coût</a></li><li><span class="fi-ch">14.2</span><a href="/seance/14/#form-14-2">les quatre formules cardinales du cours</a></li></ul></article> | |
| 176 | + <aside class="side"><h4>Aide-mémoire</h4><ol><li class="lvl2"><a href="#s-A-1">A.1 Méthode de comparaison</a></li><li class="lvl2"><a href="#s-A-2">A.2 Méthode du coût</a></li><li class="lvl2"><a href="#s-A-3">A.3 Méthode du revenu</a></li><li class="lvl2"><a href="#s-A-4">A.4 Mathématiques financières et DCF</a></li><li class="lvl2"><a href="#s-A-5">A.5 Ratios de marché et de financement</a></li><li class="lvl2"><a href="#s-A-6">A.6 Tableaux de repères</a></li><li class="lvl3"><a href="#s-A-6-1">A.6.1 Fourchettes indicatives</a></li><li class="lvl3"><a href="#s-A-6-2">A.6.2 Seuils et règles à mémoriser</a></li><li class="lvl3"><a href="#s-A-6-3">A.6.3 Conversions utiles</a></li></ol><h4>Voir aussi</h4><div class="toc-extra"><a href="#index-formules">Index des formules des séances</a><a href="/outils/">Calculateurs</a><a href="/entrainement/">Entraînement</a><a href="/fiches/">Fiches « formules »</a></div></aside> | |
| 177 | + </div> | |
| 178 | +</main> | |
| 179 | +<footer class="site-footer"> | |
| 180 | + <div class="footer-inner"> | |
| 181 | + <div class="footer-brand"> | |
| 182 | + <img src="/assets/brand/uqo-logo-white.png" alt="UQO" width="140" height="59" style="width:140px;height:auto;margin-bottom:10px"> | |
| 183 | + <div class="brand-code">IMM1003</div> | |
| 184 | + <div>Éléments d’évaluation immobilière</div> | |
| 185 | + <div style="opacity:.7;margin-top:6px;font-size:.85rem">Automne 2026 · 3 crédits · premier cycle · 14 séances</div> | |
| 186 | + <div style="margin-top:14px;font-size:.85rem">Simon-Pierre Boucher, professeur<br>Département des sciences administratives<br>Université du Québec en Outaouais<br><a href="mailto:simon-pierre.boucher@uqo.ca" style="display:inline;padding:0">simon-pierre.boucher@uqo.ca</a></div> | |
| 187 | + </div> | |
| 188 | + <div><h4>Étudier</h4><a href="/seance/01/">Séances</a><a href="/aide-memoire/">Aide-mémoire</a><a href="/glossaire/">Glossaire</a><a href="/definitions/">Toutes les définitions</a><a href="/carte/">Carte du cours</a><a href="/exercices/">Banque d’exercices</a></div> | |
| 189 | + <div><h4>S’exercer</h4><a href="/quiz/">Quiz et examens blancs</a><a href="/entrainement/">Entraînement</a><a href="/jeux/">Jeux de révision</a><a href="/fiches/">Fiches de révision</a><a href="/outils/">Calculateurs</a><a href="/progression/">Ma progression</a></div> | |
| 190 | + <div><h4>Ressources</h4><a href="/diapositives/">Diapositives</a><a href="/ressources/">Téléchargements</a><a href="/rapport/">Rapport — marché de l’habitation</a><a href="/bibliographie/">Bibliographie</a><a href="/recherche/">Recherche</a><a href="https://www.uqo-imm1033.app" rel="noopener">IMM1033 — Méthodes du coût en évaluation immobilière</a></div> | |
| 191 | + </div> | |
| 192 | + <div class="footer-legal"><div><span>© 2026 Simon-Pierre Boucher — Université du Québec en Outaouais. Document destiné aux étudiantes et étudiants inscrits au cours IMM1003 ; toute reproduction ou diffusion sans autorisation écrite de l’auteur est interdite.</span><span>Généré depuis les sources LaTeX · KaTeX · TikZ</span></div></div> | |
| 193 | +</footer> | |
| 194 | +<div id="search-modal" class="search-modal" role="dialog" aria-modal="true" aria-label="Recherche dans les notes"> | |
| 195 | + <div class="search-box"> | |
| 196 | + <input type="search" placeholder="Rechercher une notion, une formule, un exemple…" autocomplete="off" spellcheck="false"> | |
| 197 | + <div class="search-results"></div> | |
| 198 | + <div class="search-foot"><span><kbd>↑</kbd><kbd>↓</kbd> naviguer</span><span><kbd>↵</kbd> ouvrir</span><span><kbd>Échap</kbd> fermer</span><span style="margin-left:auto"><a href="/recherche/">Page de recherche complète</a></span></div> | |
| 199 | + </div> | |
| 200 | +</div> | |
| 201 | + | |
| 202 | +<script src="/assets/js/app.js" defer></script> | |
| 203 | +</body> | |
| 204 | +</html> | |
added
dist/assets/brand/apple-touch-icon.png
+0 −0
Binary file not shown.
added
dist/assets/brand/favicon-32.png
+0 −0
Binary file not shown.
added
dist/assets/brand/favicon-64.png
+0 −0
Binary file not shown.
added
dist/assets/brand/favicon.ico
+0 −0
Binary file not shown.
added
dist/assets/brand/favicon.svg
+1 −0
@@ -0,0 +1 @@ | ||
| 1 | +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" rx="22" fill="#0F6180"/><image href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAjgAAADuCAYAAAA0jX3tAAAnyElEQVR42u2df4yd1ZnfP7k7stCKei3L9VqjKaWEdS0vS7IJsWa9JHGGYTAkNCUYA2ERYjFQarHhZxFCrkNdFCF+BIJc4mCHIgTmh4EQApjx9YUErzsylM1SZLmuSxF1Xdd1kWuhNLJGl/7xnFceD/Pr3vve932fc74faTSM8Nw57/nxvN/zPM95zhc+++wzhBBCCCFioqYuEEIIIYQEjhBCCCGEBI4QQgghhASOEEIIIYQEjhBCCCGEBI4QQgghJHCEEEIIISRwhBBCCCEkcIQQQggh8qNHXSCEaHNT1Aw/Z19NYFRdJBKY/71A3zT/dj9wYMxaERI4QogS6ANOBRYBc4A/ApaMES5jRcwgMDzG2A+G7/Vxn9kE9gH/FTgC7AU+AfbI4IuK0hvWwWJgNvA1YN64fzPY4meOXxeHgXeAo2EtfDhGCIkc+YLuohIiKWYDZwJnAX8Rfu5p03C3Sz2IowPAfwJ2AB8Egy9EUSwG+oE/Ab4MzBoj4IukEb4fA94D/g7YHb6EBI4QYhL6gKXAN4HTg5gZqGA7MyN/EPg1sDOIHiHyoh/4BvCtEkR9u5uAY8CbwG+AEQ2hBI4QqTMEfDcImlqFjfh0Br6Jue/fBF4DPtXQihbF/fIg7heEtTDg9FnGbgBeChsAhbUkcISIntnABcCFwPyK70zb5S3g98G4/0rGXUxCL/Ad4FIs4X0o0udshOd7QetBAkeIGFkOXBlEzWBCzz2MJSu/BGxBCcsS+CZkrqW6IdhuUscSl18AXtR6kMARwit9wZAvDYZsKPH+qGOns55EOQqpsRi4AViodXDCetgNbEBJyhI4QjhhCPPWLCAtb00rhr0JbAKeU3dEzfeCsJHAn3o9ADyKeXUkcIQQlWMlcDV2hHVA3TEtWW7CNuB+dUc01IC/Bi7WWmh5PRzDwlc/J7HwlQSOENVkFZYoqV1qewxj+RivAw+hCsueuQU4H3kuO6Ue1sODEjhCiDJYCVwT/lvCJj/D/irwE5SA6YmbgPOQxyZPMg/n88BGCZzJ6QUuc/KcTaxoWF3zm1vC95oDY9/ETsnsT0jYeK1b48W4v45CVx7WwrXhRbxc3dEVsqtW7o35vdiJwFkK/K2jZ71dhg2A7c52Q3+JFbWKlTOAO0nvqHdZZMb8vmDkRbXWwl1hLchjU5zoPwysI8LK4Z1ctunN1SvXtM9+iDl34m7gbBnzQhkcsw6uBm7GqsOK8tfCUon8wslsz1yszMIaCRwJBgkc0QnLgR+QZlGyqpDlN83D8nMeUpeUNg63otBsVYT/G8BaIqkp1YnAqWlOiAKIbZ49CpyGEoirZNibwNeAe1BxtCJZr7VQSZEDsA9YnfLLo5bQs8ZEj7qgtJ3qduwCTBn06o3N94FHOJ6EL7rHUqxO0UKURFzV9XBasFf9qb7sFOrwicateP418HUUjqo62fh8FauUe1RdkjvrgsDRWqg2mfC8Bwvhuqydk9JuXi92UTR92DHMBTLo7kTOfHTSKk9mY+FZnZDytx6aXkW/whVCdIcVwPUocdIrWW7OX2JJl6J9lgRPgNaC37WQif67gF0SOEKki45/x0GWK7UZuFzd0RarQt9pLcQhdGphPbiogqzEWyHy5VmUYxCbyJmPJcX2qTtaYh12n5rWQjwMhDFdJ4EjRDr0BXEzB7niYzTqg8CTWLhFTM9TqHBfrAyGsd0sgSNE/PQCm7A7dHQEPF6WhZ3rCnXFlGxGycQpiP55VRc5EjhCdMbZwOMSNskwhCWPr1RXfI4FWO0U3auWBoNB5GwPm7zKoSRjIdpHJ6XSNew14M+I7O6eDjgF82LKa5PeWiBs8q4B9lepcfLgCNEeKyVukmYAq/K6Tl1BH/CY1kLSDAWBW6lEfAkcIVpnBXYTtQy6dq+pi5w+4AkUohU2B56oksiRwBGidXFzDbpDR5woclK8wyoTNwpLiYyBKokcCRwhZs5S4FqJGzGByDmftE5XzUY5N2JykbOpCg1RkrEQM6MXq1CssJSYTORkG8YtCTzvBhSWElNTegVweXCEmNlu9QmJGzGDneu1wKIEXlzzNdxiCoaoQJ0cCRwhZrZblbgRMzXsjxDvtQ7rwotLoSkxHVmdnNKS8CVwhJiaR4G56gbRomG/L8Lnug27qkJiX7SyFpYA10ngCFG93eqpKNdAtM48YH1kL6rztRZEGwwBl2CnDSVwhKiIQT8LnZgS7c+fhcRxfHwOcAcKS4nO1sM9WD6jBI4QJXJyMOgSN6JTo35+GTvXnFmPwlKicwawkL8EjhAlorLzIu+dq1dbmyUVC5EHhSYdS+AIcSJ3oyOwIv+d62aH7R7CvE/KuxF5zqklWNFUCRwhCqQ/fCnXQOTNXEo6SdImPcDNyJMpuiNy1kjgCFEs67RbFV1iEDtJMsdJex9GOWiie8zC6kVJ4AhRkLgRotsi51EH7RzCToAJ0S0GsIrfXd1QSuAIYTHhfuSOF91nLrCq4m28XWtBFCT47+jmH9Blm0KY90YG/fM0gGb478PAO+HnGvA+8Lvwcz/mcm4C/2Tc7l/9eiJDof/+PTBa0bUgTqQexmwUeA/4X8D+8DUVfeHrj4GvhPdtU2tiwjnXlZwcCRyROjchT2ZmxDMhsx3YHb6OzOB3R6awL1/BqkF/EzgtCKHUk7gHgR8DN1asXUvQVQwAw8EmjAD/IYj5/Tl9dh9wJvAXwNnA70k71ymzBYuDvZHAESInZgPfTtigZzvTN4BfAHtz/vxRYFf4em6Mgf8O8HWsJkaqSd2LsaOyOyvUplsTHo8GcAB4BdgKHO3S38k8P6+Fn08JovKihNfDAHAncKUEjhD5kWJoqjFGeDwGfFzw398P/DR8zQYuAy4OQiulsRgADlZI4KwgvYJ+mdfyWeAZ4NMS2vBx+NoS1sNK7LRdauuhN8zBLRI4QnROP3BGYsb8CPA8x70pZXMU+Fn46gf2YWGsVHaxvcD3gBcr0JbrSSd0WAcOYceURyrUrqPAxvC1NLQxFa/OAJafJIEjRA7cmIhBbwRD+XDFjPl4RsLXAizhcGECO9hlwLEKCJzbSCMPbRj4BLtba0fF27ozfC3F8uLmJ7AealgxzJ9J4AjRPv3E746vYyGQR6lWnsd0HARWY96NNViOwgWRj9UtwIMlvlTOi1zsN8ashR3O2p4JnX7Mw9ET8VhlXpyNHD+9KYEjRIv8gLjdvnUsr2Cj42c4ANwQdrAnjTGAsZEdG38oL6PehriK2TPQwMKyP3X+HCNBiP6LiNcCYS7eAtyfl3oXIiX6sWJrsQqbn2AnwzZG8kw7gXOA17EQQ8xGvQzOiVjYPI0lsP80ouf6aXimp8Mzxkhuc1ICR6TGjcTpvakDGzDv1LEIn+9+YG14zhiFzrkl/M3biNOLX8dub7+CmdVx8saR8Gyxiv6eMDclcIRogSVYEmuMO9WryPkEQgUZCUJgL8eP+MZCDTsmWyTnEV94qh42MRuJn/uxG99j8+QMhrkpgSNEC1xFXLHrOrAn7OYOJDSON4bda0wiZxA7ql0UKyOz/3Wsls35YU2kwu4g+p8mLm9OLoJfAkekQh9x3ZBcx4r1rU50PB/EChXGJHJqFBc+vSYisT+M5WpdTjXv9+o2zbDJ+TAikTMAXNvph+gUlUiF64nHHT8MbKI6BfvK4jngo2DHlkVi1A8V8JLKLkeNga3Ab7H8rNS5AavOHksV5B4srWBXJzsGIVJgSSTPUZe4OYFd2B02sexc52Pexm5yRSSCsAG8i91jJIw1mDcrBs/mAJZW0DYSOCIFVkTyHBI3E7MfuJo4ki0H6G4uzsnYRZ/e2YoV7Vuj6f851kYkck7H7uiSwBFiEi7C/9HwOpZz8oyGc0IOAPdGInLO6uJnfx//uTfDwHsoLDWdyInhtOEQsFwCR4iJWYD/o+EN7Ii0PDfTv/jW4z9cdRLdy6G4OIK18Alwl6b7tKzG7rHyztUSOEJMzAXOd6zZUXC54mfGi1hexlbHz7AM8zrmTR/+D5aMYqelxMy4Av9enBpt5qVJ4IgUFrj3xb1aw9gSd+G/gm03Shpc71zsN7DCdmLmNLHq5p5FzhBtXrgrgSNipg/fdTHqEjdtcyW+vTiZYc+Tfudr4SmssJ1ojd3Y5bueRc4lEjhCnMgF+E0u3hqM0h4NY1uMAg87FjmDwHdz/Lxe5/b+EPBzTeu22Yj/fJyWw1QSOCJmLnHc9qOkcZ9Ot0XiLsc710U5i/0Bx+MoT2bnXO9c8Ld8mkoCR8TKbMdtbwC3aghzYS2Wh+CRJvkVqLzE8Vp4gThvBS9j0/QCfkspnCOBI4TRj89y5Q3gVax4nciHx5wa9bzCVCc7HrsDyJOZJxuBg07bPq9VzSKBI2LlQse79gc1fLmyxbFRz6Po3xJ85qI1gEc1fXNnvWPB31KivASOiBWPN4c3gA0auq7wCD5zcZrAnA4/41tOx+wgduWAyJedjgX/UgkckToL8FnQbBTzNoj8GcHnKZLldJ6H8xWnYl+XaHZX8Hv04rSUhyOBI2LkTPydGMnumhLdYz0+vThf7/D3T3L4zAeBjzVluyr4Dzhs96xWdIsEjoiRbzpscw15b7rNDnx6cTop0Hc2/k6RNYIYFd3lUYeCf4AWPJoSOCJGPLrkX9GwFcLz+HPNj9J+yHUx/k4TNlHuTRHsdKoBzpDAEanSg7/8mzrwjIauEF50aPeW037S/JccjpFCtcWx2WGbZzynJXBEbJzmcMd6CL+nGjyyw2GbF3ewHryJ/a2aooXxHP7CVDNeCxI4IjZOddjmlzVshe9avYWp2hEqNfx5Mw9hFXdFMRwNfe6J5kzntQSOiI0znbW3AbymYSuU3fhLvG0ncf50/HkzX9D01AZrGgaB+RI4IkX+3OGO9VMNW+HsctbeWW38zjyHYr+uqVk4Wx32+6kSOCJFvBn17RqyUnjFmVFvJ9S0xNmYNFF4qgyO4s+jOaPSCRI4IjY8zek6PhNeY2DEWXuP0Xqi8R87e8Ztmpal8Z5DMSyBI0TF2aMuEDNgCJjd4u+c5ewZ39Iwl8abzto7o8uUJXBETPTjy9U6qiErldedtfeMiMeiIbFfKiPAsKP2yoMjkt3pekEu+XJ531l7T454LI6h/JsyibLvJXBETPQ5a+8HGrJS2e+sva2cpPJm23s0HUunGdsDSeCImPBWtfWIhqxU9uHrJNW3In5ZvaHpWDrvx/ZAEjhCO5ByqOPv5EJsjDqbM614cHodjoUol//prL3Tev0kcERsLyy1V+RqJJ3Ol1PwVcVY5RLKZ7ejtg4yg1OCEjgiJr6oLhAtcsxRW1vxNnnLaflDTcXS8ZZoLA+OSIpF6gLRIp5OsrUSovLmHTymqSjynjMSOCImNJ9FzMQa0mwAH2t4S6cntvbqhSD0AhAp4ynJuBapzR4FDmgqls4xh/NGAkckg+aziH1+N7V2RZc4qkklhHbjQoj8GMJfkc4Yme2svbWO/4EQjlA1VNEqsxy1NWYB36upKPtZuAISwhHKwRGt8o8jfS5vtl3eV41B7u2VwBExsV1dIFrE0/UerbyAvIl9eV81BhI4QkyBammIVvEUomrFXv/O2Tgs1lQsna84a+8+CRyREt7msxIrNV9y3bGOYY+zZ5ut6Vg6njw4w8CnEjgScymNm6cY8qAETumcDAw4au9Ii2uh4ejZztd0LJ3znIkx1cFx+vITx2kll+BdZ892hoa3VLxd7fF/I7Z3ss/VEA3J7o6FKINPW/i33nJw/lzDWypnRi4CPIkGJRmXy2xn82VGbe1E4HgTRxJz/hgG9rbw772Vez9NQyyB2QKteig9naQaBZZoSpbGYixsHhWdvPTlAhVFzM9WjPQBfOUdzELJlWVyurP2tuqhfM/Rsw0B39CULI2znbX39W4LnE8SEnNCIrYbDDg0LLFwKv5Ojexr8Xf+t7MxUaJxeZwb4/u8k5f+h8465B9oDrujnfnpTeScp2EuhSX4OkHV08amcrezMRnFTraJYvlD/OVA7ei2wAGoO+qQfs1jd4y2sfBGnD2jTlKVw8UO10KrfOzsGYeApZqahfMdZ2If4Ei3BY7u/fGJt5MVrbb3/zgcD1VxLZYaMNdZm9vxmO91tgkFuEjTU30+DXVmePikUw+Op7wW5eD464fRNgTOLmfjMQhcrmlZKCvwd2LkP0e+mcnQycJimQ3Mc9bmYxRwTNzrAhJxi7EP8HWSChQ+LZqLHba5XeF+yOGaX6EpWugGy5vY/6io3bwETvyCwVt7jzqclzXge5qehdCLv/BUPQj3dvg7hy/cSzRNC+MGh23++6JeeJ4yr2soTDXbmVpvd/d52Nm4DDj1KnjkrxzuWGtBuLfDbxyO0RyUl1YESx1uBuvAb4sSOJ5K4w/g7+6ZvPH2/P+xzd97x+HYzEcnqrpND3COw3Yf7OB338VfovEQsFrTtevcGPraGzMO13YqcN5w1jGpV43tddbedk/q7cRfHs4gcL1sblf5G6cG/c0OfreJT8/1IqBPU7Zr9IVNlTdqXfvHEZB6jYVTnLW3Xbf8iNPxWSyj3lU8Vspt0HmYaafD5x4A7tSU7Rp34q/2TctzuVOB4+1yw68mPqm/7ay9ezv43d87NeoPyPZ2hVvweSii2eE6AHjb6ZgtRLk43aAfv8fxf12kwNnvrHPmJz6xvRVn7CTH6xWnYzQPHRvPmx7Me+MxPHUwh88YwV/IFixsu0bTN3d+ACx32O56q/O4U4HjsZpxqiGARQ4ncye3If/GqVEfANbKBufKw/g7OZWnUD/qeOzmoro4efLP8VfYb6xeabb6C53wW+yWW087glR3x99wptqbHQro3fit0zQLC6mIzunHQh0eySP/JuNZp30whCXfqxJ9Pqx2LPY3t6OIOuGYw4mX6l0n3uqs5FFjaa/TsRrAQirKP+icexwb9GPkE6ICeAt/x8XHbkwf0VTumEfwd2t4Rh34VdECB/yFqXpJ77h4n8OJnUeNpRecG3XlH3TGOnxXW385x8/a67wvTkehqk64LvThMqftb7Yj9vMQOJ8666hlwGWJTe7L8HckMI8aSw3n4zYvvKRF63wPKwvh1XtTB36Z82fucjyeWaiqV1O7rQ3upfhMLO5o7uYhcP7WYWddmtDkruHveDjA73LcuXplMLykdU9V6wb9BnzW+RhL3mU4nsKvRzNbDz/W9G6Zx52vhQbwaFkCZ4/TTluZyOS+CZ9uyQ9y+pyXnRv1ASwxUDvXmbMJv56bjBe68Jl78H9B8hzaSDZNmKfwn6A92q7Yz+PBP3L4AhkArk5gcs8CznWq2PMSOMP4LGcwfr4+EYy7mJrNERj0BvALR8KpSIaw0O3dmurTsg5YgH9PZttzNmUPTgpHce/Fb9w1z9oduyIYS50kmZ714eXn3XtzkPxOT43nl/jPTRsEzpbImVbcLI1A3DSAp8sUOODT7Rn7Udx+4Eynbc/7moVN+A5TZcxH7vnJuBsrZuld3DSAl7osng5FMN4DQeQoCT9ecQPmQGn7IFNeAudDxzuBWC90u9vxBP91zp/3cSRGPXPPP4sYP9djMehNYEuX/8Ym/HtxMpGzRCLnc2uhP5K10ACe7OQD8hI4bzruxAURLpBH8J2H8F4XPvNJ4vDiDGJ1nDajnByC2Dsb/56bjDcK+Bt1/CcbjxX9EjknCv3BiJ5ppAoC533HO4LBsECui2iSL3Y8yYeBd7vwuVsjWvTLsdpGz5Pu3WonB5E3N5LdaiY8nilQGNYj6beh8GJ/OGFx81Rk4qZOm0fDuyFw9kSwQC7Gf72RlcThqj/Spc99LDKjNoiFG1Kr8LoUy1O5LLLd6l5gf0F/a2Nkc2IAOCOI3pREf1945gWRrYVRcgjV5lm+f7fzF+tQ+D6rwF1U3uLm2ggmeTdPPG3BPERDERmCobBR+RJpXO1wC3BeZMYczAO+vuC/uS2yfszeP/OADXQ/l6lsVmDVnQcjfLZteXxInnkab0fysrgaf56c2yIRN3XyTzAeS5NichyKZhA4Cws7xLp7nROe77zIBGrGgbBJLJL7iSdMNX49XBsEY0+Ez1cLzxaDzZ/sPfBQHh+U5+BvDQ3z3uFDoV++BKx10N51WNZ8DBO9WYDBfQgrDxCbYcjqHc2NcPd6HXa9ygBxMkwO+QYdCv7Y1sNQ+Dodu94hlhy8mL02mbh5lZyS4PP04BwljqO4cLzGwrNU9+bxxVhiWX9Ek31fQUb9deJlELuHKYYiaEuxCs4xixuAT4CdJf3t+4nnRNVkQuf2YCs91zzL7P0NEYsbsNybh/L6sLzddy8D349I5GQ74teBByvUttuCFyImo9/tAmdjeYh4Qx1j5+5TwB0Ul7iaF33hpXRG5MIG4C3Kv0ByW8RrYbwt/xD4kaM10YfVajs98jHK2J7nh33hs88+y/PzapjLMzaF+RZWXXcT5br+VwQFT4SGfziIjqK4Drgk8t1Q1q+P4yNxfjHmfl+cwLhk/DvsMtUyqWFhgeWJ9PlwEDoPU90TwIuAG4GFCa2FengH5OZRzNuD08ROwcQ2IMvG9Nf1FJ/jsAJLKKtFvKPdVvDf+1kQOLGTnbL6U6p7ymoFcBF2FUUqxjwz6D+qQDuamPe9J5H+zzwhC7G0ipeA5yrQrp6wFr5LHHeqtbMRyzVcmrcHB8yl9njkg5Mlwu4OO5/hLvyNQaw2zynAScTtqq+HZz1a8N8dAm5OZOc6HIz5nVTDPT8URE0K83sy/m3FROcbpBEGGU8Dy/3YO8aeNwteCxdiYajlpMkzwOV5f2g3BA5Y4aHLEtqFEV4eb2PXDLRay6UH+HL4OgeLFZOQsSnTTf8sVkMoJa/BJooPWZ2CHWX/JseTPVPaoY5na3ipjVaoTUuAexIfl2xsjmJe5d3YdQF5CZ4aljzfj4VjauGzU+7zehD6I3l/cLcETnaV/UCig5XRDLuC/8bxcOCxMKm/GBR7NsGHEp3cw8A1JXoVerGTOqm5g/diMf48DDZj5vGCIGb6gNOCYO8J8z7V3elEHoMNVCMsMp71pJPQ2qpNPwj8PXba80CY80fDWhods1ldyPHTt4uxcNOXwveaBOTn+nZvtza43SqCtCNMgBQZP3llKKamyPL0E3GA48fGUzE8WV7OG1iIrt0Cc6swt/KApnFLHKqouCG8aLZriCa16X81zaY2JTuS55zrCt3y4IC54NZpsMU0noQyvTdj2ZboXK1jYbp27yZahN1eL8M+8/6+CPi0wm1chSXga3MmukkDuJfu5LAC+Rb6G88IcFhjKKZgH9WpR7EmLLgUd6eX0v49SHuAczFPXF1Telpx80bFxQ1B7B7RcIku80E3xU23BQ7BaG7VOIoJ2Eo1jsiOFeQ7Ep2vg1jexXbar/a6GvMEvaWpPSmHscrBHri+2y8fkTTDwK3d/iPdFjg7sIJKQoznXapXTXRtwjvXISyX5mGsCGK7O//VwXjJm3MiDY4X6fTAEeABiRzRJXHzAAWcIKwV8DA/Ik3Xv5h6glf1ItPbE5+vg1ihsXYvf9yNHX/dqZfjCfN9g0PxPIx5NuWFF3mxFSujUohtKELg7MeKJ0nkCMLO/gWqe8HffuwOp5Tn6wXYUe9t2H1Q7bAWq7eT+stxOBj055y2fy12GagQeXCEAotbdvMU1Xi2o+Okwgz9pQ7auQ4ryJX6nG1gx+jbzR05FSsel9o1DBlPA1c4f4ZTgMfQqSrR+eb2agpMTagV+HB3Ii+OJnh1Q1PjWYMV9kqdAeyU1FNt2ouPwgs+xZDVVuw2d+98HASO8qpEJ7b/XgrOu+wp8G/twuLzqZelTtkT8CrVvb13Iu5I2PMwlmznPj8I1J1tfMZa7CJBEvEEZImU+yN5ni3An4X/lv0W7dj+wgVykSGqjG1aIEnSlcvUCkD383x+J/Yq8FCbv98H3BfE0kDEffQ68GCEz/YIVtxR60HMdC3sIZ9rYVqmVsLfXItCVSlO8nuctn0X5p7XiaDju/cLsQt127Ef+4PQjTVklZ08ejDS8b8RFXAVM18Lh8sSN1BsiCpjZ3hp6PK9NGhgBeA+cPwMz2Hu+R6UdMyYPpgH3BXWc6usIb6QVXYL9ZrIx/8KYC5KOhbTU6rXvowQVcazwEqNf/TiZneZCj5n7gbOlsg5gU7DMbOxmjvec53q2CWaVyQy7n3A4yhUJSa3/VdRcg5arcS/fT3Kyo+d0YjEDVh49QPN2xMYBL5N+yGro0EUjOA7ZHU4IXFDeHFdqbUgqipuoFwPDlgRsQeQqzPWnf3VxHOKZCxPodNVkxm2u4JYaYflwM0O7UEduDiItdQ4BSvoqLUgKmf3yxY4YHH4G5DbPyayI7IxJ+ZuJu6TQJ2InJ20n4cyG0vqnuNE6LyFeTL2JzzmvcATEjla+2EtHKhKg2oVaMMWdG9NbJN8UwLjeTmWc6F5eyID2NH6zUGstMpRrNL1Lqp92rIevq5IXNwQXmhXoXBV6nb/qiqJG6iGByfjbqAfhas8Uw9idW1Cz7weWKjd66Tz4b4OROAQdvlp1fp2GLtT51IN8Qn0YonHsuFpMYyFpQ5UrWFVEjhgpylO0wJxO8l3Ef8R2YlYh3ktNG8nFjkjdB6ymlsRodPArvC4QkM7Ibq3Ki2bD3Atdp1H5aiawAFzbavGgsSNN3SEfGqRcxhYTfs3U6/DPLxlipzYyh50i9oYOy7PZrxr+hMq7sWsosABO6WyQC8LNxM9tbDUZKzAyh/IqE8uhO+j/VyNIeDWkjY/nSZPp4jCt3HSwK5fWF31hlZV4IAVApyDPDlVFzedhB9ipD94G2TUJzeOOzoQxGV4B4ax3JJnNHwtczewVOtBG1oJHC0Ob7vxEeS5mYg+4F4s6XKZumPCuXMYKw/Rbu2YW7ACgwMFtPUHYccq2kOlQOIRN48CL3ppcNUFDlQj9i4+b/SfBzaqK6YV6DoZOPU86sQzsjQI7KEute0TrK7HqIYqF9F/H8qv9LpOP8FONLoqifAHP/zhD6vexjeB/4eFq76ouVY6DeyUxJPqiml5C7tU9o80dyfki8DJWJ7GW238/n8P4mghdrLptBwN+jYs36epYcqFo8ALwD8Ffq/14IY68A7wL3FYqduDByejP+yIpf7LEzZN4BoqeiSw4rvXB1BO2VRz61CHO8R/BZxHZ2GQrLBgJ9dNiOmpan0jcaKwqWGhdrfFTD0JHLCaGBtQifyiyXImVPujM1QvZ3qjuon2Q1ZZgnezjT4eBj7EckVEcbZcIatqrsPDWLV213gTOHpRlLO7fgV4SF2RCysxL5jm7uTGtdOTea2Umcg8k51UXBbtswq4ROuhUpvZTcBzMTyMV4FDWBB3IE9ON4VNM7xo5K7Pl+yUlW4kn5itWLz/Ztov/34LcP40/auTgNWgB/gxsEjroVR7/wGWdxZNUr1ngQMWI3wEOF07gNxVvAx/91H14+mN7oYOdpNnhBdnbVwfZ6dC1mGViUU1WBLGpCahU+gaOxTWya7YHs67wMnIktbQwuhY2DTDi1dem2IYBO6UyJmUPEJW64N3YBSYFX7eoq6tLKuw/I+m7HlX11VWNDPach+xCJwM5eZ0NuFfRbk2ZVC1CyWruMscpbOCe6uwU2z3qzvdcBtwrux5Vzay21JYC7EJHMJO7W5gnnbFM3557MFyQnT8u1wUspreMKvAZFrUgL/B8qkkdDpfP68DPyGR+k4xCpyM/rDjm6dd8aTCJtrYq2MGsXCrjPnkRnofDi76E10ROt/m8zlVYmo738S888kImxQETsZlwFVhUeilYRP+IHanyA51RyWZHcZnLrBc3TGhyGlip6x0R1R6/DVWk2tUNn3KNdKDlUz4eaqdkILAyegHbmTm9TFio455bNZjt8GK6rMOOEsiZ8o5/SwKWaXKEHZXWC/y6IzdwB7ArtJJvq5TSgIn4wzg2vA99iz9LDlzBEti3a/179KIq6z91CJnLwpZpUwv8H3gHOyUXGpiJ7PzLwG/pP3aURI4kZFVlc1eJDEZ/UPY5XYvapq7JztlpcT5yec7WM6d6tqkzSIsfNVP3Lk6WW7NCBaGUqhWAmfKHcAFWO0Fr3HdBnZL7yvAL7A8GxEXOjY7NTplJcaLnX8W1kwzgnUzHETbNsxTI1EjgdMyfUH9Xxx2zFXdBWQ3Hx8EXgZeAz7V8EXP2dhxcnlyJmYrVqX4KiIqOS86ZjZWI+3rwb73OFhDY1MM3sZOux7VUErg5Mni8FL5FnaqpayFkVWePAi8iSUKyx2fJjUsiTDVhPmZ7nbXoBIIYmLmBNu+BPhaWEuUuJ7GbljfCfN2N3BEQyWBU/RO4IywMP4h8GXgpPD/OklaztyPzfCdIGL+B/B+mOxS72IsN2F1QZSAPPmmQNW5RSsbh7Mwz/1C4E+wew5rY2zzYAdzMfuMJlbL6b9gCfKHgXdJrEaNBI7PXcEiLJP/GHDamJ0B4wRMEzvVtH+MONL9T6JV+oF7kCdnqhfLYSy/TohOBVAmgnqYPgSa/Zt3xwgbIYEjhGiBHixkpardE5OdOFmjTYQQEjhCCH/cBFyIvDmTUcfu4nlQXSGEBI4Qwhf9WAVkeXImJruD7Up0ykoICRwhhCtq2CWqi1DNnMmoA2vRtSVCSOAIIdyxCrhEImdKkTOC5eYIISRwhBCOWIjdTA7KzZmILGR1A6o5IoQEjhDCHeuD2FFuzsRsxcJ6w+oKISRwhBC+WAVcKpEzKcNYyGqtukIICRwhhC8WY54KD3fxlCVyPgGuR5XDhZDAEUK4QyGrqakD94bvQggJHCGEIxSympoG8Gvg36grhJDAEUL4YjGWczIHHSefiOwuq2uBT9UdQkjgCCF8sQ5YIpEzpdC5D52yEkICRwjhjhWYp0IiZ3KRo8KAQkjgCCEc0od5KuajU1YTkRUGvBU4oO4QQgJHCOELhaympg5sALaoK4SQwBFC+EIhq6kZBnahkJUQEjhCCHf0YvVgFqDj5BORhaxuB/arO4SQwBFC+OIeLGQlkTMxdexS0xfVFUJI4AghfHEZcDUKWU1GA9iJQlZCSOAIIdwxG0uunSuhMyF17C6rtcAedYcQEjhCCF+sA5aio+STMQw8D2xUVwhRDj3qAiFEG6zBPDjN8LNyc47TCLb1H2EeL91KLkQJyIMjhOiUR4BFiYucehB7LwC/QkUAhSgdeXCEEJ1yYxA3TdLJy6mH73uwG8eHkadGiEohD44QIi9qwN3Em5vTAEax+6jewE5MCSEkcIQQibAoCJ15EQidBnAMCz29hkJPQkjgCCGSpx8LX/UCyxwJmiYWenob2IpCT0JI4AghxBRCZz7VTETOQk+7gFfCdyGEBI4QQsxY6FwFnF4BoVPHcoaeRaeehJDAEUKIHJiNXftwSfi5CLFTx7w0HwHb0aknISRwhBCii/QBFwDfBU7CvCrLchY17wGvolNPQkjgCCFESSwBvgF8FTuFlTETL09Wm+YgliD8y/DfQggJHCGEqBy9mKdnVvjvXqxI6WFgH3bq6QiwF/PYCCGEBI4QQggh4qOmLhBCCCGEBI4QQgghhASOEEIIIYQEjhBCCCGEBI4QQgghhASOEEIIISRwhBBCCCE88f8BF0OLxCbbzvMAAAAASUVORK5CYII=" x="11" y="31.7" width="78" height="32.7"/><rect x="30" y="80" width="40" height="3.5" rx="1.75" fill="#CCA424"/></svg> | |
| \ No newline at end of file | ||
added
dist/assets/brand/icon-192.png
+0 −0
Binary file not shown.
added
dist/assets/brand/icon-512.png
+0 −0
Binary file not shown.
added
dist/assets/brand/uqo-logo-white.png
+0 −0
Binary file not shown.
added
dist/assets/brand/uqo-logo.png
+0 −0
Binary file not shown.
added
dist/assets/css/site.css
+820 −0
@@ -0,0 +1,820 @@ | ||
| 1 | +/* ============================================================================= | |
| 2 | + UQO — Notes de cours interactives — feuille de style v2 | |
| 3 | + Identité : bleu nuit / bleu UQO / or ; Fraunces (titres), Source Serif 4 | |
| 4 | + (prose), Fira Sans (interface). Couleur d’accent par partie du cours. | |
| 5 | + ============================================================================= */ | |
| 6 | + | |
| 7 | +:root { | |
| 8 | + --navy: #091a33; --navy-2: #0f2a52; --navy-3: #133566; | |
| 9 | + --uqo: #0f6180; --bleu: #0b4f78; --bleu-clair: #2a86b0; --bleu-pale: #e3f0f6; | |
| 10 | + --or: #cca424; --or-fonce: #9e7d1c; --or-pale: #f7efd2; | |
| 11 | + --gris: #606670; --gris-clair: #d0d5dc; --gris-pale: #e7ebf0; | |
| 12 | + --vert: #107c4e; --rouge: #b22a20; --teal: #0f8b8d; --violet: #6b4fbb; | |
| 13 | + --bg: #ffffff; --bg-clair: #f3f7fa; --bg-2: #f8fafc; --card: #ffffff; --border: #e3e8ee; | |
| 14 | + --ink: #1d2430; --ink-2: #4d5665; --link: #0b4f78; | |
| 15 | + --part: var(--uqo); --part-soft: rgba(15, 97, 128, .12); | |
| 16 | + --shadow: 0 1px 2px rgba(9, 26, 51, .05), 0 10px 28px -16px rgba(9, 26, 51, .18); | |
| 17 | + --shadow-sm: 0 1px 2px rgba(9, 26, 51, .07); | |
| 18 | + --shadow-lg: 0 24px 60px -24px rgba(9, 26, 51, .35); | |
| 19 | + --radius: 12px; --radius-sm: 8px; --radius-xs: 6px; | |
| 20 | + --text-w: 68ch; --margin-w: 260px; --margin-gap: 40px; --topbar-h: 62px; | |
| 21 | + --font: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; | |
| 22 | + --serif: "Source Serif 4", "Iowan Old Style", Georgia, "Times New Roman", serif; | |
| 23 | + --display: "Fraunces", "Source Serif 4", Georgia, serif; | |
| 24 | + --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace; | |
| 25 | + --fs: 17.5px; --lh: 1.68; | |
| 26 | + color-scheme: light; | |
| 27 | +} | |
| 28 | +[data-theme="dark"] { | |
| 29 | + --navy: #070f1e; --navy-2: #0c1d38; --navy-3: #11284c; | |
| 30 | + --uqo: #4fb0d6; --bleu: #7dbfe0; --bleu-clair: #98cde8; --bleu-pale: #17324a; | |
| 31 | + --or: #e3c04f; --or-fonce: #d1ac36; --or-pale: #2d2812; | |
| 32 | + --gris: #a4abb8; --gris-clair: #38414f; --gris-pale: #262d3a; | |
| 33 | + --vert: #5cc496; --rouge: #f28078; --teal: #4fc0c2; --violet: #a893e8; | |
| 34 | + --bg: #0e131d; --bg-clair: #151c2a; --bg-2: #121827; --card: #171e2d; --border: #27303f; | |
| 35 | + --ink: #e7ebf2; --ink-2: #b9c1cd; --link: #93c1f0; | |
| 36 | + --part-soft: rgba(147, 193, 240, .12); | |
| 37 | + --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 12px 32px -16px rgba(0, 0, 0, .7); | |
| 38 | + --shadow-sm: 0 1px 2px rgba(0, 0, 0, .5); | |
| 39 | + --shadow-lg: 0 24px 60px -24px rgba(0, 0, 0, .8); | |
| 40 | + color-scheme: dark; | |
| 41 | +} | |
| 42 | +body[data-part="1"] { --part: #2976bb; --part-soft: rgba(41, 118, 187, .13); } | |
| 43 | +body[data-part="2"] { --part: #0f8b8d; --part-soft: rgba(15, 139, 141, .13); } | |
| 44 | +body[data-part="3"] { --part: #cca424; --part-soft: rgba(204, 164, 36, .16); } | |
| 45 | +body[data-part="4"] { --part: #6b4fbb; --part-soft: rgba(107, 79, 187, .13); } | |
| 46 | +body[data-part="5"] { --part: #107c4e; --part-soft: rgba(16, 124, 78, .13); } | |
| 47 | +[data-theme="dark"] body[data-part="1"] { --part: #7fb4ea; } [data-theme="dark"] body[data-part="2"] { --part: #4fc0c2; } [data-theme="dark"] body[data-part="3"] { --part: #e3c04f; } [data-theme="dark"] body[data-part="4"] { --part: #a893e8; } [data-theme="dark"] body[data-part="5"] { --part: #5cc496; } | |
| 48 | +[data-fs="s"] { --fs: 15.5px; } [data-fs="l"] { --fs: 19.5px; } [data-fs="xl"] { --fs: 21.5px; } | |
| 49 | + | |
| 50 | +*, *::before, *::after { box-sizing: border-box; } | |
| 51 | +html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--topbar-h) + 70px); } | |
| 52 | +@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } } | |
| 53 | +body { margin: 0; font-family: var(--font); font-size: var(--fs); line-height: var(--lh); color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; } | |
| 54 | +img { max-width: 100%; height: auto; } | |
| 55 | +svg[aria-hidden="true"] { width: 1em; height: 1em; flex: 0 0 auto; vertical-align: -.12em; } | |
| 56 | +.hero-deco, .ch-hero .deco { width: 100%; height: 100%; } | |
| 57 | +svg.wchart, svg.course-map { width: 100%; height: auto; } | |
| 58 | +a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: color-mix(in srgb, currentColor 40%, transparent); transition: text-decoration-color .15s; } | |
| 59 | +a:hover { text-decoration-color: currentColor; } | |
| 60 | +code, kbd { font-family: var(--mono); font-size: .88em; } | |
| 61 | +code { background: var(--bg-clair); padding: .1em .4em; border-radius: 4px; } | |
| 62 | +kbd { border: 1px solid var(--border); border-bottom-width: 2px; border-radius: 4px; padding: 0 .4em; background: var(--card); font-size: .78em; } | |
| 63 | +hr.sep { border: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gris-clair) 20%, var(--gris-clair) 80%, transparent); margin: 2.4rem auto; position: relative; max-width: 60%; } | |
| 64 | +hr.sep::after { content: ""; position: absolute; left: 50%; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--or); transform: translateX(-50%); } | |
| 65 | +.skip { position: absolute; left: -999px; top: 8px; background: var(--or); color: var(--navy); padding: .5rem 1rem; border-radius: 6px; z-index: 1000; font-weight: 600; } | |
| 66 | +.skip:focus { left: 8px; } | |
| 67 | +.muted { color: var(--gris); } | |
| 68 | +.c-bleu { color: var(--bleu); } .c-bleu-clair { color: var(--bleu-clair); } .c-or { color: var(--or-fonce); } [data-theme="dark"] .c-or { color: var(--or); } | |
| 69 | +.c-gris { color: var(--gris); } .c-gris-clair { color: var(--gris-clair); } .c-vert { color: var(--vert); } .c-rouge { color: var(--rouge); } .c-navy { color: var(--navy); } [data-theme="dark"] .c-navy { color: var(--ink); } .c-white { color: inherit; } | |
| 70 | +.upper { text-transform: uppercase; } .sc { font-variant: small-caps; } .num { white-space: nowrap; font-variant-numeric: tabular-nums; } | |
| 71 | + | |
| 72 | +/* révélation au défilement */ | |
| 73 | +.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s cubic-bezier(.2, .7, .2, 1), transform .55s cubic-bezier(.2, .7, .2, 1); } | |
| 74 | +.reveal.in { opacity: 1; transform: none; } | |
| 75 | +.reveal:nth-child(2) { transition-delay: .06s; } .reveal:nth-child(3) { transition-delay: .12s; } .reveal:nth-child(4) { transition-delay: .18s; } | |
| 76 | + | |
| 77 | +/* ============================================================================= | |
| 78 | + Barre supérieure (claire, logo UQO) | |
| 79 | + ============================================================================= */ | |
| 80 | +.topbar { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .86); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); color: var(--ink); border-bottom: 1px solid var(--border); transition: box-shadow .2s; } | |
| 81 | +[data-theme="dark"] .topbar { background: rgba(14, 19, 29, .86); } | |
| 82 | +.topbar::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: linear-gradient(90deg, var(--uqo), var(--or) 60%, var(--uqo)); opacity: .9; } | |
| 83 | +.topbar.scrolled { box-shadow: 0 10px 30px -18px rgba(9, 26, 51, .35); } | |
| 84 | +.topbar-inner { max-width: 1440px; margin: 0 auto; padding: 0 22px; height: var(--topbar-h); display: flex; align-items: center; gap: 18px; } | |
| 85 | +.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; min-width: 0; } | |
| 86 | +.brand-logo { height: 30px; width: auto; display: block; } | |
| 87 | +[data-theme="dark"] .brand-logo { filter: brightness(0) invert(1); opacity: .92; } | |
| 88 | +.brand-sep { width: 1px; height: 30px; background: var(--border); } | |
| 89 | +.brand-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.05; } | |
| 90 | +.brand-code { font-weight: 800; letter-spacing: .06em; font-size: 1rem; color: var(--uqo); } | |
| 91 | +.brand-title { font-size: .76rem; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 300px; } | |
| 92 | +.topnav { display: flex; gap: 2px; margin-left: auto; align-items: center; } | |
| 93 | +.topnav > a, .topnav > .dd > button { color: var(--ink); text-decoration: none; font-size: .9rem; font-weight: 600; padding: 8px 12px; border-radius: 8px; background: none; border: 0; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 6px; transition: background .15s, color .15s; } | |
| 94 | +.topnav > a:hover, .topnav > .dd > button:hover, .topnav > a[aria-current="page"], .topnav > .dd.current > button, .topnav > .dd.open > button { background: var(--bg-clair); color: var(--uqo); } | |
| 95 | +.topnav > a[aria-current="page"], .topnav > .dd.current > button { box-shadow: inset 0 -2px 0 var(--or); } | |
| 96 | +.dd { position: relative; } | |
| 97 | +.dd > button .caret { font-size: .7em; opacity: .6; transition: transform .15s; } | |
| 98 | +.dd.open > button .caret { transform: rotate(180deg); } | |
| 99 | +.dd-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 320px; background: var(--card); color: var(--ink); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 10px; display: none; gap: 2px; z-index: 200; animation: pop .16s ease-out; } | |
| 100 | +@keyframes pop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } } | |
| 101 | +.dd-menu.wide { min-width: 660px; grid-template-columns: 1fr 1fr; gap: 2px 14px; right: auto; } | |
| 102 | +.dd.open .dd-menu { display: grid; } | |
| 103 | +.dd:last-child .dd-menu { left: auto; right: 0; } | |
| 104 | +.dd-menu a { display: flex; gap: 10px; align-items: flex-start; padding: 8px 10px; border-radius: 8px; text-decoration: none; color: var(--ink); font-size: .88rem; line-height: 1.3; } | |
| 105 | +.dd-menu a:hover { background: var(--bg-clair); } | |
| 106 | +.dd-menu a .dd-desc { display: block; font-size: .75rem; color: var(--gris); margin-top: 2px; font-weight: 400; } | |
| 107 | +.dd-menu a .dd-ico { width: 30px; height: 30px; border-radius: 8px; background: var(--bleu-pale); display: grid; place-items: center; flex: 0 0 auto; color: var(--uqo); } | |
| 108 | +.dd-menu a .dd-ico svg { width: 16px; height: 16px; } | |
| 109 | +.dd-menu .dd-part { grid-column: 1 / -1; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gris); margin: 8px 10px 2px; font-weight: 700; display: flex; align-items: center; gap: 8px; } | |
| 110 | +.dd-menu .dd-part i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; } | |
| 111 | +.dd-menu .dd-part:first-child { margin-top: 0; } | |
| 112 | +.pastille { flex: 0 0 auto; display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--uqo); color: #fff; font-size: .72rem; font-weight: 700; } | |
| 113 | +.pastille.done { background: var(--vert) !important; color: #fff !important; } | |
| 114 | +.topbar-actions { display: flex; gap: 6px; align-items: center; } | |
| 115 | +.icon-btn { appearance: none; background: var(--bg-clair); border: 1px solid var(--border); color: var(--ink); width: 38px; height: 38px; border-radius: 10px; cursor: pointer; display: inline-grid; place-items: center; transition: background .15s, color .15s; } | |
| 116 | +.icon-btn:hover { background: var(--bleu-pale); color: var(--uqo); } | |
| 117 | +.icon-btn svg { width: 18px; height: 18px; } | |
| 118 | +.search-btn { width: auto; padding: 0 12px; gap: 8px; font-family: inherit; font-size: .85rem; display: inline-flex; align-items: center; white-space: nowrap; } | |
| 119 | +.menu-btn { display: none; } | |
| 120 | +.readbar { height: 3px; background: var(--gris-pale); } | |
| 121 | +.readbar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--uqo), var(--or)); transition: width .1s linear; } | |
| 122 | +@media (max-width: 1080px) { | |
| 123 | + .topnav { display: none; position: absolute; top: var(--topbar-h); left: 0; right: 0; background: var(--card); flex-direction: column; align-items: stretch; padding: 10px 14px 16px; border-bottom: 2px solid var(--or); gap: 4px; max-height: calc(100vh - var(--topbar-h)); overflow: auto; box-shadow: var(--shadow-lg); } | |
| 124 | + .topnav.open { display: flex; } | |
| 125 | + .topnav > a, .topnav > .dd > button { padding: 12px 14px; font-size: 1rem; width: 100%; justify-content: space-between; } | |
| 126 | + .dd-menu, .dd-menu.wide { position: static; min-width: 0; grid-template-columns: 1fr; box-shadow: none; animation: none; border: 0; background: var(--bg-clair); } | |
| 127 | + .menu-btn { display: inline-grid; } | |
| 128 | + .brand-title { display: none; } | |
| 129 | + .brand-logo { height: 26px; } | |
| 130 | + .search-btn span, .search-btn kbd { display: none; } | |
| 131 | + .search-btn { width: 38px; padding: 0; } | |
| 132 | +} | |
| 133 | + | |
| 134 | +/* ============================================================================= | |
| 135 | + Pied de page | |
| 136 | + ============================================================================= */ | |
| 137 | +.site-footer { margin-top: 90px; background: linear-gradient(160deg, #0b3d52, #0f6180); color: rgba(255, 255, 255, .78); border-top: 3px solid var(--or); font-size: .9rem; position: relative; overflow: hidden; } | |
| 138 | +.site-footer::before { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(41, 118, 187, .3); } | |
| 139 | +.footer-inner { max-width: 1240px; margin: 0 auto; padding: 46px 22px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; position: relative; } | |
| 140 | +.footer-inner h4 { color: #fff; margin: 0 0 10px; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; } | |
| 141 | +.footer-inner a { color: rgba(255, 255, 255, .85); text-decoration: none; display: block; padding: 3px 0; } | |
| 142 | +.footer-inner a:hover { color: var(--or); } | |
| 143 | +.footer-brand .brand-code { font-size: 1.5rem; font-family: var(--display); font-weight: 700; color: var(--or); } | |
| 144 | +.footer-legal { border-top: 1px solid rgba(255, 255, 255, .1); } | |
| 145 | +.footer-legal div { max-width: 1240px; margin: 0 auto; padding: 14px 22px; font-size: .78rem; color: rgba(255, 255, 255, .6); display: flex; gap: 20px; flex-wrap: wrap; justify-content: space-between; } | |
| 146 | +@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } } | |
| 147 | +@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } } | |
| 148 | + | |
| 149 | +/* ============================================================================= | |
| 150 | + Mise en page générique | |
| 151 | + ============================================================================= */ | |
| 152 | +.page { max-width: 1240px; margin: 0 auto; padding: 0 22px; } | |
| 153 | +.page-head { padding: 52px 0 22px; position: relative; } | |
| 154 | +.page-head h1 { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 8px; color: var(--bleu); line-height: 1.1; letter-spacing: -.01em; font-variation-settings: "opsz" 144; } | |
| 155 | +.page-head .lead { color: var(--ink-2); font-size: 1.08rem; max-width: 74ch; margin: 0; font-family: var(--serif); } | |
| 156 | +.eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--or-fonce); font-weight: 700; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; } | |
| 157 | +[data-theme="dark"] .eyebrow { color: var(--or); } | |
| 158 | +.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--or); border-radius: 2px; } | |
| 159 | +.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; } .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; } | |
| 160 | +@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } } | |
| 161 | +@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } } | |
| 162 | +.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; box-shadow: none; transition: transform .15s, box-shadow .2s, border-color .2s; } | |
| 163 | +a.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--bleu-clair); } | |
| 164 | +.card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--bleu); display: flex; align-items: center; gap: 8px; } | |
| 165 | +.card h3 svg { width: 18px; height: 18px; color: var(--or-fonce); } | |
| 166 | +.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 10px; font-weight: 600; font-size: .92rem; text-decoration: none; cursor: pointer; border: 1px solid transparent; font-family: var(--font); line-height: 1.2; background: var(--bleu); color: #fff; transition: transform .12s, box-shadow .2s, background .15s; } | |
| 167 | +.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); text-decoration: none; } | |
| 168 | +.btn:active { transform: translateY(0); } | |
| 169 | +.btn svg { width: 17px; height: 17px; } | |
| 170 | +.btn-or { background: linear-gradient(135deg, #e0bb47, var(--or)); color: var(--navy); } | |
| 171 | +.btn-ghost { background: transparent; color: var(--bleu); border-color: var(--border); } | |
| 172 | +[data-theme="dark"] .btn { background: var(--bleu-clair); color: var(--navy); } [data-theme="dark"] .btn-ghost { background: transparent; color: var(--bleu-clair); } [data-theme="dark"] .btn-or { color: var(--navy); } | |
| 173 | +.btn-sm { padding: 7px 12px; font-size: .82rem; border-radius: 8px; } | |
| 174 | +.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; } | |
| 175 | +.btn-ok { background: var(--vert) !important; color: #fff !important; } .btn-ko { background: var(--rouge) !important; color: #fff !important; } | |
| 176 | +.chip { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 999px; font-size: .77rem; font-weight: 600; background: var(--bg-clair); color: var(--ink-2); border: 1px solid var(--border); white-space: nowrap; line-height: 1.3; } | |
| 177 | +.chip svg { width: 13px; height: 13px; } | |
| 178 | +.chip-or { background: var(--or-pale); color: var(--or-fonce); border-color: rgba(204, 164, 36, .4); } [data-theme="dark"] .chip-or { color: var(--or); } | |
| 179 | +.chip-vert { background: rgba(16, 124, 78, .12); color: var(--vert); border-color: rgba(16, 124, 78, .3); } | |
| 180 | +.chip-rouge { background: rgba(178, 42, 32, .1); color: var(--rouge); border-color: rgba(178, 42, 32, .3); } | |
| 181 | +.chip-bleu { background: var(--bleu-pale); color: var(--bleu); border-color: rgba(41, 118, 187, .3); } | |
| 182 | +.chip-part { background: var(--part-soft); color: var(--part); border-color: transparent; } | |
| 183 | +.select, .input { font: inherit; padding: 9px 12px; border: 1px solid var(--border); border-radius: 9px; background: var(--card); color: var(--ink); } | |
| 184 | +.input:focus, .select:focus, textarea:focus { outline: 2px solid var(--bleu-clair); outline-offset: 1px; } | |
| 185 | + | |
| 186 | +/* toasts, confettis */ | |
| 187 | +.toasts { position: fixed; right: 18px; bottom: 90px; z-index: 900; display: grid; gap: 8px; } | |
| 188 | +.toast { background: var(--navy); color: #fff; padding: 12px 16px; border-radius: 10px; box-shadow: var(--shadow-lg); font-size: .9rem; opacity: 0; transform: translateY(8px); transition: all .25s; border-left: 4px solid var(--or); max-width: 340px; } | |
| 189 | +.toast.in { opacity: 1; transform: none; } .toast.ok { border-left-color: var(--vert); } .toast.ko { border-left-color: var(--rouge); } | |
| 190 | +.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 950; } | |
| 191 | + | |
| 192 | +/* ============================================================================= | |
| 193 | + Accueil | |
| 194 | + ============================================================================= */ | |
| 195 | +.hero { position: relative; overflow: hidden; color: var(--ink); background: radial-gradient(900px 520px at 85% -20%, rgba(15, 97, 128, .16), transparent 60%), radial-gradient(700px 400px at 5% 110%, rgba(204, 164, 36, .14), transparent 60%), linear-gradient(180deg, #f5f9fb 0%, #ffffff 100%); border-bottom: 1px solid var(--border); } | |
| 196 | +[data-theme="dark"] .hero { background: radial-gradient(900px 520px at 85% -20%, rgba(79, 176, 214, .18), transparent 60%), linear-gradient(180deg, #121a2a 0%, var(--bg) 100%); } | |
| 197 | +.hero-inner { max-width: 1240px; margin: 0 auto; padding: 48px 22px 52px; position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .9fr; gap: 48px; align-items: center; } | |
| 198 | +.hero-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; } | |
| 199 | +.hero-brand img { height: 48px; width: auto; } | |
| 200 | +[data-theme="dark"] .hero-brand img { filter: brightness(0) invert(1); } | |
| 201 | +.hero-brand span { font-size: .8rem; color: var(--ink-2); border-left: 1px solid var(--border); padding-left: 14px; line-height: 1.3; max-width: 220px; } | |
| 202 | +.hero .eyebrow { color: var(--uqo); } | |
| 203 | +.hero .eyebrow::before { background: var(--or); } | |
| 204 | +.hero h1 { font-family: var(--display); font-weight: 600; font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.03; margin: 0 0 22px; letter-spacing: -.015em; color: var(--bleu); font-variation-settings: "opsz" 144, "SOFT" 30; } | |
| 205 | +.hero h1 .code { display: block; font-family: var(--font); font-size: .36em; letter-spacing: .16em; color: var(--uqo); font-weight: 700; margin-bottom: 14px; } | |
| 206 | +.hero .lead { font-family: var(--serif); font-size: 1.16rem; color: var(--ink-2); max-width: 60ch; margin: 0 0 28px; line-height: 1.6; } | |
| 207 | +.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; } | |
| 208 | +.hero-deco { position: absolute; inset: 0; pointer-events: none; } | |
| 209 | +.hero-deco circle { fill: none; stroke: rgba(15, 97, 128, .10); stroke-width: 1; } | |
| 210 | +.hero-deco .gold { stroke: rgba(204, 164, 36, .55); } | |
| 211 | +.hero-deco .dot { fill: var(--or); stroke: none; } | |
| 212 | +.hero-card { background: linear-gradient(160deg, var(--navy), #0f3a55); color: #fff; border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px; padding: 24px 26px; box-shadow: var(--shadow-lg); } | |
| 213 | +.hero-card h3 { margin: 0 0 12px; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--or); } | |
| 214 | +.hero-card .resume-title { font-family: var(--display); font-size: 1.3rem; font-weight: 600; margin-bottom: 6px; } | |
| 215 | +.hero-card .muted { color: rgba(255, 255, 255, .72); font-size: .9rem; } | |
| 216 | +.hero-card .bar { height: 7px; background: rgba(255, 255, 255, .15); border-radius: 4px; margin: 14px 0; overflow: hidden; } | |
| 217 | +.hero-card .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--or), #f1d67a); width: 0; border-radius: 4px; transition: width .6s ease; } | |
| 218 | +.hero-card .btn { margin-top: 8px; } | |
| 219 | +.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 30px; } | |
| 220 | +.stat { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; transition: transform .15s, box-shadow .2s; box-shadow: var(--shadow-sm); } | |
| 221 | +.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow); } | |
| 222 | +.stat b { display: block; font-family: var(--font); font-size: 1.45rem; font-weight: 700; color: var(--uqo); line-height: 1.05; letter-spacing: -.01em; font-variant-numeric: tabular-nums; } | |
| 223 | +.stat span { font-size: .68rem; color: var(--gris); text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; } | |
| 224 | +@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; padding: 40px 22px 40px; gap: 28px; } .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; } .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); } .hero-brand img { height: 40px; } .stat b { font-size: 1.4rem; } } | |
| 225 | + | |
| 226 | +.section { padding: 44px 0 8px; } | |
| 227 | +.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; } | |
| 228 | +.section-head h2 { margin: 0; font-family: var(--display); font-weight: 600; font-size: 1.6rem; color: var(--bleu); letter-spacing: -.01em; } | |
| 229 | +.section-head p { margin: 6px 0 0; color: var(--ink-2); font-family: var(--serif); font-size: 1.02rem; } | |
| 230 | + | |
| 231 | +/* parcours (ligne du temps) */ | |
| 232 | +.timeline { display: grid; grid-template-columns: repeat(14, 1fr); gap: 6px; position: relative; padding: 10px 0 0; } | |
| 233 | +.timeline::before { content: ""; position: absolute; left: 3%; right: 3%; top: 25px; height: 2px; background: var(--gris-pale); border-radius: 2px; } | |
| 234 | +.timeline-item { position: relative; display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--ink-2); font-size: .72rem; text-align: center; gap: 8px; } | |
| 235 | +.timeline-item .dot { width: 30px; height: 30px; border-radius: 50%; background: var(--card); border: 2px solid var(--tl, var(--bleu-clair)); display: grid; place-items: center; font-weight: 700; color: var(--tl, var(--bleu)); font-size: .78rem; position: relative; z-index: 1; transition: transform .15s; } | |
| 236 | +.timeline-item:hover .dot { transform: scale(1.12); } | |
| 237 | +.timeline-item.started .dot { background: var(--tl, var(--bleu-clair)); color: #fff; } | |
| 238 | +.timeline-item.done .dot { background: var(--vert); border-color: var(--vert); color: #fff; } | |
| 239 | +.timeline-item .tl-ev { display: grid; gap: 3px; } | |
| 240 | +.timeline-item .tl-ev span { display: block; padding: 2px 6px; border-radius: 6px; font-size: .66rem; font-weight: 600; line-height: 1.25; } | |
| 241 | +.tl-tp { background: var(--or-pale); color: var(--or-fonce); } .tl-remise { background: var(--bleu-pale); color: var(--bleu); } .tl-exam { background: rgba(178, 42, 32, .1); color: var(--rouge); } | |
| 242 | +[data-theme="dark"] .tl-tp { color: var(--or); } | |
| 243 | +@media (max-width: 900px) { .timeline { grid-template-columns: repeat(7, 1fr); gap: 10px 6px; } .timeline::before { display: none; } } | |
| 244 | + | |
| 245 | +/* cartes de séance */ | |
| 246 | +.part-title { display: flex; align-items: center; gap: 12px; margin: 26px 0 12px; color: var(--ink-2); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; } | |
| 247 | +.part-title::after { content: ""; flex: 1; height: 1px; background: var(--border); } | |
| 248 | +.part-title .roman { color: var(--pc, var(--or-fonce)); display: inline-flex; align-items: center; gap: 8px; } | |
| 249 | +.part-title .roman i { width: 12px; height: 12px; border-radius: 4px; background: var(--pc, var(--or)); display: inline-block; } | |
| 250 | +.seances { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; } | |
| 251 | +.seance-card { position: relative; display: flex; flex-direction: column; gap: 8px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px 14px; text-decoration: none; color: var(--ink); transition: transform .15s, box-shadow .2s, border-color .2s; overflow: hidden; } | |
| 252 | +.seance-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--pc, var(--uqo)); } | |
| 253 | +.seance-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--pc, var(--uqo)); } | |
| 254 | +.seance-card .sc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; } | |
| 255 | +.seance-card .sc-num { font-size: .66rem; text-transform: uppercase; letter-spacing: .14em; color: var(--pc, var(--uqo)); font-weight: 700; } | |
| 256 | +.seance-card h3 { margin: 0; font-family: var(--font); font-weight: 700; font-size: 1rem; line-height: 1.3; color: var(--ink); letter-spacing: -.005em; } | |
| 257 | +.seance-card .sc-meta { display: flex; gap: 4px 12px; flex-wrap: wrap; font-size: .74rem; color: var(--gris); margin-top: auto; padding-top: 6px; border-top: 1px dashed var(--border); } | |
| 258 | +.seance-card .sc-meta span { display: inline-flex; gap: 5px; align-items: center; white-space: nowrap; } | |
| 259 | +.seance-card .sc-meta svg { width: 13px; height: 13px; color: var(--pc, var(--uqo)); } | |
| 260 | +.seance-card .sc-events { display: flex; gap: 6px; flex-wrap: wrap; } | |
| 261 | +.seance-card .sc-events .chip { font-size: .68rem; padding: 2px 8px; } | |
| 262 | +.ring { --p: 0; width: 28px; height: 28px; border-radius: 50%; background: conic-gradient(var(--vert) calc(var(--p) * 1%), var(--gris-pale) 0); display: grid; place-items: center; flex: 0 0 auto; } | |
| 263 | +.ring::after { content: ""; width: 21px; height: 21px; border-radius: 50%; background: var(--card); } | |
| 264 | +.ring[data-done="1"] { background: var(--vert); } | |
| 265 | +.ring[data-done="1"]::after { content: "✓"; color: var(--vert); font-weight: 800; font-size: .7rem; display: grid; place-items: center; } | |
| 266 | + | |
| 267 | +.eval-table { width: 100%; border-collapse: collapse; font-size: .95rem; } | |
| 268 | +.eval-table th, .eval-table td { padding: 11px 13px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; } | |
| 269 | +.eval-table th { background: var(--navy); color: #fff; font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; } | |
| 270 | +.eval-table tr:nth-child(even) td { background: var(--bg-2); } | |
| 271 | +.eval-table td.al-c { text-align: center; } | |
| 272 | +.eval-table .total td { font-weight: 700; border-top: 2px solid var(--or); } | |
| 273 | + | |
| 274 | +.feature { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: 12px; background: var(--card); border: 1px solid var(--border); text-decoration: none; color: inherit; transition: transform .15s, box-shadow .2s; } | |
| 275 | +.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow); } | |
| 276 | +.feature .f-icon { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--bleu-pale); color: var(--uqo); } | |
| 277 | +.feature .f-icon svg { width: 19px; height: 19px; } | |
| 278 | +.feature h3 { margin: 0 0 4px; font-size: 1rem; color: var(--bleu); } | |
| 279 | +.feature p { margin: 0; color: var(--ink-2); font-size: .9rem; line-height: 1.5; } | |
| 280 | +.feature .f-new { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; background: var(--or); color: var(--navy); padding: 2px 6px; border-radius: 4px; margin-left: 6px; vertical-align: middle; } | |
| 281 | + | |
| 282 | +/* carte du cours */ | |
| 283 | +.course-map { width: 100%; max-width: 760px; margin: 0 auto; display: block; } | |
| 284 | +.course-map .ring-part { fill: none; stroke-width: 26; opacity: .16; } | |
| 285 | +.course-map .node { cursor: pointer; } | |
| 286 | +.course-map .node circle { fill: var(--card); stroke: var(--pc); stroke-width: 3; transition: r .15s, stroke-width .15s; } | |
| 287 | +.course-map .node text { font-family: var(--font); font-size: 13px; font-weight: 700; fill: var(--ink); pointer-events: none; } | |
| 288 | +.course-map .node .lbl { font-size: 10px; font-weight: 500; fill: var(--ink-2); } | |
| 289 | +.course-map .node:hover circle, .course-map .node.active circle { stroke-width: 5; fill: var(--pc); } | |
| 290 | +.course-map .node:hover text, .course-map .node.active text { fill: #fff; } | |
| 291 | +.course-map .node:hover .lbl, .course-map .node.active .lbl { fill: var(--ink-2); } | |
| 292 | +.course-map .node.done circle { fill: var(--vert); stroke: var(--vert); } .course-map .node.done text { fill: #fff; } | |
| 293 | +.course-map .node.started circle { fill: var(--pc); fill-opacity: .35; } | |
| 294 | +.course-map .center { fill: var(--navy); } | |
| 295 | +.course-map .center-t { font-family: var(--display); font-weight: 700; fill: var(--or); font-size: 26px; } | |
| 296 | +.course-map .center-s { font-family: var(--font); fill: #fff; font-size: 11px; } | |
| 297 | +.course-map .part-lbl { font-family: var(--font); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; } | |
| 298 | +.map-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .9fr); gap: 30px; align-items: start; } | |
| 299 | +#map-panel { position: sticky; top: calc(var(--topbar-h) + 20px); background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); min-height: 200px; } | |
| 300 | +#map-panel h3 { margin: 0; font-family: var(--display); font-size: 1.35rem; color: var(--bleu); } | |
| 301 | +#map-panel h4 { margin: 14px 0 6px; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gris); } | |
| 302 | +#map-panel ul { margin: 0 0 10px; padding-left: 1.2em; font-size: .9rem; } | |
| 303 | +@media (max-width: 900px) { .map-layout { grid-template-columns: 1fr; } #map-panel { position: static; } } | |
| 304 | + | |
| 305 | +/* ============================================================================= | |
| 306 | + Page de séance | |
| 307 | + ============================================================================= */ | |
| 308 | +.ch-hero { position: relative; overflow: hidden; color: var(--ink); background: radial-gradient(800px 420px at 90% -30%, var(--part-soft), transparent 60%), linear-gradient(180deg, #f5f9fb, var(--bg)); border-bottom: 3px solid var(--part); } | |
| 309 | +[data-theme="dark"] .ch-hero { background: radial-gradient(800px 420px at 90% -30%, var(--part-soft), transparent 60%), linear-gradient(180deg, #121a2a, var(--bg)); } | |
| 310 | +.ch-hero-inner { max-width: 1440px; margin: 0 auto; padding: 40px 22px 30px; position: relative; z-index: 1; } | |
| 311 | +.ch-hero .eyebrow { color: var(--part); } | |
| 312 | +.ch-hero .eyebrow::before { background: var(--part); } | |
| 313 | +.ch-hero .eyebrow .part-chip { background: var(--part); color: #fff; padding: 2px 8px; border-radius: 4px; letter-spacing: .06em; } | |
| 314 | +.ch-hero h1 { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.08; margin: 0 0 14px; max-width: 30ch; letter-spacing: -.012em; color: var(--bleu); font-variation-settings: "opsz" 144; } | |
| 315 | +.ch-hero .ch-sub { color: var(--ink-2); font-size: .92rem; margin-bottom: 16px; font-family: var(--serif); } | |
| 316 | +.ch-hero .ch-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; } | |
| 317 | +.ch-hero .ch-tools { display: flex; gap: 10px; flex-wrap: wrap; } | |
| 318 | +.ch-hero .ch-tools .btn-ghost[aria-pressed="true"] { background: var(--or); color: var(--navy); border-color: var(--or); } | |
| 319 | +.ch-hero .watermark { position: absolute; right: 24px; bottom: -24px; font-family: var(--display); font-size: clamp(5rem, 11vw, 9rem); font-weight: 700; color: var(--part); opacity: .05; line-height: 1; pointer-events: none; letter-spacing: -.04em; } | |
| 320 | +.ch-hero .deco { position: absolute; inset: 0; pointer-events: none; } | |
| 321 | +.ch-hero .deco circle { fill: none; stroke: var(--part); stroke-opacity: .18; stroke-width: 1.2; } | |
| 322 | +.ch-hero .deco .gold { stroke: var(--or); stroke-opacity: .6; } | |
| 323 | +@media (max-width: 760px) { .ch-hero-inner { padding: 26px 18px 22px; } .ch-hero .ch-tools .btn { padding: 8px 12px; font-size: .84rem; } .ch-hero .ch-meta .chip { font-size: .7rem; padding: 3px 8px; } } | |
| 324 | + | |
| 325 | +/* stepper de sections */ | |
| 326 | +.stepper-wrap { position: sticky; top: calc(var(--topbar-h) + 3px); z-index: 40; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); } | |
| 327 | +.stepper { max-width: 1440px; margin: 0 auto; padding: 8px 22px; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; } | |
| 328 | +.stepper::-webkit-scrollbar { display: none; } | |
| 329 | +.stepper a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; padding: 6px 11px; border-radius: 999px; text-decoration: none; font-size: .78rem; color: var(--ink-2); border: 1px solid transparent; white-space: nowrap; max-width: 260px; overflow: hidden; text-overflow: ellipsis; transition: background .15s; } | |
| 330 | +.stepper a .n { width: 20px; height: 20px; border-radius: 50%; background: var(--gris-pale); color: var(--ink-2); display: inline-grid; place-items: center; font-size: .68rem; font-weight: 700; flex: 0 0 auto; } | |
| 331 | +.stepper a:hover { background: var(--bg-clair); } | |
| 332 | +.stepper a.done .n { background: var(--vert); color: #fff; } | |
| 333 | +.stepper a.active { background: var(--part-soft); color: var(--part); border-color: color-mix(in srgb, var(--part) 40%, transparent); font-weight: 600; } | |
| 334 | +.stepper a.active .n { background: var(--part); color: #fff; } | |
| 335 | +.stepper .rem { margin-left: auto; flex: 0 0 auto; font-size: .76rem; color: var(--gris); align-self: center; padding-left: 10px; } | |
| 336 | + | |
| 337 | +.ch-layout { max-width: 1440px; margin: 0 auto; padding: 34px 22px 0; display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 48px; align-items: start; } | |
| 338 | +.ch-toc { position: sticky; top: calc(var(--topbar-h) + 62px); max-height: calc(100vh - var(--topbar-h) - 90px); overflow: auto; font-size: .85rem; padding-right: 6px; scrollbar-width: thin; } | |
| 339 | +.ch-toc h4 { margin: 0 0 8px; font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gris); } | |
| 340 | +.ch-toc ol { list-style: none; margin: 0 0 14px; padding: 0; border-left: 2px solid var(--border); } | |
| 341 | +.ch-toc li a { display: flex; gap: 6px; padding: 5px 0 5px 12px; color: var(--ink-2); text-decoration: none; margin-left: -2px; border-left: 2px solid transparent; line-height: 1.35; transition: color .15s; } | |
| 342 | +.ch-toc li.lvl3 a { padding-left: 24px; font-size: .78rem; color: var(--gris); } | |
| 343 | +.ch-toc li a:hover { color: var(--part); } | |
| 344 | +.ch-toc li a.active { color: var(--part); border-left-color: var(--part); font-weight: 600; } | |
| 345 | +.ch-toc li.lvl2 a.done::after { content: "✓"; color: var(--vert); font-size: .75em; margin-left: auto; } | |
| 346 | +.ch-toc .toc-num { color: var(--or-fonce); font-weight: 600; font-size: .78em; flex: 0 0 auto; } | |
| 347 | +[data-theme="dark"] .ch-toc .toc-num { color: var(--or); } | |
| 348 | +.ch-toc .toc-extra a { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 8px; color: var(--ink-2); text-decoration: none; } | |
| 349 | +.ch-toc .toc-extra a:hover { background: var(--bg-clair); color: var(--bleu); } | |
| 350 | +.ch-toc .toc-extra svg { width: 15px; height: 15px; color: var(--or-fonce); } | |
| 351 | +.ch-toc .toc-progress { display: flex; align-items: center; gap: 10px; font-size: .76rem; color: var(--gris); margin: 4px 0 16px; } | |
| 352 | +.ch-toc .toc-progress .bar { flex: 1; height: 6px; background: var(--gris-pale); border-radius: 3px; overflow: hidden; } | |
| 353 | +.ch-toc .toc-progress .bar i { display: block; height: 100%; width: 0; background: var(--vert); transition: width .3s; } | |
| 354 | + | |
| 355 | +.ch-body { min-width: 0; } | |
| 356 | +.prose { width: 100%; max-width: calc(var(--text-w) + var(--margin-w) + var(--margin-gap)); font-family: var(--serif); font-size: calc(var(--fs) * 1.03); } | |
| 357 | +.prose > *, .prose .box, .prose .table-wrap, .prose figure, .prose .center, .prose .eq, .prose ul, .prose ol, .prose details, .prose section, .prose .widget { max-width: var(--text-w); } | |
| 358 | +.prose p { margin: 0 0 1.1em; hyphens: auto; -webkit-hyphens: auto; } | |
| 359 | +.chapter-page.no-dropcap .prose > p:first-of-type::first-letter { font-family: var(--display); font-size: 3.3em; float: left; line-height: .82; margin: .06em .1em 0 0; color: var(--part); font-weight: 600; } | |
| 360 | +body.revision .chapter-page.no-dropcap .prose > p:first-of-type::first-letter { font-size: inherit; float: none; margin: 0; color: inherit; } | |
| 361 | +.prose ul, .prose ol { padding-left: 1.5em; margin: .4em 0 1em; } | |
| 362 | +.prose li { margin: .35em 0; } | |
| 363 | +.prose ul > li::marker { color: var(--part); } | |
| 364 | +.prose ol.enum { list-style: none; counter-reset: enum; padding-left: 2em; } | |
| 365 | +.prose ol.enum > li { counter-increment: enum; position: relative; } | |
| 366 | +.prose ol.enum > li::before { content: counter(enum); position: absolute; left: -2em; top: .3em; width: 1.45em; height: 1.45em; border-radius: 50%; background: var(--part); color: #fff; font-family: var(--font); font-size: .7em; font-weight: 700; display: grid; place-items: center; } | |
| 367 | +.prose li.labeled { list-style: none; display: grid; grid-template-columns: auto 1fr; gap: 8px; margin-left: -1em; } | |
| 368 | +.prose li.labeled .li-label { font-weight: 700; color: var(--bleu-clair); font-family: var(--font); } | |
| 369 | +.prose ul.desc { list-style: none; padding-left: 0; } | |
| 370 | +.prose ul.desc li.labeled { margin-left: 0; grid-template-columns: minmax(120px, 200px) 1fr; padding: 6px 0; border-bottom: 1px dashed var(--border); } | |
| 371 | +.prose strong { font-weight: 700; } | |
| 372 | +.prose .motcle { color: var(--bleu); font-weight: 700; border-bottom: 1px dotted var(--bleu-clair); cursor: help; font-family: var(--font); font-size: .95em; } | |
| 373 | +.prose .cite, .cite { font-size: .9em; color: var(--bleu); text-decoration: none; font-family: var(--font); } | |
| 374 | +.prose .citation { color: var(--ink-2); } | |
| 375 | +.prose .xref { font-weight: 600; text-decoration: none; border-bottom: 1px dotted var(--bleu-clair); } | |
| 376 | +.prose .xref-missing { color: var(--rouge); } | |
| 377 | +.prose sup { line-height: 0; } | |
| 378 | +mark.hl { background: linear-gradient(transparent 40%, rgba(255, 214, 90, .75) 40%); color: inherit; padding: 0 1px; border-radius: 2px; cursor: pointer; } | |
| 379 | +mark.hl.has-note { background: linear-gradient(transparent 40%, rgba(143, 224, 187, .75) 40%); } | |
| 380 | +[data-theme="dark"] mark.hl { background: linear-gradient(transparent 40%, rgba(227, 192, 79, .4) 40%); } [data-theme="dark"] mark.hl.has-note { background: linear-gradient(transparent 40%, rgba(92, 196, 150, .4) 40%); } | |
| 381 | +.hl-pop { position: absolute; z-index: 400; display: flex; gap: 4px; background: var(--navy); padding: 6px; border-radius: 10px; box-shadow: var(--shadow-lg); animation: pop .15s; } | |
| 382 | +.hl-pop button { font: inherit; font-family: var(--font); font-size: .8rem; font-weight: 600; background: rgba(255, 255, 255, .1); color: #fff; border: 0; padding: 6px 10px; border-radius: 7px; cursor: pointer; } | |
| 383 | +.hl-pop button:hover { background: var(--or); color: var(--navy); } | |
| 384 | +.tts-current { outline: 2px solid var(--or); outline-offset: 6px; border-radius: 4px; background: var(--or-pale); } | |
| 385 | +.flash-target { animation: flash 2.4s ease-out; } | |
| 386 | +@keyframes flash { 0% { background: var(--or-pale); } 100% { background: transparent; } } | |
| 387 | + | |
| 388 | +/* titres de prose */ | |
| 389 | +.prose h2.h-section { font-family: var(--display); font-weight: 600; font-size: 1.85rem; color: var(--bleu); margin: 2.6em 0 .7em; line-height: 1.15; position: relative; padding-bottom: .4em; letter-spacing: -.01em; scroll-margin-top: calc(var(--topbar-h) + 70px); } | |
| 390 | +.prose h2.h-section::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: linear-gradient(90deg, var(--part) 0 44px, var(--gris-clair) 44px); } | |
| 391 | +.prose h3.h-subsection { font-family: var(--font); font-size: 1.22rem; color: var(--bleu-clair); margin: 2em 0 .5em; line-height: 1.25; font-weight: 700; scroll-margin-top: calc(var(--topbar-h) + 70px); } | |
| 392 | +.prose h4.h-subsubsection { font-family: var(--font); font-size: 1.02rem; color: var(--gris); margin: 1.6em 0 .4em; scroll-margin-top: calc(var(--topbar-h) + 70px); } | |
| 393 | +.prose h5.para-title { font-family: var(--font); font-size: .98rem; margin: 1.2em 0 .3em; color: var(--ink); } | |
| 394 | +.h-num { color: var(--part); font-weight: 700; margin-right: .5em; font-variant-numeric: tabular-nums; font-family: var(--font); font-size: .78em; vertical-align: .1em; } | |
| 395 | +.h-anchor { opacity: 0; margin-left: .4em; font-weight: 400; text-decoration: none; color: var(--gris); font-size: .7em; } | |
| 396 | +h2:hover .h-anchor, h3:hover .h-anchor, h4:hover .h-anchor { opacity: 1; } | |
| 397 | +.prose h2 + p, .prose h3 + p { margin-top: 0; } | |
| 398 | + | |
| 399 | +/* boîtes pédagogiques */ | |
| 400 | +.box { position: relative; border-radius: 6px; margin: 1.5em 0; padding: 14px 18px 12px; border-left: 3px solid var(--gris); background: var(--bg-clair); break-inside: avoid; font-family: var(--serif); } | |
| 401 | +.box-head { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 9px; margin-bottom: 8px; font-weight: 700; color: var(--gris); font-size: .92rem; font-family: var(--font); } | |
| 402 | +.box-head .box-label { white-space: nowrap; } | |
| 403 | +.box-head .box-title { font-weight: 500; color: var(--ink-2); } | |
| 404 | +.box-icon { width: 22px; height: 22px; display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 6px; background: rgba(255, 255, 255, .7); } | |
| 405 | +[data-theme="dark"] .box-icon { background: rgba(255, 255, 255, .06); } | |
| 406 | +.box-icon svg { width: 13px; height: 13px; } | |
| 407 | +.box-anchor { margin-left: auto; opacity: 0; color: var(--gris); text-decoration: none; font-weight: 400; } | |
| 408 | +.box:hover .box-anchor { opacity: .7; } | |
| 409 | +.box-body > :last-child, .box-body p:last-child { margin-bottom: 0; } | |
| 410 | +.box-def { border-left-color: var(--bleu); background: linear-gradient(180deg, rgba(0, 62, 126, .07), rgba(0, 62, 126, .04)); } .box-def .box-head { color: var(--bleu); } | |
| 411 | +.box-form { border-left-color: var(--or); background: linear-gradient(180deg, rgba(9, 26, 51, .06), rgba(9, 26, 51, .03)); border-top: 1px solid rgba(204, 164, 36, .5); } .box-form .box-head { color: var(--navy); } [data-theme="dark"] .box-form .box-head { color: var(--or); } .box-form .box-icon { color: var(--or-fonce); } | |
| 412 | +.box-ex { border-left-color: var(--vert); background: rgba(16, 124, 78, .07); } .box-ex .box-head { color: var(--vert); } | |
| 413 | +.box-exo { border-left-color: var(--bleu-clair); background: rgba(41, 118, 187, .08); } .box-exo .box-head { color: var(--bleu-clair); } | |
| 414 | +.box-att { border-left-color: var(--rouge); background: rgba(178, 42, 32, .06); } .box-att .box-head { color: var(--rouge); } | |
| 415 | +.box-terrain { border-left-color: var(--or); background: rgba(204, 164, 36, .1); } .box-terrain .box-head { color: var(--or-fonce); } [data-theme="dark"] .box-terrain .box-head { color: var(--or); } | |
| 416 | +.box-rem { border-left-color: var(--gris); background: var(--bg-clair); } | |
| 417 | +.box-qc { border-left-color: var(--bleu-clair); background: rgba(41, 118, 187, .08); } .box-qc .box-head { color: var(--bleu-clair); } | |
| 418 | +.box-pts { border-left-color: var(--vert); background: rgba(16, 124, 78, .07); } .box-pts .box-head { color: var(--vert); } | |
| 419 | +.box-ret { border-left: 0; background: linear-gradient(150deg, var(--navy), #0f2a52); color: #fff; padding: 20px 22px 18px; border-bottom: 3px solid var(--or); border-radius: var(--radius-sm); box-shadow: var(--shadow); } | |
| 420 | +.box-ret .box-head { color: var(--or); } .box-ret .box-icon { background: rgba(255, 255, 255, .1); } | |
| 421 | +.box-ret a, .box-ret .motcle, .box-ret .c-bleu, .box-ret .xref { color: #fff; } .box-ret .c-rouge { color: #ffb3ad; } .box-ret .c-vert { color: #8fe0bb; } .box-ret .c-or { color: var(--or); } .box-ret .katex { color: #fff; } .box-ret code { background: rgba(255, 255, 255, .1); } | |
| 422 | +.box-obj { border: 1px solid var(--border); border-top: 3px solid var(--part); background: var(--card); border-left-width: 1px; border-radius: var(--radius); padding: 20px 22px; transition: border-color .3s; } | |
| 423 | +.box-obj.complete { border-top-color: var(--vert); } | |
| 424 | +.box-obj .box-head { color: var(--bleu); font-size: 1.05rem; } .box-obj .box-icon { color: var(--part); } | |
| 425 | +.box-obj ul { list-style: none; padding: 0; margin: 0; } | |
| 426 | +.box-obj li.obj { margin: 0; } | |
| 427 | +.box-obj li.obj label { display: flex; gap: 12px; align-items: flex-start; padding: 8px 8px; border-radius: 8px; cursor: pointer; transition: background .15s; } | |
| 428 | +.box-obj li.obj label:hover { background: var(--bg-clair); } | |
| 429 | +.box-obj input.obj-cb { margin-top: .4em; width: 18px; height: 18px; accent-color: var(--vert); flex: 0 0 auto; } | |
| 430 | +.box-obj input.obj-cb:checked + .obj-text { color: var(--gris); text-decoration: line-through; text-decoration-color: var(--gris-clair); } | |
| 431 | +.obj-progress { margin-left: auto; font-size: .76rem; font-weight: 600; color: var(--gris); } | |
| 432 | +.box-synth { border: 0; border-top: 3px solid var(--or); background: var(--bg-clair); border-radius: var(--radius); padding: 22px 24px; margin-top: 2.6em; } | |
| 433 | +.box-synth .box-head { color: var(--bleu); font-size: 1.2rem; font-family: var(--display); } .box-synth .box-icon { color: var(--or-fonce); } | |
| 434 | +.box-synth ul { padding-left: 1.3em; } .box-synth li { margin: .55em 0; } | |
| 435 | +.box-sol { border-left: 4px solid var(--gris-clair); background: var(--bg-2); margin-top: -0.7em; padding: 0; box-shadow: none; } | |
| 436 | +.box-sol summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 9px; padding: 12px 18px; font-weight: 700; color: var(--gris); user-select: none; font-family: var(--font); font-size: .92rem; } | |
| 437 | +.box-sol summary::-webkit-details-marker { display: none; } | |
| 438 | +.box-sol summary .sol-hint { margin-left: auto; font-size: .74rem; font-weight: 500; color: var(--gris); background: var(--card); border: 1px solid var(--border); padding: 3px 9px; border-radius: 999px; } | |
| 439 | +.box-sol[open] summary .sol-hint { display: none; } | |
| 440 | +.box-sol[open] summary { border-bottom: 1px dashed var(--border); } | |
| 441 | +.box-sol .box-body { padding: 12px 18px 14px; font-size: .95em; animation: pop .2s; } | |
| 442 | +.box-sol .box-icon { color: var(--vert); } | |
| 443 | + | |
| 444 | +/* équations, tableaux, figures */ | |
| 445 | +.eq { margin: 1em 0 1.2em; overflow-x: auto; overflow-y: hidden; padding: 4px 2px; } | |
| 446 | +.eq .katex-display { margin: 0; } | |
| 447 | +.katex { font-size: 1.06em; } | |
| 448 | +.katex-display > .katex { white-space: normal; } | |
| 449 | +.math-error { color: var(--rouge); } | |
| 450 | +.table-wrap { overflow-x: auto; margin: 1.3em 0; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-sm); } | |
| 451 | +table.tbl { width: 100%; border-collapse: collapse; font-size: .9em; line-height: 1.4; font-family: var(--font); } | |
| 452 | +table.tbl th, table.tbl td { padding: 10px 13px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); } | |
| 453 | +table.tbl thead th { background: var(--navy); color: #fff; font-weight: 600; position: sticky; top: 0; font-size: .85em; } | |
| 454 | +table.tbl tbody tr:nth-child(even) td { background: var(--bg-2); } | |
| 455 | +table.tbl tbody tr:hover td { background: var(--bleu-pale); } | |
| 456 | +table.tbl tbody tr:last-child td { border-bottom: 0; } | |
| 457 | +table.tbl tr.rule-above td, table.tbl tr.rule-above th { border-top: 2px solid var(--or); } | |
| 458 | +table.tbl tbody th { background: var(--bleu); color: #fff; } | |
| 459 | +table.tbl .al-r { text-align: right; font-variant-numeric: tabular-nums; } table.tbl .al-c { text-align: center; } | |
| 460 | +.center { text-align: center; } .center .table-wrap { text-align: left; } | |
| 461 | +figure { margin: 1.7em 0; } | |
| 462 | +figure.float-table figcaption { margin-bottom: .5em; } figure.float-figure figcaption { margin-top: .6em; } | |
| 463 | +figcaption { font-size: .86em; color: var(--ink-2); line-height: 1.45; font-family: var(--font); } | |
| 464 | +.fig-label { font-weight: 700; color: var(--bleu); margin-right: .4em; } | |
| 465 | +.tikz, .figimg { text-align: center; margin: 1em 0; } | |
| 466 | +.tikz img, .figimg img { max-width: 100%; height: auto; background: #fff; border-radius: 10px; padding: 10px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); } | |
| 467 | +[data-theme="dark"] .tikz img, [data-theme="dark"] .figimg img { background: #f4f6f9; } | |
| 468 | +.figimg img { cursor: zoom-in; } | |
| 469 | +.lightbox { position: fixed; inset: 0; z-index: 800; background: rgba(9, 26, 51, .92); display: grid; place-items: center; padding: 30px; cursor: zoom-out; } | |
| 470 | +.lightbox img { max-width: 100%; max-height: 100%; background: #fff; border-radius: 8px; padding: 12px; } | |
| 471 | + | |
| 472 | +/* notes marginales */ | |
| 473 | +.sn-toggle { cursor: pointer; color: var(--or-fonce); font-size: .7em; vertical-align: super; margin-left: 2px; user-select: none; } | |
| 474 | +[data-theme="dark"] .sn-toggle { color: var(--or); } | |
| 475 | +.sn-toggle .sn-num { font-size: .95em; color: var(--bleu); font-weight: 700; } | |
| 476 | +.sn-cb { display: none; } | |
| 477 | +.sidenote { font-family: var(--font); font-size: .78rem; line-height: 1.45; color: var(--gris); position: relative; } | |
| 478 | +.sidenote .sn-term { color: var(--bleu); display: block; } .sidenote .sn-date { color: var(--or-fonce); } .sidenote .sn-num { color: var(--bleu); font-weight: 700; } | |
| 479 | +@media (min-width: 1280px) { | |
| 480 | + .sidenote { float: right; clear: right; width: var(--margin-w); margin-right: calc(-1 * (var(--margin-w) + var(--margin-gap))); margin-top: .1em; margin-bottom: .9em; padding-top: 6px; border-top: 2px solid var(--or); } | |
| 481 | + .sn-toggle { display: none; } | |
| 482 | + .prose .box .sidenote, .prose figure .sidenote, .prose .table-wrap .sidenote, .prose li .sidenote { float: none; width: auto; margin: .5em 0; display: block; border-top: 0; padding: 6px 10px; background: rgba(204, 164, 36, .12); border-radius: 4px; } | |
| 483 | +} | |
| 484 | +@media (max-width: 1279px) { | |
| 485 | + .sidenote { display: none; margin: .6em 0; padding: 8px 12px; background: rgba(204, 164, 36, .12); border-left: 3px solid var(--or); border-radius: 4px; } | |
| 486 | + .sn-cb:checked ~ .sidenote { display: block; } | |
| 487 | +} | |
| 488 | +body.revision .prose > p, body.revision .prose .box-ex, body.revision .prose .box-exo, body.revision .prose .box-sol, body.revision .prose .box-rem, body.revision .prose .box-terrain, body.revision .prose figure, body.revision .prose .center, body.revision .prose > .eq, body.revision .prose > ul, body.revision .prose > ol, body.revision .prose .table-wrap, body.revision .prose .widget { display: none; } | |
| 489 | +body.revision .prose .box-def, body.revision .prose .box-form, body.revision .prose .box-att, body.revision .prose .box-ret, body.revision .prose .box-qc, body.revision .prose .box-synth, body.revision .prose .box-obj, body.revision .prose .box-pts { display: block; } | |
| 490 | +body.revision .prose h4, body.revision .prose h5 { display: none; } | |
| 491 | +body.revision .sidenote { float: none; display: block; width: auto; margin: .6em 0; padding: 8px 12px; background: rgba(204, 164, 36, .12); border-left: 3px solid var(--or); border-top: 0; border-radius: 4px; } | |
| 492 | +body.revision .prose p:has(.sidenote) { display: block; font-size: 0; margin: 0; } | |
| 493 | +body.revision .prose p:has(.sidenote) .sidenote { font-size: .82rem; } | |
| 494 | +body.revision .sn-toggle { display: none; } | |
| 495 | +body.revision .revision-banner { display: flex; } | |
| 496 | +.revision-banner { display: none; align-items: center; gap: 10px; background: var(--or-pale); border: 1px solid rgba(204, 164, 36, .5); color: var(--ink); padding: 10px 14px; border-radius: 10px; margin-bottom: 20px; font-size: .9rem; } | |
| 497 | +.revision-banner svg { width: 18px; height: 18px; color: var(--or-fonce); } | |
| 498 | +.revision-banner button { margin-left: auto; } | |
| 499 | + | |
| 500 | +/* barre d'outils de lecture flottante */ | |
| 501 | +.read-tools { position: fixed; right: 18px; bottom: 18px; z-index: 300; display: flex; flex-direction: column; gap: 6px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 6px; box-shadow: var(--shadow-lg); } | |
| 502 | +.read-tools button { width: 42px; height: 42px; border-radius: 10px; border: 0; background: transparent; color: var(--ink-2); cursor: pointer; display: grid; place-items: center; position: relative; transition: background .15s, color .15s; } | |
| 503 | +.read-tools button:hover { background: var(--bg-clair); color: var(--bleu); } | |
| 504 | +.read-tools button[aria-pressed="true"] { background: var(--or-pale); color: var(--or-fonce); } | |
| 505 | +.read-tools button svg { width: 19px; height: 19px; } | |
| 506 | +.read-tools button::after { content: attr(data-tip); position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); background: var(--navy); color: #fff; font-size: .74rem; padding: 4px 8px; border-radius: 6px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .15s; } | |
| 507 | +.read-tools button:hover::after { opacity: 1; } | |
| 508 | +.read-tools hr { border: 0; border-top: 1px solid var(--border); margin: 2px 4px; } | |
| 509 | +@media (max-width: 760px) { .read-tools { flex-direction: row; right: 12px; left: 12px; bottom: 12px; justify-content: space-around; } .read-tools hr { display: none; } .read-tools button::after { display: none; } .toasts { bottom: 76px; } } | |
| 510 | + | |
| 511 | +/* panneau de notes */ | |
| 512 | +.notes-panel { position: fixed; top: var(--topbar-h); right: 0; bottom: 0; width: min(420px, 100vw); background: var(--card); border-left: 1px solid var(--border); box-shadow: var(--shadow-lg); z-index: 350; transform: translateX(105%); transition: transform .3s cubic-bezier(.2, .7, .2, 1); display: flex; flex-direction: column; } | |
| 513 | +.notes-panel.open { transform: none; } | |
| 514 | +.notes-head { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--border); } | |
| 515 | +.notes-head h3 { margin: 0; font-size: 1rem; font-family: var(--display); color: var(--bleu); } | |
| 516 | +.notes-head .icon-btn { background: var(--bg-clair); color: var(--ink); border-color: var(--border); margin-left: auto; width: 34px; height: 34px; } | |
| 517 | +.notes-body { padding: 16px 18px; overflow: auto; display: grid; gap: 14px; align-content: start; } | |
| 518 | +.notes-body h4 { margin: 0 0 6px; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gris); display: flex; gap: 8px; align-items: center; } | |
| 519 | +.notes-body h4 span { margin-left: auto; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--vert); } | |
| 520 | +.notes-body textarea { width: 100%; min-height: 170px; font: inherit; font-family: var(--serif); font-size: .95rem; padding: 12px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); color: var(--ink); resize: vertical; line-height: 1.5; } | |
| 521 | +#hl-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; } | |
| 522 | +#hl-list li { position: relative; padding: 10px 34px 10px 12px; border-radius: 8px; background: var(--bg-clair); font-size: .86rem; border-left: 3px solid var(--or); } | |
| 523 | +#hl-list li a { color: var(--ink); text-decoration: none; font-family: var(--serif); } #hl-list li a:hover { color: var(--bleu); } | |
| 524 | +#hl-list .hl-note { margin-top: 5px; color: var(--vert); font-size: .82rem; } | |
| 525 | +#hl-list li.muted { border-left-color: var(--border); color: var(--gris); } | |
| 526 | +.hl-del { position: absolute; right: 8px; top: 8px; border: 0; background: transparent; color: var(--gris); cursor: pointer; font-size: .8rem; padding: 2px 5px; border-radius: 4px; } | |
| 527 | +.hl-del:hover { background: var(--rouge); color: #fff; } | |
| 528 | +.notes-foot { padding: 12px 18px; border-top: 1px solid var(--border); display: flex; gap: 8px; } | |
| 529 | + | |
| 530 | +/* lecture audio */ | |
| 531 | +.tts-bar { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 320; background: var(--navy); color: #fff; border-radius: 999px; padding: 8px 12px; display: flex; gap: 6px; align-items: center; box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .12); } | |
| 532 | +.tts-bar[hidden] { display: none; } | |
| 533 | +.tts-bar button { width: 36px; height: 36px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .1); color: #fff; font-size: 1rem; cursor: pointer; } | |
| 534 | +.tts-bar button:hover { background: var(--or); color: var(--navy); } | |
| 535 | +.tts-bar select { font: inherit; font-size: .8rem; background: rgba(255, 255, 255, .1); color: #fff; border: 0; border-radius: 8px; padding: 6px 8px; } | |
| 536 | +.tts-bar span { font-size: .78rem; opacity: .8; padding: 0 6px; } | |
| 537 | +@media (max-width: 760px) { .tts-bar { bottom: 74px; } } | |
| 538 | + | |
| 539 | +/* widgets visuels */ | |
| 540 | +.widget { margin: 2em 0; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-sm); overflow: hidden; font-family: var(--font); } | |
| 541 | +.w-head { padding: 16px 20px 12px; background: linear-gradient(180deg, var(--part-soft), transparent); border-bottom: 1px solid var(--border); } | |
| 542 | +.w-badge { display: inline-block; font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--part); background: var(--card); border: 1px solid color-mix(in srgb, var(--part) 40%, transparent); padding: 2px 8px; border-radius: 999px; margin-bottom: 8px; } | |
| 543 | +.w-head h4 { margin: 0 0 4px; font-family: var(--display); font-size: 1.25rem; color: var(--bleu); font-weight: 600; } | |
| 544 | +.w-head p { margin: 0; font-size: .9rem; color: var(--ink-2); line-height: 1.5; } | |
| 545 | +.w-body { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 0; } | |
| 546 | +.w-controls { padding: 14px 16px; display: grid; gap: 12px; border-right: 1px solid var(--border); background: var(--bg-2); align-content: start; } | |
| 547 | +.wctl { display: grid; gap: 4px; font-size: .8rem; color: var(--ink-2); } | |
| 548 | +.wctl span { display: flex; justify-content: space-between; gap: 8px; } | |
| 549 | +.wctl output { font-weight: 700; color: var(--bleu); font-variant-numeric: tabular-nums; white-space: nowrap; } | |
| 550 | +.wctl input[type=range] { width: 100%; accent-color: var(--part); } | |
| 551 | +.wctl select { font: inherit; font-size: .85rem; padding: 6px 8px; border: 1px solid var(--border); border-radius: 8px; background: var(--card); color: var(--ink); } | |
| 552 | +.w-view { padding: 14px 18px; min-width: 0; display: grid; gap: 12px; align-content: start; } | |
| 553 | +.w-note { margin: 0; padding: 10px 20px; font-size: .78rem; color: var(--gris); border-top: 1px dashed var(--border); } | |
| 554 | +.wchart { width: 100%; height: auto; display: block; } | |
| 555 | +.wchart .grid { stroke: var(--border); stroke-dasharray: 3 3; } .wchart .axis { stroke: var(--gris); stroke-width: 1.2; } | |
| 556 | +.wchart .tick, .wchart .alabel, .wchart .slabel, .wchart .vlabel, .wchart .mlabel { font-family: var(--font); font-size: 11px; fill: var(--ink-2); } | |
| 557 | +.wchart .alabel { font-weight: 600; } .wchart .slabel { font-weight: 700; font-size: 12px; } .wchart .vlabel { font-weight: 700; fill: var(--ink); } .wchart .mlabel { font-weight: 700; fill: var(--or-fonce); font-size: 12px; } | |
| 558 | +.wchart .mline { stroke: var(--or); stroke-dasharray: 4 3; stroke-width: 1.2; } | |
| 559 | +.wkpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; } | |
| 560 | +.wkpi { background: var(--bg-clair); border-radius: 10px; padding: 10px 12px; display: grid; gap: 2px; } | |
| 561 | +.wkpi span { font-size: .72rem; color: var(--gris); } .wkpi b { font-size: 1rem; color: var(--ink); font-variant-numeric: tabular-nums; } | |
| 562 | +.wkpi.main { background: var(--navy); color: #fff; } .wkpi.main span { color: rgba(255, 255, 255, .7); } .wkpi.main b { color: var(--or); font-size: 1.2rem; } | |
| 563 | +.wkpi.warn b { color: var(--rouge); } .wkpi.good b { color: var(--vert); } | |
| 564 | +.wbars { display: grid; gap: 7px; } | |
| 565 | +.wbar { display: grid; grid-template-columns: 130px 1fr 110px; gap: 10px; align-items: center; font-size: .82rem; } | |
| 566 | +.wbar-track { height: 16px; background: var(--gris-pale); border-radius: 5px; overflow: hidden; } .wbar-track i { display: block; height: 100%; border-radius: 5px; transition: width .3s; } | |
| 567 | +.wbar-v { text-align: right; font-variant-numeric: tabular-nums; } | |
| 568 | +.wstack-bar { display: flex; height: 26px; border-radius: 8px; overflow: hidden; background: var(--gris-pale); } .wstack-bar i { display: block; height: 100%; transition: width .3s; } | |
| 569 | +.wstack-legend { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 8px; font-size: .8rem; } | |
| 570 | +.wstack-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; } | |
| 571 | +.wgauges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; } | |
| 572 | +.wgauge .wg-head { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: 4px; } .wgauge b.warn { color: var(--rouge); } .wgauge b.good { color: var(--vert); } | |
| 573 | +.wg-track { position: relative; height: 14px; background: var(--gris-pale); border-radius: 7px; overflow: visible; } .wg-track i { display: block; height: 100%; border-radius: 7px; transition: width .3s; } | |
| 574 | +.wg-seuil { position: absolute; top: -4px; width: 2px; height: 22px; background: var(--ink); } | |
| 575 | +.wgauge small { color: var(--gris); font-size: .72rem; } | |
| 576 | +.wphase { background: var(--bg-clair); border-radius: 10px; padding: 12px 14px; font-size: .88rem; } .wphase h5 { margin: 0 0 4px; color: var(--bleu); font-size: 1rem; } .wphase p { margin: 0 0 6px; } .wphase ul { margin: 0; padding-left: 1.2em; columns: 2; } | |
| 577 | +.wtable { width: 100%; border-collapse: collapse; font-size: .82rem; } .wtable th, .wtable td { padding: 6px 8px; border-bottom: 1px solid var(--border); text-align: left; } .wtable th { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gris); } | |
| 578 | +.wtable tr.out td { color: var(--gris); text-decoration: line-through; text-decoration-color: var(--gris-clair); } .wtable tr.best td { font-weight: 700; background: rgba(16, 124, 78, .08); } | |
| 579 | +@media (max-width: 760px) { .w-body { grid-template-columns: 1fr; } .w-controls { border-right: 0; border-bottom: 1px solid var(--border); } .wbar { grid-template-columns: 90px 1fr 90px; } .wgauges { grid-template-columns: 1fr; } .wphase ul { columns: 1; } } | |
| 580 | + | |
| 581 | +/* pagination et quiz de chapitre */ | |
| 582 | +.ch-pager { max-width: 1440px; margin: 44px auto 0; padding: 0 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } | |
| 583 | +.ch-pager a { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; color: var(--ink); background: var(--card); transition: transform .15s, box-shadow .2s; } | |
| 584 | +.ch-pager a:hover { border-color: var(--part); box-shadow: var(--shadow); transform: translateY(-2px); } | |
| 585 | +.ch-pager a.next { text-align: right; align-items: flex-end; } | |
| 586 | +.ch-pager small { color: var(--gris); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 700; } | |
| 587 | +.ch-pager b { color: var(--bleu); font-family: var(--display); font-weight: 600; font-size: 1.1rem; } | |
| 588 | +.ch-pager .spacer { visibility: hidden; } | |
| 589 | +@media (max-width: 600px) { .ch-pager { grid-template-columns: 1fr; } .ch-pager a.next { text-align: left; align-items: flex-start; } } | |
| 590 | +.ch-quiz { max-width: 1440px; margin: 54px auto 0; padding: 0 22px; } | |
| 591 | +.ch-quiz-inner { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 26px 28px; border-top: 4px solid var(--or); box-shadow: var(--shadow-sm); } | |
| 592 | +@media (max-width: 1100px) { .ch-layout { grid-template-columns: 1fr; gap: 20px; } .ch-toc { position: static; max-height: none; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; background: var(--card); } .ch-toc ol { max-height: 220px; overflow: auto; } } | |
| 593 | + | |
| 594 | +/* ============================================================================= | |
| 595 | + Quiz, entraînement, jeux | |
| 596 | + ============================================================================= */ | |
| 597 | +.quiz-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; } | |
| 598 | +.quiz-head h2, .quiz-head h3 { margin: 0; color: var(--bleu); font-size: 1.35rem; font-family: var(--display); font-weight: 600; } | |
| 599 | +.quiz-head .quiz-score { margin-left: auto; font-size: .85rem; color: var(--gris); display: flex; gap: 12px; align-items: center; } | |
| 600 | +.quiz-progress { height: 6px; background: var(--gris-pale); border-radius: 3px; overflow: hidden; margin-bottom: 18px; } .quiz-progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--or), #f1d67a); transition: width .3s; } | |
| 601 | +.q-card, .tcard { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; background: var(--bg-2); } | |
| 602 | +.q-num { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--or-fonce); font-weight: 700; } [data-theme="dark"] .q-num { color: var(--or); } | |
| 603 | +.q-text, .tq { font-size: 1.1rem; font-weight: 600; margin: 8px 0 16px; line-height: 1.45; font-family: var(--serif); } | |
| 604 | +.tq { font-weight: 400; } | |
| 605 | +.q-choices { display: grid; gap: 8px; } | |
| 606 | +.q-choice { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--card); cursor: pointer; text-align: left; font: inherit; font-family: var(--serif); color: var(--ink); line-height: 1.4; transition: border-color .12s, background .12s, transform .12s; } | |
| 607 | +.q-choice:hover:not(:disabled) { border-color: var(--bleu-clair); background: var(--bg-clair); transform: translateX(3px); } | |
| 608 | +.q-choice .q-letter { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--gris-pale); font-weight: 700; font-size: .8rem; color: var(--ink-2); font-family: var(--font); } | |
| 609 | +.q-choice.correct { border-color: var(--vert); background: rgba(16, 124, 78, .1); } .q-choice.correct .q-letter { background: var(--vert); color: #fff; } | |
| 610 | +.q-choice.wrong { border-color: var(--rouge); background: rgba(178, 42, 32, .08); } .q-choice.wrong .q-letter { background: var(--rouge); color: #fff; } | |
| 611 | +.q-choice:disabled { cursor: default; } | |
| 612 | +.q-feedback { margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: .95rem; display: none; border-left: 4px solid var(--gris); background: var(--card); font-family: var(--serif); animation: pop .2s; } | |
| 613 | +.q-feedback.show { display: block; } .q-feedback.ok { border-left-color: var(--vert); } .q-feedback.ko { border-left-color: var(--rouge); } | |
| 614 | +.q-feedback > b:first-child { display: block; margin-bottom: 4px; font-family: var(--font); } | |
| 615 | +.q-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; align-items: center; } | |
| 616 | +.q-actions .q-link { margin-left: auto; font-size: .85rem; } | |
| 617 | +.quiz-result { text-align: center; padding: 20px 10px; } | |
| 618 | +.quiz-result .big { font-family: var(--display); font-size: 3.4rem; font-weight: 700; color: var(--bleu); line-height: 1; margin: 6px 0; } | |
| 619 | +.quiz-result p { color: var(--ink-2); } .quiz-result .verdict { font-size: 1.15rem; font-weight: 700; margin: 8px 0 16px; } | |
| 620 | +.quiz-review { margin-top: 24px; text-align: left; display: grid; gap: 8px; } | |
| 621 | +.quiz-review .qr { padding: 10px 12px; border-radius: 8px; border: 1px solid var(--border); font-size: .9rem; display: grid; grid-template-columns: 22px 1fr; gap: 10px; } | |
| 622 | +.quiz-review .qr.ok { border-left: 4px solid var(--vert); } .quiz-review .qr.ko { border-left: 4px solid var(--rouge); } | |
| 623 | +.quiz-select { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; margin: 20px 0; } | |
| 624 | +.quiz-select button { text-align: left; padding: 16px 18px; border: 1px solid var(--border); border-radius: 12px; background: var(--card); font: inherit; color: var(--ink); cursor: pointer; display: grid; gap: 4px; transition: transform .15s, box-shadow .2s; } | |
| 625 | +.quiz-select button:hover { border-color: var(--bleu-clair); box-shadow: var(--shadow); transform: translateY(-2px); } | |
| 626 | +.quiz-select b { color: var(--bleu); font-family: var(--display); font-size: 1.05rem; } .quiz-select small { color: var(--gris); } .quiz-select .best { font-size: .78rem; color: var(--vert); font-weight: 600; } | |
| 627 | +.quiz-select button.exam { background: linear-gradient(150deg, var(--navy), #0f2a52); color: #fff; border-color: var(--navy); } .quiz-select button.exam b { color: var(--or); } .quiz-select button.exam small { color: rgba(255, 255, 255, .7); } | |
| 628 | +.timer { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--rouge); } | |
| 629 | +.tform { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; } | |
| 630 | +.tform input { font: inherit; font-size: 1.1rem; padding: 10px 14px; border: 1px solid var(--border); border-radius: 10px; width: 220px; background: var(--card); color: var(--ink); } | |
| 631 | +.tunit { color: var(--gris); font-weight: 600; } | |
| 632 | +.tsteps { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--border); font-size: .92rem; } .tsteps p { margin: .3em 0; } | |
| 633 | +.tchips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 22px; } | |
| 634 | +.tchip { font: inherit; font-size: .82rem; font-weight: 600; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--border); background: var(--card); color: var(--ink-2); cursor: pointer; } | |
| 635 | +.tchip.on { background: var(--bleu); color: #fff; border-color: var(--bleu); } [data-theme="dark"] .tchip.on { background: var(--bleu-clair); color: var(--navy); } | |
| 636 | +.tchip small { opacity: .8; margin-left: 4px; } | |
| 637 | +.streak { color: var(--or-fonce); } | |
| 638 | +.game-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0; } | |
| 639 | +.game-tabs button { font: inherit; font-weight: 600; padding: 10px 16px; border-radius: 10px; border: 1px solid var(--border); background: var(--card); color: var(--ink); cursor: pointer; display: inline-flex; gap: 8px; align-items: center; } | |
| 640 | +.game-tabs button[aria-selected="true"] { background: var(--navy); color: #fff; border-color: var(--navy); } | |
| 641 | +.game-tabs button svg { width: 16px; height: 16px; } | |
| 642 | +.game { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 22px 24px; box-shadow: var(--shadow-sm); } | |
| 643 | +.game-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; } .game-head h3 { margin: 0; font-family: var(--display); color: var(--bleu); font-size: 1.3rem; } .game-stat { margin-left: auto; color: var(--gris); font-size: .85rem; } | |
| 644 | +.assoc { display: grid; grid-template-columns: 1fr 1.6fr; gap: 14px; } .assoc-col { display: grid; gap: 8px; align-content: start; } | |
| 645 | +.assoc-item { font: inherit; text-align: left; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-2); color: var(--ink); cursor: pointer; transition: all .15s; font-family: var(--serif); line-height: 1.4; } | |
| 646 | +.assoc-item:not(.def) { font-family: var(--font); font-weight: 700; color: var(--bleu); } | |
| 647 | +.assoc-item.def { font-size: .9rem; } | |
| 648 | +.assoc-item:hover { border-color: var(--bleu-clair); } .assoc-item.sel { border-color: var(--or); background: var(--or-pale); } .assoc-item.ok { border-color: var(--vert); background: rgba(16, 124, 78, .12); opacity: .75; pointer-events: none; } .assoc-item.ko { border-color: var(--rouge); background: rgba(178, 42, 32, .1); animation: shake .4s; } | |
| 649 | +@keyframes shake { 0%, 100% { transform: none; } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } } | |
| 650 | +.vf-term { font-family: var(--display); font-size: 1.4rem; color: var(--bleu); font-weight: 600; margin: 6px 0; } .vf-def { font-family: var(--serif); font-size: 1.02rem; margin-bottom: 8px; } | |
| 651 | +.ordre { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } .ordre-pool { display: grid; gap: 8px; align-content: start; } | |
| 652 | +.ordre-item { font: inherit; text-align: left; padding: 11px 14px; border-radius: 10px; border: 1px dashed var(--bleu-clair); background: var(--bg-2); color: var(--ink); cursor: pointer; font-family: var(--serif); } .ordre-item:hover { background: var(--bleu-pale); } | |
| 653 | +.ordre-list { margin: 0; padding-left: 1.6em; display: grid; gap: 8px; } .ordre-list li { position: relative; padding: 10px 36px 10px 12px; border-radius: 10px; background: var(--card); border: 1px solid var(--border); font-family: var(--serif); } | |
| 654 | +.ordre-list li::marker { font-weight: 700; color: var(--bleu); } .ordre-list li.ok { border-color: var(--vert); background: rgba(16, 124, 78, .1); } .ordre-list li.ko { border-color: var(--rouge); background: rgba(178, 42, 32, .08); } | |
| 655 | +@media (max-width: 760px) { .assoc, .ordre { grid-template-columns: 1fr; } } | |
| 656 | + | |
| 657 | +/* fiches */ | |
| 658 | +.fc-toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin: 18px 0; } | |
| 659 | +.fc-stats { display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 18px; } | |
| 660 | +.fc-stage { perspective: 1400px; max-width: 780px; margin: 0 auto; } | |
| 661 | +.fc-card { position: relative; min-height: 320px; transform-style: preserve-3d; transition: transform .55s cubic-bezier(.2, .7, .2, 1); cursor: pointer; } | |
| 662 | +.fc-card.flipped { transform: rotateY(180deg); } | |
| 663 | +.fc-face { position: absolute; inset: 0; border-radius: 18px; padding: 32px 36px; backface-visibility: hidden; -webkit-backface-visibility: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: auto; } | |
| 664 | +.fc-front { background: linear-gradient(160deg, var(--navy), #0f2f5c); color: #fff; } .fc-front .fc-kind { color: var(--or); } | |
| 665 | +.fc-front .fc-q { font-family: var(--display); font-size: 1.75rem; font-weight: 600; margin: auto 0; line-height: 1.25; } | |
| 666 | +.fc-back { background: var(--card); color: var(--ink); transform: rotateY(180deg); font-family: var(--serif); } | |
| 667 | +.fc-kind { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--or-fonce); margin-bottom: 8px; display: flex; gap: 10px; font-family: var(--font); } .fc-kind .fc-ch { margin-left: auto; opacity: .8; } | |
| 668 | +.fc-a { font-size: 1rem; line-height: 1.55; } .fc-a p:first-child { margin-top: 0; } | |
| 669 | +.fc-hint { margin-top: auto; font-size: .76rem; opacity: .7; padding-top: 12px; font-family: var(--font); } | |
| 670 | +.fc-actions { display: flex; gap: 10px; justify-content: center; margin: 18px 0; flex-wrap: wrap; } | |
| 671 | +.fc-nav { display: flex; justify-content: space-between; align-items: center; color: var(--gris); font-size: .9rem; max-width: 780px; margin: 0 auto; } | |
| 672 | +.fc-empty { text-align: center; padding: 40px; color: var(--gris); } | |
| 673 | + | |
| 674 | +/* glossaire, infobulle */ | |
| 675 | +.gl-letters { display: flex; gap: 4px; flex-wrap: wrap; margin: 16px 0 24px; position: sticky; top: calc(var(--topbar-h) + 8px); background: var(--bg); padding: 8px 0; z-index: 5; } | |
| 676 | +.gl-letters a { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: .85rem; color: var(--bleu); border: 1px solid var(--border); background: var(--card); } | |
| 677 | +.gl-letters a:hover { background: var(--bleu); color: #fff; } .gl-letters a.off { opacity: .35; pointer-events: none; } | |
| 678 | +.gl-search { width: 100%; max-width: 540px; font-size: 1.05rem; padding: 12px 16px; } | |
| 679 | +.gl-letter { font-family: var(--display); font-size: 2.6rem; color: var(--or); font-weight: 700; margin: 36px 0 8px; border-bottom: 2px solid var(--gris-clair); line-height: 1.2; } | |
| 680 | +.gl-entry { padding: 16px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: minmax(180px, 260px) 1fr; gap: 20px; } | |
| 681 | +.gl-entry h3 { margin: 0; font-size: 1.05rem; color: var(--bleu); font-family: var(--font); } .gl-entry .gl-def { margin: 0; color: var(--ink); font-family: var(--serif); } .gl-entry .gl-def p { margin: 0 0 .5em; } | |
| 682 | +.gl-entry.hidden, .gl-letter.hidden { display: none; } .gl-count { color: var(--gris); font-size: .9rem; } | |
| 683 | +.gl-entry mark, .search-hit mark { background: rgba(204, 164, 36, .35); color: inherit; padding: 0 2px; border-radius: 2px; } | |
| 684 | +@media (max-width: 640px) { .gl-entry { grid-template-columns: 1fr; gap: 6px; } } | |
| 685 | +.tip { position: absolute; z-index: 300; max-width: 340px; background: var(--card); color: var(--ink); border: 1px solid var(--border); border-left: 4px solid var(--bleu); border-radius: 10px; padding: 12px 14px; box-shadow: var(--shadow-lg); font-size: .86rem; line-height: 1.45; font-family: var(--serif); animation: pop .15s; } | |
| 686 | +.tip b { color: var(--bleu); display: block; margin-bottom: 4px; font-family: var(--font); } .tip a { display: inline-block; margin-top: 6px; font-size: .8rem; font-family: var(--font); } .tip p { margin: 0; } | |
| 687 | + | |
| 688 | +/* colonnes latérales */ | |
| 689 | +.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; align-items: start; } | |
| 690 | +.two-col .side { position: sticky; top: calc(var(--topbar-h) + 20px); font-size: .85rem; max-height: calc(100vh - var(--topbar-h) - 40px); overflow: auto; } | |
| 691 | +.two-col .side h4 { margin: 0 0 8px; font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gris); } | |
| 692 | +.two-col .side ol { list-style: none; padding: 0; margin: 0 0 20px; border-left: 2px solid var(--border); } | |
| 693 | +.two-col .side li a { display: block; padding: 5px 12px; color: var(--ink-2); text-decoration: none; } .two-col .side li a:hover, .two-col .side li a.active { color: var(--bleu); } .two-col .side li.lvl3 a { padding-left: 22px; font-size: .8rem; } | |
| 694 | +.two-col .side .toc-extra a { display: block; padding: 5px 0; color: var(--ink-2); text-decoration: none; } .two-col .side .toc-extra a:hover { color: var(--bleu); } | |
| 695 | +@media (max-width: 1000px) { .two-col { grid-template-columns: 1fr; } .two-col .side { position: static; max-height: none; } } | |
| 696 | +.form-index { columns: 2; column-gap: 24px; font-size: .92rem; } .form-index li { break-inside: avoid; margin: 4px 0; } .form-index .fi-ch { font-weight: 700; color: var(--or-fonce); margin-right: 6px; } | |
| 697 | +@media (max-width: 700px) { .form-index { columns: 1; } } | |
| 698 | + | |
| 699 | +/* calculateurs */ | |
| 700 | +.tools-nav { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 26px; } .tools-nav a { text-decoration: none; } | |
| 701 | +.tool { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); margin: 0 0 26px; box-shadow: var(--shadow-sm); overflow: hidden; } | |
| 702 | +.tool-head { padding: 16px 22px; background: linear-gradient(180deg, var(--bg-clair), var(--card)); border-bottom: 1px solid var(--border); display: flex; gap: 14px; align-items: center; flex-wrap: wrap; } | |
| 703 | +.tool-head h2 { margin: 0; font-size: 1.25rem; color: var(--bleu); font-family: var(--display); font-weight: 600; } .tool-head .chip { margin-left: auto; } | |
| 704 | +.tool-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } | |
| 705 | +.tool-inputs { padding: 18px 22px; display: grid; gap: 12px; border-right: 1px solid var(--border); align-content: start; } | |
| 706 | +.tool-inputs label { display: grid; gap: 4px; font-size: .84rem; color: var(--ink-2); } | |
| 707 | +.tool-inputs input, .tool-inputs select { font: inherit; font-size: 1rem; padding: 9px 11px; border: 1px solid var(--border); border-radius: 9px; background: var(--bg); color: var(--ink); width: 100%; } | |
| 708 | +.tool-inputs .unit { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; } .tool-inputs .unit span { font-size: .85rem; color: var(--gris); } | |
| 709 | +.tool-inputs .group-title { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gris); font-weight: 700; margin-top: 6px; } | |
| 710 | +.tool-out { padding: 18px 22px; background: var(--bg-2); display: grid; gap: 6px; align-content: start; } | |
| 711 | +.tool-out .desc { color: var(--ink-2); font-size: .92rem; margin: 0 0 8px; font-family: var(--serif); } .tool-out .formula { font-size: .92rem; margin: 0 0 10px; overflow-x: auto; color: var(--bleu); } | |
| 712 | +.tool-out .res { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: .95rem; align-items: baseline; } | |
| 713 | +.tool-out .res:last-child { border-bottom: 0; } .tool-out .res b { font-variant-numeric: tabular-nums; white-space: nowrap; } | |
| 714 | +.tool-out .res.main { font-size: 1.15rem; padding: 12px 0; border-top: 2px solid var(--or); border-bottom: 0; margin-top: 8px; } .tool-out .res.main b { color: var(--bleu); font-size: 1.4rem; font-family: var(--display); } | |
| 715 | +.tool-out .res.warn b { color: var(--rouge); } .tool-out .res.good b { color: var(--vert); } .tool-out .note { font-size: .82rem; color: var(--gris); margin-top: 8px; } | |
| 716 | +.tool-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-top: 8px; } .tool-table th, .tool-table td { padding: 6px 8px; border-bottom: 1px solid var(--border); text-align: right; } .tool-table th:first-child, .tool-table td:first-child { text-align: left; } .tool-table th { color: var(--gris); font-weight: 600; font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; } | |
| 717 | +@media (max-width: 800px) { .tool-body { grid-template-columns: 1fr; } .tool-inputs { border-right: 0; border-bottom: 1px solid var(--border); } } | |
| 718 | + | |
| 719 | +/* recherche */ | |
| 720 | +.search-modal { position: fixed; inset: 0; z-index: 500; background: rgba(9, 26, 51, .6); backdrop-filter: blur(4px); display: none; align-items: flex-start; justify-content: center; padding: 8vh 16px; } | |
| 721 | +.search-modal.open { display: flex; } | |
| 722 | +.search-box { width: 100%; max-width: 780px; background: var(--card); border-radius: 18px; box-shadow: 0 40px 90px -20px rgba(0, 0, 0, .6); overflow: hidden; border: 1px solid var(--border); max-height: 80vh; display: flex; flex-direction: column; animation: pop .18s; } | |
| 723 | +.search-box input { width: 100%; border: 0; border-bottom: 1px solid var(--border); padding: 20px 22px; font: inherit; font-size: 1.15rem; background: transparent; color: var(--ink); outline: none; } | |
| 724 | +.search-results { overflow: auto; padding: 8px; } | |
| 725 | +.search-hit { display: block; padding: 11px 13px; border-radius: 10px; text-decoration: none; color: var(--ink); } | |
| 726 | +.search-hit:hover, .search-hit.active { background: var(--bg-clair); } | |
| 727 | +.search-hit .sh-title { font-weight: 600; color: var(--bleu); font-size: .92rem; display: flex; gap: 8px; align-items: center; } | |
| 728 | +.search-hit .sh-kind { font-size: .66rem; text-transform: uppercase; letter-spacing: .08em; padding: 2px 6px; border-radius: 4px; background: var(--gris-pale); color: var(--ink-2); } | |
| 729 | +.search-hit .sh-snippet { font-size: .85rem; color: var(--ink-2); margin-top: 2px; line-height: 1.4; font-family: var(--serif); } .search-hit .sh-where { font-size: .74rem; color: var(--gris); margin-top: 2px; } | |
| 730 | +.search-foot { display: flex; gap: 14px; padding: 8px 16px; border-top: 1px solid var(--border); font-size: .75rem; color: var(--gris); } | |
| 731 | +.search-empty { padding: 30px; text-align: center; color: var(--gris); } | |
| 732 | +.search-page .search-results { padding: 0; } .search-page .search-hit { border: 1px solid var(--border); margin-bottom: 8px; background: var(--card); } | |
| 733 | + | |
| 734 | +/* ressources, diapositives, bibliographie */ | |
| 735 | +.res-table { width: 100%; border-collapse: collapse; } | |
| 736 | +.res-table th, .res-table td { padding: 11px 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; } | |
| 737 | +.res-table th { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gris); } .res-table .size { color: var(--gris); font-size: .85rem; white-space: nowrap; } | |
| 738 | +.file-icon { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; font-size: .64rem; font-weight: 800; color: #fff; margin-right: 10px; vertical-align: middle; } | |
| 739 | +.file-pdf { background: #b22a20; } .file-xlsx { background: #217346; } .file-py { background: #3776ab; } .file-json { background: #6b4fbb; } | |
| 740 | +.slide-viewer { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-clair); margin: 14px 0 30px; box-shadow: var(--shadow-sm); } | |
| 741 | +.slide-viewer iframe { width: 100%; height: min(72vh, 720px); border: 0; display: block; background: #525659; } | |
| 742 | +.slide-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin: 14px 0; } | |
| 743 | +.slide-tabs button { font: inherit; font-size: .85rem; padding: 7px 13px; border-radius: 999px; border: 1px solid var(--border); background: var(--card); color: var(--ink); cursor: pointer; } .slide-tabs button[aria-selected="true"] { background: var(--bleu); color: #fff; border-color: var(--bleu); } | |
| 744 | +.bib-list { list-style: none; padding: 0; margin: 20px 0; } .bib-list li { padding: 12px 0; border-bottom: 1px solid var(--border); line-height: 1.5; font-family: var(--serif); } | |
| 745 | +.bib-list li:target { background: var(--or-pale); padding-left: 10px; border-left: 3px solid var(--or); } | |
| 746 | +.bib-auth { font-weight: 600; } .bib-cited { font-size: .8rem; color: var(--gris); display: block; margin-top: 2px; font-family: var(--font); } .bib-url { word-break: break-all; font-size: .9em; } .bib-urldate { color: var(--gris); font-size: .85em; } | |
| 747 | + | |
| 748 | +/* progression */ | |
| 749 | +.prog-tiles .stat-card { display: grid; gap: 4px; } | |
| 750 | +.stat-card b { font-family: var(--font); font-size: 1.6rem; color: var(--uqo); line-height: 1.05; font-weight: 700; font-variant-numeric: tabular-nums; } | |
| 751 | +.stat-card span { font-size: .8rem; color: var(--ink-2); } | |
| 752 | +.stat-card .bar { height: 6px; background: var(--gris-pale); border-radius: 3px; overflow: hidden; margin-top: 8px; } .stat-card .bar i { display: block; height: 100%; background: var(--vert); transition: width .5s; } | |
| 753 | +.mini-bar { height: 8px; background: var(--gris-pale); border-radius: 4px; overflow: hidden; min-width: 90px; } .mini-bar i { display: block; height: 100%; background: var(--bleu-clair); } | |
| 754 | +.prog-table tr.done td { background: rgba(16, 124, 78, .06) !important; } | |
| 755 | +.prog-table small { color: var(--gris); } | |
| 756 | + | |
| 757 | +/* rapport marché */ | |
| 758 | +.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin: 20px 0 8px; } | |
| 759 | +.kpi { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; display: grid; gap: 2px; position: relative; overflow: hidden; } | |
| 760 | +.kpi::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--kc, var(--bleu-clair)); } | |
| 761 | +.kpi span { font-size: .74rem; color: var(--gris); } .kpi b { font-family: var(--font); font-size: 1.35rem; color: var(--ink); font-weight: 700; line-height: 1.1; font-variant-numeric: tabular-nums; letter-spacing: -.01em; } .kpi small { font-size: .74rem; color: var(--ink-2); } | |
| 762 | +.kpi.up b { color: var(--vert); } .kpi.down b { color: var(--rouge); } | |
| 763 | +.report-toc { columns: 2; column-gap: 30px; margin: 10px 0; padding: 0; list-style: none; } .report-toc li { break-inside: avoid; margin: 0 0 6px; } | |
| 764 | +.report-toc a { display: flex; gap: 10px; padding: 8px 10px; border-radius: 8px; text-decoration: none; color: var(--ink); } .report-toc a:hover { background: var(--bg-clair); color: var(--bleu); } | |
| 765 | +.report-toc .n { font-weight: 700; color: var(--teal); min-width: 26px; font-variant-numeric: tabular-nums; } | |
| 766 | +.report-toc .part { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gris); font-weight: 700; margin: 12px 10px 4px; break-after: avoid; } | |
| 767 | +@media (max-width: 700px) { .report-toc { columns: 1; } } | |
| 768 | +body.report-page { --part: var(--teal); --part-soft: rgba(15, 139, 141, .13); } | |
| 769 | +.hpi-legend { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .8rem; } .hpi-legend label { display: inline-flex; gap: 6px; align-items: center; cursor: pointer; } .hpi-legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; } | |
| 770 | +.hpi-tip { position: absolute; pointer-events: none; background: var(--navy); color: #fff; font-size: .74rem; padding: 6px 9px; border-radius: 7px; white-space: nowrap; transform: translate(-50%, -110%); box-shadow: var(--shadow); z-index: 5; } | |
| 771 | +.hpi-wrap { position: relative; } | |
| 772 | + | |
| 773 | +/* impression */ | |
| 774 | +@media print { | |
| 775 | + .topbar, .site-footer, .ch-toc, .ch-pager, .ch-quiz, .ch-tools, .search-modal, .h-anchor, .box-anchor, .sn-toggle, .readbar, .read-tools, .notes-panel, .tts-bar, .stepper-wrap, .widget .w-controls, .toasts { display: none !important; } | |
| 776 | + .ch-layout { display: block; padding: 0; } .prose, .prose > * { max-width: none; } | |
| 777 | + .sidenote { display: block !important; float: none; width: auto; margin: .4em 0; padding: 4px 8px; background: #f3f3f3; border-left: 2px solid #999; } | |
| 778 | + details:not([open]) > .box-body { display: block; } details > summary { list-style: none; } | |
| 779 | + .ch-hero { background: #fff !important; color: #000; border-bottom: 2px solid #000; } .ch-hero .eyebrow, .ch-hero h1 { color: #000; } | |
| 780 | + .box-ret { background: #eee; color: #000; } .box-ret .box-head { color: #000; } | |
| 781 | + a { color: inherit; text-decoration: none; } body { font-size: 11pt; } | |
| 782 | +} | |
| 783 | + | |
| 784 | +/* ============================================================================= | |
| 785 | + Mobile | |
| 786 | + ============================================================================= */ | |
| 787 | +@media (max-width: 760px) { | |
| 788 | + :root { --fs: 16.5px; --topbar-h: 56px; } | |
| 789 | + .page { padding: 0 16px; } | |
| 790 | + .page-head { padding: 30px 0 16px; } .page-head h1 { font-size: 1.9rem; } | |
| 791 | + .section { padding: 36px 0 6px; } .section-head h2 { font-size: 1.5rem; } | |
| 792 | + .prose { font-size: var(--fs); } .prose h2.h-section { font-size: 1.5rem; } .chapter-page.no-dropcap .prose > p:first-of-type::first-letter { font-size: 2.6em; } | |
| 793 | + .box { padding: 12px 14px 12px; border-radius: 8px; } .box-ret { padding: 16px; } | |
| 794 | + .ch-layout { padding: 20px 16px 0; } .ch-pager { padding: 0 16px; } .ch-quiz { padding: 0 16px; } .ch-quiz-inner { padding: 18px 16px; } | |
| 795 | + .stepper { padding: 8px 16px; } | |
| 796 | + .table-wrap { margin-left: -16px; margin-right: -16px; border-radius: 0; border-left: 0; border-right: 0; } | |
| 797 | + table.tbl th, table.tbl td { padding: 8px 10px; font-size: .85em; } | |
| 798 | + .wbar { grid-template-columns: 80px 1fr 84px; font-size: .74rem; } | |
| 799 | + .w-head h4 { font-size: 1.05rem; } .w-view { padding: 12px; } | |
| 800 | + .q-card, .tcard, .game { padding: 14px; } .q-text, .tq { font-size: 1rem; } | |
| 801 | + .tform input { width: 100%; } .tform .btn { width: 100%; justify-content: center; } | |
| 802 | + .fc-face { padding: 22px 20px; } .fc-front .fc-q { font-size: 1.35rem; } .fc-card { min-height: 280px; } | |
| 803 | + .kpi-grid { grid-template-columns: 1fr 1fr; gap: 8px; } .kpi b { font-size: 1.2rem; } | |
| 804 | + .prog-tiles { grid-template-columns: 1fr 1fr; } | |
| 805 | + .eval-table { font-size: .85rem; } .eval-table th, .eval-table td { padding: 8px 9px; } | |
| 806 | + .notes-panel { top: 0; width: 100vw; } | |
| 807 | + .hero-cta .btn { flex: 1 1 auto; justify-content: center; } | |
| 808 | + .seance-card::after { font-size: 4rem; } | |
| 809 | + .footer-inner { padding: 34px 16px 24px; } | |
| 810 | + .gl-letters { position: static; } | |
| 811 | + .two-col .side { order: -1; } | |
| 812 | + .map-layout { gap: 16px; } | |
| 813 | +} | |
| 814 | +@media (max-width: 420px) { .hero-stats { grid-template-columns: 1fr 1fr; } .stat { padding: 10px 12px; } .kpi-grid { grid-template-columns: 1fr; } } | |
| 815 | + | |
| 816 | +/* rapport : pleine largeur des tableaux et figures */ | |
| 817 | +.report-page .prose { max-width: none; } | |
| 818 | +.report-page .prose > *, .report-page .prose .box, .report-page .prose ul, .report-page .prose ol { max-width: 80ch; } | |
| 819 | +.report-page .prose .table-wrap, .report-page .prose figure, .report-page .prose .figimg { max-width: none; } | |
| 820 | +.report-page .prose figure.float-table figcaption { max-width: 80ch; } | |
added
dist/assets/fig/001c690eab0b1a0f.svg
+460 −0
@@ -0,0 +1,460 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="385.188pt" height="89.464pt" viewBox="0 0 385.188 89.464"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.265625 -6.421875 L 0.9375 -6.421875 L 0.9375 0 L 2.46875 0 C 3.859375 0 5.484375 -0.625 5.484375 -3.234375 C 5.484375 -5.90625 3.90625 -6.421875 2.265625 -6.421875 Z M 2.46875 -5.703125 C 3.484375 -5.703125 4.546875 -5.40625 4.546875 -3.234375 C 4.546875 -1.125 3.53125 -0.703125 2.53125 -0.703125 L 1.8125 -0.703125 L 1.8125 -5.703125 Z M 2.46875 -5.703125 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.71875 -6.734375 L 3.328125 -7.453125 L 1.484375 -6.390625 L 1.734375 -5.9375 Z M 4.59375 -2.59375 C 4.59375 -4.09375 3.890625 -5.015625 2.5625 -5.015625 C 1.296875 -5.015625 0.53125 -3.9375 0.53125 -2.40625 C 0.53125 -0.84375 1.328125 0.109375 2.703125 0.109375 C 3.375 0.109375 3.9375 -0.125 4.421875 -0.5 L 4.046875 -1.015625 C 3.609375 -0.71875 3.25 -0.59375 2.765625 -0.59375 C 2.0625 -0.59375 1.53125 -1.03125 1.4375 -2.15625 L 4.578125 -2.15625 C 4.578125 -2.265625 4.59375 -2.4375 4.59375 -2.59375 Z M 3.75 -2.796875 L 1.4375 -2.796875 C 1.515625 -3.890625 1.9375 -4.34375 2.59375 -4.34375 C 3.359375 -4.34375 3.75 -3.8125 3.75 -2.84375 Z M 3.75 -2.796875 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 4.484375 -4.90625 L 3.578125 -4.90625 L 2.3125 -0.765625 L 1.03125 -4.90625 L 0.09375 -4.90625 L 1.78125 0 L 2.828125 0 Z M 4.484375 -4.90625 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 4.59375 -2.59375 C 4.59375 -4.09375 3.890625 -5.015625 2.5625 -5.015625 C 1.296875 -5.015625 0.53125 -3.9375 0.53125 -2.40625 C 0.53125 -0.84375 1.328125 0.109375 2.703125 0.109375 C 3.375 0.109375 3.9375 -0.125 4.421875 -0.5 L 4.046875 -1.015625 C 3.609375 -0.71875 3.25 -0.59375 2.765625 -0.59375 C 2.0625 -0.59375 1.53125 -1.03125 1.4375 -2.15625 L 4.578125 -2.15625 C 4.578125 -2.265625 4.59375 -2.4375 4.59375 -2.59375 Z M 3.75 -2.796875 L 1.4375 -2.796875 C 1.515625 -3.890625 1.9375 -4.34375 2.59375 -4.34375 C 3.359375 -4.34375 3.75 -3.8125 3.75 -2.84375 Z M 3.75 -2.796875 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 1.828125 0.109375 C 2.078125 0.109375 2.3125 0.046875 2.5 -0.0625 L 2.28125 -0.65625 C 2.1875 -0.609375 2.09375 -0.59375 1.96875 -0.59375 C 1.734375 -0.59375 1.65625 -0.71875 1.65625 -0.984375 L 1.65625 -6.984375 L 0.796875 -6.875 L 0.796875 -0.96875 C 0.796875 -0.265625 1.203125 0.109375 1.828125 0.109375 Z M 1.828125 0.109375 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.734375 -5.015625 C 1.328125 -5.015625 0.53125 -3.96875 0.53125 -2.453125 C 0.53125 -0.890625 1.328125 0.109375 2.71875 0.109375 C 4.109375 0.109375 4.90625 -0.9375 4.90625 -2.453125 C 4.90625 -4.015625 4.125 -5.015625 2.734375 -5.015625 Z M 2.734375 -4.328125 C 3.53125 -4.328125 3.984375 -3.734375 3.984375 -2.453125 C 3.984375 -1.171875 3.53125 -0.578125 2.71875 -0.578125 C 1.90625 -0.578125 1.453125 -1.171875 1.453125 -2.453125 C 1.453125 -3.734375 1.90625 -4.328125 2.734375 -4.328125 Z M 2.734375 -4.328125 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 3.109375 -5.015625 C 2.546875 -5.015625 2.015625 -4.75 1.65625 -4.25 L 1.59375 -4.90625 L 0.859375 -4.90625 L 0.859375 1.984375 L 1.71875 1.875 L 1.71875 -0.453125 C 2.03125 -0.0625 2.46875 0.109375 3 0.109375 C 4.265625 0.109375 4.921875 -0.96875 4.921875 -2.453125 C 4.921875 -4 4.421875 -5.015625 3.109375 -5.015625 Z M 2.796875 -0.59375 C 2.34375 -0.59375 1.96875 -0.796875 1.71875 -1.1875 L 1.71875 -3.578125 C 1.96875 -3.96875 2.375 -4.34375 2.890625 -4.34375 C 3.625 -4.34375 4 -3.734375 4 -2.453125 C 4 -1.171875 3.578125 -0.59375 2.796875 -0.59375 Z M 2.796875 -0.59375 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 5.78125 -5.015625 C 5.125 -5.015625 4.671875 -4.671875 4.328125 -4.140625 C 4.140625 -4.6875 3.6875 -5.015625 3.078125 -5.015625 C 2.4375 -5.015625 2 -4.6875 1.671875 -4.1875 L 1.59375 -4.90625 L 0.859375 -4.90625 L 0.859375 0 L 1.71875 0 L 1.71875 -3.484375 C 2.046875 -4 2.34375 -4.34375 2.875 -4.34375 C 3.234375 -4.34375 3.5625 -4.140625 3.5625 -3.40625 L 3.5625 0 L 4.421875 0 L 4.421875 -3.484375 C 4.75 -4 5.03125 -4.34375 5.5625 -4.34375 C 5.9375 -4.34375 6.265625 -4.140625 6.265625 -3.40625 L 6.265625 0 L 7.109375 0 L 7.109375 -3.515625 C 7.109375 -4.4375 6.578125 -5.015625 5.78125 -5.015625 Z M 5.78125 -5.015625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.171875 -5.015625 C 2.53125 -5.015625 2 -4.6875 1.671875 -4.1875 L 1.59375 -4.90625 L 0.859375 -4.90625 L 0.859375 0 L 1.71875 0 L 1.71875 -3.484375 C 2.046875 -4 2.40625 -4.34375 2.96875 -4.34375 C 3.4375 -4.34375 3.734375 -4.140625 3.734375 -3.40625 L 3.734375 0 L 4.59375 0 L 4.59375 -3.515625 C 4.59375 -4.453125 4.0625 -5.015625 3.171875 -5.015625 Z M 3.171875 -5.015625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 3.03125 -0.796875 C 2.796875 -0.65625 2.59375 -0.59375 2.390625 -0.59375 C 1.953125 -0.59375 1.796875 -0.828125 1.796875 -1.328125 L 1.796875 -4.25 L 2.875 -4.25 L 2.96875 -4.90625 L 1.796875 -4.90625 L 1.796875 -6.125 L 0.9375 -6.015625 L 0.9375 -4.90625 L 0.078125 -4.90625 L 0.078125 -4.25 L 0.9375 -4.25 L 0.9375 -1.28125 C 0.9375 -0.375 1.4375 0.109375 2.265625 0.109375 C 2.6875 0.109375 3.03125 0 3.359375 -0.21875 Z M 3.03125 -0.796875 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.671875 -5.015625 C 1.34375 -5.015625 0.53125 -3.96875 0.53125 -2.40625 C 0.53125 -0.828125 1.34375 0.109375 2.671875 0.109375 C 3.234375 0.109375 3.734375 -0.078125 4.171875 -0.421875 L 3.78125 -0.984375 C 3.40625 -0.75 3.125 -0.609375 2.703125 -0.609375 C 1.9375 -0.609375 1.453125 -1.140625 1.453125 -2.4375 C 1.453125 -3.703125 1.9375 -4.3125 2.703125 -4.3125 C 3.125 -4.3125 3.421875 -4.1875 3.765625 -3.953125 L 4.171875 -4.484375 C 3.71875 -4.875 3.25 -5.015625 2.671875 -5.015625 Z M 2.671875 -5.015625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 2.21875 -5.015625 C 1.203125 -5.015625 0.453125 -4.453125 0.453125 -3.671875 C 0.453125 -2.984375 0.859375 -2.53125 1.921875 -2.25 C 2.875 -2 3.125 -1.8125 3.125 -1.328125 C 3.125 -0.859375 2.703125 -0.578125 2.0625 -0.578125 C 1.53125 -0.578125 1.078125 -0.75 0.6875 -1.046875 L 0.234375 -0.53125 C 0.65625 -0.15625 1.25 0.109375 2.09375 0.109375 C 3.078125 0.109375 4.015625 -0.359375 4.015625 -1.375 C 4.015625 -2.234375 3.421875 -2.640625 2.390625 -2.90625 C 1.609375 -3.109375 1.34375 -3.296875 1.34375 -3.703125 C 1.34375 -4.09375 1.6875 -4.34375 2.25 -4.34375 C 2.703125 -4.34375 3.078125 -4.203125 3.515625 -3.921875 L 3.890625 -4.453125 C 3.421875 -4.8125 2.90625 -5.015625 2.21875 -5.015625 Z M 2.21875 -5.015625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.984375 -5.015625 C 2.390625 -5.015625 1.9375 -4.640625 1.671875 -3.90625 L 1.59375 -4.90625 L 0.859375 -4.90625 L 0.859375 0 L 1.71875 0 L 1.71875 -2.796875 C 1.921875 -3.75 2.265625 -4.1875 2.890625 -4.1875 C 3.0625 -4.1875 3.171875 -4.15625 3.3125 -4.125 L 3.46875 -4.96875 C 3.328125 -5 3.140625 -5.015625 2.984375 -5.015625 Z M 2.984375 -5.015625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 4.5 -4.90625 L 3.640625 -4.90625 L 3.640625 -1.40625 C 3.34375 -0.90625 2.9375 -0.5625 2.40625 -0.5625 C 1.875 -0.5625 1.65625 -0.8125 1.65625 -1.484375 L 1.65625 -4.90625 L 0.796875 -4.90625 L 0.796875 -1.390625 C 0.796875 -0.421875 1.3125 0.109375 2.171875 0.109375 C 2.875 0.109375 3.328125 -0.171875 3.703125 -0.765625 L 3.765625 0 L 4.5 0 Z M 4.5 -4.90625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 1.28125 -7.265625 C 0.921875 -7.265625 0.6875 -7.015625 0.6875 -6.671875 C 0.6875 -6.34375 0.921875 -6.09375 1.28125 -6.09375 C 1.640625 -6.09375 1.875 -6.34375 1.875 -6.671875 C 1.875 -7.015625 1.640625 -7.265625 1.28125 -7.265625 Z M 1.71875 -4.90625 L 0.859375 -4.90625 L 0.859375 0 L 1.71875 0 Z M 1.71875 -4.90625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.546875 -6.296875 C 2.796875 -6.296875 3.09375 -6.25 3.40625 -6.109375 L 3.671875 -6.734375 C 3.28125 -6.90625 2.96875 -6.984375 2.5 -6.984375 C 1.515625 -6.984375 0.96875 -6.390625 0.96875 -5.578125 L 0.96875 -4.90625 L 0.09375 -4.90625 L 0.09375 -4.25 L 0.96875 -4.25 L 0.96875 0 L 1.828125 0 L 1.828125 -4.25 L 2.921875 -4.25 L 3.015625 -4.90625 L 1.828125 -4.90625 L 1.828125 -5.59375 C 1.828125 -6.0625 2.015625 -6.296875 2.546875 -6.296875 Z M 2.546875 -6.296875 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 0.9375 0 L 1.8125 0 L 1.8125 -2.828125 L 3.90625 -2.828125 L 3.90625 -3.515625 L 1.8125 -3.515625 L 1.8125 -5.703125 L 4.234375 -5.703125 L 4.34375 -6.421875 L 0.9375 -6.421875 Z M 0.9375 0 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 4.140625 -1.140625 L 4.140625 -3.390625 C 4.140625 -4.421875 3.609375 -5.015625 2.421875 -5.015625 C 1.875 -5.015625 1.328125 -4.90625 0.71875 -4.6875 L 0.9375 -4.0625 C 1.4375 -4.234375 1.90625 -4.328125 2.265625 -4.328125 C 2.9375 -4.328125 3.28125 -4.0625 3.28125 -3.359375 L 3.28125 -2.984375 L 2.53125 -2.984375 C 1.15625 -2.984375 0.375 -2.421875 0.375 -1.375 C 0.375 -0.5 0.953125 0.109375 1.9375 0.109375 C 2.53125 0.109375 3.046875 -0.109375 3.40625 -0.625 C 3.546875 -0.140625 3.859375 0.0625 4.359375 0.109375 L 4.546875 -0.484375 C 4.296875 -0.578125 4.140625 -0.71875 4.140625 -1.140625 Z M 2.125 -0.53125 C 1.578125 -0.53125 1.28125 -0.84375 1.28125 -1.421875 C 1.28125 -2.09375 1.734375 -2.421875 2.640625 -2.421875 L 3.28125 -2.421875 L 3.28125 -1.296875 C 3.015625 -0.78125 2.640625 -0.53125 2.125 -0.53125 Z M 2.125 -0.53125 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 3.171875 -5.015625 C 2.546875 -5.015625 2.0625 -4.71875 1.71875 -4.234375 L 1.71875 -6.96875 L 0.859375 -6.875 L 0.859375 0 L 1.71875 0 L 1.71875 -3.484375 C 2.046875 -4 2.421875 -4.34375 2.953125 -4.34375 C 3.421875 -4.34375 3.734375 -4.140625 3.734375 -3.40625 L 3.734375 0 L 4.59375 0 L 4.59375 -3.515625 C 4.59375 -4.4375 4.0625 -5.015625 3.171875 -5.015625 Z M 3.171875 -5.015625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 4.484375 -4.90625 L 3.609375 -4.90625 L 2.3125 -0.625 L 1 -4.90625 L 0.09375 -4.90625 L 1.734375 0 L 2.03125 0 C 1.75 0.765625 1.46875 1.140625 0.46875 1.3125 L 0.5625 1.984375 C 1.921875 1.828125 2.5 1.078125 2.84375 0.03125 Z M 4.484375 -4.90625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 4.71875 -6.421875 L 0.140625 -6.421875 L 0.140625 -5.65625 L 1.96875 -5.65625 L 1.96875 0 L 2.84375 0 L 2.84375 -5.65625 L 4.625 -5.65625 Z M 4.71875 -6.421875 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 3.09375 -5.015625 C 2.5 -5.015625 2.046875 -4.75 1.71875 -4.296875 L 1.71875 -6.984375 L 0.859375 -6.875 L 0.859375 0 L 1.609375 0 L 1.6875 -0.546875 C 2.03125 -0.125 2.453125 0.109375 3 0.109375 C 4.1875 0.109375 4.921875 -0.921875 4.921875 -2.453125 C 4.921875 -4.09375 4.203125 -5.015625 3.09375 -5.015625 Z M 2.796875 -0.5625 C 2.359375 -0.5625 1.96875 -0.84375 1.71875 -1.234375 L 1.71875 -3.578125 C 1.96875 -3.96875 2.3125 -4.34375 2.859375 -4.34375 C 3.546875 -4.34375 4 -3.859375 4 -2.453125 C 4 -1.125 3.515625 -0.5625 2.796875 -0.5625 Z M 2.796875 -0.5625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 3.8125 -6.390625 L 1.953125 -7.453125 L 1.578125 -6.734375 L 3.546875 -5.9375 Z M 4.59375 -2.59375 C 4.59375 -4.09375 3.890625 -5.015625 2.5625 -5.015625 C 1.296875 -5.015625 0.53125 -3.9375 0.53125 -2.40625 C 0.53125 -0.84375 1.328125 0.109375 2.703125 0.109375 C 3.375 0.109375 3.9375 -0.125 4.421875 -0.5 L 4.046875 -1.015625 C 3.609375 -0.71875 3.25 -0.59375 2.765625 -0.59375 C 2.0625 -0.59375 1.53125 -1.03125 1.4375 -2.15625 L 4.578125 -2.15625 C 4.578125 -2.265625 4.59375 -2.4375 4.59375 -2.59375 Z M 3.75 -2.796875 L 1.4375 -2.796875 C 1.515625 -3.890625 1.9375 -4.34375 2.59375 -4.34375 C 3.359375 -4.34375 3.75 -3.8125 3.75 -2.84375 Z M 3.75 -2.796875 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 2.765625 -2.625 L 4.28125 -4.90625 L 3.3125 -4.90625 L 2.265625 -3.109375 L 1.25 -4.90625 L 0.234375 -4.90625 L 1.765625 -2.59375 L 0.046875 0 L 1.015625 0 L 2.234375 -2.078125 L 3.4375 0 L 4.46875 0 Z M 2.765625 -2.625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 1.8125 -6.421875 L 0.9375 -6.421875 L 0.9375 0 L 1.8125 0 Z M 1.8125 -6.421875 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 4.34375 0 L 5.28125 0 L 3.234375 -6.421875 L 2.109375 -6.421875 L 0.0625 0 L 0.953125 0 L 1.4375 -1.609375 L 3.859375 -1.609375 Z M 1.640625 -2.328125 L 2.65625 -5.6875 L 3.65625 -2.328125 Z M 1.640625 -2.328125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 1.8125 -6.421875 L 0.9375 -6.421875 L 0.9375 0 L 4.34375 0 L 4.453125 -0.765625 L 1.8125 -0.765625 Z M 1.8125 -6.421875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 4.59375 -5.453125 C 4.015625 -5.203125 3.5625 -4.984375 2.34375 -5.015625 C 1.265625 -5.015625 0.453125 -4.3125 0.453125 -3.3125 C 0.453125 -2.671875 0.71875 -2.25 1.28125 -1.953125 C 0.9375 -1.71875 0.75 -1.390625 0.75 -1.078125 C 0.75 -0.59375 1.140625 -0.15625 2.015625 -0.15625 L 2.78125 -0.15625 C 3.40625 -0.15625 3.765625 0.078125 3.765625 0.546875 C 3.765625 1.046875 3.40625 1.3125 2.34375 1.3125 C 1.25 1.3125 1 1.046875 1 0.5 L 0.234375 0.5 C 0.234375 1.484375 0.734375 1.984375 2.34375 1.984375 C 3.859375 1.984375 4.640625 1.4375 4.640625 0.5 C 4.640625 -0.28125 3.96875 -0.859375 2.96875 -0.859375 L 2.171875 -0.859375 C 1.671875 -0.859375 1.53125 -1.046875 1.53125 -1.265625 C 1.53125 -1.4375 1.640625 -1.625 1.78125 -1.71875 C 1.984375 -1.65625 2.171875 -1.625 2.40625 -1.625 C 3.578125 -1.625 4.28125 -2.328125 4.28125 -3.296875 C 4.28125 -3.859375 3.984375 -4.28125 3.40625 -4.53125 C 3.96875 -4.53125 4.4375 -4.546875 4.84375 -4.6875 Z M 2.34375 -4.40625 C 3.046875 -4.40625 3.40625 -4.03125 3.40625 -3.3125 C 3.40625 -2.609375 3.03125 -2.203125 2.359375 -2.203125 C 1.6875 -2.203125 1.328125 -2.65625 1.328125 -3.3125 C 1.328125 -3.953125 1.6875 -4.40625 2.34375 -4.40625 Z M 2.34375 -4.40625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 1.296875 -7.265625 C 0.9375 -7.265625 0.703125 -7.015625 0.703125 -6.671875 C 0.703125 -6.34375 0.9375 -6.09375 1.296875 -6.09375 C 1.65625 -6.09375 1.90625 -6.34375 1.90625 -6.671875 C 1.90625 -7.015625 1.65625 -7.265625 1.296875 -7.265625 Z M 1.71875 -4.90625 L 0.859375 -4.90625 L 0.859375 -0.234375 C 0.859375 0.8125 0.5625 1.046875 -0.078125 1.34375 L 0.171875 1.96875 C 1.203125 1.515625 1.71875 1.09375 1.71875 -0.296875 Z M 1.71875 -4.90625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 0.5625 -2.546875 L 3.1875 -2.546875 L 3.1875 -3.28125 L 0.5625 -3.28125 Z M 0.5625 -2.546875 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-0-30"> | |
| 96 | +<path d="M 3.78125 -6.984375 L 3.78125 -4.421875 C 3.453125 -4.765625 3.03125 -5.015625 2.453125 -5.015625 C 1.25 -5.015625 0.53125 -3.9375 0.53125 -2.4375 C 0.53125 -0.90625 1.1875 0.109375 2.390625 0.109375 C 2.984375 0.109375 3.484375 -0.1875 3.796875 -0.6875 L 3.890625 0 L 4.640625 0 L 4.640625 -6.875 Z M 2.5625 -0.5625 C 1.859375 -0.5625 1.453125 -1.15625 1.453125 -2.453125 C 1.453125 -3.71875 1.90625 -4.34375 2.640625 -4.34375 C 3.125 -4.34375 3.46875 -4.09375 3.78125 -3.703125 L 3.78125 -1.296875 C 3.453125 -0.84375 3.125 -0.5625 2.5625 -0.5625 Z M 2.5625 -0.5625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-0-31"> | |
| 99 | +<path d="M 3.90625 -4.90625 L 3.84375 -4.359375 C 3.5 -4.734375 3.0625 -5.015625 2.453125 -5.015625 C 1.25 -5.015625 0.53125 -3.9375 0.53125 -2.4375 C 0.53125 -0.90625 1.1875 0.109375 2.390625 0.109375 C 2.984375 0.109375 3.46875 -0.171875 3.78125 -0.65625 L 3.78125 1.875 L 4.640625 1.984375 L 4.640625 -4.90625 Z M 2.5625 -0.5625 C 1.859375 -0.5625 1.453125 -1.15625 1.453125 -2.453125 C 1.453125 -3.71875 1.90625 -4.34375 2.640625 -4.34375 C 3.125 -4.34375 3.46875 -4.09375 3.78125 -3.703125 L 3.78125 -1.296875 C 3.453125 -0.84375 3.125 -0.5625 2.5625 -0.5625 Z M 2.5625 -0.5625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-0"> | |
| 102 | +<path d="M 3.359375 -8.90625 L 1.296875 -7.734375 L 1.671875 -7 L 3.90625 -7.796875 Z M 4.5625 -6.453125 L 0.609375 -6.453125 L 0.609375 0 L 4.5625 0 L 4.5625 -1.09375 L 2.125 -1.09375 L 2.125 -2.75 L 4.109375 -2.75 L 4.109375 -3.8125 L 2.125 -3.8125 L 2.125 -5.359375 L 4.40625 -5.359375 Z M 4.5625 -6.453125 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-1"> | |
| 105 | +<path d="M 4.828125 -4.9375 L 3.328125 -4.9375 L 2.421875 -1.125 L 1.546875 -4.9375 L -0.0625 -4.9375 L 1.53125 0 L 3.28125 0 Z M 4.828125 -4.9375 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-2"> | |
| 108 | +<path d="M 4.484375 -1.4375 L 4.484375 -3.359375 C 4.484375 -4.5 3.875 -5.109375 2.4375 -5.109375 C 1.875 -5.109375 1.203125 -4.96875 0.578125 -4.734375 L 0.90625 -3.765625 C 1.40625 -3.9375 1.890625 -4.03125 2.203125 -4.03125 C 2.8125 -4.03125 3.046875 -3.859375 3.046875 -3.265625 L 3.046875 -3.046875 L 2.546875 -3.046875 C 1.046875 -3.046875 0.21875 -2.46875 0.21875 -1.390625 C 0.21875 -0.484375 0.84375 0.15625 1.828125 0.15625 C 2.421875 0.15625 2.96875 -0.03125 3.328125 -0.578125 C 3.5625 -0.09375 3.9375 0.078125 4.515625 0.125 L 4.828125 -0.828125 C 4.59375 -0.90625 4.484375 -1.046875 4.484375 -1.4375 Z M 2.265625 -0.890625 C 1.90625 -0.890625 1.6875 -1.125 1.6875 -1.515625 C 1.6875 -2.015625 2.015625 -2.25 2.6875 -2.25 L 3.046875 -2.25 L 3.046875 -1.359375 C 2.875 -1.078125 2.59375 -0.890625 2.265625 -0.890625 Z M 2.265625 -0.890625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-3"> | |
| 111 | +<path d="M 1.859375 0.15625 C 2.21875 0.15625 2.546875 0.078125 2.75 -0.015625 L 2.484375 -1.046875 C 2.40625 -1.03125 2.328125 -1 2.234375 -1 C 2.0625 -1 1.96875 -1.109375 1.96875 -1.3125 L 1.96875 -7.0625 L 0.5 -6.90625 L 0.5 -1.25 C 0.5 -0.359375 1 0.15625 1.859375 0.15625 Z M 1.859375 0.15625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-4"> | |
| 114 | +<path d="M 4.71875 -4.9375 L 3.25 -4.9375 L 3.25 -1.515625 C 3.03125 -1.140625 2.75 -0.9375 2.453125 -0.9375 C 2.140625 -0.9375 1.96875 -1.078125 1.96875 -1.578125 L 1.96875 -4.9375 L 0.5 -4.9375 L 0.5 -1.390625 C 0.5 -0.4375 0.953125 0.15625 1.875 0.15625 C 2.546875 0.15625 3.03125 -0.109375 3.375 -0.625 L 3.453125 0 L 4.71875 0 Z M 4.71875 -4.9375 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-5"> | |
| 117 | +<path d="M 3.1875 -1.15625 C 2.984375 -1.046875 2.828125 -1 2.65625 -1 C 2.34375 -1 2.1875 -1.171875 2.1875 -1.640625 L 2.1875 -3.921875 L 3.171875 -3.921875 L 3.328125 -4.9375 L 2.1875 -4.9375 L 2.1875 -6.1875 L 0.71875 -6.015625 L 0.71875 -4.9375 L 0.015625 -4.9375 L 0.015625 -3.921875 L 0.71875 -3.921875 L 0.71875 -1.625 C 0.71875 -0.46875 1.25 0.15625 2.34375 0.15625 C 2.78125 0.15625 3.3125 0.03125 3.671875 -0.234375 Z M 3.1875 -1.15625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-6"> | |
| 120 | +<path d="M 1.296875 -7.546875 C 0.796875 -7.546875 0.421875 -7.1875 0.421875 -6.71875 C 0.421875 -6.234375 0.796875 -5.875 1.296875 -5.875 C 1.8125 -5.875 2.171875 -6.234375 2.171875 -6.71875 C 2.171875 -7.1875 1.8125 -7.546875 1.296875 -7.546875 Z M 2.046875 -4.9375 L 0.5625 -4.9375 L 0.5625 0 L 2.046875 0 Z M 2.046875 -4.9375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-7"> | |
| 123 | +<path d="M 2.71875 -5.109375 C 1.203125 -5.109375 0.296875 -4.0625 0.296875 -2.484375 C 0.296875 -0.8125 1.21875 0.15625 2.71875 0.15625 C 4.234375 0.15625 5.140625 -0.890625 5.140625 -2.46875 C 5.140625 -4.140625 4.234375 -5.109375 2.71875 -5.109375 Z M 2.71875 -4.015625 C 3.3125 -4.015625 3.609375 -3.5625 3.609375 -2.46875 C 3.609375 -1.390625 3.3125 -0.921875 2.71875 -0.921875 C 2.125 -0.921875 1.828125 -1.375 1.828125 -2.484375 C 1.828125 -3.546875 2.125 -4.015625 2.71875 -4.015625 Z M 2.71875 -4.015625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-8"> | |
| 126 | +<path d="M 3.46875 -5.109375 C 2.84375 -5.109375 2.359375 -4.84375 1.953125 -4.34375 L 1.84375 -4.9375 L 0.5625 -4.9375 L 0.5625 0 L 2.046875 0 L 2.046875 -3.375 C 2.296875 -3.796875 2.5625 -4.015625 2.890625 -4.015625 C 3.1875 -4.015625 3.359375 -3.890625 3.359375 -3.359375 L 3.359375 0 L 4.828125 0 L 4.828125 -3.609375 C 4.828125 -4.546875 4.328125 -5.109375 3.46875 -5.109375 Z M 3.46875 -5.109375 "/> | |
| 127 | +</g> | |
| 128 | +</g> | |
| 129 | +<clipPath id="clip-0"> | |
| 130 | +<path clip-rule="nonzero" d="M 0.742188 3 L 90 3 L 90 44 L 0.742188 44 Z M 0.742188 3 "/> | |
| 131 | +</clipPath> | |
| 132 | +<clipPath id="clip-1"> | |
| 133 | +<path clip-rule="nonzero" d="M 294 3 L 383.636719 3 L 383.636719 44 L 294 44 Z M 294 3 "/> | |
| 134 | +</clipPath> | |
| 135 | +<clipPath id="clip-2"> | |
| 136 | +<path clip-rule="nonzero" d="M 0.742188 48 L 90 48 L 90 88.929688 L 0.742188 88.929688 Z M 0.742188 48 "/> | |
| 137 | +</clipPath> | |
| 138 | +<clipPath id="clip-3"> | |
| 139 | +<path clip-rule="nonzero" d="M 98 48 L 188 48 L 188 88.929688 L 98 88.929688 Z M 98 48 "/> | |
| 140 | +</clipPath> | |
| 141 | +<clipPath id="clip-4"> | |
| 142 | +<path clip-rule="nonzero" d="M 196 48 L 286 48 L 286 88.929688 L 196 88.929688 Z M 196 48 "/> | |
| 143 | +</clipPath> | |
| 144 | +<clipPath id="clip-5"> | |
| 145 | +<path clip-rule="nonzero" d="M 294 48 L 383.636719 48 L 383.636719 88.929688 L 294 88.929688 Z M 294 48 "/> | |
| 146 | +</clipPath> | |
| 147 | +</defs> | |
| 148 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 79.992188 8.714844 L 9.855469 8.714844 C 7.667969 8.714844 5.894531 10.488281 5.894531 12.675781 L 5.894531 34.339844 C 5.894531 36.527344 7.667969 38.300781 9.855469 38.300781 L 79.992188 38.300781 C 82.179688 38.300781 83.953125 36.527344 83.953125 34.339844 L 83.953125 12.675781 C 83.953125 10.488281 82.179688 8.714844 79.992188 8.714844 Z M 79.992188 8.714844 "/> | |
| 149 | +<g clip-path="url(#clip-0)"> | |
| 150 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35.279563 14.881944 L -35.277361 14.881944 C -37.477967 14.881944 -39.262029 13.097881 -39.262029 10.897275 L -39.262029 -10.896582 C -39.262029 -13.097188 -37.477967 -14.88125 -35.277361 -14.88125 L 35.279563 -14.88125 C 37.480169 -14.88125 39.264232 -13.097188 39.264232 -10.896582 L 39.264232 10.897275 C 39.264232 13.097881 37.480169 14.881944 35.279563 14.881944 Z M 35.279563 14.881944 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 151 | +</g> | |
| 152 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 153 | +<use xlink:href="#glyph-0-0" x="11.697792" y="21.175135"/> | |
| 154 | +<use xlink:href="#glyph-0-1" x="17.69287" y="21.175135"/> | |
| 155 | +</g> | |
| 156 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 157 | +<use xlink:href="#glyph-0-2" x="22.710489" y="21.175135"/> | |
| 158 | +</g> | |
| 159 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 160 | +<use xlink:href="#glyph-0-3" x="27.253343" y="21.175135"/> | |
| 161 | +<use xlink:href="#glyph-0-4" x="32.317508" y="21.175135"/> | |
| 162 | +</g> | |
| 163 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 164 | +<use xlink:href="#glyph-0-5" x="35.007846" y="21.175135"/> | |
| 165 | +<use xlink:href="#glyph-0-6" x="40.444376" y="21.175135"/> | |
| 166 | +<use xlink:href="#glyph-0-6" x="45.899524" y="21.175135"/> | |
| 167 | +<use xlink:href="#glyph-0-3" x="51.354672" y="21.175135"/> | |
| 168 | +<use xlink:href="#glyph-0-7" x="56.418837" y="21.175135"/> | |
| 169 | +<use xlink:href="#glyph-0-3" x="64.331595" y="21.175135"/> | |
| 170 | +<use xlink:href="#glyph-0-8" x="69.39576" y="21.175135"/> | |
| 171 | +<use xlink:href="#glyph-0-9" x="74.785744" y="21.175135"/> | |
| 172 | +</g> | |
| 173 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 174 | +<use xlink:href="#glyph-0-3" x="12.673944" y="33.058936"/> | |
| 175 | +<use xlink:href="#glyph-0-9" x="17.738109" y="33.058936"/> | |
| 176 | +</g> | |
| 177 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 178 | +<use xlink:href="#glyph-0-10" x="24.198643" y="33.058936"/> | |
| 179 | +</g> | |
| 180 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 181 | +<use xlink:href="#glyph-0-5" x="28.508768" y="33.058936"/> | |
| 182 | +<use xlink:href="#glyph-0-8" x="33.945298" y="33.058936"/> | |
| 183 | +<use xlink:href="#glyph-0-11" x="39.335283" y="33.058936"/> | |
| 184 | +<use xlink:href="#glyph-0-9" x="43.682645" y="33.058936"/> | |
| 185 | +<use xlink:href="#glyph-0-12" x="47.04324" y="33.058936"/> | |
| 186 | +<use xlink:href="#glyph-0-13" x="50.608635" y="33.058936"/> | |
| 187 | +<use xlink:href="#glyph-0-10" x="55.961383" y="33.058936"/> | |
| 188 | +<use xlink:href="#glyph-0-9" x="60.411146" y="33.058936"/> | |
| 189 | +<use xlink:href="#glyph-0-14" x="63.771741" y="33.058936"/> | |
| 190 | +<use xlink:href="#glyph-0-5" x="66.34106" y="33.058936"/> | |
| 191 | +<use xlink:href="#glyph-0-8" x="71.77759" y="33.058936"/> | |
| 192 | +</g> | |
| 193 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 134.047469 14.881944 L 63.490544 14.881944 C 61.289938 14.881944 59.505876 13.097881 59.505876 10.897275 L 59.505876 -10.896582 C 59.505876 -13.097188 61.289938 -14.88125 63.490544 -14.88125 L 134.047469 -14.88125 C 136.248074 -14.88125 138.032137 -13.097188 138.032137 -10.896582 L 138.032137 10.897275 C 138.032137 13.097881 136.248074 14.881944 134.047469 14.881944 Z M 134.047469 14.881944 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 194 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 195 | +<use xlink:href="#glyph-1-0" x="120.866735" y="21.022052"/> | |
| 196 | +</g> | |
| 197 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 198 | +<use xlink:href="#glyph-1-1" x="125.577153" y="21.022052"/> | |
| 199 | +</g> | |
| 200 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 201 | +<use xlink:href="#glyph-1-2" x="130.19448" y="21.022052"/> | |
| 202 | +</g> | |
| 203 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 204 | +<use xlink:href="#glyph-1-3" x="135.20279" y="21.022052"/> | |
| 205 | +<use xlink:href="#glyph-1-4" x="137.995528" y="21.022052"/> | |
| 206 | +<use xlink:href="#glyph-1-2" x="143.283112" y="21.022052"/> | |
| 207 | +<use xlink:href="#glyph-1-5" x="148.365896" y="21.022052"/> | |
| 208 | +<use xlink:href="#glyph-1-6" x="151.959219" y="21.022052"/> | |
| 209 | +<use xlink:href="#glyph-1-7" x="154.565774" y="21.022052"/> | |
| 210 | +<use xlink:href="#glyph-1-8" x="160.002304" y="21.022052"/> | |
| 211 | +</g> | |
| 212 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 213 | +<use xlink:href="#glyph-0-6" x="110.449149" y="32.905853"/> | |
| 214 | +<use xlink:href="#glyph-0-12" x="115.904298" y="32.905853"/> | |
| 215 | +</g> | |
| 216 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 217 | +<use xlink:href="#glyph-0-5" x="119.283511" y="32.905853"/> | |
| 218 | +<use xlink:href="#glyph-0-15" x="124.720041" y="32.905853"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-0-3" x="127.745507" y="32.905853"/> | |
| 222 | +<use xlink:href="#glyph-0-11" x="132.809672" y="32.905853"/> | |
| 223 | +</g> | |
| 224 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 225 | +<use xlink:href="#glyph-0-11" x="137.063943" y="32.905853"/> | |
| 226 | +<use xlink:href="#glyph-0-14" x="141.411305" y="32.905853"/> | |
| 227 | +<use xlink:href="#glyph-0-5" x="143.980624" y="32.905853"/> | |
| 228 | +<use xlink:href="#glyph-0-8" x="149.417154" y="32.905853"/> | |
| 229 | +<use xlink:href="#glyph-0-8" x="154.807139" y="32.905853"/> | |
| 230 | +<use xlink:href="#glyph-0-3" x="160.197123" y="32.905853"/> | |
| 231 | +<use xlink:href="#glyph-0-4" x="165.261288" y="32.905853"/> | |
| 232 | +<use xlink:href="#glyph-0-4" x="167.998171" y="32.905853"/> | |
| 233 | +</g> | |
| 234 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 235 | +<use xlink:href="#glyph-0-3" x="170.688509" y="32.905853"/> | |
| 236 | +</g> | |
| 237 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.815374 14.881944 L 162.258449 14.881944 C 160.057844 14.881944 158.273781 13.097881 158.273781 10.897275 L 158.273781 -10.896582 C 158.273781 -13.097188 160.057844 -14.88125 162.258449 -14.88125 L 232.815374 -14.88125 C 235.01598 -14.88125 236.800042 -13.097188 236.800042 -10.896582 L 236.800042 10.897275 C 236.800042 13.097881 235.01598 14.881944 232.815374 14.881944 Z M 232.815374 14.881944 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 238 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 239 | +<use xlink:href="#glyph-0-16" x="214.423216" y="20.237751"/> | |
| 240 | +</g> | |
| 241 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 242 | +<use xlink:href="#glyph-0-14" x="218.668178" y="20.237751"/> | |
| 243 | +<use xlink:href="#glyph-0-8" x="221.237497" y="20.237751"/> | |
| 244 | +<use xlink:href="#glyph-0-17" x="226.627481" y="20.237751"/> | |
| 245 | +<use xlink:href="#glyph-0-8" x="231.645101" y="20.237751"/> | |
| 246 | +<use xlink:href="#glyph-0-10" x="237.035085" y="20.237751"/> | |
| 247 | +</g> | |
| 248 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 249 | +<use xlink:href="#glyph-0-3" x="241.345211" y="20.237751"/> | |
| 250 | +<use xlink:href="#glyph-0-7" x="246.409376" y="20.237751"/> | |
| 251 | +<use xlink:href="#glyph-0-3" x="254.322134" y="20.237751"/> | |
| 252 | +<use xlink:href="#glyph-0-8" x="259.386299" y="20.237751"/> | |
| 253 | +<use xlink:href="#glyph-0-9" x="264.776283" y="20.237751"/> | |
| 254 | +</g> | |
| 255 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 256 | +<use xlink:href="#glyph-0-18" x="213.757206" y="32.121552"/> | |
| 257 | +</g> | |
| 258 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 259 | +<use xlink:href="#glyph-0-19" x="219.082027" y="32.121552"/> | |
| 260 | +<use xlink:href="#glyph-0-6" x="223.662117" y="32.121552"/> | |
| 261 | +<use xlink:href="#glyph-0-5" x="229.117265" y="32.121552"/> | |
| 262 | +<use xlink:href="#glyph-0-9" x="234.553796" y="32.121552"/> | |
| 263 | +<use xlink:href="#glyph-0-18" x="237.91439" y="32.121552"/> | |
| 264 | +<use xlink:href="#glyph-0-1" x="243.304375" y="32.121552"/> | |
| 265 | +<use xlink:href="#glyph-0-10" x="248.36854" y="32.121552"/> | |
| 266 | +</g> | |
| 267 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 268 | +<use xlink:href="#glyph-0-17" x="252.771757" y="32.121552"/> | |
| 269 | +<use xlink:href="#glyph-0-14" x="257.789376" y="32.121552"/> | |
| 270 | +<use xlink:href="#glyph-0-12" x="260.358695" y="32.121552"/> | |
| 271 | +</g> | |
| 272 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 273 | +<use xlink:href="#glyph-0-3" x="263.737908" y="32.121552"/> | |
| 274 | +</g> | |
| 275 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 374.53125 8.714844 L 304.394531 8.714844 C 302.207031 8.714844 300.433594 10.488281 300.433594 12.675781 L 300.433594 34.339844 C 300.433594 36.527344 302.207031 38.300781 304.394531 38.300781 L 374.53125 38.300781 C 376.71875 38.300781 378.492188 36.527344 378.492188 34.339844 L 378.492188 12.675781 C 378.492188 10.488281 376.71875 8.714844 374.53125 8.714844 Z M 374.53125 8.714844 "/> | |
| 276 | +<g clip-path="url(#clip-1)"> | |
| 277 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 331.583279 14.881944 L 261.026355 14.881944 C 258.825749 14.881944 257.041686 13.097881 257.041686 10.897275 L 257.041686 -10.896582 C 257.041686 -13.097188 258.825749 -14.88125 261.026355 -14.88125 L 331.583279 -14.88125 C 333.783885 -14.88125 335.567948 -13.097188 335.567948 -10.896582 L 335.567948 10.897275 C 335.567948 13.097881 333.783885 14.881944 331.583279 14.881944 Z M 331.583279 14.881944 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 278 | +</g> | |
| 279 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 280 | +<use xlink:href="#glyph-0-20" x="315.013555" y="21.175135"/> | |
| 281 | +</g> | |
| 282 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 283 | +<use xlink:href="#glyph-0-12" x="319.5471" y="21.175135"/> | |
| 284 | +</g> | |
| 285 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 286 | +<use xlink:href="#glyph-0-17" x="322.926313" y="21.175135"/> | |
| 287 | +<use xlink:href="#glyph-0-8" x="327.943933" y="21.175135"/> | |
| 288 | +<use xlink:href="#glyph-0-11" x="333.333917" y="21.175135"/> | |
| 289 | +<use xlink:href="#glyph-0-17" x="337.681279" y="21.175135"/> | |
| 290 | +<use xlink:href="#glyph-0-10" x="342.698899" y="21.175135"/> | |
| 291 | +<use xlink:href="#glyph-0-9" x="347.148661" y="21.175135"/> | |
| 292 | +<use xlink:href="#glyph-0-14" x="350.509256" y="21.175135"/> | |
| 293 | +<use xlink:href="#glyph-0-5" x="353.078575" y="21.175135"/> | |
| 294 | +<use xlink:href="#glyph-0-8" x="358.515105" y="21.175135"/> | |
| 295 | +</g> | |
| 296 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 297 | +<use xlink:href="#glyph-0-14" x="314.123886" y="33.058936"/> | |
| 298 | +<use xlink:href="#glyph-0-7" x="316.693205" y="33.058936"/> | |
| 299 | +<use xlink:href="#glyph-0-7" x="324.605962" y="33.058936"/> | |
| 300 | +<use xlink:href="#glyph-0-5" x="332.51872" y="33.058936"/> | |
| 301 | +<use xlink:href="#glyph-0-21" x="337.95525" y="33.058936"/> | |
| 302 | +<use xlink:href="#glyph-0-14" x="343.410399" y="33.058936"/> | |
| 303 | +<use xlink:href="#glyph-0-4" x="345.979718" y="33.058936"/> | |
| 304 | +<use xlink:href="#glyph-0-14" x="348.716601" y="33.058936"/> | |
| 305 | +<use xlink:href="#glyph-0-22" x="351.28592" y="33.058936"/> | |
| 306 | +<use xlink:href="#glyph-0-12" x="356.350085" y="33.058936"/> | |
| 307 | +</g> | |
| 308 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 309 | +<use xlink:href="#glyph-0-3" x="359.729298" y="33.058936"/> | |
| 310 | +</g> | |
| 311 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 79.992188 54.195312 L 9.855469 54.195312 C 7.667969 54.195312 5.894531 55.96875 5.894531 58.15625 L 5.894531 79.820312 C 5.894531 82.007812 7.667969 83.78125 9.855469 83.78125 L 79.992188 83.78125 C 82.179688 83.78125 83.953125 82.007812 83.953125 79.820312 L 83.953125 58.15625 C 83.953125 55.96875 82.179688 54.195312 79.992188 54.195312 Z M 79.992188 54.195312 "/> | |
| 312 | +<g clip-path="url(#clip-2)"> | |
| 313 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 35.279563 -30.871009 L -35.277361 -30.871009 C -37.477967 -30.871009 -39.262029 -32.655072 -39.262029 -34.855678 L -39.262029 -56.649535 C -39.262029 -58.850141 -37.477967 -60.634203 -35.277361 -60.634203 L 35.279563 -60.634203 C 37.480169 -60.634203 39.264232 -58.850141 39.264232 -56.649535 L 39.264232 -34.855678 C 39.264232 -32.655072 37.480169 -30.871009 35.279563 -30.871009 Z M 35.279563 -30.871009 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 314 | +</g> | |
| 315 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 316 | +<use xlink:href="#glyph-0-20" x="27.118403" y="66.65565"/> | |
| 317 | +</g> | |
| 318 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 319 | +<use xlink:href="#glyph-0-17" x="31.465766" y="66.65565"/> | |
| 320 | +<use xlink:href="#glyph-0-23" x="36.483385" y="66.65565"/> | |
| 321 | +</g> | |
| 322 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 323 | +<use xlink:href="#glyph-0-17" x="40.951766" y="66.65565"/> | |
| 324 | +<use xlink:href="#glyph-0-9" x="45.969385" y="66.65565"/> | |
| 325 | +<use xlink:href="#glyph-0-14" x="49.32998" y="66.65565"/> | |
| 326 | +<use xlink:href="#glyph-0-5" x="51.899299" y="66.65565"/> | |
| 327 | +<use xlink:href="#glyph-0-8" x="57.335829" y="66.65565"/> | |
| 328 | +</g> | |
| 329 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 330 | +<use xlink:href="#glyph-0-15" x="27.732723" y="78.539452"/> | |
| 331 | +</g> | |
| 332 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 333 | +<use xlink:href="#glyph-0-5" x="30.758189" y="78.539452"/> | |
| 334 | +<use xlink:href="#glyph-0-8" x="36.194719" y="78.539452"/> | |
| 335 | +<use xlink:href="#glyph-0-10" x="41.584704" y="78.539452"/> | |
| 336 | +<use xlink:href="#glyph-0-14" x="46.034466" y="78.539452"/> | |
| 337 | +<use xlink:href="#glyph-0-22" x="48.603785" y="78.539452"/> | |
| 338 | +<use xlink:href="#glyph-0-12" x="53.66795" y="78.539452"/> | |
| 339 | +</g> | |
| 340 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 341 | +<use xlink:href="#glyph-0-3" x="57.047163" y="78.539452"/> | |
| 342 | +</g> | |
| 343 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 178.171875 54.195312 L 108.035156 54.195312 C 105.847656 54.195312 104.074219 55.96875 104.074219 58.15625 L 104.074219 79.820312 C 104.074219 82.007812 105.847656 83.78125 108.035156 83.78125 L 178.171875 83.78125 C 180.359375 83.78125 182.132812 82.007812 182.132812 79.820312 L 182.132812 58.15625 C 182.132812 55.96875 180.359375 54.195312 178.171875 54.195312 Z M 178.171875 54.195312 "/> | |
| 344 | +<g clip-path="url(#clip-3)"> | |
| 345 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 134.047469 -30.871009 L 63.490544 -30.871009 C 61.289938 -30.871009 59.505876 -32.655072 59.505876 -34.855678 L 59.505876 -56.649535 C 59.505876 -58.850141 61.289938 -60.634203 63.490544 -60.634203 L 134.047469 -60.634203 C 136.248074 -60.634203 138.032137 -58.850141 138.032137 -56.649535 L 138.032137 -34.855678 C 138.032137 -32.655072 136.248074 -30.871009 134.047469 -30.871009 Z M 134.047469 -30.871009 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 346 | +</g> | |
| 347 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 348 | +<use xlink:href="#glyph-0-24" x="111.427289" y="66.65565"/> | |
| 349 | +<use xlink:href="#glyph-0-8" x="114.173481" y="66.65565"/> | |
| 350 | +</g> | |
| 351 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 352 | +<use xlink:href="#glyph-0-2" x="119.498302" y="66.65565"/> | |
| 353 | +</g> | |
| 354 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-0-3" x="124.041156" y="66.65565"/> | |
| 356 | +<use xlink:href="#glyph-0-11" x="129.105321" y="66.65565"/> | |
| 357 | +<use xlink:href="#glyph-0-9" x="133.452683" y="66.65565"/> | |
| 358 | +<use xlink:href="#glyph-0-14" x="136.813278" y="66.65565"/> | |
| 359 | +<use xlink:href="#glyph-0-11" x="139.382597" y="66.65565"/> | |
| 360 | +</g> | |
| 361 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 362 | +<use xlink:href="#glyph-0-11" x="143.636868" y="66.65565"/> | |
| 363 | +<use xlink:href="#glyph-0-3" x="147.98423" y="66.65565"/> | |
| 364 | +<use xlink:href="#glyph-0-7" x="153.048395" y="66.65565"/> | |
| 365 | +<use xlink:href="#glyph-0-3" x="160.961153" y="66.65565"/> | |
| 366 | +<use xlink:href="#glyph-0-8" x="166.025318" y="66.65565"/> | |
| 367 | +<use xlink:href="#glyph-0-9" x="171.415302" y="66.65565"/> | |
| 368 | +</g> | |
| 369 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 370 | +<use xlink:href="#glyph-0-14" x="120.205695" y="78.539452"/> | |
| 371 | +<use xlink:href="#glyph-0-7" x="122.775014" y="78.539452"/> | |
| 372 | +<use xlink:href="#glyph-0-7" x="130.687772" y="78.539452"/> | |
| 373 | +<use xlink:href="#glyph-0-5" x="138.60053" y="78.539452"/> | |
| 374 | +<use xlink:href="#glyph-0-21" x="144.03706" y="78.539452"/> | |
| 375 | +<use xlink:href="#glyph-0-14" x="149.492208" y="78.539452"/> | |
| 376 | +<use xlink:href="#glyph-0-4" x="152.061527" y="78.539452"/> | |
| 377 | +<use xlink:href="#glyph-0-14" x="154.798411" y="78.539452"/> | |
| 378 | +<use xlink:href="#glyph-0-3" x="157.36773" y="78.539452"/> | |
| 379 | +<use xlink:href="#glyph-0-12" x="162.431895" y="78.539452"/> | |
| 380 | +</g> | |
| 381 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 276.351562 54.195312 L 206.214844 54.195312 C 204.027344 54.195312 202.253906 55.96875 202.253906 58.15625 L 202.253906 79.820312 C 202.253906 82.007812 204.027344 83.78125 206.214844 83.78125 L 276.351562 83.78125 C 278.539062 83.78125 280.3125 82.007812 280.3125 79.820312 L 280.3125 58.15625 C 280.3125 55.96875 278.539062 54.195312 276.351562 54.195312 Z M 276.351562 54.195312 "/> | |
| 382 | +<g clip-path="url(#clip-4)"> | |
| 383 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.815374 -30.871009 L 162.258449 -30.871009 C 160.057844 -30.871009 158.273781 -32.655072 158.273781 -34.855678 L 158.273781 -56.649535 C 158.273781 -58.850141 160.057844 -60.634203 162.258449 -60.634203 L 232.815374 -60.634203 C 235.01598 -60.634203 236.800042 -58.850141 236.800042 -56.649535 L 236.800042 -34.855678 C 236.800042 -32.655072 235.01598 -30.871009 232.815374 -30.871009 Z M 232.815374 -30.871009 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 384 | +</g> | |
| 385 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 386 | +<use xlink:href="#glyph-0-25" x="220.055472" y="66.248092"/> | |
| 387 | +<use xlink:href="#glyph-0-11" x="225.389601" y="66.248092"/> | |
| 388 | +</g> | |
| 389 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 390 | +<use xlink:href="#glyph-0-11" x="229.643872" y="66.248092"/> | |
| 391 | +<use xlink:href="#glyph-0-13" x="233.991235" y="66.248092"/> | |
| 392 | +<use xlink:href="#glyph-0-12" x="239.343983" y="66.248092"/> | |
| 393 | +</g> | |
| 394 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 395 | +<use xlink:href="#glyph-0-17" x="242.723196" y="66.248092"/> | |
| 396 | +<use xlink:href="#glyph-0-8" x="247.740815" y="66.248092"/> | |
| 397 | +<use xlink:href="#glyph-0-10" x="253.130799" y="66.248092"/> | |
| 398 | +</g> | |
| 399 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 400 | +<use xlink:href="#glyph-0-3" x="257.440925" y="66.248092"/> | |
| 401 | +</g> | |
| 402 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 403 | +<use xlink:href="#glyph-0-14" x="215.945098" y="78.132887"/> | |
| 404 | +<use xlink:href="#glyph-0-7" x="218.514417" y="78.132887"/> | |
| 405 | +<use xlink:href="#glyph-0-7" x="226.427175" y="78.132887"/> | |
| 406 | +<use xlink:href="#glyph-0-5" x="234.339933" y="78.132887"/> | |
| 407 | +<use xlink:href="#glyph-0-21" x="239.776463" y="78.132887"/> | |
| 408 | +<use xlink:href="#glyph-0-14" x="245.231611" y="78.132887"/> | |
| 409 | +<use xlink:href="#glyph-0-4" x="247.80093" y="78.132887"/> | |
| 410 | +<use xlink:href="#glyph-0-14" x="250.537813" y="78.132887"/> | |
| 411 | +<use xlink:href="#glyph-0-22" x="253.107132" y="78.132887"/> | |
| 412 | +<use xlink:href="#glyph-0-12" x="258.171297" y="78.132887"/> | |
| 413 | +</g> | |
| 414 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 415 | +<use xlink:href="#glyph-0-3" x="261.55051" y="78.132887"/> | |
| 416 | +</g> | |
| 417 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 374.53125 54.195312 L 304.394531 54.195312 C 302.207031 54.195312 300.433594 55.96875 300.433594 58.15625 L 300.433594 79.820312 C 300.433594 82.007812 302.207031 83.78125 304.394531 83.78125 L 374.53125 83.78125 C 376.71875 83.78125 378.492188 82.007812 378.492188 79.820312 L 378.492188 58.15625 C 378.492188 55.96875 376.71875 54.195312 374.53125 54.195312 Z M 374.53125 54.195312 "/> | |
| 418 | +<g clip-path="url(#clip-5)"> | |
| 419 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 331.583279 -30.871009 L 261.026355 -30.871009 C 258.825749 -30.871009 257.041686 -32.655072 257.041686 -34.855678 L 257.041686 -56.649535 C 257.041686 -58.850141 258.825749 -60.634203 261.026355 -60.634203 L 331.583279 -60.634203 C 333.783885 -60.634203 335.567948 -58.850141 335.567948 -56.649535 L 335.567948 -34.855678 C 335.567948 -32.655072 333.783885 -30.871009 331.583279 -30.871009 Z M 331.583279 -30.871009 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 420 | +</g> | |
| 421 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 422 | +<use xlink:href="#glyph-0-26" x="318.372432" y="65.718266"/> | |
| 423 | +<use xlink:href="#glyph-0-14" x="323.008377" y="65.718266"/> | |
| 424 | +<use xlink:href="#glyph-0-9" x="325.577696" y="65.718266"/> | |
| 425 | +<use xlink:href="#glyph-0-14" x="328.938291" y="65.718266"/> | |
| 426 | +<use xlink:href="#glyph-0-27" x="331.50761" y="65.718266"/> | |
| 427 | +<use xlink:href="#glyph-0-3" x="336.348356" y="65.718266"/> | |
| 428 | +<use xlink:href="#glyph-0-11" x="341.412521" y="65.718266"/> | |
| 429 | +</g> | |
| 430 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 431 | +<use xlink:href="#glyph-0-28" x="348.859822" y="65.718266"/> | |
| 432 | +<use xlink:href="#glyph-0-13" x="351.43845" y="65.718266"/> | |
| 433 | +<use xlink:href="#glyph-0-29" x="356.791198" y="65.718266"/> | |
| 434 | +</g> | |
| 435 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 436 | +<use xlink:href="#glyph-0-12" x="322.232306" y="77.602068"/> | |
| 437 | +<use xlink:href="#glyph-0-14" x="325.797702" y="77.602068"/> | |
| 438 | +<use xlink:href="#glyph-0-30" x="328.367021" y="77.602068"/> | |
| 439 | +<use xlink:href="#glyph-0-14" x="333.859406" y="77.602068"/> | |
| 440 | +<use xlink:href="#glyph-0-31" x="336.428725" y="77.602068"/> | |
| 441 | +<use xlink:href="#glyph-0-13" x="341.921109" y="77.602068"/> | |
| 442 | +<use xlink:href="#glyph-0-3" x="347.273857" y="77.602068"/> | |
| 443 | +<use xlink:href="#glyph-0-11" x="352.338022" y="77.602068"/> | |
| 444 | +</g> | |
| 445 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 39.464644 0.000346631 L 58.507744 0.000346631 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 446 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548756 3.112632 C -2.085057 1.246047 -1.047629 0.361875 0.00158849 0.000346631 C -1.047629 -0.361181 -2.085057 -1.245353 -2.548756 -3.111939 " transform="matrix(0.994044, 0, 0, -0.994044, 103.47889, 23.508157)"/> | |
| 447 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 138.232549 0.000346631 L 157.275649 0.000346631 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 448 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549181 3.112632 C -2.085482 1.246047 -1.048054 0.361875 0.00116374 0.000346631 C -1.048054 -0.361181 -2.085482 -1.245353 -2.549181 -3.111939 " transform="matrix(0.994044, 0, 0, -0.994044, 201.658999, 23.508157)"/> | |
| 449 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 237.000455 0.000346631 L 256.043554 0.000346631 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 450 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549586 3.112632 C -2.085887 1.246047 -1.044529 0.361875 0.000758985 0.000346631 C -1.044529 -0.361181 -2.085887 -1.245353 -2.549586 -3.111939 " transform="matrix(0.994044, 0, 0, -0.994044, 299.839089, 23.508157)"/> | |
| 451 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 66.221653 -15.081663 L 33.27937 -30.336577 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 452 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549954 3.108938 C -2.084366 1.243305 -1.045243 0.363665 -0.000517725 0.00112328 C -1.048094 -0.362584 -2.083705 -1.242863 -2.549952 -3.110048 " transform="matrix(-0.901976, 0.417697, 0.417697, 0.901976, 77.643595, 53.831234)"/> | |
| 453 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 98.767042 -15.081663 L 98.767042 -29.876807 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 454 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550323 3.111017 C -2.082694 1.244432 -1.045266 0.364189 0.0000221484 -0.00126841 C -1.045266 -0.362797 -2.082694 -1.243039 -2.550323 -3.109624 " transform="matrix(0, 0.994044, 0.994044, 0, 143.102823, 53.60154)"/> | |
| 455 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 131.31243 -15.081663 L 164.258643 -30.336577 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 456 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548688 3.110633 C -2.082441 1.243448 -1.04683 0.363169 0.000746226 -0.000537952 C -1.043979 -0.36308 -2.083102 -1.24272 -2.552256 -3.110004 " transform="matrix(0.901976, 0.417697, 0.417697, -0.901976, 208.562052, 53.831234)"/> | |
| 457 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 138.232549 -9.143957 L 256.067132 -36.447187 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 458 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.55032 3.112615 C -2.085026 1.243802 -1.045944 0.363135 -0.00172653 0.000000851186 C -1.047063 -0.363232 -2.085161 -1.245164 -2.552127 -3.112158 " transform="matrix(0.968348, 0.224376, 0.224376, -0.968348, 299.849328, 59.828513)"/> | |
| 459 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 137.234417 18.068892 L 60.303595 18.068892 C 58.09906 18.068892 56.314997 16.28483 56.314997 14.084224 L 56.314997 -14.083531 C 56.314997 -16.284137 58.09906 -18.072129 60.303595 -18.072129 L 137.234417 -18.072129 C 139.435023 -18.072129 141.219086 -16.284137 141.219086 -14.083531 L 141.219086 14.084224 C 141.219086 16.28483 139.435023 18.068892 137.234417 18.068892 Z M 137.234417 18.068892 " transform="matrix(0.994044, 0, 0, -0.994044, 44.922734, 23.508157)"/> | |
| 460 | +</svg> | |
added
dist/assets/fig/05a4c459a287bfe6.svg
+405 −0
@@ -0,0 +1,405 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="348.257pt" height="179.022pt" viewBox="0 0 348.257 179.022"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 4.890625 -5.796875 L 3.484375 -5.796875 L 2.453125 -1.078125 L 1.34375 -5.796875 L -0.109375 -5.796875 L 1.5625 0 L 3.28125 0 Z M 4.890625 -5.796875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 4.03125 -1.296875 L 4.03125 -3.015625 C 4.03125 -4.046875 3.484375 -4.59375 2.1875 -4.59375 C 1.6875 -4.59375 1.078125 -4.46875 0.515625 -4.265625 L 0.828125 -3.390625 C 1.265625 -3.546875 1.703125 -3.625 1.984375 -3.625 C 2.53125 -3.625 2.734375 -3.46875 2.734375 -2.9375 L 2.734375 -2.75 L 2.28125 -2.75 C 0.953125 -2.75 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.171875 0.140625 2.671875 -0.03125 2.984375 -0.515625 C 3.203125 -0.078125 3.546875 0.078125 4.0625 0.125 L 4.34375 -0.75 C 4.125 -0.828125 4.03125 -0.953125 4.03125 -1.296875 Z M 2.03125 -0.796875 C 1.703125 -0.796875 1.53125 -1.015625 1.53125 -1.359375 C 1.53125 -1.8125 1.8125 -2.015625 2.40625 -2.015625 L 2.734375 -2.015625 L 2.734375 -1.21875 C 2.578125 -0.96875 2.34375 -0.796875 2.03125 -0.796875 Z M 2.03125 -0.796875 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.28125 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.84375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.359375 L 0.453125 -6.21875 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 4.390625 -2.3125 C 4.390625 -3.75 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.796875 -0.125 4.234375 -0.484375 L 3.6875 -1.21875 C 3.3125 -0.953125 2.984375 -0.828125 2.625 -0.828125 C 2.078125 -0.828125 1.703125 -1.03125 1.625 -1.828125 L 4.375 -1.828125 C 4.390625 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.6875 -3.4375 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.09375 -3.296875 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.25 -4.453125 L 2.921875 -4.453125 L 2.921875 -1.359375 C 2.734375 -1.015625 2.484375 -0.84375 2.203125 -0.84375 C 1.921875 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.453125 L 0.453125 -4.453125 L 0.453125 -1.25 C 0.453125 -0.390625 0.859375 0.140625 1.6875 0.140625 C 2.28125 0.140625 2.71875 -0.09375 3.046875 -0.5625 L 3.09375 0 L 4.25 0 Z M 4.25 -4.453125 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.921875 -4.578125 C 2.40625 -4.578125 1.96875 -4.203125 1.78125 -3.578125 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.828125 0 L 1.828125 -2.234375 C 1.984375 -2.890625 2.21875 -3.296875 2.75 -3.296875 C 2.890625 -3.296875 3.015625 -3.265625 3.15625 -3.234375 L 3.359375 -4.515625 C 3.21875 -4.5625 3.09375 -4.578125 2.921875 -4.578125 Z M 2.921875 -4.578125 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 1.171875 -6.796875 C 0.71875 -6.796875 0.390625 -6.46875 0.390625 -6.03125 C 0.390625 -5.609375 0.71875 -5.28125 1.171875 -5.28125 C 1.640625 -5.28125 1.953125 -5.609375 1.953125 -6.03125 C 1.953125 -6.46875 1.640625 -6.796875 1.171875 -6.796875 Z M 1.828125 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.828125 0 Z M 1.828125 -4.453125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 5.421875 -4.59375 C 4.859375 -4.59375 4.453125 -4.359375 4.09375 -3.890625 C 3.921875 -4.34375 3.546875 -4.59375 3.046875 -4.59375 C 2.5 -4.59375 2.09375 -4.359375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.828125 0 L 1.828125 -3.046875 C 2.03125 -3.40625 2.234375 -3.625 2.515625 -3.625 C 2.71875 -3.625 2.890625 -3.5 2.890625 -3.015625 L 2.890625 0 L 4.21875 0 L 4.21875 -3.046875 C 4.40625 -3.40625 4.609375 -3.625 4.890625 -3.625 C 5.09375 -3.625 5.265625 -3.5 5.265625 -3.015625 L 5.265625 0 L 6.578125 0 L 6.578125 -3.25 C 6.578125 -4.09375 6.109375 -4.59375 5.421875 -4.59375 Z M 5.421875 -4.59375 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.453125 -4.59375 C 1.09375 -4.59375 0.265625 -3.65625 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.796875 0.140625 4.625 -0.796875 4.625 -2.21875 C 4.625 -3.71875 3.796875 -4.59375 2.453125 -4.59375 Z M 2.453125 -3.625 C 2.984375 -3.625 3.25 -3.203125 3.25 -2.21875 C 3.25 -1.25 2.984375 -0.828125 2.453125 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.234375 C 1.640625 -3.1875 1.90625 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 3.03125 -4.59375 C 2.53125 -4.59375 2.109375 -4.359375 1.828125 -4 L 1.828125 -6.359375 L 0.515625 -6.21875 L 0.515625 0 L 1.6875 0 L 1.75 -0.421875 C 2.015625 -0.078125 2.421875 0.140625 2.921875 0.140625 C 4.015625 0.140625 4.6875 -0.84375 4.6875 -2.21875 C 4.6875 -3.703125 4.09375 -4.59375 3.03125 -4.59375 Z M 2.53125 -0.828125 C 2.25 -0.828125 2 -0.984375 1.828125 -1.25 L 1.828125 -3.09375 C 2.03125 -3.421875 2.28125 -3.625 2.59375 -3.625 C 3 -3.625 3.3125 -3.34375 3.3125 -2.21875 C 3.3125 -1.1875 2.984375 -0.828125 2.53125 -0.828125 Z M 2.53125 -0.828125 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 1.796875 -7 L 1.28125 -6 L 3.265625 -5.203125 L 3.625 -5.890625 Z M 4.390625 -2.3125 C 4.390625 -3.75 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.796875 -0.125 4.234375 -0.484375 L 3.6875 -1.21875 C 3.3125 -0.953125 2.984375 -0.828125 2.625 -0.828125 C 2.078125 -0.828125 1.703125 -1.03125 1.625 -1.828125 L 4.375 -1.828125 C 4.390625 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.6875 -3.4375 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.09375 -3.296875 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-1-0"> | |
| 39 | +<path d="M 3.78125 -5.140625 L 0.109375 -5.140625 L 0.109375 -4.53125 L 1.578125 -4.53125 L 1.578125 0 L 2.28125 0 L 2.28125 -4.53125 L 3.703125 -4.53125 Z M 3.78125 -5.140625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-1-1"> | |
| 42 | +<path d="M 3.3125 -0.921875 L 3.3125 -2.71875 C 3.3125 -3.53125 2.890625 -4.015625 1.9375 -4.015625 C 1.5 -4.015625 1.0625 -3.921875 0.578125 -3.75 L 0.75 -3.25 C 1.15625 -3.390625 1.515625 -3.453125 1.8125 -3.453125 C 2.359375 -3.453125 2.625 -3.25 2.625 -2.6875 L 2.625 -2.390625 L 2.03125 -2.390625 C 0.9375 -2.390625 0.296875 -1.9375 0.296875 -1.09375 C 0.296875 -0.390625 0.765625 0.09375 1.546875 0.09375 C 2.03125 0.09375 2.4375 -0.09375 2.71875 -0.5 C 2.84375 -0.109375 3.09375 0.046875 3.484375 0.09375 L 3.640625 -0.390625 C 3.4375 -0.46875 3.3125 -0.578125 3.3125 -0.921875 Z M 1.703125 -0.421875 C 1.265625 -0.421875 1.03125 -0.671875 1.03125 -1.140625 C 1.03125 -1.671875 1.390625 -1.9375 2.109375 -1.9375 L 2.625 -1.9375 L 2.625 -1.03125 C 2.40625 -0.625 2.109375 -0.421875 1.703125 -0.421875 Z M 1.703125 -0.421875 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-1-2"> | |
| 45 | +<path d="M 3.59375 -3.921875 L 2.921875 -3.921875 L 2.921875 -1.125 C 2.671875 -0.734375 2.359375 -0.453125 1.9375 -0.453125 C 1.5 -0.453125 1.328125 -0.640625 1.328125 -1.1875 L 1.328125 -3.921875 L 0.640625 -3.921875 L 0.640625 -1.109375 C 0.640625 -0.34375 1.046875 0.09375 1.734375 0.09375 C 2.296875 0.09375 2.65625 -0.140625 2.953125 -0.609375 L 3.015625 0 L 3.59375 0 Z M 3.59375 -3.921875 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-1-3"> | |
| 48 | +<path d="M 2.21875 -2.109375 L 3.421875 -3.921875 L 2.640625 -3.921875 L 1.8125 -2.484375 L 1 -3.921875 L 0.1875 -3.921875 L 1.40625 -2.078125 L 0.03125 0 L 0.8125 0 L 1.78125 -1.65625 L 2.75 0 L 3.578125 0 Z M 2.21875 -2.109375 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-1-4"> | |
| 51 | +<path d="M 3.03125 -5.59375 L 3.03125 -3.53125 C 2.765625 -3.8125 2.4375 -4.015625 1.96875 -4.015625 C 1 -4.015625 0.421875 -3.140625 0.421875 -1.9375 C 0.421875 -0.71875 0.953125 0.09375 1.90625 0.09375 C 2.390625 0.09375 2.78125 -0.15625 3.046875 -0.546875 L 3.109375 0 L 3.71875 0 L 3.71875 -5.515625 Z M 2.0625 -0.453125 C 1.484375 -0.453125 1.15625 -0.921875 1.15625 -1.953125 C 1.15625 -2.984375 1.53125 -3.46875 2.109375 -3.46875 C 2.5 -3.46875 2.78125 -3.265625 3.03125 -2.953125 L 3.03125 -1.03125 C 2.765625 -0.671875 2.5 -0.453125 2.0625 -0.453125 Z M 2.0625 -0.453125 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-1-5"> | |
| 54 | +<path d="M 0.890625 -5.609375 C 0.625 -5.609375 0.40625 -5.40625 0.40625 -5.140625 C 0.40625 -5 0.46875 -4.859375 0.59375 -4.765625 L 0.296875 -3.65625 L 0.75 -3.65625 L 1.25 -4.703125 C 1.34375 -4.921875 1.375 -5.03125 1.375 -5.140625 C 1.375 -5.40625 1.15625 -5.609375 0.890625 -5.609375 Z M 0.890625 -5.609375 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-1-6"> | |
| 57 | +<path d="M 1.015625 -5.8125 C 0.734375 -5.8125 0.546875 -5.609375 0.546875 -5.34375 C 0.546875 -5.078125 0.734375 -4.875 1.015625 -4.875 C 1.3125 -4.875 1.5 -5.078125 1.5 -5.34375 C 1.5 -5.609375 1.3125 -5.8125 1.015625 -5.8125 Z M 1.375 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 Z M 1.375 -3.921875 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-7"> | |
| 60 | +<path d="M 2.53125 -4.015625 C 2.015625 -4.015625 1.609375 -3.75 1.328125 -3.34375 L 1.28125 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.78125 C 1.625 -3.203125 1.9375 -3.484375 2.375 -3.484375 C 2.75 -3.484375 2.984375 -3.3125 2.984375 -2.71875 L 2.984375 0 L 3.671875 0 L 3.671875 -2.8125 C 3.671875 -3.5625 3.25 -4.015625 2.53125 -4.015625 Z M 2.53125 -4.015625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-8"> | |
| 63 | +<path d="M 2.4375 -0.640625 C 2.234375 -0.53125 2.078125 -0.484375 1.90625 -0.484375 C 1.5625 -0.484375 1.4375 -0.65625 1.4375 -1.0625 L 1.4375 -3.40625 L 2.296875 -3.40625 L 2.375 -3.921875 L 1.4375 -3.921875 L 1.4375 -4.890625 L 0.75 -4.8125 L 0.75 -3.921875 L 0.0625 -3.921875 L 0.0625 -3.40625 L 0.75 -3.40625 L 0.75 -1.03125 C 0.75 -0.296875 1.140625 0.09375 1.8125 0.09375 C 2.140625 0.09375 2.4375 0 2.6875 -0.171875 Z M 2.4375 -0.640625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-9"> | |
| 66 | +<path d="M 2.96875 -5.390625 L 2.671875 -5.96875 L 1.1875 -5.125 L 1.390625 -4.75 Z M 3.671875 -2.078125 C 3.671875 -3.28125 3.109375 -4.015625 2.0625 -4.015625 C 1.046875 -4.015625 0.421875 -3.140625 0.421875 -1.921875 C 0.421875 -0.671875 1.0625 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.09375 3.53125 -0.40625 L 3.234375 -0.8125 C 2.890625 -0.578125 2.59375 -0.46875 2.21875 -0.46875 C 1.640625 -0.46875 1.21875 -0.8125 1.15625 -1.734375 L 3.65625 -1.734375 C 3.671875 -1.8125 3.671875 -1.9375 3.671875 -2.078125 Z M 3 -2.234375 L 1.15625 -2.234375 C 1.203125 -3.109375 1.546875 -3.46875 2.078125 -3.46875 C 2.6875 -3.46875 3 -3.046875 3 -2.28125 Z M 3 -2.234375 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-10"> | |
| 69 | +<path d="M 2.390625 -4.015625 C 1.921875 -4.015625 1.546875 -3.71875 1.34375 -3.125 L 1.28125 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.25 C 1.53125 -3 1.8125 -3.34375 2.3125 -3.34375 C 2.453125 -3.34375 2.53125 -3.328125 2.65625 -3.296875 L 2.78125 -3.96875 C 2.65625 -4 2.515625 -4.015625 2.390625 -4.015625 Z M 2.390625 -4.015625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-11"> | |
| 72 | +<path d="M 2.078125 -5.34375 L 3.015625 -4.71875 L 3.3125 -5.0625 L 2.296875 -5.90625 L 1.84375 -5.90625 L 0.84375 -5.0625 L 1.140625 -4.71875 Z M 3.671875 -2.078125 C 3.671875 -3.28125 3.109375 -4.015625 2.0625 -4.015625 C 1.046875 -4.015625 0.421875 -3.140625 0.421875 -1.921875 C 0.421875 -0.671875 1.0625 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.09375 3.53125 -0.40625 L 3.234375 -0.8125 C 2.890625 -0.578125 2.59375 -0.46875 2.21875 -0.46875 C 1.640625 -0.46875 1.21875 -0.8125 1.15625 -1.734375 L 3.65625 -1.734375 C 3.671875 -1.8125 3.671875 -1.9375 3.671875 -2.078125 Z M 3 -2.234375 L 1.15625 -2.234375 C 1.203125 -3.109375 1.546875 -3.46875 2.078125 -3.46875 C 2.6875 -3.46875 3 -3.046875 3 -2.28125 Z M 3 -2.234375 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-12"> | |
| 75 | +<path d="M 3.015625 -2.71875 C 3.515625 -2.8125 3.96875 -3.203125 3.96875 -3.84375 C 3.96875 -4.734375 3.234375 -5.140625 1.953125 -5.140625 L 0.75 -5.140625 L 0.75 0 L 2.15625 0 C 3.359375 0 4.203125 -0.375 4.203125 -1.453125 C 4.203125 -2.328125 3.609375 -2.609375 3.015625 -2.71875 Z M 2.03125 -4.578125 C 2.796875 -4.578125 3.25 -4.421875 3.25 -3.78125 C 3.25 -3.234375 2.796875 -2.953125 2.234375 -2.953125 L 1.453125 -2.953125 L 1.453125 -4.578125 Z M 2.15625 -0.5625 L 1.453125 -0.5625 L 1.453125 -2.421875 L 2.296875 -2.421875 C 2.921875 -2.421875 3.453125 -2.1875 3.453125 -1.453125 C 3.453125 -0.71875 2.90625 -0.5625 2.15625 -0.5625 Z M 2.15625 -0.5625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-13"> | |
| 78 | +<path d="M 3.125 -3.921875 L 3.078125 -3.484375 C 2.796875 -3.78125 2.453125 -4.015625 1.96875 -4.015625 C 1 -4.015625 0.421875 -3.140625 0.421875 -1.9375 C 0.421875 -0.71875 0.953125 0.09375 1.90625 0.09375 C 2.390625 0.09375 2.765625 -0.140625 3.03125 -0.515625 L 3.03125 1.5 L 3.71875 1.59375 L 3.71875 -3.921875 Z M 2.0625 -0.453125 C 1.484375 -0.453125 1.15625 -0.921875 1.15625 -1.953125 C 1.15625 -2.984375 1.53125 -3.46875 2.109375 -3.46875 C 2.5 -3.46875 2.78125 -3.265625 3.03125 -2.953125 L 3.03125 -1.03125 C 2.765625 -0.671875 2.5 -0.453125 2.0625 -0.453125 Z M 2.0625 -0.453125 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-14"> | |
| 81 | +<path d="M 3.671875 -2.078125 C 3.671875 -3.28125 3.109375 -4.015625 2.0625 -4.015625 C 1.046875 -4.015625 0.421875 -3.140625 0.421875 -1.921875 C 0.421875 -0.671875 1.0625 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.09375 3.53125 -0.40625 L 3.234375 -0.8125 C 2.890625 -0.578125 2.59375 -0.46875 2.21875 -0.46875 C 1.640625 -0.46875 1.21875 -0.8125 1.15625 -1.734375 L 3.65625 -1.734375 C 3.671875 -1.8125 3.671875 -1.9375 3.671875 -2.078125 Z M 3 -2.234375 L 1.15625 -2.234375 C 1.203125 -3.109375 1.546875 -3.46875 2.078125 -3.46875 C 2.6875 -3.46875 3 -3.046875 3 -2.28125 Z M 3 -2.234375 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-15"> | |
| 84 | +<path d="M 2.546875 -5.21875 C 1.375 -5.21875 0.40625 -4.3125 0.40625 -2.578125 C 0.40625 -0.84375 1.3125 0.09375 2.5625 0.09375 C 3.25 0.09375 3.734375 -0.1875 4.03125 -0.484375 L 3.671875 -0.9375 C 3.390625 -0.71875 3.0625 -0.5 2.578125 -0.5 C 1.78125 -0.5 1.15625 -1.09375 1.15625 -2.578125 C 1.15625 -4.125 1.8125 -4.640625 2.59375 -4.640625 C 2.9375 -4.640625 3.25 -4.53125 3.578125 -4.265625 L 3.96875 -4.71875 C 3.5625 -5.046875 3.1875 -5.21875 2.546875 -5.21875 Z M 2.546875 -5.21875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-16"> | |
| 87 | +<path d="M 1.8125 -5.140625 L 0.75 -5.140625 L 0.75 0 L 1.96875 0 C 3.078125 0 4.390625 -0.5 4.390625 -2.59375 C 4.390625 -4.71875 3.125 -5.140625 1.8125 -5.140625 Z M 1.96875 -4.5625 C 2.796875 -4.5625 3.640625 -4.328125 3.640625 -2.59375 C 3.640625 -0.90625 2.828125 -0.5625 2.03125 -0.5625 L 1.453125 -0.5625 L 1.453125 -4.5625 Z M 1.96875 -4.5625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-17"> | |
| 90 | +<path d="M 4.625 -4.015625 C 4.09375 -4.015625 3.734375 -3.734375 3.453125 -3.3125 C 3.3125 -3.75 2.953125 -4.015625 2.46875 -4.015625 C 1.953125 -4.015625 1.59375 -3.75 1.328125 -3.359375 L 1.28125 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.78125 C 1.625 -3.203125 1.875 -3.484375 2.296875 -3.484375 C 2.59375 -3.484375 2.84375 -3.3125 2.84375 -2.71875 L 2.84375 0 L 3.53125 0 L 3.53125 -2.78125 C 3.796875 -3.203125 4.03125 -3.484375 4.453125 -3.484375 C 4.75 -3.484375 5.015625 -3.3125 5.015625 -2.71875 L 5.015625 0 L 5.6875 0 L 5.6875 -2.8125 C 5.6875 -3.5625 5.265625 -4.015625 4.625 -4.015625 Z M 4.625 -4.015625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-18"> | |
| 93 | +<path d="M 2.1875 -4.015625 C 1.0625 -4.015625 0.421875 -3.171875 0.421875 -1.953125 C 0.421875 -0.71875 1.0625 0.09375 2.171875 0.09375 C 3.28125 0.09375 3.921875 -0.75 3.921875 -1.96875 C 3.921875 -3.21875 3.296875 -4.015625 2.1875 -4.015625 Z M 2.1875 -3.46875 C 2.828125 -3.46875 3.1875 -2.984375 3.1875 -1.96875 C 3.1875 -0.9375 2.828125 -0.46875 2.171875 -0.46875 C 1.515625 -0.46875 1.15625 -0.9375 1.15625 -1.953125 C 1.15625 -2.984375 1.53125 -3.46875 2.1875 -3.46875 Z M 2.1875 -3.46875 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-19"> | |
| 96 | +<path d="M 3.671875 -4.375 C 3.21875 -4.15625 2.859375 -4 1.875 -4.015625 C 1.015625 -4.015625 0.359375 -3.453125 0.359375 -2.640625 C 0.359375 -2.140625 0.578125 -1.796875 1.03125 -1.5625 C 0.75 -1.375 0.59375 -1.125 0.59375 -0.859375 C 0.59375 -0.46875 0.90625 -0.125 1.609375 -0.125 L 2.234375 -0.125 C 2.71875 -0.125 3.015625 0.0625 3.015625 0.4375 C 3.015625 0.828125 2.71875 1.046875 1.875 1.046875 C 1 1.046875 0.8125 0.84375 0.8125 0.390625 L 0.1875 0.390625 C 0.1875 1.1875 0.59375 1.59375 1.875 1.59375 C 3.078125 1.59375 3.71875 1.15625 3.71875 0.390625 C 3.71875 -0.234375 3.171875 -0.6875 2.375 -0.6875 L 1.75 -0.6875 C 1.34375 -0.6875 1.234375 -0.828125 1.234375 -1.015625 C 1.234375 -1.15625 1.3125 -1.296875 1.421875 -1.375 C 1.59375 -1.328125 1.75 -1.296875 1.921875 -1.296875 C 2.859375 -1.296875 3.421875 -1.859375 3.421875 -2.640625 C 3.421875 -3.09375 3.1875 -3.421875 2.734375 -3.625 C 3.171875 -3.625 3.546875 -3.640625 3.875 -3.75 Z M 1.875 -3.53125 C 2.4375 -3.53125 2.71875 -3.234375 2.71875 -2.65625 C 2.71875 -2.09375 2.4375 -1.765625 1.890625 -1.765625 C 1.359375 -1.765625 1.0625 -2.125 1.0625 -2.640625 C 1.0625 -3.15625 1.34375 -3.53125 1.875 -3.53125 Z M 1.875 -3.53125 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-20"> | |
| 99 | +<path d="M 2.484375 -4.015625 C 2.046875 -4.015625 1.625 -3.796875 1.328125 -3.40625 L 1.28125 -3.921875 L 0.6875 -3.921875 L 0.6875 1.59375 L 1.375 1.5 L 1.375 -0.359375 C 1.625 -0.046875 1.96875 0.09375 2.40625 0.09375 C 3.40625 0.09375 3.9375 -0.78125 3.9375 -1.96875 C 3.9375 -3.203125 3.53125 -4.015625 2.484375 -4.015625 Z M 2.234375 -0.46875 C 1.875 -0.46875 1.578125 -0.640625 1.375 -0.953125 L 1.375 -2.859375 C 1.578125 -3.171875 1.90625 -3.46875 2.3125 -3.46875 C 2.90625 -3.46875 3.203125 -2.984375 3.203125 -1.96875 C 3.203125 -0.9375 2.859375 -0.46875 2.234375 -0.46875 Z M 2.234375 -0.46875 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-21"> | |
| 102 | +<path d="M 2.53125 -4.015625 C 2.046875 -4.015625 1.65625 -3.765625 1.375 -3.390625 L 1.375 -5.578125 L 0.6875 -5.5 L 0.6875 0 L 1.375 0 L 1.375 -2.796875 C 1.625 -3.203125 1.9375 -3.484375 2.359375 -3.484375 C 2.734375 -3.484375 2.984375 -3.3125 2.984375 -2.71875 L 2.984375 0 L 3.671875 0 L 3.671875 -2.8125 C 3.671875 -3.5625 3.25 -4.015625 2.53125 -4.015625 Z M 2.53125 -4.015625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-22"> | |
| 105 | +<path d="M 1.453125 -5.140625 L 0.75 -5.140625 L 0.75 0 L 1.453125 0 Z M 1.453125 -5.140625 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-23"> | |
| 108 | +<path d="M 3.53125 -5.140625 L 0.75 -5.140625 L 0.75 0 L 3.578125 0 L 3.578125 -0.5625 L 1.453125 -0.5625 L 1.453125 -2.328125 L 3.1875 -2.328125 L 3.1875 -2.890625 L 1.453125 -2.890625 L 1.453125 -4.5625 L 3.4375 -4.5625 Z M 3.53125 -5.140625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-24"> | |
| 111 | +<path d="M 1.453125 0.09375 C 1.65625 0.09375 1.859375 0.03125 2 -0.046875 L 1.828125 -0.515625 C 1.75 -0.484375 1.671875 -0.484375 1.578125 -0.484375 C 1.390625 -0.484375 1.328125 -0.578125 1.328125 -0.796875 L 1.328125 -5.59375 L 0.640625 -5.515625 L 0.640625 -0.78125 C 0.640625 -0.21875 0.96875 0.09375 1.453125 0.09375 Z M 1.453125 0.09375 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-25"> | |
| 114 | +<path d="M 2.09375 -5.140625 L 0.75 -5.140625 L 0.75 0 L 1.453125 0 L 1.453125 -1.890625 L 2.109375 -1.890625 C 3.234375 -1.890625 4.09375 -2.375 4.09375 -3.546875 C 4.09375 -4.625 3.328125 -5.140625 2.09375 -5.140625 Z M 2.078125 -2.4375 L 1.453125 -2.4375 L 1.453125 -4.578125 L 2.09375 -4.578125 C 2.84375 -4.578125 3.34375 -4.3125 3.34375 -3.546875 C 3.34375 -2.671875 2.828125 -2.4375 2.078125 -2.4375 Z M 2.078125 -2.4375 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-26"> | |
| 117 | +<path d="M 2.0625 -5.59375 C 1.109375 -5.59375 0.703125 -5.109375 0.703125 -4.4375 L 0.703125 -3.921875 L 0.078125 -3.921875 L 0.078125 -3.40625 L 0.703125 -3.40625 L 0.703125 0 L 1.390625 0 L 1.390625 -3.40625 L 2.890625 -3.40625 L 2.890625 0 L 3.578125 0 L 3.578125 -3.921875 L 1.390625 -3.921875 L 1.390625 -4.453125 C 1.390625 -4.828125 1.53125 -5.03125 2.078125 -5.03125 C 2.390625 -5.03125 2.65625 -4.96875 2.90625 -4.84375 L 3.140625 -5.328125 C 2.828125 -5.484375 2.5 -5.59375 2.0625 -5.59375 Z M 2.0625 -5.59375 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-27"> | |
| 120 | +<path d="M 2.140625 -4.015625 C 1.078125 -4.015625 0.421875 -3.1875 0.421875 -1.9375 C 0.421875 -0.65625 1.078125 0.09375 2.140625 0.09375 C 2.59375 0.09375 2.984375 -0.0625 3.34375 -0.34375 L 3.03125 -0.796875 C 2.734375 -0.59375 2.5 -0.484375 2.171875 -0.484375 C 1.546875 -0.484375 1.15625 -0.921875 1.15625 -1.9375 C 1.15625 -2.96875 1.546875 -3.453125 2.171875 -3.453125 C 2.5 -3.453125 2.75 -3.359375 3.015625 -3.15625 L 3.34375 -3.59375 C 2.96875 -3.890625 2.59375 -4.015625 2.140625 -4.015625 Z M 2.140625 -4.015625 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-28"> | |
| 123 | +<path d="M 1.78125 -4.015625 C 0.96875 -4.015625 0.359375 -3.5625 0.359375 -2.9375 C 0.359375 -2.390625 0.6875 -2.015625 1.546875 -1.796875 C 2.296875 -1.59375 2.5 -1.453125 2.5 -1.0625 C 2.5 -0.6875 2.171875 -0.46875 1.65625 -0.46875 C 1.234375 -0.46875 0.859375 -0.609375 0.546875 -0.84375 L 0.1875 -0.421875 C 0.53125 -0.125 1 0.09375 1.671875 0.09375 C 2.46875 0.09375 3.21875 -0.28125 3.21875 -1.109375 C 3.21875 -1.78125 2.75 -2.109375 1.921875 -2.328125 C 1.28125 -2.484375 1.078125 -2.640625 1.078125 -2.953125 C 1.078125 -3.265625 1.34375 -3.46875 1.796875 -3.46875 C 2.15625 -3.46875 2.46875 -3.359375 2.8125 -3.140625 L 3.109375 -3.5625 C 2.734375 -3.859375 2.328125 -4.015625 1.78125 -4.015625 Z M 1.78125 -4.015625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-29"> | |
| 126 | +<path d="M 3.59375 -3.921875 L 2.875 -3.921875 L 1.84375 -0.609375 L 0.8125 -3.921875 L 0.078125 -3.921875 L 1.4375 0 L 2.265625 0 Z M 3.59375 -3.921875 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-30"> | |
| 129 | +<path d="M 4.078125 -0.515625 C 4.015625 -0.484375 3.921875 -0.484375 3.828125 -0.484375 C 3.65625 -0.484375 3.578125 -0.578125 3.578125 -0.796875 L 3.578125 -5.53125 L 2.90625 -5.4375 C 2.59375 -5.53125 2.359375 -5.59375 2 -5.59375 C 1.125 -5.59375 0.703125 -5.125 0.703125 -4.46875 L 0.703125 -3.921875 L 0.078125 -3.921875 L 0.078125 -3.40625 L 0.703125 -3.40625 L 0.703125 0 L 1.390625 0 L 1.390625 -3.40625 L 2.265625 -3.40625 L 2.34375 -3.921875 L 1.390625 -3.921875 L 1.390625 -4.46875 C 1.390625 -4.859375 1.546875 -5.03125 2.046875 -5.03125 C 2.375 -5.03125 2.59375 -5 2.90625 -4.90625 L 2.90625 -0.78125 C 2.90625 -0.203125 3.1875 0.09375 3.6875 0.09375 C 3.890625 0.09375 4.078125 0.046875 4.265625 -0.046875 Z M 4.078125 -0.515625 "/> | |
| 130 | +</g> | |
| 131 | +</g> | |
| 132 | +<clipPath id="clip-0"> | |
| 133 | +<path clip-rule="nonzero" d="M 0.578125 19 L 89 19 L 89 58 L 0.578125 58 Z M 0.578125 19 "/> | |
| 134 | +</clipPath> | |
| 135 | +<clipPath id="clip-1"> | |
| 136 | +<path clip-rule="nonzero" d="M 259 19 L 346.941406 19 L 346.941406 58 L 259 58 Z M 259 19 "/> | |
| 137 | +</clipPath> | |
| 138 | +<clipPath id="clip-2"> | |
| 139 | +<path clip-rule="nonzero" d="M 0.578125 120 L 89 120 L 89 159 L 0.578125 159 Z M 0.578125 120 "/> | |
| 140 | +</clipPath> | |
| 141 | +<clipPath id="clip-3"> | |
| 142 | +<path clip-rule="nonzero" d="M 259 120 L 346.941406 120 L 346.941406 159 L 259 159 Z M 259 120 "/> | |
| 143 | +</clipPath> | |
| 144 | +<clipPath id="clip-4"> | |
| 145 | +<path clip-rule="nonzero" d="M 129 140 L 218 140 L 218 178.050781 L 129 178.050781 Z M 129 140 "/> | |
| 146 | +</clipPath> | |
| 147 | +</defs> | |
| 148 | +<path fill-rule="nonzero" fill="rgb(96.998596%, 94.645691%, 87.11853%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.525018 0.00122606 C 54.525018 10.566443 30.115047 19.132516 -0.00171257 19.132516 C -30.114544 19.132516 -54.524516 10.566443 -54.524516 0.00122606 C -54.524516 -10.567918 -30.114544 -19.133992 -0.00171257 -19.133992 C 30.115047 -19.133992 54.525018 -10.567918 54.525018 0.00122606 Z M 54.525018 0.00122606 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 149 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 150 | +<use xlink:href="#glyph-0-0" x="161.650667" y="86.682452"/> | |
| 151 | +</g> | |
| 152 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 153 | +<use xlink:href="#glyph-0-1" x="166.126978" y="86.682452"/> | |
| 154 | +</g> | |
| 155 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 156 | +<use xlink:href="#glyph-0-2" x="170.63682" y="86.682452"/> | |
| 157 | +</g> | |
| 158 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 159 | +<use xlink:href="#glyph-0-3" x="173.109689" y="86.682452"/> | |
| 160 | +<use xlink:href="#glyph-0-4" x="177.753652" y="86.682452"/> | |
| 161 | +<use xlink:href="#glyph-0-5" x="182.514972" y="86.682452"/> | |
| 162 | +</g> | |
| 163 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 164 | +<use xlink:href="#glyph-0-6" x="150.770107" y="97.581909"/> | |
| 165 | +<use xlink:href="#glyph-0-7" x="153.117237" y="97.581909"/> | |
| 166 | +<use xlink:href="#glyph-0-7" x="160.167008" y="97.581909"/> | |
| 167 | +<use xlink:href="#glyph-0-8" x="167.21678" y="97.581909"/> | |
| 168 | +<use xlink:href="#glyph-0-9" x="172.112221" y="97.581909"/> | |
| 169 | +<use xlink:href="#glyph-0-6" x="177.066341" y="97.581909"/> | |
| 170 | +<use xlink:href="#glyph-0-2" x="179.413471" y="97.581909"/> | |
| 171 | +<use xlink:href="#glyph-0-6" x="181.928253" y="97.581909"/> | |
| 172 | +<use xlink:href="#glyph-0-10" x="184.275382" y="97.581909"/> | |
| 173 | +<use xlink:href="#glyph-0-5" x="188.919346" y="97.581909"/> | |
| 174 | +</g> | |
| 175 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 176 | +<use xlink:href="#glyph-0-3" x="192.104736" y="97.581909"/> | |
| 177 | +</g> | |
| 178 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 76.472656 24.886719 L 11.671875 24.886719 C 8.390625 24.886719 5.726562 27.546875 5.726562 30.832031 L 5.726562 45.722656 C 5.726562 49.007812 8.390625 51.667969 11.671875 51.667969 L 76.472656 51.667969 C 79.757812 51.667969 82.417969 49.007812 82.417969 45.722656 L 82.417969 30.832031 C 82.417969 27.546875 79.757812 24.886719 76.472656 24.886719 Z M 76.472656 24.886719 "/> | |
| 179 | +<g clip-path="url(#clip-0)"> | |
| 180 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -97.818339 64.488325 L -162.973128 64.488325 C -166.272304 64.488325 -168.95092 61.813636 -168.95092 58.510533 L -168.95092 43.53856 C -168.95092 40.235457 -166.272304 37.560768 -162.973128 37.560768 L -97.818339 37.560768 C -94.515236 37.560768 -91.840547 40.235457 -91.840547 43.53856 L -91.840547 58.510533 C -91.840547 61.813636 -94.515236 64.488325 -97.818339 64.488325 Z M -97.818339 64.488325 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 181 | +</g> | |
| 182 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 183 | +<use xlink:href="#glyph-1-0" x="20.862793" y="35.709916"/> | |
| 184 | +</g> | |
| 185 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 186 | +<use xlink:href="#glyph-1-1" x="24.342501" y="35.709916"/> | |
| 187 | +<use xlink:href="#glyph-1-2" x="28.358694" y="35.709916"/> | |
| 188 | +<use xlink:href="#glyph-1-3" x="32.643131" y="35.709916"/> | |
| 189 | +</g> | |
| 190 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 191 | +<use xlink:href="#glyph-1-4" x="38.738207" y="35.709916"/> | |
| 192 | +<use xlink:href="#glyph-1-5" x="43.134412" y="35.709916"/> | |
| 193 | +<use xlink:href="#glyph-1-6" x="44.833284" y="35.709916"/> | |
| 194 | +<use xlink:href="#glyph-1-7" x="46.889814" y="35.709916"/> | |
| 195 | +<use xlink:href="#glyph-1-8" x="51.204055" y="35.709916"/> | |
| 196 | +</g> | |
| 197 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 198 | +<use xlink:href="#glyph-1-9" x="53.782168" y="35.709916"/> | |
| 199 | +<use xlink:href="#glyph-1-10" x="57.835618" y="35.709916"/> | |
| 200 | +</g> | |
| 201 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 202 | +<use xlink:href="#glyph-1-11" x="60.540401" y="35.709916"/> | |
| 203 | +<use xlink:href="#glyph-1-8" x="64.593851" y="35.709916"/> | |
| 204 | +</g> | |
| 205 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 206 | +<use xlink:href="#glyph-1-12" x="12.024079" y="45.12349"/> | |
| 207 | +<use xlink:href="#glyph-1-1" x="16.554405" y="45.12349"/> | |
| 208 | +<use xlink:href="#glyph-1-7" x="20.570599" y="45.12349"/> | |
| 209 | +<use xlink:href="#glyph-1-13" x="24.88484" y="45.12349"/> | |
| 210 | +<use xlink:href="#glyph-1-2" x="29.281044" y="45.12349"/> | |
| 211 | +<use xlink:href="#glyph-1-14" x="33.565481" y="45.12349"/> | |
| 212 | +</g> | |
| 213 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 214 | +<use xlink:href="#glyph-1-4" x="40.100178" y="45.12349"/> | |
| 215 | +<use xlink:href="#glyph-1-2" x="44.496382" y="45.12349"/> | |
| 216 | +</g> | |
| 217 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 218 | +<use xlink:href="#glyph-1-15" x="51.269518" y="45.12349"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-1-1" x="55.367675" y="45.12349"/> | |
| 222 | +<use xlink:href="#glyph-1-7" x="59.383868" y="45.12349"/> | |
| 223 | +<use xlink:href="#glyph-1-1" x="63.698109" y="45.12349"/> | |
| 224 | +<use xlink:href="#glyph-1-4" x="67.714303" y="45.12349"/> | |
| 225 | +<use xlink:href="#glyph-1-1" x="72.110507" y="45.12349"/> | |
| 226 | +</g> | |
| 227 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 335.847656 24.886719 L 271.046875 24.886719 C 267.761719 24.886719 265.101562 27.546875 265.101562 30.832031 L 265.101562 45.722656 C 265.101562 49.007812 267.761719 51.667969 271.046875 51.667969 L 335.847656 51.667969 C 339.128906 51.667969 341.792969 49.007812 341.792969 45.722656 L 341.792969 30.832031 C 341.792969 27.546875 339.128906 24.886719 335.847656 24.886719 Z M 335.847656 24.886719 "/> | |
| 228 | +<g clip-path="url(#clip-1)"> | |
| 229 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 162.973631 64.488325 L 97.818842 64.488325 C 94.515738 64.488325 91.84105 61.813636 91.84105 58.510533 L 91.84105 43.53856 C 91.84105 40.235457 94.515738 37.560768 97.818842 37.560768 L 162.973631 37.560768 C 166.272806 37.560768 168.951422 40.235457 168.951422 43.53856 L 168.951422 58.510533 C 168.951422 61.813636 166.272806 64.488325 162.973631 64.488325 Z M 162.973631 64.488325 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 230 | +</g> | |
| 231 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 232 | +<use xlink:href="#glyph-1-16" x="280.982754" y="35.709916"/> | |
| 233 | +<use xlink:href="#glyph-1-9" x="285.781322" y="35.709916"/> | |
| 234 | +<use xlink:href="#glyph-1-17" x="289.834772" y="35.709916"/> | |
| 235 | +<use xlink:href="#glyph-1-18" x="296.168287" y="35.709916"/> | |
| 236 | +<use xlink:href="#glyph-1-19" x="300.519784" y="35.709916"/> | |
| 237 | +<use xlink:href="#glyph-1-10" x="304.394405" y="35.709916"/> | |
| 238 | +</g> | |
| 239 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 240 | +<use xlink:href="#glyph-1-1" x="307.099189" y="35.709916"/> | |
| 241 | +<use xlink:href="#glyph-1-20" x="311.115382" y="35.709916"/> | |
| 242 | +<use xlink:href="#glyph-1-21" x="315.481782" y="35.709916"/> | |
| 243 | +<use xlink:href="#glyph-1-6" x="319.796023" y="35.709916"/> | |
| 244 | +<use xlink:href="#glyph-1-14" x="321.852553" y="35.709916"/> | |
| 245 | +</g> | |
| 246 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 247 | +<use xlink:href="#glyph-1-22" x="282.979843" y="45.12349"/> | |
| 248 | +<use xlink:href="#glyph-1-17" x="285.177946" y="45.12349"/> | |
| 249 | +<use xlink:href="#glyph-1-17" x="291.511461" y="45.12349"/> | |
| 250 | +<use xlink:href="#glyph-1-6" x="297.844975" y="45.12349"/> | |
| 251 | +<use xlink:href="#glyph-1-19" x="299.901505" y="45.12349"/> | |
| 252 | +<use xlink:href="#glyph-1-10" x="303.776126" y="45.12349"/> | |
| 253 | +</g> | |
| 254 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 255 | +<use xlink:href="#glyph-1-1" x="306.480909" y="45.12349"/> | |
| 256 | +<use xlink:href="#glyph-1-8" x="310.497103" y="45.12349"/> | |
| 257 | +<use xlink:href="#glyph-1-6" x="313.186984" y="45.12349"/> | |
| 258 | +<use xlink:href="#glyph-1-18" x="315.243513" y="45.12349"/> | |
| 259 | +<use xlink:href="#glyph-1-7" x="319.595011" y="45.12349"/> | |
| 260 | +</g> | |
| 261 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 76.472656 126.378906 L 11.671875 126.378906 C 8.390625 126.378906 5.726562 129.042969 5.726562 132.324219 L 5.726562 147.21875 C 5.726562 150.5 8.390625 153.164062 11.671875 153.164062 L 76.472656 153.164062 C 79.757812 153.164062 82.417969 150.5 82.417969 147.21875 L 82.417969 132.324219 C 82.417969 129.042969 79.757812 126.378906 76.472656 126.378906 Z M 76.472656 126.378906 "/> | |
| 262 | +<g clip-path="url(#clip-2)"> | |
| 263 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -97.818339 -37.558316 L -162.973128 -37.558316 C -166.272304 -37.558316 -168.95092 -40.236933 -168.95092 -43.536108 L -168.95092 -58.512008 C -168.95092 -61.811184 -166.272304 -64.4898 -162.973128 -64.4898 L -97.818339 -64.4898 C -94.515236 -64.4898 -91.840547 -61.811184 -91.840547 -58.512008 L -91.840547 -43.536108 C -91.840547 -40.236933 -94.515236 -37.558316 -97.818339 -37.558316 Z M -97.818339 -37.558316 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 264 | +</g> | |
| 265 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 266 | +<use xlink:href="#glyph-1-23" x="32.487288" y="137.953359"/> | |
| 267 | +</g> | |
| 268 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 269 | +<use xlink:href="#glyph-1-17" x="36.399165" y="137.953359"/> | |
| 270 | +<use xlink:href="#glyph-1-20" x="42.73268" y="137.953359"/> | |
| 271 | +<use xlink:href="#glyph-1-24" x="47.09908" y="137.953359"/> | |
| 272 | +</g> | |
| 273 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 274 | +<use xlink:href="#glyph-1-18" x="49.252475" y="137.953359"/> | |
| 275 | +<use xlink:href="#glyph-1-6" x="53.603972" y="137.953359"/> | |
| 276 | +</g> | |
| 277 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 278 | +<use xlink:href="#glyph-1-14" x="33.931399" y="147.366932"/> | |
| 279 | +<use xlink:href="#glyph-1-8" x="37.984849" y="147.366932"/> | |
| 280 | +</g> | |
| 281 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 282 | +<use xlink:href="#glyph-1-25" x="43.155977" y="147.366932"/> | |
| 283 | +<use xlink:href="#glyph-1-22" x="47.485121" y="147.366932"/> | |
| 284 | +<use xlink:href="#glyph-1-12" x="49.683223" y="147.366932"/> | |
| 285 | +</g> | |
| 286 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 335.847656 126.378906 L 271.046875 126.378906 C 267.761719 126.378906 265.101562 129.042969 265.101562 132.324219 L 265.101562 147.21875 C 265.101562 150.5 267.761719 153.164062 271.046875 153.164062 L 335.847656 153.164062 C 339.128906 153.164062 341.792969 150.5 341.792969 147.21875 L 341.792969 132.324219 C 341.792969 129.042969 339.128906 126.378906 335.847656 126.378906 Z M 335.847656 126.378906 "/> | |
| 287 | +<g clip-path="url(#clip-3)"> | |
| 288 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 162.973631 -37.558316 L 97.818842 -37.558316 C 94.515738 -37.558316 91.84105 -40.236933 91.84105 -43.536108 L 91.84105 -58.512008 C 91.84105 -61.811184 94.515738 -64.4898 97.818842 -64.4898 L 162.973631 -64.4898 C 166.272806 -64.4898 168.951422 -61.811184 168.951422 -58.512008 L 168.951422 -43.536108 C 168.951422 -40.236933 166.272806 -37.558316 162.973631 -37.558316 Z M 162.973631 -37.558316 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 289 | +</g> | |
| 290 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 291 | +<use xlink:href="#glyph-1-15" x="287.051599" y="137.070183"/> | |
| 292 | +</g> | |
| 293 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 294 | +<use xlink:href="#glyph-1-18" x="291.075244" y="137.070183"/> | |
| 295 | +<use xlink:href="#glyph-1-7" x="295.426741" y="137.070183"/> | |
| 296 | +<use xlink:href="#glyph-1-26" x="299.740983" y="137.070183"/> | |
| 297 | +<use xlink:href="#glyph-1-1" x="304.003066" y="137.070183"/> | |
| 298 | +<use xlink:href="#glyph-1-7" x="308.019259" y="137.070183"/> | |
| 299 | +<use xlink:href="#glyph-1-27" x="312.333501" y="137.070183"/> | |
| 300 | +</g> | |
| 301 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 302 | +<use xlink:href="#glyph-1-14" x="315.783403" y="137.070183"/> | |
| 303 | +</g> | |
| 304 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 305 | +<use xlink:href="#glyph-1-4" x="281.175699" y="146.483757"/> | |
| 306 | +<use xlink:href="#glyph-1-14" x="285.571904" y="146.483757"/> | |
| 307 | +<use xlink:href="#glyph-1-28" x="289.625353" y="146.483757"/> | |
| 308 | +</g> | |
| 309 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 310 | +<use xlink:href="#glyph-1-17" x="295.586309" y="146.483757"/> | |
| 311 | +<use xlink:href="#glyph-1-9" x="301.919824" y="146.483757"/> | |
| 312 | +<use xlink:href="#glyph-1-7" x="305.973273" y="146.483757"/> | |
| 313 | +<use xlink:href="#glyph-1-1" x="310.287514" y="146.483757"/> | |
| 314 | +<use xlink:href="#glyph-1-19" x="314.303708" y="146.483757"/> | |
| 315 | +<use xlink:href="#glyph-1-14" x="318.178329" y="146.483757"/> | |
| 316 | +<use xlink:href="#glyph-1-28" x="322.231778" y="146.483757"/> | |
| 317 | +</g> | |
| 318 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.577646 84.330509 L -32.577143 84.330509 C -35.880246 84.330509 -38.554935 81.65582 -38.554935 78.352717 L -38.554935 63.380744 C -38.554935 60.077641 -35.880246 57.402953 -32.577143 57.402953 L 32.577646 57.402953 C 35.876821 57.402953 38.555438 60.077641 38.555438 63.380744 L 38.555438 78.352717 C 38.555438 81.65582 35.876821 84.330509 32.577646 84.330509 Z M 32.577646 84.330509 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 319 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 320 | +<use xlink:href="#glyph-1-25" x="156.927469" y="15.975724"/> | |
| 321 | +</g> | |
| 322 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 323 | +<use xlink:href="#glyph-1-18" x="161.033077" y="15.975724"/> | |
| 324 | +<use xlink:href="#glyph-1-24" x="165.384575" y="15.975724"/> | |
| 325 | +<use xlink:href="#glyph-1-6" x="167.575226" y="15.975724"/> | |
| 326 | +<use xlink:href="#glyph-1-8" x="169.631755" y="15.975724"/> | |
| 327 | +<use xlink:href="#glyph-1-6" x="172.321636" y="15.975724"/> | |
| 328 | +<use xlink:href="#glyph-1-13" x="174.378166" y="15.975724"/> | |
| 329 | +<use xlink:href="#glyph-1-2" x="178.77437" y="15.975724"/> | |
| 330 | +<use xlink:href="#glyph-1-14" x="183.058807" y="15.975724"/> | |
| 331 | +<use xlink:href="#glyph-1-28" x="187.112256" y="15.975724"/> | |
| 332 | +</g> | |
| 333 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 334 | +<use xlink:href="#glyph-1-19" x="142.520177" y="25.388303"/> | |
| 335 | +<use xlink:href="#glyph-1-18" x="146.394798" y="25.388303"/> | |
| 336 | +<use xlink:href="#glyph-1-2" x="150.746295" y="25.388303"/> | |
| 337 | +<use xlink:href="#glyph-1-29" x="155.030732" y="25.388303"/> | |
| 338 | +</g> | |
| 339 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 340 | +<use xlink:href="#glyph-1-14" x="158.666914" y="25.388303"/> | |
| 341 | +<use xlink:href="#glyph-1-10" x="162.720364" y="25.388303"/> | |
| 342 | +<use xlink:href="#glyph-1-7" x="165.574171" y="25.388303"/> | |
| 343 | +<use xlink:href="#glyph-1-14" x="169.888412" y="25.388303"/> | |
| 344 | +<use xlink:href="#glyph-1-17" x="173.941862" y="25.388303"/> | |
| 345 | +<use xlink:href="#glyph-1-14" x="180.275377" y="25.388303"/> | |
| 346 | +<use xlink:href="#glyph-1-7" x="184.328826" y="25.388303"/> | |
| 347 | +<use xlink:href="#glyph-1-8" x="188.643068" y="25.388303"/> | |
| 348 | +<use xlink:href="#glyph-1-1" x="191.332949" y="25.388303"/> | |
| 349 | +</g> | |
| 350 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 351 | +<use xlink:href="#glyph-1-24" x="195.311886" y="25.388303"/> | |
| 352 | +</g> | |
| 353 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 354 | +<use xlink:href="#glyph-1-14" x="197.465281" y="25.388303"/> | |
| 355 | +<use xlink:href="#glyph-1-28" x="201.518731" y="25.388303"/> | |
| 356 | +</g> | |
| 357 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 206.160156 146.113281 L 141.359375 146.113281 C 138.074219 146.113281 135.414062 148.777344 135.414062 152.058594 L 135.414062 166.953125 C 135.414062 170.238281 138.074219 172.898438 141.359375 172.898438 L 206.160156 172.898438 C 209.441406 172.898438 212.105469 170.238281 212.105469 166.953125 L 212.105469 152.058594 C 212.105469 148.777344 209.441406 146.113281 206.160156 146.113281 Z M 206.160156 146.113281 "/> | |
| 358 | +<g clip-path="url(#clip-4)"> | |
| 359 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 32.577646 -57.4005 L -32.577143 -57.4005 C -35.880246 -57.4005 -38.554935 -60.079117 -38.554935 -63.378292 L -38.554935 -78.354193 C -38.554935 -81.657296 -35.880246 -84.331984 -32.577143 -84.331984 L 32.577646 -84.331984 C 35.876821 -84.331984 38.555438 -81.657296 38.555438 -78.354193 L 38.555438 -63.378292 C 38.555438 -60.079117 35.876821 -57.4005 32.577646 -57.4005 Z M 32.577646 -57.4005 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 360 | +</g> | |
| 361 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 362 | +<use xlink:href="#glyph-1-22" x="159.582963" y="157.688545"/> | |
| 363 | +<use xlink:href="#glyph-1-7" x="161.781065" y="157.688545"/> | |
| 364 | +<use xlink:href="#glyph-1-30" x="166.095306" y="157.688545"/> | |
| 365 | +</g> | |
| 366 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 367 | +<use xlink:href="#glyph-1-1" x="170.506413" y="157.688545"/> | |
| 368 | +<use xlink:href="#glyph-1-8" x="174.522606" y="157.688545"/> | |
| 369 | +<use xlink:href="#glyph-1-6" x="177.212488" y="157.688545"/> | |
| 370 | +<use xlink:href="#glyph-1-18" x="179.269017" y="157.688545"/> | |
| 371 | +<use xlink:href="#glyph-1-7" x="183.620514" y="157.688545"/> | |
| 372 | +</g> | |
| 373 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 374 | +<use xlink:href="#glyph-1-14" x="156.184528" y="167.101124"/> | |
| 375 | +<use xlink:href="#glyph-1-8" x="160.237978" y="167.101124"/> | |
| 376 | +</g> | |
| 377 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 378 | +<use xlink:href="#glyph-1-28" x="165.409106" y="167.101124"/> | |
| 379 | +<use xlink:href="#glyph-1-1" x="168.888814" y="167.101124"/> | |
| 380 | +</g> | |
| 381 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 382 | +<use xlink:href="#glyph-1-24" x="172.867752" y="167.101124"/> | |
| 383 | +</g> | |
| 384 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 385 | +<use xlink:href="#glyph-1-1" x="175.021147" y="167.101124"/> | |
| 386 | +<use xlink:href="#glyph-1-6" x="179.03734" y="167.101124"/> | |
| 387 | +<use xlink:href="#glyph-1-10" x="181.09387" y="167.101124"/> | |
| 388 | +</g> | |
| 389 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 390 | +<use xlink:href="#glyph-1-14" x="183.798653" y="167.101124"/> | |
| 391 | +<use xlink:href="#glyph-1-28" x="187.852103" y="167.101124"/> | |
| 392 | +</g> | |
| 393 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -95.481423 37.360461 L -37.415934 14.639354 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 394 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549015 3.110558 C -2.083902 1.242705 -1.047513 0.361792 0.000819806 0.000119746 C -1.046421 -0.363238 -2.084454 -1.245997 -2.548568 -3.110482 " transform="matrix(0.92614, 0.36237, 0.36237, -0.92614, 136.917166, 74.609189)"/> | |
| 395 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 95.481926 37.360461 L 37.416436 14.639354 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 396 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549036 3.110665 C -2.084922 1.24618 -1.046889 0.363421 0.000351873 0.0000633412 C -1.044323 -0.36304 -2.08437 -1.242522 -2.549483 -3.110375 " transform="matrix(-0.92614, 0.36237, 0.36237, 0.92614, 210.601865, 74.609189)"/> | |
| 397 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -95.481423 -37.361937 L -37.415934 -14.640829 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 398 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549106 3.109108 C -2.084992 1.244623 -1.046959 0.361864 0.000282157 -0.00149386 C -1.04805 -0.363166 -2.084439 -1.244079 -2.549553 -3.111932 " transform="matrix(0.92614, -0.36237, -0.36237, -0.92614, 136.917166, 103.440125)"/> | |
| 399 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 95.481926 -37.361937 L 37.416436 -14.640829 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 400 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550021 3.111749 C -2.084907 1.243896 -1.04486 0.364414 -0.000185775 0.00131077 C -1.047427 -0.362047 -2.08546 -1.244806 -2.549574 -3.109291 " transform="matrix(-0.92614, -0.36237, -0.36237, 0.92614, 210.601865, 103.440125)"/> | |
| 401 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00171257 57.202645 L -0.00171257 20.130124 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 402 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550514 3.112866 C -2.08313 1.243333 -1.046247 0.363553 -0.00150775 -0.00171257 C -1.046247 -0.363051 -2.08313 -1.242831 -2.550514 -3.112364 " transform="matrix(0, 0.994567, 0.994567, 0, 173.759516, 69.399937)"/> | |
| 403 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00171257 -57.204121 L -0.00171257 -20.1316 " transform="matrix(0.994567, 0, 0, -0.994567, 173.759516, 89.024657)"/> | |
| 404 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551989 3.112364 C -2.084606 1.242831 -1.047722 0.363051 0.000944378 0.00171257 C -1.047722 -0.363553 -2.084606 -1.243333 -2.551989 -3.112866 " transform="matrix(0, -0.994567, -0.994567, 0, 173.759516, 108.649377)"/> | |
| 405 | +</svg> | |
added
dist/assets/fig/0fd57b315ecf3382.svg
+618 −0
@@ -0,0 +1,618 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="123.305pt" viewBox="0 0 314.242 123.305"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.359375 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 1.640625 0 L 1.640625 -2.125 L 2.359375 -2.125 C 3.640625 -2.125 4.59375 -2.65625 4.59375 -3.984375 C 4.59375 -5.203125 3.75 -5.765625 2.359375 -5.765625 Z M 2.328125 -2.75 L 1.640625 -2.75 L 1.640625 -5.15625 L 2.34375 -5.15625 C 3.203125 -5.15625 3.75 -4.84375 3.75 -3.984375 C 3.75 -3 3.1875 -2.75 2.328125 -2.75 Z M 2.328125 -2.75 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.734375 -4.171875 1.5 -3.515625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -2.515625 C 1.71875 -3.359375 2.046875 -3.765625 2.59375 -3.765625 C 2.75 -3.765625 2.84375 -3.75 2.984375 -3.703125 L 3.125 -4.46875 C 2.984375 -4.5 2.828125 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.140625 -6.53125 C 0.828125 -6.53125 0.609375 -6.3125 0.609375 -6 C 0.609375 -5.71875 0.828125 -5.484375 1.140625 -5.484375 C 1.46875 -5.484375 1.6875 -5.71875 1.6875 -6 C 1.6875 -6.3125 1.46875 -6.53125 1.140625 -6.53125 Z M 1.546875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.40625 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.40625 L 2.96875 -4.40625 L 2.046875 -2.796875 L 1.125 -4.40625 L 0.21875 -4.40625 L 1.578125 -2.328125 L 0.046875 0 L 0.90625 0 L 2.015625 -1.875 L 3.09375 0 L 4.015625 0 Z M 2.484375 -2.359375 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 3.40625 -6.28125 L 3.40625 -3.96875 C 3.109375 -4.28125 2.734375 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.53125 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.171875 3.421875 -0.609375 L 3.5 0 L 4.171875 0 L 4.171875 -6.1875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.03125 1.3125 -2.203125 C 1.3125 -3.34375 1.71875 -3.90625 2.375 -3.90625 C 2.8125 -3.90625 3.125 -3.671875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 4.03125 -4.40625 L 3.21875 -4.40625 L 2.078125 -0.6875 L 0.921875 -4.40625 L 0.078125 -4.40625 L 1.609375 0 L 2.53125 0 Z M 4.03125 -4.40625 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.84375 -4.515625 C 2.265625 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -3.125 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.09375 -3.90625 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.125 0 L 4.125 -3.171875 C 4.125 -4 3.65625 -4.515625 2.84375 -4.515625 Z M 2.84375 -4.515625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.609375 -0.75 1.609375 -1.1875 L 1.609375 -3.8125 L 2.578125 -3.8125 L 2.65625 -4.40625 L 1.609375 -4.40625 L 1.609375 -5.5 L 0.84375 -5.40625 L 0.84375 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.84375 -3.8125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.40625 0.09375 2.734375 0 3.015625 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 4.046875 -4.40625 L 3.28125 -4.40625 L 3.28125 -1.265625 C 3 -0.828125 2.640625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.484375 -0.734375 1.484375 -1.328125 L 1.484375 -4.40625 L 0.71875 -4.40625 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 2.984375 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.40625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.75 -0.390625 L 3.40625 -0.890625 C 3.0625 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.734375 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.328125 1.734375 -3.875 2.4375 -3.875 C 2.8125 -3.875 3.078125 -3.765625 3.390625 -3.546875 L 3.75 -4.03125 C 3.34375 -4.375 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.5625 0.484375 -2.203125 C 0.484375 -0.796875 1.1875 0.09375 2.453125 0.09375 C 3.6875 0.09375 4.40625 -0.84375 4.40625 -2.21875 C 4.40625 -3.609375 3.703125 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.890625 C 3.1875 -3.890625 3.578125 -3.359375 3.578125 -2.21875 C 3.578125 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.703125 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.890625 2.453125 -3.890625 Z M 2.453125 -3.890625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.203125 -4.203125 3.890625 -3.71875 C 3.71875 -4.21875 3.3125 -4.515625 2.765625 -4.515625 C 2.1875 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -3.125 C 1.828125 -3.59375 2.109375 -3.90625 2.578125 -3.90625 C 2.921875 -3.90625 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.96875 0 L 3.96875 -3.125 C 4.265625 -3.59375 4.53125 -3.90625 5.015625 -3.90625 C 5.34375 -3.90625 5.625 -3.71875 5.625 -3.0625 L 5.625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.921875 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.8125 -4.265625 1.484375 -3.8125 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.828125 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.59375 3.96875 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.5625 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.96875 3.234375 -4.515625 2.171875 -4.515625 C 1.6875 -4.515625 1.203125 -4.40625 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.796875 1.703125 -3.890625 2.03125 -3.890625 C 2.640625 -3.890625 2.953125 -3.65625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.921875 0.09375 L 4.09375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.78125 -4.515625 C 2.25 -4.515625 1.84375 -4.265625 1.546875 -3.859375 L 1.546875 -6.28125 L 0.765625 -6.1875 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.765625 0.09375 4.4375 -0.828125 4.4375 -2.21875 C 4.4375 -3.6875 3.78125 -4.515625 2.78125 -4.515625 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.765625 -0.75 1.546875 -1.109375 L 1.546875 -3.21875 C 1.765625 -3.5625 2.078125 -3.90625 2.578125 -3.90625 C 3.1875 -3.90625 3.59375 -3.46875 3.59375 -2.21875 C 3.59375 -1 3.15625 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.078125 0.046875 2.25 -0.046875 L 2.046875 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.484375 -0.65625 1.484375 -0.890625 L 1.484375 -6.28125 L 0.71875 -6.1875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 3.90625 0 L 4.75 0 L 2.90625 -5.765625 L 1.90625 -5.765625 L 0.046875 0 L 0.859375 0 L 1.296875 -1.453125 L 3.46875 -1.453125 Z M 1.484375 -2.09375 L 2.390625 -5.109375 L 3.28125 -2.09375 Z M 1.484375 -2.09375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 1.171875 -6.53125 C 0.84375 -6.53125 0.625 -6.3125 0.625 -6 C 0.625 -5.71875 0.84375 -5.484375 1.171875 -5.484375 C 1.484375 -5.484375 1.703125 -5.71875 1.703125 -6 C 1.703125 -6.3125 1.484375 -6.53125 1.171875 -6.53125 Z M 1.546875 -4.40625 L 0.78125 -4.40625 L 0.78125 -0.21875 C 0.78125 0.734375 0.5 0.953125 -0.078125 1.21875 L 0.15625 1.78125 C 1.09375 1.359375 1.546875 0.984375 1.546875 -0.265625 Z M 1.546875 -4.40625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4 0.40625 -3.296875 C 0.40625 -2.6875 0.78125 -2.265625 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.375 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.765625 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.078125 -2.375 2.15625 -2.609375 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.671875 1.515625 -3.90625 2.015625 -3.90625 C 2.421875 -3.90625 2.765625 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.328125 2.609375 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 1.890625 -7.078125 C 1.078125 -5.90625 0.328125 -4.921875 0.328125 -2.9375 C 0.328125 -0.953125 1.078125 0.046875 1.890625 1.21875 L 2.375 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.734375 1.625 -5.625 2.375 -6.734375 Z M 1.890625 -7.078125 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 3.34375 -6.0625 L 3 -6.703125 L 1.328125 -5.75 L 1.5625 -5.34375 Z M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 3.515625 -4.40625 L 3.453125 -3.921875 C 3.15625 -4.25 2.75 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.53125 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.109375 -0.15625 3.40625 -0.59375 L 3.40625 1.6875 L 4.171875 1.78125 L 4.171875 -4.40625 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.03125 1.3125 -2.203125 C 1.3125 -3.34375 1.71875 -3.90625 2.375 -3.90625 C 2.8125 -3.90625 3.125 -3.671875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 0.828125 -7.078125 L 0.328125 -6.734375 C 1.09375 -5.625 1.578125 -4.734375 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.328125 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.375 -0.953125 2.375 -2.9375 C 2.375 -4.921875 1.640625 -5.90625 0.828125 -7.078125 Z M 0.828125 -7.078125 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 1 -4.140625 C 0.671875 -4.140625 0.421875 -3.890625 0.421875 -3.5625 C 0.421875 -3.234375 0.671875 -2.984375 1 -2.984375 C 1.328125 -2.984375 1.578125 -3.234375 1.578125 -3.5625 C 1.578125 -3.890625 1.328125 -4.140625 1 -4.140625 Z M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.796875 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.328125 0.09375 1.578125 -0.15625 1.578125 -0.484375 C 1.578125 -0.796875 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 2.3125 -6.28125 C 1.234375 -6.28125 0.78125 -5.734375 0.78125 -4.984375 L 0.78125 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.78125 -3.8125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.8125 L 3.25 -3.8125 L 3.25 0 L 4.015625 0 L 4.015625 -4.40625 L 1.5625 -4.40625 L 1.5625 -5 C 1.5625 -5.421875 1.71875 -5.65625 2.34375 -5.65625 C 2.6875 -5.65625 2.984375 -5.578125 3.265625 -5.4375 L 3.53125 -5.984375 C 3.171875 -6.15625 2.8125 -6.28125 2.3125 -6.28125 Z M 2.3125 -6.28125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 0.5 -2.296875 L 2.875 -2.296875 L 2.875 -2.953125 L 0.5 -2.953125 Z M 0.5 -2.296875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 3.421875 -5.75 L 1.765625 -6.703125 L 1.421875 -6.0625 L 3.1875 -5.34375 Z M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 2.84375 -4.515625 C 2.296875 -4.515625 1.859375 -4.234375 1.546875 -3.796875 L 1.546875 -6.265625 L 0.765625 -6.1875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.078125 -3.90625 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.125 0 L 4.125 -3.171875 C 4.125 -4 3.65625 -4.515625 2.84375 -4.515625 Z M 2.84375 -4.515625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 2.296875 -5.65625 C 2.515625 -5.65625 2.78125 -5.625 3.0625 -5.5 L 3.3125 -6.0625 C 2.953125 -6.203125 2.671875 -6.28125 2.25 -6.28125 C 1.359375 -6.28125 0.875 -5.75 0.875 -5.015625 L 0.875 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.875 -3.8125 L 0.875 0 L 1.640625 0 L 1.640625 -3.8125 L 2.625 -3.8125 L 2.71875 -4.40625 L 1.640625 -4.40625 L 1.640625 -5.03125 C 1.640625 -5.453125 1.8125 -5.65625 2.296875 -5.65625 Z M 2.296875 -5.65625 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-0-30"> | |
| 96 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.796875 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.578125 -0.296875 1.578125 -0.484375 C 1.578125 -0.796875 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-0-31"> | |
| 99 | +<path d="M 4.03125 -4.40625 L 3.234375 -4.40625 L 2.078125 -0.5625 L 0.90625 -4.40625 L 0.078125 -4.40625 L 1.5625 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.1875 L 0.515625 1.78125 C 1.734375 1.65625 2.25 0.96875 2.5625 0.03125 Z M 4.03125 -4.40625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-0"> | |
| 102 | +<path d="M 2.859375 -1.046875 C 2.6875 -0.953125 2.53125 -0.90625 2.390625 -0.90625 C 2.109375 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.84375 -3.53125 L 2.984375 -4.453125 L 1.96875 -4.453125 L 1.96875 -5.5625 L 0.640625 -5.40625 L 0.640625 -4.453125 L 0.015625 -4.453125 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.5 0.140625 2.96875 0.03125 3.3125 -0.203125 Z M 2.859375 -1.046875 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-1"> | |
| 105 | +<path d="M 2.921875 -4.578125 C 2.40625 -4.578125 1.96875 -4.203125 1.78125 -3.578125 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.828125 0 L 1.828125 -2.234375 C 1.984375 -2.890625 2.21875 -3.296875 2.75 -3.296875 C 2.890625 -3.296875 3.015625 -3.265625 3.15625 -3.234375 L 3.359375 -4.515625 C 3.21875 -4.5625 3.09375 -4.578125 2.921875 -4.578125 Z M 2.921875 -4.578125 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-2"> | |
| 108 | +<path d="M 4.03125 -1.296875 L 4.03125 -3.015625 C 4.03125 -4.046875 3.484375 -4.59375 2.1875 -4.59375 C 1.6875 -4.59375 1.078125 -4.46875 0.515625 -4.265625 L 0.828125 -3.390625 C 1.265625 -3.546875 1.703125 -3.625 1.984375 -3.625 C 2.53125 -3.625 2.734375 -3.46875 2.734375 -2.9375 L 2.734375 -2.75 L 2.28125 -2.75 C 0.953125 -2.75 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.171875 0.140625 2.671875 -0.03125 2.984375 -0.515625 C 3.203125 -0.078125 3.546875 0.078125 4.0625 0.125 L 4.34375 -0.75 C 4.125 -0.828125 4.03125 -0.953125 4.03125 -1.296875 Z M 2.03125 -0.796875 C 1.703125 -0.796875 1.53125 -1.015625 1.53125 -1.359375 C 1.53125 -1.8125 1.8125 -2.015625 2.40625 -2.015625 L 2.734375 -2.015625 L 2.734375 -1.21875 C 2.578125 -0.96875 2.34375 -0.796875 2.03125 -0.796875 Z M 2.03125 -0.796875 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-3"> | |
| 111 | +<path d="M 3.109375 -4.59375 C 2.546875 -4.59375 2.125 -4.359375 1.765625 -3.90625 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.828125 0 L 1.828125 -3.046875 C 2.0625 -3.40625 2.3125 -3.625 2.609375 -3.625 C 2.859375 -3.625 3.015625 -3.5 3.015625 -3.015625 L 3.015625 0 L 4.34375 0 L 4.34375 -3.25 C 4.34375 -4.09375 3.890625 -4.59375 3.109375 -4.59375 Z M 3.109375 -4.59375 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-4"> | |
| 114 | +<path d="M 2.078125 -4.59375 C 0.96875 -4.59375 0.265625 -4 0.265625 -3.234375 C 0.265625 -2.546875 0.703125 -2.09375 1.578125 -1.84375 C 2.390625 -1.609375 2.515625 -1.53125 2.515625 -1.21875 C 2.515625 -0.953125 2.28125 -0.796875 1.875 -0.796875 C 1.4375 -0.796875 1.03125 -0.984375 0.6875 -1.234375 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.90625 0.140625 C 3.015625 0.140625 3.890625 -0.40625 3.890625 -1.328125 C 3.890625 -2.125 3.390625 -2.484375 2.515625 -2.734375 C 1.71875 -2.96875 1.59375 -3.078125 1.59375 -3.3125 C 1.59375 -3.515625 1.78125 -3.640625 2.140625 -3.640625 C 2.515625 -3.640625 2.890625 -3.515625 3.234375 -3.296875 L 3.71875 -4.046875 C 3.3125 -4.375 2.734375 -4.59375 2.078125 -4.59375 Z M 2.078125 -4.59375 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-5"> | |
| 117 | +<path d="M 2.453125 -4.59375 C 1.109375 -4.59375 0.265625 -3.59375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.078125 0.140625 3.5625 -0.0625 3.96875 -0.390625 L 3.390625 -1.203125 C 3.078125 -1 2.859375 -0.90625 2.53125 -0.90625 C 2.015625 -0.90625 1.65625 -1.203125 1.65625 -2.1875 C 1.65625 -3.1875 1.984375 -3.578125 2.546875 -3.578125 C 2.859375 -3.578125 3.109375 -3.46875 3.40625 -3.265625 L 3.96875 -4.046875 C 3.546875 -4.40625 3.0625 -4.59375 2.453125 -4.59375 Z M 2.453125 -4.59375 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-6"> | |
| 120 | +<path d="M 1.171875 -6.796875 C 0.71875 -6.796875 0.390625 -6.46875 0.390625 -6.03125 C 0.390625 -5.609375 0.71875 -5.28125 1.171875 -5.28125 C 1.640625 -5.28125 1.953125 -5.609375 1.953125 -6.03125 C 1.953125 -6.46875 1.640625 -6.796875 1.171875 -6.796875 Z M 1.828125 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.828125 0 Z M 1.828125 -4.453125 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-7"> | |
| 123 | +<path d="M 2.453125 -4.59375 C 1.09375 -4.59375 0.265625 -3.65625 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.796875 0.140625 4.625 -0.796875 4.625 -2.21875 C 4.625 -3.71875 3.796875 -4.59375 2.453125 -4.59375 Z M 2.453125 -3.625 C 2.984375 -3.625 3.25 -3.203125 3.25 -2.21875 C 3.25 -1.25 2.984375 -0.828125 2.453125 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.234375 C 1.640625 -3.1875 1.90625 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-8"> | |
| 126 | +<path d="M 4.390625 -2.3125 C 4.390625 -3.75 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.796875 -0.125 4.234375 -0.484375 L 3.6875 -1.21875 C 3.3125 -0.953125 2.984375 -0.828125 2.625 -0.828125 C 2.078125 -0.828125 1.703125 -1.03125 1.625 -1.828125 L 4.375 -1.828125 C 4.390625 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.6875 -3.4375 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.09375 -3.296875 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-9"> | |
| 129 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.28125 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.84375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.359375 L 0.453125 -6.21875 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-1-10"> | |
| 132 | +<path d="M 3.140625 -6.359375 L 3.140625 -4.171875 C 2.875 -4.4375 2.515625 -4.59375 2.078125 -4.59375 C 0.984375 -4.59375 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.953125 0.140625 C 2.5625 0.140625 2.96875 -0.15625 3.21875 -0.515625 L 3.296875 0 L 4.46875 0 L 4.46875 -6.21875 Z M 2.375 -0.828125 C 1.9375 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.21875 1.96875 -3.625 2.453125 -3.625 C 2.734375 -3.625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.9375 -1 2.6875 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-1-11"> | |
| 135 | +<path d="M 3.015625 -4.59375 C 2.578125 -4.59375 2.109375 -4.40625 1.734375 -3.953125 L 1.671875 -4.453125 L 0.515625 -4.453125 L 0.515625 1.859375 L 1.828125 1.71875 L 1.828125 -0.3125 C 2.109375 -0.015625 2.484375 0.140625 2.921875 0.140625 C 4.015625 0.140625 4.6875 -0.859375 4.6875 -2.234375 C 4.6875 -3.671875 4.171875 -4.59375 3.015625 -4.59375 Z M 2.5 -0.828125 C 2.234375 -0.828125 2.015625 -0.953125 1.828125 -1.21875 L 1.828125 -3.09375 C 2.03125 -3.421875 2.296875 -3.625 2.59375 -3.625 C 3.046875 -3.625 3.3125 -3.328125 3.3125 -2.21875 C 3.3125 -1.21875 3 -0.828125 2.5 -0.828125 Z M 2.5 -0.828125 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-1-12"> | |
| 138 | +<path d="M 3.5 -6 L 2.96875 -7 L 1.140625 -5.890625 L 1.515625 -5.203125 Z M 4.390625 -2.3125 C 4.390625 -3.75 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.796875 -0.125 4.234375 -0.484375 L 3.6875 -1.21875 C 3.3125 -0.953125 2.984375 -0.828125 2.625 -0.828125 C 2.078125 -0.828125 1.703125 -1.03125 1.609375 -1.828125 L 4.375 -1.828125 C 4.390625 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.671875 -3.421875 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.09375 -3.296875 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-1-13"> | |
| 141 | +<path d="M 1.921875 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 1.921875 0 Z M 1.921875 -5.796875 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-1-14"> | |
| 144 | +<path d="M 4.34375 -4.453125 L 3 -4.453125 L 2.171875 -1 L 1.390625 -4.453125 L -0.046875 -4.453125 L 1.375 0 L 2.953125 0 Z M 4.34375 -4.453125 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-1-15"> | |
| 147 | +<path d="M 4.25 -4.453125 L 2.921875 -4.453125 L 2.921875 -1.359375 C 2.734375 -1.015625 2.484375 -0.84375 2.203125 -0.84375 C 1.921875 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.453125 L 0.453125 -4.453125 L 0.453125 -1.25 C 0.453125 -0.390625 0.859375 0.140625 1.6875 0.140625 C 2.28125 0.140625 2.71875 -0.09375 3.046875 -0.5625 L 3.09375 0 L 4.25 0 Z M 4.25 -4.453125 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-1-16"> | |
| 150 | +<path d="M 1.171875 -6.796875 C 0.71875 -6.796875 0.390625 -6.46875 0.390625 -6.03125 C 0.390625 -5.609375 0.71875 -5.28125 1.171875 -5.28125 C 1.640625 -5.28125 1.953125 -5.609375 1.953125 -6.03125 C 1.953125 -6.46875 1.640625 -6.796875 1.171875 -6.796875 Z M 1.828125 -4.453125 L 0.515625 -4.453125 L 0.515625 -0.421875 C 0.515625 0.390625 0.171875 0.625 -0.390625 0.890625 L 0.046875 1.84375 C 1.09375 1.46875 1.828125 0.953125 1.828125 -0.5 Z M 1.828125 -4.453125 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-2-0"> | |
| 153 | +<path d="M 8.640625 -2.234375 C 8.640625 -2.28125 8.609375 -2.3125 8.5625 -2.34375 C 7.59375 -2.65625 6.875 -3.46875 6.6875 -4.484375 C 6.671875 -4.53125 6.625 -4.5625 6.578125 -4.5625 L 6.421875 -4.5625 C 6.359375 -4.5625 6.3125 -4.515625 6.3125 -4.4375 C 6.453125 -3.625 6.921875 -2.90625 7.59375 -2.421875 L 0.703125 -2.421875 C 0.578125 -2.421875 0.515625 -2.328125 0.515625 -2.234375 C 0.515625 -2.125 0.578125 -2.046875 0.703125 -2.046875 L 7.59375 -2.046875 C 6.921875 -1.5625 6.453125 -0.84375 6.3125 -0.015625 C 6.3125 0.0625 6.359375 0.109375 6.421875 0.109375 L 6.578125 0.109375 C 6.625 0.109375 6.671875 0.078125 6.6875 0.015625 C 6.875 -0.984375 7.59375 -1.8125 8.5625 -2.125 C 8.609375 -2.140625 8.640625 -2.1875 8.640625 -2.234375 Z M 8.640625 -2.234375 "/> | |
| 154 | +</g> | |
| 155 | +</g> | |
| 156 | +<clipPath id="clip-0"> | |
| 157 | +<path clip-rule="nonzero" d="M 0.503906 0 L 312.984375 0 L 312.984375 28 L 0.503906 28 Z M 0.503906 0 "/> | |
| 158 | +</clipPath> | |
| 159 | +<clipPath id="clip-1"> | |
| 160 | +<path clip-rule="nonzero" d="M 0.503906 25 L 312.984375 25 L 312.984375 63 L 0.503906 63 Z M 0.503906 25 "/> | |
| 161 | +</clipPath> | |
| 162 | +<clipPath id="clip-2"> | |
| 163 | +<path clip-rule="nonzero" d="M 0.503906 60 L 312.984375 60 L 312.984375 98 L 0.503906 98 Z M 0.503906 60 "/> | |
| 164 | +</clipPath> | |
| 165 | +<clipPath id="clip-3"> | |
| 166 | +<path clip-rule="nonzero" d="M 0.503906 94 L 312.984375 94 L 312.984375 122.613281 L 0.503906 122.613281 Z M 0.503906 94 "/> | |
| 167 | +</clipPath> | |
| 168 | +</defs> | |
| 169 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.871094 5.152344 L 9.617188 5.152344 C 7.429688 5.152344 5.652344 6.925781 5.652344 9.113281 L 5.652344 18.101562 C 5.652344 20.289062 7.429688 22.0625 9.617188 22.0625 L 303.871094 22.0625 C 306.058594 22.0625 307.835938 20.289062 307.835938 18.101562 L 307.835938 9.113281 C 307.835938 6.925781 306.058594 5.152344 303.871094 5.152344 Z M 303.871094 5.152344 "/> | |
| 170 | +<g clip-path="url(#clip-0)"> | |
| 171 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.95624 8.502615 L -147.956207 8.502615 C -150.156037 8.502615 -151.943399 6.719182 -151.943399 4.519352 L -151.943399 -4.519591 C -151.943399 -6.71942 -150.156037 -8.502854 -147.956207 -8.502854 L 147.95624 -8.502854 C 150.15607 -8.502854 151.943432 -6.71942 151.943432 -4.519591 L 151.943432 4.519352 C 151.943432 6.719182 150.15607 8.502615 147.95624 8.502615 Z M 147.95624 8.502615 " transform="matrix(0.994395, 0, 0, -0.994395, 156.744124, 13.607303)"/> | |
| 172 | +</g> | |
| 173 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 174 | +<use xlink:href="#glyph-0-0" x="101.528344" y="16.012745"/> | |
| 175 | +</g> | |
| 176 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 177 | +<use xlink:href="#glyph-0-1" x="106.230175" y="16.012745"/> | |
| 178 | +<use xlink:href="#glyph-0-2" x="109.440159" y="16.012745"/> | |
| 179 | +<use xlink:href="#glyph-0-3" x="111.75336" y="16.012745"/> | |
| 180 | +</g> | |
| 181 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 182 | +<use xlink:href="#glyph-0-4" x="118.609149" y="16.012745"/> | |
| 183 | +<use xlink:href="#glyph-0-5" x="123.554033" y="16.012745"/> | |
| 184 | +</g> | |
| 185 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 186 | +<use xlink:href="#glyph-0-6" x="130.912692" y="16.012745"/> | |
| 187 | +</g> | |
| 188 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 189 | +<use xlink:href="#glyph-0-5" x="135.002698" y="16.012745"/> | |
| 190 | +<use xlink:href="#glyph-0-7" x="139.562049" y="16.012745"/> | |
| 191 | +<use xlink:href="#glyph-0-8" x="144.414741" y="16.012745"/> | |
| 192 | +</g> | |
| 193 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 194 | +<use xlink:href="#glyph-0-5" x="147.314622" y="16.012745"/> | |
| 195 | +</g> | |
| 196 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 197 | +<use xlink:href="#glyph-0-4" x="154.6649" y="16.012745"/> | |
| 198 | +<use xlink:href="#glyph-0-9" x="159.609784" y="16.012745"/> | |
| 199 | +</g> | |
| 200 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 201 | +<use xlink:href="#glyph-0-10" x="167.219878" y="16.012745"/> | |
| 202 | +</g> | |
| 203 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 204 | +<use xlink:href="#glyph-0-11" x="171.100355" y="16.012745"/> | |
| 205 | +<use xlink:href="#glyph-0-12" x="175.994952" y="16.012745"/> | |
| 206 | +<use xlink:href="#glyph-0-13" x="183.118938" y="16.012745"/> | |
| 207 | +</g> | |
| 208 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 209 | +<use xlink:href="#glyph-0-14" x="187.988393" y="16.012745"/> | |
| 210 | +<use xlink:href="#glyph-0-1" x="192.505838" y="16.012745"/> | |
| 211 | +</g> | |
| 212 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 213 | +<use xlink:href="#glyph-0-14" x="195.548199" y="16.012745"/> | |
| 214 | +<use xlink:href="#glyph-0-15" x="200.065644" y="16.012745"/> | |
| 215 | +<use xlink:href="#glyph-0-16" x="204.977004" y="16.012745"/> | |
| 216 | +</g> | |
| 217 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 218 | +<use xlink:href="#glyph-0-5" x="207.399159" y="16.012745"/> | |
| 219 | +</g> | |
| 220 | +<path fill-rule="nonzero" fill="rgb(96.998596%, 94.645691%, 87.11853%)" fill-opacity="1" d="M 303.871094 30.917969 L 9.617188 30.917969 C 7.429688 30.917969 5.652344 32.691406 5.652344 34.878906 L 5.652344 52.910156 C 5.652344 55.097656 7.429688 56.871094 9.617188 56.871094 L 303.871094 56.871094 C 306.058594 56.871094 307.835938 55.097656 307.835938 52.910156 L 307.835938 34.878906 C 307.835938 32.691406 306.058594 30.917969 303.871094 30.917969 Z M 303.871094 30.917969 "/> | |
| 221 | +<g clip-path="url(#clip-1)"> | |
| 222 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.95624 -17.408236 L -147.956207 -17.408236 C -150.156037 -17.408236 -151.943399 -19.191669 -151.943399 -21.391499 L -151.943399 -39.524381 C -151.943399 -41.72421 -150.156037 -43.507644 -147.956207 -43.507644 L 147.95624 -43.507644 C 150.15607 -43.507644 151.943432 -41.72421 151.943432 -39.524381 L 151.943432 -21.391499 C 151.943432 -19.191669 150.15607 -17.408236 147.95624 -17.408236 Z M 147.95624 -17.408236 " transform="matrix(0.994395, 0, 0, -0.994395, 156.744124, 13.607303)"/> | |
| 223 | +</g> | |
| 224 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 225 | +<use xlink:href="#glyph-0-17" x="36.220448" y="41.081447"/> | |
| 226 | +<use xlink:href="#glyph-0-18" x="41.022852" y="41.081447"/> | |
| 227 | +<use xlink:href="#glyph-0-9" x="43.344434" y="41.081447"/> | |
| 228 | +<use xlink:href="#glyph-0-19" x="48.163601" y="41.081447"/> | |
| 229 | +<use xlink:href="#glyph-0-8" x="52.077603" y="41.081447"/> | |
| 230 | +</g> | |
| 231 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 232 | +<use xlink:href="#glyph-0-5" x="54.977484" y="41.081447"/> | |
| 233 | +<use xlink:href="#glyph-0-12" x="59.536835" y="41.081447"/> | |
| 234 | +<use xlink:href="#glyph-0-5" x="66.660821" y="41.081447"/> | |
| 235 | +<use xlink:href="#glyph-0-7" x="71.220172" y="41.081447"/> | |
| 236 | +<use xlink:href="#glyph-0-8" x="76.072864" y="41.081447"/> | |
| 237 | +<use xlink:href="#glyph-0-19" x="79.098463" y="41.081447"/> | |
| 238 | +</g> | |
| 239 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 240 | +<use xlink:href="#glyph-1-0" x="85.803391" y="41.081447"/> | |
| 241 | +<use xlink:href="#glyph-1-1" x="89.038519" y="41.081447"/> | |
| 242 | +</g> | |
| 243 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 244 | +<use xlink:href="#glyph-1-2" x="92.173073" y="41.081447"/> | |
| 245 | +<use xlink:href="#glyph-1-3" x="96.749186" y="41.081447"/> | |
| 246 | +<use xlink:href="#glyph-1-4" x="101.551591" y="41.081447"/> | |
| 247 | +<use xlink:href="#glyph-1-2" x="105.574548" y="41.081447"/> | |
| 248 | +<use xlink:href="#glyph-1-5" x="110.150661" y="41.081447"/> | |
| 249 | +<use xlink:href="#glyph-1-0" x="114.165237" y="41.081447"/> | |
| 250 | +<use xlink:href="#glyph-1-6" x="117.400365" y="41.081447"/> | |
| 251 | +<use xlink:href="#glyph-1-7" x="119.74709" y="41.081447"/> | |
| 252 | +<use xlink:href="#glyph-1-3" x="124.641687" y="41.081447"/> | |
| 253 | +<use xlink:href="#glyph-1-3" x="129.444092" y="41.081447"/> | |
| 254 | +<use xlink:href="#glyph-1-8" x="134.246497" y="41.081447"/> | |
| 255 | +<use xlink:href="#glyph-1-9" x="138.88966" y="41.081447"/> | |
| 256 | +<use xlink:href="#glyph-1-4" x="141.404008" y="41.081447"/> | |
| 257 | +</g> | |
| 258 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 259 | +<use xlink:href="#glyph-0-20" x="148.226272" y="41.081447"/> | |
| 260 | +<use xlink:href="#glyph-0-5" x="150.941768" y="41.081447"/> | |
| 261 | +<use xlink:href="#glyph-0-7" x="155.501119" y="41.081447"/> | |
| 262 | +</g> | |
| 263 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 264 | +<use xlink:href="#glyph-0-19" x="163.144737" y="41.081447"/> | |
| 265 | +<use xlink:href="#glyph-0-21" x="167.058739" y="41.081447"/> | |
| 266 | +<use xlink:href="#glyph-0-22" x="171.61809" y="41.081447"/> | |
| 267 | +<use xlink:href="#glyph-0-9" x="176.562975" y="41.081447"/> | |
| 268 | +<use xlink:href="#glyph-0-5" x="181.382142" y="41.081447"/> | |
| 269 | +<use xlink:href="#glyph-0-7" x="185.941493" y="41.081447"/> | |
| 270 | +<use xlink:href="#glyph-0-10" x="190.794185" y="41.081447"/> | |
| 271 | +</g> | |
| 272 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 273 | +<use xlink:href="#glyph-0-5" x="194.674662" y="41.081447"/> | |
| 274 | +<use xlink:href="#glyph-0-23" x="199.234013" y="41.081447"/> | |
| 275 | +</g> | |
| 276 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 277 | +<use xlink:href="#glyph-0-24" x="204.740435" y="41.081447"/> | |
| 278 | +</g> | |
| 279 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 280 | +<use xlink:href="#glyph-0-4" x="209.551221" y="41.081447"/> | |
| 281 | +<use xlink:href="#glyph-0-1" x="214.496106" y="41.081447"/> | |
| 282 | +</g> | |
| 283 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 284 | +<use xlink:href="#glyph-0-11" x="217.538467" y="41.081447"/> | |
| 285 | +<use xlink:href="#glyph-0-2" x="222.433064" y="41.081447"/> | |
| 286 | +<use xlink:href="#glyph-0-8" x="224.746265" y="41.081447"/> | |
| 287 | +<use xlink:href="#glyph-0-19" x="227.771863" y="41.081447"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-2-0" x="234.476618" y="41.081447"/> | |
| 291 | +</g> | |
| 292 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 293 | +<use xlink:href="#glyph-0-25" x="246.431558" y="41.081447"/> | |
| 294 | +<use xlink:href="#glyph-0-7" x="251.225582" y="41.081447"/> | |
| 295 | +<use xlink:href="#glyph-0-14" x="256.078274" y="41.081447"/> | |
| 296 | +<use xlink:href="#glyph-0-7" x="260.595719" y="41.081447"/> | |
| 297 | +<use xlink:href="#glyph-0-10" x="265.448411" y="41.081447"/> | |
| 298 | +</g> | |
| 299 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 300 | +<use xlink:href="#glyph-0-5" x="269.328888" y="41.081447"/> | |
| 301 | +<use xlink:href="#glyph-0-26" x="273.888239" y="41.081447"/> | |
| 302 | +</g> | |
| 303 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 304 | +<use xlink:href="#glyph-0-12" x="33.330735" y="51.979024"/> | |
| 305 | +<use xlink:href="#glyph-0-5" x="40.454721" y="51.979024"/> | |
| 306 | +<use xlink:href="#glyph-0-7" x="45.014072" y="51.979024"/> | |
| 307 | +<use xlink:href="#glyph-0-8" x="49.866764" y="51.979024"/> | |
| 308 | +</g> | |
| 309 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 310 | +<use xlink:href="#glyph-2-0" x="55.683116" y="51.979024"/> | |
| 311 | +</g> | |
| 312 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 313 | +<use xlink:href="#glyph-0-10" x="67.646437" y="51.979024"/> | |
| 314 | +</g> | |
| 315 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 316 | +<use xlink:href="#glyph-0-11" x="71.526915" y="51.979024"/> | |
| 317 | +<use xlink:href="#glyph-0-7" x="76.421512" y="51.979024"/> | |
| 318 | +<use xlink:href="#glyph-0-4" x="81.274204" y="51.979024"/> | |
| 319 | +<use xlink:href="#glyph-0-2" x="86.219088" y="51.979024"/> | |
| 320 | +<use xlink:href="#glyph-0-8" x="88.532289" y="51.979024"/> | |
| 321 | +<use xlink:href="#glyph-0-2" x="91.557887" y="51.979024"/> | |
| 322 | +<use xlink:href="#glyph-0-11" x="93.871088" y="51.979024"/> | |
| 323 | +<use xlink:href="#glyph-0-7" x="98.765685" y="51.979024"/> | |
| 324 | +<use xlink:href="#glyph-0-19" x="103.618377" y="51.979024"/> | |
| 325 | +</g> | |
| 326 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 327 | +<use xlink:href="#glyph-0-4" x="110.323305" y="51.979024"/> | |
| 328 | +<use xlink:href="#glyph-0-5" x="115.26819" y="51.979024"/> | |
| 329 | +</g> | |
| 330 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 331 | +<use xlink:href="#glyph-0-6" x="122.618467" y="51.979024"/> | |
| 332 | +</g> | |
| 333 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 334 | +<use xlink:href="#glyph-0-5" x="126.708473" y="51.979024"/> | |
| 335 | +<use xlink:href="#glyph-0-7" x="131.267824" y="51.979024"/> | |
| 336 | +<use xlink:href="#glyph-0-8" x="136.120516" y="51.979024"/> | |
| 337 | +</g> | |
| 338 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 339 | +<use xlink:href="#glyph-0-5" x="139.020397" y="51.979024"/> | |
| 340 | +</g> | |
| 341 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 342 | +<use xlink:href="#glyph-2-0" x="146.370502" y="51.979024"/> | |
| 343 | +</g> | |
| 344 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 345 | +<use xlink:href="#glyph-0-4" x="158.333823" y="51.979024"/> | |
| 346 | +<use xlink:href="#glyph-0-21" x="163.278708" y="51.979024"/> | |
| 347 | +<use xlink:href="#glyph-0-13" x="167.838059" y="51.979024"/> | |
| 348 | +<use xlink:href="#glyph-0-5" x="172.749419" y="51.979024"/> | |
| 349 | +<use xlink:href="#glyph-0-7" x="177.30877" y="51.979024"/> | |
| 350 | +<use xlink:href="#glyph-0-19" x="182.161461" y="51.979024"/> | |
| 351 | +<use xlink:href="#glyph-0-5" x="186.075463" y="51.979024"/> | |
| 352 | +<use xlink:href="#glyph-0-19" x="190.634814" y="51.979024"/> | |
| 353 | +</g> | |
| 354 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-0-14" x="197.339743" y="51.979024"/> | |
| 356 | +<use xlink:href="#glyph-0-13" x="201.857188" y="51.979024"/> | |
| 357 | +<use xlink:href="#glyph-0-1" x="206.768548" y="51.979024"/> | |
| 358 | +</g> | |
| 359 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 360 | +<use xlink:href="#glyph-0-27" x="209.810909" y="51.979024"/> | |
| 361 | +<use xlink:href="#glyph-0-19" x="214.37026" y="51.979024"/> | |
| 362 | +</g> | |
| 363 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 364 | +<use xlink:href="#glyph-0-14" x="221.075188" y="51.979024"/> | |
| 365 | +<use xlink:href="#glyph-0-10" x="225.592633" y="51.979024"/> | |
| 366 | +<use xlink:href="#glyph-0-28" x="229.598828" y="51.979024"/> | |
| 367 | +<use xlink:href="#glyph-0-14" x="234.45152" y="51.979024"/> | |
| 368 | +<use xlink:href="#glyph-0-8" x="238.968965" y="51.979024"/> | |
| 369 | +</g> | |
| 370 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 371 | +<use xlink:href="#glyph-2-0" x="244.794233" y="51.979024"/> | |
| 372 | +</g> | |
| 373 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 374 | +<use xlink:href="#glyph-0-8" x="256.749173" y="51.979024"/> | |
| 375 | +</g> | |
| 376 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 377 | +<use xlink:href="#glyph-0-5" x="259.649055" y="51.979024"/> | |
| 378 | +<use xlink:href="#glyph-0-12" x="264.208406" y="51.979024"/> | |
| 379 | +<use xlink:href="#glyph-0-13" x="271.332392" y="51.979024"/> | |
| 380 | +<use xlink:href="#glyph-0-19" x="276.243752" y="51.979024"/> | |
| 381 | +</g> | |
| 382 | +<path fill-rule="nonzero" fill="rgb(96.998596%, 94.645691%, 87.11853%)" fill-opacity="1" d="M 303.871094 65.726562 L 9.617188 65.726562 C 7.429688 65.726562 5.652344 67.5 5.652344 69.6875 L 5.652344 87.734375 C 5.652344 89.921875 7.429688 91.699219 9.617188 91.699219 L 303.871094 91.699219 C 306.058594 91.699219 307.835938 89.921875 307.835938 87.734375 L 307.835938 69.6875 C 307.835938 67.5 306.058594 65.726562 303.871094 65.726562 Z M 303.871094 65.726562 "/> | |
| 383 | +<g clip-path="url(#clip-2)"> | |
| 384 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.95624 -52.413026 L -147.956207 -52.413026 C -150.156037 -52.413026 -151.943399 -54.196459 -151.943399 -56.396289 L -151.943399 -74.544884 C -151.943399 -76.744713 -150.156037 -78.532075 -147.956207 -78.532075 L 147.95624 -78.532075 C 150.15607 -78.532075 151.943432 -76.744713 151.943432 -74.544884 L 151.943432 -56.396289 C 151.943432 -54.196459 150.15607 -52.413026 147.95624 -52.413026 Z M 147.95624 -52.413026 " transform="matrix(0.994395, 0, 0, -0.994395, 156.744124, 13.607303)"/> | |
| 385 | +</g> | |
| 386 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 387 | +<use xlink:href="#glyph-0-17" x="49.474741" y="75.90616"/> | |
| 388 | +<use xlink:href="#glyph-0-18" x="54.277145" y="75.90616"/> | |
| 389 | +<use xlink:href="#glyph-0-9" x="56.598727" y="75.90616"/> | |
| 390 | +<use xlink:href="#glyph-0-19" x="61.417894" y="75.90616"/> | |
| 391 | +<use xlink:href="#glyph-0-8" x="65.331896" y="75.90616"/> | |
| 392 | +</g> | |
| 393 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 394 | +<use xlink:href="#glyph-0-5" x="68.231777" y="75.90616"/> | |
| 395 | +<use xlink:href="#glyph-0-12" x="72.791128" y="75.90616"/> | |
| 396 | +<use xlink:href="#glyph-0-5" x="79.915114" y="75.90616"/> | |
| 397 | +<use xlink:href="#glyph-0-7" x="84.474466" y="75.90616"/> | |
| 398 | +<use xlink:href="#glyph-0-8" x="89.327157" y="75.90616"/> | |
| 399 | +<use xlink:href="#glyph-0-19" x="92.352756" y="75.90616"/> | |
| 400 | +</g> | |
| 401 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 402 | +<use xlink:href="#glyph-1-10" x="99.057684" y="75.90616"/> | |
| 403 | +<use xlink:href="#glyph-1-8" x="104.036093" y="75.90616"/> | |
| 404 | +</g> | |
| 405 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 406 | +<use xlink:href="#glyph-1-11" x="111.478564" y="75.90616"/> | |
| 407 | +<use xlink:href="#glyph-1-1" x="116.431829" y="75.90616"/> | |
| 408 | +</g> | |
| 409 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 410 | +<use xlink:href="#glyph-1-7" x="119.61667" y="75.90616"/> | |
| 411 | +<use xlink:href="#glyph-1-11" x="124.511268" y="75.90616"/> | |
| 412 | +<use xlink:href="#glyph-1-1" x="129.464533" y="75.90616"/> | |
| 413 | +<use xlink:href="#glyph-1-6" x="132.816997" y="75.90616"/> | |
| 414 | +<use xlink:href="#glyph-1-12" x="135.163722" y="75.90616"/> | |
| 415 | +<use xlink:href="#glyph-1-0" x="139.806885" y="75.90616"/> | |
| 416 | +</g> | |
| 417 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 418 | +<use xlink:href="#glyph-1-12" x="142.891152" y="75.90616"/> | |
| 419 | +</g> | |
| 420 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 421 | +<use xlink:href="#glyph-0-20" x="150.325241" y="75.90616"/> | |
| 422 | +<use xlink:href="#glyph-0-14" x="153.040737" y="75.90616"/> | |
| 423 | +<use xlink:href="#glyph-0-4" x="157.558182" y="75.90616"/> | |
| 424 | +<use xlink:href="#glyph-0-4" x="162.503067" y="75.90616"/> | |
| 425 | +<use xlink:href="#glyph-0-2" x="167.447951" y="75.90616"/> | |
| 426 | +<use xlink:href="#glyph-0-8" x="169.761151" y="75.90616"/> | |
| 427 | +<use xlink:href="#glyph-0-2" x="172.78675" y="75.90616"/> | |
| 428 | +<use xlink:href="#glyph-0-29" x="175.099951" y="75.90616"/> | |
| 429 | +</g> | |
| 430 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 431 | +<use xlink:href="#glyph-0-19" x="177.865733" y="75.90616"/> | |
| 432 | +<use xlink:href="#glyph-0-23" x="181.779735" y="75.90616"/> | |
| 433 | +</g> | |
| 434 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 435 | +<use xlink:href="#glyph-0-24" x="187.286157" y="75.90616"/> | |
| 436 | +</g> | |
| 437 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 438 | +<use xlink:href="#glyph-0-16" x="192.088562" y="75.90616"/> | |
| 439 | +</g> | |
| 440 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 441 | +<use xlink:href="#glyph-0-11" x="194.510717" y="75.90616"/> | |
| 442 | +<use xlink:href="#glyph-0-10" x="199.405315" y="75.90616"/> | |
| 443 | +</g> | |
| 444 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 445 | +<use xlink:href="#glyph-0-14" x="203.369604" y="75.90616"/> | |
| 446 | +</g> | |
| 447 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 448 | +<use xlink:href="#glyph-0-16" x="207.845143" y="75.90616"/> | |
| 449 | +<use xlink:href="#glyph-0-2" x="210.309204" y="75.90616"/> | |
| 450 | +<use xlink:href="#glyph-0-19" x="212.622405" y="75.90616"/> | |
| 451 | +<use xlink:href="#glyph-0-14" x="216.536406" y="75.90616"/> | |
| 452 | +<use xlink:href="#glyph-0-8" x="221.053852" y="75.90616"/> | |
| 453 | +<use xlink:href="#glyph-0-2" x="224.079451" y="75.90616"/> | |
| 454 | +<use xlink:href="#glyph-0-11" x="226.392651" y="75.90616"/> | |
| 455 | +<use xlink:href="#glyph-0-7" x="231.287248" y="75.90616"/> | |
| 456 | +<use xlink:href="#glyph-0-30" x="236.13994" y="75.90616"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-0-10" x="240.950726" y="75.90616"/> | |
| 460 | +</g> | |
| 461 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 462 | +<use xlink:href="#glyph-0-14" x="244.915015" y="75.90616"/> | |
| 463 | +<use xlink:href="#glyph-0-1" x="249.43246" y="75.90616"/> | |
| 464 | +</g> | |
| 465 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 466 | +<use xlink:href="#glyph-0-14" x="252.474821" y="75.90616"/> | |
| 467 | +<use xlink:href="#glyph-0-10" x="256.992267" y="75.90616"/> | |
| 468 | +</g> | |
| 469 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 470 | +<use xlink:href="#glyph-0-26" x="260.638071" y="75.90616"/> | |
| 471 | +</g> | |
| 472 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 473 | +<use xlink:href="#glyph-0-8" x="53.549772" y="86.803737"/> | |
| 474 | +</g> | |
| 475 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 476 | +<use xlink:href="#glyph-0-21" x="56.449653" y="86.803737"/> | |
| 477 | +<use xlink:href="#glyph-0-1" x="61.009005" y="86.803737"/> | |
| 478 | +<use xlink:href="#glyph-0-2" x="64.218989" y="86.803737"/> | |
| 479 | +<use xlink:href="#glyph-0-19" x="66.532189" y="86.803737"/> | |
| 480 | +<use xlink:href="#glyph-0-8" x="70.446191" y="86.803737"/> | |
| 481 | +<use xlink:href="#glyph-0-2" x="73.47179" y="86.803737"/> | |
| 482 | +<use xlink:href="#glyph-0-22" x="75.78499" y="86.803737"/> | |
| 483 | +<use xlink:href="#glyph-0-9" x="80.729874" y="86.803737"/> | |
| 484 | +<use xlink:href="#glyph-0-5" x="85.549042" y="86.803737"/> | |
| 485 | +<use xlink:href="#glyph-0-19" x="90.108393" y="86.803737"/> | |
| 486 | +</g> | |
| 487 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 488 | +<use xlink:href="#glyph-0-13" x="96.813321" y="86.803737"/> | |
| 489 | +<use xlink:href="#glyph-0-28" x="101.724681" y="86.803737"/> | |
| 490 | +</g> | |
| 491 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 492 | +<use xlink:href="#glyph-0-31" x="106.518704" y="86.803737"/> | |
| 493 | +</g> | |
| 494 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 495 | +<use xlink:href="#glyph-0-19" x="110.583567" y="86.803737"/> | |
| 496 | +<use xlink:href="#glyph-0-2" x="114.497569" y="86.803737"/> | |
| 497 | +<use xlink:href="#glyph-0-22" x="116.810769" y="86.803737"/> | |
| 498 | +<use xlink:href="#glyph-0-9" x="121.755653" y="86.803737"/> | |
| 499 | +<use xlink:href="#glyph-0-5" x="126.574821" y="86.803737"/> | |
| 500 | +<use xlink:href="#glyph-0-19" x="131.134172" y="86.803737"/> | |
| 501 | +<use xlink:href="#glyph-0-30" x="135.048174" y="86.803737"/> | |
| 502 | +</g> | |
| 503 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 504 | +<use xlink:href="#glyph-0-10" x="139.858959" y="86.803737"/> | |
| 505 | +</g> | |
| 506 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 507 | +<use xlink:href="#glyph-0-11" x="143.739437" y="86.803737"/> | |
| 508 | +<use xlink:href="#glyph-0-12" x="148.634034" y="86.803737"/> | |
| 509 | +<use xlink:href="#glyph-0-13" x="155.75802" y="86.803737"/> | |
| 510 | +<use xlink:href="#glyph-0-11" x="160.66938" y="86.803737"/> | |
| 511 | +<use xlink:href="#glyph-0-19" x="165.563978" y="86.803737"/> | |
| 512 | +<use xlink:href="#glyph-0-14" x="169.47798" y="86.803737"/> | |
| 513 | +<use xlink:href="#glyph-0-7" x="173.995425" y="86.803737"/> | |
| 514 | +<use xlink:href="#glyph-0-8" x="178.848117" y="86.803737"/> | |
| 515 | +</g> | |
| 516 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 517 | +<use xlink:href="#glyph-0-5" x="181.747998" y="86.803737"/> | |
| 518 | +<use xlink:href="#glyph-0-19" x="186.307349" y="86.803737"/> | |
| 519 | +</g> | |
| 520 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 521 | +<use xlink:href="#glyph-0-7" x="193.012277" y="86.803737"/> | |
| 522 | +<use xlink:href="#glyph-0-11" x="197.864969" y="86.803737"/> | |
| 523 | +<use xlink:href="#glyph-0-7" x="202.759567" y="86.803737"/> | |
| 524 | +</g> | |
| 525 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 526 | +<use xlink:href="#glyph-0-2" x="210.403185" y="86.803737"/> | |
| 527 | +<use xlink:href="#glyph-0-12" x="212.716385" y="86.803737"/> | |
| 528 | +<use xlink:href="#glyph-0-12" x="219.840371" y="86.803737"/> | |
| 529 | +<use xlink:href="#glyph-0-11" x="226.964357" y="86.803737"/> | |
| 530 | +<use xlink:href="#glyph-0-15" x="231.858955" y="86.803737"/> | |
| 531 | +<use xlink:href="#glyph-0-2" x="236.770315" y="86.803737"/> | |
| 532 | +<use xlink:href="#glyph-0-16" x="239.083515" y="86.803737"/> | |
| 533 | +<use xlink:href="#glyph-0-2" x="241.547576" y="86.803737"/> | |
| 534 | +<use xlink:href="#glyph-0-27" x="243.860776" y="86.803737"/> | |
| 535 | +<use xlink:href="#glyph-0-1" x="248.420127" y="86.803737"/> | |
| 536 | +</g> | |
| 537 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 538 | +<use xlink:href="#glyph-0-5" x="251.462488" y="86.803737"/> | |
| 539 | +<use xlink:href="#glyph-0-19" x="256.02184" y="86.803737"/> | |
| 540 | +</g> | |
| 541 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.871094 100.550781 L 9.617188 100.550781 C 7.429688 100.550781 5.652344 102.324219 5.652344 104.511719 L 5.652344 113.5 C 5.652344 115.6875 7.429688 117.464844 9.617188 117.464844 L 303.871094 117.464844 C 306.058594 117.464844 307.835938 115.6875 307.835938 113.5 L 307.835938 104.511719 C 307.835938 102.324219 306.058594 100.550781 303.871094 100.550781 Z M 303.871094 100.550781 "/> | |
| 542 | +<g clip-path="url(#clip-3)"> | |
| 543 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.95624 -87.433529 L -147.956207 -87.433529 C -150.156037 -87.433529 -151.943399 -89.216962 -151.943399 -91.416792 L -151.943399 -100.455735 C -151.943399 -102.655564 -150.156037 -104.442926 -147.956207 -104.442926 L 147.95624 -104.442926 C 150.15607 -104.442926 151.943432 -102.655564 151.943432 -100.455735 L 151.943432 -91.416792 C 151.943432 -89.216962 150.15607 -87.433529 147.95624 -87.433529 Z M 147.95624 -87.433529 " transform="matrix(0.994395, 0, 0, -0.994395, 156.744124, 13.607303)"/> | |
| 544 | +</g> | |
| 545 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 546 | +<use xlink:href="#glyph-1-13" x="72.506921" y="111.616879"/> | |
| 547 | +<use xlink:href="#glyph-1-3" x="74.962601" y="111.616879"/> | |
| 548 | +<use xlink:href="#glyph-1-10" x="79.765006" y="111.616879"/> | |
| 549 | +<use xlink:href="#glyph-1-6" x="84.743415" y="111.616879"/> | |
| 550 | +<use xlink:href="#glyph-1-5" x="87.09014" y="111.616879"/> | |
| 551 | +</g> | |
| 552 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 553 | +<use xlink:href="#glyph-1-2" x="91.06281" y="111.616879"/> | |
| 554 | +<use xlink:href="#glyph-1-0" x="95.638923" y="111.616879"/> | |
| 555 | +<use xlink:href="#glyph-1-6" x="98.874051" y="111.616879"/> | |
| 556 | +<use xlink:href="#glyph-1-7" x="101.220776" y="111.616879"/> | |
| 557 | +<use xlink:href="#glyph-1-3" x="106.115374" y="111.616879"/> | |
| 558 | +</g> | |
| 559 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 560 | +<use xlink:href="#glyph-1-10" x="113.708705" y="111.616879"/> | |
| 561 | +<use xlink:href="#glyph-1-8" x="118.687114" y="111.616879"/> | |
| 562 | +</g> | |
| 563 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 564 | +<use xlink:href="#glyph-1-14" x="126.129584" y="111.616879"/> | |
| 565 | +</g> | |
| 566 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 567 | +<use xlink:href="#glyph-1-2" x="130.28664" y="111.616879"/> | |
| 568 | +</g> | |
| 569 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 570 | +<use xlink:href="#glyph-1-9" x="134.795704" y="111.616879"/> | |
| 571 | +</g> | |
| 572 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 573 | +<use xlink:href="#glyph-1-8" x="137.268146" y="111.616879"/> | |
| 574 | +<use xlink:href="#glyph-1-15" x="141.911309" y="111.616879"/> | |
| 575 | +<use xlink:href="#glyph-1-1" x="146.671808" y="111.616879"/> | |
| 576 | +</g> | |
| 577 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 578 | +<use xlink:href="#glyph-1-2" x="152.815198" y="111.616879"/> | |
| 579 | +<use xlink:href="#glyph-1-16" x="157.391312" y="111.616879"/> | |
| 580 | +<use xlink:href="#glyph-1-15" x="159.738036" y="111.616879"/> | |
| 581 | +<use xlink:href="#glyph-1-4" x="164.498535" y="111.616879"/> | |
| 582 | +<use xlink:href="#glyph-1-0" x="168.521492" y="111.616879"/> | |
| 583 | +</g> | |
| 584 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 585 | +<use xlink:href="#glyph-1-12" x="171.605759" y="111.616879"/> | |
| 586 | +<use xlink:href="#glyph-1-8" x="176.248922" y="111.616879"/> | |
| 587 | +</g> | |
| 588 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 589 | +<use xlink:href="#glyph-0-4" x="183.683011" y="111.616879"/> | |
| 590 | +<use xlink:href="#glyph-0-9" x="188.627896" y="111.616879"/> | |
| 591 | +</g> | |
| 592 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 593 | +<use xlink:href="#glyph-0-10" x="196.24637" y="111.616879"/> | |
| 594 | +</g> | |
| 595 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 596 | +<use xlink:href="#glyph-0-11" x="200.126847" y="111.616879"/> | |
| 597 | +<use xlink:href="#glyph-0-12" x="205.021445" y="111.616879"/> | |
| 598 | +<use xlink:href="#glyph-0-13" x="212.145431" y="111.616879"/> | |
| 599 | +</g> | |
| 600 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 601 | +<use xlink:href="#glyph-0-14" x="217.014885" y="111.616879"/> | |
| 602 | +<use xlink:href="#glyph-0-1" x="221.53233" y="111.616879"/> | |
| 603 | +</g> | |
| 604 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 605 | +<use xlink:href="#glyph-0-14" x="224.574692" y="111.616879"/> | |
| 606 | +<use xlink:href="#glyph-0-15" x="229.092137" y="111.616879"/> | |
| 607 | +<use xlink:href="#glyph-0-16" x="234.003497" y="111.616879"/> | |
| 608 | +</g> | |
| 609 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 610 | +<use xlink:href="#glyph-0-5" x="236.425652" y="111.616879"/> | |
| 611 | +</g> | |
| 612 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00194765 -8.703195 L -0.00194765 -16.410456 " transform="matrix(0.994395, 0, 0, -0.994395, 156.744124, 13.607303)"/> | |
| 613 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551225 3.10924 C -2.083761 1.243313 -1.046698 0.363381 -0.00177918 -0.00194765 C -1.046698 -0.363348 -2.083761 -1.24328 -2.551225 -3.109207 " transform="matrix(0, 0.994395, 0.994395, 0, 156.744124, 30.322082)"/> | |
| 614 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00194765 -43.707985 L -0.00194765 -51.415246 " transform="matrix(0.994395, 0, 0, -0.994395, 156.744124, 13.607303)"/> | |
| 615 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551285 3.10924 C -2.083821 1.243313 -1.046758 0.363381 -0.00183923 -0.00194765 C -1.046758 -0.363348 -2.083821 -1.24328 -2.551285 -3.109207 " transform="matrix(0, 0.994395, 0.994395, 0, 156.744124, 65.130735)"/> | |
| 616 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00194765 -78.728488 L -0.00194765 -86.435749 " transform="matrix(0.994395, 0, 0, -0.994395, 156.744124, 13.607303)"/> | |
| 617 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548543 3.10924 C -2.085008 1.243313 -1.047945 0.363381 0.000902059 -0.00194765 C -1.047945 -0.363348 -2.085008 -1.24328 -2.548543 -3.109207 " transform="matrix(0, 0.994395, 0.994395, 0, 156.744124, 99.956134)"/> | |
| 618 | +</svg> | |
added
dist/assets/fig/168a4d00f87e6752.svg
+432 −0
@@ -0,0 +1,432 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="384.216pt" height="144.785pt" viewBox="0 0 384.216 144.785"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.921875 -5.96875 C 1.40625 -5.96875 0.28125 -4.875 0.28125 -2.921875 C 0.28125 -0.9375 1.34375 0.140625 2.9375 0.140625 C 3.75 0.140625 4.375 -0.21875 4.765625 -0.609375 L 4.15625 -1.390625 C 3.8125 -1.140625 3.46875 -0.921875 3.015625 -0.921875 C 2.234375 -0.921875 1.71875 -1.515625 1.71875 -2.921875 C 1.71875 -4.359375 2.25 -4.953125 3 -4.953125 C 3.390625 -4.953125 3.71875 -4.796875 4.046875 -4.546875 L 4.703125 -5.328125 C 4.21875 -5.734375 3.6875 -5.96875 2.921875 -5.96875 Z M 2.921875 -5.96875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 2.453125 -4.609375 C 1.09375 -4.609375 0.265625 -3.671875 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.640625 -0.796875 4.640625 -2.234375 C 4.640625 -3.734375 3.8125 -4.609375 2.453125 -4.609375 Z M 2.453125 -3.625 C 3 -3.625 3.265625 -3.21875 3.265625 -2.234375 C 3.265625 -1.265625 3 -0.828125 2.453125 -0.828125 C 1.921875 -0.828125 1.640625 -1.25 1.640625 -2.234375 C 1.640625 -3.203125 1.921875 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 5.453125 -4.609375 C 4.875 -4.609375 4.46875 -4.375 4.109375 -3.90625 C 3.9375 -4.359375 3.5625 -4.609375 3.0625 -4.609375 C 2.515625 -4.609375 2.09375 -4.375 1.765625 -3.9375 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.03125 -3.421875 2.25 -3.625 2.515625 -3.625 C 2.71875 -3.625 2.90625 -3.5 2.90625 -3.03125 L 2.90625 0 L 4.234375 0 L 4.234375 -3.046875 C 4.421875 -3.421875 4.625 -3.625 4.90625 -3.625 C 5.109375 -3.625 5.28125 -3.5 5.28125 -3.03125 L 5.28125 0 L 6.609375 0 L 6.609375 -3.265625 C 6.609375 -4.109375 6.140625 -4.609375 5.453125 -4.609375 Z M 5.453125 -4.609375 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.03125 -4.609375 C 2.59375 -4.609375 2.125 -4.4375 1.75 -3.96875 L 1.6875 -4.46875 L 0.515625 -4.46875 L 0.515625 1.859375 L 1.84375 1.71875 L 1.84375 -0.3125 C 2.125 -0.015625 2.484375 0.140625 2.921875 0.140625 C 4.03125 0.140625 4.703125 -0.859375 4.703125 -2.25 C 4.703125 -3.6875 4.1875 -4.609375 3.03125 -4.609375 Z M 2.515625 -0.828125 C 2.234375 -0.828125 2.03125 -0.953125 1.84375 -1.234375 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.609375 -3.625 C 3.046875 -3.625 3.328125 -3.34375 3.328125 -2.234375 C 3.328125 -1.234375 3.015625 -0.828125 2.515625 -0.828125 Z M 2.515625 -0.828125 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.046875 -1.296875 L 4.046875 -3.03125 C 4.046875 -4.0625 3.5 -4.609375 2.203125 -4.609375 C 1.703125 -4.609375 1.078125 -4.484375 0.515625 -4.28125 L 0.828125 -3.40625 C 1.265625 -3.5625 1.703125 -3.640625 2 -3.640625 C 2.53125 -3.640625 2.75 -3.484375 2.75 -2.953125 L 2.75 -2.75 L 2.296875 -2.75 C 0.953125 -2.75 0.203125 -2.234375 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.1875 0.140625 2.6875 -0.03125 3 -0.515625 C 3.21875 -0.078125 3.5625 0.078125 4.078125 0.125 L 4.359375 -0.75 C 4.140625 -0.828125 4.046875 -0.953125 4.046875 -1.296875 Z M 2.046875 -0.8125 C 1.71875 -0.8125 1.53125 -1.015625 1.53125 -1.375 C 1.53125 -1.8125 1.8125 -2.03125 2.421875 -2.03125 L 2.75 -2.03125 L 2.75 -1.234375 C 2.59375 -0.96875 2.34375 -0.8125 2.046875 -0.8125 Z M 2.046875 -0.8125 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.9375 -4.59375 C 2.421875 -4.59375 1.984375 -4.21875 1.78125 -3.59375 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -2.25 C 2 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.03125 -3.28125 3.171875 -3.25 L 3.375 -4.53125 C 3.234375 -4.578125 3.109375 -4.59375 2.9375 -4.59375 Z M 2.9375 -4.59375 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.0625 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.0625 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.46875 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.09375 -4.609375 C 0.96875 -4.609375 0.265625 -4.015625 0.265625 -3.25 C 0.265625 -2.5625 0.703125 -2.09375 1.59375 -1.84375 C 2.390625 -1.625 2.53125 -1.53125 2.53125 -1.234375 C 2.53125 -0.953125 2.28125 -0.8125 1.890625 -0.8125 C 1.453125 -0.8125 1.03125 -0.984375 0.703125 -1.25 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.921875 0.140625 C 3.03125 0.140625 3.90625 -0.40625 3.90625 -1.328125 C 3.90625 -2.125 3.40625 -2.5 2.515625 -2.75 C 1.71875 -2.984375 1.609375 -3.078125 1.609375 -3.328125 C 1.609375 -3.515625 1.78125 -3.65625 2.140625 -3.65625 C 2.53125 -3.65625 2.90625 -3.53125 3.25 -3.3125 L 3.734375 -4.0625 C 3.328125 -4.390625 2.734375 -4.609375 2.09375 -4.609375 Z M 2.09375 -4.609375 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.125 -4.609375 C 2.5625 -4.609375 2.140625 -4.375 1.765625 -3.921875 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.265625 C 4.359375 -4.109375 3.90625 -4.609375 3.125 -4.609375 Z M 3.125 -4.609375 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 1.25 -5.21875 L 2.375 -5.984375 L 3.484375 -5.21875 L 3.953125 -5.765625 L 2.78125 -6.90625 L 1.953125 -6.90625 L 0.765625 -5.765625 Z M 4.265625 -4.46875 L 2.9375 -4.46875 L 2.9375 -1.359375 C 2.734375 -1.03125 2.484375 -0.84375 2.203125 -0.84375 C 1.9375 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.46875 L 0.453125 -4.46875 L 0.453125 -1.265625 C 0.453125 -0.390625 0.859375 0.140625 1.703125 0.140625 C 2.296875 0.140625 2.734375 -0.09375 3.046875 -0.5625 L 3.109375 0 L 4.265625 0 Z M 4.265625 -4.46875 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.875 -1.046875 C 2.703125 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.125 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.46875 L 1.96875 -4.46875 L 1.96875 -5.578125 L 0.640625 -5.4375 L 0.640625 -4.46875 L 0.015625 -4.46875 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.328125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 3.65625 0 L 5.21875 0 L 3.734375 -2.484375 C 4.484375 -2.828125 4.84375 -3.28125 4.84375 -4.046875 C 4.84375 -5.265625 4.03125 -5.828125 2.453125 -5.828125 L 0.546875 -5.828125 L 0.546875 0 L 1.921875 0 L 1.921875 -2.234375 L 2.46875 -2.234375 Z M 1.921875 -4.859375 L 2.421875 -4.859375 C 3.109375 -4.859375 3.4375 -4.609375 3.4375 -4.046875 C 3.4375 -3.4375 3.109375 -3.171875 2.5 -3.171875 L 1.921875 -3.171875 Z M 1.921875 -4.859375 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.609375 2.359375 -4.609375 C 1 -4.609375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.8125 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.328125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.390625 -1.84375 C 4.40625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.453125 1.9375 -3.71875 2.390625 -3.71875 C 2.921875 -3.71875 3.109375 -3.296875 3.109375 -2.703125 Z M 3.109375 -2.640625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 4.359375 -4.46875 L 3.015625 -4.46875 L 2.1875 -1.015625 L 1.390625 -4.46875 L -0.046875 -4.46875 L 1.390625 0 L 2.953125 0 Z M 4.359375 -4.46875 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 4.265625 -4.46875 L 2.9375 -4.46875 L 2.9375 -1.359375 C 2.734375 -1.03125 2.484375 -0.84375 2.203125 -0.84375 C 1.9375 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.46875 L 0.453125 -4.46875 L 0.453125 -1.265625 C 0.453125 -0.390625 0.859375 0.140625 1.703125 0.140625 C 2.296875 0.140625 2.734375 -0.09375 3.046875 -0.5625 L 3.109375 0 L 4.265625 0 Z M 4.265625 -4.46875 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.453125 -4.609375 C 1.125 -4.609375 0.265625 -3.609375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.484375 0.140625 C 3.09375 0.140625 3.578125 -0.0625 3.984375 -0.390625 L 3.40625 -1.203125 C 3.078125 -1.015625 2.859375 -0.90625 2.546875 -0.90625 C 2.015625 -0.90625 1.671875 -1.203125 1.671875 -2.203125 C 1.671875 -3.203125 2 -3.59375 2.5625 -3.59375 C 2.859375 -3.59375 3.125 -3.484375 3.40625 -3.265625 L 3.984375 -4.0625 C 3.5625 -4.421875 3.078125 -4.609375 2.453125 -4.609375 Z M 2.453125 -4.609375 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 1.6875 0.140625 C 2.015625 0.140625 2.296875 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.859375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.375 L 0.453125 -6.234375 L 0.453125 -1.140625 C 0.453125 -0.3125 0.90625 0.140625 1.6875 0.140625 Z M 1.6875 0.140625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 3.15625 -6.375 L 3.15625 -4.1875 C 2.890625 -4.453125 2.53125 -4.609375 2.09375 -4.609375 C 0.984375 -4.609375 0.265625 -3.625 0.265625 -2.25 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.578125 0.140625 2.96875 -0.15625 3.234375 -0.515625 L 3.296875 0 L 4.484375 0 L 4.484375 -6.234375 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.453125 -3.640625 C 2.75 -3.640625 2.953125 -3.5 3.15625 -3.265625 L 3.15625 -1.34375 C 2.9375 -1 2.703125 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-0"> | |
| 60 | +<path d="M 4.890625 0 L 4.890625 -0.34375 L 4.53125 -0.34375 C 3.46875 -0.34375 3.4375 -0.484375 3.4375 -0.921875 L 3.4375 -7.65625 C 3.4375 -7.921875 3.4375 -7.9375 3.203125 -7.9375 C 2.90625 -7.609375 2.3125 -7.171875 1.09375 -7.171875 L 1.09375 -6.828125 C 1.359375 -6.828125 1.953125 -6.828125 2.609375 -7.140625 L 2.609375 -0.921875 C 2.609375 -0.484375 2.578125 -0.34375 1.53125 -0.34375 L 1.15625 -0.34375 L 1.15625 0 C 1.484375 -0.03125 2.640625 -0.03125 3.03125 -0.03125 C 3.421875 -0.03125 4.578125 -0.03125 4.890625 0 Z M 4.890625 0 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-1"> | |
| 63 | +<path d="M 5.25 -2.40625 C 5.25 -3.8125 4.296875 -5 3.046875 -5 C 2.359375 -5 1.84375 -4.703125 1.53125 -4.375 L 1.53125 -6.84375 C 2.046875 -6.671875 2.453125 -6.65625 2.59375 -6.65625 C 3.9375 -6.65625 4.796875 -7.65625 4.796875 -7.8125 C 4.796875 -7.859375 4.78125 -7.921875 4.703125 -7.921875 C 4.703125 -7.921875 4.65625 -7.921875 4.546875 -7.875 C 3.875 -7.59375 3.3125 -7.5625 3 -7.5625 C 2.203125 -7.5625 1.640625 -7.796875 1.421875 -7.890625 C 1.34375 -7.921875 1.296875 -7.921875 1.296875 -7.921875 C 1.203125 -7.921875 1.203125 -7.859375 1.203125 -7.65625 L 1.203125 -4.125 C 1.203125 -3.90625 1.203125 -3.828125 1.34375 -3.828125 C 1.40625 -3.828125 1.421875 -3.84375 1.546875 -3.984375 C 1.875 -4.484375 2.4375 -4.765625 3.03125 -4.765625 C 3.671875 -4.765625 3.96875 -4.171875 4.078125 -3.96875 C 4.28125 -3.515625 4.28125 -2.921875 4.28125 -2.46875 C 4.28125 -2.015625 4.28125 -1.34375 3.953125 -0.796875 C 3.6875 -0.375 3.21875 -0.078125 2.703125 -0.078125 C 1.90625 -0.078125 1.140625 -0.609375 0.921875 -1.484375 C 0.984375 -1.453125 1.046875 -1.4375 1.109375 -1.4375 C 1.3125 -1.4375 1.640625 -1.5625 1.640625 -1.96875 C 1.640625 -2.296875 1.40625 -2.5 1.109375 -2.5 C 0.890625 -2.5 0.578125 -2.390625 0.578125 -1.921875 C 0.578125 -0.90625 1.390625 0.25 2.71875 0.25 C 4.078125 0.25 5.25 -0.890625 5.25 -2.40625 Z M 5.25 -2.40625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-2"> | |
| 66 | +<path d="M 5.34375 -1.984375 C 5.34375 -3.203125 4.484375 -3.734375 3.5625 -4.3125 C 4.15625 -4.625 5.03125 -5.1875 5.03125 -6.1875 C 5.03125 -7.21875 4.015625 -7.9375 2.921875 -7.9375 C 1.75 -7.9375 0.8125 -7.0625 0.8125 -5.984375 C 0.8125 -5.578125 0.9375 -5.171875 1.265625 -4.765625 C 1.390625 -4.609375 1.40625 -4.59375 2.25 -4.015625 C 1.09375 -3.46875 0.484375 -2.671875 0.484375 -1.796875 C 0.484375 -0.53125 1.6875 0.25 2.90625 0.25 C 4.234375 0.25 5.34375 -0.734375 5.34375 -1.984375 Z M 4.53125 -6.171875 C 4.53125 -5.4375 4.015625 -4.859375 3.3125 -4.484375 L 1.9375 -5.390625 C 1.78125 -5.484375 1.296875 -5.796875 1.296875 -6.390625 C 1.296875 -7.15625 2.109375 -7.65625 2.90625 -7.65625 C 3.765625 -7.65625 4.53125 -7.03125 4.53125 -6.171875 Z M 4.796875 -1.59375 C 4.796875 -0.6875 3.875 -0.078125 2.921875 -0.078125 C 1.90625 -0.078125 1.03125 -0.8125 1.03125 -1.796875 C 1.03125 -2.734375 1.71875 -3.484375 2.5 -3.84375 L 3.9375 -2.90625 C 4.25 -2.703125 4.796875 -2.328125 4.796875 -1.59375 Z M 4.796875 -1.59375 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-3"> | |
| 69 | +<path d="M 5.34375 -3.8125 C 5.34375 -4.8125 5.28125 -5.78125 4.859375 -6.6875 C 4.375 -7.671875 3.515625 -7.9375 2.921875 -7.9375 C 2.234375 -7.9375 1.390625 -7.59375 0.9375 -6.59375 C 0.609375 -5.84375 0.484375 -5.109375 0.484375 -3.8125 C 0.484375 -2.65625 0.578125 -1.796875 1 -0.9375 C 1.46875 -0.03125 2.296875 0.25 2.90625 0.25 C 3.953125 0.25 4.546875 -0.375 4.890625 -1.0625 C 5.328125 -1.953125 5.34375 -3.125 5.34375 -3.8125 Z M 4.4375 -3.96875 C 4.4375 -3.15625 4.4375 -2.25 4.3125 -1.53125 C 4.078125 -0.21875 3.328125 0.015625 2.90625 0.015625 C 2.53125 0.015625 1.75 -0.203125 1.53125 -1.5 C 1.390625 -2.21875 1.390625 -3.125 1.390625 -3.96875 C 1.390625 -4.9375 1.390625 -5.828125 1.59375 -6.53125 C 1.796875 -7.328125 2.40625 -7.703125 2.90625 -7.703125 C 3.359375 -7.703125 4.0625 -7.421875 4.28125 -6.40625 C 4.4375 -5.71875 4.4375 -4.78125 4.4375 -3.96875 Z M 4.4375 -3.96875 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-4"> | |
| 72 | +<path d="M 5.34375 -2.4375 C 5.34375 -4.015625 4.234375 -5.078125 3.046875 -5.078125 C 1.984375 -5.078125 1.59375 -4.171875 1.46875 -3.828125 L 1.46875 -4.15625 C 1.46875 -7.171875 2.9375 -7.65625 3.578125 -7.65625 C 4.015625 -7.65625 4.4375 -7.515625 4.671875 -7.15625 C 4.53125 -7.15625 4.078125 -7.15625 4.078125 -6.671875 C 4.078125 -6.40625 4.25 -6.1875 4.5625 -6.1875 C 4.859375 -6.1875 5.0625 -6.359375 5.0625 -6.703125 C 5.0625 -7.328125 4.609375 -7.9375 3.5625 -7.9375 C 2.0625 -7.9375 0.484375 -6.40625 0.484375 -3.765625 C 0.484375 -0.484375 1.921875 0.25 2.9375 0.25 C 4.234375 0.25 5.34375 -0.890625 5.34375 -2.4375 Z M 4.375 -2.453125 C 4.375 -1.84375 4.375 -1.296875 4.140625 -0.84375 C 3.84375 -0.28125 3.421875 -0.078125 2.9375 -0.078125 C 2.1875 -0.078125 1.828125 -0.734375 1.71875 -0.984375 C 1.609375 -1.296875 1.5 -1.890625 1.5 -2.71875 C 1.5 -3.671875 1.921875 -4.84375 3 -4.84375 C 3.65625 -4.84375 4 -4.40625 4.171875 -4 C 4.375 -3.5625 4.375 -2.953125 4.375 -2.453125 Z M 4.375 -2.453125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-2-0"> | |
| 75 | +<path d="M 5.890625 -2.25 C 5.890625 -3.59375 5.078125 -4.203125 3.671875 -4.640625 C 2.5 -5.015625 2.21875 -5.203125 2.21875 -5.671875 C 2.21875 -6.140625 2.609375 -6.40625 3.234375 -6.40625 C 3.84375 -6.40625 4.359375 -6.203125 4.859375 -5.78125 L 5.671875 -6.75 C 5.1875 -7.21875 4.59375 -7.53125 3.8125 -7.65625 L 3.8125 -9.3125 L 2.53125 -9.3125 L 2.53125 -7.65625 C 1.296875 -7.46875 0.421875 -6.6875 0.421875 -5.546875 C 0.421875 -4.4375 1.015625 -3.765625 2.6875 -3.234375 C 3.78125 -2.890625 4.046875 -2.65625 4.046875 -2.109375 C 4.046875 -1.53125 3.59375 -1.1875 2.875 -1.1875 C 2.125 -1.1875 1.53125 -1.453125 1.015625 -1.9375 L 0.09375 -0.953125 C 0.65625 -0.421875 1.453125 0.015625 2.53125 0.09375 L 2.53125 1.8125 L 3.8125 1.8125 L 3.8125 0.03125 C 5.125 -0.234375 5.890625 -1.09375 5.890625 -2.25 Z M 5.890625 -2.25 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-3-0"> | |
| 78 | +<path d="M 3.59375 -4.734375 L 0.546875 -4.734375 L 0.546875 -1.90625 L 1.15625 -1.90625 C 1.390625 -2.03125 1.65625 -2.09375 1.953125 -2.09375 C 2.53125 -2.09375 2.96875 -1.796875 2.96875 -0.9375 C 2.96875 -0.109375 2.53125 0.359375 1.828125 0.359375 C 1.34375 0.359375 0.96875 0.171875 0.625 -0.171875 L 0.171875 0.265625 C 0.609375 0.71875 1.125 0.984375 1.828125 0.984375 C 3 0.984375 3.78125 0.203125 3.78125 -0.921875 C 3.78125 -2.03125 3.140625 -2.703125 2.1875 -2.703125 C 1.875 -2.703125 1.59375 -2.640625 1.28125 -2.484375 L 1.28125 -4.140625 L 3.484375 -4.140625 Z M 3.59375 -4.734375 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-3-1"> | |
| 81 | +<path d="M 2.40625 -4.53125 C 1.203125 -4.53125 0.484375 -3.59375 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.5625 2.453125 -0.5625 C 1.75 -0.5625 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.453125 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.359375 -4.390625 2.9375 -4.53125 2.40625 -4.53125 Z M 2.40625 -4.53125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-3-2"> | |
| 84 | +<path d="M 2.46875 -4.53125 C 1.203125 -4.53125 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.71875 -4.53125 2.46875 -4.53125 Z M 2.46875 -3.90625 C 3.1875 -3.90625 3.59375 -3.375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.375 1.71875 -3.90625 2.46875 -3.90625 Z M 2.46875 -3.90625 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-3-3"> | |
| 87 | +<path d="M 5.21875 -4.53125 C 4.625 -4.53125 4.21875 -4.21875 3.90625 -3.734375 C 3.734375 -4.234375 3.328125 -4.53125 2.78125 -4.53125 C 2.203125 -4.53125 1.796875 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.59375 -3.921875 C 2.921875 -3.921875 3.21875 -3.734375 3.21875 -3.0625 L 3.21875 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.03125 -3.921875 C 5.359375 -3.921875 5.65625 -3.734375 5.65625 -3.0625 L 5.65625 0 L 6.421875 0 L 6.421875 -3.171875 C 6.421875 -4.015625 5.9375 -4.53125 5.21875 -4.53125 Z M 5.21875 -4.53125 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-3-4"> | |
| 90 | +<path d="M 2.8125 -4.53125 C 2.296875 -4.53125 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 1.796875 L 1.546875 1.703125 L 1.546875 -0.40625 C 1.828125 -0.0625 2.234375 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.453125 -0.875 4.453125 -2.21875 C 4.453125 -3.609375 3.984375 -4.53125 2.8125 -4.53125 Z M 2.515625 -0.53125 C 2.125 -0.53125 1.78125 -0.71875 1.546875 -1.0625 L 1.546875 -3.234375 C 1.78125 -3.578125 2.140625 -3.921875 2.609375 -3.921875 C 3.28125 -3.921875 3.609375 -3.375 3.609375 -2.21875 C 3.609375 -1.0625 3.234375 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-3-5"> | |
| 93 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-3-6"> | |
| 96 | +<path d="M 2.703125 -4.53125 C 2.15625 -4.53125 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.78125 2.609375 -3.78125 C 2.765625 -3.78125 2.859375 -3.75 3 -3.71875 L 3.140625 -4.484375 C 3 -4.515625 2.84375 -4.53125 2.703125 -4.53125 Z M 2.703125 -4.53125 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-3-7"> | |
| 99 | +<path d="M 2.796875 -4.53125 C 2.265625 -4.53125 1.84375 -4.28125 1.546875 -3.875 L 1.546875 -6.296875 L 0.765625 -6.21875 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.78125 0.09375 4.453125 -0.828125 4.453125 -2.21875 C 4.453125 -3.703125 3.796875 -4.53125 2.796875 -4.53125 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.78125 -0.75 1.546875 -1.109375 L 1.546875 -3.234375 C 1.78125 -3.578125 2.09375 -3.921875 2.578125 -3.921875 C 3.203125 -3.921875 3.609375 -3.484375 3.609375 -2.21875 C 3.609375 -1.015625 3.171875 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-3-8"> | |
| 102 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-3-9"> | |
| 105 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-3-10"> | |
| 108 | +<path d="M 2 -4.53125 C 1.078125 -4.53125 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.03125 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.453125 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.25 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.453125 -2.8125 1.203125 -2.96875 1.203125 -3.34375 C 1.203125 -3.6875 1.515625 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.171875 -3.53125 L 3.5 -4.03125 C 3.078125 -4.34375 2.625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-3-11"> | |
| 111 | +<path d="M 1.171875 -6.5625 C 0.84375 -6.5625 0.625 -6.328125 0.625 -6.03125 C 0.625 -5.734375 0.84375 -5.5 1.171875 -5.5 C 1.5 -5.5 1.71875 -5.734375 1.71875 -6.03125 C 1.71875 -6.328125 1.5 -6.5625 1.171875 -6.5625 Z M 1.5625 -4.4375 L 0.78125 -4.4375 L 0.78125 -0.21875 C 0.78125 0.734375 0.5 0.953125 -0.078125 1.21875 L 0.15625 1.78125 C 1.09375 1.359375 1.5625 0.984375 1.5625 -0.265625 Z M 1.5625 -4.4375 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-3-12"> | |
| 114 | +<path d="M 4.0625 -4.4375 L 3.28125 -4.4375 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.703125 -0.5 1.5 -0.734375 1.5 -1.34375 L 1.5 -4.4375 L 0.71875 -4.4375 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.59375 0.09375 3 -0.15625 3.34375 -0.6875 L 3.390625 0 L 4.0625 0 Z M 4.0625 -4.4375 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-3-13"> | |
| 117 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.59375 -3.828125 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.515625 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-3-14"> | |
| 120 | +<path d="M 3.359375 -6.09375 L 3.015625 -6.734375 L 1.34375 -5.78125 L 1.578125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-3-15"> | |
| 123 | +<path d="M 3.921875 0 L 4.875 0 L 3.3125 -2.59375 C 4.140625 -2.84375 4.5625 -3.34375 4.5625 -4.15625 C 4.5625 -5.234375 3.8125 -5.796875 2.359375 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 L 1.640625 -2.453125 L 2.53125 -2.453125 Z M 1.640625 -3.0625 L 1.640625 -5.171875 L 2.359375 -5.171875 C 3.296875 -5.171875 3.71875 -4.875 3.71875 -4.15625 C 3.71875 -3.375 3.25 -3.0625 2.453125 -3.0625 Z M 1.640625 -3.0625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-3-16"> | |
| 126 | +<path d="M 2.859375 -4.53125 C 2.28125 -4.53125 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.109375 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-3-17"> | |
| 129 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.125 -4.296875 2.734375 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.171875 3.4375 -0.609375 L 3.5 0 L 4.1875 0 L 4.1875 -6.21875 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-3-18"> | |
| 132 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.328125 0.609375 -6.03125 C 0.609375 -5.734375 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.703125 -5.734375 1.703125 -6.03125 C 1.703125 -6.328125 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-3-19"> | |
| 135 | +<path d="M 4.90625 -5.796875 L 4.15625 -5.796875 L 4.15625 -2.625 C 4.15625 -1.921875 4.25 -1 4.265625 -0.859375 L 1.890625 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.59375 0 L 1.59375 -2.65625 C 1.59375 -3.734375 1.515625 -4.4375 1.484375 -4.921875 L 3.828125 0 L 4.90625 0 Z M 4.90625 -5.796875 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-3-20"> | |
| 138 | +<path d="M 3.96875 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 4.046875 0 L 4.046875 -0.640625 L 1.640625 -0.640625 L 1.640625 -2.625 L 3.59375 -2.625 L 3.59375 -3.265625 L 1.640625 -3.265625 L 1.640625 -5.15625 L 3.890625 -5.15625 Z M 3.96875 -5.796875 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-3-21"> | |
| 141 | +<path d="M 4.265625 -5.796875 L 0.125 -5.796875 L 0.125 -5.109375 L 1.78125 -5.109375 L 1.78125 0 L 2.578125 0 L 2.578125 -5.109375 L 4.171875 -5.109375 Z M 4.265625 -5.796875 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-3-22"> | |
| 144 | +<path d="M 2.96875 -5.890625 C 1.640625 -5.890625 0.46875 -4.84375 0.46875 -2.90625 C 0.46875 -0.90625 1.390625 0.09375 2.890625 0.09375 C 3.625 0.09375 4.234375 -0.09375 4.78125 -0.40625 L 4.78125 -3.21875 L 2.875 -3.21875 L 2.96875 -2.5625 L 4 -2.5625 L 4 -0.8125 C 3.671875 -0.625 3.28125 -0.5625 2.890625 -0.5625 C 1.875 -0.5625 1.3125 -1.234375 1.3125 -2.90625 C 1.3125 -4.609375 2.140625 -5.234375 2.96875 -5.234375 C 3.5 -5.234375 3.84375 -5.09375 4.25 -4.765625 L 4.71875 -5.25 C 4.21875 -5.671875 3.734375 -5.890625 2.96875 -5.890625 Z M 2.96875 -5.890625 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-3-23"> | |
| 147 | +<path d="M 3.921875 0 L 4.765625 0 L 2.921875 -5.796875 L 1.90625 -5.796875 L 0.046875 0 L 0.859375 0 L 1.296875 -1.453125 L 3.484375 -1.453125 Z M 1.484375 -2.09375 L 2.390625 -5.125 L 3.296875 -2.09375 Z M 1.484375 -2.09375 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-4-0"> | |
| 150 | +<path d="M 6.375 -2.234375 C 6.375 -2.4375 6.203125 -2.4375 6.0625 -2.4375 L 1.078125 -2.4375 C 0.953125 -2.4375 0.765625 -2.4375 0.765625 -2.25 C 0.765625 -2.046875 0.9375 -2.046875 1.078125 -2.046875 L 6.0625 -2.046875 C 6.1875 -2.046875 6.375 -2.046875 6.375 -2.234375 Z M 6.375 -2.234375 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-4-1"> | |
| 153 | +<path d="M 4.15625 -4.25 C 4.15625 -4.5625 3.890625 -4.828125 3.578125 -4.828125 C 3.265625 -4.828125 2.984375 -4.5625 2.984375 -4.25 C 2.984375 -3.9375 3.265625 -3.671875 3.578125 -3.671875 C 3.890625 -3.671875 4.15625 -3.9375 4.15625 -4.25 Z M 4.15625 -0.234375 C 4.15625 -0.546875 3.890625 -0.8125 3.578125 -0.8125 C 3.265625 -0.8125 2.984375 -0.546875 2.984375 -0.234375 C 2.984375 0.078125 3.265625 0.34375 3.578125 0.34375 C 3.890625 0.34375 4.15625 0.078125 4.15625 -0.234375 Z M 6.640625 -2.234375 C 6.640625 -2.4375 6.46875 -2.4375 6.328125 -2.4375 L 0.828125 -2.4375 C 0.703125 -2.4375 0.515625 -2.4375 0.515625 -2.25 C 0.515625 -2.046875 0.6875 -2.046875 0.828125 -2.046875 L 6.328125 -2.046875 C 6.453125 -2.046875 6.640625 -2.046875 6.640625 -2.234375 Z M 6.640625 -2.234375 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-5-0"> | |
| 156 | +<path d="M 5.875 0 L 5.875 -0.421875 L 5.421875 -0.421875 C 4.171875 -0.421875 4.125 -0.59375 4.125 -1.109375 L 4.125 -9.171875 C 4.125 -9.5 4.125 -9.515625 3.828125 -9.515625 C 3.5 -9.125 2.78125 -8.609375 1.296875 -8.609375 L 1.296875 -8.1875 C 1.625 -8.1875 2.34375 -8.1875 3.140625 -8.5625 L 3.140625 -1.109375 C 3.140625 -0.59375 3.09375 -0.421875 1.828125 -0.421875 L 1.390625 -0.421875 L 1.390625 0 C 1.78125 -0.03125 3.15625 -0.03125 3.640625 -0.03125 C 4.109375 -0.03125 5.484375 -0.03125 5.875 0 Z M 5.875 0 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-5-1"> | |
| 159 | +<path d="M 6.296875 -2.875 C 6.296875 -4.578125 5.15625 -6 3.65625 -6 C 2.828125 -6 2.203125 -5.640625 1.828125 -5.234375 L 1.828125 -8.203125 C 2.453125 -8 2.953125 -7.984375 3.109375 -7.984375 C 4.71875 -7.984375 5.75 -9.171875 5.75 -9.375 C 5.75 -9.4375 5.71875 -9.5 5.640625 -9.5 C 5.640625 -9.5 5.578125 -9.5 5.453125 -9.453125 C 4.65625 -9.109375 3.96875 -9.0625 3.59375 -9.0625 C 2.640625 -9.0625 1.96875 -9.34375 1.703125 -9.453125 C 1.609375 -9.5 1.5625 -9.5 1.5625 -9.5 C 1.453125 -9.5 1.453125 -9.421875 1.453125 -9.1875 L 1.453125 -4.9375 C 1.453125 -4.6875 1.453125 -4.59375 1.625 -4.59375 C 1.6875 -4.59375 1.703125 -4.609375 1.84375 -4.78125 C 2.25 -5.375 2.921875 -5.703125 3.640625 -5.703125 C 4.390625 -5.703125 4.765625 -5.015625 4.875 -4.765625 C 5.125 -4.203125 5.140625 -3.5 5.140625 -2.96875 C 5.140625 -2.421875 5.140625 -1.609375 4.734375 -0.953125 C 4.421875 -0.4375 3.859375 -0.078125 3.234375 -0.078125 C 2.296875 -0.078125 1.359375 -0.734375 1.109375 -1.78125 C 1.171875 -1.75 1.265625 -1.734375 1.328125 -1.734375 C 1.578125 -1.734375 1.953125 -1.875 1.953125 -2.359375 C 1.953125 -2.765625 1.6875 -2.984375 1.328125 -2.984375 C 1.078125 -2.984375 0.703125 -2.859375 0.703125 -2.296875 C 0.703125 -1.09375 1.671875 0.296875 3.265625 0.296875 C 4.875 0.296875 6.296875 -1.0625 6.296875 -2.875 Z M 6.296875 -2.875 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-5-2"> | |
| 162 | +<path d="M 6.40625 -2.375 C 6.40625 -3.828125 5.375 -4.484375 4.265625 -5.171875 C 4.984375 -5.546875 6.03125 -6.21875 6.03125 -7.40625 C 6.03125 -8.65625 4.828125 -9.515625 3.5 -9.515625 C 2.09375 -9.515625 0.96875 -8.46875 0.96875 -7.171875 C 0.96875 -6.6875 1.109375 -6.203125 1.515625 -5.703125 C 1.671875 -5.53125 1.6875 -5.515625 2.6875 -4.8125 C 1.296875 -4.171875 0.59375 -3.203125 0.59375 -2.15625 C 0.59375 -0.640625 2.03125 0.296875 3.5 0.296875 C 5.078125 0.296875 6.40625 -0.875 6.40625 -2.375 Z M 5.4375 -7.40625 C 5.4375 -6.53125 4.8125 -5.828125 3.984375 -5.375 L 2.3125 -6.453125 C 2.125 -6.578125 1.5625 -6.953125 1.5625 -7.65625 C 1.5625 -8.59375 2.53125 -9.171875 3.5 -9.171875 C 4.515625 -9.171875 5.4375 -8.4375 5.4375 -7.40625 Z M 5.75 -1.921875 C 5.75 -0.828125 4.65625 -0.078125 3.5 -0.078125 C 2.296875 -0.078125 1.25 -0.96875 1.25 -2.15625 C 1.25 -3.28125 2.0625 -4.171875 2.984375 -4.609375 L 4.71875 -3.484375 C 5.09375 -3.234375 5.75 -2.796875 5.75 -1.921875 Z M 5.75 -1.921875 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-5-3"> | |
| 165 | +<path d="M 6.40625 -4.578125 C 6.40625 -5.765625 6.34375 -6.921875 5.828125 -8.015625 C 5.234375 -9.203125 4.203125 -9.515625 3.5 -9.515625 C 2.671875 -9.515625 1.65625 -9.109375 1.125 -7.921875 C 0.734375 -7.015625 0.59375 -6.125 0.59375 -4.578125 C 0.59375 -3.1875 0.6875 -2.140625 1.203125 -1.125 C 1.765625 -0.046875 2.75 0.296875 3.5 0.296875 C 4.734375 0.296875 5.453125 -0.4375 5.875 -1.28125 C 6.390625 -2.34375 6.40625 -3.75 6.40625 -4.578125 Z M 5.328125 -4.75 C 5.328125 -3.796875 5.328125 -2.703125 5.171875 -1.828125 C 4.890625 -0.25 4 0.015625 3.5 0.015625 C 3.03125 0.015625 2.109375 -0.25 1.828125 -1.796875 C 1.671875 -2.65625 1.671875 -3.75 1.671875 -4.75 C 1.671875 -5.921875 1.671875 -6.984375 1.90625 -7.828125 C 2.140625 -8.78125 2.875 -9.234375 3.5 -9.234375 C 4.03125 -9.234375 4.859375 -8.90625 5.140625 -7.671875 C 5.328125 -6.859375 5.328125 -5.71875 5.328125 -4.75 Z M 5.328125 -4.75 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-6-0"> | |
| 168 | +<path d="M 7.0625 -2.6875 C 7.0625 -4.3125 6.078125 -5.03125 4.40625 -5.5625 C 3 -6.015625 2.65625 -6.25 2.65625 -6.8125 C 2.65625 -7.375 3.140625 -7.6875 3.875 -7.6875 C 4.59375 -7.6875 5.21875 -7.4375 5.828125 -6.921875 L 6.8125 -8.078125 C 6.21875 -8.65625 5.5 -9.03125 4.578125 -9.171875 L 4.578125 -11.171875 L 3.046875 -11.171875 L 3.046875 -9.171875 C 1.546875 -8.953125 0.5 -8.015625 0.5 -6.640625 C 0.5 -5.328125 1.21875 -4.5 3.234375 -3.875 C 4.53125 -3.46875 4.859375 -3.1875 4.859375 -2.53125 C 4.859375 -1.84375 4.3125 -1.421875 3.4375 -1.421875 C 2.5625 -1.421875 1.828125 -1.75 1.203125 -2.328125 L 0.125 -1.140625 C 0.78125 -0.5 1.734375 0.015625 3.046875 0.125 L 3.046875 2.171875 L 4.578125 2.171875 L 4.578125 0.046875 C 6.140625 -0.28125 7.0625 -1.3125 7.0625 -2.6875 Z M 7.0625 -2.6875 "/> | |
| 169 | +</g> | |
| 170 | +</g> | |
| 171 | +<clipPath id="clip-0"> | |
| 172 | +<path clip-rule="nonzero" d="M 0 0.0390625 L 122 0.0390625 L 122 74 L 0 74 Z M 0 0.0390625 "/> | |
| 173 | +</clipPath> | |
| 174 | +<clipPath id="clip-1"> | |
| 175 | +<path clip-rule="nonzero" d="M 130 0.0390625 L 253 0.0390625 L 253 74 L 130 74 Z M 130 0.0390625 "/> | |
| 176 | +</clipPath> | |
| 177 | +<clipPath id="clip-2"> | |
| 178 | +<path clip-rule="nonzero" d="M 261 0.0390625 L 383.433594 0.0390625 L 383.433594 74 L 261 74 Z M 261 0.0390625 "/> | |
| 179 | +</clipPath> | |
| 180 | +<clipPath id="clip-3"> | |
| 181 | +<path clip-rule="nonzero" d="M 98 82 L 286 82 L 286 144.53125 L 98 144.53125 Z M 98 82 "/> | |
| 182 | +</clipPath> | |
| 183 | +</defs> | |
| 184 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 110.105469 5.210938 L 11.136719 5.210938 C 7.839844 5.210938 5.167969 7.882812 5.167969 11.175781 L 5.167969 61.480469 C 5.167969 64.773438 7.839844 67.445312 11.136719 67.445312 L 110.105469 67.445312 C 113.398438 67.445312 116.070312 64.773438 116.070312 61.480469 L 116.070312 11.175781 C 116.070312 7.882812 113.398438 5.210938 110.105469 5.210938 Z M 110.105469 5.210938 "/> | |
| 185 | +<g clip-path="url(#clip-0)"> | |
| 186 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 49.587141 31.180648 L -49.583557 31.180648 C -52.887159 31.180648 -55.564486 28.503321 -55.564486 25.203633 L -55.564486 -25.203703 C -55.564486 -28.503391 -52.887159 -31.180718 -49.583557 -31.180718 L 49.587141 -31.180718 C 52.886829 -31.180718 55.564156 -28.503391 55.564156 -25.203703 L 55.564156 25.203633 C 55.564156 28.503321 52.886829 31.180648 49.587141 31.180648 Z M 49.587141 31.180648 " transform="matrix(0.997964, 0, 0, -0.997964, 60.619305, 36.32809)"/> | |
| 187 | +</g> | |
| 188 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 189 | +<use xlink:href="#glyph-0-0" x="35.612332" y="23.723809"/> | |
| 190 | +</g> | |
| 191 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 192 | +<use xlink:href="#glyph-0-1" x="40.280569" y="23.723809"/> | |
| 193 | +<use xlink:href="#glyph-0-2" x="45.192731" y="23.723809"/> | |
| 194 | +<use xlink:href="#glyph-0-3" x="52.266581" y="23.723809"/> | |
| 195 | +</g> | |
| 196 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 197 | +<use xlink:href="#glyph-0-4" x="57.170332" y="23.723809"/> | |
| 198 | +<use xlink:href="#glyph-0-5" x="61.762867" y="23.723809"/> | |
| 199 | +</g> | |
| 200 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 201 | +<use xlink:href="#glyph-0-4" x="64.90867" y="23.723809"/> | |
| 202 | +<use xlink:href="#glyph-0-6" x="69.501205" y="23.723809"/> | |
| 203 | +<use xlink:href="#glyph-0-7" x="71.856351" y="23.723809"/> | |
| 204 | +<use xlink:href="#glyph-0-1" x="75.893745" y="23.723809"/> | |
| 205 | +<use xlink:href="#glyph-0-8" x="80.805907" y="23.723809"/> | |
| 206 | +</g> | |
| 207 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 208 | +<use xlink:href="#glyph-1-0" x="34.173269" y="40.029537"/> | |
| 209 | +</g> | |
| 210 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 211 | +<use xlink:href="#glyph-1-1" x="42.007068" y="40.029537"/> | |
| 212 | +<use xlink:href="#glyph-1-2" x="47.848415" y="40.029537"/> | |
| 213 | +<use xlink:href="#glyph-1-3" x="53.689761" y="40.029537"/> | |
| 214 | +</g> | |
| 215 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 216 | +<use xlink:href="#glyph-1-3" x="61.51163" y="40.029537"/> | |
| 217 | +<use xlink:href="#glyph-1-3" x="67.352976" y="40.029537"/> | |
| 218 | +<use xlink:href="#glyph-1-3" x="73.194323" y="40.029537"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-2-0" x="80.908577" y="40.029537"/> | |
| 222 | +</g> | |
| 223 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 224 | +<use xlink:href="#glyph-3-0" x="17.820637" y="53.949134"/> | |
| 225 | +</g> | |
| 226 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 227 | +<use xlink:href="#glyph-3-1" x="24.743084" y="53.949134"/> | |
| 228 | +</g> | |
| 229 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 230 | +<use xlink:href="#glyph-3-2" x="28.637487" y="53.949134"/> | |
| 231 | +<use xlink:href="#glyph-3-3" x="33.549649" y="53.949134"/> | |
| 232 | +<use xlink:href="#glyph-3-4" x="40.699201" y="53.949134"/> | |
| 233 | +</g> | |
| 234 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 235 | +<use xlink:href="#glyph-3-5" x="45.586129" y="53.949134"/> | |
| 236 | +<use xlink:href="#glyph-3-6" x="50.119786" y="53.949134"/> | |
| 237 | +</g> | |
| 238 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 239 | +<use xlink:href="#glyph-3-5" x="53.173065" y="53.949134"/> | |
| 240 | +<use xlink:href="#glyph-3-7" x="57.706721" y="53.949134"/> | |
| 241 | +<use xlink:href="#glyph-3-8" x="62.635706" y="53.949134"/> | |
| 242 | +</g> | |
| 243 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 244 | +<use xlink:href="#glyph-3-9" x="65.066553" y="53.949134"/> | |
| 245 | +<use xlink:href="#glyph-3-10" x="69.642266" y="53.949134"/> | |
| 246 | +</g> | |
| 247 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 248 | +<use xlink:href="#glyph-3-5" x="76.379667" y="53.949134"/> | |
| 249 | +<use xlink:href="#glyph-3-11" x="80.913323" y="53.949134"/> | |
| 250 | +<use xlink:href="#glyph-3-12" x="83.243236" y="53.949134"/> | |
| 251 | +<use xlink:href="#glyph-3-10" x="88.079697" y="53.949134"/> | |
| 252 | +<use xlink:href="#glyph-3-13" x="92.007744" y="53.949134"/> | |
| 253 | +</g> | |
| 254 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 255 | +<use xlink:href="#glyph-3-14" x="94.918032" y="53.949134"/> | |
| 256 | +<use xlink:href="#glyph-3-10" x="99.493745" y="53.949134"/> | |
| 257 | +</g> | |
| 258 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 241.203125 5.210938 L 142.234375 5.210938 C 138.941406 5.210938 136.269531 7.882812 136.269531 11.175781 L 136.269531 61.480469 C 136.269531 64.773438 138.941406 67.445312 142.234375 67.445312 L 241.203125 67.445312 C 244.496094 67.445312 247.167969 64.773438 247.167969 61.480469 L 247.167969 11.175781 C 247.167969 7.882812 244.496094 5.210938 241.203125 5.210938 Z M 241.203125 5.210938 "/> | |
| 259 | +<g clip-path="url(#clip-1)"> | |
| 260 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 180.952305 31.180648 L 81.781607 31.180648 C 78.481919 31.180648 75.804592 28.503321 75.804592 25.203633 L 75.804592 -25.203703 C 75.804592 -28.503391 78.481919 -31.180718 81.781607 -31.180718 L 180.952305 -31.180718 C 184.251993 -31.180718 186.92932 -28.503391 186.92932 -25.203703 L 186.92932 25.203633 C 186.92932 28.503321 184.251993 31.180648 180.952305 31.180648 Z M 180.952305 31.180648 " transform="matrix(0.997964, 0, 0, -0.997964, 60.619305, 36.32809)"/> | |
| 261 | +</g> | |
| 262 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 263 | +<use xlink:href="#glyph-0-0" x="182.876836" y="18.951547"/> | |
| 264 | +</g> | |
| 265 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 266 | +<use xlink:href="#glyph-0-1" x="187.545073" y="18.951547"/> | |
| 267 | +<use xlink:href="#glyph-0-9" x="192.457235" y="18.951547"/> | |
| 268 | +<use xlink:href="#glyph-0-10" x="197.234817" y="18.951547"/> | |
| 269 | +</g> | |
| 270 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 271 | +<use xlink:href="#glyph-1-0" x="165.270762" y="33.865116"/> | |
| 272 | +</g> | |
| 273 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 274 | +<use xlink:href="#glyph-1-4" x="173.104561" y="33.865116"/> | |
| 275 | +<use xlink:href="#glyph-1-0" x="178.945908" y="33.865116"/> | |
| 276 | +<use xlink:href="#glyph-1-3" x="184.787254" y="33.865116"/> | |
| 277 | +</g> | |
| 278 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 279 | +<use xlink:href="#glyph-1-3" x="192.609123" y="33.865116"/> | |
| 280 | +<use xlink:href="#glyph-1-3" x="198.450469" y="33.865116"/> | |
| 281 | +<use xlink:href="#glyph-1-3" x="204.291816" y="33.865116"/> | |
| 282 | +</g> | |
| 283 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 284 | +<use xlink:href="#glyph-2-0" x="212.00607" y="33.865116"/> | |
| 285 | +</g> | |
| 286 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 287 | +<use xlink:href="#glyph-3-15" x="163.332717" y="47.784713"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-3-9" x="168.379459" y="47.784713"/> | |
| 291 | +<use xlink:href="#glyph-3-3" x="172.955171" y="47.784713"/> | |
| 292 | +<use xlink:href="#glyph-3-4" x="180.104723" y="47.784713"/> | |
| 293 | +<use xlink:href="#glyph-3-8" x="185.033707" y="47.784713"/> | |
| 294 | +</g> | |
| 295 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 296 | +<use xlink:href="#glyph-3-5" x="187.464555" y="47.784713"/> | |
| 297 | +<use xlink:href="#glyph-3-1" x="191.998211" y="47.784713"/> | |
| 298 | +</g> | |
| 299 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 300 | +<use xlink:href="#glyph-3-9" x="195.892614" y="47.784713"/> | |
| 301 | +<use xlink:href="#glyph-3-3" x="200.468327" y="47.784713"/> | |
| 302 | +<use xlink:href="#glyph-3-9" x="207.617878" y="47.784713"/> | |
| 303 | +<use xlink:href="#glyph-3-16" x="212.193591" y="47.784713"/> | |
| 304 | +<use xlink:href="#glyph-3-13" x="217.063697" y="47.784713"/> | |
| 305 | +</g> | |
| 306 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 307 | +<use xlink:href="#glyph-4-0" x="162.682044" y="58.721396"/> | |
| 308 | +</g> | |
| 309 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 310 | +<use xlink:href="#glyph-3-17" x="172.63613" y="58.721396"/> | |
| 311 | +<use xlink:href="#glyph-3-14" x="177.59876" y="58.721396"/> | |
| 312 | +<use xlink:href="#glyph-3-4" x="182.174473" y="58.721396"/> | |
| 313 | +<use xlink:href="#glyph-3-6" x="187.103457" y="58.721396"/> | |
| 314 | +</g> | |
| 315 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 316 | +<use xlink:href="#glyph-3-14" x="190.156736" y="58.721396"/> | |
| 317 | +<use xlink:href="#glyph-3-1" x="194.732449" y="58.721396"/> | |
| 318 | +<use xlink:href="#glyph-3-18" x="198.75302" y="58.721396"/> | |
| 319 | +<use xlink:href="#glyph-3-5" x="201.074521" y="58.721396"/> | |
| 320 | +<use xlink:href="#glyph-3-13" x="205.608178" y="58.721396"/> | |
| 321 | +<use xlink:href="#glyph-3-18" x="208.644634" y="58.721396"/> | |
| 322 | +<use xlink:href="#glyph-3-2" x="210.966136" y="58.721396"/> | |
| 323 | +<use xlink:href="#glyph-3-16" x="215.878298" y="58.721396"/> | |
| 324 | +</g> | |
| 325 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 372.300781 5.210938 L 273.335938 5.210938 C 270.039062 5.210938 267.367188 7.882812 267.367188 11.175781 L 267.367188 61.480469 C 267.367188 64.773438 270.039062 67.445312 273.335938 67.445312 L 372.300781 67.445312 C 375.597656 67.445312 378.269531 64.773438 378.269531 61.480469 L 378.269531 11.175781 C 378.269531 7.882812 375.597656 5.210938 372.300781 5.210938 Z M 372.300781 5.210938 "/> | |
| 326 | +<g clip-path="url(#clip-2)"> | |
| 327 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 312.317468 31.180648 L 213.150685 31.180648 C 209.847082 31.180648 207.169755 28.503321 207.169755 25.203633 L 207.169755 -25.203703 C 207.169755 -28.503391 209.847082 -31.180718 213.150685 -31.180718 L 312.317468 -31.180718 C 315.62107 -31.180718 318.298397 -28.503391 318.298397 -25.203703 L 318.298397 25.203633 C 318.298397 28.503321 315.62107 31.180648 312.317468 31.180648 Z M 312.317468 31.180648 " transform="matrix(0.997964, 0, 0, -0.997964, 60.619305, 36.32809)"/> | |
| 328 | +</g> | |
| 329 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 330 | +<use xlink:href="#glyph-0-11" x="308.717057" y="24.350531"/> | |
| 331 | +</g> | |
| 332 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 333 | +<use xlink:href="#glyph-0-12" x="313.814266" y="24.350531"/> | |
| 334 | +</g> | |
| 335 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 336 | +<use xlink:href="#glyph-0-13" x="318.406802" y="24.350531"/> | |
| 337 | +</g> | |
| 338 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 339 | +<use xlink:href="#glyph-0-12" x="322.654476" y="24.350531"/> | |
| 340 | +<use xlink:href="#glyph-0-8" x="327.314301" y="24.350531"/> | |
| 341 | +<use xlink:href="#glyph-0-14" x="332.13394" y="24.350531"/> | |
| 342 | +</g> | |
| 343 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 344 | +<use xlink:href="#glyph-1-0" x="296.369253" y="39.264099"/> | |
| 345 | +</g> | |
| 346 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 347 | +<use xlink:href="#glyph-1-1" x="304.203052" y="39.264099"/> | |
| 348 | +<use xlink:href="#glyph-1-2" x="310.044399" y="39.264099"/> | |
| 349 | +<use xlink:href="#glyph-1-3" x="315.885745" y="39.264099"/> | |
| 350 | +</g> | |
| 351 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 352 | +<use xlink:href="#glyph-1-3" x="323.707614" y="39.264099"/> | |
| 353 | +<use xlink:href="#glyph-1-3" x="329.54896" y="39.264099"/> | |
| 354 | +<use xlink:href="#glyph-1-3" x="335.390307" y="39.264099"/> | |
| 355 | +</g> | |
| 356 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 357 | +<use xlink:href="#glyph-2-0" x="343.104561" y="39.264099"/> | |
| 358 | +</g> | |
| 359 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 360 | +<use xlink:href="#glyph-3-15" x="301.677422" y="53.183696"/> | |
| 361 | +<use xlink:href="#glyph-3-19" x="306.76622" y="53.183696"/> | |
| 362 | +<use xlink:href="#glyph-3-20" x="312.511094" y="53.183696"/> | |
| 363 | +</g> | |
| 364 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 365 | +<use xlink:href="#glyph-4-1" x="319.811874" y="53.183696"/> | |
| 366 | +</g> | |
| 367 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 368 | +<use xlink:href="#glyph-3-21" x="329.774371" y="53.183696"/> | |
| 369 | +</g> | |
| 370 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 371 | +<use xlink:href="#glyph-3-22" x="333.828587" y="53.183696"/> | |
| 372 | +<use xlink:href="#glyph-3-23" x="339.136078" y="53.183696"/> | |
| 373 | +</g> | |
| 374 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 262.417969 99.359375 L 121.019531 99.359375 C 117.722656 99.359375 115.050781 102.03125 115.050781 105.324219 L 115.050781 133 C 115.050781 136.292969 117.722656 138.964844 121.019531 138.964844 L 262.417969 138.964844 C 265.714844 138.964844 268.386719 136.292969 268.386719 133 L 268.386719 105.324219 C 268.386719 102.03125 265.714844 99.359375 262.417969 99.359375 Z M 262.417969 99.359375 "/> | |
| 375 | +<g clip-path="url(#clip-3)"> | |
| 376 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.210438 -63.159901 L 60.523474 -63.159901 C 57.219872 -63.159901 54.542545 -65.837228 54.542545 -69.136917 L 54.542545 -96.869171 C 54.542545 -100.168859 57.219872 -102.846186 60.523474 -102.846186 L 202.210438 -102.846186 C 205.51404 -102.846186 208.191367 -100.168859 208.191367 -96.869171 L 208.191367 -69.136917 C 208.191367 -65.837228 205.51404 -63.159901 202.210438 -63.159901 Z M 202.210438 -63.159901 " transform="matrix(0.997964, 0, 0, -0.997964, 60.619305, 36.32809)"/> | |
| 377 | +</g> | |
| 378 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 379 | +<use xlink:href="#glyph-0-0" x="151.159556" y="115.232085"/> | |
| 380 | +</g> | |
| 381 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 382 | +<use xlink:href="#glyph-0-1" x="155.827792" y="115.232085"/> | |
| 383 | +<use xlink:href="#glyph-0-8" x="160.739955" y="115.232085"/> | |
| 384 | +<use xlink:href="#glyph-0-15" x="165.559593" y="115.232085"/> | |
| 385 | +<use xlink:href="#glyph-0-16" x="169.588576" y="115.232085"/> | |
| 386 | +<use xlink:href="#glyph-0-14" x="172.111947" y="115.232085"/> | |
| 387 | +<use xlink:href="#glyph-0-7" x="176.889529" y="115.232085"/> | |
| 388 | +<use xlink:href="#glyph-0-6" x="180.926923" y="115.232085"/> | |
| 389 | +<use xlink:href="#glyph-0-1" x="183.282069" y="115.232085"/> | |
| 390 | +<use xlink:href="#glyph-0-8" x="188.194231" y="115.232085"/> | |
| 391 | +</g> | |
| 392 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 393 | +<use xlink:href="#glyph-0-17" x="195.814812" y="115.232085"/> | |
| 394 | +<use xlink:href="#glyph-0-12" x="200.811086" y="115.232085"/> | |
| 395 | +</g> | |
| 396 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 397 | +<use xlink:href="#glyph-0-13" x="208.280265" y="115.232085"/> | |
| 398 | +</g> | |
| 399 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 400 | +<use xlink:href="#glyph-0-4" x="212.452238" y="115.232085"/> | |
| 401 | +</g> | |
| 402 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 403 | +<use xlink:href="#glyph-0-16" x="216.977483" y="115.232085"/> | |
| 404 | +</g> | |
| 405 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 406 | +<use xlink:href="#glyph-0-12" x="219.458798" y="115.232085"/> | |
| 407 | +<use xlink:href="#glyph-0-14" x="224.118623" y="115.232085"/> | |
| 408 | +<use xlink:href="#glyph-0-5" x="228.896206" y="115.232085"/> | |
| 409 | +</g> | |
| 410 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 411 | +<use xlink:href="#glyph-5-0" x="159.981555" y="127.734573"/> | |
| 412 | +</g> | |
| 413 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 414 | +<use xlink:href="#glyph-5-1" x="169.382088" y="127.734573"/> | |
| 415 | +<use xlink:href="#glyph-5-2" x="176.391684" y="127.734573"/> | |
| 416 | +<use xlink:href="#glyph-5-1" x="183.40128" y="127.734573"/> | |
| 417 | +</g> | |
| 418 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 419 | +<use xlink:href="#glyph-5-3" x="192.787496" y="127.734573"/> | |
| 420 | +<use xlink:href="#glyph-5-3" x="199.797092" y="127.734573"/> | |
| 421 | +<use xlink:href="#glyph-5-3" x="206.806689" y="127.734573"/> | |
| 422 | +</g> | |
| 423 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 424 | +<use xlink:href="#glyph-6-0" x="216.063778" y="127.734573"/> | |
| 425 | +</g> | |
| 426 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00179224 -31.380343 L 0.00179224 -40.453507 L 53.947583 -40.453507 L 53.947583 -61.367188 " transform="matrix(0.997964, 0, 0, -0.997964, 60.619305, 36.32809)"/> | |
| 427 | +<path fill="none" stroke-width="1.19553" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -3.028153 3.829491 C -2.476248 1.531843 -1.243268 0.447604 0.00145408 0.00138298 C -1.243268 -0.448752 -2.476248 -1.532992 -3.028153 -3.830639 " transform="matrix(0, 0.997964, 0.997964, 0, 114.455651, 98.166518)"/> | |
| 428 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 131.366956 -31.380343 L 131.366956 -61.367188 " transform="matrix(0.997964, 0, 0, -0.997964, 60.619305, 36.32809)"/> | |
| 429 | +<path fill="none" stroke-width="1.19553" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -3.028153 3.832008 C -2.476248 1.530446 -1.243268 0.446207 0.00145408 -0.000014272 C -1.243268 -0.446235 -2.476248 -1.530475 -3.028153 -3.832036 " transform="matrix(0, 0.997964, 0.997964, 0, 191.718764, 98.166518)"/> | |
| 430 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 262.732119 -31.380343 L 262.732119 -40.453507 L 208.786328 -40.453507 L 208.786328 -61.367188 " transform="matrix(0.997964, 0, 0, -0.997964, 60.619305, 36.32809)"/> | |
| 431 | +<path fill="none" stroke-width="1.19553" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -3.028153 3.830601 C -2.476248 1.532953 -1.243268 0.448714 0.00145408 -0.00142153 C -1.243268 -0.447643 -2.476248 -1.531882 -3.028153 -3.829529 " transform="matrix(0, 0.997964, 0.997964, 0, 268.981887, 98.166518)"/> | |
| 432 | +</svg> | |
added
dist/assets/fig/211d88aa82a099fd.svg
+478 −0
@@ -0,0 +1,478 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="372.878pt" height="72.723pt" viewBox="0 0 372.878 72.723"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 4.90625 -5.8125 L 3.484375 -5.8125 L 2.453125 -1.078125 L 1.34375 -5.8125 L -0.109375 -5.8125 L 1.5625 0 L 3.28125 0 Z M 4.90625 -5.8125 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.609375 0 L 5.0625 0 L 3.3125 -5.8125 L 1.640625 -5.8125 L -0.109375 0 L 1.3125 0 L 1.609375 -1.25 L 3.3125 -1.25 Z M 1.84375 -2.25 L 2.453125 -4.8125 L 3.078125 -2.25 Z M 1.84375 -2.25 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.921875 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 4.046875 0 L 4.1875 -1.09375 L 1.921875 -1.09375 Z M 1.921875 -5.8125 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 4.109375 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 4.109375 0 L 4.109375 -0.984375 L 1.921875 -0.984375 L 1.921875 -2.46875 L 3.703125 -2.46875 L 3.703125 -3.4375 L 1.921875 -3.4375 L 1.921875 -4.828125 L 3.96875 -4.828125 Z M 4.109375 -5.8125 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 5 -5.8125 L 3.625 -5.8125 L 3.625 -1.984375 C 3.625 -1.234375 3.359375 -0.875 2.734375 -0.875 C 2.109375 -0.875 1.84375 -1.234375 1.84375 -1.984375 L 1.84375 -5.8125 L 0.46875 -5.8125 L 0.46875 -1.9375 C 0.46875 -0.703125 1.203125 0.140625 2.734375 0.140625 C 4.25 0.140625 5 -0.75 5 -1.9375 Z M 5 -5.8125 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 3.65625 0 L 5.203125 0 L 3.71875 -2.46875 C 4.484375 -2.8125 4.84375 -3.28125 4.84375 -4.046875 C 4.84375 -5.25 4.03125 -5.8125 2.453125 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 1.921875 0 L 1.921875 -2.21875 L 2.453125 -2.21875 Z M 1.921875 -4.84375 L 2.421875 -4.84375 C 3.09375 -4.84375 3.421875 -4.609375 3.421875 -4.046875 C 3.421875 -3.4375 3.109375 -3.171875 2.5 -3.171875 L 1.921875 -3.171875 Z M 1.921875 -4.84375 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 5.4375 -4.59375 C 4.859375 -4.59375 4.453125 -4.359375 4.109375 -3.890625 C 3.921875 -4.34375 3.546875 -4.59375 3.046875 -4.59375 C 2.515625 -4.59375 2.09375 -4.375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.03125 -3.421875 2.234375 -3.625 2.515625 -3.625 C 2.71875 -3.625 2.890625 -3.5 2.890625 -3.03125 L 2.890625 0 L 4.21875 0 L 4.21875 -3.046875 C 4.40625 -3.421875 4.609375 -3.625 4.90625 -3.625 C 5.09375 -3.625 5.265625 -3.5 5.265625 -3.03125 L 5.265625 0 L 6.59375 0 L 6.59375 -3.25 C 6.59375 -4.109375 6.125 -4.59375 5.4375 -4.59375 Z M 5.4375 -4.59375 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 4.046875 -1.296875 L 4.046875 -3.015625 C 4.046875 -4.046875 3.484375 -4.59375 2.203125 -4.59375 C 1.6875 -4.59375 1.078125 -4.484375 0.515625 -4.265625 L 0.828125 -3.390625 C 1.265625 -3.546875 1.703125 -3.640625 1.984375 -3.640625 C 2.53125 -3.640625 2.75 -3.46875 2.75 -2.9375 L 2.75 -2.75 L 2.296875 -2.75 C 0.953125 -2.75 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.1875 0.140625 2.671875 -0.03125 3 -0.515625 C 3.203125 -0.078125 3.546875 0.078125 4.0625 0.125 L 4.34375 -0.75 C 4.140625 -0.828125 4.046875 -0.953125 4.046875 -1.296875 Z M 2.03125 -0.8125 C 1.71875 -0.8125 1.53125 -1.015625 1.53125 -1.375 C 1.53125 -1.8125 1.8125 -2.015625 2.421875 -2.015625 L 2.75 -2.015625 L 2.75 -1.21875 C 2.578125 -0.96875 2.34375 -0.8125 2.03125 -0.8125 Z M 2.03125 -0.8125 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.921875 -4.578125 C 2.421875 -4.578125 1.984375 -4.21875 1.78125 -3.59375 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -2.234375 C 1.984375 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.015625 -3.265625 3.15625 -3.234375 L 3.375 -4.515625 C 3.21875 -4.5625 3.09375 -4.578125 2.921875 -4.578125 Z M 2.921875 -4.578125 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.453125 -4.59375 C 1.109375 -4.59375 0.265625 -3.609375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.09375 0.140625 3.5625 -0.0625 3.984375 -0.390625 L 3.390625 -1.203125 C 3.078125 -1 2.859375 -0.90625 2.546875 -0.90625 C 2.015625 -0.90625 1.65625 -1.203125 1.65625 -2.203125 C 1.65625 -3.203125 1.984375 -3.578125 2.5625 -3.578125 C 2.859375 -3.578125 3.125 -3.484375 3.40625 -3.265625 L 3.984375 -4.046875 C 3.546875 -4.40625 3.078125 -4.59375 2.453125 -4.59375 Z M 2.453125 -4.59375 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.125 -4.59375 C 2.59375 -4.59375 2.203125 -4.390625 1.84375 -3.984375 L 1.84375 -6.359375 L 0.515625 -6.21875 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.859375 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.25 C 4.359375 -4.109375 3.890625 -4.59375 3.125 -4.59375 Z M 3.125 -4.59375 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 3.5 -6.015625 L 2.984375 -7 L 1.15625 -5.90625 L 1.515625 -5.21875 Z M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.671875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.421875 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 1.921875 0 L 1.921875 -1.9375 L 2.546875 -1.9375 C 3.890625 -1.9375 4.84375 -2.5625 4.84375 -3.921875 C 4.84375 -5.1875 3.921875 -5.8125 2.421875 -5.8125 Z M 2.4375 -2.921875 L 1.921875 -2.921875 L 1.921875 -4.828125 L 2.40625 -4.828125 C 3.09375 -4.828125 3.4375 -4.546875 3.4375 -3.921875 C 3.4375 -3.1875 3.046875 -2.921875 2.4375 -2.921875 Z M 2.4375 -2.921875 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 1.921875 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 1.921875 0 Z M 1.921875 -5.8125 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 3.234375 -3.140625 L 4.765625 -5.8125 L 3.3125 -5.8125 L 2.421875 -3.953125 L 1.578125 -5.8125 L 0.09375 -5.8125 L 1.59375 -3.09375 L -0.03125 0 L 1.421875 0 L 2.40625 -2.21875 L 3.40625 0 L 4.90625 0 Z M 3.234375 -3.140625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.875 -1.046875 C 2.6875 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.109375 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.453125 L 1.96875 -4.453125 L 1.96875 -5.578125 L 0.640625 -5.421875 L 0.640625 -4.453125 L 0.015625 -4.453125 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.3125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 3.125 -4.59375 C 2.5625 -4.59375 2.125 -4.359375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.25 C 4.359375 -4.109375 3.890625 -4.59375 3.125 -4.59375 Z M 3.125 -4.59375 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 2.09375 -4.59375 C 0.96875 -4.59375 0.265625 -4 0.265625 -3.234375 C 0.265625 -2.546875 0.703125 -2.09375 1.578125 -1.84375 C 2.390625 -1.625 2.53125 -1.53125 2.53125 -1.21875 C 2.53125 -0.953125 2.28125 -0.8125 1.875 -0.8125 C 1.4375 -0.8125 1.03125 -0.984375 0.703125 -1.234375 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.90625 0.140625 C 3.015625 0.140625 3.890625 -0.40625 3.890625 -1.328125 C 3.890625 -2.125 3.390625 -2.484375 2.515625 -2.75 C 1.71875 -2.984375 1.609375 -3.078125 1.609375 -3.3125 C 1.609375 -3.515625 1.78125 -3.65625 2.140625 -3.65625 C 2.53125 -3.65625 2.890625 -3.53125 3.234375 -3.3125 L 3.71875 -4.046875 C 3.3125 -4.390625 2.734375 -4.59375 2.09375 -4.59375 Z M 2.09375 -4.59375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.046875 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.046875 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.453125 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 2.453125 -4.59375 C 1.09375 -4.59375 0.265625 -3.65625 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.625 -0.796875 4.625 -2.21875 C 4.625 -3.71875 3.8125 -4.59375 2.453125 -4.59375 Z M 2.453125 -3.625 C 2.984375 -3.625 3.25 -3.21875 3.25 -2.21875 C 3.25 -1.265625 2.984375 -0.828125 2.453125 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.234375 C 1.640625 -3.203125 1.90625 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 2.921875 -5.953125 C 1.40625 -5.953125 0.28125 -4.859375 0.28125 -2.921875 C 0.28125 -0.9375 1.34375 0.140625 2.9375 0.140625 C 3.75 0.140625 4.375 -0.21875 4.75 -0.609375 L 4.140625 -1.390625 C 3.796875 -1.125 3.46875 -0.921875 3 -0.921875 C 2.234375 -0.921875 1.71875 -1.515625 1.71875 -2.921875 C 1.71875 -4.34375 2.234375 -4.9375 2.984375 -4.9375 C 3.375 -4.9375 3.703125 -4.796875 4.03125 -4.546875 L 4.6875 -5.3125 C 4.203125 -5.734375 3.671875 -5.953125 2.921875 -5.953125 Z M 2.921875 -5.953125 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 2.890625 -5.953125 C 1.265625 -5.953125 0.28125 -4.8125 0.28125 -2.90625 C 0.28125 -0.96875 1.265625 0.140625 2.890625 0.140625 C 4.546875 0.140625 5.515625 -1 5.515625 -2.90625 C 5.515625 -4.84375 4.546875 -5.953125 2.890625 -5.953125 Z M 2.890625 -4.953125 C 3.671875 -4.953125 4.078125 -4.375 4.078125 -2.90625 C 4.078125 -1.4375 3.6875 -0.859375 2.890625 -0.859375 C 2.140625 -0.859375 1.71875 -1.4375 1.71875 -2.90625 C 1.71875 -4.375 2.125 -4.953125 2.890625 -4.953125 Z M 2.890625 -4.953125 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 1.609375 -6.328125 L 2.734375 -7.046875 L 3.84375 -6.328125 L 4.3125 -6.875 L 3.125 -7.96875 L 2.328125 -7.96875 L 1.125 -6.875 Z M 5 -5.8125 L 3.625 -5.8125 L 3.625 -1.984375 C 3.625 -1.234375 3.359375 -0.875 2.734375 -0.875 C 2.109375 -0.875 1.84375 -1.234375 1.84375 -1.984375 L 1.84375 -5.8125 L 0.46875 -5.8125 L 0.46875 -1.9375 C 0.46875 -0.703125 1.203125 0.140625 2.734375 0.140625 C 4.25 0.140625 5 -0.75 5 -1.9375 Z M 5 -5.8125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 4.515625 -5.8125 L 0.078125 -5.8125 L 0.078125 -4.75 L 1.578125 -4.75 L 1.578125 0 L 2.953125 0 L 2.953125 -4.75 L 4.390625 -4.75 Z M 4.515625 -5.8125 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 3.03125 -4.59375 C 2.578125 -4.59375 2.109375 -4.421875 1.75 -3.953125 L 1.671875 -4.453125 L 0.515625 -4.453125 L 0.515625 1.859375 L 1.84375 1.71875 L 1.84375 -0.3125 C 2.109375 -0.015625 2.484375 0.140625 2.921875 0.140625 C 4.015625 0.140625 4.6875 -0.859375 4.6875 -2.234375 C 4.6875 -3.6875 4.171875 -4.59375 3.03125 -4.59375 Z M 2.515625 -0.828125 C 2.234375 -0.828125 2.015625 -0.953125 1.84375 -1.21875 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.59375 -3.625 C 3.046875 -3.625 3.3125 -3.328125 3.3125 -2.21875 C 3.3125 -1.21875 3 -0.828125 2.515625 -0.828125 Z M 2.515625 -0.828125 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 3.140625 -6.375 L 3.140625 -4.171875 C 2.890625 -4.4375 2.53125 -4.59375 2.09375 -4.59375 C 0.984375 -4.59375 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.5625 0.140625 2.96875 -0.15625 3.234375 -0.515625 L 3.296875 0 L 4.46875 0 L 4.46875 -6.21875 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.453125 -3.640625 C 2.75 -3.640625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.9375 -1 2.6875 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 4.25 -4.453125 L 2.921875 -4.453125 L 2.921875 -1.359375 C 2.734375 -1.03125 2.484375 -0.84375 2.203125 -0.84375 C 1.9375 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.453125 L 0.453125 -4.453125 L 0.453125 -1.265625 C 0.453125 -0.390625 0.859375 0.140625 1.6875 0.140625 C 2.296875 0.140625 2.734375 -0.09375 3.046875 -0.5625 L 3.109375 0 L 4.25 0 Z M 4.25 -4.453125 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-0"> | |
| 87 | +<path d="M 2.90625 -5.875 C 1.453125 -5.875 0.46875 -4.78125 0.46875 -2.875 C 0.46875 -0.9375 1.453125 0.09375 2.90625 0.09375 C 4.359375 0.09375 5.34375 -0.96875 5.34375 -2.890625 C 5.34375 -4.828125 4.359375 -5.875 2.90625 -5.875 Z M 2.90625 -5.234375 C 3.890625 -5.234375 4.5 -4.546875 4.5 -2.890625 C 4.5 -1.203125 3.875 -0.546875 2.90625 -0.546875 C 1.96875 -0.546875 1.3125 -1.203125 1.3125 -2.875 C 1.3125 -4.546875 1.9375 -5.234375 2.90625 -5.234375 Z M 2.90625 -5.234375 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-1"> | |
| 90 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.609375 3.984375 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.578125 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.609375 -3.359375 3.609375 -2.21875 C 3.609375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-2"> | |
| 93 | +<path d="M 1.15625 -6.546875 C 0.828125 -6.546875 0.609375 -6.3125 0.609375 -6.015625 C 0.609375 -5.71875 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.6875 -5.71875 1.6875 -6.015625 C 1.6875 -6.3125 1.484375 -6.546875 1.15625 -6.546875 Z M 1.546875 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.421875 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-3"> | |
| 96 | +<path d="M 2.859375 -4.515625 C 2.28125 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.09375 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-4"> | |
| 99 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.421875 -0.84375 4.421875 -2.21875 C 4.421875 -3.609375 3.71875 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.90625 C 3.1875 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.453125 -3.90625 Z M 2.453125 -3.90625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-5"> | |
| 102 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-6"> | |
| 105 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.6875 1.515625 -3.90625 2.015625 -3.90625 C 2.4375 -3.90625 2.78125 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.34375 2.625 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-7"> | |
| 108 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.578125 -3.828125 L 2.671875 -4.421875 L 1.625 -4.421875 L 1.625 -5.515625 L 0.84375 -5.421875 L 0.84375 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-8"> | |
| 111 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.21875 -4.203125 3.890625 -3.71875 C 3.71875 -4.234375 3.328125 -4.515625 2.78125 -4.515625 C 2.203125 -4.515625 1.796875 -4.21875 1.5 -3.78125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.578125 -3.921875 C 2.921875 -3.921875 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.015625 -3.921875 C 5.359375 -3.921875 5.640625 -3.71875 5.640625 -3.0625 L 5.640625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.9375 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-9"> | |
| 114 | +<path d="M 3.34375 -6.078125 L 3 -6.71875 L 1.328125 -5.765625 L 1.5625 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-10"> | |
| 117 | +<path d="M 5.53125 -5.78125 L 4.453125 -5.78125 L 3.296875 -1.578125 L 2.078125 -5.78125 L 1 -5.78125 L 0.515625 0 L 1.28125 0 L 1.46875 -2.546875 C 1.53125 -3.390625 1.578125 -4.296875 1.578125 -4.96875 L 2.890625 -0.65625 L 3.640625 -0.65625 L 4.890625 -4.96875 C 4.90625 -4.484375 4.953125 -3.515625 5.03125 -2.609375 L 5.234375 0 L 6 0 Z M 5.53125 -5.78125 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-11"> | |
| 120 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-12"> | |
| 123 | +<path d="M 4.25 -5.78125 L 0.125 -5.78125 L 0.125 -5.09375 L 1.765625 -5.09375 L 1.765625 0 L 2.5625 0 L 2.5625 -5.09375 L 4.171875 -5.09375 Z M 4.25 -5.78125 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-13"> | |
| 126 | +<path d="M 4.046875 -4.421875 L 3.28125 -4.421875 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.5 -0.734375 1.5 -1.328125 L 1.5 -4.421875 L 0.71875 -4.421875 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 3 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.421875 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-14"> | |
| 129 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.765625 2.59375 -3.765625 C 2.765625 -3.765625 2.859375 -3.75 2.984375 -3.71875 L 3.125 -4.46875 C 3 -4.5 2.84375 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-1-15"> | |
| 132 | +<path d="M 4.046875 -4.421875 L 3.234375 -4.421875 L 2.078125 -0.6875 L 0.921875 -4.421875 L 0.078125 -4.421875 L 1.609375 0 L 2.546875 0 Z M 4.046875 -4.421875 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-1-16"> | |
| 135 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.25 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.203125 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-1-17"> | |
| 138 | +<path d="M 0.84375 0 L 1.640625 0 L 1.640625 -2.546875 L 3.53125 -2.546875 L 3.53125 -3.171875 L 1.640625 -3.171875 L 1.640625 -5.140625 L 3.8125 -5.140625 L 3.90625 -5.78125 L 0.84375 -5.78125 Z M 0.84375 0 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-1-18"> | |
| 141 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.75 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.4375 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.34375 -4.390625 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-1-19"> | |
| 144 | +<path d="M 2.046875 -5.78125 L 0.84375 -5.78125 L 0.84375 0 L 2.21875 0 C 3.46875 0 4.9375 -0.5625 4.9375 -2.921875 C 4.9375 -5.3125 3.53125 -5.78125 2.046875 -5.78125 Z M 2.21875 -5.140625 C 3.140625 -5.140625 4.09375 -4.875 4.09375 -2.921875 C 4.09375 -1.015625 3.1875 -0.625 2.28125 -0.625 L 1.640625 -0.625 L 1.640625 -5.140625 Z M 2.21875 -5.140625 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-2-0"> | |
| 147 | +<path d="M 0.21875 1.8125 L 0.984375 1.71875 L 1.234375 -0.046875 C 1.515625 0.046875 1.78125 0.09375 2.078125 0.09375 C 3.8125 0.09375 4.4375 -1.546875 4.4375 -2.78125 C 4.4375 -3.90625 3.90625 -4.515625 3.078125 -4.515625 C 2.625 -4.515625 2.203125 -4.375 1.734375 -3.875 L 1.75 -4.421875 L 1.09375 -4.421875 Z M 2.125 -0.515625 C 1.8125 -0.515625 1.625 -0.546875 1.34375 -0.640625 L 1.703125 -3.265625 C 2.015625 -3.609375 2.390625 -3.90625 2.859375 -3.90625 C 3.3125 -3.90625 3.640625 -3.640625 3.640625 -2.84375 C 3.640625 -1.859375 3.21875 -0.515625 2.125 -0.515625 Z M 2.125 -0.515625 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-2-1"> | |
| 150 | +<path d="M 2.984375 -4.515625 C 2.5 -4.515625 2.03125 -4.203125 1.703125 -3.515625 L 1.75 -4.421875 L 1.09375 -4.421875 L 0.484375 0 L 1.234375 0 L 1.578125 -2.34375 C 1.890625 -3.234375 2.28125 -3.765625 2.84375 -3.765625 C 2.984375 -3.765625 3.078125 -3.75 3.203125 -3.71875 L 3.4375 -4.46875 C 3.296875 -4.5 3.140625 -4.515625 2.984375 -4.515625 Z M 2.984375 -4.515625 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-2-2"> | |
| 153 | +<path d="M 2.125 0.09375 C 3.875 0.09375 4.40625 -1.625 4.40625 -2.6875 C 4.40625 -3.8125 3.828125 -4.515625 2.734375 -4.515625 C 1 -4.515625 0.4375 -2.8125 0.4375 -1.734375 C 0.4375 -0.609375 1.03125 0.09375 2.125 0.09375 Z M 2.15625 -0.515625 C 1.5625 -0.515625 1.234375 -0.875 1.234375 -1.640625 C 1.234375 -2.484375 1.546875 -3.90625 2.703125 -3.90625 C 3.296875 -3.90625 3.609375 -3.546875 3.609375 -2.78125 C 3.609375 -1.9375 3.3125 -0.515625 2.15625 -0.515625 Z M 2.15625 -0.515625 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-2-3"> | |
| 156 | +<path d="M 3.078125 -4.515625 C 2.59375 -4.515625 2.203125 -4.328125 1.796875 -3.984375 L 2.125 -6.296875 L 1.34375 -6.203125 L 0.5 -0.1875 C 1.140625 0.015625 1.5625 0.09375 2.0625 0.09375 C 3.8125 0.09375 4.4375 -1.546875 4.4375 -2.78125 C 4.4375 -3.90625 3.90625 -4.515625 3.078125 -4.515625 Z M 2.859375 -3.90625 C 3.3125 -3.90625 3.640625 -3.640625 3.640625 -2.84375 C 3.640625 -1.859375 3.21875 -0.515625 2.125 -0.515625 C 1.8125 -0.515625 1.625 -0.546875 1.34375 -0.640625 L 1.703125 -3.265625 C 2.015625 -3.609375 2.390625 -3.90625 2.859375 -3.90625 Z M 2.859375 -3.90625 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-2-4"> | |
| 159 | +<path d="M 2.78125 -4.515625 C 1.0625 -4.515625 0.421875 -2.796875 0.421875 -1.59375 C 0.421875 -0.578125 0.921875 0.09375 1.828125 0.09375 C 2.34375 0.09375 2.796875 -0.1875 3.140625 -0.640625 C 3.203125 -0.15625 3.484375 0.046875 3.921875 0.09375 L 4.140625 -0.421875 C 3.875 -0.53125 3.828125 -0.703125 3.875 -1 L 4.328125 -4.140625 C 3.828125 -4.390625 3.34375 -4.515625 2.78125 -4.515625 Z M 2.796875 -3.90625 C 3.09375 -3.90625 3.28125 -3.875 3.515625 -3.765625 L 3.171875 -1.328125 C 2.828125 -0.859375 2.484375 -0.515625 1.984375 -0.515625 C 1.515625 -0.515625 1.234375 -0.84375 1.234375 -1.578125 C 1.234375 -2.578125 1.671875 -3.90625 2.796875 -3.90625 Z M 2.796875 -3.90625 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-2-5"> | |
| 162 | +<path d="M 2.09375 -6.296875 L 1.3125 -6.203125 L 0.578125 -0.984375 C 0.484375 -0.265625 0.78125 0.09375 1.375 0.09375 C 1.5625 0.09375 1.765625 0.0625 1.984375 -0.046875 L 1.828125 -0.59375 C 1.734375 -0.5625 1.625 -0.53125 1.53125 -0.53125 C 1.34375 -0.53125 1.296875 -0.625 1.328125 -0.859375 Z M 2.09375 -6.296875 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-2-6"> | |
| 165 | +<path d="M 4.109375 -3.390625 C 4.109375 -3.984375 3.65625 -4.515625 2.703125 -4.515625 C 1.03125 -4.515625 0.4375 -2.90625 0.4375 -1.6875 C 0.4375 -0.578125 1.046875 0.09375 2.125 0.09375 C 2.703125 0.09375 3.234375 -0.09375 3.703125 -0.4375 L 3.375 -0.953125 C 2.984375 -0.671875 2.609375 -0.546875 2.203125 -0.546875 C 1.640625 -0.546875 1.265625 -0.84375 1.234375 -1.640625 C 2.78125 -1.8125 4.109375 -2.15625 4.109375 -3.390625 Z M 1.28125 -2.234375 C 1.390625 -3.03125 1.78125 -3.90625 2.703125 -3.90625 C 3.1875 -3.90625 3.3125 -3.578125 3.3125 -3.375 C 3.3125 -2.625 2.546875 -2.375 1.28125 -2.234375 Z M 1.28125 -2.234375 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-2-7"> | |
| 168 | +<path d="M 4.3125 -4.421875 L 3.515625 -4.421875 L 1.828125 -0.59375 L 1.203125 -4.421875 L 0.390625 -4.421875 L 1.234375 0 L 1.53125 0 C 1.15625 0.703125 0.84375 1.03125 -0.078125 1.1875 L -0.046875 1.78125 C 1.1875 1.65625 1.84375 0.984375 2.265625 0.046875 Z M 4.3125 -4.421875 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-2-8"> | |
| 171 | +<path d="M 3.875 -6.078125 L 3.625 -6.71875 L 1.859375 -5.765625 L 2.03125 -5.359375 Z M 4.109375 -3.390625 C 4.109375 -3.984375 3.65625 -4.515625 2.703125 -4.515625 C 1.03125 -4.515625 0.4375 -2.90625 0.4375 -1.6875 C 0.4375 -0.578125 1.046875 0.09375 2.125 0.09375 C 2.703125 0.09375 3.234375 -0.09375 3.703125 -0.4375 L 3.375 -0.953125 C 2.984375 -0.671875 2.609375 -0.546875 2.203125 -0.546875 C 1.640625 -0.546875 1.265625 -0.84375 1.234375 -1.640625 C 2.78125 -1.8125 4.109375 -2.15625 4.109375 -3.390625 Z M 1.28125 -2.234375 C 1.390625 -3.03125 1.78125 -3.90625 2.703125 -3.90625 C 3.1875 -3.90625 3.3125 -3.578125 3.3125 -3.375 C 3.3125 -2.625 2.546875 -2.375 1.28125 -2.234375 Z M 1.28125 -2.234375 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-2-9"> | |
| 174 | +<path d="M 1.65625 -5.5 C 1.984375 -5.5 2.234375 -5.734375 2.234375 -6.0625 C 2.234375 -6.328125 2.046875 -6.546875 1.75 -6.546875 C 1.421875 -6.546875 1.171875 -6.296875 1.171875 -5.96875 C 1.171875 -5.703125 1.359375 -5.5 1.65625 -5.5 Z M 1.859375 -4.421875 L 1.09375 -4.421875 L 0.484375 0 L 1.234375 0 Z M 1.859375 -4.421875 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-2-10"> | |
| 177 | +<path d="M 3.21875 -4.515625 C 2.578125 -4.515625 2.09375 -4.140625 1.6875 -3.5625 L 1.75 -4.421875 L 1.09375 -4.421875 L 0.484375 0 L 1.234375 0 L 1.609375 -2.65625 C 1.96875 -3.28125 2.453125 -3.875 3.015625 -3.875 C 3.34375 -3.875 3.5625 -3.703125 3.484375 -3.09375 L 3.046875 0 L 3.8125 0 L 4.25 -3.109375 C 4.375 -3.984375 3.953125 -4.515625 3.21875 -4.515625 Z M 3.21875 -4.515625 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-2-11"> | |
| 180 | +<path d="M 4.3125 -4.421875 L 3.46875 -4.421875 L 1.828125 -0.703125 L 1.21875 -4.421875 L 0.390625 -4.421875 L 1.28125 0 L 2.203125 0 Z M 4.3125 -4.421875 "/> | |
| 181 | +</g> | |
| 182 | +<g id="glyph-2-12"> | |
| 183 | +<path d="M 2.203125 -4.515625 C 1.0625 -4.515625 0.53125 -3.84375 0.53125 -3.265625 C 0.53125 -2.65625 0.875 -2.3125 1.71875 -2.0625 C 2.421875 -1.84375 2.65625 -1.6875 2.65625 -1.234375 C 2.65625 -0.953125 2.4375 -0.515625 1.65625 -0.515625 C 1.15625 -0.515625 0.75 -0.703125 0.421875 -0.984375 L -0.015625 -0.53125 C 0.328125 -0.203125 0.84375 0.09375 1.625 0.09375 C 2.546875 0.09375 3.453125 -0.328125 3.453125 -1.3125 C 3.453125 -2.015625 3.03125 -2.390625 2.203125 -2.640625 C 1.609375 -2.828125 1.3125 -2.96875 1.3125 -3.3125 C 1.3125 -3.6875 1.65625 -3.90625 2.203125 -3.90625 C 2.578125 -3.90625 2.953125 -3.78125 3.28125 -3.515625 L 3.65625 -3.984375 C 3.28125 -4.3125 2.8125 -4.515625 2.203125 -4.515625 Z M 2.203125 -4.515625 "/> | |
| 184 | +</g> | |
| 185 | +<g id="glyph-2-13"> | |
| 186 | +<path d="M 1.828125 -3.828125 L 2.78125 -3.828125 L 2.9375 -4.421875 L 1.90625 -4.421875 L 2.0625 -5.515625 L 1.453125 -5.453125 L 1.171875 -4.421875 L 0.375 -4.421875 L 0.296875 -3.828125 L 1.0625 -3.828125 L 0.6875 -1.1875 C 0.578125 -0.359375 0.96875 0.09375 1.734375 0.09375 C 2.078125 0.09375 2.40625 0.015625 2.71875 -0.1875 L 2.46875 -0.734375 C 2.234375 -0.609375 2.046875 -0.546875 1.828125 -0.546875 C 1.5 -0.546875 1.390625 -0.71875 1.453125 -1.171875 Z M 1.828125 -3.828125 "/> | |
| 187 | +</g> | |
| 188 | +</g> | |
| 189 | +<clipPath id="clip-0"> | |
| 190 | +<path clip-rule="nonzero" d="M 0.648438 0 L 123 0 L 123 72.445312 L 0.648438 72.445312 Z M 0.648438 0 "/> | |
| 191 | +</clipPath> | |
| 192 | +<clipPath id="clip-1"> | |
| 193 | +<path clip-rule="nonzero" d="M 125 0 L 248 0 L 248 72.445312 L 125 72.445312 Z M 125 0 "/> | |
| 194 | +</clipPath> | |
| 195 | +<clipPath id="clip-2"> | |
| 196 | +<path clip-rule="nonzero" d="M 250 0 L 372.109375 0 L 372.109375 72.445312 L 250 72.445312 Z M 250 0 "/> | |
| 197 | +</clipPath> | |
| 198 | +</defs> | |
| 199 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 110.554688 5.160156 L 11.761719 5.160156 C 8.472656 5.160156 5.808594 7.824219 5.808594 11.113281 L 5.808594 61.332031 C 5.808594 64.621094 8.472656 67.285156 11.761719 67.285156 L 110.554688 67.285156 C 113.84375 67.285156 116.511719 64.621094 116.511719 61.332031 L 116.511719 11.113281 C 116.511719 7.824219 113.84375 5.160156 110.554688 5.160156 Z M 110.554688 5.160156 "/> | |
| 200 | +<g clip-path="url(#clip-0)"> | |
| 201 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 49.583646 31.181189 L -49.585622 31.181189 C -52.887213 31.181189 -55.561423 28.506979 -55.561423 25.205389 L -55.561423 -25.204643 C -55.561423 -28.506234 -52.887213 -31.180444 -49.585622 -31.180444 L 49.583646 -31.180444 C 52.885237 -31.180444 55.563368 -28.506234 55.563368 -25.204643 L 55.563368 25.205389 C 55.563368 28.506979 52.885237 31.181189 49.583646 31.181189 Z M 49.583646 31.181189 " transform="matrix(0.996205, 0, 0, -0.996205, 61.159188, 36.223027)"/> | |
| 202 | +</g> | |
| 203 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 204 | +<use xlink:href="#glyph-0-0" x="46.679341" y="20.639385"/> | |
| 205 | +</g> | |
| 206 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 207 | +<use xlink:href="#glyph-0-1" x="51.314164" y="20.639385"/> | |
| 208 | +<use xlink:href="#glyph-0-2" x="56.268051" y="20.639385"/> | |
| 209 | +<use xlink:href="#glyph-0-3" x="60.575413" y="20.639385"/> | |
| 210 | +<use xlink:href="#glyph-0-4" x="64.991929" y="20.639385"/> | |
| 211 | +<use xlink:href="#glyph-0-5" x="70.457997" y="20.639385"/> | |
| 212 | +</g> | |
| 213 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 214 | +<use xlink:href="#glyph-1-0" x="29.708981" y="35.52668"/> | |
| 215 | +<use xlink:href="#glyph-1-1" x="35.519302" y="35.52668"/> | |
| 216 | +<use xlink:href="#glyph-1-2" x="40.439603" y="35.52668"/> | |
| 217 | +<use xlink:href="#glyph-1-3" x="42.757015" y="35.52668"/> | |
| 218 | +<use xlink:href="#glyph-1-2" x="47.618541" y="35.52668"/> | |
| 219 | +<use xlink:href="#glyph-1-4" x="49.935952" y="35.52668"/> | |
| 220 | +<use xlink:href="#glyph-1-3" x="54.83946" y="35.52668"/> | |
| 221 | +</g> | |
| 222 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 223 | +<use xlink:href="#glyph-1-5" x="62.496994" y="35.52668"/> | |
| 224 | +<use xlink:href="#glyph-1-6" x="67.064645" y="35.52668"/> | |
| 225 | +<use xlink:href="#glyph-1-7" x="70.985773" y="35.52668"/> | |
| 226 | +<use xlink:href="#glyph-1-2" x="74.01688" y="35.52668"/> | |
| 227 | +<use xlink:href="#glyph-1-8" x="76.334291" y="35.52668"/> | |
| 228 | +<use xlink:href="#glyph-1-9" x="83.471247" y="35.52668"/> | |
| 229 | +<use xlink:href="#glyph-1-5" x="88.038898" y="35.52668"/> | |
| 230 | +</g> | |
| 231 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 232 | +<use xlink:href="#glyph-1-10" x="26.904662" y="46.444096"/> | |
| 233 | +<use xlink:href="#glyph-1-4" x="33.437076" y="46.444096"/> | |
| 234 | +<use xlink:href="#glyph-1-3" x="38.340584" y="46.444096"/> | |
| 235 | +<use xlink:href="#glyph-1-7" x="43.20211" y="46.444096"/> | |
| 236 | +<use xlink:href="#glyph-1-11" x="46.233217" y="46.444096"/> | |
| 237 | +<use xlink:href="#glyph-1-3" x="50.758886" y="46.444096"/> | |
| 238 | +<use xlink:href="#glyph-1-7" x="55.620413" y="46.444096"/> | |
| 239 | +</g> | |
| 240 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 241 | +<use xlink:href="#glyph-2-0" x="61.447527" y="46.444096"/> | |
| 242 | +<use xlink:href="#glyph-2-1" x="66.309053" y="46.444096"/> | |
| 243 | +</g> | |
| 244 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 245 | +<use xlink:href="#glyph-2-2" x="69.34016" y="46.444096"/> | |
| 246 | +<use xlink:href="#glyph-2-3" x="74.19329" y="46.444096"/> | |
| 247 | +<use xlink:href="#glyph-2-4" x="79.054816" y="46.444096"/> | |
| 248 | +<use xlink:href="#glyph-2-3" x="83.832378" y="46.444096"/> | |
| 249 | +<use xlink:href="#glyph-2-5" x="88.693904" y="46.444096"/> | |
| 250 | +</g> | |
| 251 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 252 | +<use xlink:href="#glyph-2-6" x="91.07009" y="46.444096"/> | |
| 253 | +</g> | |
| 254 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 255 | +<use xlink:href="#glyph-1-12" x="16.053992" y="57.361512"/> | |
| 256 | +</g> | |
| 257 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 258 | +<use xlink:href="#glyph-1-4" x="19.933137" y="57.361512"/> | |
| 259 | +<use xlink:href="#glyph-1-13" x="24.836646" y="57.361512"/> | |
| 260 | +<use xlink:href="#glyph-1-14" x="29.664586" y="57.361512"/> | |
| 261 | +<use xlink:href="#glyph-1-3" x="32.880414" y="57.361512"/> | |
| 262 | +<use xlink:href="#glyph-1-9" x="37.74194" y="57.361512"/> | |
| 263 | +<use xlink:href="#glyph-1-5" x="42.309592" y="57.361512"/> | |
| 264 | +</g> | |
| 265 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 266 | +<use xlink:href="#glyph-1-15" x="49.673251" y="57.361512"/> | |
| 267 | +</g> | |
| 268 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 269 | +<use xlink:href="#glyph-1-5" x="53.770703" y="57.361512"/> | |
| 270 | +<use xlink:href="#glyph-1-14" x="58.338354" y="57.361512"/> | |
| 271 | +</g> | |
| 272 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 273 | +<use xlink:href="#glyph-1-6" x="61.428236" y="57.361512"/> | |
| 274 | +</g> | |
| 275 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 276 | +<use xlink:href="#glyph-1-16" x="68.153767" y="57.361512"/> | |
| 277 | +</g> | |
| 278 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 279 | +<use xlink:href="#glyph-1-5" x="70.580332" y="57.361512"/> | |
| 280 | +</g> | |
| 281 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 282 | +<use xlink:href="#glyph-0-6" x="77.943991" y="57.361512"/> | |
| 283 | +<use xlink:href="#glyph-0-7" x="85.005379" y="57.361512"/> | |
| 284 | +<use xlink:href="#glyph-0-8" x="89.589823" y="57.361512"/> | |
| 285 | +</g> | |
| 286 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 287 | +<use xlink:href="#glyph-0-9" x="92.780462" y="57.361512"/> | |
| 288 | +<use xlink:href="#glyph-0-10" x="96.802346" y="57.361512"/> | |
| 289 | +<use xlink:href="#glyph-0-11" x="101.613494" y="57.361512"/> | |
| 290 | +</g> | |
| 291 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 235.777344 5.160156 L 136.984375 5.160156 C 133.695312 5.160156 131.027344 7.824219 131.027344 11.113281 L 131.027344 61.332031 C 131.027344 64.621094 133.695312 67.285156 136.984375 67.285156 L 235.777344 67.285156 C 239.066406 67.285156 241.730469 64.621094 241.730469 61.332031 L 241.730469 11.113281 C 241.730469 7.824219 239.066406 5.160156 235.777344 5.160156 Z M 235.777344 5.160156 "/> | |
| 292 | +<g clip-path="url(#clip-1)"> | |
| 293 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 175.283272 31.181189 L 76.114004 31.181189 C 72.812413 31.181189 70.134282 28.506979 70.134282 25.205389 L 70.134282 -25.204643 C 70.134282 -28.506234 72.812413 -31.180444 76.114004 -31.180444 L 175.283272 -31.180444 C 178.584863 -31.180444 181.259073 -28.506234 181.259073 -25.204643 L 181.259073 25.205389 C 181.259073 28.506979 178.584863 31.181189 175.283272 31.181189 Z M 175.283272 31.181189 " transform="matrix(0.996205, 0, 0, -0.996205, 61.159188, 36.223027)"/> | |
| 294 | +</g> | |
| 295 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 296 | +<use xlink:href="#glyph-0-12" x="177.599669" y="20.639385"/> | |
| 297 | +<use xlink:href="#glyph-0-5" x="182.63752" y="20.639385"/> | |
| 298 | +<use xlink:href="#glyph-0-13" x="187.81811" y="20.639385"/> | |
| 299 | +<use xlink:href="#glyph-0-14" x="190.27826" y="20.639385"/> | |
| 300 | +</g> | |
| 301 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 302 | +<use xlink:href="#glyph-1-17" x="161.166263" y="35.52668"/> | |
| 303 | +</g> | |
| 304 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 305 | +<use xlink:href="#glyph-1-11" x="164.869084" y="35.52668"/> | |
| 306 | +<use xlink:href="#glyph-1-2" x="169.394753" y="35.52668"/> | |
| 307 | +<use xlink:href="#glyph-1-7" x="171.712165" y="35.52668"/> | |
| 308 | +</g> | |
| 309 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 310 | +<use xlink:href="#glyph-1-11" x="177.539279" y="35.52668"/> | |
| 311 | +<use xlink:href="#glyph-1-18" x="182.064948" y="35.52668"/> | |
| 312 | +</g> | |
| 313 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 314 | +<use xlink:href="#glyph-1-18" x="185.95249" y="35.52668"/> | |
| 315 | +</g> | |
| 316 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 317 | +<use xlink:href="#glyph-1-4" x="189.840032" y="35.52668"/> | |
| 318 | +<use xlink:href="#glyph-1-8" x="194.74354" y="35.52668"/> | |
| 319 | +<use xlink:href="#glyph-1-1" x="201.880495" y="35.52668"/> | |
| 320 | +<use xlink:href="#glyph-1-16" x="206.800796" y="35.52668"/> | |
| 321 | +<use xlink:href="#glyph-1-2" x="209.269343" y="35.52668"/> | |
| 322 | +</g> | |
| 323 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 324 | +<use xlink:href="#glyph-1-10" x="160.113274" y="46.444096"/> | |
| 325 | +<use xlink:href="#glyph-1-4" x="166.645687" y="46.444096"/> | |
| 326 | +<use xlink:href="#glyph-1-3" x="171.549196" y="46.444096"/> | |
| 327 | +<use xlink:href="#glyph-1-7" x="176.410722" y="46.444096"/> | |
| 328 | +<use xlink:href="#glyph-1-11" x="179.441829" y="46.444096"/> | |
| 329 | +<use xlink:href="#glyph-1-3" x="183.967498" y="46.444096"/> | |
| 330 | +<use xlink:href="#glyph-1-7" x="188.829024" y="46.444096"/> | |
| 331 | +</g> | |
| 332 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 333 | +<use xlink:href="#glyph-2-0" x="194.656139" y="46.444096"/> | |
| 334 | +<use xlink:href="#glyph-2-4" x="199.517665" y="46.444096"/> | |
| 335 | +</g> | |
| 336 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 337 | +<use xlink:href="#glyph-2-7" x="204.253245" y="46.444096"/> | |
| 338 | +</g> | |
| 339 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 340 | +<use xlink:href="#glyph-2-8" x="208.300318" y="46.444096"/> | |
| 341 | +</g> | |
| 342 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 343 | +<use xlink:href="#glyph-1-12" x="135.878583" y="57.361512"/> | |
| 344 | +</g> | |
| 345 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 346 | +<use xlink:href="#glyph-1-4" x="139.757729" y="57.361512"/> | |
| 347 | +<use xlink:href="#glyph-1-13" x="144.661237" y="57.361512"/> | |
| 348 | +<use xlink:href="#glyph-1-14" x="149.489177" y="57.361512"/> | |
| 349 | +<use xlink:href="#glyph-1-3" x="152.705006" y="57.361512"/> | |
| 350 | +<use xlink:href="#glyph-1-9" x="157.566532" y="57.361512"/> | |
| 351 | +</g> | |
| 352 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 353 | +<use xlink:href="#glyph-1-15" x="164.93019" y="57.361512"/> | |
| 354 | +</g> | |
| 355 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 356 | +<use xlink:href="#glyph-1-5" x="169.027643" y="57.361512"/> | |
| 357 | +<use xlink:href="#glyph-1-14" x="173.595294" y="57.361512"/> | |
| 358 | +</g> | |
| 359 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 360 | +<use xlink:href="#glyph-1-6" x="176.685176" y="57.361512"/> | |
| 361 | +</g> | |
| 362 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 363 | +<use xlink:href="#glyph-1-16" x="183.410707" y="57.361512"/> | |
| 364 | +</g> | |
| 365 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 366 | +<use xlink:href="#glyph-1-11" x="185.837272" y="57.361512"/> | |
| 367 | +</g> | |
| 368 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 369 | +<use xlink:href="#glyph-0-15" x="193.158949" y="57.361512"/> | |
| 370 | +<use xlink:href="#glyph-0-8" x="196.399966" y="57.361512"/> | |
| 371 | +</g> | |
| 372 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 373 | +<use xlink:href="#glyph-0-7" x="199.540227" y="57.361512"/> | |
| 374 | +<use xlink:href="#glyph-0-16" x="204.124671" y="57.361512"/> | |
| 375 | +<use xlink:href="#glyph-0-17" x="208.935819" y="57.361512"/> | |
| 376 | +<use xlink:href="#glyph-0-7" x="212.966099" y="57.361512"/> | |
| 377 | +<use xlink:href="#glyph-0-9" x="217.550544" y="57.361512"/> | |
| 378 | +<use xlink:href="#glyph-0-15" x="221.572428" y="57.361512"/> | |
| 379 | +<use xlink:href="#glyph-0-18" x="224.813446" y="57.361512"/> | |
| 380 | +<use xlink:href="#glyph-0-19" x="227.164443" y="57.361512"/> | |
| 381 | +<use xlink:href="#glyph-0-16" x="232.067951" y="57.361512"/> | |
| 382 | +</g> | |
| 383 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 360.996094 5.160156 L 262.203125 5.160156 C 258.914062 5.160156 256.25 7.824219 256.25 11.113281 L 256.25 61.332031 C 256.25 64.621094 258.914062 67.285156 262.203125 67.285156 L 360.996094 67.285156 C 364.285156 67.285156 366.953125 64.621094 366.953125 61.332031 L 366.953125 11.113281 C 366.953125 7.824219 364.285156 5.160156 360.996094 5.160156 Z M 360.996094 5.160156 "/> | |
| 384 | +<g clip-path="url(#clip-2)"> | |
| 385 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 300.978977 31.181189 L 201.809709 31.181189 C 198.508118 31.181189 195.833908 28.506979 195.833908 25.205389 L 195.833908 -25.204643 C 195.833908 -28.506234 198.508118 -31.180444 201.809709 -31.180444 L 300.978977 -31.180444 C 304.280568 -31.180444 306.958699 -28.506234 306.958699 -25.204643 L 306.958699 25.205389 C 306.958699 28.506979 304.280568 31.181189 300.978977 31.181189 Z M 300.978977 31.181189 " transform="matrix(0.996205, 0, 0, -0.996205, 61.159188, 36.223027)"/> | |
| 386 | +</g> | |
| 387 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 388 | +<use xlink:href="#glyph-0-20" x="301.366245" y="20.851577"/> | |
| 389 | +</g> | |
| 390 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 391 | +<use xlink:href="#glyph-0-21" x="306.026257" y="20.851577"/> | |
| 392 | +<use xlink:href="#glyph-0-22" x="311.828182" y="20.851577"/> | |
| 393 | +<use xlink:href="#glyph-0-23" x="317.294251" y="20.851577"/> | |
| 394 | +</g> | |
| 395 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 396 | +<use xlink:href="#glyph-1-19" x="282.968322" y="35.738872"/> | |
| 397 | +<use xlink:href="#glyph-1-9" x="288.375616" y="35.738872"/> | |
| 398 | +<use xlink:href="#glyph-1-1" x="292.943267" y="35.738872"/> | |
| 399 | +<use xlink:href="#glyph-1-5" x="297.863568" y="35.738872"/> | |
| 400 | +<use xlink:href="#glyph-1-3" x="302.43122" y="35.738872"/> | |
| 401 | +<use xlink:href="#glyph-1-6" x="307.292746" y="35.738872"/> | |
| 402 | +<use xlink:href="#glyph-1-5" x="311.213873" y="35.738872"/> | |
| 403 | +</g> | |
| 404 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 405 | +<use xlink:href="#glyph-1-14" x="318.577532" y="35.738872"/> | |
| 406 | +</g> | |
| 407 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 408 | +<use xlink:href="#glyph-1-9" x="321.625432" y="35.738872"/> | |
| 409 | +<use xlink:href="#glyph-1-5" x="326.193084" y="35.738872"/> | |
| 410 | +<use xlink:href="#glyph-1-16" x="330.760735" y="35.738872"/> | |
| 411 | +<use xlink:href="#glyph-1-16" x="333.229282" y="35.738872"/> | |
| 412 | +</g> | |
| 413 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 414 | +<use xlink:href="#glyph-1-5" x="335.655847" y="35.738872"/> | |
| 415 | +</g> | |
| 416 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 417 | +<use xlink:href="#glyph-1-10" x="281.956178" y="46.656287"/> | |
| 418 | +<use xlink:href="#glyph-1-4" x="288.488591" y="46.656287"/> | |
| 419 | +<use xlink:href="#glyph-1-3" x="293.392099" y="46.656287"/> | |
| 420 | +<use xlink:href="#glyph-1-7" x="298.253625" y="46.656287"/> | |
| 421 | +<use xlink:href="#glyph-1-11" x="301.284732" y="46.656287"/> | |
| 422 | +<use xlink:href="#glyph-1-3" x="305.810402" y="46.656287"/> | |
| 423 | +<use xlink:href="#glyph-1-7" x="310.671928" y="46.656287"/> | |
| 424 | +</g> | |
| 425 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 426 | +<use xlink:href="#glyph-2-9" x="316.499042" y="46.656287"/> | |
| 427 | +<use xlink:href="#glyph-2-10" x="318.841643" y="46.656287"/> | |
| 428 | +</g> | |
| 429 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 430 | +<use xlink:href="#glyph-2-11" x="323.652791" y="46.656287"/> | |
| 431 | +</g> | |
| 432 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 433 | +<use xlink:href="#glyph-2-6" x="327.699864" y="46.656287"/> | |
| 434 | +<use xlink:href="#glyph-2-12" x="332.040813" y="46.656287"/> | |
| 435 | +<use xlink:href="#glyph-2-13" x="335.911561" y="46.656287"/> | |
| 436 | +<use xlink:href="#glyph-2-9" x="338.89229" y="46.656287"/> | |
| 437 | +</g> | |
| 438 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 439 | +<use xlink:href="#glyph-1-12" x="261.886622" y="57.573703"/> | |
| 440 | +</g> | |
| 441 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 442 | +<use xlink:href="#glyph-1-4" x="265.765767" y="57.573703"/> | |
| 443 | +<use xlink:href="#glyph-1-13" x="270.669275" y="57.573703"/> | |
| 444 | +<use xlink:href="#glyph-1-14" x="275.497216" y="57.573703"/> | |
| 445 | +<use xlink:href="#glyph-1-3" x="278.713044" y="57.573703"/> | |
| 446 | +<use xlink:href="#glyph-1-9" x="283.57457" y="57.573703"/> | |
| 447 | +</g> | |
| 448 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 449 | +<use xlink:href="#glyph-1-15" x="290.938229" y="57.573703"/> | |
| 450 | +</g> | |
| 451 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 452 | +<use xlink:href="#glyph-1-5" x="295.035681" y="57.573703"/> | |
| 453 | +<use xlink:href="#glyph-1-14" x="299.603333" y="57.573703"/> | |
| 454 | +</g> | |
| 455 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 456 | +<use xlink:href="#glyph-1-6" x="302.693215" y="57.573703"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-1-16" x="309.418746" y="57.573703"/> | |
| 460 | +</g> | |
| 461 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 462 | +<use xlink:href="#glyph-1-11" x="311.845311" y="57.573703"/> | |
| 463 | +</g> | |
| 464 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 465 | +<use xlink:href="#glyph-0-24" x="319.166987" y="57.573703"/> | |
| 466 | +<use xlink:href="#glyph-0-8" x="324.129271" y="57.573703"/> | |
| 467 | +</g> | |
| 468 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 469 | +<use xlink:href="#glyph-0-19" x="327.31991" y="57.573703"/> | |
| 470 | +<use xlink:href="#glyph-0-25" x="332.223418" y="57.573703"/> | |
| 471 | +<use xlink:href="#glyph-0-26" x="337.21089" y="57.573703"/> | |
| 472 | +<use xlink:href="#glyph-0-9" x="341.980056" y="57.573703"/> | |
| 473 | +<use xlink:href="#glyph-0-15" x="346.00194" y="57.573703"/> | |
| 474 | +<use xlink:href="#glyph-0-18" x="349.242958" y="57.573703"/> | |
| 475 | +<use xlink:href="#glyph-0-19" x="351.593955" y="57.573703"/> | |
| 476 | +<use xlink:href="#glyph-0-16" x="356.497463" y="57.573703"/> | |
| 477 | +</g> | |
| 478 | +</svg> | |
added
dist/assets/fig/3a6143e325040efc.svg
+680 −0
@@ -0,0 +1,680 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="151.251pt" viewBox="0 0 314.242 151.251"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.703125 -4.734375 L 2.03125 -4.734375 L 0.296875 -3.65625 L 0.625 -3.109375 L 1.9375 -3.90625 L 1.9375 0 L 2.703125 0 Z M 2.703125 -4.734375 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.328125 0.09375 1.578125 -0.15625 1.578125 -0.484375 C 1.578125 -0.8125 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 3.921875 0 L 4.859375 0 L 3.3125 -2.59375 C 4.140625 -2.84375 4.5625 -3.328125 4.5625 -4.140625 C 4.5625 -5.234375 3.796875 -5.78125 2.359375 -5.78125 L 0.84375 -5.78125 L 0.84375 0 L 1.640625 0 L 1.640625 -2.453125 L 2.53125 -2.453125 Z M 1.640625 -3.0625 L 1.640625 -5.15625 L 2.34375 -5.15625 C 3.296875 -5.15625 3.703125 -4.859375 3.703125 -4.140625 C 3.703125 -3.359375 3.25 -3.0625 2.4375 -3.0625 Z M 1.640625 -3.0625 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.046875 -4.421875 L 3.234375 -4.421875 L 2.078125 -0.6875 L 0.921875 -4.421875 L 0.078125 -4.421875 L 1.609375 0 L 2.546875 0 Z M 4.046875 -4.421875 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.421875 -0.84375 4.421875 -2.21875 C 4.421875 -3.609375 3.71875 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.90625 C 3.1875 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.453125 -3.90625 Z M 2.453125 -3.90625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 1.15625 -6.546875 C 0.828125 -6.546875 0.609375 -6.3125 0.609375 -6.015625 C 0.609375 -5.71875 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.6875 -5.71875 1.6875 -6.015625 C 1.6875 -6.3125 1.484375 -6.546875 1.15625 -6.546875 Z M 1.546875 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.421875 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.765625 2.59375 -3.765625 C 2.765625 -3.765625 2.859375 -3.75 2.984375 -3.71875 L 3.125 -4.46875 C 3 -4.5 2.84375 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.75 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.4375 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.34375 -4.390625 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.859375 -4.515625 C 2.296875 -4.515625 1.859375 -4.25 1.546875 -3.8125 L 1.546875 -6.28125 L 0.765625 -6.1875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.1875 -3.921875 2.65625 -3.921875 C 3.078125 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4 3.65625 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 3.515625 -4.421875 L 3.453125 -3.921875 C 3.15625 -4.265625 2.765625 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.15625 3.40625 -0.59375 L 3.40625 1.6875 L 4.171875 1.78125 L 4.171875 -4.421875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.390625 -3.90625 C 2.8125 -3.90625 3.125 -3.6875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 4.046875 -4.421875 L 3.28125 -4.421875 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.5 -0.734375 1.5 -1.328125 L 1.5 -4.421875 L 0.71875 -4.421875 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 3 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.421875 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.859375 -4.515625 C 2.28125 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.09375 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.109375 -4.28125 2.734375 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.140625 -0.171875 3.421875 -0.609375 L 3.5 0 L 4.171875 0 L 4.171875 -6.203125 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.390625 -3.90625 C 2.8125 -3.90625 3.125 -3.6875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.578125 -3.828125 L 2.671875 -4.421875 L 1.625 -4.421875 L 1.625 -5.515625 L 0.84375 -5.421875 L 0.84375 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.25 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.203125 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.6875 1.515625 -3.90625 2.015625 -3.90625 C 2.4375 -3.90625 2.78125 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.34375 2.625 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 2.3125 -6.296875 C 1.234375 -6.296875 0.78125 -5.75 0.78125 -5 L 0.78125 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.78125 -3.828125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.828125 L 3.25 -3.828125 L 3.25 0 L 4.03125 0 L 4.03125 -4.421875 L 1.5625 -4.421875 L 1.5625 -5.015625 C 1.5625 -5.421875 1.71875 -5.65625 2.34375 -5.65625 C 2.6875 -5.65625 3 -5.59375 3.265625 -5.453125 L 3.546875 -5.984375 C 3.1875 -6.171875 2.8125 -6.296875 2.3125 -6.296875 Z M 2.3125 -6.296875 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 2.796875 -4.515625 C 2.25 -4.515625 1.84375 -4.28125 1.546875 -3.875 L 1.546875 -6.296875 L 0.765625 -6.203125 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.78125 0.09375 4.4375 -0.828125 4.4375 -2.21875 C 4.4375 -3.6875 3.796875 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.765625 -0.75 1.546875 -1.109375 L 1.546875 -3.21875 C 1.765625 -3.578125 2.09375 -3.90625 2.578125 -3.90625 C 3.203125 -3.90625 3.609375 -3.46875 3.609375 -2.21875 C 3.609375 -1 3.15625 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 3.34375 -6.078125 L 3 -6.71875 L 1.328125 -5.765625 L 1.5625 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 1.875 -4.8125 C 1.125 -4.8125 0.59375 -4.5 0.125 -3.921875 L 0.625 -3.53125 C 1.03125 -4.015625 1.390625 -4.1875 1.859375 -4.1875 C 2.40625 -4.1875 2.796875 -3.84375 2.796875 -3.3125 C 2.796875 -2.640625 2.546875 -2.25 0.25 -0.609375 L 0.25 0 L 3.609375 0 L 3.703125 -0.640625 L 1.234375 -0.640625 C 3.40625 -2.015625 3.609375 -2.5625 3.609375 -3.328125 C 3.609375 -4.171875 2.9375 -4.8125 1.875 -4.8125 Z M 1.875 -4.8125 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 1.640625 -5.78125 L 0.84375 -5.78125 L 0.84375 0 L 1.640625 0 Z M 1.640625 -5.78125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 2.296875 -5.671875 C 2.53125 -5.671875 2.78125 -5.625 3.078125 -5.5 L 3.3125 -6.0625 C 2.96875 -6.21875 2.671875 -6.296875 2.25 -6.296875 C 1.359375 -6.296875 0.875 -5.765625 0.875 -5.03125 L 0.875 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.875 -3.828125 L 0.875 0 L 1.640625 0 L 1.640625 -3.828125 L 2.640625 -3.828125 L 2.71875 -4.421875 L 1.640625 -4.421875 L 1.640625 -5.03125 C 1.640625 -5.46875 1.8125 -5.671875 2.296875 -5.671875 Z M 2.296875 -5.671875 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 1.890625 -7.09375 C 1.078125 -5.921875 0.328125 -4.921875 0.328125 -2.9375 C 0.328125 -0.953125 1.078125 0.046875 1.890625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.734375 1.625 -5.640625 2.390625 -6.75 Z M 1.890625 -7.09375 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.21875 -4.203125 3.890625 -3.71875 C 3.71875 -4.234375 3.328125 -4.515625 2.78125 -4.515625 C 2.203125 -4.515625 1.796875 -4.21875 1.5 -3.78125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.578125 -3.921875 C 2.921875 -3.921875 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.015625 -3.921875 C 5.359375 -3.921875 5.640625 -3.71875 5.640625 -3.0625 L 5.640625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.9375 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 0.265625 -2.296875 L 4.09375 -2.296875 L 4.09375 -2.953125 L 0.265625 -2.953125 Z M 0.265625 -2.296875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.421875 L 2.984375 -4.421875 L 2.046875 -2.796875 L 1.125 -4.421875 L 0.21875 -4.421875 L 1.578125 -2.328125 L 0.046875 0 L 0.921875 0 L 2.015625 -1.875 L 3.09375 0 L 4.03125 0 Z M 2.484375 -2.359375 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 0.828125 -7.09375 L 0.328125 -6.75 C 1.09375 -5.640625 1.578125 -4.734375 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.328125 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.921875 1.640625 -5.921875 0.828125 -7.09375 Z M 0.828125 -7.09375 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 1.875 -4.8125 C 1.234375 -4.8125 0.71875 -4.59375 0.25 -4.15625 L 0.640625 -3.6875 C 1.03125 -4.046875 1.359375 -4.203125 1.796875 -4.203125 C 2.40625 -4.203125 2.765625 -3.875 2.765625 -3.359375 C 2.765625 -2.75 2.3125 -2.40625 1.71875 -2.40625 L 1.4375 -2.40625 L 1.34375 -1.8125 L 1.765625 -1.8125 C 2.515625 -1.8125 2.90625 -1.515625 2.90625 -0.765625 C 2.90625 -0.078125 2.484375 0.359375 1.75 0.359375 C 1.296875 0.359375 0.921875 0.1875 0.546875 -0.203125 L 0.078125 0.21875 C 0.515625 0.734375 1.09375 0.984375 1.765625 0.984375 C 2.96875 0.984375 3.71875 0.25 3.71875 -0.734375 C 3.71875 -1.625 3.1875 -2.0625 2.4375 -2.140625 C 3.078125 -2.296875 3.546875 -2.75 3.546875 -3.421875 C 3.546875 -4.15625 2.953125 -4.8125 1.875 -4.8125 Z M 1.875 -4.8125 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-0-30"> | |
| 96 | +<path d="M 3.921875 0 L 4.75 0 L 2.90625 -5.78125 L 1.90625 -5.78125 L 0.046875 0 L 0.859375 0 L 1.296875 -1.453125 L 3.484375 -1.453125 Z M 1.484375 -2.09375 L 2.390625 -5.125 L 3.296875 -2.09375 Z M 1.484375 -2.09375 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-0-31"> | |
| 99 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.609375 3.984375 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.578125 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.609375 -3.359375 3.609375 -2.21875 C 3.609375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-0-32"> | |
| 102 | +<path d="M 3.4375 -5.765625 L 1.765625 -6.71875 L 1.421875 -6.078125 L 3.203125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-0-33"> | |
| 105 | +<path d="M 3.234375 -5.765625 L 1.5625 -6.71875 L 1.21875 -6.078125 L 3 -5.359375 Z M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-0-34"> | |
| 108 | +<path d="M 4.15625 -0.9375 L 3.453125 -0.9375 L 3.453125 -2.453125 L 2.796875 -2.453125 L 2.734375 -0.9375 L 0.984375 -0.9375 L 2.5 -4.546875 L 1.859375 -4.8125 L 0.171875 -0.875 L 0.171875 -0.328125 L 2.734375 -0.328125 L 2.734375 0.890625 L 3.453125 0.890625 L 3.453125 -0.328125 L 4.15625 -0.328125 Z M 4.15625 -0.9375 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-0-35"> | |
| 111 | +<path d="M 1 -4.15625 C 0.671875 -4.15625 0.421875 -3.890625 0.421875 -3.578125 C 0.421875 -3.25 0.671875 -2.984375 1 -2.984375 C 1.328125 -2.984375 1.578125 -3.25 1.578125 -3.578125 C 1.578125 -3.890625 1.328125 -4.15625 1 -4.15625 Z M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.328125 0.09375 1.578125 -0.15625 1.578125 -0.484375 C 1.578125 -0.8125 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-0-36"> | |
| 114 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.578125 -0.296875 1.578125 -0.484375 C 1.578125 -0.8125 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-0-37"> | |
| 117 | +<path d="M 4.046875 -4.421875 L 3.25 -4.421875 L 2.09375 -0.5625 L 0.90625 -4.421875 L 0.078125 -4.421875 L 1.5625 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.1875 L 0.515625 1.78125 C 1.734375 1.65625 2.25 0.96875 2.5625 0.03125 Z M 4.046875 -4.421875 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-0-38"> | |
| 120 | +<path d="M 3.578125 -4.734375 L 0.546875 -4.734375 L 0.546875 -1.90625 L 1.15625 -1.90625 C 1.390625 -2.015625 1.65625 -2.09375 1.953125 -2.09375 C 2.53125 -2.09375 2.96875 -1.796875 2.96875 -0.9375 C 2.96875 -0.109375 2.53125 0.359375 1.828125 0.359375 C 1.328125 0.359375 0.96875 0.171875 0.625 -0.171875 L 0.171875 0.265625 C 0.609375 0.71875 1.109375 0.984375 1.828125 0.984375 C 3 0.984375 3.78125 0.203125 3.78125 -0.921875 C 3.78125 -2.03125 3.125 -2.6875 2.1875 -2.6875 C 1.875 -2.6875 1.578125 -2.640625 1.28125 -2.46875 L 1.28125 -4.125 L 3.46875 -4.125 Z M 3.578125 -4.734375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-0-39"> | |
| 123 | +<path d="M 0.84375 0 L 1.640625 0 L 1.640625 -2.546875 L 3.53125 -2.546875 L 3.53125 -3.171875 L 1.640625 -3.171875 L 1.640625 -5.140625 L 3.8125 -5.140625 L 3.90625 -5.78125 L 0.84375 -5.78125 Z M 0.84375 0 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-0-40"> | |
| 126 | +<path d="M 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.75 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.4375 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.34375 -4.390625 2.921875 -4.515625 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.890625 1.078125 -0.078125 2.0625 0.078125 L 1.96875 0.828125 C 2.515625 0.828125 2.71875 0.953125 2.71875 1.1875 C 2.71875 1.421875 2.53125 1.515625 2.296875 1.515625 C 2.078125 1.515625 1.9375 1.46875 1.765625 1.390625 L 1.5625 1.828125 C 1.734375 1.953125 2 2.015625 2.328125 2.015625 C 2.890625 2.015625 3.359375 1.734375 3.359375 1.1875 C 3.359375 0.84375 3.15625 0.515625 2.578125 0.46875 L 2.578125 0.09375 C 3.015625 0.0625 3.40625 -0.09375 3.765625 -0.390625 Z M 3.765625 -0.390625 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-0-41"> | |
| 129 | +<path d="M 2.625 -3.6875 C 2.0625 -3.6875 1.609375 -3.46875 1.234375 -2.9375 C 1.265625 -4.234375 1.765625 -5.078125 2.625 -5.078125 C 2.9375 -5.078125 3.21875 -5 3.5 -4.84375 L 3.796875 -5.359375 C 3.46875 -5.578125 3.09375 -5.703125 2.625 -5.703125 C 1.265625 -5.703125 0.46875 -4.46875 0.46875 -2.640625 C 0.46875 -1.03125 0.984375 0.09375 2.390625 0.09375 C 3.375 0.09375 4.203125 -0.671875 4.203125 -1.90625 C 4.203125 -3.109375 3.453125 -3.6875 2.625 -3.6875 Z M 2.390625 -0.515625 C 1.609375 -0.515625 1.28125 -1.078125 1.234375 -2.296875 C 1.53125 -2.765625 1.953125 -3.078125 2.484375 -3.078125 C 3.015625 -3.078125 3.421875 -2.765625 3.421875 -1.875 C 3.421875 -1.0625 3.046875 -0.515625 2.390625 -0.515625 Z M 2.390625 -0.515625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-0-42"> | |
| 132 | +<path d="M 1.765625 -5.78125 L 0.96875 -5.78125 L 0.96875 -0.84375 C 0.96875 -0.0625 0.8125 0.265625 0.046875 0.578125 L 0.25 1.15625 C 1.1875 0.859375 1.765625 0.40625 1.765625 -0.8125 Z M 1.765625 -5.78125 "/> | |
| 133 | +</g> | |
| 134 | +</g> | |
| 135 | +<clipPath id="clip-0"> | |
| 136 | +<path clip-rule="nonzero" d="M 0.398438 0 L 313.089844 0 L 313.089844 28 L 0.398438 28 Z M 0.398438 0 "/> | |
| 137 | +</clipPath> | |
| 138 | +<clipPath id="clip-1"> | |
| 139 | +<path clip-rule="nonzero" d="M 0.398438 24 L 313.089844 24 L 313.089844 53 L 0.398438 53 Z M 0.398438 24 "/> | |
| 140 | +</clipPath> | |
| 141 | +<clipPath id="clip-2"> | |
| 142 | +<path clip-rule="nonzero" d="M 0.398438 48 L 313.089844 48 L 313.089844 77 L 0.398438 77 Z M 0.398438 48 "/> | |
| 143 | +</clipPath> | |
| 144 | +<clipPath id="clip-3"> | |
| 145 | +<path clip-rule="nonzero" d="M 0.398438 73 L 313.089844 73 L 313.089844 102 L 0.398438 102 Z M 0.398438 73 "/> | |
| 146 | +</clipPath> | |
| 147 | +<clipPath id="clip-4"> | |
| 148 | +<path clip-rule="nonzero" d="M 0.398438 98 L 313.089844 98 L 313.089844 127 L 0.398438 127 Z M 0.398438 98 "/> | |
| 149 | +</clipPath> | |
| 150 | +<clipPath id="clip-5"> | |
| 151 | +<path clip-rule="nonzero" d="M 0.398438 122 L 313.089844 122 L 313.089844 150.503906 L 0.398438 150.503906 Z M 0.398438 122 "/> | |
| 152 | +</clipPath> | |
| 153 | +</defs> | |
| 154 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 5.15625 L 9.515625 5.15625 C 7.324219 5.15625 5.550781 6.929688 5.550781 9.121094 L 5.550781 18.113281 C 5.550781 20.304688 7.324219 22.078125 9.515625 22.078125 L 303.972656 22.078125 C 306.160156 22.078125 307.9375 20.304688 307.9375 18.113281 L 307.9375 9.121094 C 307.9375 6.929688 306.160156 5.15625 303.972656 5.15625 Z M 303.972656 5.15625 "/> | |
| 155 | +<g clip-path="url(#clip-0)"> | |
| 156 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 8.502216 L -147.957322 8.502216 C -150.15958 8.502216 -151.9418 6.719996 -151.9418 4.517738 L -151.9418 -4.518979 C -151.9418 -6.721237 -150.15958 -8.503457 -147.957322 -8.503457 L 147.957871 -8.503457 C 150.156203 -8.503457 151.942348 -6.721237 151.942348 -4.518979 L 151.942348 4.517738 C 151.942348 6.719996 150.156203 8.502216 147.957871 8.502216 Z M 147.957871 8.502216 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 157 | +</g> | |
| 158 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 159 | +<use xlink:href="#glyph-0-0" x="58.922283" y="16.02365"/> | |
| 160 | +<use xlink:href="#glyph-0-1" x="62.469928" y="16.02365"/> | |
| 161 | +</g> | |
| 162 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 163 | +<use xlink:href="#glyph-0-2" x="67.275604" y="16.02365"/> | |
| 164 | +</g> | |
| 165 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 166 | +<use xlink:href="#glyph-0-3" x="72.307725" y="16.02365"/> | |
| 167 | +</g> | |
| 168 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 169 | +<use xlink:href="#glyph-0-4" x="76.828246" y="16.02365"/> | |
| 170 | +</g> | |
| 171 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 172 | +<use xlink:href="#glyph-0-5" x="80.921038" y="16.02365"/> | |
| 173 | +<use xlink:href="#glyph-0-6" x="85.818969" y="16.02365"/> | |
| 174 | +<use xlink:href="#glyph-0-7" x="88.133744" y="16.02365"/> | |
| 175 | +</g> | |
| 176 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 177 | +<use xlink:href="#glyph-0-8" x="94.147129" y="16.02365"/> | |
| 178 | +<use xlink:href="#glyph-0-9" x="98.156052" y="16.02365"/> | |
| 179 | +<use xlink:href="#glyph-0-10" x="103.012048" y="16.02365"/> | |
| 180 | +<use xlink:href="#glyph-0-11" x="107.53257" y="16.02365"/> | |
| 181 | +<use xlink:href="#glyph-0-12" x="112.480822" y="16.02365"/> | |
| 182 | +<use xlink:href="#glyph-0-3" x="117.303271" y="16.02365"/> | |
| 183 | +</g> | |
| 184 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 185 | +<use xlink:href="#glyph-0-6" x="124.658554" y="16.02365"/> | |
| 186 | +<use xlink:href="#glyph-0-13" x="126.97333" y="16.02365"/> | |
| 187 | +<use xlink:href="#glyph-0-14" x="131.829326" y="16.02365"/> | |
| 188 | +<use xlink:href="#glyph-0-6" x="136.777579" y="16.02365"/> | |
| 189 | +<use xlink:href="#glyph-0-8" x="139.092354" y="16.02365"/> | |
| 190 | +</g> | |
| 191 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 192 | +<use xlink:href="#glyph-0-10" x="143.059343" y="16.02365"/> | |
| 193 | +<use xlink:href="#glyph-0-15" x="147.579864" y="16.02365"/> | |
| 194 | +<use xlink:href="#glyph-0-6" x="150.607524" y="16.02365"/> | |
| 195 | +<use xlink:href="#glyph-0-5" x="152.922299" y="16.02365"/> | |
| 196 | +<use xlink:href="#glyph-0-13" x="157.82023" y="16.02365"/> | |
| 197 | +</g> | |
| 198 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 199 | +<use xlink:href="#glyph-0-14" x="165.469054" y="16.02365"/> | |
| 200 | +<use xlink:href="#glyph-0-3" x="170.417306" y="16.02365"/> | |
| 201 | +</g> | |
| 202 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 203 | +<use xlink:href="#glyph-0-4" x="177.772589" y="16.02365"/> | |
| 204 | +</g> | |
| 205 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 206 | +<use xlink:href="#glyph-0-10" x="181.856994" y="16.02365"/> | |
| 207 | +</g> | |
| 208 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 209 | +<use xlink:href="#glyph-0-16" x="186.335581" y="16.02365"/> | |
| 210 | +</g> | |
| 211 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 212 | +<use xlink:href="#glyph-0-3" x="188.759386" y="16.02365"/> | |
| 213 | +<use xlink:href="#glyph-0-12" x="193.321842" y="16.02365"/> | |
| 214 | +<use xlink:href="#glyph-0-7" x="198.144291" y="16.02365"/> | |
| 215 | +</g> | |
| 216 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 217 | +<use xlink:href="#glyph-0-3" x="204.157676" y="16.02365"/> | |
| 218 | +<use xlink:href="#glyph-0-15" x="208.720132" y="16.02365"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-0-17" x="214.540618" y="16.02365"/> | |
| 222 | +<use xlink:href="#glyph-0-10" x="218.457285" y="16.02365"/> | |
| 223 | +</g> | |
| 224 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 225 | +<use xlink:href="#glyph-0-18" x="225.770634" y="16.02365"/> | |
| 226 | +<use xlink:href="#glyph-0-10" x="230.567923" y="16.02365"/> | |
| 227 | +<use xlink:href="#glyph-0-19" x="235.088445" y="16.02365"/> | |
| 228 | +<use xlink:href="#glyph-0-6" x="240.003149" y="16.02365"/> | |
| 229 | +<use xlink:href="#glyph-0-16" x="242.317925" y="16.02365"/> | |
| 230 | +<use xlink:href="#glyph-0-6" x="244.783664" y="16.02365"/> | |
| 231 | +<use xlink:href="#glyph-0-15" x="247.09844" y="16.02365"/> | |
| 232 | +</g> | |
| 233 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 234 | +<use xlink:href="#glyph-0-20" x="250.000296" y="16.02365"/> | |
| 235 | +</g> | |
| 236 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 29.808594 L 9.515625 29.808594 C 7.324219 29.808594 5.550781 31.585938 5.550781 33.773438 L 5.550781 42.769531 C 5.550781 44.957031 7.324219 46.734375 9.515625 46.734375 L 303.972656 46.734375 C 306.160156 46.734375 307.9375 44.957031 307.9375 42.769531 L 307.9375 33.773438 C 307.9375 31.585938 306.160156 29.808594 303.972656 29.808594 Z M 303.972656 29.808594 "/> | |
| 237 | +<g clip-path="url(#clip-1)"> | |
| 238 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 -16.272207 L -147.957322 -16.272207 C -150.15958 -16.272207 -151.9418 -18.058352 -151.9418 -20.256685 L -151.9418 -29.297327 C -151.9418 -31.49566 -150.15958 -33.281805 -147.957322 -33.281805 L 147.957871 -33.281805 C 150.156203 -33.281805 151.942348 -31.49566 151.942348 -29.297327 L 151.942348 -20.256685 C 151.942348 -18.058352 150.156203 -16.272207 147.957871 -16.272207 Z M 147.957871 -16.272207 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 239 | +</g> | |
| 240 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 241 | +<use xlink:href="#glyph-0-21" x="63.415035" y="41.18505"/> | |
| 242 | +<use xlink:href="#glyph-0-1" x="67.574922" y="41.18505"/> | |
| 243 | +</g> | |
| 244 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 245 | +<use xlink:href="#glyph-0-22" x="72.380597" y="41.18505"/> | |
| 246 | +<use xlink:href="#glyph-0-14" x="74.854723" y="41.18505"/> | |
| 247 | +<use xlink:href="#glyph-0-3" x="79.802975" y="41.18505"/> | |
| 248 | +<use xlink:href="#glyph-0-13" x="84.365431" y="41.18505"/> | |
| 249 | +<use xlink:href="#glyph-0-15" x="89.221428" y="41.18505"/> | |
| 250 | +<use xlink:href="#glyph-0-6" x="92.249087" y="41.18505"/> | |
| 251 | +<use xlink:href="#glyph-0-18" x="94.563863" y="41.18505"/> | |
| 252 | +<use xlink:href="#glyph-0-3" x="99.361151" y="41.18505"/> | |
| 253 | +<use xlink:href="#glyph-0-7" x="103.923607" y="41.18505"/> | |
| 254 | +</g> | |
| 255 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 256 | +<use xlink:href="#glyph-0-16" x="109.936992" y="41.18505"/> | |
| 257 | +</g> | |
| 258 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 259 | +<use xlink:href="#glyph-0-10" x="112.360796" y="41.18505"/> | |
| 260 | +</g> | |
| 261 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 262 | +<use xlink:href="#glyph-0-23" x="119.674145" y="41.18505"/> | |
| 263 | +</g> | |
| 264 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 265 | +<use xlink:href="#glyph-0-5" x="122.399877" y="41.18505"/> | |
| 266 | +<use xlink:href="#glyph-0-12" x="127.297808" y="41.18505"/> | |
| 267 | +<use xlink:href="#glyph-0-7" x="132.120257" y="41.18505"/> | |
| 268 | +</g> | |
| 269 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 270 | +<use xlink:href="#glyph-0-8" x="135.16469" y="41.18505"/> | |
| 271 | +<use xlink:href="#glyph-0-9" x="139.173613" y="41.18505"/> | |
| 272 | +<use xlink:href="#glyph-0-3" x="144.02961" y="41.18505"/> | |
| 273 | +<use xlink:href="#glyph-0-15" x="148.592066" y="41.18505"/> | |
| 274 | +<use xlink:href="#glyph-0-15" x="151.619725" y="41.18505"/> | |
| 275 | +</g> | |
| 276 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 277 | +<use xlink:href="#glyph-0-3" x="154.521582" y="41.18505"/> | |
| 278 | +</g> | |
| 279 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 280 | +<use xlink:href="#glyph-0-24" x="161.876865" y="41.18505"/> | |
| 281 | +<use xlink:href="#glyph-0-25" x="164.59421" y="41.18505"/> | |
| 282 | +<use xlink:href="#glyph-0-6" x="171.723048" y="41.18505"/> | |
| 283 | +<use xlink:href="#glyph-0-13" x="174.037823" y="41.18505"/> | |
| 284 | +<use xlink:href="#glyph-0-6" x="178.89382" y="41.18505"/> | |
| 285 | +<use xlink:href="#glyph-0-25" x="181.208595" y="41.18505"/> | |
| 286 | +<use xlink:href="#glyph-0-12" x="188.337433" y="41.18505"/> | |
| 287 | +<use xlink:href="#glyph-0-25" x="193.159882" y="41.18505"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-0-26" x="203.089934" y="41.18505"/> | |
| 291 | +</g> | |
| 292 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 293 | +<use xlink:href="#glyph-0-25" x="210.243932" y="41.18505"/> | |
| 294 | +<use xlink:href="#glyph-0-10" x="217.37277" y="41.18505"/> | |
| 295 | +<use xlink:href="#glyph-0-27" x="221.893292" y="41.18505"/> | |
| 296 | +<use xlink:href="#glyph-0-6" x="225.960923" y="41.18505"/> | |
| 297 | +<use xlink:href="#glyph-0-25" x="228.275698" y="41.18505"/> | |
| 298 | +<use xlink:href="#glyph-0-12" x="235.404536" y="41.18505"/> | |
| 299 | +<use xlink:href="#glyph-0-25" x="240.226985" y="41.18505"/> | |
| 300 | +<use xlink:href="#glyph-0-28" x="247.355823" y="41.18505"/> | |
| 301 | +</g> | |
| 302 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 54.464844 L 9.515625 54.464844 C 7.324219 54.464844 5.550781 56.238281 5.550781 58.429688 L 5.550781 67.421875 C 5.550781 69.613281 7.324219 71.386719 9.515625 71.386719 L 303.972656 71.386719 C 306.160156 71.386719 307.9375 69.613281 307.9375 67.421875 L 307.9375 58.429688 C 307.9375 56.238281 306.160156 54.464844 303.972656 54.464844 Z M 303.972656 54.464844 "/> | |
| 303 | +<g clip-path="url(#clip-2)"> | |
| 304 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 -41.050555 L -147.957322 -41.050555 C -150.15958 -41.050555 -151.9418 -42.832775 -151.9418 -45.035033 L -151.9418 -54.07175 C -151.9418 -56.274009 -150.15958 -58.056228 -147.957322 -58.056228 L 147.957871 -58.056228 C 150.156203 -58.056228 151.942348 -56.274009 151.942348 -54.07175 L 151.942348 -45.035033 C 151.942348 -42.832775 150.156203 -41.050555 147.957871 -41.050555 Z M 147.957871 -41.050555 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 305 | +</g> | |
| 306 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 307 | +<use xlink:href="#glyph-0-29" x="37.635695" y="65.332471"/> | |
| 308 | +<use xlink:href="#glyph-0-1" x="41.728487" y="65.332471"/> | |
| 309 | +</g> | |
| 310 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 311 | +<use xlink:href="#glyph-0-30" x="46.534162" y="65.332471"/> | |
| 312 | +<use xlink:href="#glyph-0-31" x="51.339837" y="65.332471"/> | |
| 313 | +<use xlink:href="#glyph-0-31" x="56.254542" y="65.332471"/> | |
| 314 | +<use xlink:href="#glyph-0-16" x="61.169247" y="65.332471"/> | |
| 315 | +<use xlink:href="#glyph-0-6" x="63.634986" y="65.332471"/> | |
| 316 | +<use xlink:href="#glyph-0-11" x="65.949761" y="65.332471"/> | |
| 317 | +<use xlink:href="#glyph-0-12" x="70.898014" y="65.332471"/> | |
| 318 | +<use xlink:href="#glyph-0-3" x="75.720463" y="65.332471"/> | |
| 319 | +<use xlink:href="#glyph-0-7" x="80.282919" y="65.332471"/> | |
| 320 | +</g> | |
| 321 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 322 | +<use xlink:href="#glyph-0-16" x="86.296303" y="65.332471"/> | |
| 323 | +</g> | |
| 324 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 325 | +<use xlink:href="#glyph-0-3" x="88.720108" y="65.332471"/> | |
| 326 | +<use xlink:href="#glyph-0-17" x="93.282564" y="65.332471"/> | |
| 327 | +</g> | |
| 328 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 329 | +<use xlink:href="#glyph-0-8" x="99.992058" y="65.332471"/> | |
| 330 | +<use xlink:href="#glyph-0-7" x="104.000981" y="65.332471"/> | |
| 331 | +<use xlink:href="#glyph-0-6" x="107.213152" y="65.332471"/> | |
| 332 | +<use xlink:href="#glyph-0-15" x="109.527927" y="65.332471"/> | |
| 333 | +</g> | |
| 334 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 335 | +<use xlink:href="#glyph-0-32" x="112.429784" y="65.332471"/> | |
| 336 | +<use xlink:href="#glyph-0-7" x="116.99224" y="65.332471"/> | |
| 337 | +</g> | |
| 338 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 339 | +<use xlink:href="#glyph-0-3" x="120.036673" y="65.332471"/> | |
| 340 | +<use xlink:href="#glyph-0-17" x="124.599129" y="65.332471"/> | |
| 341 | +</g> | |
| 342 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 343 | +<use xlink:href="#glyph-0-14" x="131.308623" y="65.332471"/> | |
| 344 | +<use xlink:href="#glyph-0-3" x="136.256875" y="65.332471"/> | |
| 345 | +</g> | |
| 346 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 347 | +<use xlink:href="#glyph-0-31" x="143.620546" y="65.332471"/> | |
| 348 | +<use xlink:href="#glyph-0-5" x="148.53525" y="65.332471"/> | |
| 349 | +<use xlink:href="#glyph-0-13" x="153.433181" y="65.332471"/> | |
| 350 | +<use xlink:href="#glyph-0-14" x="158.289178" y="65.332471"/> | |
| 351 | +<use xlink:href="#glyph-0-20" x="163.23743" y="65.332471"/> | |
| 352 | +<use xlink:href="#glyph-0-7" x="167.799886" y="65.332471"/> | |
| 353 | +</g> | |
| 354 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-0-10" x="170.844319" y="65.332471"/> | |
| 356 | +<use xlink:href="#glyph-0-15" x="175.364841" y="65.332471"/> | |
| 357 | +<use xlink:href="#glyph-0-6" x="178.3925" y="65.332471"/> | |
| 358 | +<use xlink:href="#glyph-0-5" x="180.707276" y="65.332471"/> | |
| 359 | +<use xlink:href="#glyph-0-13" x="185.605206" y="65.332471"/> | |
| 360 | +</g> | |
| 361 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 362 | +<use xlink:href="#glyph-0-33" x="193.25403" y="65.332471"/> | |
| 363 | +</g> | |
| 364 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 365 | +<use xlink:href="#glyph-0-8" x="200.567379" y="65.332471"/> | |
| 366 | +<use xlink:href="#glyph-0-9" x="204.576302" y="65.332471"/> | |
| 367 | +<use xlink:href="#glyph-0-10" x="209.432298" y="65.332471"/> | |
| 368 | +<use xlink:href="#glyph-0-11" x="213.95282" y="65.332471"/> | |
| 369 | +<use xlink:href="#glyph-0-12" x="218.901072" y="65.332471"/> | |
| 370 | +<use xlink:href="#glyph-0-3" x="223.723521" y="65.332471"/> | |
| 371 | +</g> | |
| 372 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 373 | +<use xlink:href="#glyph-0-8" x="231.078804" y="65.332471"/> | |
| 374 | +</g> | |
| 375 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 376 | +<use xlink:href="#glyph-0-5" x="234.961924" y="65.332471"/> | |
| 377 | +<use xlink:href="#glyph-0-25" x="239.859855" y="65.332471"/> | |
| 378 | +<use xlink:href="#glyph-0-31" x="246.988693" y="65.332471"/> | |
| 379 | +</g> | |
| 380 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 381 | +<use xlink:href="#glyph-0-10" x="251.861463" y="65.332471"/> | |
| 382 | +<use xlink:href="#glyph-0-7" x="256.381985" y="65.332471"/> | |
| 383 | +</g> | |
| 384 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 385 | +<use xlink:href="#glyph-0-10" x="259.426418" y="65.332471"/> | |
| 386 | +<use xlink:href="#glyph-0-19" x="263.94694" y="65.332471"/> | |
| 387 | +<use xlink:href="#glyph-0-16" x="268.861645" y="65.332471"/> | |
| 388 | +</g> | |
| 389 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 390 | +<use xlink:href="#glyph-0-3" x="271.285449" y="65.332471"/> | |
| 391 | +</g> | |
| 392 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 79.117188 L 9.515625 79.117188 C 7.324219 79.117188 5.550781 80.894531 5.550781 83.082031 L 5.550781 92.078125 C 5.550781 94.265625 7.324219 96.042969 9.515625 96.042969 L 303.972656 96.042969 C 306.160156 96.042969 307.9375 94.265625 307.9375 92.078125 L 307.9375 83.082031 C 307.9375 80.894531 306.160156 79.117188 303.972656 79.117188 Z M 303.972656 79.117188 "/> | |
| 393 | +<g clip-path="url(#clip-3)"> | |
| 394 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 -65.824978 L -147.957322 -65.824978 C -150.15958 -65.824978 -151.9418 -67.611124 -151.9418 -69.809456 L -151.9418 -78.850099 C -151.9418 -81.048432 -150.15958 -82.834577 -147.957322 -82.834577 L 147.957871 -82.834577 C 150.156203 -82.834577 151.942348 -81.048432 151.942348 -78.850099 L 151.942348 -69.809456 C 151.942348 -67.611124 150.156203 -65.824978 147.957871 -65.824978 Z M 147.957871 -65.824978 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 395 | +</g> | |
| 396 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 397 | +<use xlink:href="#glyph-0-34" x="41.503542" y="90.217241"/> | |
| 398 | +</g> | |
| 399 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 400 | +<use xlink:href="#glyph-0-1" x="45.755684" y="90.217241"/> | |
| 401 | +</g> | |
| 402 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 403 | +<use xlink:href="#glyph-0-30" x="50.561359" y="90.217241"/> | |
| 404 | +<use xlink:href="#glyph-0-15" x="55.367034" y="90.217241"/> | |
| 405 | +<use xlink:href="#glyph-0-15" x="58.394694" y="90.217241"/> | |
| 406 | +<use xlink:href="#glyph-0-7" x="61.422353" y="90.217241"/> | |
| 407 | +<use xlink:href="#glyph-0-6" x="64.634523" y="90.217241"/> | |
| 408 | +<use xlink:href="#glyph-0-19" x="66.949299" y="90.217241"/> | |
| 409 | +<use xlink:href="#glyph-0-12" x="71.864003" y="90.217241"/> | |
| 410 | +<use xlink:href="#glyph-0-3" x="76.686453" y="90.217241"/> | |
| 411 | +<use xlink:href="#glyph-0-7" x="81.248909" y="90.217241"/> | |
| 412 | +</g> | |
| 413 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 414 | +<use xlink:href="#glyph-0-12" x="87.262293" y="90.217241"/> | |
| 415 | +<use xlink:href="#glyph-0-13" x="92.084742" y="90.217241"/> | |
| 416 | +</g> | |
| 417 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 418 | +<use xlink:href="#glyph-0-31" x="99.733566" y="90.217241"/> | |
| 419 | +<use xlink:href="#glyph-0-5" x="104.64827" y="90.217241"/> | |
| 420 | +<use xlink:href="#glyph-0-6" x="109.546201" y="90.217241"/> | |
| 421 | +<use xlink:href="#glyph-0-14" x="111.860977" y="90.217241"/> | |
| 422 | +<use xlink:href="#glyph-0-17" x="116.809229" y="90.217241"/> | |
| 423 | +</g> | |
| 424 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 425 | +<use xlink:href="#glyph-0-7" x="123.518723" y="90.217241"/> | |
| 426 | +</g> | |
| 427 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 428 | +<use xlink:href="#glyph-0-3" x="126.563156" y="90.217241"/> | |
| 429 | +<use xlink:href="#glyph-0-16" x="131.125612" y="90.217241"/> | |
| 430 | +</g> | |
| 431 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 432 | +<use xlink:href="#glyph-0-10" x="133.549417" y="90.217241"/> | |
| 433 | +<use xlink:href="#glyph-0-15" x="138.069939" y="90.217241"/> | |
| 434 | +<use xlink:href="#glyph-0-6" x="141.097598" y="90.217241"/> | |
| 435 | +<use xlink:href="#glyph-0-23" x="143.412374" y="90.217241"/> | |
| 436 | +</g> | |
| 437 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 438 | +<use xlink:href="#glyph-0-35" x="149.023189" y="90.217241"/> | |
| 439 | +</g> | |
| 440 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 441 | +<use xlink:href="#glyph-0-23" x="153.828864" y="90.217241"/> | |
| 442 | +</g> | |
| 443 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 444 | +<use xlink:href="#glyph-0-5" x="156.554596" y="90.217241"/> | |
| 445 | +<use xlink:href="#glyph-0-7" x="161.452527" y="90.217241"/> | |
| 446 | +<use xlink:href="#glyph-0-15" x="164.664697" y="90.217241"/> | |
| 447 | +</g> | |
| 448 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 449 | +<use xlink:href="#glyph-0-36" x="167.725904" y="90.217241"/> | |
| 450 | +</g> | |
| 451 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 452 | +<use xlink:href="#glyph-0-25" x="172.531579" y="90.217241"/> | |
| 453 | +<use xlink:href="#glyph-0-5" x="179.660417" y="90.217241"/> | |
| 454 | +</g> | |
| 455 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 456 | +<use xlink:href="#glyph-0-37" x="184.516414" y="90.217241"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-0-3" x="188.609205" y="90.217241"/> | |
| 460 | +<use xlink:href="#glyph-0-13" x="193.171662" y="90.217241"/> | |
| 461 | +<use xlink:href="#glyph-0-36" x="198.027658" y="90.217241"/> | |
| 462 | +</g> | |
| 463 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 464 | +<use xlink:href="#glyph-0-23" x="202.833333" y="90.217241"/> | |
| 465 | +</g> | |
| 466 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 467 | +<use xlink:href="#glyph-0-10" x="205.559065" y="90.217241"/> | |
| 468 | +<use xlink:href="#glyph-0-6" x="210.079587" y="90.217241"/> | |
| 469 | +<use xlink:href="#glyph-0-19" x="212.394363" y="90.217241"/> | |
| 470 | +<use xlink:href="#glyph-0-16" x="217.309067" y="90.217241"/> | |
| 471 | +</g> | |
| 472 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 473 | +<use xlink:href="#glyph-0-3" x="219.732872" y="90.217241"/> | |
| 474 | +</g> | |
| 475 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 476 | +<use xlink:href="#glyph-0-24" x="227.096542" y="90.217241"/> | |
| 477 | +<use xlink:href="#glyph-0-5" x="229.813888" y="90.217241"/> | |
| 478 | +<use xlink:href="#glyph-0-12" x="234.711818" y="90.217241"/> | |
| 479 | +</g> | |
| 480 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 481 | +<use xlink:href="#glyph-0-20" x="242.327095" y="90.217241"/> | |
| 482 | +<use xlink:href="#glyph-0-8" x="246.889551" y="90.217241"/> | |
| 483 | +</g> | |
| 484 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 485 | +<use xlink:href="#glyph-0-10" x="250.856539" y="90.217241"/> | |
| 486 | +<use xlink:href="#glyph-0-7" x="255.377061" y="90.217241"/> | |
| 487 | +<use xlink:href="#glyph-0-15" x="258.589232" y="90.217241"/> | |
| 488 | +</g> | |
| 489 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 490 | +<use xlink:href="#glyph-0-3" x="261.491088" y="90.217241"/> | |
| 491 | +<use xlink:href="#glyph-0-7" x="266.053544" y="90.217241"/> | |
| 492 | +<use xlink:href="#glyph-0-28" x="269.265714" y="90.217241"/> | |
| 493 | +</g> | |
| 494 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 103.773438 L 9.515625 103.773438 C 7.324219 103.773438 5.550781 105.546875 5.550781 107.738281 L 5.550781 116.730469 C 5.550781 118.921875 7.324219 120.699219 9.515625 120.699219 L 303.972656 120.699219 C 306.160156 120.699219 307.9375 118.921875 307.9375 116.730469 L 307.9375 107.738281 C 307.9375 105.546875 306.160156 103.773438 303.972656 103.773438 Z M 303.972656 103.773438 "/> | |
| 495 | +<g clip-path="url(#clip-4)"> | |
| 496 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 -90.603327 L -147.957322 -90.603327 C -150.15958 -90.603327 -151.9418 -92.385547 -151.9418 -94.587805 L -151.9418 -103.624522 C -151.9418 -105.82678 -150.15958 -107.612925 -147.957322 -107.612925 L 147.957871 -107.612925 C 150.156203 -107.612925 151.942348 -105.82678 151.942348 -103.624522 L 151.942348 -94.587805 C 151.942348 -92.385547 150.156203 -90.603327 147.957871 -90.603327 Z M 147.957871 -90.603327 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 497 | +</g> | |
| 498 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 499 | +<use xlink:href="#glyph-0-38" x="24.338543" y="114.525864"/> | |
| 500 | +<use xlink:href="#glyph-0-1" x="28.448108" y="114.525864"/> | |
| 501 | +</g> | |
| 502 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 503 | +<use xlink:href="#glyph-0-39" x="33.253784" y="114.525864"/> | |
| 504 | +</g> | |
| 505 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 506 | +<use xlink:href="#glyph-0-5" x="37.078196" y="114.525864"/> | |
| 507 | +<use xlink:href="#glyph-0-7" x="41.976126" y="114.525864"/> | |
| 508 | +<use xlink:href="#glyph-0-25" x="45.188297" y="114.525864"/> | |
| 509 | +<use xlink:href="#glyph-0-12" x="52.317135" y="114.525864"/> | |
| 510 | +<use xlink:href="#glyph-0-16" x="57.139584" y="114.525864"/> | |
| 511 | +</g> | |
| 512 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 513 | +<use xlink:href="#glyph-0-3" x="59.563389" y="114.525864"/> | |
| 514 | +<use xlink:href="#glyph-0-7" x="64.125845" y="114.525864"/> | |
| 515 | +</g> | |
| 516 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 517 | +<use xlink:href="#glyph-0-12" x="70.139229" y="114.525864"/> | |
| 518 | +<use xlink:href="#glyph-0-13" x="74.961678" y="114.525864"/> | |
| 519 | +<use xlink:href="#glyph-0-3" x="79.817675" y="114.525864"/> | |
| 520 | +</g> | |
| 521 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 522 | +<use xlink:href="#glyph-0-8" x="87.172958" y="114.525864"/> | |
| 523 | +</g> | |
| 524 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 525 | +<use xlink:href="#glyph-0-5" x="91.056078" y="114.525864"/> | |
| 526 | +<use xlink:href="#glyph-0-13" x="95.954009" y="114.525864"/> | |
| 527 | +<use xlink:href="#glyph-0-8" x="100.810005" y="114.525864"/> | |
| 528 | +<use xlink:href="#glyph-0-16" x="104.818928" y="114.525864"/> | |
| 529 | +<use xlink:href="#glyph-0-12" x="107.284667" y="114.525864"/> | |
| 530 | +<use xlink:href="#glyph-0-17" x="112.107116" y="114.525864"/> | |
| 531 | +<use xlink:href="#glyph-0-6" x="116.023784" y="114.525864"/> | |
| 532 | +<use xlink:href="#glyph-0-5" x="118.338559" y="114.525864"/> | |
| 533 | +<use xlink:href="#glyph-0-13" x="123.23649" y="114.525864"/> | |
| 534 | +</g> | |
| 535 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 536 | +<use xlink:href="#glyph-0-31" x="130.885314" y="114.525864"/> | |
| 537 | +<use xlink:href="#glyph-0-5" x="135.800018" y="114.525864"/> | |
| 538 | +<use xlink:href="#glyph-0-13" x="140.697949" y="114.525864"/> | |
| 539 | +<use xlink:href="#glyph-0-8" x="145.553946" y="114.525864"/> | |
| 540 | +<use xlink:href="#glyph-0-15" x="149.562869" y="114.525864"/> | |
| 541 | +<use xlink:href="#glyph-0-12" x="152.590528" y="114.525864"/> | |
| 542 | +<use xlink:href="#glyph-0-3" x="157.412977" y="114.525864"/> | |
| 543 | +<use xlink:href="#glyph-0-16" x="161.975433" y="114.525864"/> | |
| 544 | +<use xlink:href="#glyph-0-16" x="164.441172" y="114.525864"/> | |
| 545 | +</g> | |
| 546 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 547 | +<use xlink:href="#glyph-0-3" x="166.864977" y="114.525864"/> | |
| 548 | +</g> | |
| 549 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 550 | +<use xlink:href="#glyph-0-36" x="171.343565" y="114.525864"/> | |
| 551 | +</g> | |
| 552 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 553 | +<use xlink:href="#glyph-0-10" x="176.14924" y="114.525864"/> | |
| 554 | +<use xlink:href="#glyph-0-7" x="180.669762" y="114.525864"/> | |
| 555 | +<use xlink:href="#glyph-0-7" x="183.881932" y="114.525864"/> | |
| 556 | +</g> | |
| 557 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 558 | +<use xlink:href="#glyph-0-5" x="186.926365" y="114.525864"/> | |
| 559 | +<use xlink:href="#glyph-0-13" x="191.824296" y="114.525864"/> | |
| 560 | +<use xlink:href="#glyph-0-14" x="196.680293" y="114.525864"/> | |
| 561 | +<use xlink:href="#glyph-0-6" x="201.628545" y="114.525864"/> | |
| 562 | +<use xlink:href="#glyph-0-3" x="203.94332" y="114.525864"/> | |
| 563 | +</g> | |
| 564 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 565 | +<use xlink:href="#glyph-0-14" x="211.30699" y="114.525864"/> | |
| 566 | +<use xlink:href="#glyph-0-3" x="216.255242" y="114.525864"/> | |
| 567 | +</g> | |
| 568 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 569 | +<use xlink:href="#glyph-0-23" x="223.610526" y="114.525864"/> | |
| 570 | +</g> | |
| 571 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 572 | +<use xlink:href="#glyph-0-10" x="226.336258" y="114.525864"/> | |
| 573 | +<use xlink:href="#glyph-0-40" x="230.85678" y="114.525864"/> | |
| 574 | +</g> | |
| 575 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 576 | +<use xlink:href="#glyph-0-5" x="234.739899" y="114.525864"/> | |
| 577 | +<use xlink:href="#glyph-0-13" x="239.63783" y="114.525864"/> | |
| 578 | +</g> | |
| 579 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 580 | +<use xlink:href="#glyph-0-10" x="247.286654" y="114.525864"/> | |
| 581 | +<use xlink:href="#glyph-0-31" x="251.807176" y="114.525864"/> | |
| 582 | +<use xlink:href="#glyph-0-31" x="256.72188" y="114.525864"/> | |
| 583 | +<use xlink:href="#glyph-0-7" x="261.636585" y="114.525864"/> | |
| 584 | +</g> | |
| 585 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 586 | +<use xlink:href="#glyph-0-5" x="264.681018" y="114.525864"/> | |
| 587 | +<use xlink:href="#glyph-0-31" x="269.578949" y="114.525864"/> | |
| 588 | +<use xlink:href="#glyph-0-7" x="274.493654" y="114.525864"/> | |
| 589 | +<use xlink:href="#glyph-0-6" x="277.705824" y="114.525864"/> | |
| 590 | +<use xlink:href="#glyph-0-20" x="280.020599" y="114.525864"/> | |
| 591 | +<use xlink:href="#glyph-0-3" x="284.583056" y="114.525864"/> | |
| 592 | +</g> | |
| 593 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 128.425781 L 9.515625 128.425781 C 7.324219 128.425781 5.550781 130.203125 5.550781 132.394531 L 5.550781 141.386719 C 5.550781 143.578125 7.324219 145.351562 9.515625 145.351562 L 303.972656 145.351562 C 306.160156 145.351562 307.9375 143.578125 307.9375 141.386719 L 307.9375 132.394531 C 307.9375 130.203125 306.160156 128.425781 303.972656 128.425781 Z M 303.972656 128.425781 "/> | |
| 594 | +<g clip-path="url(#clip-5)"> | |
| 595 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 -115.37775 L -147.957322 -115.37775 C -150.15958 -115.37775 -151.9418 -117.163895 -151.9418 -119.366153 L -151.9418 -128.402871 C -151.9418 -130.605129 -150.15958 -132.387348 -147.957322 -132.387348 L 147.957871 -132.387348 C 150.156203 -132.387348 151.942348 -130.605129 151.942348 -128.402871 L 151.942348 -119.366153 C 151.942348 -117.163895 150.156203 -115.37775 147.957871 -115.37775 Z M 147.957871 -115.37775 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 596 | +</g> | |
| 597 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 598 | +<use xlink:href="#glyph-0-41" x="62.028899" y="139.295205"/> | |
| 599 | +</g> | |
| 600 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 601 | +<use xlink:href="#glyph-0-1" x="66.515874" y="139.295205"/> | |
| 602 | +</g> | |
| 603 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 604 | +<use xlink:href="#glyph-0-42" x="71.321549" y="139.295205"/> | |
| 605 | +<use xlink:href="#glyph-0-12" x="73.879544" y="139.295205"/> | |
| 606 | +<use xlink:href="#glyph-0-17" x="78.701993" y="139.295205"/> | |
| 607 | +<use xlink:href="#glyph-0-15" x="82.61866" y="139.295205"/> | |
| 608 | +<use xlink:href="#glyph-0-6" x="85.646319" y="139.295205"/> | |
| 609 | +<use xlink:href="#glyph-0-18" x="87.961095" y="139.295205"/> | |
| 610 | +<use xlink:href="#glyph-0-3" x="92.758383" y="139.295205"/> | |
| 611 | +<use xlink:href="#glyph-0-7" x="97.32084" y="139.295205"/> | |
| 612 | +</g> | |
| 613 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 614 | +<use xlink:href="#glyph-0-16" x="103.334224" y="139.295205"/> | |
| 615 | +</g> | |
| 616 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 617 | +<use xlink:href="#glyph-0-10" x="105.758029" y="139.295205"/> | |
| 618 | +</g> | |
| 619 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 620 | +<use xlink:href="#glyph-0-8" x="113.071378" y="139.295205"/> | |
| 621 | +</g> | |
| 622 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 623 | +<use xlink:href="#glyph-0-5" x="116.954497" y="139.295205"/> | |
| 624 | +<use xlink:href="#glyph-0-13" x="121.852428" y="139.295205"/> | |
| 625 | +<use xlink:href="#glyph-0-8" x="126.708425" y="139.295205"/> | |
| 626 | +<use xlink:href="#glyph-0-16" x="130.717348" y="139.295205"/> | |
| 627 | +<use xlink:href="#glyph-0-12" x="133.183087" y="139.295205"/> | |
| 628 | +<use xlink:href="#glyph-0-17" x="138.005536" y="139.295205"/> | |
| 629 | +<use xlink:href="#glyph-0-6" x="141.922203" y="139.295205"/> | |
| 630 | +<use xlink:href="#glyph-0-5" x="144.236979" y="139.295205"/> | |
| 631 | +<use xlink:href="#glyph-0-13" x="149.13491" y="139.295205"/> | |
| 632 | +</g> | |
| 633 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 634 | +<use xlink:href="#glyph-0-31" x="156.783733" y="139.295205"/> | |
| 635 | +</g> | |
| 636 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 637 | +<use xlink:href="#glyph-0-10" x="161.656504" y="139.295205"/> | |
| 638 | +<use xlink:href="#glyph-0-7" x="166.177025" y="139.295205"/> | |
| 639 | +</g> | |
| 640 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 641 | +<use xlink:href="#glyph-0-20" x="172.19041" y="139.295205"/> | |
| 642 | +<use xlink:href="#glyph-0-8" x="176.752866" y="139.295205"/> | |
| 643 | +<use xlink:href="#glyph-0-7" x="180.761789" y="139.295205"/> | |
| 644 | +<use xlink:href="#glyph-0-6" x="183.973959" y="139.295205"/> | |
| 645 | +<use xlink:href="#glyph-0-15" x="186.288735" y="139.295205"/> | |
| 646 | +</g> | |
| 647 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 648 | +<use xlink:href="#glyph-0-14" x="192.109221" y="139.295205"/> | |
| 649 | +<use xlink:href="#glyph-0-10" x="197.057473" y="139.295205"/> | |
| 650 | +<use xlink:href="#glyph-0-13" x="201.577995" y="139.295205"/> | |
| 651 | +<use xlink:href="#glyph-0-17" x="206.433992" y="139.295205"/> | |
| 652 | +</g> | |
| 653 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 654 | +<use xlink:href="#glyph-0-16" x="213.143486" y="139.295205"/> | |
| 655 | +</g> | |
| 656 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 657 | +<use xlink:href="#glyph-0-3" x="215.567291" y="139.295205"/> | |
| 658 | +</g> | |
| 659 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 660 | +<use xlink:href="#glyph-0-7" x="222.922574" y="139.295205"/> | |
| 661 | +</g> | |
| 662 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 663 | +<use xlink:href="#glyph-0-10" x="225.967007" y="139.295205"/> | |
| 664 | +<use xlink:href="#glyph-0-31" x="230.487529" y="139.295205"/> | |
| 665 | +<use xlink:href="#glyph-0-31" x="235.402234" y="139.295205"/> | |
| 666 | +<use xlink:href="#glyph-0-5" x="240.316938" y="139.295205"/> | |
| 667 | +<use xlink:href="#glyph-0-7" x="245.214869" y="139.295205"/> | |
| 668 | +<use xlink:href="#glyph-0-15" x="248.427039" y="139.295205"/> | |
| 669 | +</g> | |
| 670 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00168839 -8.703662 L -0.00168839 -15.275106 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 671 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550999 3.111308 C -2.083854 1.242725 -1.047497 0.363392 0.000636631 -0.00168839 C -1.047497 -0.362843 -2.083854 -1.246102 -2.550999 -3.110759 " transform="matrix(0, 0.995072, 0.995072, 0, 156.743868, 29.21421)"/> | |
| 672 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00168839 -33.48201 L -0.00168839 -40.053455 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 673 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549401 3.111308 C -2.086181 1.242725 -1.045898 0.363392 -0.00169039 -0.00168839 C -1.045898 -0.362843 -2.086181 -1.246102 -2.549401 -3.110759 " transform="matrix(0, 0.995072, 0.995072, 0, 156.743868, 53.86887)"/> | |
| 674 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00168839 -58.256433 L -0.00168839 -64.831803 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 675 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551748 3.111308 C -2.084602 1.242725 -1.04432 0.363392 -0.000111817 -0.00168839 C -1.04432 -0.362843 -2.084602 -1.246102 -2.551748 -3.110759 " transform="matrix(0, 0.995072, 0.995072, 0, 156.743868, 78.523549)"/> | |
| 676 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00168839 -83.034782 L -0.00168839 -89.606226 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 677 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550159 3.111308 C -2.083014 1.242725 -1.046657 0.363392 0.00147676 -0.00168839 C -1.046657 -0.362843 -2.083014 -1.246102 -2.550159 -3.110759 " transform="matrix(0, 0.995072, 0.995072, 0, 156.743868, 103.178218)"/> | |
| 678 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00168839 -107.809205 L -0.00168839 -114.384575 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 679 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548571 3.111308 C -2.085351 1.242725 -1.045068 0.363392 -0.000860265 -0.00168839 C -1.045068 -0.362843 -2.085351 -1.246102 -2.548571 -3.110759 " transform="matrix(0, 0.995072, 0.995072, 0, 156.743868, 127.832887)"/> | |
| 680 | +</svg> | |
added
dist/assets/fig/42192366d230b6bb.svg
+285 −0
@@ -0,0 +1,285 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="372.712pt" height="130.94pt" viewBox="0 0 372.712 130.94"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.9375 0 L 4.890625 0 L 3.3125 -2.609375 C 4.15625 -2.859375 4.578125 -3.34375 4.578125 -4.15625 C 4.578125 -5.25 3.8125 -5.796875 2.359375 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 L 1.640625 -2.453125 L 2.546875 -2.453125 Z M 1.640625 -3.078125 L 1.640625 -5.171875 L 2.359375 -5.171875 C 3.3125 -5.171875 3.71875 -4.890625 3.71875 -4.15625 C 3.71875 -3.375 3.265625 -3.078125 2.453125 -3.078125 Z M 1.640625 -3.078125 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 5.546875 -5.796875 L 4.46875 -5.796875 L 3.296875 -1.578125 L 2.078125 -5.796875 L 1 -5.796875 L 0.515625 0 L 1.28125 0 L 1.46875 -2.5625 C 1.546875 -3.40625 1.578125 -4.3125 1.578125 -5 L 2.90625 -0.65625 L 3.65625 -0.65625 L 4.90625 -4.984375 C 4.921875 -4.5 4.984375 -3.53125 5.046875 -2.625 L 5.25 0 L 6.03125 0 Z M 5.546875 -5.796875 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 2.46875 -4.546875 C 1.203125 -4.546875 0.484375 -3.59375 0.484375 -2.21875 C 0.484375 -0.8125 1.203125 0.09375 2.453125 0.09375 C 3.71875 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.734375 -4.546875 2.46875 -4.546875 Z M 2.46875 -3.921875 C 3.203125 -3.921875 3.609375 -3.375 3.609375 -2.21875 C 3.609375 -1.0625 3.203125 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.21875 C 1.3125 -3.375 1.71875 -3.921875 2.46875 -3.921875 Z M 2.46875 -3.921875 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 2.859375 -4.546875 C 2.28125 -4.546875 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.78125 -4.4375 L 0.78125 0 L 1.546875 0 L 1.546875 -3.15625 C 1.84375 -3.625 2.1875 -3.9375 2.671875 -3.9375 C 3.109375 -3.9375 3.375 -3.734375 3.375 -3.078125 L 3.375 0 L 4.15625 0 L 4.15625 -3.1875 C 4.15625 -4.03125 3.6875 -4.546875 2.859375 -4.546875 Z M 2.859375 -4.546875 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 2.75 -0.71875 C 2.53125 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.203125 L 1.625 -3.84375 L 2.59375 -3.84375 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.53125 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.84375 L 0.84375 -3.84375 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.75 0 3.046875 -0.203125 Z M 2.75 -0.71875 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.703125 -4.546875 C 2.171875 -4.546875 1.75 -4.203125 1.515625 -3.53125 L 1.4375 -4.4375 L 0.78125 -4.4375 L 0.78125 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.390625 2.0625 -3.78125 2.609375 -3.78125 C 2.765625 -3.78125 2.859375 -3.765625 3 -3.734375 L 3.140625 -4.484375 C 3 -4.515625 2.84375 -4.546875 2.703125 -4.546875 Z M 2.703125 -4.546875 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 3.359375 -6.09375 L 3.015625 -6.75 L 1.34375 -5.78125 L 1.578125 -5.375 Z M 4.15625 -2.34375 C 4.15625 -3.703125 3.515625 -4.546875 2.328125 -4.546875 C 1.171875 -4.546875 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.0625 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.65625 -0.921875 C 3.265625 -0.65625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.3125 -1.953125 L 4.140625 -1.953125 C 4.140625 -2.0625 4.15625 -2.203125 4.15625 -2.34375 Z M 3.390625 -2.53125 L 1.3125 -2.53125 C 1.359375 -3.515625 1.75 -3.921875 2.34375 -3.921875 C 3.046875 -3.921875 3.390625 -3.4375 3.390625 -2.578125 Z M 3.390625 -2.53125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 3.75 -1.03125 L 3.75 -3.0625 C 3.75 -3.984375 3.265625 -4.546875 2.1875 -4.546875 C 1.6875 -4.546875 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.3125 -3.828125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.296875 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.875 0.09375 1.75 0.09375 C 2.296875 0.09375 2.765625 -0.09375 3.078125 -0.5625 C 3.203125 -0.125 3.5 0.046875 3.9375 0.09375 L 4.125 -0.4375 C 3.890625 -0.515625 3.75 -0.65625 3.75 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.765625 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.390625 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 1.65625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.984375 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.3125 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.09375 0.09375 1.65625 0.09375 Z M 1.65625 0.09375 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.359375 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 L 1.640625 -2.125 L 2.375 -2.125 C 3.65625 -2.125 4.625 -2.671875 4.625 -4.015625 C 4.625 -5.234375 3.765625 -5.796875 2.359375 -5.796875 Z M 2.34375 -2.765625 L 1.640625 -2.765625 L 1.640625 -5.171875 L 2.359375 -5.171875 C 3.21875 -5.171875 3.765625 -4.875 3.765625 -4 C 3.765625 -3.015625 3.203125 -2.765625 2.34375 -2.765625 Z M 2.34375 -2.765625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 4.0625 -4.4375 L 3.25 -4.4375 L 2.09375 -0.6875 L 0.921875 -4.4375 L 0.078125 -4.4375 L 1.609375 0 L 2.546875 0 Z M 4.0625 -4.4375 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.34375 0.609375 -6.03125 C 0.609375 -5.75 0.828125 -5.515625 1.15625 -5.515625 C 1.484375 -5.515625 1.703125 -5.75 1.703125 -6.03125 C 1.703125 -6.34375 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.78125 -4.4375 L 0.78125 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.421875 -4.546875 C 1.21875 -4.546875 0.484375 -3.59375 0.484375 -2.1875 C 0.484375 -0.75 1.21875 0.09375 2.421875 0.09375 C 2.9375 0.09375 3.375 -0.0625 3.765625 -0.390625 L 3.421875 -0.890625 C 3.078125 -0.671875 2.828125 -0.5625 2.453125 -0.5625 C 1.75 -0.5625 1.3125 -1.03125 1.3125 -2.203125 C 1.3125 -3.359375 1.75 -3.90625 2.453125 -3.90625 C 2.828125 -3.90625 3.09375 -3.796875 3.40625 -3.578125 L 3.765625 -4.0625 C 3.359375 -4.40625 2.9375 -4.546875 2.421875 -4.546875 Z M 2.421875 -4.546875 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 4.15625 -2.34375 C 4.15625 -3.703125 3.515625 -4.546875 2.328125 -4.546875 C 1.171875 -4.546875 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.0625 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.65625 -0.921875 C 3.265625 -0.65625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.3125 -1.953125 L 4.140625 -1.953125 C 4.140625 -2.0625 4.15625 -2.203125 4.15625 -2.34375 Z M 3.390625 -2.53125 L 1.3125 -2.53125 C 1.359375 -3.515625 1.75 -3.921875 2.34375 -3.921875 C 3.046875 -3.921875 3.390625 -3.4375 3.390625 -2.578125 Z M 3.390625 -2.53125 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 4.03125 -0.328125 C 4.859375 -0.765625 5.359375 -1.46875 5.359375 -2.890625 C 5.359375 -4.84375 4.375 -5.90625 2.90625 -5.90625 C 1.46875 -5.90625 0.46875 -4.796875 0.46875 -2.890625 C 0.46875 -0.9375 1.46875 0.078125 2.890625 0.078125 C 3.953125 0.078125 4.4375 0.28125 5.09375 0.875 L 5.609375 0.1875 C 5.203125 -0.09375 4.703125 -0.328125 4.03125 -0.328125 Z M 1.3125 -2.890625 C 1.3125 -4.5625 1.953125 -5.25 2.90625 -5.25 C 3.90625 -5.25 4.515625 -4.5625 4.515625 -2.890625 C 4.515625 -1.21875 3.890625 -0.5625 2.90625 -0.5625 C 1.96875 -0.5625 1.3125 -1.21875 1.3125 -2.890625 Z M 1.3125 -2.890625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.984375 -5.90625 C 1.640625 -5.90625 0.46875 -4.859375 0.46875 -2.90625 C 0.46875 -0.90625 1.390625 0.09375 2.890625 0.09375 C 3.640625 0.09375 4.25 -0.09375 4.796875 -0.40625 L 4.796875 -3.21875 L 2.875 -3.21875 L 2.96875 -2.5625 L 4 -2.5625 L 4 -0.8125 C 3.671875 -0.625 3.28125 -0.5625 2.890625 -0.5625 C 1.875 -0.5625 1.3125 -1.234375 1.3125 -2.90625 C 1.3125 -4.609375 2.140625 -5.25 2.984375 -5.25 C 3.5 -5.25 3.84375 -5.109375 4.25 -4.78125 L 4.71875 -5.265625 C 4.234375 -5.671875 3.75 -5.90625 2.984375 -5.90625 Z M 2.984375 -5.90625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 4.0625 -4.4375 L 3.296875 -4.4375 L 3.296875 -1.265625 C 3.03125 -0.828125 2.65625 -0.5 2.1875 -0.5 C 1.703125 -0.5 1.5 -0.734375 1.5 -1.34375 L 1.5 -4.4375 L 0.71875 -4.4375 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.96875 0.09375 C 2.59375 0.09375 3 -0.15625 3.34375 -0.6875 L 3.40625 0 L 4.0625 0 Z M 4.0625 -4.4375 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 2.796875 -4.546875 C 2.265625 -4.546875 1.859375 -4.296875 1.546875 -3.875 L 1.546875 -6.3125 L 0.78125 -6.21875 L 0.78125 0 L 1.453125 0 L 1.53125 -0.484375 C 1.84375 -0.125 2.21875 0.09375 2.71875 0.09375 C 3.796875 0.09375 4.453125 -0.828125 4.453125 -2.21875 C 4.453125 -3.703125 3.8125 -4.546875 2.796875 -4.546875 Z M 2.53125 -0.515625 C 2.125 -0.515625 1.78125 -0.765625 1.546875 -1.109375 L 1.546875 -3.234375 C 1.78125 -3.59375 2.09375 -3.921875 2.578125 -3.921875 C 3.203125 -3.921875 3.625 -3.484375 3.625 -2.21875 C 3.625 -1.015625 3.171875 -0.515625 2.53125 -0.515625 Z M 2.53125 -0.515625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-0"> | |
| 60 | +<path d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.546875 3.1875 -4.03125 C 2.96875 -4.34375 2.53125 -4.625 1.984375 -4.625 C 0.359375 -4.625 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.984375 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.96875 -2.3125 C 2.96875 -1.796875 2.96875 -1.28125 2.875 -0.84375 C 2.734375 -0.203125 2.265625 -0.0625 1.984375 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.828125 1 -3.359375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.4375 1.984375 -4.4375 C 2.359375 -4.4375 2.71875 -4.203125 2.84375 -3.796875 C 2.953125 -3.421875 2.96875 -2.921875 2.96875 -2.3125 Z M 2.96875 -2.3125 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-1"> | |
| 63 | +<path d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.265625 -1.109375 3.1875 -0.703125 3.09375 -0.640625 C 3.046875 -0.59375 2.515625 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.109375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.609375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.625 1.890625 -4.625 C 1.03125 -4.625 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.03125 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.109375 1.171875 -3.359375 C 1.171875 -3.484375 1.125 -3.734375 0.765625 -3.734375 C 0.984375 -4.21875 1.453125 -4.375 1.78125 -4.375 C 2.484375 -4.375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.1875 2.1875 -1.9375 L 0.515625 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.3125 0 Z M 3.515625 -1.265625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-2"> | |
| 66 | +<path d="M 3.6875 -1.140625 L 3.6875 -1.390625 L 2.90625 -1.390625 L 2.90625 -4.5 C 2.90625 -4.640625 2.90625 -4.703125 2.765625 -4.703125 C 2.671875 -4.703125 2.640625 -4.703125 2.578125 -4.59375 L 0.265625 -1.390625 L 0.265625 -1.140625 L 2.328125 -1.140625 L 2.328125 -0.578125 C 2.328125 -0.328125 2.328125 -0.25 1.75 -0.25 L 1.5625 -0.25 L 1.5625 0 L 2.609375 -0.03125 L 3.671875 0 L 3.671875 -0.25 L 3.484375 -0.25 C 2.90625 -0.25 2.90625 -0.328125 2.90625 -0.578125 L 2.90625 -1.140625 Z M 2.375 -1.390625 L 0.53125 -1.390625 L 2.375 -3.9375 Z M 2.375 -1.390625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-3"> | |
| 69 | +<path d="M 3.578125 -1.421875 C 3.578125 -2.3125 2.875 -2.96875 2.0625 -2.96875 C 1.5 -2.96875 1.203125 -2.59375 1.046875 -2.28125 C 1.046875 -2.84375 1.09375 -3.359375 1.359375 -3.796875 C 1.59375 -4.171875 1.96875 -4.421875 2.421875 -4.421875 C 2.625 -4.421875 2.90625 -4.375 3.046875 -4.1875 C 2.875 -4.171875 2.71875 -4.046875 2.71875 -3.84375 C 2.71875 -3.671875 2.84375 -3.515625 3.046875 -3.515625 C 3.265625 -3.515625 3.390625 -3.65625 3.390625 -3.859375 C 3.390625 -4.265625 3.09375 -4.625 2.40625 -4.625 C 1.40625 -4.625 0.375 -3.703125 0.375 -2.203125 C 0.375 -0.40625 1.21875 0.140625 2 0.140625 C 2.84375 0.140625 3.578125 -0.515625 3.578125 -1.421875 Z M 2.90625 -1.421875 C 2.90625 -1.03125 2.90625 -0.734375 2.71875 -0.453125 C 2.5625 -0.21875 2.328125 -0.078125 2 -0.078125 C 1.640625 -0.078125 1.375 -0.28125 1.21875 -0.59375 C 1.125 -0.796875 1.0625 -1.15625 1.0625 -1.5625 C 1.0625 -2.25 1.46875 -2.765625 2.03125 -2.765625 C 2.34375 -2.765625 2.5625 -2.640625 2.734375 -2.390625 C 2.90625 -2.125 2.90625 -1.828125 2.90625 -1.421875 Z M 2.90625 -1.421875 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-4"> | |
| 72 | +<path d="M 3.515625 -1.40625 C 3.515625 -2.1875 2.921875 -2.90625 2.0625 -2.90625 C 1.75 -2.90625 1.390625 -2.84375 1.078125 -2.578125 L 1.078125 -3.890625 C 1.4375 -3.796875 1.640625 -3.796875 1.75 -3.796875 C 2.671875 -3.796875 3.21875 -4.421875 3.21875 -4.53125 C 3.21875 -4.609375 3.171875 -4.625 3.140625 -4.625 C 3.140625 -4.625 3.109375 -4.625 3.078125 -4.609375 C 2.90625 -4.546875 2.546875 -4.40625 2.03125 -4.40625 C 1.828125 -4.40625 1.46875 -4.421875 1.015625 -4.59375 C 0.9375 -4.625 0.921875 -4.625 0.921875 -4.625 C 0.828125 -4.625 0.828125 -4.546875 0.828125 -4.4375 L 0.828125 -2.390625 C 0.828125 -2.265625 0.828125 -2.1875 0.9375 -2.1875 C 1 -2.1875 1.015625 -2.1875 1.078125 -2.28125 C 1.375 -2.65625 1.8125 -2.71875 2.046875 -2.71875 C 2.46875 -2.71875 2.65625 -2.390625 2.6875 -2.328125 C 2.8125 -2.09375 2.859375 -1.828125 2.859375 -1.421875 C 2.859375 -1.21875 2.859375 -0.8125 2.640625 -0.5 C 2.46875 -0.25 2.171875 -0.078125 1.828125 -0.078125 C 1.375 -0.078125 0.90625 -0.328125 0.734375 -0.796875 C 1 -0.78125 1.140625 -0.953125 1.140625 -1.140625 C 1.140625 -1.4375 0.875 -1.484375 0.78125 -1.484375 C 0.78125 -1.484375 0.4375 -1.484375 0.4375 -1.109375 C 0.4375 -0.484375 1.015625 0.140625 1.84375 0.140625 C 2.734375 0.140625 3.515625 -0.515625 3.515625 -1.40625 Z M 3.515625 -1.40625 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-5"> | |
| 75 | +<path d="M 3.296875 0 L 3.296875 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.578125 L 2.328125 -4.4375 C 2.328125 -4.625 2.328125 -4.625 2.125 -4.625 C 1.671875 -4.1875 1.046875 -4.1875 0.765625 -4.1875 L 0.765625 -3.9375 C 0.921875 -3.9375 1.390625 -3.9375 1.765625 -4.125 L 1.765625 -0.578125 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.296875 0 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-6"> | |
| 78 | +<path d="M 3.578125 -2.296875 C 3.578125 -4.015625 2.8125 -4.625 2 -4.625 C 1.765625 -4.625 1.296875 -4.59375 0.890625 -4.203125 C 0.65625 -3.96875 0.375 -3.703125 0.375 -3.078125 C 0.375 -2.1875 1.078125 -1.53125 1.890625 -1.53125 C 2.453125 -1.53125 2.75 -1.90625 2.90625 -2.21875 L 2.90625 -2.078125 C 2.90625 -0.34375 2.0625 -0.078125 1.640625 -0.078125 C 1.484375 -0.078125 1.109375 -0.09375 0.921875 -0.3125 C 1.21875 -0.34375 1.234375 -0.578125 1.234375 -0.640625 C 1.234375 -0.8125 1.109375 -0.96875 0.90625 -0.96875 C 0.703125 -0.96875 0.578125 -0.828125 0.578125 -0.625 C 0.578125 -0.15625 0.96875 0.140625 1.640625 0.140625 C 2.640625 0.140625 3.578125 -0.796875 3.578125 -2.296875 Z M 2.890625 -3 C 2.890625 -2.09375 2.375 -1.734375 1.9375 -1.734375 C 1.65625 -1.734375 1.40625 -1.8125 1.203125 -2.140625 C 1.046875 -2.390625 1.046875 -2.6875 1.046875 -3.078125 C 1.046875 -3.484375 1.046875 -3.75 1.25 -4.03125 C 1.421875 -4.28125 1.640625 -4.421875 2 -4.421875 C 2.359375 -4.421875 2.578125 -4.203125 2.6875 -4.015625 C 2.875 -3.734375 2.890625 -3.234375 2.890625 -3 Z M 2.890625 -3 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-7"> | |
| 81 | +<path d="M 3.796875 -4.484375 L 1.96875 -4.484375 C 1.6875 -4.484375 1.609375 -4.5 1.359375 -4.515625 C 1 -4.546875 0.984375 -4.59375 0.96875 -4.703125 L 0.734375 -4.703125 L 0.484375 -3.21875 L 0.71875 -3.21875 C 0.734375 -3.328125 0.8125 -3.78125 0.921875 -3.859375 C 0.96875 -3.890625 1.546875 -3.890625 1.640625 -3.890625 L 3.15625 -3.890625 L 2.4375 -2.96875 C 1.53125 -1.78125 1.4375 -0.671875 1.4375 -0.265625 C 1.4375 -0.1875 1.4375 0.140625 1.765625 0.140625 C 2.109375 0.140625 2.109375 -0.171875 2.109375 -0.265625 L 2.109375 -0.546875 C 2.109375 -1.890625 2.390625 -2.515625 2.6875 -2.890625 L 3.734375 -4.203125 C 3.796875 -4.296875 3.796875 -4.3125 3.796875 -4.484375 Z M 3.796875 -4.484375 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-2-0"> | |
| 84 | +<path d="M -5.796875 -2.359375 L -5.796875 -0.84375 L 0 -0.84375 L 0 -1.640625 L -2.125 -1.640625 L -2.125 -2.375 C -2.125 -3.65625 -2.671875 -4.625 -4.015625 -4.625 C -5.234375 -4.625 -5.796875 -3.765625 -5.796875 -2.359375 Z M -2.765625 -2.34375 L -2.765625 -1.640625 L -5.171875 -1.640625 L -5.171875 -2.359375 C -5.171875 -3.21875 -4.875 -3.765625 -4 -3.765625 C -3.015625 -3.765625 -2.765625 -3.203125 -2.765625 -2.34375 Z M -2.765625 -2.34375 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-2-1"> | |
| 87 | +<path d="M -4.546875 -2.703125 C -4.546875 -2.171875 -4.203125 -1.75 -3.53125 -1.515625 L -4.4375 -1.4375 L -4.4375 -0.78125 L 0 -0.78125 L 0 -1.546875 L -2.53125 -1.546875 C -3.390625 -1.734375 -3.78125 -2.0625 -3.78125 -2.609375 C -3.78125 -2.765625 -3.765625 -2.859375 -3.734375 -3 L -4.484375 -3.140625 C -4.515625 -3 -4.546875 -2.84375 -4.546875 -2.703125 Z M -4.546875 -2.703125 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-2-2"> | |
| 90 | +<path d="M -6.5625 -1.15625 C -6.5625 -0.828125 -6.34375 -0.609375 -6.03125 -0.609375 C -5.75 -0.609375 -5.515625 -0.828125 -5.515625 -1.15625 C -5.515625 -1.484375 -5.75 -1.703125 -6.03125 -1.703125 C -6.34375 -1.703125 -6.5625 -1.484375 -6.5625 -1.15625 Z M -4.4375 -1.546875 L -4.4375 -0.78125 L 0 -0.78125 L 0 -1.546875 Z M -4.4375 -1.546875 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-2-3"> | |
| 93 | +<path d="M -2.375 -2.5 L -4.4375 -3.859375 L -4.4375 -2.984375 L -2.8125 -2.0625 L -4.4375 -1.125 L -4.4375 -0.21875 L -2.34375 -1.59375 L 0 -0.046875 L 0 -0.921875 L -1.875 -2.015625 L 0 -3.109375 L 0 -4.046875 Z M -2.375 -2.5 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-2-4"> | |
| 96 | +<path d="M -4.546875 -5.234375 C -4.546875 -4.625 -4.21875 -4.234375 -3.734375 -3.90625 C -4.25 -3.734375 -4.546875 -3.328125 -4.546875 -2.78125 C -4.546875 -2.203125 -4.234375 -1.796875 -3.796875 -1.5 L -4.4375 -1.4375 L -4.4375 -0.78125 L 0 -0.78125 L 0 -1.546875 L -3.15625 -1.546875 C -3.625 -1.84375 -3.9375 -2.109375 -3.9375 -2.59375 C -3.9375 -2.9375 -3.734375 -3.21875 -3.078125 -3.21875 L 0 -3.21875 L 0 -3.984375 L -3.15625 -3.984375 C -3.625 -4.296875 -3.9375 -4.5625 -3.9375 -5.03125 C -3.9375 -5.375 -3.734375 -5.65625 -3.078125 -5.65625 L 0 -5.65625 L 0 -6.4375 L -3.1875 -6.4375 C -4.015625 -6.4375 -4.546875 -5.953125 -4.546875 -5.234375 Z M -4.546875 -5.234375 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-2-5"> | |
| 99 | +<path d="M -6.09375 -3.359375 L -6.75 -3.015625 L -5.78125 -1.34375 L -5.375 -1.578125 Z M -2.34375 -4.15625 C -3.703125 -4.15625 -4.546875 -3.515625 -4.546875 -2.328125 C -4.546875 -1.171875 -3.546875 -0.484375 -2.171875 -0.484375 C -0.765625 -0.484375 0.09375 -1.203125 0.09375 -2.4375 C 0.09375 -3.0625 -0.109375 -3.546875 -0.453125 -3.984375 L -0.921875 -3.65625 C -0.65625 -3.265625 -0.53125 -2.9375 -0.53125 -2.5 C -0.53125 -1.859375 -0.921875 -1.375 -1.953125 -1.3125 L -1.953125 -4.140625 C -2.0625 -4.140625 -2.203125 -4.15625 -2.34375 -4.15625 Z M -2.53125 -3.390625 L -2.53125 -1.3125 C -3.515625 -1.359375 -3.921875 -1.75 -3.921875 -2.34375 C -3.921875 -3.046875 -3.4375 -3.390625 -2.578125 -3.390625 Z M -2.53125 -3.390625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-2-6"> | |
| 102 | +<path d="M -6.3125 -3.421875 L -3.984375 -3.421875 C -4.296875 -3.125 -4.546875 -2.75 -4.546875 -2.21875 C -4.546875 -1.140625 -3.546875 -0.484375 -2.203125 -0.484375 C -0.8125 -0.484375 0.09375 -1.078125 0.09375 -2.15625 C 0.09375 -2.703125 -0.171875 -3.15625 -0.609375 -3.4375 L 0 -3.515625 L 0 -4.1875 L -6.21875 -4.1875 Z M -0.515625 -2.328125 C -0.515625 -1.6875 -1.046875 -1.3125 -2.21875 -1.3125 C -3.375 -1.3125 -3.921875 -1.71875 -3.921875 -2.390625 C -3.921875 -2.828125 -3.703125 -3.140625 -3.34375 -3.421875 L -1.171875 -3.421875 C -0.765625 -3.125 -0.515625 -2.828125 -0.515625 -2.328125 Z M -0.515625 -2.328125 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-2-7"> | |
| 105 | +<path d="M -1.03125 -3.75 L -3.0625 -3.75 C -3.984375 -3.75 -4.546875 -3.265625 -4.546875 -2.1875 C -4.546875 -1.6875 -4.4375 -1.203125 -4.234375 -0.65625 L -3.671875 -0.84375 C -3.828125 -1.3125 -3.90625 -1.71875 -3.90625 -2.046875 C -3.90625 -2.65625 -3.671875 -2.96875 -3.03125 -2.96875 L -2.703125 -2.96875 L -2.703125 -2.296875 C -2.703125 -1.046875 -2.1875 -0.34375 -1.234375 -0.34375 C -0.453125 -0.34375 0.09375 -0.875 0.09375 -1.75 C 0.09375 -2.296875 -0.09375 -2.765625 -0.5625 -3.078125 C -0.125 -3.203125 0.046875 -3.5 0.09375 -3.9375 L -0.4375 -4.125 C -0.515625 -3.890625 -0.65625 -3.75 -1.03125 -3.75 Z M -0.484375 -1.921875 C -0.484375 -1.421875 -0.765625 -1.15625 -1.28125 -1.15625 C -1.890625 -1.15625 -2.1875 -1.578125 -2.1875 -2.390625 L -2.1875 -2.96875 L -1.171875 -2.96875 C -0.703125 -2.71875 -0.484375 -2.390625 -0.484375 -1.921875 Z M -0.484375 -1.921875 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-2-8"> | |
| 108 | +<path d="M -4.546875 -2.859375 C -4.546875 -2.28125 -4.234375 -1.8125 -3.78125 -1.5 L -4.4375 -1.4375 L -4.4375 -0.78125 L 0 -0.78125 L 0 -1.546875 L -3.15625 -1.546875 C -3.625 -1.84375 -3.9375 -2.1875 -3.9375 -2.671875 C -3.9375 -3.109375 -3.734375 -3.375 -3.078125 -3.375 L 0 -3.375 L 0 -4.15625 L -3.1875 -4.15625 C -4.03125 -4.15625 -4.546875 -3.6875 -4.546875 -2.859375 Z M -4.546875 -2.859375 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-2-9"> | |
| 111 | +<path d="M -7.109375 -1.90625 C -5.953125 -1.078125 -4.9375 -0.34375 -2.953125 -0.34375 C -0.953125 -0.34375 0.046875 -1.078125 1.21875 -1.90625 L 0.890625 -2.390625 C -0.234375 -1.640625 -1.140625 -1.140625 -2.953125 -1.140625 C -4.765625 -1.140625 -5.65625 -1.640625 -6.78125 -2.390625 Z M -7.109375 -1.90625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-2-10"> | |
| 114 | +<path d="M 0.09375 -1.65625 C 0.09375 -1.875 0.046875 -2.09375 -0.046875 -2.265625 L -0.59375 -2.0625 C -0.5625 -1.984375 -0.53125 -1.890625 -0.53125 -1.78125 C -0.53125 -1.578125 -0.65625 -1.5 -0.890625 -1.5 L -6.3125 -1.5 L -6.21875 -0.71875 L -0.875 -0.71875 C -0.25 -0.71875 0.09375 -1.09375 0.09375 -1.65625 Z M 0.09375 -1.65625 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-2-11"> | |
| 117 | +<path d="M -2.34375 -4.15625 C -3.703125 -4.15625 -4.546875 -3.515625 -4.546875 -2.328125 C -4.546875 -1.171875 -3.546875 -0.484375 -2.171875 -0.484375 C -0.765625 -0.484375 0.09375 -1.203125 0.09375 -2.4375 C 0.09375 -3.0625 -0.109375 -3.546875 -0.453125 -3.984375 L -0.921875 -3.65625 C -0.65625 -3.265625 -0.53125 -2.9375 -0.53125 -2.5 C -0.53125 -1.859375 -0.921875 -1.375 -1.953125 -1.3125 L -1.953125 -4.140625 C -2.0625 -4.140625 -2.203125 -4.15625 -2.34375 -4.15625 Z M -2.53125 -3.390625 L -2.53125 -1.3125 C -3.515625 -1.359375 -3.921875 -1.75 -3.921875 -2.34375 C -3.921875 -3.046875 -3.4375 -3.390625 -2.578125 -3.390625 Z M -2.53125 -3.390625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-2-12"> | |
| 120 | +<path d="M -4.546875 -2 C -4.546875 -1.09375 -4.03125 -0.40625 -3.3125 -0.40625 C -2.6875 -0.40625 -2.28125 -0.78125 -2.03125 -1.75 C -1.796875 -2.609375 -1.640625 -2.828125 -1.203125 -2.828125 C -0.78125 -2.828125 -0.515625 -2.453125 -0.515625 -1.875 C -0.515625 -1.390625 -0.6875 -0.984375 -0.953125 -0.625 L -0.484375 -0.203125 C -0.140625 -0.59375 0.09375 -1.140625 0.09375 -1.890625 C 0.09375 -2.78125 -0.3125 -3.640625 -1.25 -3.640625 C -2.015625 -3.640625 -2.390625 -3.09375 -2.625 -2.171875 C -2.8125 -1.453125 -2.984375 -1.21875 -3.34375 -1.21875 C -3.703125 -1.21875 -3.921875 -1.53125 -3.921875 -2.03125 C -3.921875 -2.4375 -3.796875 -2.78125 -3.546875 -3.1875 L -4.03125 -3.515625 C -4.359375 -3.09375 -4.546875 -2.625 -4.546875 -2 Z M -4.546875 -2 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-2-13"> | |
| 123 | +<path d="M -1.5625 -4.140625 C -2.640625 -4.140625 -3 -3.375 -3.28125 -2.46875 C -3.59375 -1.453125 -3.8125 -1.234375 -4.28125 -1.234375 C -4.828125 -1.234375 -5.09375 -1.6875 -5.09375 -2.25 C -5.09375 -2.71875 -4.9375 -3.125 -4.578125 -3.515625 L -5.0625 -3.953125 C -5.421875 -3.578125 -5.640625 -3.171875 -5.703125 -2.609375 L -6.9375 -2.609375 L -6.9375 -1.9375 L -5.703125 -1.9375 C -5.609375 -1.046875 -5.046875 -0.4375 -4.25 -0.4375 C -3.390625 -0.4375 -2.96875 -1.015625 -2.625 -2.109375 C -2.328125 -3.0625 -2.09375 -3.328125 -1.546875 -3.328125 C -0.875 -3.328125 -0.53125 -2.78125 -0.53125 -2.109375 C -0.53125 -1.5 -0.765625 -1.046875 -1.125 -0.671875 L -0.625 -0.203125 C -0.203125 -0.65625 0.0625 -1.21875 0.09375 -1.9375 L 1.3125 -1.9375 L 1.3125 -2.609375 L 0.0625 -2.609375 C -0.09375 -3.578125 -0.71875 -4.140625 -1.5625 -4.140625 Z M -1.5625 -4.140625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-2-14"> | |
| 126 | +<path d="M -7.109375 -0.828125 L -6.78125 -0.34375 C -5.65625 -1.09375 -4.765625 -1.578125 -2.953125 -1.578125 C -1.140625 -1.578125 -0.234375 -1.09375 0.890625 -0.34375 L 1.21875 -0.828125 C 0.046875 -1.65625 -0.953125 -2.390625 -2.953125 -2.390625 C -4.9375 -2.390625 -5.953125 -1.65625 -7.109375 -0.828125 Z M -7.109375 -0.828125 "/> | |
| 127 | +</g> | |
| 128 | +</g> | |
| 129 | +<clipPath id="clip-0"> | |
| 130 | +<path clip-rule="nonzero" d="M 49 22 L 357 22 L 357 107.683594 L 49 107.683594 Z M 49 22 "/> | |
| 131 | +</clipPath> | |
| 132 | +</defs> | |
| 133 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(84.999084%, 84.999084%, 84.999084%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -27.446357 0.00078719 L 301.897779 0.00078719 M -27.446357 26.298436 L 301.897779 26.298436 M -27.446357 52.599994 L 301.897779 52.599994 M -27.446357 78.897642 L 301.897779 78.897642 " transform="matrix(0.999228, 0, 0, -0.999228, 65.585321, 107.68438)"/> | |
| 134 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.000616711 -4.252497 L 0.000616711 0.00078719 M 91.485316 -4.252497 L 91.485316 0.00078719 M 182.966106 -4.252497 L 182.966106 0.00078719 M 274.450806 -4.252497 L 274.450806 0.00078719 " transform="matrix(0.999228, 0, 0, -0.999228, 65.585321, 107.68438)"/> | |
| 135 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -27.446357 0.00078719 L -23.193073 0.00078719 M -27.446357 26.298436 L -23.193073 26.298436 M -27.446357 52.599994 L -23.193073 52.599994 M -27.446357 78.897642 L -23.193073 78.897642 " transform="matrix(0.999228, 0, 0, -0.999228, 65.585321, 107.68438)"/> | |
| 136 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -27.446357 0.00078719 L 301.897779 0.00078719 " transform="matrix(0.999228, 0, 0, -0.999228, 65.585321, 107.68438)"/> | |
| 137 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -27.446357 0.00078719 L -27.446357 102.568263 " transform="matrix(0.999228, 0, 0, -0.999228, 65.585321, 107.68438)"/> | |
| 138 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 139 | +<use xlink:href="#glyph-0-0" x="39.119772" y="121.883409"/> | |
| 140 | +<use xlink:href="#glyph-0-1" x="44.215016" y="121.883409"/> | |
| 141 | +<use xlink:href="#glyph-0-0" x="50.767249" y="121.883409"/> | |
| 142 | +</g> | |
| 143 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 144 | +<use xlink:href="#glyph-0-1" x="58.094295" y="121.883409"/> | |
| 145 | +<use xlink:href="#glyph-0-2" x="64.646527" y="121.883409"/> | |
| 146 | +<use xlink:href="#glyph-0-3" x="69.564912" y="121.883409"/> | |
| 147 | +<use xlink:href="#glyph-0-4" x="74.441188" y="121.883409"/> | |
| 148 | +<use xlink:href="#glyph-0-5" x="77.481491" y="121.883409"/> | |
| 149 | +</g> | |
| 150 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 151 | +<use xlink:href="#glyph-0-6" x="80.538638" y="121.883409"/> | |
| 152 | +</g> | |
| 153 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 154 | +<use xlink:href="#glyph-0-7" x="85.078038" y="121.883409"/> | |
| 155 | +</g> | |
| 156 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 157 | +<use xlink:href="#glyph-0-8" x="89.575328" y="121.883409"/> | |
| 158 | +</g> | |
| 159 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 160 | +<use xlink:href="#glyph-0-9" x="134.717902" y="121.883409"/> | |
| 161 | +</g> | |
| 162 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 163 | +<use xlink:href="#glyph-0-5" x="139.442583" y="121.883409"/> | |
| 164 | +</g> | |
| 165 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 166 | +<use xlink:href="#glyph-0-2" x="142.49973" y="121.883409"/> | |
| 167 | +</g> | |
| 168 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 169 | +<use xlink:href="#glyph-0-10" x="147.376006" y="121.883409"/> | |
| 170 | +<use xlink:href="#glyph-0-11" x="151.519577" y="121.883409"/> | |
| 171 | +<use xlink:href="#glyph-0-3" x="153.844019" y="121.883409"/> | |
| 172 | +<use xlink:href="#glyph-0-12" x="158.720295" y="121.883409"/> | |
| 173 | +</g> | |
| 174 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 175 | +<use xlink:href="#glyph-0-13" x="162.619631" y="121.883409"/> | |
| 176 | +</g> | |
| 177 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 178 | +<use xlink:href="#glyph-0-14" x="169.432941" y="121.883409"/> | |
| 179 | +<use xlink:href="#glyph-0-12" x="175.252469" y="121.883409"/> | |
| 180 | +</g> | |
| 181 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 182 | +<use xlink:href="#glyph-0-0" x="221.914523" y="121.883409"/> | |
| 183 | +<use xlink:href="#glyph-0-1" x="227.009768" y="121.883409"/> | |
| 184 | +<use xlink:href="#glyph-0-0" x="233.562" y="121.883409"/> | |
| 185 | +</g> | |
| 186 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 187 | +<use xlink:href="#glyph-0-15" x="240.889047" y="121.883409"/> | |
| 188 | +<use xlink:href="#glyph-0-7" x="246.203261" y="121.883409"/> | |
| 189 | +<use xlink:href="#glyph-0-4" x="250.742661" y="121.883409"/> | |
| 190 | +<use xlink:href="#glyph-0-11" x="253.782964" y="121.883409"/> | |
| 191 | +<use xlink:href="#glyph-0-3" x="256.107406" y="121.883409"/> | |
| 192 | +<use xlink:href="#glyph-0-13" x="260.983682" y="121.883409"/> | |
| 193 | +</g> | |
| 194 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 195 | +<use xlink:href="#glyph-0-7" x="265.523082" y="121.883409"/> | |
| 196 | +<use xlink:href="#glyph-0-16" x="270.062482" y="121.883409"/> | |
| 197 | +</g> | |
| 198 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 199 | +<use xlink:href="#glyph-0-0" x="315.941867" y="121.883409"/> | |
| 200 | +<use xlink:href="#glyph-0-1" x="321.037112" y="121.883409"/> | |
| 201 | +<use xlink:href="#glyph-0-0" x="327.589344" y="121.883409"/> | |
| 202 | +</g> | |
| 203 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 204 | +<use xlink:href="#glyph-0-14" x="334.91639" y="121.883409"/> | |
| 205 | +<use xlink:href="#glyph-0-16" x="340.735918" y="121.883409"/> | |
| 206 | +<use xlink:href="#glyph-0-6" x="345.578506" y="121.883409"/> | |
| 207 | +<use xlink:href="#glyph-0-17" x="350.160015" y="121.883409"/> | |
| 208 | +<use xlink:href="#glyph-0-13" x="355.095244" y="121.883409"/> | |
| 209 | +<use xlink:href="#glyph-0-12" x="359.676754" y="121.883409"/> | |
| 210 | +</g> | |
| 211 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 212 | +<use xlink:href="#glyph-1-0" x="30.874143" y="109.929645"/> | |
| 213 | +</g> | |
| 214 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 215 | +<use xlink:href="#glyph-1-1" x="22.938275" y="83.650951"/> | |
| 216 | +<use xlink:href="#glyph-1-0" x="26.906091" y="83.650951"/> | |
| 217 | +<use xlink:href="#glyph-1-0" x="30.873907" y="83.650951"/> | |
| 218 | +</g> | |
| 219 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 220 | +<use xlink:href="#glyph-1-2" x="22.938275" y="57.372257"/> | |
| 221 | +<use xlink:href="#glyph-1-0" x="26.906091" y="57.372257"/> | |
| 222 | +<use xlink:href="#glyph-1-0" x="30.873907" y="57.372257"/> | |
| 223 | +</g> | |
| 224 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 225 | +<use xlink:href="#glyph-1-3" x="22.938275" y="31.093563"/> | |
| 226 | +<use xlink:href="#glyph-1-0" x="26.906091" y="31.093563"/> | |
| 227 | +<use xlink:href="#glyph-1-0" x="30.873907" y="31.093563"/> | |
| 228 | +</g> | |
| 229 | +<g clip-path="url(#clip-0)"> | |
| 230 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -16.301033 0.00078719 L 16.298357 0.00078719 L 16.298357 84.816275 L -16.301033 84.816275 Z M 75.183667 0.00078719 L 107.783056 0.00078719 L 107.783056 68.248795 L 75.183667 68.248795 Z M 166.668366 0.00078719 L 199.267756 0.00078719 L 199.267756 62.724999 L 166.668366 62.724999 Z M 258.153066 0.00078719 L 290.752455 0.00078719 L 290.752455 62.724999 L 258.153066 62.724999 Z M 258.153066 0.00078719 " transform="matrix(0.999228, 0, 0, -0.999228, 65.585321, 107.68438)"/> | |
| 231 | +</g> | |
| 232 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 233 | +<use xlink:href="#glyph-1-3" x="59.63392" y="19.617431"/> | |
| 234 | +<use xlink:href="#glyph-1-2" x="63.601736" y="19.617431"/> | |
| 235 | +<use xlink:href="#glyph-1-4" x="67.569551" y="19.617431"/> | |
| 236 | +</g> | |
| 237 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 238 | +<use xlink:href="#glyph-1-4" x="151.045285" y="36.172638"/> | |
| 239 | +<use xlink:href="#glyph-1-5" x="155.013101" y="36.172638"/> | |
| 240 | +<use xlink:href="#glyph-1-6" x="158.980917" y="36.172638"/> | |
| 241 | +</g> | |
| 242 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 243 | +<use xlink:href="#glyph-1-2" x="242.457649" y="41.691374"/> | |
| 244 | +<use xlink:href="#glyph-1-7" x="246.425465" y="41.691374"/> | |
| 245 | +<use xlink:href="#glyph-1-7" x="250.393281" y="41.691374"/> | |
| 246 | +</g> | |
| 247 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 248 | +<use xlink:href="#glyph-1-2" x="333.870014" y="41.691374"/> | |
| 249 | +<use xlink:href="#glyph-1-7" x="337.83783" y="41.691374"/> | |
| 250 | +<use xlink:href="#glyph-1-7" x="341.805645" y="41.691374"/> | |
| 251 | +</g> | |
| 252 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 253 | +<use xlink:href="#glyph-2-0" x="15.191261" y="100.344052"/> | |
| 254 | +</g> | |
| 255 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 256 | +<use xlink:href="#glyph-2-1" x="15.191261" y="95.619371"/> | |
| 257 | +<use xlink:href="#glyph-2-2" x="15.191261" y="92.393786"/> | |
| 258 | +<use xlink:href="#glyph-2-3" x="15.191261" y="90.069344"/> | |
| 259 | +</g> | |
| 260 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 261 | +<use xlink:href="#glyph-2-4" x="15.191261" y="83.752925"/> | |
| 262 | +<use xlink:href="#glyph-2-5" x="15.191261" y="76.594316"/> | |
| 263 | +<use xlink:href="#glyph-2-6" x="15.191261" y="72.012807"/> | |
| 264 | +<use xlink:href="#glyph-2-2" x="15.191261" y="67.04389"/> | |
| 265 | +<use xlink:href="#glyph-2-7" x="15.191261" y="64.719448"/> | |
| 266 | +<use xlink:href="#glyph-2-8" x="15.191261" y="60.180048"/> | |
| 267 | +</g> | |
| 268 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 269 | +<use xlink:href="#glyph-2-9" x="15.191261" y="53.071971"/> | |
| 270 | +<use xlink:href="#glyph-2-4" x="15.191261" y="50.343278"/> | |
| 271 | +<use xlink:href="#glyph-2-2" x="15.191261" y="43.184669"/> | |
| 272 | +<use xlink:href="#glyph-2-10" x="15.191261" y="40.860227"/> | |
| 273 | +<use xlink:href="#glyph-2-10" x="15.191261" y="38.384191"/> | |
| 274 | +<use xlink:href="#glyph-2-2" x="15.191261" y="35.908154"/> | |
| 275 | +<use xlink:href="#glyph-2-11" x="15.191261" y="33.583712"/> | |
| 276 | +<use xlink:href="#glyph-2-1" x="15.191261" y="29.002203"/> | |
| 277 | +</g> | |
| 278 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 279 | +<use xlink:href="#glyph-2-12" x="15.191261" y="25.902946"/> | |
| 280 | +</g> | |
| 281 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 282 | +<use xlink:href="#glyph-2-13" x="15.191261" y="19.738121"/> | |
| 283 | +<use xlink:href="#glyph-2-14" x="15.191261" y="15.266096"/> | |
| 284 | +</g> | |
| 285 | +</svg> | |
added
dist/assets/fig/54d1908d6bf32038.svg
+434 −0
@@ -0,0 +1,434 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374.844pt" height="140.29pt" viewBox="0 0 374.844 140.29"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.40625 C 2.328125 -4.59375 2.3125 -4.609375 2.109375 -4.609375 C 1.671875 -4.171875 1.046875 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.5625 -2.28125 C 3.5625 -4 2.796875 -4.609375 1.984375 -4.609375 C 1.765625 -4.609375 1.28125 -4.578125 0.890625 -4.1875 C 0.65625 -3.953125 0.375 -3.6875 0.375 -3.0625 C 0.375 -2.171875 1.078125 -1.53125 1.890625 -1.53125 C 2.4375 -1.53125 2.734375 -1.890625 2.90625 -2.203125 L 2.90625 -2.0625 C 2.90625 -0.34375 2.046875 -0.078125 1.625 -0.078125 C 1.484375 -0.078125 1.109375 -0.09375 0.921875 -0.3125 C 1.203125 -0.34375 1.234375 -0.578125 1.234375 -0.640625 C 1.234375 -0.8125 1.109375 -0.96875 0.90625 -0.96875 C 0.6875 -0.96875 0.5625 -0.828125 0.5625 -0.625 C 0.5625 -0.15625 0.96875 0.140625 1.640625 0.140625 C 2.625 0.140625 3.5625 -0.796875 3.5625 -2.28125 Z M 2.875 -2.984375 C 2.875 -2.078125 2.359375 -1.71875 1.921875 -1.71875 C 1.65625 -1.71875 1.390625 -1.8125 1.203125 -2.125 C 1.046875 -2.390625 1.046875 -2.671875 1.046875 -3.0625 C 1.046875 -3.46875 1.046875 -3.734375 1.234375 -4.015625 C 1.40625 -4.265625 1.640625 -4.40625 2 -4.40625 C 2.359375 -4.40625 2.5625 -4.1875 2.671875 -4 C 2.859375 -3.71875 2.875 -3.21875 2.875 -2.984375 Z M 2.875 -2.984375 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 3.578125 -2.21875 C 3.578125 -2.96875 3.484375 -3.53125 3.171875 -4.015625 C 2.953125 -4.328125 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.578125 0.140625 3.578125 -1.71875 3.578125 -2.21875 Z M 2.953125 -2.296875 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 0.984375 -1.21875 0.984375 -1.796875 0.984375 -2.296875 C 0.984375 -2.8125 0.984375 -3.34375 1.09375 -3.71875 C 1.234375 -4.265625 1.6875 -4.40625 1.96875 -4.40625 C 2.34375 -4.40625 2.703125 -4.1875 2.828125 -3.78125 C 2.9375 -3.40625 2.953125 -2.90625 2.953125 -2.296875 Z M 2.953125 -2.296875 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.5 -1.390625 C 3.5 -2.171875 2.90625 -2.90625 2.046875 -2.90625 C 1.734375 -2.90625 1.375 -2.828125 1.078125 -2.5625 L 1.078125 -3.875 C 1.421875 -3.78125 1.640625 -3.78125 1.75 -3.78125 C 2.65625 -3.78125 3.203125 -4.40625 3.203125 -4.515625 C 3.203125 -4.578125 3.15625 -4.609375 3.125 -4.609375 C 3.125 -4.609375 3.09375 -4.609375 3.0625 -4.578125 C 2.90625 -4.515625 2.53125 -4.390625 2.015625 -4.390625 C 1.828125 -4.390625 1.453125 -4.390625 1 -4.578125 C 0.9375 -4.609375 0.921875 -4.609375 0.921875 -4.609375 C 0.828125 -4.609375 0.828125 -4.53125 0.828125 -4.421875 L 0.828125 -2.375 C 0.828125 -2.25 0.828125 -2.171875 0.9375 -2.171875 C 1 -2.171875 1 -2.1875 1.078125 -2.265625 C 1.375 -2.65625 1.796875 -2.703125 2.046875 -2.703125 C 2.453125 -2.703125 2.640625 -2.375 2.671875 -2.3125 C 2.796875 -2.09375 2.84375 -1.828125 2.84375 -1.421875 C 2.84375 -1.21875 2.84375 -0.8125 2.640625 -0.5 C 2.46875 -0.25 2.171875 -0.078125 1.828125 -0.078125 C 1.375 -0.078125 0.90625 -0.328125 0.734375 -0.796875 C 1 -0.765625 1.125 -0.9375 1.125 -1.125 C 1.125 -1.421875 0.875 -1.484375 0.78125 -1.484375 C 0.78125 -1.484375 0.4375 -1.484375 0.4375 -1.109375 C 0.4375 -0.484375 1 0.140625 1.84375 0.140625 C 2.71875 0.140625 3.5 -0.515625 3.5 -1.390625 Z M 3.5 -1.390625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.25 -1.109375 3.171875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.421875 2.515625 -1.75 C 3.03125 -2.171875 3.5 -2.59375 3.5 -3.25 C 3.5 -4.09375 2.765625 -4.609375 1.875 -4.609375 C 1.015625 -4.609375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3.015625 0.734375 -2.96875 0.8125 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.46875 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.203125 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.65625 2.40625 -2.171875 2.171875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.5 -1.265625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.125 -2.28125 2.359375 -2.4375 C 3.09375 -2.703125 3.34375 -3.21875 3.34375 -3.65625 C 3.34375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.171875 -4.609375 0.59375 -4.234375 0.59375 -3.671875 C 0.59375 -3.4375 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.296875 -3.46875 1.296875 -3.65625 C 1.296875 -3.859375 1.171875 -4.015625 0.953125 -4.03125 C 1.1875 -4.328125 1.671875 -4.40625 1.921875 -4.40625 C 2.234375 -4.40625 2.671875 -4.25 2.671875 -3.65625 C 2.671875 -3.359375 2.578125 -3.03125 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.625 -2.53125 C 1.453125 -2.515625 1.4375 -2.515625 1.40625 -2.5 C 1.40625 -2.5 1.34375 -2.484375 1.34375 -2.421875 C 1.34375 -2.3125 1.40625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.4375 -2.3125 2.828125 -1.9375 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-1-0"> | |
| 24 | +<path d="M 1.59375 -3.265625 C 0.859375 -3.265625 0.25 -2.6875 0.25 -1.609375 C 0.25 -0.53125 0.8125 0.0625 1.59375 0.0625 C 2.03125 0.0625 2.34375 -0.125 2.515625 -0.296875 L 2.296875 -0.578125 C 2.109375 -0.453125 1.90625 -0.3125 1.609375 -0.3125 C 1.109375 -0.3125 0.71875 -0.6875 0.71875 -1.609375 C 0.71875 -2.578125 1.125 -2.90625 1.609375 -2.90625 C 1.84375 -2.90625 2.03125 -2.828125 2.234375 -2.65625 L 2.484375 -2.953125 C 2.21875 -3.15625 2 -3.265625 1.59375 -3.265625 Z M 1.59375 -3.265625 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-1-1"> | |
| 27 | +<path d="M 1.5 -2.515625 C 1.203125 -2.515625 0.96875 -2.328125 0.84375 -1.953125 L 0.796875 -2.453125 L 0.421875 -2.453125 L 0.421875 0 L 0.859375 0 L 0.859375 -1.40625 C 0.953125 -1.875 1.140625 -2.09375 1.4375 -2.09375 C 1.53125 -2.09375 1.578125 -2.078125 1.65625 -2.0625 L 1.734375 -2.484375 C 1.65625 -2.5 1.578125 -2.515625 1.5 -2.515625 Z M 1.5 -2.515625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-1-2"> | |
| 30 | +<path d="M 2.296875 -1.296875 C 2.296875 -2.046875 1.953125 -2.515625 1.28125 -2.515625 C 0.65625 -2.515625 0.265625 -1.96875 0.265625 -1.203125 C 0.265625 -0.421875 0.671875 0.0625 1.34375 0.0625 C 1.6875 0.0625 1.96875 -0.0625 2.203125 -0.25 L 2.015625 -0.5 C 1.8125 -0.359375 1.625 -0.296875 1.390625 -0.296875 C 1.03125 -0.296875 0.765625 -0.515625 0.71875 -1.078125 L 2.28125 -1.078125 C 2.296875 -1.140625 2.296875 -1.21875 2.296875 -1.296875 Z M 1.875 -1.390625 L 0.71875 -1.390625 C 0.75 -1.9375 0.96875 -2.171875 1.296875 -2.171875 C 1.6875 -2.171875 1.875 -1.90625 1.875 -1.421875 Z M 1.875 -1.390625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-1-3"> | |
| 33 | +<path d="M 2.25 -2.453125 L 1.828125 -2.453125 L 1.828125 -0.703125 C 1.671875 -0.453125 1.46875 -0.28125 1.203125 -0.28125 C 0.9375 -0.28125 0.828125 -0.40625 0.828125 -0.734375 L 0.828125 -2.453125 L 0.40625 -2.453125 L 0.40625 -0.6875 C 0.40625 -0.21875 0.65625 0.0625 1.078125 0.0625 C 1.4375 0.0625 1.65625 -0.078125 1.84375 -0.375 L 1.875 0 L 2.25 0 Z M 2.25 -2.453125 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-1-4"> | |
| 36 | +<path d="M 1.390625 -1.3125 L 2.140625 -2.453125 L 1.65625 -2.453125 L 1.140625 -1.5625 L 0.625 -2.453125 L 0.125 -2.453125 L 0.875 -1.296875 L 0.015625 0 L 0.5 0 L 1.125 -1.03125 L 1.71875 0 L 2.234375 0 Z M 1.390625 -1.3125 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-1-5"> | |
| 39 | +<path d="M 2.171875 0 L 2.703125 0 L 1.828125 -1.4375 C 2.296875 -1.578125 2.53125 -1.84375 2.53125 -2.296875 C 2.53125 -2.90625 2.109375 -3.203125 1.3125 -3.203125 L 0.46875 -3.203125 L 0.46875 0 L 0.90625 0 L 0.90625 -1.359375 L 1.40625 -1.359375 Z M 0.90625 -1.703125 L 0.90625 -2.859375 L 1.296875 -2.859375 C 1.828125 -2.859375 2.0625 -2.703125 2.0625 -2.296875 C 2.0625 -1.859375 1.796875 -1.703125 1.359375 -1.703125 Z M 0.90625 -1.703125 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-1-6"> | |
| 42 | +<path d="M 1.5625 -2.515625 C 1.28125 -2.515625 1.015625 -2.375 0.828125 -2.125 L 0.796875 -2.453125 L 0.421875 -2.453125 L 0.421875 0.984375 L 0.859375 0.9375 L 0.859375 -0.21875 C 1.015625 -0.03125 1.234375 0.0625 1.5 0.0625 C 2.125 0.0625 2.46875 -0.484375 2.46875 -1.234375 C 2.46875 -2 2.203125 -2.515625 1.5625 -2.515625 Z M 1.390625 -0.296875 C 1.171875 -0.296875 0.984375 -0.40625 0.859375 -0.59375 L 0.859375 -1.78125 C 0.984375 -1.984375 1.1875 -2.171875 1.453125 -2.171875 C 1.8125 -2.171875 2 -1.859375 2 -1.234375 C 2 -0.59375 1.78125 -0.296875 1.390625 -0.296875 Z M 1.390625 -0.296875 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-1-7"> | |
| 45 | +<path d="M 0.640625 -3.625 C 0.46875 -3.625 0.34375 -3.5 0.34375 -3.34375 C 0.34375 -3.171875 0.46875 -3.046875 0.640625 -3.046875 C 0.8125 -3.046875 0.9375 -3.171875 0.9375 -3.34375 C 0.9375 -3.5 0.8125 -3.625 0.640625 -3.625 Z M 0.859375 -2.453125 L 0.421875 -2.453125 L 0.421875 0 L 0.859375 0 Z M 0.859375 -2.453125 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-1-8"> | |
| 48 | +<path d="M 1.109375 -2.515625 C 0.59375 -2.515625 0.21875 -2.21875 0.21875 -1.828125 C 0.21875 -1.484375 0.4375 -1.265625 0.96875 -1.125 C 1.4375 -1 1.5625 -0.90625 1.5625 -0.65625 C 1.5625 -0.421875 1.359375 -0.28125 1.03125 -0.28125 C 0.765625 -0.28125 0.546875 -0.375 0.34375 -0.53125 L 0.109375 -0.265625 C 0.328125 -0.078125 0.625 0.0625 1.046875 0.0625 C 1.546875 0.0625 2.015625 -0.171875 2.015625 -0.6875 C 2.015625 -1.125 1.71875 -1.328125 1.203125 -1.453125 C 0.796875 -1.5625 0.671875 -1.640625 0.671875 -1.84375 C 0.671875 -2.046875 0.84375 -2.171875 1.125 -2.171875 C 1.34375 -2.171875 1.546875 -2.09375 1.765625 -1.953125 L 1.9375 -2.234375 C 1.703125 -2.40625 1.453125 -2.515625 1.109375 -2.515625 Z M 1.109375 -2.515625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-1-9"> | |
| 51 | +<path d="M 1.25 -3.265625 C 0.671875 -3.265625 0.25 -2.921875 0.25 -2.421875 C 0.25 -1.921875 0.578125 -1.6875 1.203125 -1.5 C 1.734375 -1.328125 1.890625 -1.1875 1.890625 -0.875 C 1.890625 -0.5 1.578125 -0.3125 1.203125 -0.3125 C 0.859375 -0.3125 0.59375 -0.4375 0.359375 -0.625 L 0.109375 -0.359375 C 0.375 -0.09375 0.75 0.0625 1.203125 0.0625 C 1.921875 0.0625 2.34375 -0.328125 2.34375 -0.890625 C 2.34375 -1.515625 1.90625 -1.703125 1.40625 -1.859375 C 0.828125 -2.046875 0.703125 -2.171875 0.703125 -2.4375 C 0.703125 -2.75 0.953125 -2.90625 1.28125 -2.90625 C 1.546875 -2.90625 1.765625 -2.8125 2 -2.625 L 2.25 -2.890625 C 1.984375 -3.140625 1.703125 -3.265625 1.25 -3.265625 Z M 1.25 -3.265625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-1-10"> | |
| 54 | +<path d="M 1.359375 -2.515625 C 0.671875 -2.515625 0.265625 -1.984375 0.265625 -1.21875 C 0.265625 -0.453125 0.65625 0.0625 1.359375 0.0625 C 2.046875 0.0625 2.453125 -0.46875 2.453125 -1.234375 C 2.453125 -2 2.0625 -2.515625 1.359375 -2.515625 Z M 1.359375 -2.171875 C 1.765625 -2.171875 2 -1.859375 2 -1.234375 C 2 -0.59375 1.765625 -0.28125 1.359375 -0.28125 C 0.953125 -0.28125 0.71875 -0.59375 0.71875 -1.21875 C 0.71875 -1.859375 0.953125 -2.171875 1.359375 -2.171875 Z M 1.359375 -2.171875 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-1-11"> | |
| 57 | +<path d="M 2.890625 -2.515625 C 2.5625 -2.515625 2.34375 -2.328125 2.15625 -2.0625 C 2.0625 -2.34375 1.84375 -2.515625 1.546875 -2.515625 C 1.21875 -2.515625 1 -2.34375 0.828125 -2.09375 L 0.796875 -2.453125 L 0.421875 -2.453125 L 0.421875 0 L 0.859375 0 L 0.859375 -1.734375 C 1.015625 -2 1.171875 -2.171875 1.4375 -2.171875 C 1.625 -2.171875 1.78125 -2.0625 1.78125 -1.703125 L 1.78125 0 L 2.203125 0 L 2.203125 -1.734375 C 2.375 -2 2.515625 -2.171875 2.78125 -2.171875 C 2.96875 -2.171875 3.125 -2.0625 3.125 -1.703125 L 3.125 0 L 3.5625 0 L 3.5625 -1.765625 C 3.5625 -2.21875 3.296875 -2.515625 2.890625 -2.515625 Z M 2.890625 -2.515625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-12"> | |
| 60 | +<path d="M 1.515625 -0.390625 C 1.390625 -0.328125 1.296875 -0.296875 1.1875 -0.296875 C 0.984375 -0.296875 0.90625 -0.421875 0.90625 -0.65625 L 0.90625 -2.125 L 1.4375 -2.125 L 1.484375 -2.453125 L 0.90625 -2.453125 L 0.90625 -3.0625 L 0.46875 -3.015625 L 0.46875 -2.453125 L 0.046875 -2.453125 L 0.046875 -2.125 L 0.46875 -2.125 L 0.46875 -0.640625 C 0.46875 -0.1875 0.71875 0.0625 1.125 0.0625 C 1.34375 0.0625 1.515625 0 1.6875 -0.109375 Z M 1.515625 -0.390625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-2-0"> | |
| 63 | +<path d="M 3.921875 0 L 4.75 0 L 2.90625 -5.78125 L 1.90625 -5.78125 L 0.046875 0 L 0.859375 0 L 1.296875 -1.453125 L 3.484375 -1.453125 Z M 1.484375 -2.09375 L 2.390625 -5.125 L 3.296875 -2.09375 Z M 1.484375 -2.09375 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-2-1"> | |
| 66 | +<path d="M 2.859375 -4.515625 C 2.28125 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.09375 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-2-2"> | |
| 69 | +<path d="M 3.34375 -6.078125 L 3 -6.71875 L 1.328125 -5.765625 L 1.5625 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-2-3"> | |
| 72 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-3-0"> | |
| 75 | +<path d="M -5.78125 -1.640625 L -5.78125 -0.84375 L 0 -0.84375 L 0 -1.640625 Z M -5.78125 -1.640625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-3-1"> | |
| 78 | +<path d="M -4.515625 -2.859375 C -4.515625 -2.28125 -4.21875 -1.796875 -3.765625 -1.5 L -4.421875 -1.4375 L -4.421875 -0.765625 L 0 -0.765625 L 0 -1.546875 L -3.140625 -1.546875 C -3.609375 -1.84375 -3.921875 -2.171875 -3.921875 -2.671875 C -3.921875 -3.09375 -3.71875 -3.359375 -3.0625 -3.359375 L 0 -3.359375 L 0 -4.140625 L -3.171875 -4.140625 C -4.015625 -4.140625 -4.515625 -3.671875 -4.515625 -2.859375 Z M -4.515625 -2.859375 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-3-2"> | |
| 81 | +<path d="M -6.296875 -3.40625 L -3.984375 -3.40625 C -4.28125 -3.109375 -4.515625 -2.734375 -4.515625 -2.21875 C -4.515625 -1.125 -3.546875 -0.484375 -2.1875 -0.484375 C -0.8125 -0.484375 0.09375 -1.078125 0.09375 -2.140625 C 0.09375 -2.6875 -0.171875 -3.140625 -0.609375 -3.421875 L 0 -3.5 L 0 -4.171875 L -6.203125 -4.171875 Z M -0.515625 -2.3125 C -0.515625 -1.671875 -1.046875 -1.3125 -2.203125 -1.3125 C -3.359375 -1.3125 -3.90625 -1.71875 -3.90625 -2.390625 C -3.90625 -2.8125 -3.6875 -3.125 -3.328125 -3.40625 L -1.171875 -3.40625 C -0.75 -3.109375 -0.515625 -2.8125 -0.515625 -2.3125 Z M -0.515625 -2.3125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-3-3"> | |
| 84 | +<path d="M -6.546875 -1.15625 C -6.546875 -0.828125 -6.3125 -0.609375 -6.015625 -0.609375 C -5.71875 -0.609375 -5.5 -0.828125 -5.5 -1.15625 C -5.5 -1.484375 -5.71875 -1.6875 -6.015625 -1.6875 C -6.3125 -1.6875 -6.546875 -1.484375 -6.546875 -1.15625 Z M -4.421875 -1.546875 L -4.421875 -0.765625 L 0 -0.765625 L 0 -1.546875 Z M -4.421875 -1.546875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-3-4"> | |
| 87 | +<path d="M -4.515625 -2.40625 C -4.515625 -1.203125 -3.578125 -0.484375 -2.171875 -0.484375 C -0.75 -0.484375 0.09375 -1.21875 0.09375 -2.40625 C 0.09375 -2.921875 -0.0625 -3.359375 -0.390625 -3.765625 L -0.890625 -3.40625 C -0.671875 -3.078125 -0.546875 -2.8125 -0.546875 -2.4375 C -0.546875 -1.75 -1.03125 -1.3125 -2.1875 -1.3125 C -3.34375 -1.3125 -3.890625 -1.75 -3.890625 -2.4375 C -3.890625 -2.8125 -3.78125 -3.09375 -3.5625 -3.390625 L -4.046875 -3.765625 C -4.390625 -3.34375 -4.515625 -2.921875 -4.515625 -2.40625 Z M -4.515625 -2.40625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-3-5"> | |
| 90 | +<path d="M -2.34375 -4.140625 C -3.6875 -4.140625 -4.515625 -3.5 -4.515625 -2.3125 C -4.515625 -1.171875 -3.546875 -0.484375 -2.171875 -0.484375 C -0.765625 -0.484375 0.09375 -1.203125 0.09375 -2.4375 C 0.09375 -3.046875 -0.109375 -3.546875 -0.453125 -3.984375 L -0.921875 -3.640625 C -0.640625 -3.25 -0.53125 -2.921875 -0.53125 -2.484375 C -0.53125 -1.859375 -0.921875 -1.375 -1.953125 -1.296875 L -1.953125 -4.125 C -2.046875 -4.125 -2.1875 -4.140625 -2.34375 -4.140625 Z M -2.515625 -3.375 L -2.515625 -1.296875 C -3.5 -1.359375 -3.90625 -1.75 -3.90625 -2.328125 C -3.90625 -3.03125 -3.4375 -3.375 -2.5625 -3.375 Z M -2.515625 -3.375 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-3-6"> | |
| 93 | +<path d="M -4.515625 -2.796875 C -4.515625 -2.296875 -4.28125 -1.828125 -3.828125 -1.5 L -4.421875 -1.4375 L -4.421875 -0.765625 L 1.78125 -0.765625 L 1.6875 -1.546875 L -0.40625 -1.546875 C -0.0625 -1.828125 0.09375 -2.21875 0.09375 -2.703125 C 0.09375 -3.84375 -0.875 -4.4375 -2.21875 -4.4375 C -3.609375 -4.4375 -4.515625 -3.984375 -4.515625 -2.796875 Z M -0.53125 -2.515625 C -0.53125 -2.109375 -0.71875 -1.765625 -1.0625 -1.546875 L -3.21875 -1.546875 C -3.578125 -1.78125 -3.90625 -2.140625 -3.90625 -2.609375 C -3.90625 -3.265625 -3.359375 -3.609375 -2.21875 -3.609375 C -1.0625 -3.609375 -0.53125 -3.21875 -0.53125 -2.515625 Z M -0.53125 -2.515625 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-3-7"> | |
| 96 | +<path d="M -4.515625 -2.6875 C -4.515625 -2.15625 -4.1875 -1.75 -3.53125 -1.515625 L -4.421875 -1.4375 L -4.421875 -0.765625 L 0 -0.765625 L 0 -1.546875 L -2.53125 -1.546875 C -3.375 -1.734375 -3.765625 -2.046875 -3.765625 -2.59375 C -3.765625 -2.765625 -3.75 -2.859375 -3.71875 -2.984375 L -4.46875 -3.125 C -4.5 -3 -4.515625 -2.84375 -4.515625 -2.6875 Z M -4.515625 -2.6875 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-3-8"> | |
| 99 | +<path d="M -2.359375 -2.484375 L -4.421875 -3.84375 L -4.421875 -2.984375 L -2.796875 -2.046875 L -4.421875 -1.125 L -4.421875 -0.21875 L -2.328125 -1.578125 L 0 -0.046875 L 0 -0.921875 L -1.875 -2.015625 L 0 -3.09375 L 0 -4.03125 Z M -2.359375 -2.484375 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-3-9"> | |
| 102 | +<path d="M -7.09375 -1.890625 C -5.921875 -1.078125 -4.921875 -0.328125 -2.9375 -0.328125 C -0.953125 -0.328125 0.046875 -1.078125 1.21875 -1.890625 L 0.875 -2.390625 C -0.234375 -1.625 -1.140625 -1.140625 -2.9375 -1.140625 C -4.734375 -1.140625 -5.640625 -1.625 -6.75 -2.390625 Z M -7.09375 -1.890625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-3-10"> | |
| 105 | +<path d="M -4.8125 -1.875 C -4.8125 -1.125 -4.5 -0.59375 -3.921875 -0.125 L -3.53125 -0.625 C -4.015625 -1.03125 -4.1875 -1.390625 -4.1875 -1.859375 C -4.1875 -2.40625 -3.84375 -2.796875 -3.3125 -2.796875 C -2.640625 -2.796875 -2.25 -2.546875 -0.609375 -0.25 L 0 -0.25 L 0 -3.609375 L -0.640625 -3.703125 L -0.640625 -1.234375 C -2.015625 -3.40625 -2.5625 -3.609375 -3.328125 -3.609375 C -4.171875 -3.609375 -4.8125 -2.9375 -4.8125 -1.875 Z M -4.8125 -1.875 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-3-11"> | |
| 108 | +<path d="M -4.8125 -2.546875 C -4.8125 -1.265625 -3.921875 -0.328125 -2.359375 -0.328125 C -0.8125 -0.328125 0.09375 -1.265625 0.09375 -2.546875 C 0.09375 -3.8125 -0.8125 -4.75 -2.359375 -4.75 C -3.921875 -4.75 -4.8125 -3.8125 -4.8125 -2.546875 Z M -4.203125 -2.546875 C -4.203125 -3.265625 -3.71875 -3.96875 -2.359375 -3.96875 C -1.015625 -3.96875 -0.515625 -3.265625 -0.515625 -2.546875 C -0.515625 -1.828125 -1.015625 -1.109375 -2.359375 -1.109375 C -3.71875 -1.109375 -4.203125 -1.828125 -4.203125 -2.546875 Z M -4.203125 -2.546875 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-3-12"> | |
| 111 | +<path d="M -3.265625 -0.515625 L -3.265625 -3.671875 L -3.90625 -3.671875 L -3.90625 -0.515625 Z M -1.640625 -0.515625 L -1.640625 -3.671875 L -2.296875 -3.671875 L -2.296875 -0.515625 Z M -1.640625 -0.515625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-3-13"> | |
| 114 | +<path d="M -4.734375 -2.703125 L -4.734375 -2.03125 L -3.65625 -0.296875 L -3.109375 -0.625 L -3.90625 -1.9375 L 0 -1.9375 L 0 -2.703125 Z M -4.734375 -2.703125 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-3-14"> | |
| 117 | +<path d="M -7.09375 -0.828125 L -6.75 -0.328125 C -5.640625 -1.09375 -4.734375 -1.578125 -2.9375 -1.578125 C -1.140625 -1.578125 -0.234375 -1.09375 0.875 -0.328125 L 1.21875 -0.828125 C 0.046875 -1.640625 -0.953125 -2.390625 -2.9375 -2.390625 C -4.921875 -2.390625 -5.921875 -1.640625 -7.09375 -0.828125 Z M -7.09375 -0.828125 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-4-0"> | |
| 120 | +<path d="M 3.125 -0.25 C 3.765625 -0.59375 4.15625 -1.140625 4.15625 -2.234375 C 4.15625 -3.75 3.375 -4.5625 2.25 -4.5625 C 1.140625 -4.5625 0.359375 -3.71875 0.359375 -2.234375 C 0.359375 -0.734375 1.140625 0.0625 2.234375 0.0625 C 3.0625 0.0625 3.421875 0.21875 3.9375 0.671875 L 4.34375 0.15625 C 4.015625 -0.078125 3.640625 -0.25 3.125 -0.25 Z M 1.015625 -2.234375 C 1.015625 -3.53125 1.5 -4.0625 2.25 -4.0625 C 3.015625 -4.0625 3.5 -3.53125 3.5 -2.234375 C 3.5 -0.9375 3.015625 -0.4375 2.25 -0.4375 C 1.53125 -0.4375 1.015625 -0.9375 1.015625 -2.234375 Z M 1.015625 -2.234375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-4-1"> | |
| 123 | +<path d="M 3.140625 -3.4375 L 2.546875 -3.4375 L 2.546875 -0.984375 C 2.34375 -0.640625 2.0625 -0.390625 1.6875 -0.390625 C 1.3125 -0.390625 1.15625 -0.5625 1.15625 -1.03125 L 1.15625 -3.4375 L 0.5625 -3.4375 L 0.5625 -0.96875 C 0.5625 -0.296875 0.921875 0.078125 1.515625 0.078125 C 2 0.078125 2.328125 -0.125 2.59375 -0.53125 L 2.625 0 L 3.140625 0 Z M 3.140625 -3.4375 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-4-2"> | |
| 126 | +<path d="M 2.59375 -4.71875 L 2.328125 -5.21875 L 1.03125 -4.46875 L 1.21875 -4.15625 Z M 3.21875 -1.8125 C 3.21875 -2.859375 2.71875 -3.515625 1.796875 -3.515625 C 0.90625 -3.515625 0.375 -2.75 0.375 -1.6875 C 0.375 -0.59375 0.9375 0.078125 1.890625 0.078125 C 2.359375 0.078125 2.75 -0.078125 3.09375 -0.359375 L 2.828125 -0.703125 C 2.53125 -0.5 2.28125 -0.40625 1.9375 -0.40625 C 1.4375 -0.40625 1.0625 -0.71875 1.015625 -1.515625 L 3.203125 -1.515625 C 3.203125 -1.59375 3.21875 -1.703125 3.21875 -1.8125 Z M 2.625 -1.953125 L 1.015625 -1.953125 C 1.0625 -2.71875 1.359375 -3.03125 1.8125 -3.03125 C 2.359375 -3.03125 2.625 -2.671875 2.625 -2 Z M 2.625 -1.953125 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-4-3"> | |
| 129 | +<path d="M 2.171875 -3.515625 C 1.75 -3.515625 1.4375 -3.328125 1.203125 -3 L 1.203125 -4.890625 L 0.59375 -4.8125 L 0.59375 0 L 1.125 0 L 1.1875 -0.375 C 1.421875 -0.09375 1.71875 0.078125 2.09375 0.078125 C 2.9375 0.078125 3.453125 -0.640625 3.453125 -1.71875 C 3.453125 -2.859375 2.9375 -3.515625 2.171875 -3.515625 Z M 1.953125 -0.390625 C 1.65625 -0.390625 1.375 -0.59375 1.203125 -0.859375 L 1.203125 -2.5 C 1.375 -2.78125 1.625 -3.03125 2 -3.03125 C 2.484375 -3.03125 2.796875 -2.703125 2.796875 -1.71875 C 2.796875 -0.78125 2.453125 -0.390625 1.953125 -0.390625 Z M 1.953125 -0.390625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-4-4"> | |
| 132 | +<path d="M 3.21875 -1.8125 C 3.21875 -2.859375 2.71875 -3.515625 1.796875 -3.515625 C 0.90625 -3.515625 0.375 -2.75 0.375 -1.6875 C 0.375 -0.59375 0.9375 0.078125 1.890625 0.078125 C 2.359375 0.078125 2.75 -0.078125 3.09375 -0.359375 L 2.828125 -0.703125 C 2.53125 -0.5 2.28125 -0.40625 1.9375 -0.40625 C 1.4375 -0.40625 1.0625 -0.71875 1.015625 -1.515625 L 3.203125 -1.515625 C 3.203125 -1.59375 3.21875 -1.703125 3.21875 -1.8125 Z M 2.625 -1.953125 L 1.015625 -1.953125 C 1.0625 -2.71875 1.359375 -3.03125 1.8125 -3.03125 C 2.359375 -3.03125 2.625 -2.671875 2.625 -2 Z M 2.625 -1.953125 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-4-5"> | |
| 135 | +<path d="M 1.875 -3.515625 C 0.9375 -3.515625 0.375 -2.78125 0.375 -1.6875 C 0.375 -0.578125 0.9375 0.078125 1.875 0.078125 C 2.265625 0.078125 2.609375 -0.046875 2.921875 -0.296875 L 2.640625 -0.6875 C 2.390625 -0.515625 2.1875 -0.4375 1.890625 -0.4375 C 1.359375 -0.4375 1.015625 -0.796875 1.015625 -1.703125 C 1.015625 -2.59375 1.359375 -3.015625 1.890625 -3.015625 C 2.1875 -3.015625 2.390625 -2.9375 2.625 -2.765625 L 2.921875 -3.140625 C 2.59375 -3.40625 2.28125 -3.515625 1.875 -3.515625 Z M 1.875 -3.515625 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-4-6"> | |
| 138 | +<path d="M 0.203125 -1.78125 L 4.9375 -1.78125 L 4.9375 -2.296875 L 0.203125 -2.296875 Z M 0.203125 -1.78125 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-4-7"> | |
| 141 | +<path d="M 3.046875 0 L 3.78125 0 L 2.5625 -2.015625 C 3.21875 -2.203125 3.53125 -2.59375 3.53125 -3.21875 C 3.53125 -4.0625 2.953125 -4.484375 1.828125 -4.484375 L 0.65625 -4.484375 L 0.65625 0 L 1.265625 0 L 1.265625 -1.90625 L 1.96875 -1.90625 Z M 1.265625 -2.375 L 1.265625 -4 L 1.828125 -4 C 2.5625 -4 2.875 -3.78125 2.875 -3.21875 C 2.875 -2.609375 2.515625 -2.375 1.890625 -2.375 Z M 1.265625 -2.375 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-4-8"> | |
| 144 | +<path d="M 1.546875 -3.515625 C 0.84375 -3.515625 0.3125 -3.109375 0.3125 -2.5625 C 0.3125 -2.078125 0.609375 -1.765625 1.34375 -1.5625 C 2.015625 -1.390625 2.1875 -1.265625 2.1875 -0.921875 C 2.1875 -0.59375 1.890625 -0.40625 1.453125 -0.40625 C 1.078125 -0.40625 0.75 -0.53125 0.484375 -0.734375 L 0.15625 -0.375 C 0.46875 -0.109375 0.875 0.078125 1.453125 0.078125 C 2.15625 0.078125 2.8125 -0.25 2.8125 -0.96875 C 2.8125 -1.5625 2.390625 -1.84375 1.671875 -2.03125 C 1.125 -2.171875 0.9375 -2.3125 0.9375 -2.59375 C 0.9375 -2.859375 1.171875 -3.03125 1.5625 -3.03125 C 1.890625 -3.03125 2.15625 -2.9375 2.46875 -2.75 L 2.71875 -3.125 C 2.390625 -3.375 2.03125 -3.515625 1.546875 -3.515625 Z M 1.546875 -3.515625 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-4-9"> | |
| 147 | +<path d="M 0.890625 -5.078125 C 0.640625 -5.078125 0.46875 -4.90625 0.46875 -4.671875 C 0.46875 -4.4375 0.640625 -4.265625 0.890625 -4.265625 C 1.140625 -4.265625 1.3125 -4.4375 1.3125 -4.671875 C 1.3125 -4.90625 1.140625 -5.078125 0.890625 -5.078125 Z M 1.203125 -3.4375 L 0.59375 -3.4375 L 0.59375 0 L 1.203125 0 Z M 1.203125 -3.4375 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-4-10"> | |
| 150 | +<path d="M 2.640625 -4.890625 L 2.640625 -3.09375 C 2.421875 -3.328125 2.125 -3.515625 1.71875 -3.515625 C 0.875 -3.515625 0.375 -2.75 0.375 -1.703125 C 0.375 -0.625 0.828125 0.078125 1.671875 0.078125 C 2.09375 0.078125 2.4375 -0.125 2.65625 -0.46875 L 2.71875 0 L 3.25 0 L 3.25 -4.8125 Z M 1.796875 -0.390625 C 1.296875 -0.390625 1.015625 -0.8125 1.015625 -1.71875 C 1.015625 -2.609375 1.328125 -3.03125 1.84375 -3.03125 C 2.1875 -3.03125 2.4375 -2.859375 2.640625 -2.59375 L 2.640625 -0.90625 C 2.421875 -0.59375 2.1875 -0.390625 1.796875 -0.390625 Z M 1.796875 -0.390625 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-4-11"> | |
| 153 | +<path d="M 2.21875 -3.515625 C 1.765625 -3.515625 1.40625 -3.28125 1.171875 -2.921875 L 1.109375 -3.4375 L 0.59375 -3.4375 L 0.59375 0 L 1.203125 0 L 1.203125 -2.4375 C 1.421875 -2.796875 1.6875 -3.046875 2.078125 -3.046875 C 2.40625 -3.046875 2.609375 -2.890625 2.609375 -2.375 L 2.609375 0 L 3.21875 0 L 3.21875 -2.46875 C 3.21875 -3.109375 2.84375 -3.515625 2.21875 -3.515625 Z M 2.21875 -3.515625 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-4-12"> | |
| 156 | +<path d="M 2.125 -0.546875 C 1.953125 -0.46875 1.8125 -0.421875 1.671875 -0.421875 C 1.375 -0.421875 1.25 -0.578125 1.25 -0.921875 L 1.25 -2.96875 L 2 -2.96875 L 2.078125 -3.4375 L 1.25 -3.4375 L 1.25 -4.28125 L 0.65625 -4.203125 L 0.65625 -3.4375 L 0.0625 -3.4375 L 0.0625 -2.96875 L 0.65625 -2.96875 L 0.65625 -0.90625 C 0.65625 -0.265625 1 0.078125 1.578125 0.078125 C 1.875 0.078125 2.125 0 2.359375 -0.15625 Z M 2.125 -0.546875 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-4-13"> | |
| 159 | +<path d="M 1.28125 0.078125 C 1.453125 0.078125 1.625 0.03125 1.75 -0.046875 L 1.59375 -0.453125 C 1.53125 -0.4375 1.453125 -0.421875 1.375 -0.421875 C 1.21875 -0.421875 1.15625 -0.515625 1.15625 -0.6875 L 1.15625 -4.890625 L 0.5625 -4.8125 L 0.5625 -0.671875 C 0.5625 -0.1875 0.84375 0.078125 1.28125 0.078125 Z M 1.28125 0.078125 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-4-14"> | |
| 162 | +<path d="M 1.46875 -5.5 C 0.828125 -4.59375 0.265625 -3.828125 0.265625 -2.28125 C 0.265625 -0.734375 0.828125 0.046875 1.46875 0.9375 L 1.84375 0.6875 C 1.265625 -0.1875 0.890625 -0.890625 0.890625 -2.28125 C 0.890625 -3.6875 1.265625 -4.375 1.84375 -5.25 Z M 1.46875 -5.5 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-4-15"> | |
| 165 | +<path d="M 2.21875 -3.515625 C 1.78125 -3.515625 1.453125 -3.296875 1.203125 -2.953125 L 1.203125 -4.875 L 0.59375 -4.8125 L 0.59375 0 L 1.203125 0 L 1.203125 -2.4375 C 1.421875 -2.796875 1.6875 -3.046875 2.0625 -3.046875 C 2.390625 -3.046875 2.609375 -2.890625 2.609375 -2.375 L 2.609375 0 L 3.21875 0 L 3.21875 -2.46875 C 3.21875 -3.109375 2.84375 -3.515625 2.21875 -3.515625 Z M 2.21875 -3.515625 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-4-16"> | |
| 168 | +<path d="M 4.046875 -3.515625 C 3.578125 -3.515625 3.265625 -3.265625 3.015625 -2.890625 C 2.890625 -3.28125 2.578125 -3.515625 2.15625 -3.515625 C 1.703125 -3.515625 1.390625 -3.28125 1.171875 -2.9375 L 1.109375 -3.4375 L 0.59375 -3.4375 L 0.59375 0 L 1.203125 0 L 1.203125 -2.4375 C 1.421875 -2.796875 1.640625 -3.046875 2 -3.046875 C 2.265625 -3.046875 2.484375 -2.890625 2.484375 -2.375 L 2.484375 0 L 3.09375 0 L 3.09375 -2.4375 C 3.328125 -2.796875 3.53125 -3.046875 3.890625 -3.046875 C 4.15625 -3.046875 4.375 -2.890625 4.375 -2.375 L 4.375 0 L 4.984375 0 L 4.984375 -2.46875 C 4.984375 -3.109375 4.609375 -3.515625 4.046875 -3.515625 Z M 4.046875 -3.515625 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-4-17"> | |
| 171 | +<path d="M 2.90625 -0.796875 L 2.90625 -2.375 C 2.90625 -3.09375 2.515625 -3.515625 1.6875 -3.515625 C 1.3125 -3.515625 0.9375 -3.4375 0.515625 -3.28125 L 0.65625 -2.84375 C 1.015625 -2.953125 1.328125 -3.015625 1.578125 -3.015625 C 2.0625 -3.015625 2.296875 -2.84375 2.296875 -2.34375 L 2.296875 -2.09375 L 1.765625 -2.09375 C 0.8125 -2.09375 0.265625 -1.6875 0.265625 -0.953125 C 0.265625 -0.34375 0.671875 0.078125 1.359375 0.078125 C 1.765625 0.078125 2.140625 -0.078125 2.375 -0.4375 C 2.484375 -0.09375 2.703125 0.046875 3.046875 0.078125 L 3.1875 -0.34375 C 3.015625 -0.40625 2.90625 -0.5 2.90625 -0.796875 Z M 1.484375 -0.375 C 1.09375 -0.375 0.90625 -0.59375 0.90625 -0.984375 C 0.90625 -1.453125 1.21875 -1.6875 1.84375 -1.6875 L 2.296875 -1.6875 L 2.296875 -0.90625 C 2.109375 -0.546875 1.84375 -0.375 1.484375 -0.375 Z M 1.484375 -0.375 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-4-18"> | |
| 174 | +<path d="M 2.734375 -3.4375 L 2.6875 -3.046875 C 2.453125 -3.3125 2.140625 -3.515625 1.71875 -3.515625 C 0.875 -3.515625 0.375 -2.75 0.375 -1.703125 C 0.375 -0.625 0.828125 0.078125 1.671875 0.078125 C 2.078125 0.078125 2.421875 -0.125 2.640625 -0.453125 L 2.640625 1.3125 L 3.25 1.390625 L 3.25 -3.4375 Z M 1.796875 -0.390625 C 1.296875 -0.390625 1.015625 -0.8125 1.015625 -1.71875 C 1.015625 -2.609375 1.328125 -3.03125 1.84375 -3.03125 C 2.1875 -3.03125 2.4375 -2.859375 2.640625 -2.59375 L 2.640625 -0.90625 C 2.421875 -0.59375 2.1875 -0.390625 1.796875 -0.390625 Z M 1.796875 -0.390625 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-4-19"> | |
| 177 | +<path d="M 0.640625 -5.5 L 0.265625 -5.25 C 0.84375 -4.375 1.21875 -3.6875 1.21875 -2.28125 C 1.21875 -0.890625 0.84375 -0.1875 0.265625 0.6875 L 0.640625 0.9375 C 1.28125 0.046875 1.84375 -0.734375 1.84375 -2.28125 C 1.84375 -3.828125 1.28125 -4.59375 0.640625 -5.5 Z M 0.640625 -5.5 "/> | |
| 178 | +</g> | |
| 179 | +</g> | |
| 180 | +<clipPath id="clip-0"> | |
| 181 | +<path clip-rule="nonzero" d="M 40.441406 7.488281 L 368.128906 7.488281 L 368.128906 109.542969 L 40.441406 109.542969 Z M 40.441406 7.488281 "/> | |
| 182 | +</clipPath> | |
| 183 | +<clipPath id="clip-1"> | |
| 184 | +<path clip-rule="nonzero" d="M 93 7.488281 L 94 7.488281 L 94 109.542969 L 93 109.542969 Z M 93 7.488281 "/> | |
| 185 | +</clipPath> | |
| 186 | +<clipPath id="clip-2"> | |
| 187 | +<path clip-rule="nonzero" d="M 110 7.488281 L 112 7.488281 L 112 109.542969 L 110 109.542969 Z M 110 7.488281 "/> | |
| 188 | +</clipPath> | |
| 189 | +<clipPath id="clip-3"> | |
| 190 | +<path clip-rule="nonzero" d="M 323 7.488281 L 325 7.488281 L 325 109.542969 L 323 109.542969 Z M 323 7.488281 "/> | |
| 191 | +</clipPath> | |
| 192 | +<clipPath id="clip-4"> | |
| 193 | +<path clip-rule="nonzero" d="M 336 0 L 373.824219 0 L 373.824219 40 L 336 40 Z M 336 0 "/> | |
| 194 | +</clipPath> | |
| 195 | +</defs> | |
| 196 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(84.999084%, 84.999084%, 84.999084%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 0.000545522 -0.00135971 L 0.000545522 102.569821 M 44.505901 -0.00135971 L 44.505901 102.569821 M 89.011255 -0.00135971 L 89.011255 102.569821 M 133.51661 -0.00135971 L 133.51661 102.569821 M 178.025891 -0.00135971 L 178.025891 102.569821 M 222.531246 -0.00135971 L 222.531246 102.569821 M 267.036601 -0.00135971 L 267.036601 102.569821 M 311.541956 -0.00135971 L 311.541956 102.569821 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 197 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(84.999084%, 84.999084%, 84.999084%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 0.000545522 14.65447 L 329.346454 14.65447 M 0.000545522 51.284231 L 329.346454 51.284231 M 0.000545522 87.917917 L 329.346454 87.917917 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 198 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.000545522 -0.00135971 L 0.000545522 4.250519 M 44.505901 -0.00135971 L 44.505901 4.250519 M 89.011255 -0.00135971 L 89.011255 4.250519 M 133.51661 -0.00135971 L 133.51661 4.250519 M 178.025891 -0.00135971 L 178.025891 4.250519 M 222.531246 -0.00135971 L 222.531246 4.250519 M 267.036601 -0.00135971 L 267.036601 4.250519 M 311.541956 -0.00135971 L 311.541956 4.250519 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 199 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.000545522 14.65447 L 4.252424 14.65447 M 0.000545522 51.284231 L 4.252424 51.284231 M 0.000545522 87.917917 L 4.252424 87.917917 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 200 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.000545522 -0.00135971 L 329.346454 -0.00135971 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 201 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.000545522 -0.00135971 L 0.000545522 102.569821 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 202 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 203 | +<use xlink:href="#glyph-0-0" x="31.861284" y="117.862504"/> | |
| 204 | +</g> | |
| 205 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 206 | +<use xlink:href="#glyph-0-1" x="37.165214" y="117.862504"/> | |
| 207 | +<use xlink:href="#glyph-0-1" x="41.116101" y="117.862504"/> | |
| 208 | +<use xlink:href="#glyph-0-2" x="45.066987" y="117.862504"/> | |
| 209 | +</g> | |
| 210 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 211 | +<use xlink:href="#glyph-0-0" x="76.143176" y="117.862504"/> | |
| 212 | +</g> | |
| 213 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 214 | +<use xlink:href="#glyph-0-1" x="81.447106" y="117.862504"/> | |
| 215 | +<use xlink:href="#glyph-0-1" x="85.397992" y="117.862504"/> | |
| 216 | +<use xlink:href="#glyph-0-3" x="89.348879" y="117.862504"/> | |
| 217 | +</g> | |
| 218 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 219 | +<use xlink:href="#glyph-0-4" x="120.424073" y="117.862504"/> | |
| 220 | +</g> | |
| 221 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 222 | +<use xlink:href="#glyph-0-2" x="125.728003" y="117.862504"/> | |
| 223 | +<use xlink:href="#glyph-0-2" x="129.678889" y="117.862504"/> | |
| 224 | +<use xlink:href="#glyph-0-2" x="133.629776" y="117.862504"/> | |
| 225 | +</g> | |
| 226 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 227 | +<use xlink:href="#glyph-0-4" x="164.705965" y="117.862504"/> | |
| 228 | +</g> | |
| 229 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 230 | +<use xlink:href="#glyph-0-2" x="170.009894" y="117.862504"/> | |
| 231 | +<use xlink:href="#glyph-0-2" x="173.960781" y="117.862504"/> | |
| 232 | +<use xlink:href="#glyph-0-3" x="177.911667" y="117.862504"/> | |
| 233 | +</g> | |
| 234 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 235 | +<use xlink:href="#glyph-0-4" x="208.986861" y="117.862504"/> | |
| 236 | +</g> | |
| 237 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 238 | +<use xlink:href="#glyph-0-2" x="214.290791" y="117.862504"/> | |
| 239 | +<use xlink:href="#glyph-0-0" x="218.241678" y="117.862504"/> | |
| 240 | +<use xlink:href="#glyph-0-2" x="222.192564" y="117.862504"/> | |
| 241 | +</g> | |
| 242 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 243 | +<use xlink:href="#glyph-0-4" x="253.268753" y="117.862504"/> | |
| 244 | +</g> | |
| 245 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 246 | +<use xlink:href="#glyph-0-2" x="258.572683" y="117.862504"/> | |
| 247 | +<use xlink:href="#glyph-0-0" x="262.52357" y="117.862504"/> | |
| 248 | +<use xlink:href="#glyph-0-3" x="266.474456" y="117.862504"/> | |
| 249 | +</g> | |
| 250 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 251 | +<use xlink:href="#glyph-0-4" x="297.550645" y="117.862504"/> | |
| 252 | +</g> | |
| 253 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 254 | +<use xlink:href="#glyph-0-2" x="302.854575" y="117.862504"/> | |
| 255 | +<use xlink:href="#glyph-0-4" x="306.805461" y="117.862504"/> | |
| 256 | +<use xlink:href="#glyph-0-2" x="310.756348" y="117.862504"/> | |
| 257 | +</g> | |
| 258 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 259 | +<use xlink:href="#glyph-0-4" x="341.831542" y="117.862504"/> | |
| 260 | +</g> | |
| 261 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 262 | +<use xlink:href="#glyph-0-2" x="347.135472" y="117.862504"/> | |
| 263 | +<use xlink:href="#glyph-0-4" x="351.086358" y="117.862504"/> | |
| 264 | +<use xlink:href="#glyph-0-3" x="355.037245" y="117.862504"/> | |
| 265 | +</g> | |
| 266 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 267 | +<use xlink:href="#glyph-0-0" x="24.738333" y="97.199081"/> | |
| 268 | +<use xlink:href="#glyph-0-2" x="28.68922" y="97.199081"/> | |
| 269 | +<use xlink:href="#glyph-0-2" x="32.640106" y="97.199081"/> | |
| 270 | +</g> | |
| 271 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 272 | +<use xlink:href="#glyph-0-4" x="24.738333" y="60.75154"/> | |
| 273 | +<use xlink:href="#glyph-0-2" x="28.68922" y="60.75154"/> | |
| 274 | +<use xlink:href="#glyph-0-2" x="32.640106" y="60.75154"/> | |
| 275 | +</g> | |
| 276 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 277 | +<use xlink:href="#glyph-0-5" x="24.738333" y="24.303999"/> | |
| 278 | +<use xlink:href="#glyph-0-2" x="28.68922" y="24.303999"/> | |
| 279 | +<use xlink:href="#glyph-0-2" x="32.640106" y="24.303999"/> | |
| 280 | +</g> | |
| 281 | +<g clip-path="url(#clip-0)"> | |
| 282 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.000545522 9.158043 L 17.801117 7.324592 L 35.605615 5.495067 L 53.406186 4.395782 L 71.210684 6.594353 L 89.011255 14.65447 L 106.815753 20.146971 L 124.616325 29.306374 L 142.420822 38.461852 L 160.221394 45.79173 L 178.025891 54.947207 L 195.826463 60.443634 L 213.630961 62.273159 L 231.431532 65.205895 L 249.23603 73.266013 L 267.036601 80.591965 L 284.841099 91.580893 L 293.741385 86.084466 L 302.641671 89.747442 L 311.541956 91.580893 L 320.446168 93.410418 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 283 | +</g> | |
| 284 | +<g clip-path="url(#clip-1)"> | |
| 285 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 53.406186 -0.00135971 L 53.406186 102.569821 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 286 | +</g> | |
| 287 | +<g clip-path="url(#clip-2)"> | |
| 288 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 71.210684 -0.00135971 L 71.210684 102.569821 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 289 | +</g> | |
| 290 | +<g clip-path="url(#clip-3)"> | |
| 291 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 284.841099 -0.00135971 L 284.841099 102.569821 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 292 | +</g> | |
| 293 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 294 | +<use xlink:href="#glyph-1-0" x="73.598057" y="89.276178"/> | |
| 295 | +</g> | |
| 296 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 297 | +<use xlink:href="#glyph-1-1" x="76.137169" y="89.276178"/> | |
| 298 | +</g> | |
| 299 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 300 | +<use xlink:href="#glyph-1-2" x="77.828357" y="89.276178"/> | |
| 301 | +<use xlink:href="#glyph-1-3" x="80.362811" y="89.276178"/> | |
| 302 | +<use xlink:href="#glyph-1-4" x="83.041691" y="89.276178"/> | |
| 303 | +</g> | |
| 304 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 305 | +<use xlink:href="#glyph-1-5" x="119.568403" y="98.122408"/> | |
| 306 | +</g> | |
| 307 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 308 | +<use xlink:href="#glyph-1-2" x="122.363756" y="98.122408"/> | |
| 309 | +<use xlink:href="#glyph-1-6" x="124.898209" y="98.122408"/> | |
| 310 | +<use xlink:href="#glyph-1-1" x="127.628337" y="98.122408"/> | |
| 311 | +<use xlink:href="#glyph-1-7" x="129.412704" y="98.122408"/> | |
| 312 | +<use xlink:href="#glyph-1-8" x="130.698567" y="98.122408"/> | |
| 313 | +<use xlink:href="#glyph-1-2" x="132.874283" y="98.122408"/> | |
| 314 | +</g> | |
| 315 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 316 | +<use xlink:href="#glyph-1-9" x="298.168518" y="34.604867"/> | |
| 317 | +<use xlink:href="#glyph-1-10" x="300.70763" y="34.604867"/> | |
| 318 | +<use xlink:href="#glyph-1-11" x="303.42844" y="34.604867"/> | |
| 319 | +<use xlink:href="#glyph-1-11" x="307.388524" y="34.604867"/> | |
| 320 | +<use xlink:href="#glyph-1-2" x="311.348607" y="34.604867"/> | |
| 321 | +<use xlink:href="#glyph-1-12" x="313.88306" y="34.604867"/> | |
| 322 | +</g> | |
| 323 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1.496359 9.158043 C 1.496359 9.982507 0.82501 10.653857 0.000545522 10.653857 C -0.823919 10.653857 -1.495268 9.982507 -1.495268 9.158043 C -1.495268 8.333579 -0.823919 7.66223 0.000545522 7.66223 C 0.82501 7.66223 1.496359 8.333579 1.496359 9.158043 Z M 1.496359 9.158043 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 324 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 19.29693 7.324592 C 19.29693 8.152982 18.629507 8.820406 17.801117 8.820406 C 16.976653 8.820406 16.30923 8.152982 16.30923 7.324592 C 16.30923 6.500128 16.976653 5.832705 17.801117 5.832705 C 18.629507 5.832705 19.29693 6.500128 19.29693 7.324592 Z M 19.29693 7.324592 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 325 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 37.097502 5.495067 C 37.097502 6.319531 36.430079 6.990881 35.605615 6.990881 C 34.781151 6.990881 34.109801 6.319531 34.109801 5.495067 C 34.109801 4.670603 34.781151 3.999254 35.605615 3.999254 C 36.430079 3.999254 37.097502 4.670603 37.097502 5.495067 Z M 37.097502 5.495067 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 326 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.902 4.395782 C 54.902 5.220246 54.234576 5.891595 53.406186 5.891595 C 52.581722 5.891595 51.914299 5.220246 51.914299 4.395782 C 51.914299 3.571318 52.581722 2.899969 53.406186 2.899969 C 54.234576 2.899969 54.902 3.571318 54.902 4.395782 Z M 54.902 4.395782 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 327 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 72.702571 6.594353 C 72.702571 7.418817 72.035148 8.090166 71.210684 8.090166 C 70.38622 8.090166 69.714871 7.418817 69.714871 6.594353 C 69.714871 5.769889 70.38622 5.098539 71.210684 5.098539 C 72.035148 5.098539 72.702571 5.769889 72.702571 6.594353 Z M 72.702571 6.594353 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 328 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 90.507069 14.65447 C 90.507069 15.478934 89.83572 16.146358 89.011255 16.146358 C 88.186791 16.146358 87.519368 15.478934 87.519368 14.65447 C 87.519368 13.82608 88.186791 13.158657 89.011255 13.158657 C 89.83572 13.158657 90.507069 13.82608 90.507069 14.65447 Z M 90.507069 14.65447 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 329 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 108.30764 20.146971 C 108.30764 20.971435 107.640217 21.642785 106.815753 21.642785 C 105.991289 21.642785 105.31994 20.971435 105.31994 20.146971 C 105.31994 19.322507 105.991289 18.655084 106.815753 18.655084 C 107.640217 18.655084 108.30764 19.322507 108.30764 20.146971 Z M 108.30764 20.146971 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 330 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 126.112138 29.306374 C 126.112138 30.130839 125.440789 30.798262 124.616325 30.798262 C 123.791861 30.798262 123.124437 30.130839 123.124437 29.306374 C 123.124437 28.48191 123.791861 27.810561 124.616325 27.810561 C 125.440789 27.810561 126.112138 28.48191 126.112138 29.306374 Z M 126.112138 29.306374 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 331 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 143.91271 38.461852 C 143.91271 39.290242 143.245286 39.957665 142.420822 39.957665 C 141.592432 39.957665 140.925009 39.290242 140.925009 38.461852 C 140.925009 37.637387 141.592432 36.969964 142.420822 36.969964 C 143.245286 36.969964 143.91271 37.637387 143.91271 38.461852 Z M 143.91271 38.461852 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 332 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 161.717207 45.79173 C 161.717207 46.616194 161.045858 47.283617 160.221394 47.283617 C 159.39693 47.283617 158.729507 46.616194 158.729507 45.79173 C 158.729507 44.96334 159.39693 44.295916 160.221394 44.295916 C 161.045858 44.295916 161.717207 44.96334 161.717207 45.79173 Z M 161.717207 45.79173 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 333 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 179.517779 54.947207 C 179.517779 55.775597 178.850356 56.44302 178.025891 56.44302 C 177.197501 56.44302 176.530078 55.775597 176.530078 54.947207 C 176.530078 54.122743 177.197501 53.455319 178.025891 53.455319 C 178.850356 53.455319 179.517779 54.122743 179.517779 54.947207 Z M 179.517779 54.947207 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 334 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 197.322276 60.443634 C 197.322276 61.268098 196.650927 61.939447 195.826463 61.939447 C 195.001999 61.939447 194.334576 61.268098 194.334576 60.443634 C 194.334576 59.61917 195.001999 58.94782 195.826463 58.94782 C 196.650927 58.94782 197.322276 59.61917 197.322276 60.443634 Z M 197.322276 60.443634 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 335 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 215.122848 62.273159 C 215.122848 63.101549 214.455425 63.768972 213.630961 63.768972 C 212.802571 63.768972 212.135147 63.101549 212.135147 62.273159 C 212.135147 61.448695 212.802571 60.781271 213.630961 60.781271 C 214.455425 60.781271 215.122848 61.448695 215.122848 62.273159 Z M 215.122848 62.273159 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 336 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.927346 65.205895 C 232.927346 66.030359 232.255996 66.697782 231.431532 66.697782 C 230.607068 66.697782 229.935719 66.030359 229.935719 65.205895 C 229.935719 64.381431 230.607068 63.710082 231.431532 63.710082 C 232.255996 63.710082 232.927346 64.381431 232.927346 65.205895 Z M 232.927346 65.205895 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 337 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 250.727917 73.266013 C 250.727917 74.090477 250.060494 74.7579 249.23603 74.7579 C 248.40764 74.7579 247.740216 74.090477 247.740216 73.266013 C 247.740216 72.437623 248.40764 71.770199 249.23603 71.770199 C 250.060494 71.770199 250.727917 72.437623 250.727917 73.266013 Z M 250.727917 73.266013 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 338 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 268.532415 80.591965 C 268.532415 81.416429 267.861065 82.083852 267.036601 82.083852 C 266.212137 82.083852 265.540788 81.416429 265.540788 80.591965 C 265.540788 79.763575 266.212137 79.096151 267.036601 79.096151 C 267.861065 79.096151 268.532415 79.763575 268.532415 80.591965 Z M 268.532415 80.591965 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 339 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 286.332986 91.580893 C 286.332986 92.405357 285.665563 93.076706 284.841099 93.076706 C 284.012709 93.076706 283.345286 92.405357 283.345286 91.580893 C 283.345286 90.756429 284.012709 90.08508 284.841099 90.08508 C 285.665563 90.08508 286.332986 90.756429 286.332986 91.580893 Z M 286.332986 91.580893 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 340 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 295.233272 86.084466 C 295.233272 86.912856 294.565849 87.580279 293.741385 87.580279 C 292.916921 87.580279 292.245571 86.912856 292.245571 86.084466 C 292.245571 85.260002 292.916921 84.592579 293.741385 84.592579 C 294.565849 84.592579 295.233272 85.260002 295.233272 86.084466 Z M 295.233272 86.084466 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 341 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 304.137484 89.747442 C 304.137484 90.575832 303.466135 91.243255 302.641671 91.243255 C 301.817207 91.243255 301.145857 90.575832 301.145857 89.747442 C 301.145857 88.922978 301.817207 88.255555 302.641671 88.255555 C 303.466135 88.255555 304.137484 88.922978 304.137484 89.747442 Z M 304.137484 89.747442 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 342 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 313.03777 91.580893 C 313.03777 92.405357 312.36642 93.076706 311.541956 93.076706 C 310.717492 93.076706 310.050069 92.405357 310.050069 91.580893 C 310.050069 90.756429 310.717492 90.08508 311.541956 90.08508 C 312.36642 90.08508 313.03777 90.756429 313.03777 91.580893 Z M 313.03777 91.580893 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 343 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" d="M 360.757812 16.601562 C 360.757812 15.777344 360.09375 15.113281 359.273438 15.113281 C 358.449219 15.113281 357.785156 15.777344 357.785156 16.601562 C 357.785156 17.421875 358.449219 18.085938 359.273438 18.085938 C 360.09375 18.085938 360.757812 17.421875 360.757812 16.601562 Z M 360.757812 16.601562 "/> | |
| 344 | +<g clip-path="url(#clip-4)"> | |
| 345 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 321.938056 93.410418 C 321.938056 94.238808 321.270632 94.906231 320.446168 94.906231 C 319.617778 94.906231 318.950355 94.238808 318.950355 93.410418 C 318.950355 92.585954 319.617778 91.918531 320.446168 91.918531 C 321.270632 91.918531 321.938056 92.585954 321.938056 93.410418 Z M 321.938056 93.410418 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 346 | +</g> | |
| 347 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 348 | +<use xlink:href="#glyph-2-0" x="192.461495" y="131.420886"/> | |
| 349 | +<use xlink:href="#glyph-2-1" x="197.26665" y="131.420886"/> | |
| 350 | +<use xlink:href="#glyph-2-1" x="202.12212" y="131.420886"/> | |
| 351 | +<use xlink:href="#glyph-2-2" x="206.977591" y="131.420886"/> | |
| 352 | +<use xlink:href="#glyph-2-3" x="211.539552" y="131.420886"/> | |
| 353 | +</g> | |
| 354 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-3-0" x="15.99359" y="108.969511"/> | |
| 356 | +<use xlink:href="#glyph-3-1" x="15.99359" y="106.495653"/> | |
| 357 | +<use xlink:href="#glyph-3-2" x="15.99359" y="101.640183"/> | |
| 358 | +<use xlink:href="#glyph-3-3" x="15.99359" y="96.692467"/> | |
| 359 | +<use xlink:href="#glyph-3-4" x="15.99359" y="94.377942"/> | |
| 360 | +</g> | |
| 361 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 362 | +<use xlink:href="#glyph-3-5" x="15.99359" y="90.495243"/> | |
| 363 | +</g> | |
| 364 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 365 | +<use xlink:href="#glyph-3-2" x="15.99359" y="83.711002"/> | |
| 366 | +<use xlink:href="#glyph-3-5" x="15.99359" y="78.763287"/> | |
| 367 | +</g> | |
| 368 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 369 | +<use xlink:href="#glyph-3-6" x="15.99359" y="71.979046"/> | |
| 370 | +<use xlink:href="#glyph-3-7" x="15.99359" y="67.064874"/> | |
| 371 | +<use xlink:href="#glyph-3-3" x="15.99359" y="63.853051"/> | |
| 372 | +<use xlink:href="#glyph-3-8" x="15.99359" y="61.538526"/> | |
| 373 | +</g> | |
| 374 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 375 | +<use xlink:href="#glyph-3-9" x="15.99359" y="55.249057"/> | |
| 376 | +<use xlink:href="#glyph-3-10" x="15.99359" y="52.532006"/> | |
| 377 | +<use xlink:href="#glyph-3-11" x="15.99359" y="48.372571"/> | |
| 378 | +<use xlink:href="#glyph-3-11" x="15.99359" y="43.290679"/> | |
| 379 | +<use xlink:href="#glyph-3-11" x="15.99359" y="38.208788"/> | |
| 380 | +</g> | |
| 381 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 382 | +<use xlink:href="#glyph-3-12" x="15.99359" y="30.904618"/> | |
| 383 | +</g> | |
| 384 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 385 | +<use xlink:href="#glyph-3-13" x="15.99359" y="24.489359"/> | |
| 386 | +<use xlink:href="#glyph-3-11" x="15.99359" y="20.942098"/> | |
| 387 | +<use xlink:href="#glyph-3-11" x="15.99359" y="15.860207"/> | |
| 388 | +<use xlink:href="#glyph-3-14" x="15.99359" y="10.778316"/> | |
| 389 | +</g> | |
| 390 | +<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="0.9" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(81.568909%, 83.529663%, 86.274719%)" stroke-opacity="1" stroke-miterlimit="10" d="M 7.33435 84.871326 L 144.156123 84.871326 L 144.156123 99.770569 L 7.33435 99.770569 Z M 7.33435 84.871326 " transform="matrix(0.994965, 0, 0, -0.994965, 40.440863, 109.541616)"/> | |
| 391 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.000919996 0.00191055 L 17.008436 0.00191055 " transform="matrix(0.994965, 0, 0, -0.994965, 51.456116, 17.685495)"/> | |
| 392 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="0.9" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10.000491 0.00191055 C 10.000491 0.826375 9.329142 1.493798 8.504678 1.493798 C 7.680214 1.493798 7.008864 0.826375 7.008864 0.00191055 C 7.008864 -0.82648 7.680214 -1.493903 8.504678 -1.493903 C 9.329142 -1.493903 10.000491 -0.82648 10.000491 0.00191055 Z M 10.000491 0.00191055 " transform="matrix(0.994965, 0, 0, -0.994965, 51.456116, 17.685495)"/> | |
| 393 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 394 | +<use xlink:href="#glyph-4-0" x="71.104676" y="19.734127"/> | |
| 395 | +<use xlink:href="#glyph-4-1" x="75.611647" y="19.734127"/> | |
| 396 | +<use xlink:href="#glyph-4-2" x="79.362022" y="19.734127"/> | |
| 397 | +<use xlink:href="#glyph-4-3" x="82.910202" y="19.734127"/> | |
| 398 | +<use xlink:href="#glyph-4-4" x="86.732323" y="19.734127"/> | |
| 399 | +<use xlink:href="#glyph-4-5" x="90.280504" y="19.734127"/> | |
| 400 | +</g> | |
| 401 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 402 | +<use xlink:href="#glyph-4-6" x="95.12664" y="19.734127"/> | |
| 403 | +</g> | |
| 404 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 405 | +<use xlink:href="#glyph-4-7" x="102.007762" y="19.734127"/> | |
| 406 | +</g> | |
| 407 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 408 | +<use xlink:href="#glyph-4-2" x="105.921196" y="19.734127"/> | |
| 409 | +<use xlink:href="#glyph-4-8" x="109.469377" y="19.734127"/> | |
| 410 | +<use xlink:href="#glyph-4-9" x="112.515333" y="19.734127"/> | |
| 411 | +<use xlink:href="#glyph-4-10" x="114.315513" y="19.734127"/> | |
| 412 | +<use xlink:href="#glyph-4-4" x="118.163723" y="19.734127"/> | |
| 413 | +<use xlink:href="#glyph-4-11" x="121.711904" y="19.734127"/> | |
| 414 | +<use xlink:href="#glyph-4-12" x="125.488368" y="19.734127"/> | |
| 415 | +<use xlink:href="#glyph-4-9" x="127.842951" y="19.734127"/> | |
| 416 | +<use xlink:href="#glyph-4-4" x="129.643131" y="19.734127"/> | |
| 417 | +<use xlink:href="#glyph-4-13" x="133.191311" y="19.734127"/> | |
| 418 | +</g> | |
| 419 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 420 | +<use xlink:href="#glyph-4-14" x="136.837327" y="19.734127"/> | |
| 421 | +<use xlink:href="#glyph-4-8" x="138.950582" y="19.734127"/> | |
| 422 | +<use xlink:href="#glyph-4-5" x="141.996538" y="19.734127"/> | |
| 423 | +<use xlink:href="#glyph-4-15" x="145.114241" y="19.734127"/> | |
| 424 | +<use xlink:href="#glyph-4-2" x="148.890705" y="19.734127"/> | |
| 425 | +<use xlink:href="#glyph-4-16" x="152.438886" y="19.734127"/> | |
| 426 | +<use xlink:href="#glyph-4-17" x="157.982918" y="19.734127"/> | |
| 427 | +<use xlink:href="#glyph-4-12" x="161.498486" y="19.734127"/> | |
| 428 | +<use xlink:href="#glyph-4-9" x="163.853069" y="19.734127"/> | |
| 429 | +<use xlink:href="#glyph-4-18" x="165.653249" y="19.734127"/> | |
| 430 | +<use xlink:href="#glyph-4-1" x="169.501459" y="19.734127"/> | |
| 431 | +<use xlink:href="#glyph-4-4" x="173.251834" y="19.734127"/> | |
| 432 | +<use xlink:href="#glyph-4-19" x="176.800014" y="19.734127"/> | |
| 433 | +</g> | |
| 434 | +</svg> | |
added
dist/assets/fig/56e90b7290c04a55.svg
+645 −0
@@ -0,0 +1,645 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="156.922pt" viewBox="0 0 314.242 156.922"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.71875 -4.734375 L 2.03125 -4.734375 L 0.296875 -3.671875 L 0.625 -3.125 L 1.9375 -3.921875 L 1.9375 0 L 2.71875 0 Z M 2.71875 -4.734375 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.34375 0.09375 1.59375 -0.15625 1.59375 -0.484375 C 1.59375 -0.8125 1.34375 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 2.359375 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 L 1.640625 -2.125 L 2.375 -2.125 C 3.640625 -2.125 4.609375 -2.671875 4.609375 -4 C 4.609375 -5.21875 3.75 -5.796875 2.359375 -5.796875 Z M 2.34375 -2.75 L 1.640625 -2.75 L 1.640625 -5.171875 L 2.359375 -5.171875 C 3.21875 -5.171875 3.765625 -4.859375 3.765625 -4 C 3.765625 -3.015625 3.1875 -2.75 2.34375 -2.75 Z M 2.34375 -2.75 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.328125 0.609375 -6.03125 C 0.609375 -5.734375 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.703125 -5.734375 1.703125 -6.03125 C 1.703125 -6.328125 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.859375 -4.53125 C 2.28125 -4.53125 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.109375 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.59375 -3.828125 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.515625 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 1.90625 -7.109375 C 1.078125 -5.9375 0.34375 -4.9375 0.34375 -2.9375 C 0.34375 -0.953125 1.078125 0.046875 1.90625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.75 1.625 -5.65625 2.390625 -6.765625 Z M 1.90625 -7.109375 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.125 -4.296875 2.734375 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.171875 3.4375 -0.609375 L 3.5 0 L 4.1875 0 L 4.1875 -6.21875 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 4.0625 -4.4375 L 3.28125 -4.4375 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.703125 -0.5 1.5 -0.734375 1.5 -1.34375 L 1.5 -4.4375 L 0.71875 -4.4375 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.59375 0.09375 3 -0.15625 3.34375 -0.6875 L 3.390625 0 L 4.0625 0 Z M 4.0625 -4.4375 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.8125 -4.53125 C 2.296875 -4.53125 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 1.796875 L 1.546875 1.703125 L 1.546875 -0.40625 C 1.828125 -0.0625 2.234375 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.453125 -0.875 4.453125 -2.21875 C 4.453125 -3.609375 3.984375 -4.53125 2.8125 -4.53125 Z M 2.515625 -0.53125 C 2.125 -0.53125 1.78125 -0.71875 1.546875 -1.0625 L 1.546875 -3.234375 C 1.78125 -3.578125 2.140625 -3.921875 2.609375 -3.921875 C 3.28125 -3.921875 3.609375 -3.375 3.609375 -2.21875 C 3.609375 -1.0625 3.234375 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.796875 -4.53125 C 2.265625 -4.53125 1.84375 -4.28125 1.546875 -3.875 L 1.546875 -6.296875 L 0.765625 -6.21875 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.78125 0.09375 4.453125 -0.828125 4.453125 -2.21875 C 4.453125 -3.703125 3.796875 -4.53125 2.796875 -4.53125 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.78125 -0.75 1.546875 -1.109375 L 1.546875 -3.234375 C 1.78125 -3.578125 2.09375 -3.921875 2.578125 -3.921875 C 3.203125 -3.921875 3.609375 -3.484375 3.609375 -2.21875 C 3.609375 -1.015625 3.171875 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 2.40625 -4.53125 C 1.203125 -4.53125 0.484375 -3.59375 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.5625 2.453125 -0.5625 C 1.75 -0.5625 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.453125 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.359375 -4.390625 2.9375 -4.53125 2.40625 -4.53125 Z M 2.40625 -4.53125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.46875 -4.53125 C 1.203125 -4.53125 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.71875 -4.53125 2.46875 -4.53125 Z M 2.46875 -3.90625 C 3.1875 -3.90625 3.59375 -3.375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.375 1.71875 -3.90625 2.46875 -3.90625 Z M 2.46875 -3.90625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 2 -4.53125 C 1.078125 -4.53125 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.03125 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.453125 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.25 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.453125 -2.8125 1.203125 -2.96875 1.203125 -3.34375 C 1.203125 -3.6875 1.515625 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.171875 -3.53125 L 3.5 -4.03125 C 3.078125 -4.34375 2.625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 4.046875 -4.4375 L 3.25 -4.4375 L 2.09375 -0.5625 L 0.90625 -4.4375 L 0.078125 -4.4375 L 1.578125 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.1875 L 0.515625 1.796875 C 1.734375 1.65625 2.265625 0.96875 2.578125 0.03125 Z M 4.046875 -4.4375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 0.828125 -7.109375 L 0.34375 -6.765625 C 1.09375 -5.65625 1.578125 -4.75 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.34375 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.9375 1.640625 -5.9375 0.828125 -7.109375 Z M 0.828125 -7.109375 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 3.390625 -3.0625 C 3.953125 -3.171875 4.484375 -3.609375 4.484375 -4.328125 C 4.484375 -5.34375 3.640625 -5.796875 2.203125 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 2.4375 0 C 3.78125 0 4.734375 -0.421875 4.734375 -1.640625 C 4.734375 -2.625 4.0625 -2.9375 3.390625 -3.0625 Z M 2.296875 -5.15625 C 3.15625 -5.15625 3.671875 -4.984375 3.671875 -4.265625 C 3.671875 -3.65625 3.15625 -3.34375 2.515625 -3.34375 L 1.640625 -3.34375 L 1.640625 -5.15625 Z M 2.4375 -0.640625 L 1.640625 -0.640625 L 1.640625 -2.71875 L 2.59375 -2.71875 C 3.28125 -2.71875 3.890625 -2.46875 3.890625 -1.640625 C 3.890625 -0.8125 3.28125 -0.640625 2.4375 -0.640625 Z M 2.4375 -0.640625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 2.703125 -4.53125 C 2.15625 -4.53125 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.78125 2.609375 -3.78125 C 2.765625 -3.78125 2.859375 -3.75 3 -3.71875 L 3.140625 -4.484375 C 3 -4.515625 2.84375 -4.53125 2.703125 -4.53125 Z M 2.703125 -4.53125 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 1.875 -4.828125 C 1.140625 -4.828125 0.59375 -4.515625 0.125 -3.9375 L 0.625 -3.53125 C 1.03125 -4.015625 1.390625 -4.1875 1.859375 -4.1875 C 2.40625 -4.1875 2.8125 -3.84375 2.8125 -3.3125 C 2.8125 -2.640625 2.546875 -2.265625 0.25 -0.609375 L 0.25 0 L 3.609375 0 L 3.703125 -0.640625 L 1.25 -0.640625 C 3.40625 -2.03125 3.625 -2.578125 3.625 -3.34375 C 3.625 -4.1875 2.9375 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 3.96875 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 4.046875 0 L 4.046875 -0.640625 L 1.640625 -0.640625 L 1.640625 -2.625 L 3.59375 -2.625 L 3.59375 -3.265625 L 1.640625 -3.265625 L 1.640625 -5.15625 L 3.890625 -5.15625 Z M 3.96875 -5.796875 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 3.515625 -4.4375 L 3.46875 -3.9375 C 3.15625 -4.265625 2.765625 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.6875 0.09375 3.125 -0.15625 3.40625 -0.59375 L 3.40625 1.703125 L 4.1875 1.796875 L 4.1875 -4.4375 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 2.34375 -6.03125 L 3.40625 -5.328125 L 3.734375 -5.703125 L 2.59375 -6.65625 L 2.078125 -6.65625 L 0.953125 -5.703125 L 1.28125 -5.328125 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 4.046875 -4.4375 L 3.234375 -4.4375 L 2.078125 -0.6875 L 0.921875 -4.4375 L 0.078125 -4.4375 L 1.609375 0 L 2.546875 0 Z M 4.046875 -4.4375 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 3.359375 -6.09375 L 3.015625 -6.734375 L 1.34375 -5.78125 L 1.578125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 2.3125 -6.296875 C 1.25 -6.296875 0.796875 -5.765625 0.796875 -5.015625 L 0.796875 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.796875 -3.828125 L 0.796875 0 L 1.5625 0 L 1.5625 -3.828125 L 3.265625 -3.828125 L 3.265625 0 L 4.03125 0 L 4.03125 -4.4375 L 1.5625 -4.4375 L 1.5625 -5.015625 C 1.5625 -5.4375 1.71875 -5.671875 2.34375 -5.671875 C 2.6875 -5.671875 3 -5.59375 3.28125 -5.46875 L 3.546875 -6 C 3.1875 -6.1875 2.8125 -6.296875 2.3125 -6.296875 Z M 2.3125 -6.296875 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.59375 -0.296875 1.59375 -0.484375 C 1.59375 -0.8125 1.34375 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 5.21875 -4.53125 C 4.625 -4.53125 4.21875 -4.21875 3.90625 -3.734375 C 3.734375 -4.234375 3.328125 -4.53125 2.78125 -4.53125 C 2.203125 -4.53125 1.796875 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.59375 -3.921875 C 2.921875 -3.921875 3.21875 -3.734375 3.21875 -3.0625 L 3.21875 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.03125 -3.921875 C 5.359375 -3.921875 5.65625 -3.734375 5.65625 -3.0625 L 5.65625 0 L 6.421875 0 L 6.421875 -3.171875 C 6.421875 -4.015625 5.9375 -4.53125 5.21875 -4.53125 Z M 5.21875 -4.53125 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-0-30"> | |
| 96 | +<path d="M 1.875 -4.828125 C 1.25 -4.828125 0.71875 -4.609375 0.25 -4.15625 L 0.640625 -3.703125 C 1.03125 -4.046875 1.359375 -4.203125 1.8125 -4.203125 C 2.40625 -4.203125 2.78125 -3.890625 2.78125 -3.359375 C 2.78125 -2.75 2.3125 -2.40625 1.71875 -2.40625 L 1.4375 -2.40625 L 1.34375 -1.8125 L 1.765625 -1.8125 C 2.515625 -1.8125 2.921875 -1.515625 2.921875 -0.765625 C 2.921875 -0.078125 2.484375 0.359375 1.75 0.359375 C 1.296875 0.359375 0.921875 0.1875 0.546875 -0.203125 L 0.078125 0.234375 C 0.515625 0.734375 1.09375 0.984375 1.78125 0.984375 C 2.96875 0.984375 3.71875 0.25 3.71875 -0.734375 C 3.71875 -1.625 3.1875 -2.0625 2.4375 -2.15625 C 3.078125 -2.296875 3.546875 -2.75 3.546875 -3.421875 C 3.546875 -4.15625 2.953125 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-0-31"> | |
| 99 | +<path d="M 2.046875 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 2.234375 0 C 3.484375 0 4.953125 -0.5625 4.953125 -2.921875 C 4.953125 -5.328125 3.53125 -5.796875 2.046875 -5.796875 Z M 2.234375 -5.15625 C 3.15625 -5.15625 4.109375 -4.890625 4.109375 -2.921875 C 4.109375 -1.015625 3.1875 -0.625 2.28125 -0.625 L 1.640625 -0.625 L 1.640625 -5.15625 Z M 2.234375 -5.15625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-0-32"> | |
| 102 | +<path d="M 1 -4.15625 C 0.671875 -4.15625 0.421875 -3.90625 0.421875 -3.578125 C 0.421875 -3.25 0.671875 -3 1 -3 C 1.34375 -3 1.59375 -3.25 1.59375 -3.578125 C 1.59375 -3.90625 1.34375 -4.15625 1 -4.15625 Z M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.34375 0.09375 1.59375 -0.15625 1.59375 -0.484375 C 1.59375 -0.8125 1.34375 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-0-33"> | |
| 105 | +<path d="M 4.171875 -0.9375 L 3.46875 -0.9375 L 3.46875 -2.46875 L 2.8125 -2.46875 L 2.734375 -0.9375 L 0.984375 -0.9375 L 2.5 -4.5625 L 1.859375 -4.828125 L 0.171875 -0.875 L 0.171875 -0.34375 L 2.734375 -0.34375 L 2.734375 0.90625 L 3.46875 0.90625 L 3.46875 -0.34375 L 4.171875 -0.34375 Z M 4.171875 -0.9375 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-0-34"> | |
| 108 | +<path d="M 2.859375 -5.890625 C 1.5625 -5.890625 0.46875 -4.859375 0.46875 -2.90625 C 0.46875 -0.953125 1.484375 0.09375 2.890625 0.09375 C 3.671875 0.09375 4.21875 -0.21875 4.546875 -0.546875 L 4.140625 -1.046875 C 3.8125 -0.8125 3.453125 -0.578125 2.90625 -0.578125 C 2.015625 -0.578125 1.3125 -1.234375 1.3125 -2.90625 C 1.3125 -4.65625 2.046875 -5.234375 2.921875 -5.234375 C 3.328125 -5.234375 3.671875 -5.109375 4.03125 -4.8125 L 4.46875 -5.328125 C 4.015625 -5.6875 3.59375 -5.890625 2.859375 -5.890625 Z M 2.859375 -5.890625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-0-35"> | |
| 111 | +<path d="M 4.140625 -4.921875 C 3.625 -4.6875 3.21875 -4.5 2.125 -4.53125 C 1.140625 -4.53125 0.40625 -3.890625 0.40625 -2.984375 C 0.40625 -2.40625 0.640625 -2.03125 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.265625 0.671875 -0.96875 C 0.671875 -0.53125 1.03125 -0.140625 1.8125 -0.140625 L 2.515625 -0.140625 C 3.0625 -0.140625 3.40625 0.078125 3.40625 0.5 C 3.40625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.140625 1.1875 0.90625 0.953125 0.90625 0.453125 L 0.203125 0.453125 C 0.203125 1.34375 0.671875 1.796875 2.109375 1.796875 C 3.484375 1.796875 4.1875 1.296875 4.1875 0.453125 C 4.1875 -0.265625 3.578125 -0.78125 2.671875 -0.78125 L 1.96875 -0.78125 C 1.515625 -0.78125 1.390625 -0.9375 1.390625 -1.140625 C 1.390625 -1.296875 1.484375 -1.46875 1.609375 -1.5625 C 1.796875 -1.5 1.96875 -1.46875 2.171875 -1.46875 C 3.234375 -1.46875 3.859375 -2.09375 3.859375 -2.96875 C 3.859375 -3.484375 3.59375 -3.859375 3.078125 -4.09375 C 3.578125 -4.09375 4 -4.109375 4.375 -4.234375 Z M 2.125 -3.96875 C 2.75 -3.96875 3.0625 -3.640625 3.0625 -3 C 3.0625 -2.359375 2.734375 -1.984375 2.140625 -1.984375 C 1.53125 -1.984375 1.203125 -2.390625 1.203125 -2.984375 C 1.203125 -3.5625 1.515625 -3.96875 2.125 -3.96875 Z M 2.125 -3.96875 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-0-36"> | |
| 114 | +<path d="M 3.59375 -4.734375 L 0.546875 -4.734375 L 0.546875 -1.90625 L 1.15625 -1.90625 C 1.390625 -2.03125 1.65625 -2.09375 1.953125 -2.09375 C 2.53125 -2.09375 2.96875 -1.796875 2.96875 -0.9375 C 2.96875 -0.109375 2.53125 0.359375 1.828125 0.359375 C 1.34375 0.359375 0.96875 0.171875 0.625 -0.171875 L 0.171875 0.265625 C 0.609375 0.71875 1.125 0.984375 1.828125 0.984375 C 3 0.984375 3.78125 0.203125 3.78125 -0.921875 C 3.78125 -2.03125 3.140625 -2.703125 2.1875 -2.703125 C 1.875 -2.703125 1.59375 -2.640625 1.28125 -2.484375 L 1.28125 -4.140625 L 3.484375 -4.140625 Z M 3.59375 -4.734375 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-0-37"> | |
| 117 | +<path d="M 2.625 -3.703125 C 2.0625 -3.703125 1.609375 -3.46875 1.234375 -2.9375 C 1.265625 -4.234375 1.765625 -5.09375 2.625 -5.09375 C 2.953125 -5.09375 3.234375 -5.015625 3.5 -4.84375 L 3.8125 -5.359375 C 3.484375 -5.578125 3.109375 -5.703125 2.625 -5.703125 C 1.265625 -5.703125 0.46875 -4.484375 0.46875 -2.640625 C 0.46875 -1.03125 0.984375 0.09375 2.390625 0.09375 C 3.390625 0.09375 4.203125 -0.6875 4.203125 -1.90625 C 4.203125 -3.109375 3.453125 -3.703125 2.625 -3.703125 Z M 2.390625 -0.515625 C 1.609375 -0.515625 1.28125 -1.078125 1.25 -2.296875 C 1.53125 -2.765625 1.953125 -3.078125 2.484375 -3.078125 C 3.03125 -3.078125 3.421875 -2.78125 3.421875 -1.890625 C 3.421875 -1.0625 3.0625 -0.515625 2.390625 -0.515625 Z M 2.390625 -0.515625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-0-38"> | |
| 120 | +<path d="M 3.921875 0 L 4.765625 0 L 2.921875 -5.796875 L 1.90625 -5.796875 L 0.046875 0 L 0.859375 0 L 1.296875 -1.453125 L 3.484375 -1.453125 Z M 1.484375 -2.09375 L 2.390625 -5.125 L 3.296875 -2.09375 Z M 1.484375 -2.09375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-0-39"> | |
| 123 | +<path d="M 4.265625 -5.796875 L 0.125 -5.796875 L 0.125 -5.109375 L 1.78125 -5.109375 L 1.78125 0 L 2.578125 0 L 2.578125 -5.109375 L 4.171875 -5.109375 Z M 4.265625 -5.796875 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-0-40"> | |
| 126 | +<path d="M 2.296875 -5.6875 C 2.53125 -5.6875 2.796875 -5.640625 3.078125 -5.515625 L 3.328125 -6.078125 C 2.96875 -6.234375 2.6875 -6.296875 2.265625 -6.296875 C 1.359375 -6.296875 0.875 -5.78125 0.875 -5.03125 L 0.875 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.875 -3.828125 L 0.875 0 L 1.640625 0 L 1.640625 -3.828125 L 2.640625 -3.828125 L 2.71875 -4.4375 L 1.640625 -4.4375 L 1.640625 -5.046875 C 1.640625 -5.46875 1.8125 -5.6875 2.296875 -5.6875 Z M 2.296875 -5.6875 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-0"> | |
| 129 | +<path d="M 8.65625 -2.234375 C 8.65625 -2.28125 8.625 -2.328125 8.578125 -2.34375 C 7.609375 -2.65625 6.875 -3.484375 6.6875 -4.484375 C 6.6875 -4.546875 6.640625 -4.578125 6.59375 -4.578125 L 6.421875 -4.578125 C 6.375 -4.578125 6.3125 -4.53125 6.3125 -4.453125 C 6.46875 -3.625 6.9375 -2.90625 7.609375 -2.421875 L 0.703125 -2.421875 C 0.578125 -2.421875 0.515625 -2.328125 0.515625 -2.234375 C 0.515625 -2.140625 0.578125 -2.046875 0.703125 -2.046875 L 7.609375 -2.046875 C 6.9375 -1.5625 6.46875 -0.84375 6.3125 -0.015625 C 6.3125 0.0625 6.375 0.109375 6.421875 0.109375 L 6.59375 0.109375 C 6.640625 0.109375 6.6875 0.078125 6.6875 0.015625 C 6.875 -0.984375 7.609375 -1.8125 8.578125 -2.125 C 8.625 -2.140625 8.65625 -2.1875 8.65625 -2.234375 Z M 8.65625 -2.234375 "/> | |
| 130 | +</g> | |
| 131 | +</g> | |
| 132 | +<clipPath id="clip-0"> | |
| 133 | +<path clip-rule="nonzero" d="M 0 0.148438 L 313.484375 0.148438 L 313.484375 28 L 0 28 Z M 0 0.148438 "/> | |
| 134 | +</clipPath> | |
| 135 | +<clipPath id="clip-1"> | |
| 136 | +<path clip-rule="nonzero" d="M 0 25 L 313.484375 25 L 313.484375 54 L 0 54 Z M 0 25 "/> | |
| 137 | +</clipPath> | |
| 138 | +<clipPath id="clip-2"> | |
| 139 | +<path clip-rule="nonzero" d="M 0 51 L 313.484375 51 L 313.484375 80 L 0 80 Z M 0 51 "/> | |
| 140 | +</clipPath> | |
| 141 | +<clipPath id="clip-3"> | |
| 142 | +<path clip-rule="nonzero" d="M 0 77 L 313.484375 77 L 313.484375 106 L 0 106 Z M 0 77 "/> | |
| 143 | +</clipPath> | |
| 144 | +<clipPath id="clip-4"> | |
| 145 | +<path clip-rule="nonzero" d="M 0 103 L 313.484375 103 L 313.484375 132 L 0 132 Z M 0 103 "/> | |
| 146 | +</clipPath> | |
| 147 | +<clipPath id="clip-5"> | |
| 148 | +<path clip-rule="nonzero" d="M 0 128 L 313.484375 128 L 313.484375 156.695312 L 0 156.695312 Z M 0 128 "/> | |
| 149 | +</clipPath> | |
| 150 | +</defs> | |
| 151 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 5.316406 L 9.140625 5.316406 C 6.945312 5.316406 5.167969 7.097656 5.167969 9.292969 L 5.167969 18.308594 C 5.167969 20.503906 6.945312 22.285156 9.140625 22.285156 L 304.34375 22.285156 C 306.539062 22.285156 308.320312 20.503906 308.320312 18.308594 L 308.320312 9.292969 C 308.320312 7.097656 306.539062 5.316406 304.34375 5.316406 Z M 304.34375 5.316406 "/> | |
| 152 | +<g clip-path="url(#clip-0)"> | |
| 153 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 8.50603 L -147.958326 8.50603 C -150.158934 8.50603 -151.940565 6.720483 -151.940565 4.519875 L -151.940565 -4.517497 C -151.940565 -6.718105 -150.158934 -8.503651 -147.958326 -8.503651 L 147.956874 -8.503651 C 150.157482 -8.503651 151.943028 -6.718105 151.943028 -4.517497 L 151.943028 4.519875 C 151.943028 6.720483 150.157482 8.50603 147.956874 8.50603 Z M 147.956874 8.50603 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 154 | +</g> | |
| 155 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 156 | +<use xlink:href="#glyph-0-0" x="50.450306" y="16.445591"/> | |
| 157 | +<use xlink:href="#glyph-0-1" x="54.00694" y="16.445591"/> | |
| 158 | +</g> | |
| 159 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 160 | +<use xlink:href="#glyph-0-2" x="58.824792" y="16.445591"/> | |
| 161 | +</g> | |
| 162 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 163 | +<use xlink:href="#glyph-0-3" x="63.625828" y="16.445591"/> | |
| 164 | +</g> | |
| 165 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 166 | +<use xlink:href="#glyph-0-4" x="66.055774" y="16.445591"/> | |
| 167 | +<use xlink:href="#glyph-0-5" x="70.587749" y="16.445591"/> | |
| 168 | +<use xlink:href="#glyph-0-6" x="72.90839" y="16.445591"/> | |
| 169 | +<use xlink:href="#glyph-0-7" x="77.776691" y="16.445591"/> | |
| 170 | +</g> | |
| 171 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 172 | +<use xlink:href="#glyph-0-8" x="80.6859" y="16.445591"/> | |
| 173 | +</g> | |
| 174 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 175 | +<use xlink:href="#glyph-0-9" x="88.068228" y="16.445591"/> | |
| 176 | +<use xlink:href="#glyph-0-10" x="90.792458" y="16.445591"/> | |
| 177 | +<use xlink:href="#glyph-0-11" x="95.753248" y="16.445591"/> | |
| 178 | +</g> | |
| 179 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 180 | +<use xlink:href="#glyph-0-12" x="103.387819" y="16.445591"/> | |
| 181 | +<use xlink:href="#glyph-0-11" x="108.314976" y="16.445591"/> | |
| 182 | +<use xlink:href="#glyph-0-13" x="113.149644" y="16.445591"/> | |
| 183 | +<use xlink:href="#glyph-0-3" x="118.076802" y="16.445591"/> | |
| 184 | +<use xlink:href="#glyph-0-5" x="120.548789" y="16.445591"/> | |
| 185 | +<use xlink:href="#glyph-0-14" x="122.869429" y="16.445591"/> | |
| 186 | +</g> | |
| 187 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 188 | +<use xlink:href="#glyph-0-15" x="129.688413" y="16.445591"/> | |
| 189 | +<use xlink:href="#glyph-0-11" x="134.598754" y="16.445591"/> | |
| 190 | +</g> | |
| 191 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 192 | +<use xlink:href="#glyph-0-10" x="142.233326" y="16.445591"/> | |
| 193 | +<use xlink:href="#glyph-0-11" x="147.194116" y="16.445591"/> | |
| 194 | +</g> | |
| 195 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 196 | +<use xlink:href="#glyph-0-16" x="154.837095" y="16.445591"/> | |
| 197 | +</g> | |
| 198 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 199 | +<use xlink:href="#glyph-0-17" x="158.721646" y="16.445591"/> | |
| 200 | +<use xlink:href="#glyph-0-6" x="162.85844" y="16.445591"/> | |
| 201 | +<use xlink:href="#glyph-0-10" x="167.726741" y="16.445591"/> | |
| 202 | +<use xlink:href="#glyph-0-5" x="172.68753" y="16.445591"/> | |
| 203 | +<use xlink:href="#glyph-0-14" x="175.008171" y="16.445591"/> | |
| 204 | +<use xlink:href="#glyph-0-18" x="179.027252" y="16.445591"/> | |
| 205 | +</g> | |
| 206 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 207 | +<use xlink:href="#glyph-1-0" x="184.551212" y="16.445591"/> | |
| 208 | +</g> | |
| 209 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 210 | +<use xlink:href="#glyph-0-19" x="196.544605" y="16.445591"/> | |
| 211 | +<use xlink:href="#glyph-0-11" x="201.656741" y="16.445591"/> | |
| 212 | +<use xlink:href="#glyph-0-20" x="206.491409" y="16.445591"/> | |
| 213 | +</g> | |
| 214 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 215 | +<use xlink:href="#glyph-0-8" x="209.543556" y="16.445591"/> | |
| 216 | +</g> | |
| 217 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 218 | +<use xlink:href="#glyph-0-4" x="214.075532" y="16.445591"/> | |
| 219 | +<use xlink:href="#glyph-0-11" x="218.607507" y="16.445591"/> | |
| 220 | +</g> | |
| 221 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 222 | +<use xlink:href="#glyph-0-10" x="226.250487" y="16.445591"/> | |
| 223 | +<use xlink:href="#glyph-0-11" x="231.211277" y="16.445591"/> | |
| 224 | +</g> | |
| 225 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 226 | +<use xlink:href="#glyph-0-16" x="238.845848" y="16.445591"/> | |
| 227 | +</g> | |
| 228 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 229 | +<use xlink:href="#glyph-0-17" x="242.730399" y="16.445591"/> | |
| 230 | +<use xlink:href="#glyph-0-6" x="246.867193" y="16.445591"/> | |
| 231 | +<use xlink:href="#glyph-0-10" x="251.735494" y="16.445591"/> | |
| 232 | +<use xlink:href="#glyph-0-5" x="256.696283" y="16.445591"/> | |
| 233 | +<use xlink:href="#glyph-0-14" x="259.016924" y="16.445591"/> | |
| 234 | +</g> | |
| 235 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 31.167969 L 9.140625 31.167969 C 6.945312 31.167969 5.167969 32.945312 5.167969 35.140625 L 5.167969 44.160156 C 5.167969 46.355469 6.945312 48.132812 9.140625 48.132812 L 304.34375 48.132812 C 306.539062 48.132812 308.320312 46.355469 308.320312 44.160156 L 308.320312 35.140625 C 308.320312 32.945312 306.539062 31.167969 304.34375 31.167969 Z M 304.34375 31.167969 "/> | |
| 236 | +<g clip-path="url(#clip-1)"> | |
| 237 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -17.407891 L -147.958326 -17.407891 C -150.158934 -17.407891 -151.940565 -19.189522 -151.940565 -21.39013 L -151.940565 -30.431417 C -151.940565 -32.632025 -150.158934 -34.413656 -147.958326 -34.413656 L 147.956874 -34.413656 C 150.157482 -34.413656 151.943028 -32.632025 151.943028 -30.431417 L 151.943028 -21.39013 C 151.943028 -19.189522 150.157482 -17.407891 147.956874 -17.407891 Z M 147.956874 -17.407891 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 238 | +</g> | |
| 239 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 240 | +<use xlink:href="#glyph-0-21" x="40.576124" y="42.29424"/> | |
| 241 | +<use xlink:href="#glyph-0-1" x="44.746551" y="42.29424"/> | |
| 242 | +</g> | |
| 243 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 244 | +<use xlink:href="#glyph-0-22" x="49.564403" y="42.29424"/> | |
| 245 | +</g> | |
| 246 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 247 | +<use xlink:href="#glyph-0-6" x="53.978665" y="42.29424"/> | |
| 248 | +<use xlink:href="#glyph-0-23" x="58.846965" y="42.29424"/> | |
| 249 | +<use xlink:href="#glyph-0-11" x="63.807755" y="42.29424"/> | |
| 250 | +<use xlink:href="#glyph-0-24" x="68.642423" y="42.29424"/> | |
| 251 | +<use xlink:href="#glyph-0-7" x="73.216439" y="42.29424"/> | |
| 252 | +</g> | |
| 253 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 254 | +<use xlink:href="#glyph-0-8" x="76.125648" y="42.29424"/> | |
| 255 | +</g> | |
| 256 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 257 | +<use xlink:href="#glyph-0-10" x="83.507976" y="42.29424"/> | |
| 258 | +<use xlink:href="#glyph-0-11" x="88.468766" y="42.29424"/> | |
| 259 | +</g> | |
| 260 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 261 | +<use xlink:href="#glyph-0-16" x="96.103338" y="42.29424"/> | |
| 262 | +</g> | |
| 263 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 264 | +<use xlink:href="#glyph-0-17" x="99.987888" y="42.29424"/> | |
| 265 | +<use xlink:href="#glyph-0-6" x="104.124682" y="42.29424"/> | |
| 266 | +<use xlink:href="#glyph-0-10" x="108.992983" y="42.29424"/> | |
| 267 | +<use xlink:href="#glyph-0-5" x="113.953773" y="42.29424"/> | |
| 268 | +<use xlink:href="#glyph-0-14" x="116.274413" y="42.29424"/> | |
| 269 | +</g> | |
| 270 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 271 | +<use xlink:href="#glyph-0-9" x="123.093397" y="42.29424"/> | |
| 272 | +<use xlink:href="#glyph-0-25" x="125.817628" y="42.29424"/> | |
| 273 | +</g> | |
| 274 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 275 | +<use xlink:href="#glyph-0-26" x="129.920789" y="42.29424"/> | |
| 276 | +<use xlink:href="#glyph-0-20" x="134.494806" y="42.29424"/> | |
| 277 | +<use xlink:href="#glyph-0-5" x="137.715115" y="42.29424"/> | |
| 278 | +<use xlink:href="#glyph-0-27" x="140.035756" y="42.29424"/> | |
| 279 | +<use xlink:href="#glyph-0-14" x="144.8452" y="42.29424"/> | |
| 280 | +</g> | |
| 281 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 282 | +<use xlink:href="#glyph-0-4" x="148.822239" y="42.29424"/> | |
| 283 | +<use xlink:href="#glyph-0-7" x="153.354215" y="42.29424"/> | |
| 284 | +<use xlink:href="#glyph-0-5" x="156.389546" y="42.29424"/> | |
| 285 | +<use xlink:href="#glyph-0-15" x="158.710187" y="42.29424"/> | |
| 286 | +<use xlink:href="#glyph-0-6" x="163.620528" y="42.29424"/> | |
| 287 | +<use xlink:href="#glyph-0-16" x="168.488828" y="42.29424"/> | |
| 288 | +<use xlink:href="#glyph-0-28" x="172.41542" y="42.29424"/> | |
| 289 | +</g> | |
| 290 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 291 | +<use xlink:href="#glyph-0-10" x="177.233271" y="42.29424"/> | |
| 292 | +<use xlink:href="#glyph-0-8" x="182.194061" y="42.29424"/> | |
| 293 | +<use xlink:href="#glyph-0-29" x="186.768077" y="42.29424"/> | |
| 294 | +<use xlink:href="#glyph-0-4" x="193.914978" y="42.29424"/> | |
| 295 | +<use xlink:href="#glyph-0-6" x="198.446954" y="42.29424"/> | |
| 296 | +<use xlink:href="#glyph-0-10" x="203.315254" y="42.29424"/> | |
| 297 | +<use xlink:href="#glyph-0-8" x="208.276044" y="42.29424"/> | |
| 298 | +</g> | |
| 299 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 300 | +<use xlink:href="#glyph-0-10" x="215.658372" y="42.29424"/> | |
| 301 | +<use xlink:href="#glyph-0-8" x="220.619162" y="42.29424"/> | |
| 302 | +</g> | |
| 303 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 304 | +<use xlink:href="#glyph-0-10" x="227.993082" y="42.29424"/> | |
| 305 | +<use xlink:href="#glyph-0-15" x="232.953871" y="42.29424"/> | |
| 306 | +<use xlink:href="#glyph-0-14" x="237.864213" y="42.29424"/> | |
| 307 | +</g> | |
| 308 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 309 | +<use xlink:href="#glyph-0-11" x="241.799212" y="42.29424"/> | |
| 310 | +<use xlink:href="#glyph-0-29" x="246.63388" y="42.29424"/> | |
| 311 | +<use xlink:href="#glyph-0-8" x="253.780781" y="42.29424"/> | |
| 312 | +<use xlink:href="#glyph-0-6" x="258.354797" y="42.29424"/> | |
| 313 | +<use xlink:href="#glyph-0-7" x="263.223097" y="42.29424"/> | |
| 314 | +<use xlink:href="#glyph-0-16" x="266.258428" y="42.29424"/> | |
| 315 | +<use xlink:href="#glyph-0-18" x="270.185019" y="42.29424"/> | |
| 316 | +</g> | |
| 317 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 57.015625 L 9.140625 57.015625 C 6.945312 57.015625 5.167969 58.796875 5.167969 60.992188 L 5.167969 70.007812 C 5.167969 72.203125 6.945312 73.984375 9.140625 73.984375 L 304.34375 73.984375 C 306.539062 73.984375 308.320312 72.203125 308.320312 70.007812 L 308.320312 60.992188 C 308.320312 58.796875 306.539062 57.015625 304.34375 57.015625 Z M 304.34375 57.015625 "/> | |
| 318 | +<g clip-path="url(#clip-2)"> | |
| 319 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -43.317895 L -147.958326 -43.317895 C -150.158934 -43.317895 -151.940565 -45.103442 -151.940565 -47.30405 L -151.940565 -56.341422 C -151.940565 -58.54203 -150.158934 -60.327577 -147.958326 -60.327577 L 147.956874 -60.327577 C 150.157482 -60.327577 151.943028 -58.54203 151.943028 -56.341422 L 151.943028 -47.30405 C 151.943028 -45.103442 150.157482 -43.317895 147.956874 -43.317895 Z M 147.956874 -43.317895 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 320 | +</g> | |
| 321 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 322 | +<use xlink:href="#glyph-0-30" x="20.696078" y="67.911447"/> | |
| 323 | +<use xlink:href="#glyph-0-1" x="24.79924" y="67.911447"/> | |
| 324 | +</g> | |
| 325 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 326 | +<use xlink:href="#glyph-0-31" x="29.617091" y="67.911447"/> | |
| 327 | +<use xlink:href="#glyph-0-26" x="35.03192" y="67.911447"/> | |
| 328 | +<use xlink:href="#glyph-0-14" x="39.605936" y="67.911447"/> | |
| 329 | +<use xlink:href="#glyph-0-5" x="43.625017" y="67.911447"/> | |
| 330 | +<use xlink:href="#glyph-0-16" x="45.945657" y="67.911447"/> | |
| 331 | +<use xlink:href="#glyph-0-5" x="49.872248" y="67.911447"/> | |
| 332 | +<use xlink:href="#glyph-0-15" x="52.192889" y="67.911447"/> | |
| 333 | +<use xlink:href="#glyph-0-6" x="57.10323" y="67.911447"/> | |
| 334 | +</g> | |
| 335 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 336 | +<use xlink:href="#glyph-0-10" x="64.779842" y="67.911447"/> | |
| 337 | +<use xlink:href="#glyph-0-11" x="69.740632" y="67.911447"/> | |
| 338 | +</g> | |
| 339 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 340 | +<use xlink:href="#glyph-0-16" x="77.375204" y="67.911447"/> | |
| 341 | +</g> | |
| 342 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 343 | +<use xlink:href="#glyph-0-17" x="81.259754" y="67.911447"/> | |
| 344 | +<use xlink:href="#glyph-0-6" x="85.396548" y="67.911447"/> | |
| 345 | +<use xlink:href="#glyph-0-10" x="90.264849" y="67.911447"/> | |
| 346 | +<use xlink:href="#glyph-0-5" x="95.225639" y="67.911447"/> | |
| 347 | +<use xlink:href="#glyph-0-14" x="97.546279" y="67.911447"/> | |
| 348 | +</g> | |
| 349 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 350 | +<use xlink:href="#glyph-0-32" x="104.365263" y="67.911447"/> | |
| 351 | +</g> | |
| 352 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 353 | +<use xlink:href="#glyph-0-14" x="109.191523" y="67.911447"/> | |
| 354 | +<use xlink:href="#glyph-0-3" x="113.210604" y="67.911447"/> | |
| 355 | +</g> | |
| 356 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 357 | +<use xlink:href="#glyph-0-4" x="115.64055" y="67.911447"/> | |
| 358 | +<use xlink:href="#glyph-0-16" x="120.172526" y="67.911447"/> | |
| 359 | +</g> | |
| 360 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 361 | +<use xlink:href="#glyph-0-16" x="124.015036" y="67.911447"/> | |
| 362 | +<use xlink:href="#glyph-0-8" x="127.941627" y="67.911447"/> | |
| 363 | +<use xlink:href="#glyph-0-29" x="132.515644" y="67.911447"/> | |
| 364 | +<use xlink:href="#glyph-0-8" x="139.662544" y="67.911447"/> | |
| 365 | +<use xlink:href="#glyph-0-6" x="144.23656" y="67.911447"/> | |
| 366 | +<use xlink:href="#glyph-0-7" x="149.104861" y="67.911447"/> | |
| 367 | +</g> | |
| 368 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 369 | +<use xlink:href="#glyph-0-28" x="152.173824" y="67.911447"/> | |
| 370 | +</g> | |
| 371 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 372 | +<use xlink:href="#glyph-0-14" x="156.991676" y="67.911447"/> | |
| 373 | +</g> | |
| 374 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 375 | +<use xlink:href="#glyph-0-15" x="160.884635" y="67.911447"/> | |
| 376 | +<use xlink:href="#glyph-0-6" x="165.794976" y="67.911447"/> | |
| 377 | +<use xlink:href="#glyph-0-14" x="170.663276" y="67.911447"/> | |
| 378 | +<use xlink:href="#glyph-0-5" x="174.682357" y="67.911447"/> | |
| 379 | +<use xlink:href="#glyph-0-3" x="177.002998" y="67.911447"/> | |
| 380 | +<use xlink:href="#glyph-0-5" x="179.474984" y="67.911447"/> | |
| 381 | +<use xlink:href="#glyph-0-4" x="181.795625" y="67.911447"/> | |
| 382 | +<use xlink:href="#glyph-0-7" x="186.327601" y="67.911447"/> | |
| 383 | +<use xlink:href="#glyph-0-5" x="189.362932" y="67.911447"/> | |
| 384 | +<use xlink:href="#glyph-0-15" x="191.683572" y="67.911447"/> | |
| 385 | +<use xlink:href="#glyph-0-6" x="196.593913" y="67.911447"/> | |
| 386 | +</g> | |
| 387 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 388 | +<use xlink:href="#glyph-0-15" x="204.262117" y="67.911447"/> | |
| 389 | +<use xlink:href="#glyph-0-11" x="209.172458" y="67.911447"/> | |
| 390 | +</g> | |
| 391 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 392 | +<use xlink:href="#glyph-0-12" x="216.80703" y="67.911447"/> | |
| 393 | +<use xlink:href="#glyph-0-3" x="221.734187" y="67.911447"/> | |
| 394 | +</g> | |
| 395 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 396 | +<use xlink:href="#glyph-0-4" x="224.164133" y="67.911447"/> | |
| 397 | +<use xlink:href="#glyph-0-5" x="228.696109" y="67.911447"/> | |
| 398 | +<use xlink:href="#glyph-0-6" x="231.01675" y="67.911447"/> | |
| 399 | +<use xlink:href="#glyph-0-7" x="235.88505" y="67.911447"/> | |
| 400 | +</g> | |
| 401 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 402 | +<use xlink:href="#glyph-0-8" x="238.794259" y="67.911447"/> | |
| 403 | +</g> | |
| 404 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 405 | +<use xlink:href="#glyph-0-10" x="246.176587" y="67.911447"/> | |
| 406 | +<use xlink:href="#glyph-0-5" x="251.137377" y="67.911447"/> | |
| 407 | +<use xlink:href="#glyph-0-16" x="253.458018" y="67.911447"/> | |
| 408 | +<use xlink:href="#glyph-0-14" x="257.384609" y="67.911447"/> | |
| 409 | +<use xlink:href="#glyph-0-5" x="261.403689" y="67.911447"/> | |
| 410 | +<use xlink:href="#glyph-0-12" x="263.72433" y="67.911447"/> | |
| 411 | +<use xlink:href="#glyph-0-3" x="268.651487" y="67.911447"/> | |
| 412 | +<use xlink:href="#glyph-0-5" x="271.123474" y="67.911447"/> | |
| 413 | +<use xlink:href="#glyph-0-6" x="273.444115" y="67.911447"/> | |
| 414 | +<use xlink:href="#glyph-0-4" x="278.312415" y="67.911447"/> | |
| 415 | +<use xlink:href="#glyph-0-5" x="282.844391" y="67.911447"/> | |
| 416 | +<use xlink:href="#glyph-0-20" x="285.165032" y="67.911447"/> | |
| 417 | +</g> | |
| 418 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 419 | +<use xlink:href="#glyph-0-8" x="288.217179" y="67.911447"/> | |
| 420 | +</g> | |
| 421 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 82.863281 L 9.140625 82.863281 C 6.945312 82.863281 5.167969 84.644531 5.167969 86.839844 L 5.167969 95.855469 C 5.167969 98.050781 6.945312 99.832031 9.140625 99.832031 L 304.34375 99.832031 C 306.539062 99.832031 308.320312 98.050781 308.320312 95.855469 L 308.320312 86.839844 C 308.320312 84.644531 306.539062 82.863281 304.34375 82.863281 Z M 304.34375 82.863281 "/> | |
| 422 | +<g clip-path="url(#clip-3)"> | |
| 423 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -69.2279 L -147.958326 -69.2279 C -150.158934 -69.2279 -151.940565 -71.013447 -151.940565 -73.214055 L -151.940565 -82.251427 C -151.940565 -84.452035 -150.158934 -86.237581 -147.958326 -86.237581 L 147.956874 -86.237581 C 150.157482 -86.237581 151.943028 -84.452035 151.943028 -82.251427 L 151.943028 -73.214055 C 151.943028 -71.013447 150.157482 -69.2279 147.956874 -69.2279 Z M 147.956874 -69.2279 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 424 | +</g> | |
| 425 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 426 | +<use xlink:href="#glyph-0-33" x="49.357941" y="93.759099"/> | |
| 427 | +</g> | |
| 428 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 429 | +<use xlink:href="#glyph-0-1" x="53.620857" y="93.759099"/> | |
| 430 | +</g> | |
| 431 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 432 | +<use xlink:href="#glyph-0-34" x="58.438709" y="93.759099"/> | |
| 433 | +</g> | |
| 434 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 435 | +<use xlink:href="#glyph-0-15" x="62.979093" y="93.759099"/> | |
| 436 | +<use xlink:href="#glyph-0-6" x="67.889434" y="93.759099"/> | |
| 437 | +<use xlink:href="#glyph-0-16" x="72.757734" y="93.759099"/> | |
| 438 | +<use xlink:href="#glyph-0-8" x="76.684326" y="93.759099"/> | |
| 439 | +<use xlink:href="#glyph-0-5" x="81.258342" y="93.759099"/> | |
| 440 | +<use xlink:href="#glyph-0-3" x="83.578983" y="93.759099"/> | |
| 441 | +</g> | |
| 442 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 443 | +<use xlink:href="#glyph-0-10" x="88.859281" y="93.759099"/> | |
| 444 | +<use xlink:href="#glyph-0-8" x="93.820071" y="93.759099"/> | |
| 445 | +</g> | |
| 446 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 447 | +<use xlink:href="#glyph-0-10" x="101.193991" y="93.759099"/> | |
| 448 | +<use xlink:href="#glyph-0-5" x="106.15478" y="93.759099"/> | |
| 449 | +<use xlink:href="#glyph-0-16" x="108.475421" y="93.759099"/> | |
| 450 | +<use xlink:href="#glyph-0-14" x="112.402012" y="93.759099"/> | |
| 451 | +<use xlink:href="#glyph-0-5" x="116.421093" y="93.759099"/> | |
| 452 | +<use xlink:href="#glyph-0-12" x="118.741733" y="93.759099"/> | |
| 453 | +<use xlink:href="#glyph-0-3" x="123.668891" y="93.759099"/> | |
| 454 | +<use xlink:href="#glyph-0-5" x="126.140878" y="93.759099"/> | |
| 455 | +<use xlink:href="#glyph-0-6" x="128.461518" y="93.759099"/> | |
| 456 | +<use xlink:href="#glyph-0-8" x="133.329819" y="93.759099"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-0-32" x="140.703739" y="93.759099"/> | |
| 460 | +</g> | |
| 461 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 462 | +<use xlink:href="#glyph-0-4" x="145.529998" y="93.759099"/> | |
| 463 | +<use xlink:href="#glyph-0-11" x="150.061974" y="93.759099"/> | |
| 464 | +<use xlink:href="#glyph-0-10" x="154.896642" y="93.759099"/> | |
| 465 | +<use xlink:href="#glyph-0-5" x="159.857432" y="93.759099"/> | |
| 466 | +<use xlink:href="#glyph-0-8" x="162.178073" y="93.759099"/> | |
| 467 | +<use xlink:href="#glyph-0-6" x="166.752089" y="93.759099"/> | |
| 468 | +<use xlink:href="#glyph-0-14" x="171.62039" y="93.759099"/> | |
| 469 | +</g> | |
| 470 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 471 | +<use xlink:href="#glyph-0-8" x="175.513348" y="93.759099"/> | |
| 472 | +</g> | |
| 473 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 474 | +<use xlink:href="#glyph-0-28" x="180.003284" y="93.759099"/> | |
| 475 | +</g> | |
| 476 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 477 | +<use xlink:href="#glyph-0-12" x="184.821135" y="93.759099"/> | |
| 478 | +<use xlink:href="#glyph-0-20" x="189.748293" y="93.759099"/> | |
| 479 | +</g> | |
| 480 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 481 | +<use xlink:href="#glyph-0-8" x="192.80044" y="93.759099"/> | |
| 482 | +<use xlink:href="#glyph-0-11" x="197.374456" y="93.759099"/> | |
| 483 | +<use xlink:href="#glyph-0-25" x="202.209124" y="93.759099"/> | |
| 484 | +</g> | |
| 485 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 486 | +<use xlink:href="#glyph-0-8" x="206.312286" y="93.759099"/> | |
| 487 | +</g> | |
| 488 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 489 | +<use xlink:href="#glyph-0-28" x="210.802221" y="93.759099"/> | |
| 490 | +</g> | |
| 491 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 492 | +<use xlink:href="#glyph-0-7" x="215.620073" y="93.759099"/> | |
| 493 | +</g> | |
| 494 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 495 | +<use xlink:href="#glyph-0-26" x="218.529282" y="93.759099"/> | |
| 496 | +<use xlink:href="#glyph-0-29" x="223.103298" y="93.759099"/> | |
| 497 | +<use xlink:href="#glyph-0-15" x="230.250199" y="93.759099"/> | |
| 498 | +<use xlink:href="#glyph-0-5" x="235.16054" y="93.759099"/> | |
| 499 | +<use xlink:href="#glyph-0-35" x="237.48118" y="93.759099"/> | |
| 500 | +<use xlink:href="#glyph-0-6" x="241.853402" y="93.759099"/> | |
| 501 | +<use xlink:href="#glyph-0-4" x="246.721703" y="93.759099"/> | |
| 502 | +<use xlink:href="#glyph-0-35" x="251.253678" y="93.759099"/> | |
| 503 | +<use xlink:href="#glyph-0-8" x="255.6259" y="93.759099"/> | |
| 504 | +<use xlink:href="#glyph-0-16" x="260.199916" y="93.759099"/> | |
| 505 | +</g> | |
| 506 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 108.710938 L 9.140625 108.710938 C 6.945312 108.710938 5.167969 110.492188 5.167969 112.6875 L 5.167969 121.703125 C 5.167969 123.898438 6.945312 125.679688 9.140625 125.679688 L 304.34375 125.679688 C 306.539062 125.679688 308.320312 123.898438 308.320312 121.703125 L 308.320312 112.6875 C 308.320312 110.492188 306.539062 108.710938 304.34375 108.710938 Z M 304.34375 108.710938 "/> | |
| 507 | +<g clip-path="url(#clip-4)"> | |
| 508 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -95.137905 L -147.958326 -95.137905 C -150.158934 -95.137905 -151.940565 -96.923452 -151.940565 -99.12406 L -151.940565 -108.161432 C -151.940565 -110.36204 -150.158934 -112.147586 -147.958326 -112.147586 L 147.956874 -112.147586 C 150.157482 -112.147586 151.943028 -110.36204 151.943028 -108.161432 L 151.943028 -99.12406 C 151.943028 -96.923452 150.157482 -95.137905 147.956874 -95.137905 Z M 147.956874 -95.137905 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 509 | +</g> | |
| 510 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 511 | +<use xlink:href="#glyph-0-36" x="84.363502" y="119.607748"/> | |
| 512 | +<use xlink:href="#glyph-0-1" x="88.48348" y="119.607748"/> | |
| 513 | +</g> | |
| 514 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 515 | +<use xlink:href="#glyph-0-31" x="93.301332" y="119.607748"/> | |
| 516 | +<use xlink:href="#glyph-0-26" x="98.71616" y="119.607748"/> | |
| 517 | +<use xlink:href="#glyph-0-14" x="103.290177" y="119.607748"/> | |
| 518 | +<use xlink:href="#glyph-0-5" x="107.309257" y="119.607748"/> | |
| 519 | +<use xlink:href="#glyph-0-16" x="109.629898" y="119.607748"/> | |
| 520 | +<use xlink:href="#glyph-0-5" x="113.556489" y="119.607748"/> | |
| 521 | +<use xlink:href="#glyph-0-15" x="115.87713" y="119.607748"/> | |
| 522 | +<use xlink:href="#glyph-0-6" x="120.787471" y="119.607748"/> | |
| 523 | +</g> | |
| 524 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 525 | +<use xlink:href="#glyph-0-16" x="128.464083" y="119.607748"/> | |
| 526 | +<use xlink:href="#glyph-0-11" x="132.390674" y="119.607748"/> | |
| 527 | +<use xlink:href="#glyph-0-20" x="137.225342" y="119.607748"/> | |
| 528 | +</g> | |
| 529 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 530 | +<use xlink:href="#glyph-0-14" x="143.245555" y="119.607748"/> | |
| 531 | +</g> | |
| 532 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 533 | +<use xlink:href="#glyph-0-11" x="147.180554" y="119.607748"/> | |
| 534 | +<use xlink:href="#glyph-0-3" x="152.015222" y="119.607748"/> | |
| 535 | +<use xlink:href="#glyph-0-12" x="154.487209" y="119.607748"/> | |
| 536 | +</g> | |
| 537 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 538 | +<use xlink:href="#glyph-0-4" x="159.372326" y="119.607748"/> | |
| 539 | +<use xlink:href="#glyph-0-13" x="163.904302" y="119.607748"/> | |
| 540 | +<use xlink:href="#glyph-0-5" x="168.831459" y="119.607748"/> | |
| 541 | +<use xlink:href="#glyph-0-3" x="171.1521" y="119.607748"/> | |
| 542 | +<use xlink:href="#glyph-0-5" x="173.624086" y="119.607748"/> | |
| 543 | +<use xlink:href="#glyph-0-7" x="175.944727" y="119.607748"/> | |
| 544 | +</g> | |
| 545 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 546 | +<use xlink:href="#glyph-0-26" x="178.853936" y="119.607748"/> | |
| 547 | +</g> | |
| 548 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 549 | +<use xlink:href="#glyph-0-8" x="186.227856" y="119.607748"/> | |
| 550 | +<use xlink:href="#glyph-0-7" x="190.801872" y="119.607748"/> | |
| 551 | +</g> | |
| 552 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 553 | +<use xlink:href="#glyph-0-16" x="196.645514" y="119.607748"/> | |
| 554 | +<use xlink:href="#glyph-0-4" x="200.572106" y="119.607748"/> | |
| 555 | +<use xlink:href="#glyph-0-6" x="205.104081" y="119.607748"/> | |
| 556 | +<use xlink:href="#glyph-0-14" x="209.972382" y="119.607748"/> | |
| 557 | +<use xlink:href="#glyph-0-7" x="213.991463" y="119.607748"/> | |
| 558 | +<use xlink:href="#glyph-0-5" x="217.026793" y="119.607748"/> | |
| 559 | +<use xlink:href="#glyph-0-15" x="219.347434" y="119.607748"/> | |
| 560 | +<use xlink:href="#glyph-0-6" x="224.257775" y="119.607748"/> | |
| 561 | +</g> | |
| 562 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 134.5625 L 9.140625 134.5625 C 6.945312 134.5625 5.167969 136.339844 5.167969 138.535156 L 5.167969 147.550781 C 5.167969 149.75 6.945312 151.527344 9.140625 151.527344 L 304.34375 151.527344 C 306.539062 151.527344 308.320312 149.75 308.320312 147.550781 L 308.320312 138.535156 C 308.320312 136.339844 306.539062 134.5625 304.34375 134.5625 Z M 304.34375 134.5625 "/> | |
| 563 | +<g clip-path="url(#clip-5)"> | |
| 564 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -121.051825 L -147.958326 -121.051825 C -150.158934 -121.051825 -151.940565 -122.833456 -151.940565 -125.034064 L -151.940565 -134.071436 C -151.940565 -136.27596 -150.158934 -138.057591 -147.958326 -138.057591 L 147.956874 -138.057591 C 150.157482 -138.057591 151.943028 -136.27596 151.943028 -134.071436 L 151.943028 -125.034064 C 151.943028 -122.833456 150.157482 -121.051825 147.956874 -121.051825 Z M 147.956874 -121.051825 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 565 | +</g> | |
| 566 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 567 | +<use xlink:href="#glyph-0-37" x="69.26592" y="145.455399"/> | |
| 568 | +</g> | |
| 569 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 570 | +<use xlink:href="#glyph-0-1" x="73.764263" y="145.455399"/> | |
| 571 | +</g> | |
| 572 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 573 | +<use xlink:href="#glyph-0-38" x="78.582115" y="145.455399"/> | |
| 574 | +<use xlink:href="#glyph-0-12" x="83.399967" y="145.455399"/> | |
| 575 | +<use xlink:href="#glyph-0-12" x="88.327124" y="145.455399"/> | |
| 576 | +<use xlink:href="#glyph-0-8" x="93.254282" y="145.455399"/> | |
| 577 | +<use xlink:href="#glyph-0-3" x="97.828298" y="145.455399"/> | |
| 578 | +</g> | |
| 579 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 580 | +<use xlink:href="#glyph-0-12" x="103.108596" y="145.455399"/> | |
| 581 | +<use xlink:href="#glyph-0-15" x="108.035754" y="145.455399"/> | |
| 582 | +<use xlink:href="#glyph-0-16" x="112.946095" y="145.455399"/> | |
| 583 | +</g> | |
| 584 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 585 | +<use xlink:href="#glyph-0-16" x="116.788605" y="145.455399"/> | |
| 586 | +<use xlink:href="#glyph-0-5" x="120.715196" y="145.455399"/> | |
| 587 | +<use xlink:href="#glyph-0-13" x="123.035837" y="145.455399"/> | |
| 588 | +<use xlink:href="#glyph-0-3" x="127.962994" y="145.455399"/> | |
| 589 | +</g> | |
| 590 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 591 | +<use xlink:href="#glyph-0-8" x="130.39294" y="145.455399"/> | |
| 592 | +</g> | |
| 593 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 594 | +<use xlink:href="#glyph-0-4" x="137.76686" y="145.455399"/> | |
| 595 | +<use xlink:href="#glyph-0-11" x="142.298836" y="145.455399"/> | |
| 596 | +</g> | |
| 597 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 598 | +<use xlink:href="#glyph-0-39" x="149.933407" y="145.455399"/> | |
| 599 | +</g> | |
| 600 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 601 | +<use xlink:href="#glyph-0-20" x="154.028161" y="145.455399"/> | |
| 602 | +<use xlink:href="#glyph-0-5" x="157.24847" y="145.455399"/> | |
| 603 | +<use xlink:href="#glyph-0-13" x="159.569111" y="145.455399"/> | |
| 604 | +<use xlink:href="#glyph-0-11" x="164.496268" y="145.455399"/> | |
| 605 | +<use xlink:href="#glyph-0-6" x="169.330936" y="145.455399"/> | |
| 606 | +<use xlink:href="#glyph-0-4" x="174.199237" y="145.455399"/> | |
| 607 | +</g> | |
| 608 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 609 | +<use xlink:href="#glyph-0-3" x="178.689172" y="145.455399"/> | |
| 610 | +</g> | |
| 611 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 612 | +<use xlink:href="#glyph-0-10" x="183.961062" y="145.455399"/> | |
| 613 | +<use xlink:href="#glyph-0-8" x="188.921852" y="145.455399"/> | |
| 614 | +<use xlink:href="#glyph-0-16" x="193.495868" y="145.455399"/> | |
| 615 | +</g> | |
| 616 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 617 | +<use xlink:href="#glyph-0-12" x="200.230771" y="145.455399"/> | |
| 618 | +<use xlink:href="#glyph-0-20" x="205.157928" y="145.455399"/> | |
| 619 | +</g> | |
| 620 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 621 | +<use xlink:href="#glyph-0-15" x="208.210075" y="145.455399"/> | |
| 622 | +<use xlink:href="#glyph-0-40" x="213.120416" y="145.455399"/> | |
| 623 | +</g> | |
| 624 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 625 | +<use xlink:href="#glyph-0-8" x="215.853055" y="145.455399"/> | |
| 626 | +<use xlink:href="#glyph-0-16" x="220.427071" y="145.455399"/> | |
| 627 | +</g> | |
| 628 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 629 | +<use xlink:href="#glyph-0-16" x="224.269581" y="145.455399"/> | |
| 630 | +<use xlink:href="#glyph-0-5" x="228.196173" y="145.455399"/> | |
| 631 | +<use xlink:href="#glyph-0-15" x="230.516813" y="145.455399"/> | |
| 632 | +<use xlink:href="#glyph-0-6" x="235.427154" y="145.455399"/> | |
| 633 | +<use xlink:href="#glyph-0-16" x="240.295455" y="145.455399"/> | |
| 634 | +</g> | |
| 635 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -8.703351 L -0.000726254 -16.409394 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 636 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.5493 3.112233 C -2.083335 1.244458 -1.045682 0.363431 -0.000197199 -0.000726254 C -1.045682 -0.364884 -2.083335 -1.24591 -2.5493 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 30.570509)"/> | |
| 637 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -34.613356 L -0.000726254 -42.319399 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 638 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550165 3.112233 C -2.0842 1.244458 -1.046547 0.363431 -0.00106243 -0.000726254 C -1.046547 -0.364884 -2.0842 -1.24591 -2.550165 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 56.419029)"/> | |
| 639 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -60.52336 L -0.000726254 -68.233319 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 640 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.55104 3.112233 C -2.085075 1.244458 -1.047422 0.363431 -0.00193766 -0.000726254 C -1.047422 -0.364884 -2.085075 -1.24591 -2.55104 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 82.267558)"/> | |
| 641 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -86.437281 L -0.000726254 -94.143324 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 642 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551906 3.112233 C -2.085941 1.244458 -1.044372 0.363431 0.00111278 -0.000726254 C -1.044372 -0.364884 -2.085941 -1.24591 -2.551906 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 108.116077)"/> | |
| 643 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -112.347286 L -0.000726254 -120.053329 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.801968)"/> | |
| 644 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548855 3.112233 C -2.08289 1.244458 -1.045237 0.363431 0.000247552 -0.000726254 C -1.045237 -0.364884 -2.08289 -1.24591 -2.548855 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 133.964597)"/> | |
| 645 | +</svg> | |
added
dist/assets/fig/5a4237b600ba2c13.svg
+684 −0
@@ -0,0 +1,684 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="371.907pt" height="157.049pt" viewBox="0 0 371.907 157.049"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.703125 -4.71875 L 2.03125 -4.71875 L 0.296875 -3.65625 L 0.625 -3.109375 L 1.9375 -3.90625 L 1.9375 0 L 2.703125 0 Z M 2.703125 -4.71875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.796875 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.328125 0.09375 1.578125 -0.15625 1.578125 -0.484375 C 1.578125 -0.796875 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 2.359375 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 1.640625 0 L 1.640625 -2.125 L 2.359375 -2.125 C 3.640625 -2.125 4.59375 -2.65625 4.59375 -3.984375 C 4.59375 -5.203125 3.75 -5.765625 2.359375 -5.765625 Z M 2.328125 -2.75 L 1.640625 -2.75 L 1.640625 -5.15625 L 2.34375 -5.15625 C 3.203125 -5.15625 3.75 -4.84375 3.75 -3.984375 C 3.75 -3 3.1875 -2.75 2.328125 -2.75 Z M 2.328125 -2.75 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.96875 3.234375 -4.515625 2.171875 -4.515625 C 1.6875 -4.515625 1.203125 -4.40625 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.796875 1.703125 -3.890625 2.03125 -3.890625 C 2.640625 -3.890625 2.953125 -3.65625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.921875 0.09375 L 4.09375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.125 -4.90625 C 3.609375 -4.671875 3.203125 -4.484375 2.109375 -4.515625 C 1.140625 -4.515625 0.40625 -3.875 0.40625 -2.96875 C 0.40625 -2.40625 0.640625 -2.015625 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.25 0.671875 -0.96875 C 0.671875 -0.53125 1.015625 -0.140625 1.8125 -0.140625 L 2.5 -0.140625 C 3.0625 -0.140625 3.390625 0.078125 3.390625 0.5 C 3.390625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.125 1.1875 0.90625 0.953125 0.90625 0.4375 L 0.203125 0.4375 C 0.203125 1.34375 0.65625 1.78125 2.109375 1.78125 C 3.46875 1.78125 4.171875 1.296875 4.171875 0.4375 C 4.171875 -0.265625 3.5625 -0.78125 2.65625 -0.78125 L 1.953125 -0.78125 C 1.5 -0.78125 1.375 -0.9375 1.375 -1.140625 C 1.375 -1.296875 1.46875 -1.453125 1.59375 -1.546875 C 1.78125 -1.484375 1.953125 -1.46875 2.15625 -1.46875 C 3.21875 -1.46875 3.84375 -2.09375 3.84375 -2.96875 C 3.84375 -3.46875 3.578125 -3.84375 3.0625 -4.078125 C 3.5625 -4.078125 3.984375 -4.09375 4.359375 -4.21875 Z M 2.109375 -3.96875 C 2.734375 -3.96875 3.0625 -3.625 3.0625 -2.984375 C 3.0625 -2.34375 2.734375 -1.96875 2.125 -1.96875 C 1.53125 -1.96875 1.203125 -2.390625 1.203125 -2.96875 C 1.203125 -3.546875 1.515625 -3.96875 2.109375 -3.96875 Z M 2.109375 -3.96875 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.609375 -0.75 1.609375 -1.1875 L 1.609375 -3.8125 L 2.578125 -3.8125 L 2.65625 -4.40625 L 1.609375 -4.40625 L 1.609375 -5.5 L 0.84375 -5.40625 L 0.84375 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.84375 -3.8125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.40625 0.09375 2.734375 0 3.015625 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 1.140625 -6.53125 C 0.828125 -6.53125 0.609375 -6.3125 0.609375 -6 C 0.609375 -5.71875 0.828125 -5.484375 1.140625 -5.484375 C 1.46875 -5.484375 1.6875 -5.71875 1.6875 -6 C 1.6875 -6.3125 1.46875 -6.53125 1.140625 -6.53125 Z M 1.546875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.40625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.734375 -4.171875 1.5 -3.515625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -2.515625 C 1.71875 -3.359375 2.046875 -3.765625 2.59375 -3.765625 C 2.75 -3.765625 2.84375 -3.75 2.984375 -3.703125 L 3.125 -4.46875 C 2.984375 -4.5 2.828125 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 1.875 -4.8125 C 1.125 -4.8125 0.59375 -4.5 0.125 -3.921875 L 0.625 -3.515625 C 1.015625 -4 1.390625 -4.171875 1.84375 -4.171875 C 2.40625 -4.171875 2.796875 -3.828125 2.796875 -3.296875 C 2.796875 -2.625 2.53125 -2.25 0.25 -0.609375 L 0.25 0 L 3.59375 0 L 3.6875 -0.640625 L 1.234375 -0.640625 C 3.40625 -2.015625 3.609375 -2.5625 3.609375 -3.328125 C 3.609375 -4.171875 2.9375 -4.8125 1.875 -4.8125 Z M 1.875 -4.8125 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 1.640625 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 3.90625 0 L 4 -0.6875 L 1.640625 -0.6875 Z M 1.640625 -5.765625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 3.40625 -6.28125 L 3.40625 -3.96875 C 3.109375 -4.28125 2.734375 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.53125 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.171875 3.421875 -0.609375 L 3.5 0 L 4.171875 0 L 4.171875 -6.1875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.03125 1.3125 -2.203125 C 1.3125 -3.34375 1.71875 -3.90625 2.375 -3.90625 C 2.8125 -3.90625 3.125 -3.671875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.84375 -4.515625 C 2.265625 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -3.125 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.09375 -3.90625 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.125 0 L 4.125 -3.171875 C 4.125 -4 3.65625 -4.515625 2.84375 -4.515625 Z M 2.84375 -4.515625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4 0.40625 -3.296875 C 0.40625 -2.6875 0.78125 -2.265625 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.375 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.765625 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.078125 -2.375 2.15625 -2.609375 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.671875 1.515625 -3.90625 2.015625 -3.90625 C 2.421875 -3.90625 2.765625 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.328125 2.609375 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.203125 -4.203125 3.890625 -3.71875 C 3.71875 -4.21875 3.3125 -4.515625 2.765625 -4.515625 C 2.1875 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -3.125 C 1.828125 -3.59375 2.109375 -3.90625 2.578125 -3.90625 C 2.921875 -3.90625 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.96875 0 L 3.96875 -3.125 C 4.265625 -3.59375 4.53125 -3.90625 5.015625 -3.90625 C 5.34375 -3.90625 5.625 -3.71875 5.625 -3.0625 L 5.625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.921875 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.5625 0.484375 -2.203125 C 0.484375 -0.796875 1.1875 0.09375 2.453125 0.09375 C 3.6875 0.09375 4.40625 -0.84375 4.40625 -2.21875 C 4.40625 -3.609375 3.703125 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.890625 C 3.1875 -3.890625 3.578125 -3.359375 3.578125 -2.21875 C 3.578125 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.703125 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.890625 2.453125 -3.890625 Z M 2.453125 -3.890625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 1.875 -4.8125 C 1.234375 -4.8125 0.71875 -4.59375 0.25 -4.140625 L 0.640625 -3.6875 C 1.015625 -4.03125 1.359375 -4.1875 1.796875 -4.1875 C 2.390625 -4.1875 2.765625 -3.875 2.765625 -3.34375 C 2.765625 -2.734375 2.296875 -2.40625 1.71875 -2.40625 L 1.4375 -2.40625 L 1.34375 -1.8125 L 1.765625 -1.8125 C 2.5 -1.8125 2.90625 -1.5 2.90625 -0.765625 C 2.90625 -0.078125 2.484375 0.359375 1.734375 0.359375 C 1.296875 0.359375 0.90625 0.1875 0.546875 -0.203125 L 0.078125 0.21875 C 0.515625 0.734375 1.09375 0.984375 1.765625 0.984375 C 2.96875 0.984375 3.703125 0.25 3.703125 -0.734375 C 3.703125 -1.609375 3.1875 -2.0625 2.421875 -2.140625 C 3.0625 -2.28125 3.53125 -2.75 3.53125 -3.40625 C 3.53125 -4.140625 2.953125 -4.8125 1.875 -4.8125 Z M 1.875 -4.8125 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 4.25 -5.765625 L 0.125 -5.765625 L 0.125 -5.09375 L 1.765625 -5.09375 L 1.765625 0 L 2.5625 0 L 2.5625 -5.09375 L 4.15625 -5.09375 Z M 4.25 -5.765625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 2.78125 -4.515625 C 2.25 -4.515625 1.84375 -4.265625 1.546875 -3.859375 L 1.546875 -6.28125 L 0.765625 -6.1875 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.765625 0.09375 4.4375 -0.828125 4.4375 -2.21875 C 4.4375 -3.6875 3.78125 -4.515625 2.78125 -4.515625 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.765625 -0.75 1.546875 -1.109375 L 1.546875 -3.21875 C 1.765625 -3.5625 2.078125 -3.90625 2.578125 -3.90625 C 3.1875 -3.90625 3.59375 -3.46875 3.59375 -2.21875 C 3.59375 -1 3.15625 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.078125 0.046875 2.25 -0.046875 L 2.046875 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.484375 -0.65625 1.484375 -0.890625 L 1.484375 -6.28125 L 0.71875 -6.1875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 3.421875 -5.75 L 1.765625 -6.703125 L 1.421875 -6.0625 L 3.1875 -5.34375 Z M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 4.15625 -0.921875 L 3.453125 -0.921875 L 3.453125 -2.453125 L 2.796875 -2.453125 L 2.734375 -0.921875 L 0.984375 -0.921875 L 2.5 -4.546875 L 1.84375 -4.8125 L 0.171875 -0.875 L 0.171875 -0.328125 L 2.71875 -0.328125 L 2.71875 0.890625 L 3.453125 0.890625 L 3.453125 -0.328125 L 4.15625 -0.328125 Z M 4.15625 -0.921875 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 2.265625 -5.875 C 1.203125 -5.875 0.4375 -5.25 0.4375 -4.359375 C 0.4375 -3.46875 1.03125 -3.046875 2.15625 -2.703125 C 3.125 -2.390625 3.40625 -2.140625 3.40625 -1.578125 C 3.40625 -0.890625 2.84375 -0.546875 2.15625 -0.546875 C 1.53125 -0.546875 1.078125 -0.78125 0.640625 -1.125 L 0.203125 -0.640625 C 0.6875 -0.171875 1.34375 0.09375 2.171875 0.09375 C 3.46875 0.09375 4.234375 -0.609375 4.234375 -1.609375 C 4.234375 -2.71875 3.4375 -3.078125 2.515625 -3.359375 C 1.484375 -3.671875 1.25 -3.90625 1.25 -4.390625 C 1.25 -4.953125 1.71875 -5.21875 2.296875 -5.21875 C 2.765625 -5.21875 3.171875 -5.0625 3.609375 -4.71875 L 4.046875 -5.203125 C 3.5625 -5.640625 3.0625 -5.875 2.265625 -5.875 Z M 2.265625 -5.875 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 1 -6.3125 C 0.703125 -6.3125 0.453125 -6.078125 0.453125 -5.78125 C 0.453125 -5.609375 0.53125 -5.46875 0.671875 -5.359375 L 0.328125 -4.109375 L 0.84375 -4.109375 L 1.40625 -5.296875 C 1.5 -5.53125 1.546875 -5.640625 1.546875 -5.78125 C 1.546875 -6.078125 1.296875 -6.3125 1 -6.3125 Z M 1 -6.3125 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 3.34375 -6.0625 L 3 -6.703125 L 1.328125 -5.75 L 1.5625 -5.34375 Z M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 4.03125 -4.40625 L 3.21875 -4.40625 L 2.078125 -0.6875 L 0.921875 -4.40625 L 0.078125 -4.40625 L 1.609375 0 L 2.53125 0 Z M 4.03125 -4.40625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 4.046875 -4.40625 L 3.28125 -4.40625 L 3.28125 -1.265625 C 3 -0.828125 2.640625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.484375 -0.734375 1.484375 -1.328125 L 1.484375 -4.40625 L 0.71875 -4.40625 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 2.984375 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.40625 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 3.578125 -4.71875 L 0.546875 -4.71875 L 0.546875 -1.90625 L 1.140625 -1.90625 C 1.390625 -2.015625 1.65625 -2.09375 1.9375 -2.09375 C 2.515625 -2.09375 2.96875 -1.796875 2.96875 -0.921875 C 2.96875 -0.109375 2.515625 0.359375 1.8125 0.359375 C 1.328125 0.359375 0.96875 0.171875 0.625 -0.171875 L 0.171875 0.265625 C 0.609375 0.71875 1.109375 0.984375 1.828125 0.984375 C 2.984375 0.984375 3.765625 0.203125 3.765625 -0.90625 C 3.765625 -2.03125 3.125 -2.6875 2.171875 -2.6875 C 1.875 -2.6875 1.578125 -2.625 1.28125 -2.46875 L 1.28125 -4.125 L 3.46875 -4.125 Z M 3.578125 -4.71875 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 1.640625 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 1.640625 0 Z M 1.640625 -5.765625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 2.3125 -6.28125 C 1.234375 -6.28125 0.78125 -5.734375 0.78125 -4.984375 L 0.78125 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.78125 -3.8125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.8125 L 3.25 -3.8125 L 3.25 0 L 4.015625 0 L 4.015625 -4.40625 L 1.5625 -4.40625 L 1.5625 -5 C 1.5625 -5.421875 1.71875 -5.65625 2.34375 -5.65625 C 2.6875 -5.65625 2.984375 -5.578125 3.265625 -5.4375 L 3.53125 -5.984375 C 3.171875 -6.15625 2.8125 -6.28125 2.3125 -6.28125 Z M 2.3125 -6.28125 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-0-30"> | |
| 96 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.75 -0.390625 L 3.40625 -0.890625 C 3.0625 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.734375 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.328125 1.734375 -3.875 2.4375 -3.875 C 2.8125 -3.875 3.078125 -3.765625 3.390625 -3.546875 L 3.75 -4.03125 C 3.34375 -4.375 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-0-31"> | |
| 99 | +<path d="M 2.609375 -3.6875 C 2.0625 -3.6875 1.59375 -3.453125 1.234375 -2.9375 C 1.265625 -4.21875 1.765625 -5.078125 2.625 -5.078125 C 2.9375 -5.078125 3.21875 -4.984375 3.5 -4.828125 L 3.796875 -5.34375 C 3.46875 -5.5625 3.09375 -5.6875 2.625 -5.6875 C 1.25 -5.6875 0.453125 -4.46875 0.453125 -2.625 C 0.453125 -1.015625 0.984375 0.09375 2.375 0.09375 C 3.375 0.09375 4.1875 -0.671875 4.1875 -1.90625 C 4.1875 -3.09375 3.4375 -3.6875 2.609375 -3.6875 Z M 2.375 -0.515625 C 1.59375 -0.515625 1.265625 -1.078125 1.234375 -2.296875 C 1.53125 -2.75 1.953125 -3.078125 2.484375 -3.078125 C 3.015625 -3.078125 3.40625 -2.765625 3.40625 -1.875 C 3.40625 -1.0625 3.046875 -0.515625 2.375 -0.515625 Z M 2.375 -0.515625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-0-32"> | |
| 102 | +<path d="M 2.046875 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 2.21875 0 C 3.46875 0 4.9375 -0.5625 4.9375 -2.921875 C 4.9375 -5.3125 3.515625 -5.765625 2.046875 -5.765625 Z M 2.21875 -5.140625 C 3.140625 -5.140625 4.09375 -4.859375 4.09375 -2.921875 C 4.09375 -1.015625 3.1875 -0.625 2.28125 -0.625 L 1.640625 -0.625 L 1.640625 -5.140625 Z M 2.21875 -5.140625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-0-33"> | |
| 105 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.8125 -4.265625 1.484375 -3.8125 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.828125 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.59375 3.96875 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.5625 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-0-34"> | |
| 108 | +<path d="M 3.46875 -4.71875 L 0.125 -4.71875 L 0.125 -4.09375 L 2.6875 -4.09375 L 0.71875 0.765625 L 1.421875 1 L 3.46875 -4.140625 Z M 3.46875 -4.71875 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-0-35"> | |
| 111 | +<path d="M 3.90625 0 L 4.75 0 L 2.90625 -5.765625 L 1.90625 -5.765625 L 0.046875 0 L 0.859375 0 L 1.296875 -1.453125 L 3.46875 -1.453125 Z M 1.484375 -2.09375 L 2.390625 -5.109375 L 3.28125 -2.09375 Z M 1.484375 -2.09375 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-0-36"> | |
| 114 | +<path d="M 4.03125 -4.40625 L 3.234375 -4.40625 L 2.078125 -0.5625 L 0.90625 -4.40625 L 0.078125 -4.40625 L 1.5625 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.1875 L 0.515625 1.78125 C 1.734375 1.65625 2.25 0.96875 2.5625 0.03125 Z M 4.03125 -4.40625 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-0-37"> | |
| 117 | +<path d="M 2.84375 -4.515625 C 2.296875 -4.515625 1.859375 -4.234375 1.546875 -3.796875 L 1.546875 -6.265625 L 0.765625 -6.1875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.078125 -3.90625 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.125 0 L 4.125 -3.171875 C 4.125 -4 3.65625 -4.515625 2.84375 -4.515625 Z M 2.84375 -4.515625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-0-38"> | |
| 120 | +<path d="M 3.0625 -3 C 3.6875 -3.328125 4.015625 -3.703125 4.015625 -4.265625 C 4.015625 -5.21875 3.15625 -5.6875 2.3125 -5.6875 C 1.453125 -5.6875 0.609375 -5.1875 0.609375 -4.25 C 0.609375 -3.671875 0.875 -3.234375 1.484375 -2.9375 C 0.796875 -2.640625 0.375 -2.203125 0.375 -1.484375 C 0.375 -0.5625 1.140625 0.09375 2.296875 0.09375 C 3.4375 0.09375 4.234375 -0.5625 4.234375 -1.5 C 4.234375 -2.203125 3.828125 -2.703125 3.0625 -3 Z M 2.3125 -5.109375 C 2.921875 -5.109375 3.265625 -4.765625 3.265625 -4.25 C 3.265625 -3.765625 3.046875 -3.46875 2.546875 -3.1875 L 2.40625 -3.234375 C 1.765625 -3.453125 1.359375 -3.65625 1.359375 -4.234375 C 1.359375 -4.796875 1.734375 -5.109375 2.3125 -5.109375 Z M 2.296875 -0.515625 C 1.609375 -0.515625 1.1875 -0.875 1.1875 -1.484375 C 1.1875 -2.09375 1.453125 -2.484375 2 -2.75 L 2.21875 -2.671875 C 3.109375 -2.359375 3.4375 -2.09375 3.4375 -1.484375 C 3.4375 -0.90625 3 -0.515625 2.296875 -0.515625 Z M 2.296875 -0.515625 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-0-39"> | |
| 123 | +<path d="M 2.171875 -4.8125 C 1.203125 -4.8125 0.375 -4.125 0.375 -2.96875 C 0.375 -1.875 1.0625 -1.1875 1.921875 -1.1875 C 2.5 -1.1875 2.9375 -1.46875 3.1875 -1.828125 C 3.109375 -0.6875 2.21875 0.03125 0.828125 0.421875 L 1 1 C 3.0625 0.40625 3.984375 -0.453125 3.984375 -2.640625 C 3.984375 -3.9375 3.375 -4.8125 2.171875 -4.8125 Z M 2.078125 -1.78125 C 1.546875 -1.78125 1.15625 -2.15625 1.15625 -2.953125 C 1.15625 -3.75 1.53125 -4.203125 2.1875 -4.203125 C 2.875 -4.203125 3.21875 -3.703125 3.203125 -2.46875 C 2.921875 -2.046875 2.5625 -1.78125 2.078125 -1.78125 Z M 2.078125 -1.78125 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-0-40"> | |
| 126 | +<path d="M 3.90625 0 L 4.859375 0 L 3.296875 -2.59375 C 4.125 -2.84375 4.546875 -3.328125 4.546875 -4.140625 C 4.546875 -5.21875 3.796875 -5.765625 2.359375 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 1.640625 0 L 1.640625 -2.453125 L 2.53125 -2.453125 Z M 1.640625 -3.0625 L 1.640625 -5.15625 L 2.34375 -5.15625 C 3.296875 -5.15625 3.703125 -4.859375 3.703125 -4.140625 C 3.703125 -3.359375 3.234375 -3.0625 2.4375 -3.0625 Z M 1.640625 -3.0625 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-0-41"> | |
| 129 | +<path d="M 2.53125 -4.8125 C 1.265625 -4.8125 0.328125 -3.921875 0.328125 -2.359375 C 0.328125 -0.796875 1.265625 0.09375 2.53125 0.09375 C 3.8125 0.09375 4.734375 -0.796875 4.734375 -2.359375 C 4.734375 -3.921875 3.8125 -4.8125 2.53125 -4.8125 Z M 2.53125 -4.203125 C 3.265625 -4.203125 3.96875 -3.703125 3.96875 -2.359375 C 3.96875 -1.015625 3.265625 -0.515625 2.53125 -0.515625 C 1.8125 -0.515625 1.109375 -1.015625 1.109375 -2.359375 C 1.109375 -3.703125 1.8125 -4.203125 2.53125 -4.203125 Z M 2.53125 -4.203125 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-0-42"> | |
| 132 | +<path d="M 4.0625 0 L 4.859375 0 L 4.859375 -5.765625 L 4.0625 -5.765625 L 4.0625 -3.359375 L 1.640625 -3.359375 L 1.640625 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 1.640625 0 L 1.640625 -2.703125 L 4.0625 -2.703125 Z M 4.0625 0 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-0-43"> | |
| 135 | +<path d="M 2.859375 -5.875 C 1.546875 -5.875 0.453125 -4.84375 0.453125 -2.890625 C 0.453125 -0.953125 1.46875 0.09375 2.875 0.09375 C 3.65625 0.09375 4.203125 -0.21875 4.515625 -0.546875 L 4.125 -1.046875 C 3.796875 -0.796875 3.4375 -0.5625 2.890625 -0.5625 C 2 -0.5625 1.3125 -1.21875 1.3125 -2.890625 C 1.3125 -4.625 2.03125 -5.21875 2.90625 -5.21875 C 3.3125 -5.21875 3.65625 -5.078125 4.015625 -4.796875 L 4.453125 -5.296875 C 4 -5.671875 3.578125 -5.875 2.859375 -5.875 Z M 2.859375 -5.875 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-0-44"> | |
| 138 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.40625 L 2.96875 -4.40625 L 2.046875 -2.796875 L 1.125 -4.40625 L 0.21875 -4.40625 L 1.578125 -2.328125 L 0.046875 0 L 0.90625 0 L 2.015625 -1.875 L 3.09375 0 L 4.015625 0 Z M 2.484375 -2.359375 "/> | |
| 139 | +</g> | |
| 140 | +</g> | |
| 141 | +<clipPath id="clip-0"> | |
| 142 | +<path clip-rule="nonzero" d="M 1.074219 3 L 176 3 L 176 32 L 1.074219 32 Z M 1.074219 3 "/> | |
| 143 | +</clipPath> | |
| 144 | +<clipPath id="clip-1"> | |
| 145 | +<path clip-rule="nonzero" d="M 1.074219 27 L 176 27 L 176 57 L 1.074219 57 Z M 1.074219 27 "/> | |
| 146 | +</clipPath> | |
| 147 | +<clipPath id="clip-2"> | |
| 148 | +<path clip-rule="nonzero" d="M 1.074219 51 L 176 51 L 176 81 L 1.074219 81 Z M 1.074219 51 "/> | |
| 149 | +</clipPath> | |
| 150 | +<clipPath id="clip-3"> | |
| 151 | +<path clip-rule="nonzero" d="M 1.074219 76 L 176 76 L 176 105 L 1.074219 105 Z M 1.074219 76 "/> | |
| 152 | +</clipPath> | |
| 153 | +<clipPath id="clip-4"> | |
| 154 | +<path clip-rule="nonzero" d="M 1.074219 100 L 176 100 L 176 129 L 1.074219 129 Z M 1.074219 100 "/> | |
| 155 | +</clipPath> | |
| 156 | +<clipPath id="clip-5"> | |
| 157 | +<path clip-rule="nonzero" d="M 1.074219 124 L 176 124 L 176 153 L 1.074219 153 Z M 1.074219 124 "/> | |
| 158 | +</clipPath> | |
| 159 | +<clipPath id="clip-6"> | |
| 160 | +<path clip-rule="nonzero" d="M 196 0 L 370.742188 0 L 370.742188 37 L 196 37 Z M 196 0 "/> | |
| 161 | +</clipPath> | |
| 162 | +<clipPath id="clip-7"> | |
| 163 | +<path clip-rule="nonzero" d="M 196 32 L 370.742188 32 L 370.742188 61 L 196 61 Z M 196 32 "/> | |
| 164 | +</clipPath> | |
| 165 | +<clipPath id="clip-8"> | |
| 166 | +<path clip-rule="nonzero" d="M 196 56 L 370.742188 56 L 370.742188 85 L 196 85 Z M 196 56 "/> | |
| 167 | +</clipPath> | |
| 168 | +<clipPath id="clip-9"> | |
| 169 | +<path clip-rule="nonzero" d="M 196 80 L 370.742188 80 L 370.742188 109 L 196 109 Z M 196 80 "/> | |
| 170 | +</clipPath> | |
| 171 | +<clipPath id="clip-10"> | |
| 172 | +<path clip-rule="nonzero" d="M 196 104 L 370.742188 104 L 370.742188 133 L 196 133 Z M 196 104 "/> | |
| 173 | +</clipPath> | |
| 174 | +<clipPath id="clip-11"> | |
| 175 | +<path clip-rule="nonzero" d="M 196 128 L 370.742188 128 L 370.742188 156.105469 L 196 156.105469 Z M 196 128 "/> | |
| 176 | +</clipPath> | |
| 177 | +</defs> | |
| 178 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 166.253906 9.4375 L 10.183594 9.4375 C 7.996094 9.4375 6.222656 11.210938 6.222656 13.398438 L 6.222656 22.382812 C 6.222656 24.570312 7.996094 26.34375 10.183594 26.34375 L 166.253906 26.34375 C 168.441406 26.34375 170.214844 24.570312 170.214844 22.382812 L 170.214844 13.398438 C 170.214844 11.210938 168.441406 9.4375 166.253906 9.4375 Z M 166.253906 9.4375 "/> | |
| 179 | +<g clip-path="url(#clip-0)"> | |
| 180 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.509117 8.505352 L -78.506269 8.505352 C -80.707016 8.505352 -82.491192 6.721175 -82.491192 4.520429 L -82.491192 -4.51835 C -82.491192 -6.719096 -80.707016 -8.503273 -78.506269 -8.503273 L 78.509117 -8.503273 C 80.709863 -8.503273 82.494039 -6.719096 82.494039 -4.51835 L 82.494039 4.520429 C 82.494039 6.721175 80.709863 8.505352 78.509117 8.505352 Z M 78.509117 8.505352 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 181 | +</g> | |
| 182 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 183 | +<use xlink:href="#glyph-0-0" x="65.665894" y="20.296098"/> | |
| 184 | +<use xlink:href="#glyph-0-1" x="69.209648" y="20.296098"/> | |
| 185 | +</g> | |
| 186 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 187 | +<use xlink:href="#glyph-0-2" x="74.010053" y="20.296098"/> | |
| 188 | +</g> | |
| 189 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 190 | +<use xlink:href="#glyph-0-3" x="78.58426" y="20.296098"/> | |
| 191 | +<use xlink:href="#glyph-0-4" x="83.099824" y="20.296098"/> | |
| 192 | +<use xlink:href="#glyph-0-5" x="87.456212" y="20.296098"/> | |
| 193 | +</g> | |
| 194 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 195 | +<use xlink:href="#glyph-0-6" x="94.811806" y="20.296098"/> | |
| 196 | +<use xlink:href="#glyph-0-7" x="97.836145" y="20.296098"/> | |
| 197 | +<use xlink:href="#glyph-0-6" x="100.148382" y="20.296098"/> | |
| 198 | +<use xlink:href="#glyph-0-8" x="103.17272" y="20.296098"/> | |
| 199 | +</g> | |
| 200 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 201 | +<use xlink:href="#glyph-0-5" x="106.213814" y="20.296098"/> | |
| 202 | +</g> | |
| 203 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 166.253906 33.503906 L 10.183594 33.503906 C 7.996094 33.503906 6.222656 35.277344 6.222656 37.464844 L 6.222656 46.449219 C 6.222656 48.636719 7.996094 50.410156 10.183594 50.410156 L 166.253906 50.410156 C 168.441406 50.410156 170.214844 48.636719 170.214844 46.449219 L 170.214844 37.464844 C 170.214844 35.277344 168.441406 33.503906 166.253906 33.503906 Z M 166.253906 33.503906 "/> | |
| 204 | +<g clip-path="url(#clip-1)"> | |
| 205 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.509117 -15.706787 L -78.506269 -15.706787 C -80.707016 -15.706787 -82.491192 -17.490963 -82.491192 -19.69171 L -82.491192 -28.730489 C -82.491192 -30.931235 -80.707016 -32.715412 -78.506269 -32.715412 L 78.509117 -32.715412 C 80.709863 -32.715412 82.494039 -30.931235 82.494039 -28.730489 L 82.494039 -19.69171 C 82.494039 -17.490963 80.709863 -15.706787 78.509117 -15.706787 Z M 78.509117 -15.706787 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 206 | +</g> | |
| 207 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 208 | +<use xlink:href="#glyph-0-9" x="40.825314" y="45.204268"/> | |
| 209 | +<use xlink:href="#glyph-0-1" x="44.980638" y="45.204268"/> | |
| 210 | +</g> | |
| 211 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 212 | +<use xlink:href="#glyph-0-10" x="49.781043" y="45.204268"/> | |
| 213 | +</g> | |
| 214 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 215 | +<use xlink:href="#glyph-0-5" x="53.743681" y="45.204268"/> | |
| 216 | +<use xlink:href="#glyph-0-6" x="58.301133" y="45.204268"/> | |
| 217 | +<use xlink:href="#glyph-0-6" x="61.325472" y="45.204268"/> | |
| 218 | +<use xlink:href="#glyph-0-8" x="64.34981" y="45.204268"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-0-5" x="67.390904" y="45.204268"/> | |
| 222 | +</g> | |
| 223 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 224 | +<use xlink:href="#glyph-0-11" x="74.746498" y="45.204268"/> | |
| 225 | +<use xlink:href="#glyph-0-5" x="79.689323" y="45.204268"/> | |
| 226 | +</g> | |
| 227 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 228 | +<use xlink:href="#glyph-0-6" x="87.03654" y="45.204268"/> | |
| 229 | +<use xlink:href="#glyph-0-8" x="90.060878" y="45.204268"/> | |
| 230 | +</g> | |
| 231 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 232 | +<use xlink:href="#glyph-0-3" x="93.101972" y="45.204268"/> | |
| 233 | +<use xlink:href="#glyph-0-12" x="97.617536" y="45.204268"/> | |
| 234 | +<use xlink:href="#glyph-0-13" x="102.468207" y="45.204268"/> | |
| 235 | +<use xlink:href="#glyph-0-14" x="106.380579" y="45.204268"/> | |
| 236 | +<use xlink:href="#glyph-0-7" x="113.501598" y="45.204268"/> | |
| 237 | +<use xlink:href="#glyph-0-13" x="115.813835" y="45.204268"/> | |
| 238 | +</g> | |
| 239 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 240 | +<use xlink:href="#glyph-0-13" x="119.64243" y="45.204268"/> | |
| 241 | +<use xlink:href="#glyph-0-7" x="123.554801" y="45.204268"/> | |
| 242 | +<use xlink:href="#glyph-0-15" x="125.867038" y="45.204268"/> | |
| 243 | +<use xlink:href="#glyph-0-12" x="130.759597" y="45.204268"/> | |
| 244 | +</g> | |
| 245 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 166.253906 57.566406 L 10.183594 57.566406 C 7.996094 57.566406 6.222656 59.339844 6.222656 61.527344 L 6.222656 70.511719 C 6.222656 72.699219 7.996094 74.472656 10.183594 74.472656 L 166.253906 74.472656 C 168.441406 74.472656 170.214844 72.699219 170.214844 70.511719 L 170.214844 61.527344 C 170.214844 59.339844 168.441406 57.566406 166.253906 57.566406 Z M 166.253906 57.566406 "/> | |
| 246 | +<g clip-path="url(#clip-2)"> | |
| 247 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.509117 -39.914996 L -78.506269 -39.914996 C -80.707016 -39.914996 -82.491192 -41.699172 -82.491192 -43.899919 L -82.491192 -52.938698 C -82.491192 -55.139444 -80.707016 -56.923621 -78.506269 -56.923621 L 78.509117 -56.923621 C 80.709863 -56.923621 82.494039 -55.139444 82.494039 -52.938698 L 82.494039 -43.899919 C 82.494039 -41.699172 80.709863 -39.914996 78.509117 -39.914996 Z M 78.509117 -39.914996 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 248 | +</g> | |
| 249 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 250 | +<use xlink:href="#glyph-0-16" x="47.594325" y="68.826227"/> | |
| 251 | +<use xlink:href="#glyph-0-1" x="51.682628" y="68.826227"/> | |
| 252 | +</g> | |
| 253 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 254 | +<use xlink:href="#glyph-0-17" x="56.483032" y="68.826227"/> | |
| 255 | +</g> | |
| 256 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 257 | +<use xlink:href="#glyph-0-3" x="60.395404" y="68.826227"/> | |
| 258 | +<use xlink:href="#glyph-0-18" x="64.910968" y="68.826227"/> | |
| 259 | +<use xlink:href="#glyph-0-19" x="69.820282" y="68.826227"/> | |
| 260 | +</g> | |
| 261 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 262 | +<use xlink:href="#glyph-0-5" x="72.241429" y="68.826227"/> | |
| 263 | +</g> | |
| 264 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 265 | +<use xlink:href="#glyph-0-11" x="79.597023" y="68.826227"/> | |
| 266 | +<use xlink:href="#glyph-0-5" x="84.539848" y="68.826227"/> | |
| 267 | +<use xlink:href="#glyph-0-13" x="89.0973" y="68.826227"/> | |
| 268 | +</g> | |
| 269 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 270 | +<use xlink:href="#glyph-0-14" x="95.799436" y="68.826227"/> | |
| 271 | +<use xlink:href="#glyph-0-3" x="102.920455" y="68.826227"/> | |
| 272 | +<use xlink:href="#glyph-0-6" x="107.436019" y="68.826227"/> | |
| 273 | +<use xlink:href="#glyph-0-7" x="110.460357" y="68.826227"/> | |
| 274 | +<use xlink:href="#glyph-0-20" x="112.772594" y="68.826227"/> | |
| 275 | +<use xlink:href="#glyph-0-8" x="117.330046" y="68.826227"/> | |
| 276 | +</g> | |
| 277 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 278 | +<use xlink:href="#glyph-0-5" x="120.371141" y="68.826227"/> | |
| 279 | +<use xlink:href="#glyph-0-13" x="124.928593" y="68.826227"/> | |
| 280 | +</g> | |
| 281 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 166.253906 81.632812 L 10.183594 81.632812 C 7.996094 81.632812 6.222656 83.40625 6.222656 85.59375 L 6.222656 94.578125 C 6.222656 96.765625 7.996094 98.539062 10.183594 98.539062 L 166.253906 98.539062 C 168.441406 98.539062 170.214844 96.765625 170.214844 94.578125 L 170.214844 85.59375 C 170.214844 83.40625 168.441406 81.632812 166.253906 81.632812 Z M 166.253906 81.632812 "/> | |
| 282 | +<g clip-path="url(#clip-3)"> | |
| 283 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.509117 -64.127135 L -78.506269 -64.127135 C -80.707016 -64.127135 -82.491192 -65.911311 -82.491192 -68.112057 L -82.491192 -77.150837 C -82.491192 -79.351583 -80.707016 -81.135759 -78.506269 -81.135759 L 78.509117 -81.135759 C 80.709863 -81.135759 82.494039 -79.351583 82.494039 -77.150837 L 82.494039 -68.112057 C 82.494039 -65.911311 80.709863 -64.127135 78.509117 -64.127135 Z M 78.509117 -64.127135 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 284 | +</g> | |
| 285 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 286 | +<use xlink:href="#glyph-0-21" x="35.032393" y="92.945177"/> | |
| 287 | +</g> | |
| 288 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 289 | +<use xlink:href="#glyph-0-1" x="39.279871" y="92.945177"/> | |
| 290 | +</g> | |
| 291 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 292 | +<use xlink:href="#glyph-0-22" x="44.080276" y="92.945177"/> | |
| 293 | +<use xlink:href="#glyph-0-15" x="48.646106" y="92.945177"/> | |
| 294 | +<use xlink:href="#glyph-0-14" x="53.538665" y="92.945177"/> | |
| 295 | +<use xlink:href="#glyph-0-14" x="60.659684" y="92.945177"/> | |
| 296 | +<use xlink:href="#glyph-0-3" x="67.780703" y="92.945177"/> | |
| 297 | +<use xlink:href="#glyph-0-7" x="72.296267" y="92.945177"/> | |
| 298 | +<use xlink:href="#glyph-0-8" x="74.608504" y="92.945177"/> | |
| 299 | +</g> | |
| 300 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 301 | +<use xlink:href="#glyph-0-5" x="77.649598" y="92.945177"/> | |
| 302 | +</g> | |
| 303 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 304 | +<use xlink:href="#glyph-0-11" x="85.005192" y="92.945177"/> | |
| 305 | +<use xlink:href="#glyph-0-5" x="89.948017" y="92.945177"/> | |
| 306 | +</g> | |
| 307 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 308 | +<use xlink:href="#glyph-0-19" x="97.295233" y="92.945177"/> | |
| 309 | +</g> | |
| 310 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 311 | +<use xlink:href="#glyph-0-23" x="99.632603" y="92.945177"/> | |
| 312 | +</g> | |
| 313 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 314 | +<use xlink:href="#glyph-0-24" x="101.458935" y="92.945177"/> | |
| 315 | +</g> | |
| 316 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 317 | +<use xlink:href="#glyph-0-25" x="105.974499" y="92.945177"/> | |
| 318 | +</g> | |
| 319 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 320 | +<use xlink:href="#glyph-0-3" x="110.054424" y="92.945177"/> | |
| 321 | +</g> | |
| 322 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 323 | +<use xlink:href="#glyph-0-19" x="114.528099" y="92.945177"/> | |
| 324 | +<use xlink:href="#glyph-0-26" x="116.991134" y="92.945177"/> | |
| 325 | +<use xlink:href="#glyph-0-3" x="121.808294" y="92.945177"/> | |
| 326 | +<use xlink:href="#glyph-0-6" x="126.323858" y="92.945177"/> | |
| 327 | +<use xlink:href="#glyph-0-7" x="129.348197" y="92.945177"/> | |
| 328 | +<use xlink:href="#glyph-0-15" x="131.660434" y="92.945177"/> | |
| 329 | +<use xlink:href="#glyph-0-12" x="136.552993" y="92.945177"/> | |
| 330 | +</g> | |
| 331 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 166.253906 105.695312 L 10.183594 105.695312 C 7.996094 105.695312 6.222656 107.46875 6.222656 109.65625 L 6.222656 118.640625 C 6.222656 120.828125 7.996094 122.601562 10.183594 122.601562 L 166.253906 122.601562 C 168.441406 122.601562 170.214844 120.828125 170.214844 118.640625 L 170.214844 109.65625 C 170.214844 107.46875 168.441406 105.695312 166.253906 105.695312 Z M 166.253906 105.695312 "/> | |
| 332 | +<g clip-path="url(#clip-4)"> | |
| 333 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.509117 -88.335344 L -78.506269 -88.335344 C -80.707016 -88.335344 -82.491192 -90.11952 -82.491192 -92.320266 L -82.491192 -101.359046 C -82.491192 -103.559792 -80.707016 -105.343968 -78.506269 -105.343968 L 78.509117 -105.343968 C 80.709863 -105.343968 82.494039 -103.559792 82.494039 -101.359046 L 82.494039 -92.320266 C 82.494039 -90.11952 80.709863 -88.335344 78.509117 -88.335344 Z M 78.509117 -88.335344 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 334 | +</g> | |
| 335 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 336 | +<use xlink:href="#glyph-0-27" x="36.351406" y="116.954788"/> | |
| 337 | +<use xlink:href="#glyph-0-1" x="40.456464" y="116.954788"/> | |
| 338 | +</g> | |
| 339 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 340 | +<use xlink:href="#glyph-0-28" x="45.256868" y="116.954788"/> | |
| 341 | +<use xlink:href="#glyph-0-11" x="47.728281" y="116.954788"/> | |
| 342 | +<use xlink:href="#glyph-0-5" x="52.671106" y="116.954788"/> | |
| 343 | +<use xlink:href="#glyph-0-12" x="57.228558" y="116.954788"/> | |
| 344 | +<use xlink:href="#glyph-0-6" x="62.079229" y="116.954788"/> | |
| 345 | +<use xlink:href="#glyph-0-7" x="65.103568" y="116.954788"/> | |
| 346 | +<use xlink:href="#glyph-0-29" x="67.415805" y="116.954788"/> | |
| 347 | +<use xlink:href="#glyph-0-30" x="72.207831" y="116.954788"/> | |
| 348 | +</g> | |
| 349 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 350 | +<use xlink:href="#glyph-0-3" x="76.170469" y="116.954788"/> | |
| 351 | +<use xlink:href="#glyph-0-6" x="80.686033" y="116.954788"/> | |
| 352 | +<use xlink:href="#glyph-0-7" x="83.710372" y="116.954788"/> | |
| 353 | +<use xlink:href="#glyph-0-15" x="86.022609" y="116.954788"/> | |
| 354 | +<use xlink:href="#glyph-0-12" x="90.915168" y="116.954788"/> | |
| 355 | +</g> | |
| 356 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 357 | +<use xlink:href="#glyph-0-11" x="98.56398" y="116.954788"/> | |
| 358 | +<use xlink:href="#glyph-0-26" x="103.506805" y="116.954788"/> | |
| 359 | +</g> | |
| 360 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 361 | +<use xlink:href="#glyph-0-14" x="111.113729" y="116.954788"/> | |
| 362 | +<use xlink:href="#glyph-0-3" x="118.234748" y="116.954788"/> | |
| 363 | +<use xlink:href="#glyph-0-12" x="122.750312" y="116.954788"/> | |
| 364 | +<use xlink:href="#glyph-0-11" x="127.600983" y="116.954788"/> | |
| 365 | +<use xlink:href="#glyph-0-3" x="132.543808" y="116.954788"/> | |
| 366 | +<use xlink:href="#glyph-0-6" x="137.059372" y="116.954788"/> | |
| 367 | +</g> | |
| 368 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 166.253906 129.761719 L 10.183594 129.761719 C 7.996094 129.761719 6.222656 131.535156 6.222656 133.722656 L 6.222656 142.707031 C 6.222656 144.894531 7.996094 146.667969 10.183594 146.667969 L 166.253906 146.667969 C 168.441406 146.667969 170.214844 144.894531 170.214844 142.707031 L 170.214844 133.722656 C 170.214844 131.535156 168.441406 129.761719 166.253906 129.761719 Z M 166.253906 129.761719 "/> | |
| 369 | +<g clip-path="url(#clip-5)"> | |
| 370 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 78.509117 -112.547482 L -78.506269 -112.547482 C -80.707016 -112.547482 -82.491192 -114.331659 -82.491192 -116.532405 L -82.491192 -125.571184 C -82.491192 -127.771931 -80.707016 -129.556107 -78.506269 -129.556107 L 78.509117 -129.556107 C 80.709863 -129.556107 82.494039 -127.771931 82.494039 -125.571184 L 82.494039 -116.532405 C 82.494039 -114.331659 80.709863 -112.547482 78.509117 -112.547482 Z M 78.509117 -112.547482 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 371 | +</g> | |
| 372 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 373 | +<use xlink:href="#glyph-0-31" x="31.834756" y="140.616506"/> | |
| 374 | +</g> | |
| 375 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 376 | +<use xlink:href="#glyph-0-1" x="36.316809" y="140.616506"/> | |
| 377 | +</g> | |
| 378 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 379 | +<use xlink:href="#glyph-0-32" x="41.117214" y="140.616506"/> | |
| 380 | +<use xlink:href="#glyph-0-5" x="46.512433" y="140.616506"/> | |
| 381 | +<use xlink:href="#glyph-0-13" x="51.069885" y="140.616506"/> | |
| 382 | +<use xlink:href="#glyph-0-30" x="54.982257" y="140.616506"/> | |
| 383 | +<use xlink:href="#glyph-0-8" x="58.986783" y="140.616506"/> | |
| 384 | +<use xlink:href="#glyph-0-7" x="62.195431" y="140.616506"/> | |
| 385 | +<use xlink:href="#glyph-0-33" x="64.507667" y="140.616506"/> | |
| 386 | +<use xlink:href="#glyph-0-6" x="69.416982" y="140.616506"/> | |
| 387 | +<use xlink:href="#glyph-0-7" x="72.44132" y="140.616506"/> | |
| 388 | +<use xlink:href="#glyph-0-15" x="74.753557" y="140.616506"/> | |
| 389 | +<use xlink:href="#glyph-0-12" x="79.646116" y="140.616506"/> | |
| 390 | +</g> | |
| 391 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 392 | +<use xlink:href="#glyph-0-11" x="87.294929" y="140.616506"/> | |
| 393 | +<use xlink:href="#glyph-0-5" x="92.237754" y="140.616506"/> | |
| 394 | +</g> | |
| 395 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 396 | +<use xlink:href="#glyph-0-19" x="99.58497" y="140.616506"/> | |
| 397 | +</g> | |
| 398 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 399 | +<use xlink:href="#glyph-0-3" x="102.006116" y="140.616506"/> | |
| 400 | +</g> | |
| 401 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 402 | +<use xlink:href="#glyph-0-33" x="109.311444" y="140.616506"/> | |
| 403 | +<use xlink:href="#glyph-0-8" x="114.220759" y="140.616506"/> | |
| 404 | +</g> | |
| 405 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 406 | +<use xlink:href="#glyph-0-15" x="117.261853" y="140.616506"/> | |
| 407 | +<use xlink:href="#glyph-0-33" x="122.154412" y="140.616506"/> | |
| 408 | +<use xlink:href="#glyph-0-8" x="127.063726" y="140.616506"/> | |
| 409 | +<use xlink:href="#glyph-0-7" x="130.272373" y="140.616506"/> | |
| 410 | +<use xlink:href="#glyph-0-24" x="132.58461" y="140.616506"/> | |
| 411 | +<use xlink:href="#glyph-0-6" x="137.142062" y="140.616506"/> | |
| 412 | +</g> | |
| 413 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 414 | +<use xlink:href="#glyph-0-24" x="140.040736" y="140.616506"/> | |
| 415 | +</g> | |
| 416 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 361.632812 5.148438 L 205.566406 5.148438 C 203.375 5.148438 201.601562 6.921875 201.601562 9.109375 L 201.601562 26.671875 C 201.601562 28.859375 203.375 30.632812 205.566406 30.632812 L 361.632812 30.632812 C 363.820312 30.632812 365.59375 28.859375 365.59375 26.671875 L 365.59375 9.109375 C 365.59375 6.921875 363.820312 5.148438 361.632812 5.148438 Z M 361.632812 5.148438 "/> | |
| 417 | +<g clip-path="url(#clip-6)"> | |
| 418 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 275.071127 12.820386 L 118.059671 12.820386 C 115.854995 12.820386 114.070818 11.03621 114.070818 8.835464 L 114.070818 -8.833385 C 114.070818 -11.034131 115.854995 -12.818308 118.059671 -12.818308 L 275.071127 -12.818308 C 277.271873 -12.818308 279.05605 -11.034131 279.05605 -8.833385 L 279.05605 8.835464 C 279.05605 11.03621 277.271873 12.820386 275.071127 12.820386 Z M 275.071127 12.820386 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 419 | +</g> | |
| 420 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 421 | +<use xlink:href="#glyph-0-34" x="243.33006" y="14.850076"/> | |
| 422 | +</g> | |
| 423 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 424 | +<use xlink:href="#glyph-0-1" x="246.588973" y="14.850076"/> | |
| 425 | +</g> | |
| 426 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 427 | +<use xlink:href="#glyph-0-35" x="251.389378" y="14.850076"/> | |
| 428 | +<use xlink:href="#glyph-0-12" x="256.189783" y="14.850076"/> | |
| 429 | +<use xlink:href="#glyph-0-3" x="261.040453" y="14.850076"/> | |
| 430 | +</g> | |
| 431 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 432 | +<use xlink:href="#glyph-0-19" x="265.514129" y="14.850076"/> | |
| 433 | +</g> | |
| 434 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 435 | +<use xlink:href="#glyph-0-36" x="267.893387" y="14.850076"/> | |
| 436 | +</g> | |
| 437 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 438 | +<use xlink:href="#glyph-0-13" x="271.956557" y="14.850076"/> | |
| 439 | +<use xlink:href="#glyph-0-5" x="275.868929" y="14.850076"/> | |
| 440 | +</g> | |
| 441 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 442 | +<use xlink:href="#glyph-0-11" x="283.224522" y="14.850076"/> | |
| 443 | +<use xlink:href="#glyph-0-26" x="288.167347" y="14.850076"/> | |
| 444 | +</g> | |
| 445 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 446 | +<use xlink:href="#glyph-0-14" x="295.774271" y="14.850076"/> | |
| 447 | +<use xlink:href="#glyph-0-3" x="302.895291" y="14.850076"/> | |
| 448 | +<use xlink:href="#glyph-0-8" x="307.410854" y="14.850076"/> | |
| 449 | +</g> | |
| 450 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 451 | +<use xlink:href="#glyph-0-30" x="310.451949" y="14.850076"/> | |
| 452 | +<use xlink:href="#glyph-0-37" x="314.456475" y="14.850076"/> | |
| 453 | +<use xlink:href="#glyph-0-24" x="319.307145" y="14.850076"/> | |
| 454 | +</g> | |
| 455 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 456 | +<use xlink:href="#glyph-0-5" x="240.939536" y="25.743114"/> | |
| 457 | +<use xlink:href="#glyph-0-6" x="245.496988" y="25.743114"/> | |
| 458 | +</g> | |
| 459 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 460 | +<use xlink:href="#glyph-0-26" x="251.311091" y="25.743114"/> | |
| 461 | +<use xlink:href="#glyph-0-6" x="256.128251" y="25.743114"/> | |
| 462 | +<use xlink:href="#glyph-0-7" x="259.152589" y="25.743114"/> | |
| 463 | +<use xlink:href="#glyph-0-19" x="261.464826" y="25.743114"/> | |
| 464 | +<use xlink:href="#glyph-0-7" x="263.927861" y="25.743114"/> | |
| 465 | +<use xlink:href="#glyph-0-13" x="266.240098" y="25.743114"/> | |
| 466 | +<use xlink:href="#glyph-0-3" x="270.152469" y="25.743114"/> | |
| 467 | +<use xlink:href="#glyph-0-6" x="274.668033" y="25.743114"/> | |
| 468 | +<use xlink:href="#glyph-0-7" x="277.692372" y="25.743114"/> | |
| 469 | +<use xlink:href="#glyph-0-15" x="280.004609" y="25.743114"/> | |
| 470 | +<use xlink:href="#glyph-0-12" x="284.897168" y="25.743114"/> | |
| 471 | +</g> | |
| 472 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 473 | +<use xlink:href="#glyph-0-15" x="292.54598" y="25.743114"/> | |
| 474 | +<use xlink:href="#glyph-0-33" x="297.438539" y="25.743114"/> | |
| 475 | +<use xlink:href="#glyph-0-6" x="302.347854" y="25.743114"/> | |
| 476 | +<use xlink:href="#glyph-0-7" x="305.372192" y="25.743114"/> | |
| 477 | +<use xlink:href="#glyph-0-14" x="307.684429" y="25.743114"/> | |
| 478 | +<use xlink:href="#glyph-0-3" x="314.805448" y="25.743114"/> | |
| 479 | +</g> | |
| 480 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 481 | +<use xlink:href="#glyph-0-19" x="319.279124" y="25.743114"/> | |
| 482 | +</g> | |
| 483 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 484 | +<use xlink:href="#glyph-0-5" x="321.70027" y="25.743114"/> | |
| 485 | +</g> | |
| 486 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 361.632812 37.792969 L 205.566406 37.792969 C 203.375 37.792969 201.601562 39.566406 201.601562 41.753906 L 201.601562 50.738281 C 201.601562 52.925781 203.375 54.699219 205.566406 54.699219 L 361.632812 54.699219 C 363.820312 54.699219 365.59375 52.925781 365.59375 50.738281 L 365.59375 41.753906 C 365.59375 39.566406 363.820312 37.792969 361.632812 37.792969 Z M 361.632812 37.792969 "/> | |
| 487 | +<g clip-path="url(#clip-7)"> | |
| 488 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 275.071127 -20.021822 L 118.059671 -20.021822 C 115.854995 -20.021822 114.070818 -21.805998 114.070818 -24.006744 L 114.070818 -33.045524 C 114.070818 -35.24627 115.854995 -37.030446 118.059671 -37.030446 L 275.071127 -37.030446 C 277.271873 -37.030446 279.05605 -35.24627 279.05605 -33.045524 L 279.05605 -24.006744 C 279.05605 -21.805998 277.271873 -20.021822 275.071127 -20.021822 Z M 275.071127 -20.021822 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 489 | +</g> | |
| 490 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 491 | +<use xlink:href="#glyph-0-38" x="228.982938" y="48.649407"/> | |
| 492 | +<use xlink:href="#glyph-0-1" x="233.599034" y="48.649407"/> | |
| 493 | +</g> | |
| 494 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 495 | +<use xlink:href="#glyph-0-35" x="238.399439" y="48.649407"/> | |
| 496 | +<use xlink:href="#glyph-0-33" x="243.199843" y="48.649407"/> | |
| 497 | +<use xlink:href="#glyph-0-33" x="248.109158" y="48.649407"/> | |
| 498 | +<use xlink:href="#glyph-0-19" x="253.018472" y="48.649407"/> | |
| 499 | +<use xlink:href="#glyph-0-7" x="255.481507" y="48.649407"/> | |
| 500 | +<use xlink:href="#glyph-0-30" x="257.793744" y="48.649407"/> | |
| 501 | +</g> | |
| 502 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 503 | +<use xlink:href="#glyph-0-3" x="261.756381" y="48.649407"/> | |
| 504 | +<use xlink:href="#glyph-0-6" x="266.271945" y="48.649407"/> | |
| 505 | +<use xlink:href="#glyph-0-7" x="269.296284" y="48.649407"/> | |
| 506 | +<use xlink:href="#glyph-0-15" x="271.608521" y="48.649407"/> | |
| 507 | +<use xlink:href="#glyph-0-12" x="276.50108" y="48.649407"/> | |
| 508 | +</g> | |
| 509 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 510 | +<use xlink:href="#glyph-0-11" x="284.149892" y="48.649407"/> | |
| 511 | +<use xlink:href="#glyph-0-5" x="289.092717" y="48.649407"/> | |
| 512 | +<use xlink:href="#glyph-0-13" x="293.650169" y="48.649407"/> | |
| 513 | +</g> | |
| 514 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 515 | +<use xlink:href="#glyph-0-14" x="300.352305" y="48.649407"/> | |
| 516 | +<use xlink:href="#glyph-0-24" x="307.473324" y="48.649407"/> | |
| 517 | +<use xlink:href="#glyph-0-6" x="312.030776" y="48.649407"/> | |
| 518 | +<use xlink:href="#glyph-0-37" x="315.055115" y="48.649407"/> | |
| 519 | +<use xlink:href="#glyph-0-15" x="319.905786" y="48.649407"/> | |
| 520 | +<use xlink:href="#glyph-0-11" x="324.798345" y="48.649407"/> | |
| 521 | +<use xlink:href="#glyph-0-5" x="329.74117" y="48.649407"/> | |
| 522 | +<use xlink:href="#glyph-0-13" x="334.298622" y="48.649407"/> | |
| 523 | +</g> | |
| 524 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 361.632812 61.855469 L 205.566406 61.855469 C 203.375 61.855469 201.601562 63.628906 201.601562 65.816406 L 201.601562 74.800781 C 201.601562 76.988281 203.375 78.761719 205.566406 78.761719 L 361.632812 78.761719 C 363.820312 78.761719 365.59375 76.988281 365.59375 74.800781 L 365.59375 65.816406 C 365.59375 63.628906 363.820312 61.855469 361.632812 61.855469 Z M 361.632812 61.855469 "/> | |
| 525 | +<g clip-path="url(#clip-8)"> | |
| 526 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 275.071127 -44.230031 L 118.059671 -44.230031 C 115.854995 -44.230031 114.070818 -46.014207 114.070818 -48.214953 L 114.070818 -57.253733 C 114.070818 -59.454479 115.854995 -61.238655 118.059671 -61.238655 L 275.071127 -61.238655 C 277.271873 -61.238655 279.05605 -59.454479 279.05605 -57.253733 L 279.05605 -48.214953 C 279.05605 -46.014207 277.271873 -44.230031 275.071127 -44.230031 Z M 275.071127 -44.230031 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 527 | +</g> | |
| 528 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 529 | +<use xlink:href="#glyph-0-39" x="225.070629" y="73.115255"/> | |
| 530 | +</g> | |
| 531 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 532 | +<use xlink:href="#glyph-0-1" x="229.385129" y="73.115255"/> | |
| 533 | +</g> | |
| 534 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 535 | +<use xlink:href="#glyph-0-40" x="234.185533" y="73.115255"/> | |
| 536 | +</g> | |
| 537 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 538 | +<use xlink:href="#glyph-0-24" x="239.212135" y="73.115255"/> | |
| 539 | +<use xlink:href="#glyph-0-30" x="243.769587" y="73.115255"/> | |
| 540 | +</g> | |
| 541 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 542 | +<use xlink:href="#glyph-0-15" x="247.648448" y="73.115255"/> | |
| 543 | +<use xlink:href="#glyph-0-12" x="252.541007" y="73.115255"/> | |
| 544 | +<use xlink:href="#glyph-0-30" x="257.391678" y="73.115255"/> | |
| 545 | +<use xlink:href="#glyph-0-7" x="261.396204" y="73.115255"/> | |
| 546 | +<use xlink:href="#glyph-0-19" x="263.708441" y="73.115255"/> | |
| 547 | +<use xlink:href="#glyph-0-7" x="266.171476" y="73.115255"/> | |
| 548 | +<use xlink:href="#glyph-0-3" x="268.483712" y="73.115255"/> | |
| 549 | +<use xlink:href="#glyph-0-6" x="272.999276" y="73.115255"/> | |
| 550 | +<use xlink:href="#glyph-0-7" x="276.023615" y="73.115255"/> | |
| 551 | +<use xlink:href="#glyph-0-15" x="278.335852" y="73.115255"/> | |
| 552 | +<use xlink:href="#glyph-0-12" x="283.228411" y="73.115255"/> | |
| 553 | +</g> | |
| 554 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 555 | +<use xlink:href="#glyph-0-5" x="290.877223" y="73.115255"/> | |
| 556 | +<use xlink:href="#glyph-0-6" x="295.434675" y="73.115255"/> | |
| 557 | +</g> | |
| 558 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 559 | +<use xlink:href="#glyph-0-30" x="301.248778" y="73.115255"/> | |
| 560 | +</g> | |
| 561 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 562 | +<use xlink:href="#glyph-0-15" x="305.127639" y="73.115255"/> | |
| 563 | +<use xlink:href="#glyph-0-12" x="310.020198" y="73.115255"/> | |
| 564 | +<use xlink:href="#glyph-0-30" x="314.870869" y="73.115255"/> | |
| 565 | +<use xlink:href="#glyph-0-19" x="318.875395" y="73.115255"/> | |
| 566 | +<use xlink:href="#glyph-0-26" x="321.33843" y="73.115255"/> | |
| 567 | +<use xlink:href="#glyph-0-13" x="326.15559" y="73.115255"/> | |
| 568 | +<use xlink:href="#glyph-0-7" x="330.067961" y="73.115255"/> | |
| 569 | +<use xlink:href="#glyph-0-15" x="332.380198" y="73.115255"/> | |
| 570 | +<use xlink:href="#glyph-0-12" x="337.272757" y="73.115255"/> | |
| 571 | +</g> | |
| 572 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 361.632812 85.921875 L 205.566406 85.921875 C 203.375 85.921875 201.601562 87.695312 201.601562 89.882812 L 201.601562 98.867188 C 201.601562 101.054688 203.375 102.828125 205.566406 102.828125 L 361.632812 102.828125 C 363.820312 102.828125 365.59375 101.054688 365.59375 98.867188 L 365.59375 89.882812 C 365.59375 87.695312 363.820312 85.921875 361.632812 85.921875 Z M 361.632812 85.921875 "/> | |
| 573 | +<g clip-path="url(#clip-9)"> | |
| 574 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 275.071127 -68.442169 L 118.059671 -68.442169 C 115.854995 -68.442169 114.070818 -70.226346 114.070818 -72.427092 L 114.070818 -81.465871 C 114.070818 -83.666618 115.854995 -85.450794 118.059671 -85.450794 L 275.071127 -85.450794 C 277.271873 -85.450794 279.05605 -83.666618 279.05605 -81.465871 L 279.05605 -72.427092 C 279.05605 -70.226346 277.271873 -68.442169 275.071127 -68.442169 Z M 275.071127 -68.442169 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 575 | +</g> | |
| 576 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 577 | +<use xlink:href="#glyph-0-0" x="228.149982" y="96.777967"/> | |
| 578 | +<use xlink:href="#glyph-0-41" x="231.693736" y="96.777967"/> | |
| 579 | +<use xlink:href="#glyph-0-1" x="236.770604" y="96.777967"/> | |
| 580 | +</g> | |
| 581 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 582 | +<use xlink:href="#glyph-0-42" x="241.571009" y="96.777967"/> | |
| 583 | +<use xlink:href="#glyph-0-36" x="247.267824" y="96.777967"/> | |
| 584 | +<use xlink:href="#glyph-0-33" x="251.389637" y="96.777967"/> | |
| 585 | +<use xlink:href="#glyph-0-15" x="256.298952" y="96.777967"/> | |
| 586 | +<use xlink:href="#glyph-0-6" x="261.191511" y="96.777967"/> | |
| 587 | +<use xlink:href="#glyph-0-37" x="264.215849" y="96.777967"/> | |
| 588 | +<use xlink:href="#glyph-0-20" x="269.06652" y="96.777967"/> | |
| 589 | +<use xlink:href="#glyph-0-13" x="273.623972" y="96.777967"/> | |
| 590 | +<use xlink:href="#glyph-0-5" x="277.536344" y="96.777967"/> | |
| 591 | +<use xlink:href="#glyph-0-13" x="282.093796" y="96.777967"/> | |
| 592 | +</g> | |
| 593 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 594 | +<use xlink:href="#glyph-0-5" x="288.80431" y="96.777967"/> | |
| 595 | +<use xlink:href="#glyph-0-6" x="293.361762" y="96.777967"/> | |
| 596 | +</g> | |
| 597 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 598 | +<use xlink:href="#glyph-0-30" x="299.175865" y="96.777967"/> | |
| 599 | +</g> | |
| 600 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 601 | +<use xlink:href="#glyph-0-15" x="303.054726" y="96.777967"/> | |
| 602 | +<use xlink:href="#glyph-0-12" x="307.947285" y="96.777967"/> | |
| 603 | +<use xlink:href="#glyph-0-11" x="312.797955" y="96.777967"/> | |
| 604 | +<use xlink:href="#glyph-0-7" x="317.74078" y="96.777967"/> | |
| 605 | +<use xlink:href="#glyph-0-6" x="320.053017" y="96.777967"/> | |
| 606 | +<use xlink:href="#glyph-0-7" x="323.077356" y="96.777967"/> | |
| 607 | +<use xlink:href="#glyph-0-15" x="325.389593" y="96.777967"/> | |
| 608 | +<use xlink:href="#glyph-0-12" x="330.282152" y="96.777967"/> | |
| 609 | +<use xlink:href="#glyph-0-13" x="335.132822" y="96.777967"/> | |
| 610 | +</g> | |
| 611 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 361.632812 109.984375 L 205.566406 109.984375 C 203.375 109.984375 201.601562 111.757812 201.601562 113.945312 L 201.601562 122.929688 C 201.601562 125.117188 203.375 126.890625 205.566406 126.890625 L 361.632812 126.890625 C 363.820312 126.890625 365.59375 125.117188 365.59375 122.929688 L 365.59375 113.945312 C 365.59375 111.757812 363.820312 109.984375 361.632812 109.984375 Z M 361.632812 109.984375 "/> | |
| 612 | +<g clip-path="url(#clip-10)"> | |
| 613 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 275.071127 -92.650378 L 118.059671 -92.650378 C 115.854995 -92.650378 114.070818 -94.434555 114.070818 -96.635301 L 114.070818 -105.67408 C 114.070818 -107.874826 115.854995 -109.659003 118.059671 -109.659003 L 275.071127 -109.659003 C 277.271873 -109.659003 279.05605 -107.874826 279.05605 -105.67408 L 279.05605 -96.635301 C 279.05605 -94.434555 277.271873 -92.650378 275.071127 -92.650378 Z M 275.071127 -92.650378 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 614 | +</g> | |
| 615 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 616 | +<use xlink:href="#glyph-0-0" x="254.701203" y="121.686138"/> | |
| 617 | +</g> | |
| 618 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 619 | +<use xlink:href="#glyph-0-0" x="258.169558" y="121.686138"/> | |
| 620 | +<use xlink:href="#glyph-0-1" x="261.713312" y="121.686138"/> | |
| 621 | +</g> | |
| 622 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 623 | +<use xlink:href="#glyph-0-43" x="266.513717" y="121.686138"/> | |
| 624 | +</g> | |
| 625 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 626 | +<use xlink:href="#glyph-0-5" x="271.037658" y="121.686138"/> | |
| 627 | +<use xlink:href="#glyph-0-8" x="275.595111" y="121.686138"/> | |
| 628 | +<use xlink:href="#glyph-0-6" x="278.803758" y="121.686138"/> | |
| 629 | +<use xlink:href="#glyph-0-7" x="281.828097" y="121.686138"/> | |
| 630 | +<use xlink:href="#glyph-0-29" x="284.140334" y="121.686138"/> | |
| 631 | +<use xlink:href="#glyph-0-30" x="288.932361" y="121.686138"/> | |
| 632 | +</g> | |
| 633 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 634 | +<use xlink:href="#glyph-0-3" x="292.894998" y="121.686138"/> | |
| 635 | +<use xlink:href="#glyph-0-6" x="297.410562" y="121.686138"/> | |
| 636 | +<use xlink:href="#glyph-0-7" x="300.434901" y="121.686138"/> | |
| 637 | +<use xlink:href="#glyph-0-15" x="302.747138" y="121.686138"/> | |
| 638 | +<use xlink:href="#glyph-0-12" x="307.639697" y="121.686138"/> | |
| 639 | +</g> | |
| 640 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 361.632812 134.050781 L 205.566406 134.050781 C 203.375 134.050781 201.601562 135.824219 201.601562 138.011719 L 201.601562 146.996094 C 201.601562 149.183594 203.375 150.957031 205.566406 150.957031 L 361.632812 150.957031 C 363.820312 150.957031 365.59375 149.183594 365.59375 146.996094 L 365.59375 138.011719 C 365.59375 135.824219 363.820312 134.050781 361.632812 134.050781 Z M 361.632812 134.050781 "/> | |
| 641 | +<g clip-path="url(#clip-11)"> | |
| 642 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 275.071127 -116.862517 L 118.059671 -116.862517 C 115.854995 -116.862517 114.070818 -118.646693 114.070818 -120.84744 L 114.070818 -129.886219 C 114.070818 -132.086965 115.854995 -133.871142 118.059671 -133.871142 L 275.071127 -133.871142 C 277.271873 -133.871142 279.05605 -132.086965 279.05605 -129.886219 L 279.05605 -120.84744 C 279.05605 -118.646693 277.271873 -116.862517 275.071127 -116.862517 Z M 275.071127 -116.862517 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 643 | +</g> | |
| 644 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 645 | +<use xlink:href="#glyph-0-0" x="261.591479" y="145.383639"/> | |
| 646 | +<use xlink:href="#glyph-0-9" x="265.135233" y="145.383639"/> | |
| 647 | +<use xlink:href="#glyph-0-1" x="269.290557" y="145.383639"/> | |
| 648 | +</g> | |
| 649 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 650 | +<use xlink:href="#glyph-0-35" x="274.090962" y="145.383639"/> | |
| 651 | +<use xlink:href="#glyph-0-12" x="278.891367" y="145.383639"/> | |
| 652 | +<use xlink:href="#glyph-0-12" x="283.742037" y="145.383639"/> | |
| 653 | +<use xlink:href="#glyph-0-5" x="288.592708" y="145.383639"/> | |
| 654 | +</g> | |
| 655 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 656 | +<use xlink:href="#glyph-0-44" x="293.108272" y="145.383639"/> | |
| 657 | +</g> | |
| 658 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 659 | +<use xlink:href="#glyph-0-5" x="297.129553" y="145.383639"/> | |
| 660 | +<use xlink:href="#glyph-0-13" x="301.687006" y="145.383639"/> | |
| 661 | +</g> | |
| 662 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00142358 -8.703698 L 0.00142358 -14.708591 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 663 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549316 3.109978 C -2.085587 1.243273 -1.048093 0.362975 0.00119156 0.00142358 C -1.048093 -0.364057 -2.085587 -1.244356 -2.549316 -3.11106 " transform="matrix(0, 0.993981, 0.993981, 0, 88.217335, 32.908972)"/> | |
| 664 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00142358 -32.911907 L 0.00142358 -38.92073 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 665 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551247 3.109978 C -2.083589 1.243273 -1.046094 0.362975 -0.000739537 0.00142358 C -1.046094 -0.364057 -2.083589 -1.244356 -2.551247 -3.11106 " transform="matrix(0, 0.993981, 0.993981, 0, 88.217335, 56.973391)"/> | |
| 666 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00142358 -57.124046 L 0.00142358 -63.128939 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 667 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549248 3.109978 C -2.08552 1.243273 -1.048025 0.362975 0.00125927 0.00142358 C -1.048025 -0.364057 -2.08552 -1.244356 -2.549248 -3.11106 " transform="matrix(0, 0.993981, 0.993981, 0, 88.217335, 81.037811)"/> | |
| 668 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00142358 -81.332255 L 0.00142358 -87.341078 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 669 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.55117 3.109978 C -2.083511 1.243273 -1.046016 0.362975 -0.000661827 0.00142358 C -1.046016 -0.364057 -2.083511 -1.244356 -2.55117 -3.11106 " transform="matrix(0, 0.993981, 0.993981, 0, 88.217335, 105.10222)"/> | |
| 670 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00142358 -105.544393 L 0.00142358 -111.549287 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 671 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549171 3.109978 C -2.085442 1.243273 -1.047947 0.362975 0.00133698 0.00142358 C -1.047947 -0.364057 -2.085442 -1.244356 -2.549171 -3.11106 " transform="matrix(0, 0.993981, 0.993981, 0, 88.217335, 129.16664)"/> | |
| 672 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 82.690535 -121.051795 L 98.284394 -121.051795 L 98.284394 0.00103948 L 113.076553 0.00103948 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 673 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551965 3.109594 C -2.084306 1.242889 -1.046812 0.362591 -0.00145709 0.00103948 C -1.046812 -0.364442 -2.084306 -1.24474 -2.551965 -3.111445 " transform="matrix(0.993981, 0, 0, -0.993981, 201.009261, 17.891658)"/> | |
| 674 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 196.563434 -13.018733 L 196.563434 -19.023626 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 675 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549482 3.110718 C -2.085753 1.244014 -1.044328 0.363715 0.0010262 -0.00176592 C -1.044328 -0.363317 -2.085753 -1.243616 -2.549482 -3.11032 " transform="matrix(0, 0.993981, 0.993981, 0, 283.599412, 37.198199)"/> | |
| 676 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 196.563434 -37.226942 L 196.563434 -43.235765 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 677 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551413 3.110718 C -2.083754 1.244014 -1.046259 0.363715 -0.000904899 -0.00176592 C -1.046259 -0.363317 -2.083754 -1.243616 -2.551413 -3.11032 " transform="matrix(0, 0.993981, 0.993981, 0, 283.599412, 61.262618)"/> | |
| 678 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 196.563434 -61.43908 L 196.563434 -67.443974 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 679 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549414 3.110718 C -2.085685 1.244014 -1.044261 0.363715 0.00109391 -0.00176592 C -1.044261 -0.363317 -2.085685 -1.243616 -2.549414 -3.11032 " transform="matrix(0, 0.993981, 0.993981, 0, 283.599412, 85.327038)"/> | |
| 680 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 196.563434 -85.647289 L 196.563434 -91.656113 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 681 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551335 3.110718 C -2.083676 1.244014 -1.046182 0.363715 -0.000827189 -0.00176592 C -1.046182 -0.363317 -2.083676 -1.243616 -2.551335 -3.11032 " transform="matrix(0, 0.993981, 0.993981, 0, 283.599412, 109.391447)"/> | |
| 682 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 196.563434 -109.859428 L 196.563434 -115.864321 " transform="matrix(0.993981, 0, 0, -0.993981, 88.217335, 17.891658)"/> | |
| 683 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549336 3.110718 C -2.085607 1.244014 -1.044183 0.363715 0.00117162 -0.00176592 C -1.044183 -0.363317 -2.085607 -1.243616 -2.549336 -3.11032 " transform="matrix(0, 0.993981, 0.993981, 0, 283.599412, 133.455867)"/> | |
| 684 | +</svg> | |
added
dist/assets/fig/5ec47c739c936297.svg
+283 −0
@@ -0,0 +1,283 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="378.042pt" height="141.503pt" viewBox="0 0 378.042 141.503"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.921875 0 L 4.875 0 L 3.3125 -2.59375 C 4.140625 -2.84375 4.5625 -3.34375 4.5625 -4.15625 C 4.5625 -5.234375 3.8125 -5.796875 2.359375 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 L 1.640625 -2.453125 L 2.53125 -2.453125 Z M 1.640625 -3.0625 L 1.640625 -5.171875 L 2.359375 -5.171875 C 3.296875 -5.171875 3.71875 -4.875 3.71875 -4.15625 C 3.71875 -3.375 3.25 -3.0625 2.453125 -3.0625 Z M 1.640625 -3.0625 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.359375 -6.09375 L 3.015625 -6.734375 L 1.34375 -5.78125 L 1.578125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 2 -4.53125 C 1.078125 -4.53125 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.03125 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.453125 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.25 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.453125 -2.8125 1.203125 -2.96875 1.203125 -3.34375 C 1.203125 -3.6875 1.515625 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.171875 -3.53125 L 3.5 -4.03125 C 3.078125 -4.34375 2.625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.328125 0.609375 -6.03125 C 0.609375 -5.734375 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.703125 -5.734375 1.703125 -6.03125 C 1.703125 -6.328125 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.125 -4.296875 2.734375 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.171875 3.4375 -0.609375 L 3.5 0 L 4.1875 0 L 4.1875 -6.21875 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.859375 -4.53125 C 2.28125 -4.53125 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.109375 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.59375 -3.828125 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.515625 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.859375 -5.890625 C 1.5625 -5.890625 0.46875 -4.859375 0.46875 -2.90625 C 0.46875 -0.953125 1.484375 0.09375 2.890625 0.09375 C 3.671875 0.09375 4.21875 -0.21875 4.546875 -0.546875 L 4.140625 -1.046875 C 3.8125 -0.8125 3.453125 -0.578125 2.90625 -0.578125 C 2.015625 -0.578125 1.3125 -1.234375 1.3125 -2.90625 C 1.3125 -4.65625 2.046875 -5.234375 2.921875 -5.234375 C 3.328125 -5.234375 3.671875 -5.109375 4.03125 -4.8125 L 4.46875 -5.328125 C 4.015625 -5.6875 3.59375 -5.890625 2.859375 -5.890625 Z M 2.859375 -5.890625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.46875 -4.53125 C 1.203125 -4.53125 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.71875 -4.53125 2.46875 -4.53125 Z M 2.46875 -3.90625 C 3.1875 -3.90625 3.59375 -3.375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.375 1.71875 -3.90625 2.46875 -3.90625 Z M 2.46875 -3.90625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 5.21875 -4.53125 C 4.625 -4.53125 4.21875 -4.21875 3.90625 -3.734375 C 3.734375 -4.234375 3.328125 -4.53125 2.78125 -4.53125 C 2.203125 -4.53125 1.796875 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.59375 -3.921875 C 2.921875 -3.921875 3.21875 -3.734375 3.21875 -3.0625 L 3.21875 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.03125 -3.921875 C 5.359375 -3.921875 5.65625 -3.734375 5.65625 -3.0625 L 5.65625 0 L 6.421875 0 L 6.421875 -3.171875 C 6.421875 -4.015625 5.9375 -4.53125 5.21875 -4.53125 Z M 5.21875 -4.53125 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.703125 -4.53125 C 2.15625 -4.53125 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.78125 2.609375 -3.78125 C 2.765625 -3.78125 2.859375 -3.75 3 -3.71875 L 3.140625 -4.484375 C 3 -4.515625 2.84375 -4.53125 2.703125 -4.53125 Z M 2.703125 -4.53125 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.40625 -4.53125 C 1.203125 -4.53125 0.484375 -3.59375 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.5625 2.453125 -0.5625 C 1.75 -0.5625 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.453125 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.359375 -4.390625 2.9375 -4.53125 2.40625 -4.53125 Z M 2.40625 -4.53125 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 1.640625 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 Z M 1.640625 -5.796875 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 4.0625 -4.4375 L 3.28125 -4.4375 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.703125 -0.5 1.5 -0.734375 1.5 -1.34375 L 1.5 -4.4375 L 0.71875 -4.4375 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.59375 0.09375 3 -0.15625 3.34375 -0.6875 L 3.390625 0 L 4.0625 0 Z M 4.0625 -4.4375 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 4.265625 -5.796875 L 0.125 -5.796875 L 0.125 -5.109375 L 1.78125 -5.109375 L 1.78125 0 L 2.578125 0 L 2.578125 -5.109375 L 4.171875 -5.109375 Z M 4.265625 -5.796875 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-0"> | |
| 60 | +<path d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.53125 3.171875 -4.015625 C 2.96875 -4.34375 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.953125 -2.3125 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.8125 1 -3.34375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.421875 1.96875 -4.421875 C 2.34375 -4.421875 2.71875 -4.1875 2.84375 -3.796875 C 2.953125 -3.40625 2.953125 -2.90625 2.953125 -2.3125 Z M 2.953125 -2.3125 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-1"> | |
| 63 | +<path d="M 3.515625 -1.390625 C 3.515625 -2.1875 2.90625 -2.90625 2.046875 -2.90625 C 1.75 -2.90625 1.390625 -2.828125 1.078125 -2.5625 L 1.078125 -3.875 C 1.4375 -3.796875 1.640625 -3.796875 1.75 -3.796875 C 2.671875 -3.796875 3.21875 -4.421875 3.21875 -4.515625 C 3.21875 -4.59375 3.15625 -4.609375 3.125 -4.609375 C 3.125 -4.609375 3.09375 -4.609375 3.078125 -4.59375 C 2.90625 -4.53125 2.53125 -4.390625 2.015625 -4.390625 C 1.828125 -4.390625 1.453125 -4.40625 1.015625 -4.578125 C 0.9375 -4.609375 0.921875 -4.609375 0.921875 -4.609375 C 0.828125 -4.609375 0.828125 -4.546875 0.828125 -4.421875 L 0.828125 -2.375 C 0.828125 -2.265625 0.828125 -2.171875 0.9375 -2.171875 C 1 -2.171875 1.015625 -2.1875 1.078125 -2.28125 C 1.375 -2.65625 1.796875 -2.71875 2.046875 -2.71875 C 2.46875 -2.71875 2.65625 -2.375 2.6875 -2.328125 C 2.8125 -2.09375 2.84375 -1.828125 2.84375 -1.421875 C 2.84375 -1.21875 2.84375 -0.8125 2.640625 -0.5 C 2.46875 -0.25 2.171875 -0.078125 1.828125 -0.078125 C 1.375 -0.078125 0.90625 -0.328125 0.734375 -0.796875 C 1 -0.765625 1.140625 -0.953125 1.140625 -1.140625 C 1.140625 -1.4375 0.875 -1.484375 0.78125 -1.484375 C 0.78125 -1.484375 0.4375 -1.484375 0.4375 -1.109375 C 0.4375 -0.484375 1.015625 0.140625 1.84375 0.140625 C 2.734375 0.140625 3.515625 -0.515625 3.515625 -1.390625 Z M 3.515625 -1.390625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-2"> | |
| 66 | +<path d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-3"> | |
| 69 | +<path d="M 3.578125 -2.28125 C 3.578125 -4.015625 2.8125 -4.609375 2 -4.609375 C 1.765625 -4.609375 1.28125 -4.578125 0.890625 -4.1875 C 0.65625 -3.96875 0.375 -3.6875 0.375 -3.0625 C 0.375 -2.1875 1.078125 -1.53125 1.890625 -1.53125 C 2.453125 -1.53125 2.75 -1.890625 2.90625 -2.21875 L 2.90625 -2.078125 C 2.90625 -0.34375 2.046875 -0.078125 1.640625 -0.078125 C 1.484375 -0.078125 1.109375 -0.09375 0.921875 -0.3125 C 1.203125 -0.34375 1.234375 -0.578125 1.234375 -0.640625 C 1.234375 -0.8125 1.109375 -0.96875 0.90625 -0.96875 C 0.703125 -0.96875 0.5625 -0.828125 0.5625 -0.625 C 0.5625 -0.15625 0.96875 0.140625 1.640625 0.140625 C 2.640625 0.140625 3.578125 -0.796875 3.578125 -2.28125 Z M 2.890625 -2.984375 C 2.890625 -2.09375 2.359375 -1.71875 1.921875 -1.71875 C 1.65625 -1.71875 1.390625 -1.8125 1.203125 -2.140625 C 1.046875 -2.390625 1.046875 -2.6875 1.046875 -3.0625 C 1.046875 -3.46875 1.046875 -3.75 1.25 -4.03125 C 1.40625 -4.265625 1.640625 -4.421875 2 -4.421875 C 2.359375 -4.421875 2.5625 -4.1875 2.671875 -4.015625 C 2.859375 -3.71875 2.890625 -3.234375 2.890625 -2.984375 Z M 2.890625 -2.984375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-4"> | |
| 72 | +<path d="M 3.578125 -1.171875 C 3.578125 -1.640625 3.296875 -2.015625 2.90625 -2.265625 L 2.46875 -2.515625 C 3.015625 -2.78125 3.359375 -3.09375 3.359375 -3.578125 C 3.359375 -4.25 2.65625 -4.609375 1.984375 -4.609375 C 1.21875 -4.609375 0.59375 -4.109375 0.59375 -3.453125 C 0.59375 -3.125 0.75 -2.890625 0.875 -2.75 C 1 -2.609375 1.046875 -2.578125 1.453125 -2.34375 C 1.0625 -2.171875 0.375 -1.796875 0.375 -1.0625 C 0.375 -0.296875 1.171875 0.140625 1.96875 0.140625 C 2.84375 0.140625 3.578125 -0.421875 3.578125 -1.171875 Z M 2.984375 -3.578125 C 2.984375 -2.96875 2.25 -2.65625 2.25 -2.65625 C 2.25 -2.65625 2.21875 -2.65625 2.171875 -2.6875 L 1.328125 -3.171875 C 1.15625 -3.28125 0.953125 -3.46875 0.953125 -3.71875 C 0.953125 -4.15625 1.46875 -4.421875 1.96875 -4.421875 C 2.515625 -4.421875 2.984375 -4.078125 2.984375 -3.578125 Z M 3.15625 -0.9375 C 3.15625 -0.40625 2.578125 -0.078125 1.984375 -0.078125 C 1.34375 -0.078125 0.796875 -0.5 0.796875 -1.0625 C 0.796875 -1.578125 1.171875 -1.96875 1.671875 -2.203125 C 2.0625 -1.984375 2.078125 -1.984375 2.625 -1.65625 C 2.8125 -1.546875 3.15625 -1.34375 3.15625 -0.9375 Z M 3.15625 -0.9375 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-5"> | |
| 75 | +<path d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-2-0"> | |
| 78 | +<path d="M -5.796875 -4.625 L -5.796875 -3.8125 L -0.859375 -2.359375 L -5.796875 -0.90625 L -5.796875 -0.046875 L 0 -1.921875 L 0 -2.78125 Z M -5.796875 -4.625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-2-1"> | |
| 81 | +<path d="M -1.03125 -3.734375 L -3.0625 -3.734375 C -3.984375 -3.734375 -4.53125 -3.25 -4.53125 -2.1875 C -4.53125 -1.6875 -4.4375 -1.203125 -4.234375 -0.65625 L -3.671875 -0.84375 C -3.8125 -1.296875 -3.90625 -1.71875 -3.90625 -2.046875 C -3.90625 -2.65625 -3.671875 -2.96875 -3.03125 -2.96875 L -2.703125 -2.96875 L -2.703125 -2.28125 C -2.703125 -1.046875 -2.1875 -0.34375 -1.234375 -0.34375 C -0.453125 -0.34375 0.09375 -0.859375 0.09375 -1.75 C 0.09375 -2.28125 -0.09375 -2.75 -0.5625 -3.0625 C -0.125 -3.203125 0.046875 -3.484375 0.09375 -3.9375 L -0.4375 -4.109375 C -0.515625 -3.890625 -0.640625 -3.734375 -1.03125 -3.734375 Z M -0.484375 -1.921875 C -0.484375 -1.421875 -0.75 -1.15625 -1.28125 -1.15625 C -1.890625 -1.15625 -2.1875 -1.578125 -2.1875 -2.390625 L -2.1875 -2.96875 L -1.171875 -2.96875 C -0.703125 -2.71875 -0.484375 -2.375 -0.484375 -1.921875 Z M -0.484375 -1.921875 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-2-2"> | |
| 84 | +<path d="M 0.09375 -1.640625 C 0.09375 -1.875 0.046875 -2.09375 -0.046875 -2.265625 L -0.59375 -2.0625 C -0.5625 -1.96875 -0.53125 -1.890625 -0.53125 -1.78125 C -0.53125 -1.578125 -0.65625 -1.5 -0.890625 -1.5 L -6.296875 -1.5 L -6.21875 -0.71875 L -0.875 -0.71875 C -0.25 -0.71875 0.09375 -1.078125 0.09375 -1.640625 Z M 0.09375 -1.640625 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-2-3"> | |
| 87 | +<path d="M -2.34375 -4.140625 C -3.703125 -4.140625 -4.53125 -3.515625 -4.53125 -2.3125 C -4.53125 -1.171875 -3.546875 -0.484375 -2.171875 -0.484375 C -0.765625 -0.484375 0.09375 -1.203125 0.09375 -2.4375 C 0.09375 -3.046875 -0.109375 -3.546875 -0.453125 -3.984375 L -0.921875 -3.640625 C -0.640625 -3.265625 -0.53125 -2.9375 -0.53125 -2.5 C -0.53125 -1.859375 -0.921875 -1.375 -1.953125 -1.296875 L -1.953125 -4.125 C -2.046875 -4.140625 -2.1875 -4.140625 -2.34375 -4.140625 Z M -2.515625 -3.375 L -2.515625 -1.296875 C -3.5 -1.359375 -3.921875 -1.75 -3.921875 -2.34375 C -3.921875 -3.03125 -3.4375 -3.375 -2.578125 -3.375 Z M -2.515625 -3.375 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-2-4"> | |
| 90 | +<path d="M -4.4375 -4.0625 L -4.4375 -3.28125 L -1.265625 -3.28125 C -0.828125 -3.015625 -0.5 -2.65625 -0.5 -2.171875 C -0.5 -1.703125 -0.734375 -1.5 -1.34375 -1.5 L -4.4375 -1.5 L -4.4375 -0.71875 L -1.25 -0.71875 C -0.390625 -0.71875 0.09375 -1.1875 0.09375 -1.953125 C 0.09375 -2.59375 -0.15625 -3 -0.6875 -3.34375 L 0 -3.390625 L 0 -4.0625 Z M -4.4375 -4.0625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-2-5"> | |
| 93 | +<path d="M -4.53125 -2.703125 C -4.53125 -2.15625 -4.1875 -1.75 -3.53125 -1.515625 L -4.4375 -1.4375 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 L -2.53125 -1.546875 C -3.375 -1.734375 -3.78125 -2.046875 -3.78125 -2.609375 C -3.78125 -2.765625 -3.75 -2.859375 -3.71875 -3 L -4.484375 -3.140625 C -4.515625 -3 -4.53125 -2.84375 -4.53125 -2.703125 Z M -4.53125 -2.703125 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-2-6"> | |
| 96 | +<path d="M -7.109375 -1.90625 C -5.9375 -1.078125 -4.9375 -0.34375 -2.9375 -0.34375 C -0.953125 -0.34375 0.046875 -1.078125 1.21875 -1.90625 L 0.875 -2.390625 C -0.234375 -1.625 -1.140625 -1.140625 -2.9375 -1.140625 C -4.75 -1.140625 -5.65625 -1.625 -6.765625 -2.390625 Z M -7.109375 -1.90625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-2-7"> | |
| 99 | +<path d="M -4.53125 -5.21875 C -4.53125 -4.625 -4.21875 -4.21875 -3.734375 -3.90625 C -4.234375 -3.734375 -4.53125 -3.328125 -4.53125 -2.78125 C -4.53125 -2.203125 -4.234375 -1.796875 -3.78125 -1.5 L -4.4375 -1.4375 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 L -3.140625 -1.546875 C -3.609375 -1.84375 -3.921875 -2.109375 -3.921875 -2.59375 C -3.921875 -2.921875 -3.734375 -3.21875 -3.0625 -3.21875 L 0 -3.21875 L 0 -3.984375 L -3.140625 -3.984375 C -3.609375 -4.28125 -3.921875 -4.546875 -3.921875 -5.03125 C -3.921875 -5.359375 -3.734375 -5.65625 -3.0625 -5.65625 L 0 -5.65625 L 0 -6.421875 L -3.171875 -6.421875 C -4.015625 -6.421875 -4.53125 -5.9375 -4.53125 -5.21875 Z M -4.53125 -5.21875 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-2-8"> | |
| 102 | +<path d="M -6.5625 -1.15625 C -6.5625 -0.828125 -6.328125 -0.609375 -6.03125 -0.609375 C -5.734375 -0.609375 -5.5 -0.828125 -5.5 -1.15625 C -5.5 -1.484375 -5.734375 -1.703125 -6.03125 -1.703125 C -6.328125 -1.703125 -6.5625 -1.484375 -6.5625 -1.15625 Z M -4.4375 -1.546875 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 Z M -4.4375 -1.546875 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-2-9"> | |
| 105 | +<path d="M -6.296875 -3.40625 L -3.984375 -3.40625 C -4.296875 -3.125 -4.53125 -2.734375 -4.53125 -2.21875 C -4.53125 -1.140625 -3.546875 -0.484375 -2.1875 -0.484375 C -0.8125 -0.484375 0.09375 -1.078125 0.09375 -2.15625 C 0.09375 -2.703125 -0.171875 -3.140625 -0.609375 -3.4375 L 0 -3.5 L 0 -4.1875 L -6.21875 -4.1875 Z M -0.515625 -2.3125 C -0.515625 -1.6875 -1.046875 -1.3125 -2.203125 -1.3125 C -3.359375 -1.3125 -3.921875 -1.71875 -3.921875 -2.390625 C -3.921875 -2.828125 -3.6875 -3.140625 -3.34375 -3.40625 L -1.171875 -3.40625 C -0.75 -3.125 -0.515625 -2.8125 -0.515625 -2.3125 Z M -0.515625 -2.3125 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-2-10"> | |
| 108 | +<path d="M -4.53125 -2 C -4.53125 -1.078125 -4.015625 -0.40625 -3.3125 -0.40625 C -2.6875 -0.40625 -2.28125 -0.78125 -2.03125 -1.734375 C -1.796875 -2.59375 -1.625 -2.8125 -1.1875 -2.8125 C -0.765625 -2.8125 -0.515625 -2.453125 -0.515625 -1.859375 C -0.515625 -1.390625 -0.6875 -0.96875 -0.953125 -0.625 L -0.484375 -0.203125 C -0.140625 -0.59375 0.09375 -1.140625 0.09375 -1.890625 C 0.09375 -2.78125 -0.3125 -3.625 -1.25 -3.625 C -2.015625 -3.625 -2.390625 -3.09375 -2.625 -2.15625 C -2.8125 -1.453125 -2.96875 -1.203125 -3.34375 -1.203125 C -3.6875 -1.203125 -3.921875 -1.515625 -3.921875 -2.03125 C -3.921875 -2.4375 -3.796875 -2.78125 -3.53125 -3.171875 L -4.03125 -3.5 C -4.34375 -3.078125 -4.53125 -2.625 -4.53125 -2 Z M -4.53125 -2 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-2-11"> | |
| 111 | +<path d="M -1.5625 -4.125 C -2.640625 -4.125 -3 -3.359375 -3.265625 -2.46875 C -3.578125 -1.453125 -3.8125 -1.234375 -4.28125 -1.234375 C -4.8125 -1.234375 -5.078125 -1.6875 -5.078125 -2.25 C -5.078125 -2.71875 -4.9375 -3.125 -4.578125 -3.5 L -5.0625 -3.953125 C -5.40625 -3.578125 -5.625 -3.171875 -5.6875 -2.609375 L -6.921875 -2.609375 L -6.921875 -1.9375 L -5.703125 -1.9375 C -5.59375 -1.046875 -5.03125 -0.4375 -4.25 -0.4375 C -3.375 -0.4375 -2.953125 -1.015625 -2.625 -2.09375 C -2.328125 -3.0625 -2.078125 -3.328125 -1.53125 -3.328125 C -0.859375 -3.328125 -0.53125 -2.78125 -0.53125 -2.109375 C -0.53125 -1.5 -0.75 -1.046875 -1.125 -0.671875 L -0.625 -0.203125 C -0.203125 -0.640625 0.0625 -1.203125 0.09375 -1.9375 L 1.296875 -1.9375 L 1.296875 -2.609375 L 0.0625 -2.609375 C -0.09375 -3.578125 -0.71875 -4.125 -1.5625 -4.125 Z M -1.5625 -4.125 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-2-12"> | |
| 114 | +<path d="M -7.109375 -0.828125 L -6.765625 -0.34375 C -5.65625 -1.09375 -4.75 -1.578125 -2.9375 -1.578125 C -1.140625 -1.578125 -0.234375 -1.09375 0.875 -0.34375 L 1.21875 -0.828125 C 0.046875 -1.640625 -0.953125 -2.390625 -2.9375 -2.390625 C -4.9375 -2.390625 -5.9375 -1.640625 -7.109375 -0.828125 Z M -7.109375 -0.828125 "/> | |
| 115 | +</g> | |
| 116 | +</g> | |
| 117 | +<clipPath id="clip-0"> | |
| 118 | +<path clip-rule="nonzero" d="M 55 20 L 360 20 L 360 118.671875 L 55 118.671875 Z M 55 20 "/> | |
| 119 | +</clipPath> | |
| 120 | +<clipPath id="clip-1"> | |
| 121 | +<path clip-rule="nonzero" d="M 55 20 L 361 20 L 361 118.671875 L 55 118.671875 Z M 55 20 "/> | |
| 122 | +</clipPath> | |
| 123 | +</defs> | |
| 124 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(84.999084%, 84.999084%, 84.999084%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -27.445233 0.000314601 L 301.898878 0.000314601 M -27.445233 51.775277 L 301.898878 51.775277 M -27.445233 103.554159 L 301.898878 103.554159 " transform="matrix(0.9965, 0, 0, -0.9965, 70.903862, 118.672189)"/> | |
| 125 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00152358 -4.252853 L -0.00152358 0.000314601 M 68.613629 -4.252853 L 68.613629 0.000314601 M 137.224863 -4.252853 L 137.224863 0.000314601 M 205.836096 -4.252853 L 205.836096 0.000314601 M 274.451249 -4.252853 L 274.451249 0.000314601 " transform="matrix(0.9965, 0, 0, -0.9965, 70.903862, 118.672189)"/> | |
| 126 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -27.445233 0.000314601 L -23.195985 0.000314601 M -27.445233 51.775277 L -23.195985 51.775277 M -27.445233 103.554159 L -23.195985 103.554159 " transform="matrix(0.9965, 0, 0, -0.9965, 70.903862, 118.672189)"/> | |
| 127 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -27.445233 0.000314601 L 301.898878 0.000314601 " transform="matrix(0.9965, 0, 0, -0.9965, 70.903862, 118.672189)"/> | |
| 128 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -27.445233 0.000314601 L -27.445233 113.91072 " transform="matrix(0.9965, 0, 0, -0.9965, 70.903862, 118.672189)"/> | |
| 129 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 130 | +<use xlink:href="#glyph-0-0" x="49.591717" y="132.832454"/> | |
| 131 | +</g> | |
| 132 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 133 | +<use xlink:href="#glyph-0-1" x="54.631057" y="132.832454"/> | |
| 134 | +<use xlink:href="#glyph-0-2" x="59.200059" y="132.832454"/> | |
| 135 | +<use xlink:href="#glyph-0-3" x="63.122345" y="132.832454"/> | |
| 136 | +<use xlink:href="#glyph-0-4" x="65.440442" y="132.832454"/> | |
| 137 | +<use xlink:href="#glyph-0-5" x="70.395793" y="132.832454"/> | |
| 138 | +<use xlink:href="#glyph-0-6" x="74.964795" y="132.832454"/> | |
| 139 | +<use xlink:href="#glyph-0-7" x="79.827759" y="132.832454"/> | |
| 140 | +<use xlink:href="#glyph-0-3" x="82.859762" y="132.832454"/> | |
| 141 | +<use xlink:href="#glyph-0-5" x="85.177858" y="132.832454"/> | |
| 142 | +<use xlink:href="#glyph-0-8" x="89.74686" y="132.832454"/> | |
| 143 | +</g> | |
| 144 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 145 | +<use xlink:href="#glyph-0-9" x="116.964085" y="132.832454"/> | |
| 146 | +</g> | |
| 147 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 148 | +<use xlink:href="#glyph-0-10" x="121.499491" y="132.832454"/> | |
| 149 | +<use xlink:href="#glyph-0-11" x="126.404449" y="132.832454"/> | |
| 150 | +<use xlink:href="#glyph-0-11" x="133.543515" y="132.832454"/> | |
| 151 | +<use xlink:href="#glyph-0-5" x="140.68258" y="132.832454"/> | |
| 152 | +<use xlink:href="#glyph-0-12" x="145.251582" y="132.832454"/> | |
| 153 | +</g> | |
| 154 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 155 | +<use xlink:href="#glyph-0-13" x="148.300383" y="132.832454"/> | |
| 156 | +<use xlink:href="#glyph-0-3" x="152.315058" y="132.832454"/> | |
| 157 | +<use xlink:href="#glyph-0-14" x="154.633154" y="132.832454"/> | |
| 158 | +</g> | |
| 159 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 160 | +<use xlink:href="#glyph-0-8" x="159.118167" y="132.832454"/> | |
| 161 | +</g> | |
| 162 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 163 | +<use xlink:href="#glyph-0-15" x="181.900011" y="132.832454"/> | |
| 164 | +<use xlink:href="#glyph-0-6" x="184.377687" y="132.832454"/> | |
| 165 | +<use xlink:href="#glyph-0-2" x="189.24065" y="132.832454"/> | |
| 166 | +<use xlink:href="#glyph-0-7" x="193.162937" y="132.832454"/> | |
| 167 | +<use xlink:href="#glyph-0-3" x="196.19494" y="132.832454"/> | |
| 168 | +<use xlink:href="#glyph-0-7" x="198.513036" y="132.832454"/> | |
| 169 | +<use xlink:href="#glyph-0-16" x="201.54504" y="132.832454"/> | |
| 170 | +<use xlink:href="#glyph-0-7" x="206.374407" y="132.832454"/> | |
| 171 | +<use xlink:href="#glyph-0-3" x="209.40641" y="132.832454"/> | |
| 172 | +<use xlink:href="#glyph-0-10" x="211.724507" y="132.832454"/> | |
| 173 | +<use xlink:href="#glyph-0-6" x="216.629465" y="132.832454"/> | |
| 174 | +<use xlink:href="#glyph-0-6" x="221.492428" y="132.832454"/> | |
| 175 | +<use xlink:href="#glyph-0-5" x="226.355392" y="132.832454"/> | |
| 176 | +<use xlink:href="#glyph-0-8" x="230.924394" y="132.832454"/> | |
| 177 | +</g> | |
| 178 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 179 | +<use xlink:href="#glyph-0-15" x="257.691808" y="132.832454"/> | |
| 180 | +<use xlink:href="#glyph-0-6" x="260.169484" y="132.832454"/> | |
| 181 | +<use xlink:href="#glyph-0-4" x="265.032447" y="132.832454"/> | |
| 182 | +<use xlink:href="#glyph-0-16" x="269.987798" y="132.832454"/> | |
| 183 | +<use xlink:href="#glyph-0-2" x="274.817166" y="132.832454"/> | |
| 184 | +<use xlink:href="#glyph-0-7" x="278.739453" y="132.832454"/> | |
| 185 | +<use xlink:href="#glyph-0-12" x="281.771456" y="132.832454"/> | |
| 186 | +<use xlink:href="#glyph-0-3" x="284.988235" y="132.832454"/> | |
| 187 | +<use xlink:href="#glyph-0-5" x="287.306332" y="132.832454"/> | |
| 188 | +<use xlink:href="#glyph-0-8" x="291.875333" y="132.832454"/> | |
| 189 | +</g> | |
| 190 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 191 | +<use xlink:href="#glyph-0-17" x="329.217588" y="132.832454"/> | |
| 192 | +</g> | |
| 193 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 194 | +<use xlink:href="#glyph-0-5" x="333.097881" y="132.832454"/> | |
| 195 | +<use xlink:href="#glyph-0-12" x="337.666883" y="132.832454"/> | |
| 196 | +<use xlink:href="#glyph-0-12" x="340.883661" y="132.832454"/> | |
| 197 | +</g> | |
| 198 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 199 | +<use xlink:href="#glyph-0-14" x="343.932462" y="132.832454"/> | |
| 200 | +<use xlink:href="#glyph-0-3" x="348.45947" y="132.832454"/> | |
| 201 | +<use xlink:href="#glyph-0-6" x="350.777566" y="132.832454"/> | |
| 202 | +<use xlink:href="#glyph-0-2" x="355.64053" y="132.832454"/> | |
| 203 | +</g> | |
| 204 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 205 | +<use xlink:href="#glyph-1-0" x="36.287445" y="120.911324"/> | |
| 206 | +</g> | |
| 207 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 208 | +<use xlink:href="#glyph-1-1" x="28.373242" y="69.31654"/> | |
| 209 | +<use xlink:href="#glyph-1-0" x="32.330226" y="69.31654"/> | |
| 210 | +<use xlink:href="#glyph-1-0" x="36.287209" y="69.31654"/> | |
| 211 | +</g> | |
| 212 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 213 | +<use xlink:href="#glyph-1-2" x="23.059904" y="17.72076"/> | |
| 214 | +</g> | |
| 215 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 216 | +<use xlink:href="#glyph-1-0" x="28.372019" y="17.72076"/> | |
| 217 | +<use xlink:href="#glyph-1-0" x="32.329003" y="17.72076"/> | |
| 218 | +<use xlink:href="#glyph-1-0" x="36.285986" y="17.72076"/> | |
| 219 | +</g> | |
| 220 | +<g clip-path="url(#clip-0)"> | |
| 221 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" d="M 55.367188 118.671875 L 86.441406 118.671875 L 86.441406 20.640625 L 55.367188 20.640625 Z M 123.738281 118.671875 L 154.8125 118.671875 L 154.8125 100.097656 L 123.738281 100.097656 Z M 192.113281 118.671875 L 223.183594 118.671875 L 223.183594 103.195312 L 192.113281 103.195312 Z M 260.484375 118.671875 L 291.558594 118.671875 L 291.558594 106.289062 L 260.484375 106.289062 Z M 328.859375 118.671875 L 359.929688 118.671875 L 359.929688 108.351562 L 328.859375 108.351562 Z M 328.859375 118.671875 "/> | |
| 222 | +</g> | |
| 223 | +<g clip-path="url(#clip-1)"> | |
| 224 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -15.591244 0.000314601 L 15.592117 0.000314601 L 15.592117 98.375879 L -15.591244 98.375879 Z M 53.019989 0.000314601 L 84.20335 0.000314601 L 84.20335 18.639771 L 53.019989 18.639771 Z M 121.635142 0.000314601 L 152.814583 0.000314601 L 152.814583 15.531235 L 121.635142 15.531235 Z M 190.246375 0.000314601 L 221.429736 0.000314601 L 221.429736 12.426619 L 190.246375 12.426619 Z M 258.861528 0.000314601 L 290.040969 0.000314601 L 290.040969 10.356875 L 258.861528 10.356875 Z M 258.861528 0.000314601 " transform="matrix(0.9965, 0, 0, -0.9965, 70.903862, 118.672189)"/> | |
| 225 | +</g> | |
| 226 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 227 | +<use xlink:href="#glyph-1-3" x="64.967712" y="17.332125"/> | |
| 228 | +<use xlink:href="#glyph-1-1" x="68.924695" y="17.332125"/> | |
| 229 | +<use xlink:href="#glyph-1-0" x="72.881679" y="17.332125"/> | |
| 230 | +</g> | |
| 231 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 232 | +<use xlink:href="#glyph-1-2" x="133.33957" y="96.789049"/> | |
| 233 | +<use xlink:href="#glyph-1-4" x="137.296553" y="96.789049"/> | |
| 234 | +<use xlink:href="#glyph-1-0" x="141.253537" y="96.789049"/> | |
| 235 | +</g> | |
| 236 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 237 | +<use xlink:href="#glyph-1-2" x="201.711428" y="99.884178"/> | |
| 238 | +<use xlink:href="#glyph-1-1" x="205.668411" y="99.884178"/> | |
| 239 | +<use xlink:href="#glyph-1-0" x="209.625395" y="99.884178"/> | |
| 240 | +</g> | |
| 241 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 242 | +<use xlink:href="#glyph-1-2" x="270.082289" y="102.980303"/> | |
| 243 | +<use xlink:href="#glyph-1-5" x="274.039273" y="102.980303"/> | |
| 244 | +<use xlink:href="#glyph-1-0" x="277.996256" y="102.980303"/> | |
| 245 | +</g> | |
| 246 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 247 | +<use xlink:href="#glyph-1-2" x="338.454147" y="105.044055"/> | |
| 248 | +<use xlink:href="#glyph-1-0" x="342.411131" y="105.044055"/> | |
| 249 | +<use xlink:href="#glyph-1-0" x="346.368114" y="105.044055"/> | |
| 250 | +</g> | |
| 251 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 252 | +<use xlink:href="#glyph-2-0" x="15.335036" y="97.650025"/> | |
| 253 | +</g> | |
| 254 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 255 | +<use xlink:href="#glyph-2-1" x="15.335036" y="93.232203"/> | |
| 256 | +</g> | |
| 257 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 258 | +<use xlink:href="#glyph-2-2" x="15.335036" y="88.74719"/> | |
| 259 | +</g> | |
| 260 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 261 | +<use xlink:href="#glyph-2-3" x="15.335036" y="86.319908"/> | |
| 262 | +<use xlink:href="#glyph-2-4" x="15.335036" y="81.750906"/> | |
| 263 | +<use xlink:href="#glyph-2-5" x="15.335036" y="76.921538"/> | |
| 264 | +</g> | |
| 265 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 266 | +<use xlink:href="#glyph-2-6" x="15.335036" y="71.47905"/> | |
| 267 | +<use xlink:href="#glyph-2-7" x="15.335036" y="68.757806"/> | |
| 268 | +<use xlink:href="#glyph-2-8" x="15.335036" y="61.618741"/> | |
| 269 | +<use xlink:href="#glyph-2-2" x="15.335036" y="59.300644"/> | |
| 270 | +<use xlink:href="#glyph-2-2" x="15.335036" y="56.831368"/> | |
| 271 | +<use xlink:href="#glyph-2-8" x="15.335036" y="54.362091"/> | |
| 272 | +<use xlink:href="#glyph-2-1" x="15.335036" y="52.043994"/> | |
| 273 | +<use xlink:href="#glyph-2-5" x="15.335036" y="47.516987"/> | |
| 274 | +</g> | |
| 275 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 276 | +<use xlink:href="#glyph-2-9" x="15.335036" y="44.468186"/> | |
| 277 | +<use xlink:href="#glyph-2-10" x="15.335036" y="39.512835"/> | |
| 278 | +</g> | |
| 279 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 280 | +<use xlink:href="#glyph-2-11" x="15.335036" y="33.364839"/> | |
| 281 | +<use xlink:href="#glyph-2-12" x="15.335036" y="28.905023"/> | |
| 282 | +</g> | |
| 283 | +</svg> | |
added
dist/assets/fig/6230b752d3c99503.svg
+437 −0
@@ -0,0 +1,437 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="399.36pt" height="52.881pt" viewBox="0 0 399.36 52.881"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 1.921875 -5.828125 L 0.546875 -5.828125 L 0.546875 0 L 4.046875 0 L 4.1875 -1.09375 L 1.921875 -1.09375 Z M 1.921875 -5.828125 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.5 -6.03125 L 2.984375 -7.015625 L 1.15625 -5.90625 L 1.515625 -5.234375 Z M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.609375 2.359375 -4.609375 C 1 -4.609375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.8125 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.328125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.390625 -1.84375 C 4.40625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.921875 -3.71875 3.109375 -3.296875 3.109375 -2.703125 Z M 3.109375 -2.640625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 4.328125 -5.1875 C 3.78125 -4.859375 3.21875 -4.578125 2.21875 -4.609375 C 1.046875 -4.609375 0.265625 -3.984375 0.265625 -2.96875 C 0.265625 -2.390625 0.484375 -2 1.0625 -1.703125 C 0.734375 -1.5 0.53125 -1.171875 0.53125 -0.84375 C 0.53125 -0.359375 0.921875 0.046875 1.90625 0.046875 L 2.546875 0.046875 C 3 0.046875 3.1875 0.21875 3.1875 0.484375 C 3.1875 0.765625 3 0.984375 2.21875 0.984375 C 1.40625 0.984375 1.25 0.8125 1.25 0.421875 L 0.046875 0.421875 C 0.046875 1.3125 0.5 1.859375 2.1875 1.859375 C 3.71875 1.859375 4.515625 1.296875 4.515625 0.390625 C 4.515625 -0.359375 3.859375 -0.90625 2.8125 -0.90625 L 2.140625 -0.90625 C 1.71875 -0.90625 1.65625 -1.046875 1.65625 -1.171875 C 1.65625 -1.28125 1.703125 -1.375 1.796875 -1.421875 C 1.953125 -1.390625 2.125 -1.375 2.3125 -1.375 C 3.46875 -1.375 4.1875 -2.015625 4.1875 -2.875 C 4.1875 -3.453125 3.90625 -3.78125 3.34375 -4.03125 C 3.90625 -4.03125 4.328125 -4.078125 4.625 -4.203125 Z M 2.25 -3.734375 C 2.703125 -3.734375 2.921875 -3.5 2.921875 -3.015625 C 2.921875 -2.5 2.6875 -2.234375 2.25 -2.234375 C 1.84375 -2.234375 1.578125 -2.5 1.578125 -3 C 1.578125 -3.453125 1.84375 -3.734375 2.25 -3.734375 Z M 2.25 -3.734375 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 4.046875 -1.296875 L 4.046875 -3.03125 C 4.046875 -4.0625 3.5 -4.609375 2.203125 -4.609375 C 1.703125 -4.609375 1.078125 -4.484375 0.515625 -4.28125 L 0.828125 -3.40625 C 1.265625 -3.5625 1.703125 -3.640625 2 -3.640625 C 2.53125 -3.640625 2.75 -3.484375 2.75 -2.953125 L 2.75 -2.75 L 2.296875 -2.75 C 0.953125 -2.75 0.203125 -2.234375 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.1875 0.140625 2.6875 -0.03125 3 -0.515625 C 3.21875 -0.078125 3.5625 0.078125 4.078125 0.125 L 4.359375 -0.75 C 4.140625 -0.828125 4.046875 -0.953125 4.046875 -1.296875 Z M 2.046875 -0.8125 C 1.71875 -0.8125 1.53125 -1.015625 1.53125 -1.375 C 1.53125 -1.8125 1.8125 -2.03125 2.421875 -2.03125 L 2.75 -2.03125 L 2.75 -1.234375 C 2.59375 -0.96875 2.34375 -0.8125 2.046875 -0.8125 Z M 2.046875 -0.8125 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 1.6875 0.140625 C 2.015625 0.140625 2.296875 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.859375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.375 L 0.453125 -6.234375 L 0.453125 -1.140625 C 0.453125 -0.3125 0.90625 0.140625 1.6875 0.140625 Z M 1.6875 0.140625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.609375 2.359375 -4.609375 C 1 -4.609375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.8125 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.328125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.390625 -1.84375 C 4.40625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.453125 1.9375 -3.71875 2.390625 -3.71875 C 2.921875 -3.71875 3.109375 -3.296875 3.109375 -2.703125 Z M 3.109375 -2.640625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 5.453125 -4.609375 C 4.875 -4.609375 4.46875 -4.375 4.109375 -3.90625 C 3.9375 -4.359375 3.5625 -4.609375 3.0625 -4.609375 C 2.515625 -4.609375 2.09375 -4.375 1.765625 -3.9375 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.03125 -3.421875 2.25 -3.625 2.515625 -3.625 C 2.71875 -3.625 2.90625 -3.5 2.90625 -3.03125 L 2.90625 0 L 4.234375 0 L 4.234375 -3.046875 C 4.421875 -3.421875 4.625 -3.625 4.90625 -3.625 C 5.109375 -3.625 5.28125 -3.5 5.28125 -3.03125 L 5.28125 0 L 6.609375 0 L 6.609375 -3.265625 C 6.609375 -4.109375 6.140625 -4.609375 5.453125 -4.609375 Z M 5.453125 -4.609375 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 3.125 -4.609375 C 2.5625 -4.609375 2.140625 -4.375 1.765625 -3.921875 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.265625 C 4.359375 -4.109375 3.90625 -4.609375 3.125 -4.609375 Z M 3.125 -4.609375 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.875 -1.046875 C 2.703125 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.125 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.46875 L 1.96875 -4.46875 L 1.96875 -5.578125 L 0.640625 -5.4375 L 0.640625 -4.46875 L 0.015625 -4.46875 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.328125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 3.03125 -4.609375 C 2.59375 -4.609375 2.125 -4.4375 1.75 -3.96875 L 1.6875 -4.46875 L 0.515625 -4.46875 L 0.515625 1.859375 L 1.84375 1.71875 L 1.84375 -0.3125 C 2.125 -0.015625 2.484375 0.140625 2.921875 0.140625 C 4.03125 0.140625 4.703125 -0.859375 4.703125 -2.25 C 4.703125 -3.6875 4.1875 -4.609375 3.03125 -4.609375 Z M 2.515625 -0.828125 C 2.234375 -0.828125 2.03125 -0.953125 1.84375 -1.234375 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.609375 -3.625 C 3.046875 -3.625 3.328125 -3.34375 3.328125 -2.234375 C 3.328125 -1.234375 3.015625 -0.828125 2.515625 -0.828125 Z M 2.515625 -0.828125 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.9375 -4.59375 C 2.421875 -4.59375 1.984375 -4.21875 1.78125 -3.59375 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -2.25 C 2 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.03125 -3.28125 3.171875 -3.25 L 3.375 -4.53125 C 3.234375 -4.578125 3.109375 -4.59375 2.9375 -4.59375 Z M 2.9375 -4.59375 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.0625 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.0625 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.46875 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.09375 -4.609375 C 0.96875 -4.609375 0.265625 -4.015625 0.265625 -3.25 C 0.265625 -2.5625 0.703125 -2.09375 1.59375 -1.84375 C 2.390625 -1.625 2.53125 -1.53125 2.53125 -1.234375 C 2.53125 -0.953125 2.28125 -0.8125 1.890625 -0.8125 C 1.453125 -0.8125 1.03125 -0.984375 0.703125 -1.25 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.921875 0.140625 C 3.03125 0.140625 3.90625 -0.40625 3.90625 -1.328125 C 3.90625 -2.125 3.40625 -2.5 2.515625 -2.75 C 1.71875 -2.984375 1.609375 -3.078125 1.609375 -3.328125 C 1.609375 -3.515625 1.78125 -3.65625 2.140625 -3.65625 C 2.53125 -3.65625 2.90625 -3.53125 3.25 -3.3125 L 3.734375 -4.0625 C 3.328125 -4.390625 2.734375 -4.609375 2.09375 -4.609375 Z M 2.09375 -4.609375 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.421875 -5.828125 L 0.546875 -5.828125 L 0.546875 0 L 1.921875 0 L 1.921875 -1.9375 L 2.5625 -1.9375 C 3.90625 -1.9375 4.859375 -2.578125 4.859375 -3.921875 C 4.859375 -5.203125 3.9375 -5.828125 2.421875 -5.828125 Z M 2.4375 -2.9375 L 1.921875 -2.9375 L 1.921875 -4.84375 L 2.40625 -4.84375 C 3.09375 -4.84375 3.4375 -4.546875 3.4375 -3.921875 C 3.4375 -3.1875 3.0625 -2.9375 2.4375 -2.9375 Z M 2.4375 -2.9375 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 3.125 -4.609375 C 2.59375 -4.609375 2.203125 -4.390625 1.84375 -3.984375 L 1.84375 -6.375 L 0.515625 -6.234375 L 0.515625 0 L 1.84375 0 L 1.84375 -3.0625 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.859375 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.265625 C 4.359375 -4.109375 3.890625 -4.609375 3.125 -4.609375 Z M 3.125 -4.609375 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 4.40625 -4.46875 L 3.03125 -4.46875 L 2.15625 -0.84375 L 1.359375 -4.46875 L -0.046875 -4.46875 L 1.3125 0 L 1.765625 0 C 1.515625 0.578125 1.203125 0.828125 0.328125 0.9375 L 0.46875 1.859375 C 1.875 1.796875 2.625 1.140625 2.984375 0.015625 Z M 4.40625 -4.46875 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 3.328125 -4.46875 L 3.25 -4.078125 C 2.9375 -4.4375 2.5625 -4.609375 2.09375 -4.609375 C 0.984375 -4.609375 0.265625 -3.625 0.265625 -2.25 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.515625 0.140625 2.890625 -0.09375 3.15625 -0.421875 L 3.15625 1.71875 L 4.484375 1.859375 L 4.484375 -4.46875 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.46875 -3.640625 C 2.75 -3.640625 2.953125 -3.5 3.15625 -3.265625 L 3.15625 -1.34375 C 2.9375 -1 2.703125 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 4.265625 -4.46875 L 2.9375 -4.46875 L 2.9375 -1.359375 C 2.734375 -1.03125 2.484375 -0.84375 2.203125 -0.84375 C 1.9375 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.46875 L 0.453125 -4.46875 L 0.453125 -1.265625 C 0.453125 -0.390625 0.859375 0.140625 1.703125 0.140625 C 2.296875 0.140625 2.734375 -0.09375 3.046875 -0.5625 L 3.109375 0 L 4.265625 0 Z M 4.265625 -4.46875 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 2.453125 -4.609375 C 1.09375 -4.609375 0.265625 -3.671875 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.640625 -0.796875 4.640625 -2.234375 C 4.640625 -3.734375 3.8125 -4.609375 2.453125 -4.609375 Z M 2.453125 -3.625 C 3 -3.625 3.265625 -3.21875 3.265625 -2.234375 C 3.265625 -1.265625 3 -0.828125 2.453125 -0.828125 C 1.921875 -0.828125 1.640625 -1.25 1.640625 -2.234375 C 1.640625 -3.203125 1.921875 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 3.046875 -4.609375 C 2.546875 -4.609375 2.109375 -4.375 1.84375 -4.015625 L 1.84375 -6.375 L 0.515625 -6.234375 L 0.515625 0 L 1.6875 0 L 1.75 -0.421875 C 2.03125 -0.078125 2.421875 0.140625 2.921875 0.140625 C 4.03125 0.140625 4.703125 -0.84375 4.703125 -2.234375 C 4.703125 -3.71875 4.109375 -4.609375 3.046875 -4.609375 Z M 2.53125 -0.828125 C 2.25 -0.828125 2.015625 -0.984375 1.84375 -1.25 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.59375 -3.625 C 3.015625 -3.625 3.328125 -3.359375 3.328125 -2.234375 C 3.328125 -1.1875 3 -0.828125 2.53125 -0.828125 Z M 2.53125 -0.828125 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 0.546875 0 L 1.921875 0 L 1.921875 -2.3125 L 3.625 -2.3125 L 3.625 -3.296875 L 1.921875 -3.296875 L 1.921875 -4.84375 L 3.875 -4.84375 L 4.015625 -5.828125 L 0.546875 -5.828125 Z M 0.546875 0 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 2.453125 -4.609375 C 1.125 -4.609375 0.265625 -3.609375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.484375 0.140625 C 3.09375 0.140625 3.578125 -0.0625 3.984375 -0.390625 L 3.40625 -1.203125 C 3.078125 -1.015625 2.859375 -0.90625 2.546875 -0.90625 C 2.015625 -0.90625 1.671875 -1.203125 1.671875 -2.203125 C 1.671875 -3.203125 2 -3.59375 2.5625 -3.59375 C 2.859375 -3.59375 3.125 -3.484375 3.40625 -3.265625 L 3.984375 -4.0625 C 3.5625 -4.421875 3.078125 -4.609375 2.453125 -4.609375 Z M 2.453125 -4.609375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 1.8125 -7.015625 L 1.28125 -6.03125 L 3.265625 -5.234375 L 3.640625 -5.90625 Z M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.609375 2.359375 -4.609375 C 1 -4.609375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.8125 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.328125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.390625 -1.84375 C 4.40625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.453125 1.9375 -3.71875 2.390625 -3.71875 C 2.921875 -3.71875 3.109375 -3.296875 3.109375 -2.703125 Z M 3.109375 -2.640625 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 2.5625 -5.390625 C 2.75 -5.390625 3.015625 -5.359375 3.265625 -5.234375 L 3.625 -6.09375 C 3.296875 -6.265625 2.859375 -6.375 2.40625 -6.375 C 1.265625 -6.375 0.703125 -5.71875 0.703125 -4.859375 L 0.703125 -4.46875 L 0.03125 -4.46875 L 0.03125 -3.53125 L 0.703125 -3.53125 L 0.703125 0 L 2.03125 0 L 2.03125 -3.53125 L 2.9375 -3.53125 L 3.078125 -4.46875 L 2.03125 -4.46875 L 2.03125 -4.8125 C 2.03125 -5.234375 2.171875 -5.390625 2.5625 -5.390625 Z M 2.5625 -5.390625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 5.890625 -5.828125 L 4.140625 -5.828125 L 3.328125 -1.875 L 2.453125 -5.828125 L 0.71875 -5.828125 L 0.28125 0 L 1.625 0 L 1.71875 -2.265625 C 1.75 -3.078125 1.75 -3.796875 1.703125 -4.65625 L 2.65625 -0.609375 L 3.953125 -0.609375 L 4.859375 -4.65625 C 4.8125 -3.9375 4.828125 -3.09375 4.875 -2.28125 L 4.96875 0 L 6.328125 0 Z M 5.890625 -5.828125 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 2.953125 -2.390625 L 4.171875 -4.46875 L 2.75 -4.46875 L 2.15625 -3.03125 L 1.53125 -4.46875 L 0.046875 -4.46875 L 1.34375 -2.34375 L -0.09375 0 L 1.359375 0 L 2.109375 -1.671875 L 2.890625 0 L 4.390625 0 Z M 2.953125 -2.390625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 3.15625 -6.375 L 3.15625 -4.1875 C 2.890625 -4.453125 2.53125 -4.609375 2.09375 -4.609375 C 0.984375 -4.609375 0.265625 -3.625 0.265625 -2.25 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.578125 0.140625 2.96875 -0.15625 3.234375 -0.515625 L 3.296875 0 L 4.484375 0 L 4.484375 -6.234375 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.453125 -3.640625 C 2.75 -3.640625 2.953125 -3.5 3.15625 -3.265625 L 3.15625 -1.34375 C 2.9375 -1 2.703125 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-0"> | |
| 87 | +<path d="M 4.015625 -5.796875 L 0.5625 -5.796875 L 0.5625 -5.125 L 3.140625 -5.125 L 0.25 -0.640625 L 0.25 0 L 3.921875 0 L 4.015625 -0.6875 L 1.140625 -0.6875 L 4.015625 -5.140625 Z M 4.015625 -5.796875 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-1"> | |
| 90 | +<path d="M 2.46875 -4.53125 C 1.203125 -4.53125 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.71875 -4.53125 2.46875 -4.53125 Z M 2.46875 -3.90625 C 3.1875 -3.90625 3.59375 -3.375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.375 1.71875 -3.90625 2.46875 -3.90625 Z M 2.46875 -3.90625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-2"> | |
| 93 | +<path d="M 2.859375 -4.53125 C 2.28125 -4.53125 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.109375 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-3"> | |
| 96 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-4"> | |
| 99 | +<path d="M 4.140625 -4.921875 C 3.625 -4.6875 3.21875 -4.5 2.125 -4.53125 C 1.140625 -4.53125 0.40625 -3.890625 0.40625 -2.984375 C 0.40625 -2.40625 0.640625 -2.03125 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.265625 0.671875 -0.96875 C 0.671875 -0.53125 1.03125 -0.140625 1.8125 -0.140625 L 2.515625 -0.140625 C 3.0625 -0.140625 3.40625 0.078125 3.40625 0.5 C 3.40625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.140625 1.1875 0.90625 0.953125 0.90625 0.453125 L 0.203125 0.453125 C 0.203125 1.34375 0.671875 1.796875 2.109375 1.796875 C 3.484375 1.796875 4.1875 1.296875 4.1875 0.453125 C 4.1875 -0.265625 3.578125 -0.78125 2.671875 -0.78125 L 1.96875 -0.78125 C 1.515625 -0.78125 1.390625 -0.9375 1.390625 -1.140625 C 1.390625 -1.296875 1.484375 -1.46875 1.609375 -1.5625 C 1.796875 -1.5 1.96875 -1.46875 2.171875 -1.46875 C 3.234375 -1.46875 3.859375 -2.09375 3.859375 -2.96875 C 3.859375 -3.484375 3.59375 -3.859375 3.078125 -4.09375 C 3.578125 -4.09375 4 -4.109375 4.375 -4.234375 Z M 2.125 -3.96875 C 2.75 -3.96875 3.0625 -3.640625 3.0625 -3 C 3.0625 -2.359375 2.734375 -1.984375 2.140625 -1.984375 C 1.53125 -1.984375 1.203125 -2.390625 1.203125 -2.984375 C 1.203125 -3.5625 1.515625 -3.96875 2.125 -3.96875 Z M 2.125 -3.96875 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-5"> | |
| 102 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-6"> | |
| 105 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.59375 -0.296875 1.59375 -0.484375 C 1.59375 -0.8125 1.34375 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-7"> | |
| 108 | +<path d="M 2.703125 -4.53125 C 2.15625 -4.53125 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.78125 2.609375 -3.78125 C 2.765625 -3.78125 2.859375 -3.75 3 -3.71875 L 3.140625 -4.484375 C 3 -4.515625 2.84375 -4.53125 2.703125 -4.53125 Z M 2.703125 -4.53125 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-8"> | |
| 111 | +<path d="M 3.4375 -5.78125 L 1.765625 -6.734375 L 1.421875 -6.09375 L 3.203125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-9"> | |
| 114 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-10"> | |
| 117 | +<path d="M 5.21875 -4.53125 C 4.625 -4.53125 4.21875 -4.21875 3.90625 -3.734375 C 3.734375 -4.234375 3.328125 -4.53125 2.78125 -4.53125 C 2.203125 -4.53125 1.796875 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.59375 -3.921875 C 2.921875 -3.921875 3.21875 -3.734375 3.21875 -3.0625 L 3.21875 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.03125 -3.921875 C 5.359375 -3.921875 5.65625 -3.734375 5.65625 -3.0625 L 5.65625 0 L 6.421875 0 L 6.421875 -3.171875 C 6.421875 -4.015625 5.9375 -4.53125 5.21875 -4.53125 Z M 5.21875 -4.53125 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-11"> | |
| 120 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.59375 -3.828125 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.515625 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-12"> | |
| 123 | +<path d="M 2 -4.53125 C 1.078125 -4.53125 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.03125 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.453125 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.25 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.453125 -2.8125 1.203125 -2.96875 1.203125 -3.34375 C 1.203125 -3.6875 1.515625 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.171875 -3.53125 L 3.5 -4.03125 C 3.078125 -4.34375 2.625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-13"> | |
| 126 | +<path d="M 4.265625 -5.796875 L 0.125 -5.796875 L 0.125 -5.109375 L 1.78125 -5.109375 L 1.78125 0 L 2.578125 0 L 2.578125 -5.109375 L 4.171875 -5.109375 Z M 4.265625 -5.796875 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-14"> | |
| 129 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.328125 0.609375 -6.03125 C 0.609375 -5.734375 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.703125 -5.734375 1.703125 -6.03125 C 1.703125 -6.328125 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-1-15"> | |
| 132 | +<path d="M 2.40625 -4.53125 C 1.203125 -4.53125 0.484375 -3.59375 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.5625 2.453125 -0.5625 C 1.75 -0.5625 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.453125 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.359375 -4.390625 2.9375 -4.53125 2.40625 -4.53125 Z M 2.40625 -4.53125 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-1-16"> | |
| 135 | +<path d="M 3.921875 0 L 4.875 0 L 3.3125 -2.59375 C 4.140625 -2.84375 4.5625 -3.34375 4.5625 -4.15625 C 4.5625 -5.234375 3.8125 -5.796875 2.359375 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 L 1.640625 -2.453125 L 2.53125 -2.453125 Z M 1.640625 -3.0625 L 1.640625 -5.171875 L 2.359375 -5.171875 C 3.296875 -5.171875 3.71875 -4.875 3.71875 -4.15625 C 3.71875 -3.375 3.25 -3.0625 2.453125 -3.0625 Z M 1.640625 -3.0625 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-1-17"> | |
| 138 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.125 -4.296875 2.734375 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.171875 3.4375 -0.609375 L 3.5 0 L 4.1875 0 L 4.1875 -6.21875 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-1-18"> | |
| 141 | +<path d="M 2.8125 -4.53125 C 2.296875 -4.53125 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 1.796875 L 1.546875 1.703125 L 1.546875 -0.40625 C 1.828125 -0.0625 2.234375 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.453125 -0.875 4.453125 -2.21875 C 4.453125 -3.609375 3.984375 -4.53125 2.8125 -4.53125 Z M 2.515625 -0.53125 C 2.125 -0.53125 1.78125 -0.71875 1.546875 -1.0625 L 1.546875 -3.234375 C 1.78125 -3.578125 2.140625 -3.921875 2.609375 -3.921875 C 3.28125 -3.921875 3.609375 -3.375 3.609375 -2.21875 C 3.609375 -1.0625 3.234375 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-1-19"> | |
| 144 | +<path d="M 2.296875 -5.6875 C 2.53125 -5.6875 2.796875 -5.640625 3.078125 -5.515625 L 3.328125 -6.078125 C 2.96875 -6.234375 2.6875 -6.296875 2.265625 -6.296875 C 1.359375 -6.296875 0.875 -5.78125 0.875 -5.03125 L 0.875 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.875 -3.828125 L 0.875 0 L 1.640625 0 L 1.640625 -3.828125 L 2.640625 -3.828125 L 2.71875 -4.4375 L 1.640625 -4.4375 L 1.640625 -5.046875 C 1.640625 -5.46875 1.8125 -5.6875 2.296875 -5.6875 Z M 2.296875 -5.6875 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-1-20"> | |
| 147 | +<path d="M 4.625 -5.796875 L 3.8125 -5.796875 L 2.359375 -0.859375 L 0.90625 -5.796875 L 0.046875 -5.796875 L 1.921875 0 L 2.78125 0 Z M 4.625 -5.796875 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-1-21"> | |
| 150 | +<path d="M 4.0625 -4.4375 L 3.28125 -4.4375 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.703125 -0.5 1.5 -0.734375 1.5 -1.34375 L 1.5 -4.4375 L 0.71875 -4.4375 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.59375 0.09375 3 -0.15625 3.34375 -0.6875 L 3.390625 0 L 4.0625 0 Z M 4.0625 -4.4375 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-1-22"> | |
| 153 | +<path d="M 3.359375 -6.09375 L 3.015625 -6.734375 L 1.34375 -5.78125 L 1.578125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-1-23"> | |
| 156 | +<path d="M 4.046875 -4.4375 L 3.234375 -4.4375 L 2.078125 -0.6875 L 0.921875 -4.4375 L 0.078125 -4.4375 L 1.609375 0 L 2.546875 0 Z M 4.046875 -4.4375 "/> | |
| 157 | +</g> | |
| 158 | +</g> | |
| 159 | +<clipPath id="clip-0"> | |
| 160 | +<path clip-rule="nonzero" d="M 0.128906 0 L 100 0 L 100 52.761719 L 0.128906 52.761719 Z M 0.128906 0 "/> | |
| 161 | +</clipPath> | |
| 162 | +<clipPath id="clip-1"> | |
| 163 | +<path clip-rule="nonzero" d="M 99 0 L 200 0 L 200 52.761719 L 99 52.761719 Z M 99 0 "/> | |
| 164 | +</clipPath> | |
| 165 | +<clipPath id="clip-2"> | |
| 166 | +<path clip-rule="nonzero" d="M 199 0 L 300 0 L 300 52.761719 L 199 52.761719 Z M 199 0 "/> | |
| 167 | +</clipPath> | |
| 168 | +<clipPath id="clip-3"> | |
| 169 | +<path clip-rule="nonzero" d="M 299 0 L 398.59375 0 L 398.59375 52.761719 L 299 52.761719 Z M 299 0 "/> | |
| 170 | +</clipPath> | |
| 171 | +</defs> | |
| 172 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 87.582031 5.167969 L 11.261719 5.167969 C 7.96875 5.167969 5.296875 7.839844 5.296875 11.132812 L 5.296875 41.628906 C 5.296875 44.921875 7.96875 47.59375 11.261719 47.59375 L 87.582031 47.59375 C 90.875 47.59375 93.546875 44.921875 93.546875 41.628906 L 93.546875 11.132812 C 93.546875 7.839844 90.875 5.167969 87.582031 5.167969 Z M 87.582031 5.167969 "/> | |
| 173 | +<g clip-path="url(#clip-0)"> | |
| 174 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 38.245773 21.261402 L -38.246286 21.261402 C -41.546665 21.261402 -44.224552 18.583514 -44.224552 15.283135 L -44.224552 -15.281585 C -44.224552 -18.581964 -41.546665 -21.259852 -38.246286 -21.259852 L 38.245773 -21.259852 C 41.546152 -21.259852 44.22404 -18.581964 44.22404 -15.281585 L 44.22404 15.283135 C 44.22404 18.583514 41.546152 21.261402 38.245773 21.261402 Z M 38.245773 21.261402 " transform="matrix(0.997755, 0, 0, -0.997755, 49.422131, 26.381632)"/> | |
| 175 | +</g> | |
| 176 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 177 | +<use xlink:href="#glyph-0-0" x="12.415408" y="23.566966"/> | |
| 178 | +</g> | |
| 179 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 180 | +<use xlink:href="#glyph-0-1" x="16.519232" y="23.566966"/> | |
| 181 | +<use xlink:href="#glyph-0-2" x="21.178082" y="23.566966"/> | |
| 182 | +</g> | |
| 183 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 184 | +<use xlink:href="#glyph-0-3" x="25.71079" y="23.566966"/> | |
| 185 | +</g> | |
| 186 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 187 | +<use xlink:href="#glyph-0-4" x="30.235088" y="23.566966"/> | |
| 188 | +</g> | |
| 189 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 190 | +<use xlink:href="#glyph-0-5" x="32.715883" y="23.566966"/> | |
| 191 | +<use xlink:href="#glyph-0-6" x="37.374733" y="23.566966"/> | |
| 192 | +<use xlink:href="#glyph-0-5" x="44.447102" y="23.566966"/> | |
| 193 | +<use xlink:href="#glyph-0-7" x="49.105951" y="23.566966"/> | |
| 194 | +<use xlink:href="#glyph-0-8" x="53.924581" y="23.566966"/> | |
| 195 | +</g> | |
| 196 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 197 | +<use xlink:href="#glyph-0-9" x="59.970994" y="23.566966"/> | |
| 198 | +<use xlink:href="#glyph-0-5" x="64.940994" y="23.566966"/> | |
| 199 | +<use xlink:href="#glyph-0-10" x="69.599844" y="23.566966"/> | |
| 200 | +<use xlink:href="#glyph-0-6" x="72.963634" y="23.566966"/> | |
| 201 | +<use xlink:href="#glyph-0-11" x="80.036004" y="23.566966"/> | |
| 202 | +<use xlink:href="#glyph-0-12" x="82.390657" y="23.566966"/> | |
| 203 | +</g> | |
| 204 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 205 | +<use xlink:href="#glyph-1-0" x="12.04125" y="34.50136"/> | |
| 206 | +</g> | |
| 207 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 208 | +<use xlink:href="#glyph-1-1" x="16.245988" y="34.50136"/> | |
| 209 | +<use xlink:href="#glyph-1-2" x="21.157122" y="34.50136"/> | |
| 210 | +<use xlink:href="#glyph-1-3" x="26.026209" y="34.50136"/> | |
| 211 | +<use xlink:href="#glyph-1-4" x="30.558916" y="34.50136"/> | |
| 212 | +<use xlink:href="#glyph-1-5" x="34.931843" y="34.50136"/> | |
| 213 | +</g> | |
| 214 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 215 | +<use xlink:href="#glyph-1-6" x="39.422504" y="34.50136"/> | |
| 216 | +</g> | |
| 217 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 218 | +<use xlink:href="#glyph-1-7" x="44.241133" y="34.50136"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-1-8" x="47.293773" y="34.50136"/> | |
| 222 | +<use xlink:href="#glyph-1-4" x="51.868528" y="34.50136"/> | |
| 223 | +<use xlink:href="#glyph-1-9" x="56.241455" y="34.50136"/> | |
| 224 | +</g> | |
| 225 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 226 | +<use xlink:href="#glyph-1-5" x="58.671794" y="34.50136"/> | |
| 227 | +<use xlink:href="#glyph-1-10" x="63.246549" y="34.50136"/> | |
| 228 | +<use xlink:href="#glyph-1-5" x="70.394603" y="34.50136"/> | |
| 229 | +<use xlink:href="#glyph-1-2" x="74.969358" y="34.50136"/> | |
| 230 | +<use xlink:href="#glyph-1-11" x="79.838445" y="34.50136"/> | |
| 231 | +<use xlink:href="#glyph-1-12" x="82.874265" y="34.50136"/> | |
| 232 | +</g> | |
| 233 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 187.542969 5.167969 L 111.222656 5.167969 C 107.929688 5.167969 105.257812 7.839844 105.257812 11.132812 L 105.257812 41.628906 C 105.257812 44.921875 107.929688 47.59375 111.222656 47.59375 L 187.542969 47.59375 C 190.835938 47.59375 193.507812 44.921875 193.507812 41.628906 L 193.507812 11.132812 C 193.507812 7.839844 190.835938 5.167969 187.542969 5.167969 Z M 187.542969 5.167969 "/> | |
| 234 | +<g clip-path="url(#clip-1)"> | |
| 235 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 138.431656 21.261402 L 61.939598 21.261402 C 58.639219 21.261402 55.961331 18.583514 55.961331 15.283135 L 55.961331 -15.281585 C 55.961331 -18.581964 58.639219 -21.259852 61.939598 -21.259852 L 138.431656 -21.259852 C 141.732035 -21.259852 144.409923 -18.581964 144.409923 -15.281585 L 144.409923 15.283135 C 144.409923 18.583514 141.732035 21.261402 138.431656 21.261402 Z M 138.431656 21.261402 " transform="matrix(0.997755, 0, 0, -0.997755, 49.422131, 26.381632)"/> | |
| 236 | +</g> | |
| 237 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 238 | +<use xlink:href="#glyph-0-13" x="122.10956" y="18.155145"/> | |
| 239 | +</g> | |
| 240 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 241 | +<use xlink:href="#glyph-0-14" x="126.987056" y="18.155145"/> | |
| 242 | +</g> | |
| 243 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 244 | +<use xlink:href="#glyph-0-15" x="131.755228" y="18.155145"/> | |
| 245 | +</g> | |
| 246 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 247 | +<use xlink:href="#glyph-0-12" x="136.035652" y="18.155145"/> | |
| 248 | +<use xlink:href="#glyph-0-11" x="140.0722" y="18.155145"/> | |
| 249 | +<use xlink:href="#glyph-0-16" x="142.426853" y="18.155145"/> | |
| 250 | +<use xlink:href="#glyph-0-17" x="147.422082" y="18.155145"/> | |
| 251 | +<use xlink:href="#glyph-0-5" x="152.198664" y="18.155145"/> | |
| 252 | +<use xlink:href="#glyph-0-6" x="156.857514" y="18.155145"/> | |
| 253 | +<use xlink:href="#glyph-0-5" x="163.929883" y="18.155145"/> | |
| 254 | +<use xlink:href="#glyph-0-7" x="168.588733" y="18.155145"/> | |
| 255 | +<use xlink:href="#glyph-0-8" x="173.407362" y="18.155145"/> | |
| 256 | +</g> | |
| 257 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 258 | +<use xlink:href="#glyph-0-9" x="133.201599" y="29.089539"/> | |
| 259 | +<use xlink:href="#glyph-0-18" x="138.171599" y="29.089539"/> | |
| 260 | +<use xlink:href="#glyph-0-12" x="143.082733" y="29.089539"/> | |
| 261 | +</g> | |
| 262 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 263 | +<use xlink:href="#glyph-0-12" x="147.060415" y="29.089539"/> | |
| 264 | +<use xlink:href="#glyph-0-11" x="151.096963" y="29.089539"/> | |
| 265 | +<use xlink:href="#glyph-0-19" x="153.451617" y="29.089539"/> | |
| 266 | +<use xlink:href="#glyph-0-4" x="158.421617" y="29.089539"/> | |
| 267 | +</g> | |
| 268 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 269 | +<use xlink:href="#glyph-0-5" x="160.902412" y="29.089539"/> | |
| 270 | +</g> | |
| 271 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 272 | +<use xlink:href="#glyph-1-13" x="123.331809" y="40.022935"/> | |
| 273 | +</g> | |
| 274 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 275 | +<use xlink:href="#glyph-1-5" x="127.216987" y="40.022935"/> | |
| 276 | +<use xlink:href="#glyph-1-7" x="131.791742" y="40.022935"/> | |
| 277 | +<use xlink:href="#glyph-1-7" x="135.012571" y="40.022935"/> | |
| 278 | +</g> | |
| 279 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 280 | +<use xlink:href="#glyph-1-3" x="138.065211" y="40.022935"/> | |
| 281 | +<use xlink:href="#glyph-1-14" x="142.597918" y="40.022935"/> | |
| 282 | +<use xlink:href="#glyph-1-2" x="144.918934" y="40.022935"/> | |
| 283 | +<use xlink:href="#glyph-1-6" x="149.78802" y="40.022935"/> | |
| 284 | +</g> | |
| 285 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 286 | +<use xlink:href="#glyph-1-3" x="154.60665" y="40.022935"/> | |
| 287 | +<use xlink:href="#glyph-1-15" x="159.139357" y="40.022935"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-1-15" x="163.032945" y="40.022935"/> | |
| 291 | +</g> | |
| 292 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 293 | +<use xlink:href="#glyph-1-8" x="166.926532" y="40.022935"/> | |
| 294 | +<use xlink:href="#glyph-1-12" x="171.501287" y="40.022935"/> | |
| 295 | +</g> | |
| 296 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 287.503906 5.167969 L 211.183594 5.167969 C 207.886719 5.167969 205.21875 7.839844 205.21875 11.132812 L 205.21875 41.628906 C 205.21875 44.921875 207.886719 47.59375 211.183594 47.59375 L 287.503906 47.59375 C 290.796875 47.59375 293.46875 44.921875 293.46875 41.628906 L 293.46875 11.132812 C 293.46875 7.839844 290.796875 5.167969 287.503906 5.167969 Z M 287.503906 5.167969 "/> | |
| 297 | +<g clip-path="url(#clip-2)"> | |
| 298 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 238.61754 21.261402 L 162.125481 21.261402 C 158.821187 21.261402 156.147214 18.583514 156.147214 15.283135 L 156.147214 -15.281585 C 156.147214 -18.581964 158.821187 -21.259852 162.125481 -21.259852 L 238.61754 -21.259852 C 241.917919 -21.259852 244.595806 -18.581964 244.595806 -15.281585 L 244.595806 15.283135 C 244.595806 18.583514 241.917919 21.261402 238.61754 21.261402 Z M 238.61754 21.261402 " transform="matrix(0.997755, 0, 0, -0.997755, 49.422131, 26.381632)"/> | |
| 299 | +</g> | |
| 300 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 301 | +<use xlink:href="#glyph-0-20" x="219.776776" y="18.100268"/> | |
| 302 | +</g> | |
| 303 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 304 | +<use xlink:href="#glyph-0-11" x="223.628315" y="18.100268"/> | |
| 305 | +<use xlink:href="#glyph-0-7" x="225.982969" y="18.100268"/> | |
| 306 | +<use xlink:href="#glyph-0-3" x="230.801598" y="18.100268"/> | |
| 307 | +<use xlink:href="#glyph-0-7" x="235.393172" y="18.100268"/> | |
| 308 | +<use xlink:href="#glyph-0-21" x="240.211802" y="18.100268"/> | |
| 309 | +<use xlink:href="#glyph-0-11" x="244.239941" y="18.100268"/> | |
| 310 | +<use xlink:href="#glyph-0-22" x="246.594594" y="18.100268"/> | |
| 311 | +<use xlink:href="#glyph-0-10" x="251.253444" y="18.100268"/> | |
| 312 | +</g> | |
| 313 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 314 | +<use xlink:href="#glyph-0-5" x="254.449044" y="18.100268"/> | |
| 315 | +<use xlink:href="#glyph-0-6" x="259.107894" y="18.100268"/> | |
| 316 | +<use xlink:href="#glyph-0-5" x="266.180263" y="18.100268"/> | |
| 317 | +<use xlink:href="#glyph-0-7" x="270.839113" y="18.100268"/> | |
| 318 | +<use xlink:href="#glyph-0-8" x="275.657743" y="18.100268"/> | |
| 319 | +</g> | |
| 320 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 321 | +<use xlink:href="#glyph-0-23" x="234.068614" y="29.034662"/> | |
| 322 | +</g> | |
| 323 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 324 | +<use xlink:href="#glyph-0-3" x="236.927836" y="29.034662"/> | |
| 325 | +<use xlink:href="#glyph-0-11" x="241.51941" y="29.034662"/> | |
| 326 | +<use xlink:href="#glyph-0-12" x="243.874063" y="29.034662"/> | |
| 327 | +<use xlink:href="#glyph-0-3" x="247.910611" y="29.034662"/> | |
| 328 | +<use xlink:href="#glyph-0-19" x="252.502185" y="29.034662"/> | |
| 329 | +<use xlink:href="#glyph-0-4" x="257.472185" y="29.034662"/> | |
| 330 | +</g> | |
| 331 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 332 | +<use xlink:href="#glyph-0-5" x="259.952981" y="29.034662"/> | |
| 333 | +</g> | |
| 334 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 335 | +<use xlink:href="#glyph-1-16" x="213.981816" y="39.969056"/> | |
| 336 | +</g> | |
| 337 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 338 | +<use xlink:href="#glyph-1-5" x="219.027502" y="39.969056"/> | |
| 339 | +<use xlink:href="#glyph-1-2" x="223.602256" y="39.969056"/> | |
| 340 | +<use xlink:href="#glyph-1-17" x="228.471343" y="39.969056"/> | |
| 341 | +<use xlink:href="#glyph-1-5" x="233.432934" y="39.969056"/> | |
| 342 | +<use xlink:href="#glyph-1-10" x="238.007689" y="39.969056"/> | |
| 343 | +<use xlink:href="#glyph-1-5" x="245.155743" y="39.969056"/> | |
| 344 | +<use xlink:href="#glyph-1-2" x="249.730498" y="39.969056"/> | |
| 345 | +<use xlink:href="#glyph-1-11" x="254.599585" y="39.969056"/> | |
| 346 | +</g> | |
| 347 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 348 | +<use xlink:href="#glyph-1-18" x="260.435761" y="39.969056"/> | |
| 349 | +<use xlink:href="#glyph-1-1" x="265.363714" y="39.969056"/> | |
| 350 | +<use xlink:href="#glyph-1-12" x="270.274847" y="39.969056"/> | |
| 351 | +<use xlink:href="#glyph-1-14" x="274.202073" y="39.969056"/> | |
| 352 | +<use xlink:href="#glyph-1-11" x="276.523088" y="39.969056"/> | |
| 353 | +<use xlink:href="#glyph-1-14" x="279.558909" y="39.969056"/> | |
| 354 | +<use xlink:href="#glyph-1-19" x="281.879924" y="39.969056"/> | |
| 355 | +</g> | |
| 356 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 387.464844 5.167969 L 311.144531 5.167969 C 307.847656 5.167969 305.179688 7.839844 305.179688 11.132812 L 305.179688 41.628906 C 305.179688 44.921875 307.847656 47.59375 311.144531 47.59375 L 387.464844 47.59375 C 390.757812 47.59375 393.429688 44.921875 393.429688 41.628906 L 393.429688 11.132812 C 393.429688 7.839844 390.757812 5.167969 387.464844 5.167969 Z M 387.464844 5.167969 "/> | |
| 357 | +<g clip-path="url(#clip-3)"> | |
| 358 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 338.803423 21.261402 L 262.311364 21.261402 C 259.00707 21.261402 256.333097 18.583514 256.333097 15.283135 L 256.333097 -15.281585 C 256.333097 -18.581964 259.00707 -21.259852 262.311364 -21.259852 L 338.803423 -21.259852 C 342.103802 -21.259852 344.781689 -18.581964 344.781689 -15.281585 L 344.781689 15.283135 C 344.781689 18.583514 342.103802 21.261402 338.803423 21.261402 Z M 338.803423 21.261402 " transform="matrix(0.997755, 0, 0, -0.997755, 49.422131, 26.381632)"/> | |
| 359 | +</g> | |
| 360 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 361 | +<use xlink:href="#glyph-0-24" x="321.102758" y="17.954596"/> | |
| 362 | +<use xlink:href="#glyph-0-3" x="327.712606" y="17.954596"/> | |
| 363 | +<use xlink:href="#glyph-0-25" x="332.30418" y="17.954596"/> | |
| 364 | +<use xlink:href="#glyph-0-11" x="336.609832" y="17.954596"/> | |
| 365 | +<use xlink:href="#glyph-0-6" x="338.964485" y="17.954596"/> | |
| 366 | +<use xlink:href="#glyph-0-3" x="346.036854" y="17.954596"/> | |
| 367 | +</g> | |
| 368 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 369 | +<use xlink:href="#glyph-0-4" x="350.561152" y="17.954596"/> | |
| 370 | +</g> | |
| 371 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 372 | +<use xlink:href="#glyph-0-5" x="353.041947" y="17.954596"/> | |
| 373 | +<use xlink:href="#glyph-0-6" x="357.700797" y="17.954596"/> | |
| 374 | +<use xlink:href="#glyph-0-5" x="364.773166" y="17.954596"/> | |
| 375 | +<use xlink:href="#glyph-0-7" x="369.432016" y="17.954596"/> | |
| 376 | +<use xlink:href="#glyph-0-8" x="374.250645" y="17.954596"/> | |
| 377 | +</g> | |
| 378 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 379 | +<use xlink:href="#glyph-0-9" x="331.248926" y="28.88899"/> | |
| 380 | +<use xlink:href="#glyph-0-10" x="336.218926" y="28.88899"/> | |
| 381 | +</g> | |
| 382 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 383 | +<use xlink:href="#glyph-0-18" x="339.414527" y="28.88899"/> | |
| 384 | +<use xlink:href="#glyph-0-26" x="344.325661" y="28.88899"/> | |
| 385 | +<use xlink:href="#glyph-0-17" x="349.320889" y="28.88899"/> | |
| 386 | +<use xlink:href="#glyph-0-21" x="354.097472" y="28.88899"/> | |
| 387 | +<use xlink:href="#glyph-0-8" x="358.125611" y="28.88899"/> | |
| 388 | +<use xlink:href="#glyph-0-11" x="361.371668" y="28.88899"/> | |
| 389 | +<use xlink:href="#glyph-0-23" x="363.726322" y="28.88899"/> | |
| 390 | +</g> | |
| 391 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 392 | +<use xlink:href="#glyph-1-20" x="309.148659" y="39.823384"/> | |
| 393 | +</g> | |
| 394 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 395 | +<use xlink:href="#glyph-1-3" x="313.572043" y="39.823384"/> | |
| 396 | +</g> | |
| 397 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 398 | +<use xlink:href="#glyph-1-9" x="318.062703" y="39.823384"/> | |
| 399 | +</g> | |
| 400 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 401 | +<use xlink:href="#glyph-1-5" x="320.493042" y="39.823384"/> | |
| 402 | +<use xlink:href="#glyph-1-21" x="325.067797" y="39.823384"/> | |
| 403 | +<use xlink:href="#glyph-1-7" x="329.903245" y="39.823384"/> | |
| 404 | +</g> | |
| 405 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 406 | +<use xlink:href="#glyph-1-9" x="335.92443" y="39.823384"/> | |
| 407 | +</g> | |
| 408 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 409 | +<use xlink:href="#glyph-1-3" x="338.354768" y="39.823384"/> | |
| 410 | +</g> | |
| 411 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 412 | +<use xlink:href="#glyph-1-18" x="345.696241" y="39.823384"/> | |
| 413 | +<use xlink:href="#glyph-1-9" x="350.624194" y="39.823384"/> | |
| 414 | +<use xlink:href="#glyph-1-21" x="353.09658" y="39.823384"/> | |
| 415 | +<use xlink:href="#glyph-1-12" x="357.932028" y="39.823384"/> | |
| 416 | +</g> | |
| 417 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 418 | +<use xlink:href="#glyph-1-22" x="364.659609" y="39.823384"/> | |
| 419 | +<use xlink:href="#glyph-1-9" x="369.234364" y="39.823384"/> | |
| 420 | +</g> | |
| 421 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 422 | +<use xlink:href="#glyph-1-5" x="371.664702" y="39.823384"/> | |
| 423 | +</g> | |
| 424 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 425 | +<use xlink:href="#glyph-1-23" x="376.19741" y="39.823384"/> | |
| 426 | +</g> | |
| 427 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 428 | +<use xlink:href="#glyph-1-22" x="380.301234" y="39.823384"/> | |
| 429 | +<use xlink:href="#glyph-1-5" x="384.875989" y="39.823384"/> | |
| 430 | +</g> | |
| 431 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 44.423707 -0.00118268 L 54.962996 -0.00118268 " transform="matrix(0.997755, 0, 0, -0.997755, 49.422131, 26.381632)"/> | |
| 432 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549782 3.111274 C -2.083892 1.2438 -1.046406 0.362916 -0.00109029 -0.00118268 C -1.046406 -0.361366 -2.083892 -1.246166 -2.549782 -3.109725 " transform="matrix(0.997755, 0, 0, -0.997755, 104.661244, 26.381632)"/> | |
| 433 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 144.60959 -0.00118268 L 155.148879 -0.00118268 " transform="matrix(0.997755, 0, 0, -0.997755, 49.422131, 26.381632)"/> | |
| 434 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549228 3.111274 C -2.083339 1.2438 -1.045853 0.362916 -0.000537131 -0.00118268 C -1.045853 -0.361366 -2.083339 -1.246166 -2.549228 -3.109725 " transform="matrix(0.997755, 0, 0, -0.997755, 204.62163, 26.381632)"/> | |
| 435 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 244.795473 -0.00118268 L 255.334762 -0.00118268 " transform="matrix(0.997755, 0, 0, -0.997755, 49.422131, 26.381632)"/> | |
| 436 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548665 3.111274 C -2.082775 1.2438 -1.04529 0.362916 0.0000260317 -0.00118268 C -1.04529 -0.361366 -2.082775 -1.246166 -2.548665 -3.109725 " transform="matrix(0.997755, 0, 0, -0.997755, 304.582005, 26.381632)"/> | |
| 437 | +</svg> | |
added
dist/assets/fig/6822420a430ca8a4.svg
+398 −0
@@ -0,0 +1,398 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="367.966pt" height="181.982pt" viewBox="0 0 367.966 181.982"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.796875 -5.15625 L 0.109375 -5.15625 L 0.109375 -4.546875 L 1.578125 -4.546875 L 1.578125 0 L 2.296875 0 L 2.296875 -4.546875 L 3.71875 -4.546875 Z M 3.796875 -5.15625 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.6875 -2.09375 C 3.6875 -3.296875 3.125 -4.03125 2.0625 -4.03125 C 1.046875 -4.03125 0.421875 -3.15625 0.421875 -1.9375 C 0.421875 -0.6875 1.0625 0.09375 2.171875 0.09375 C 2.71875 0.09375 3.15625 -0.09375 3.546875 -0.40625 L 3.25 -0.8125 C 2.90625 -0.578125 2.609375 -0.46875 2.21875 -0.46875 C 1.65625 -0.46875 1.234375 -0.828125 1.15625 -1.734375 L 3.671875 -1.734375 C 3.6875 -1.828125 3.6875 -1.953125 3.6875 -2.09375 Z M 3.015625 -2.25 L 1.15625 -2.25 C 1.21875 -3.125 1.5625 -3.484375 2.078125 -3.484375 C 2.703125 -3.484375 3.015625 -3.0625 3.015625 -2.296875 Z M 3.015625 -2.25 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 4.640625 -4.03125 C 4.109375 -4.03125 3.75 -3.75 3.46875 -3.328125 C 3.328125 -3.765625 2.96875 -4.03125 2.484375 -4.03125 C 1.953125 -4.03125 1.609375 -3.765625 1.34375 -3.375 L 1.28125 -3.9375 L 0.6875 -3.9375 L 0.6875 0 L 1.375 0 L 1.375 -2.796875 C 1.640625 -3.21875 1.875 -3.5 2.3125 -3.5 C 2.609375 -3.5 2.859375 -3.328125 2.859375 -2.734375 L 2.859375 0 L 3.546875 0 L 3.546875 -2.796875 C 3.8125 -3.21875 4.046875 -3.5 4.46875 -3.5 C 4.78125 -3.5 5.03125 -3.328125 5.03125 -2.734375 L 5.03125 0 L 5.71875 0 L 5.71875 -2.828125 C 5.71875 -3.5625 5.296875 -4.03125 4.640625 -4.03125 Z M 4.640625 -4.03125 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 2.5 -4.03125 C 2.046875 -4.03125 1.625 -3.8125 1.328125 -3.40625 L 1.28125 -3.9375 L 0.6875 -3.9375 L 0.6875 1.59375 L 1.375 1.515625 L 1.375 -0.359375 C 1.625 -0.046875 1.984375 0.09375 2.40625 0.09375 C 3.421875 0.09375 3.953125 -0.78125 3.953125 -1.96875 C 3.953125 -3.21875 3.546875 -4.03125 2.5 -4.03125 Z M 2.25 -0.46875 C 1.890625 -0.46875 1.578125 -0.640625 1.375 -0.953125 L 1.375 -2.875 C 1.59375 -3.1875 1.90625 -3.484375 2.328125 -3.484375 C 2.921875 -3.484375 3.21875 -3 3.21875 -1.96875 C 3.21875 -0.9375 2.875 -0.46875 2.25 -0.46875 Z M 2.25 -0.46875 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 1.78125 -4.03125 C 0.96875 -4.03125 0.359375 -3.578125 0.359375 -2.953125 C 0.359375 -2.390625 0.703125 -2.03125 1.546875 -1.796875 C 2.3125 -1.609375 2.5 -1.453125 2.5 -1.0625 C 2.5 -0.6875 2.171875 -0.46875 1.65625 -0.46875 C 1.234375 -0.46875 0.875 -0.609375 0.546875 -0.84375 L 0.1875 -0.421875 C 0.53125 -0.125 1.015625 0.09375 1.671875 0.09375 C 2.484375 0.09375 3.234375 -0.28125 3.234375 -1.109375 C 3.234375 -1.796875 2.75 -2.125 1.921875 -2.328125 C 1.28125 -2.5 1.078125 -2.65625 1.078125 -2.96875 C 1.078125 -3.28125 1.359375 -3.484375 1.796875 -3.484375 C 2.171875 -3.484375 2.484375 -3.375 2.828125 -3.15625 L 3.125 -3.578125 C 2.75 -3.875 2.328125 -4.03125 1.78125 -4.03125 Z M 1.78125 -4.03125 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.109375 -5.15625 L 0.75 -5.15625 L 0.75 0 L 1.453125 0 L 1.453125 -1.890625 L 2.109375 -1.890625 C 3.25 -1.890625 4.109375 -2.375 4.109375 -3.5625 C 4.109375 -4.640625 3.34375 -5.15625 2.109375 -5.15625 Z M 2.078125 -2.453125 L 1.453125 -2.453125 L 1.453125 -4.609375 L 2.09375 -4.609375 C 2.859375 -4.609375 3.359375 -4.328125 3.359375 -3.5625 C 3.359375 -2.671875 2.84375 -2.453125 2.078125 -2.453125 Z M 2.078125 -2.453125 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.40625 -4.03125 C 1.921875 -4.03125 1.5625 -3.734375 1.34375 -3.140625 L 1.28125 -3.9375 L 0.6875 -3.9375 L 0.6875 0 L 1.375 0 L 1.375 -2.25 C 1.546875 -3.015625 1.828125 -3.359375 2.3125 -3.359375 C 2.46875 -3.359375 2.546875 -3.34375 2.671875 -3.3125 L 2.796875 -3.984375 C 2.671875 -4.015625 2.53125 -4.03125 2.40625 -4.03125 Z M 2.40625 -4.03125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 1.03125 -5.84375 C 0.734375 -5.84375 0.546875 -5.640625 0.546875 -5.359375 C 0.546875 -5.109375 0.734375 -4.90625 1.03125 -4.90625 C 1.3125 -4.90625 1.515625 -5.109375 1.515625 -5.359375 C 1.515625 -5.640625 1.3125 -5.84375 1.03125 -5.84375 Z M 1.375 -3.9375 L 0.6875 -3.9375 L 0.6875 0 L 1.375 0 Z M 1.375 -3.9375 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.21875 -2.109375 L 3.4375 -3.9375 L 2.65625 -3.9375 L 1.828125 -2.5 L 1 -3.9375 L 0.1875 -3.9375 L 1.421875 -2.078125 L 0.03125 0 L 0.8125 0 L 1.796875 -1.671875 L 2.765625 0 L 3.59375 0 Z M 2.21875 -2.109375 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.515625 -6.046875 L 0.78125 0.640625 L 1.375 0.78125 L 3.109375 -5.90625 Z M 2.515625 -6.046875 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.5 0 L 4.25 0 L 2.59375 -5.15625 L 1.703125 -5.15625 L 0.046875 0 L 0.765625 0 L 1.15625 -1.296875 L 3.109375 -1.296875 Z M 1.328125 -1.875 L 2.140625 -4.5625 L 2.9375 -1.875 Z M 1.328125 -1.875 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 2.140625 -4.03125 C 1.078125 -4.03125 0.421875 -3.203125 0.421875 -1.9375 C 0.421875 -0.671875 1.078125 0.09375 2.140625 0.09375 C 2.609375 0.09375 3 -0.0625 3.359375 -0.34375 L 3.03125 -0.796875 C 2.734375 -0.59375 2.5 -0.5 2.171875 -0.5 C 1.5625 -0.5 1.171875 -0.921875 1.171875 -1.953125 C 1.171875 -2.984375 1.5625 -3.46875 2.171875 -3.46875 C 2.5 -3.46875 2.75 -3.375 3.03125 -3.171875 L 3.359375 -3.609375 C 2.984375 -3.921875 2.609375 -4.03125 2.140625 -4.03125 Z M 2.140625 -4.03125 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.4375 -0.640625 C 2.25 -0.53125 2.09375 -0.484375 1.921875 -0.484375 C 1.578125 -0.484375 1.4375 -0.671875 1.4375 -1.0625 L 1.4375 -3.40625 L 2.3125 -3.40625 L 2.375 -3.9375 L 1.4375 -3.9375 L 1.4375 -4.921875 L 0.75 -4.828125 L 0.75 -3.9375 L 0.0625 -3.9375 L 0.0625 -3.40625 L 0.75 -3.40625 L 0.75 -1.03125 C 0.75 -0.296875 1.15625 0.09375 1.8125 0.09375 C 2.15625 0.09375 2.4375 0 2.703125 -0.171875 Z M 2.4375 -0.640625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 3.609375 -3.9375 L 2.875 -3.9375 L 1.859375 -0.609375 L 0.828125 -3.9375 L 0.078125 -3.9375 L 1.4375 0 L 2.265625 0 Z M 3.609375 -3.9375 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 2.984375 -5.421875 L 2.671875 -6 L 1.1875 -5.140625 L 1.40625 -4.78125 Z M 3.6875 -2.09375 C 3.6875 -3.296875 3.125 -4.03125 2.0625 -4.03125 C 1.046875 -4.03125 0.421875 -3.15625 0.421875 -1.9375 C 0.421875 -0.6875 1.0625 0.09375 2.171875 0.09375 C 2.71875 0.09375 3.15625 -0.09375 3.546875 -0.40625 L 3.25 -0.8125 C 2.90625 -0.578125 2.609375 -0.46875 2.21875 -0.46875 C 1.65625 -0.46875 1.234375 -0.828125 1.15625 -1.734375 L 3.671875 -1.734375 C 3.6875 -1.828125 3.6875 -1.953125 3.6875 -2.09375 Z M 3.015625 -2.25 L 1.15625 -2.25 C 1.21875 -3.125 1.5625 -3.484375 2.078125 -3.484375 C 2.703125 -3.484375 3.015625 -3.0625 3.015625 -2.296875 Z M 3.015625 -2.25 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-1-0"> | |
| 51 | +<path d="M 2.5 -3.734375 L 1.578125 -3.734375 L 0.0625 -2.828125 L 0.515625 -2.140625 L 1.484375 -2.71875 L 1.484375 0 L 2.5 0 Z M 2.5 -3.734375 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-1-1"> | |
| 54 | +<path d="M 0.78125 -1.078125 C 0.453125 -1.078125 0.1875 -0.8125 0.1875 -0.484375 C 0.1875 -0.15625 0.453125 0.109375 0.78125 0.109375 C 1.109375 0.109375 1.375 -0.15625 1.375 -0.484375 C 1.375 -0.8125 1.109375 -1.078125 0.78125 -1.078125 Z M 0.78125 -1.078125 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-1-2"> | |
| 57 | +<path d="M 2.859375 0 L 4.0625 0 L 2.90625 -1.9375 C 3.5 -2.203125 3.78125 -2.5625 3.78125 -3.15625 C 3.78125 -4.109375 3.15625 -4.546875 1.921875 -4.546875 L 0.421875 -4.546875 L 0.421875 0 L 1.5 0 L 1.5 -1.734375 L 1.921875 -1.734375 Z M 1.5 -3.796875 L 1.890625 -3.796875 C 2.421875 -3.796875 2.671875 -3.609375 2.671875 -3.15625 C 2.671875 -2.6875 2.421875 -2.484375 1.953125 -2.484375 L 1.5 -2.484375 Z M 1.5 -3.796875 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-3"> | |
| 60 | +<path d="M 3.4375 -1.8125 C 3.4375 -2.9375 2.828125 -3.59375 1.84375 -3.59375 C 0.78125 -3.59375 0.203125 -2.765625 0.203125 -1.71875 C 0.203125 -0.640625 0.796875 0.109375 1.96875 0.109375 C 2.53125 0.109375 2.96875 -0.09375 3.328125 -0.375 L 2.890625 -0.953125 C 2.59375 -0.734375 2.34375 -0.640625 2.0625 -0.640625 C 1.640625 -0.640625 1.34375 -0.8125 1.265625 -1.4375 L 3.421875 -1.4375 C 3.4375 -1.546875 3.4375 -1.703125 3.4375 -1.8125 Z M 2.421875 -2.0625 L 1.265625 -2.0625 C 1.3125 -2.6875 1.515625 -2.90625 1.859375 -2.90625 C 2.28125 -2.90625 2.421875 -2.578125 2.421875 -2.109375 Z M 2.421875 -2.0625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-4"> | |
| 63 | +<path d="M 2.375 -3.59375 C 2.015625 -3.59375 1.65625 -3.453125 1.359375 -3.09375 L 1.3125 -3.484375 L 0.40625 -3.484375 L 0.40625 1.453125 L 1.4375 1.34375 L 1.4375 -0.25 C 1.65625 0 1.9375 0.109375 2.28125 0.109375 C 3.140625 0.109375 3.671875 -0.671875 3.671875 -1.75 C 3.671875 -2.875 3.265625 -3.59375 2.375 -3.59375 Z M 1.96875 -0.65625 C 1.75 -0.65625 1.578125 -0.75 1.4375 -0.953125 L 1.4375 -2.421875 C 1.59375 -2.6875 1.796875 -2.828125 2.03125 -2.828125 C 2.375 -2.828125 2.59375 -2.609375 2.59375 -1.734375 C 2.59375 -0.953125 2.34375 -0.65625 1.96875 -0.65625 Z M 1.96875 -0.65625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-5"> | |
| 66 | +<path d="M 2.296875 -3.578125 C 1.890625 -3.578125 1.546875 -3.296875 1.390625 -2.8125 L 1.296875 -3.484375 L 0.40625 -3.484375 L 0.40625 0 L 1.4375 0 L 1.4375 -1.75 C 1.5625 -2.265625 1.734375 -2.578125 2.15625 -2.578125 C 2.265625 -2.578125 2.359375 -2.5625 2.46875 -2.53125 L 2.640625 -3.53125 C 2.515625 -3.5625 2.421875 -3.578125 2.296875 -3.578125 Z M 2.296875 -3.578125 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-6"> | |
| 69 | +<path d="M 0.90625 -5.328125 C 0.5625 -5.328125 0.296875 -5.0625 0.296875 -4.734375 C 0.296875 -4.390625 0.5625 -4.140625 0.90625 -4.140625 C 1.28125 -4.140625 1.53125 -4.390625 1.53125 -4.734375 C 1.53125 -5.0625 1.28125 -5.328125 0.90625 -5.328125 Z M 1.4375 -3.484375 L 0.40625 -3.484375 L 0.40625 0 L 1.4375 0 Z M 1.4375 -3.484375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-7"> | |
| 72 | +<path d="M 1.640625 -3.59375 C 0.75 -3.59375 0.203125 -3.125 0.203125 -2.53125 C 0.203125 -2 0.546875 -1.640625 1.234375 -1.4375 C 1.875 -1.265625 1.96875 -1.1875 1.96875 -0.953125 C 1.96875 -0.75 1.78125 -0.625 1.46875 -0.625 C 1.125 -0.625 0.8125 -0.765625 0.546875 -0.96875 L 0.046875 -0.40625 C 0.375 -0.09375 0.890625 0.109375 1.5 0.109375 C 2.359375 0.109375 3.046875 -0.3125 3.046875 -1.03125 C 3.046875 -1.65625 2.65625 -1.953125 1.96875 -2.140625 C 1.34375 -2.328125 1.25 -2.40625 1.25 -2.59375 C 1.25 -2.75 1.390625 -2.859375 1.671875 -2.859375 C 1.96875 -2.859375 2.265625 -2.75 2.53125 -2.578125 L 2.90625 -3.171875 C 2.59375 -3.4375 2.140625 -3.59375 1.640625 -3.59375 Z M 1.640625 -3.59375 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-8"> | |
| 75 | +<path d="M 1.390625 -5.640625 C 0.734375 -4.71875 0.125 -3.859375 0.125 -2.296875 C 0.125 -0.734375 0.734375 0.125 1.390625 1.046875 L 2.046875 0.59375 C 1.4375 -0.28125 1.171875 -1.078125 1.171875 -2.296875 C 1.171875 -3.515625 1.4375 -4.3125 2.046875 -5.1875 Z M 1.390625 -5.640625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-9"> | |
| 78 | +<path d="M 2.296875 -1.859375 L 3.25 -3.484375 L 2.15625 -3.484375 L 1.6875 -2.375 L 1.203125 -3.484375 L 0.046875 -3.484375 L 1.046875 -1.828125 L -0.078125 0 L 1.0625 0 L 1.640625 -1.3125 L 2.25 0 L 3.421875 0 Z M 2.296875 -1.859375 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-10"> | |
| 81 | +<path d="M 3.15625 -1.015625 L 3.15625 -2.359375 C 3.15625 -3.171875 2.734375 -3.59375 1.71875 -3.59375 C 1.328125 -3.59375 0.84375 -3.5 0.40625 -3.34375 L 0.640625 -2.65625 C 0.984375 -2.78125 1.328125 -2.84375 1.5625 -2.84375 C 1.984375 -2.84375 2.140625 -2.71875 2.140625 -2.296875 L 2.140625 -2.15625 L 1.796875 -2.15625 C 0.734375 -2.15625 0.15625 -1.734375 0.15625 -0.984375 C 0.15625 -0.34375 0.59375 0.109375 1.296875 0.109375 C 1.703125 0.109375 2.09375 -0.03125 2.34375 -0.40625 C 2.5 -0.0625 2.78125 0.0625 3.1875 0.09375 L 3.40625 -0.578125 C 3.234375 -0.640625 3.15625 -0.734375 3.15625 -1.015625 Z M 1.59375 -0.625 C 1.34375 -0.625 1.1875 -0.796875 1.1875 -1.0625 C 1.1875 -1.421875 1.421875 -1.578125 1.890625 -1.578125 L 2.140625 -1.578125 L 2.140625 -0.953125 C 2.015625 -0.75 1.828125 -0.625 1.59375 -0.625 Z M 1.59375 -0.625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-11"> | |
| 84 | +<path d="M 2.4375 -3.59375 C 2 -3.59375 1.671875 -3.40625 1.375 -3.0625 L 1.296875 -3.484375 L 0.40625 -3.484375 L 0.40625 0 L 1.4375 0 L 1.4375 -2.375 C 1.609375 -2.671875 1.8125 -2.828125 2.046875 -2.828125 C 2.25 -2.828125 2.375 -2.734375 2.375 -2.375 L 2.375 0 L 3.40625 0 L 3.40625 -2.546875 C 3.40625 -3.203125 3.046875 -3.59375 2.4375 -3.59375 Z M 2.4375 -3.59375 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-12"> | |
| 87 | +<path d="M 1.921875 -3.59375 C 0.859375 -3.59375 0.203125 -2.859375 0.203125 -1.75 C 0.203125 -0.578125 0.859375 0.109375 1.921875 0.109375 C 2.984375 0.109375 3.625 -0.625 3.625 -1.734375 C 3.625 -2.90625 2.984375 -3.59375 1.921875 -3.59375 Z M 1.921875 -2.828125 C 2.34375 -2.828125 2.546875 -2.515625 2.546875 -1.734375 C 2.546875 -0.984375 2.34375 -0.65625 1.921875 -0.65625 C 1.5 -0.65625 1.28125 -0.96875 1.28125 -1.75 C 1.28125 -2.5 1.5 -2.828125 1.921875 -2.828125 Z M 1.921875 -2.828125 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-13"> | |
| 90 | +<path d="M 0.734375 -5.640625 L 0.078125 -5.1875 C 0.6875 -4.3125 0.96875 -3.515625 0.96875 -2.296875 C 0.96875 -1.078125 0.6875 -0.28125 0.078125 0.59375 L 0.734375 1.046875 C 1.390625 0.125 2.015625 -0.734375 2.015625 -2.296875 C 2.015625 -3.859375 1.390625 -4.71875 0.734375 -5.640625 Z M 0.734375 -5.640625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-14"> | |
| 93 | +<path d="M 1.578125 -3.8125 C 0.921875 -3.8125 0.421875 -3.5625 0.046875 -3.078125 L 0.640625 -2.59375 C 0.90625 -2.90625 1.15625 -3.046875 1.46875 -3.046875 C 1.796875 -3.046875 2.015625 -2.828125 2.015625 -2.53125 C 2.015625 -2.109375 1.765625 -1.84375 0.15625 -0.734375 L 0.15625 0 L 3.046875 0 L 3.15625 -0.78125 L 1.421875 -0.78125 C 2.828125 -1.625 3.078125 -2 3.078125 -2.609375 C 3.078125 -3.28125 2.5 -3.8125 1.578125 -3.8125 Z M 1.578125 -3.8125 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-15"> | |
| 96 | +<path d="M 1.890625 -4.65625 C 0.9375 -4.65625 0.25 -4.140625 0.25 -3.34375 C 0.25 -2.671875 0.625 -2.25 1.640625 -1.9375 C 2.296875 -1.734375 2.46875 -1.578125 2.46875 -1.25 C 2.46875 -0.90625 2.203125 -0.6875 1.75 -0.6875 C 1.296875 -0.6875 0.9375 -0.859375 0.609375 -1.140625 L 0.0625 -0.53125 C 0.4375 -0.171875 1 0.109375 1.78125 0.109375 C 2.921875 0.109375 3.59375 -0.484375 3.59375 -1.328125 C 3.59375 -2.171875 3.09375 -2.515625 2.234375 -2.796875 C 1.53125 -3.015625 1.359375 -3.140625 1.359375 -3.421875 C 1.359375 -3.71875 1.59375 -3.875 1.96875 -3.875 C 2.34375 -3.875 2.65625 -3.75 2.96875 -3.484375 L 3.46875 -4.078125 C 3.0625 -4.453125 2.578125 -4.65625 1.890625 -4.65625 Z M 1.890625 -4.65625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-16"> | |
| 99 | +<path d="M 4.25 -3.59375 C 3.8125 -3.59375 3.484375 -3.40625 3.203125 -3.046875 C 3.078125 -3.40625 2.78125 -3.59375 2.390625 -3.59375 C 1.96875 -3.59375 1.640625 -3.421875 1.375 -3.078125 L 1.296875 -3.484375 L 0.40625 -3.484375 L 0.40625 0 L 1.4375 0 L 1.4375 -2.375 C 1.59375 -2.671875 1.75 -2.828125 1.96875 -2.828125 C 2.125 -2.828125 2.265625 -2.734375 2.265625 -2.375 L 2.265625 0 L 3.296875 0 L 3.296875 -2.375 C 3.453125 -2.671875 3.609375 -2.828125 3.828125 -2.828125 C 3.984375 -2.828125 4.125 -2.734375 4.125 -2.375 L 4.125 0 L 5.15625 0 L 5.15625 -2.546875 C 5.15625 -3.203125 4.796875 -3.59375 4.25 -3.59375 Z M 4.25 -3.59375 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-17"> | |
| 102 | +<path d="M 2.25 -0.8125 C 2.109375 -0.734375 1.984375 -0.703125 1.875 -0.703125 C 1.65625 -0.703125 1.546875 -0.828125 1.546875 -1.15625 L 1.546875 -2.765625 L 2.234375 -2.765625 L 2.34375 -3.484375 L 1.546875 -3.484375 L 1.546875 -4.359375 L 0.5 -4.234375 L 0.5 -3.484375 L 0.015625 -3.484375 L 0.015625 -2.765625 L 0.5 -2.765625 L 0.5 -1.140625 C 0.5 -0.328125 0.875 0.109375 1.640625 0.109375 C 1.96875 0.109375 2.328125 0.015625 2.59375 -0.15625 Z M 2.25 -0.8125 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-18"> | |
| 105 | +<path d="M 1.921875 -3.59375 C 0.875 -3.59375 0.203125 -2.828125 0.203125 -1.71875 C 0.203125 -0.609375 0.859375 0.109375 1.9375 0.109375 C 2.421875 0.109375 2.78125 -0.046875 3.109375 -0.296875 L 2.65625 -0.9375 C 2.40625 -0.78125 2.234375 -0.703125 1.984375 -0.703125 C 1.578125 -0.703125 1.296875 -0.9375 1.296875 -1.71875 C 1.296875 -2.5 1.5625 -2.796875 2 -2.796875 C 2.234375 -2.796875 2.4375 -2.71875 2.671875 -2.546875 L 3.109375 -3.171875 C 2.78125 -3.453125 2.40625 -3.59375 1.921875 -3.59375 Z M 1.921875 -3.59375 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-19"> | |
| 108 | +<path d="M 1.5625 -3.8125 C 0.96875 -3.8125 0.46875 -3.609375 0.0625 -3.21875 L 0.578125 -2.671875 C 0.84375 -2.921875 1.109375 -3.046875 1.4375 -3.046875 C 1.796875 -3.046875 2.046875 -2.875 2.046875 -2.546875 C 2.046875 -2.203125 1.796875 -2 1.390625 -2 L 1.140625 -2 L 1.03125 -1.28125 L 1.390625 -1.28125 C 1.890625 -1.28125 2.125 -1.09375 2.125 -0.625 C 2.125 -0.203125 1.84375 0.015625 1.421875 0.015625 C 1.078125 0.015625 0.8125 -0.109375 0.515625 -0.40625 L -0.046875 0.140625 C 0.3125 0.5625 0.8125 0.8125 1.484375 0.8125 C 2.59375 0.8125 3.1875 0.1875 3.1875 -0.578125 C 3.1875 -1.296875 2.734375 -1.59375 2.15625 -1.65625 C 2.71875 -1.8125 3.046875 -2.1875 3.046875 -2.703125 C 3.046875 -3.3125 2.53125 -3.8125 1.5625 -3.8125 Z M 1.5625 -3.8125 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-20"> | |
| 111 | +<path d="M 2.28125 -4.65625 C 1.109375 -4.65625 0.21875 -3.8125 0.21875 -2.28125 C 0.21875 -0.734375 1.046875 0.109375 2.296875 0.109375 C 2.921875 0.109375 3.421875 -0.171875 3.71875 -0.46875 L 3.234375 -1.09375 C 2.96875 -0.890625 2.703125 -0.71875 2.34375 -0.71875 C 1.75 -0.71875 1.34375 -1.1875 1.34375 -2.28125 C 1.34375 -3.40625 1.75 -3.859375 2.34375 -3.859375 C 2.640625 -3.859375 2.90625 -3.75 3.15625 -3.546875 L 3.671875 -4.15625 C 3.28125 -4.484375 2.875 -4.65625 2.28125 -4.65625 Z M 2.28125 -4.65625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-21"> | |
| 114 | +<path d="M 2.453125 -4.984375 L 2.453125 -3.265625 C 2.25 -3.46875 1.96875 -3.59375 1.640625 -3.59375 C 0.78125 -3.59375 0.203125 -2.828125 0.203125 -1.75 C 0.203125 -0.625 0.65625 0.109375 1.53125 0.109375 C 2.015625 0.109375 2.328125 -0.125 2.53125 -0.40625 L 2.578125 0 L 3.5 0 L 3.5 -4.875 Z M 1.859375 -0.65625 C 1.515625 -0.65625 1.28125 -0.875 1.28125 -1.75 C 1.28125 -2.53125 1.546875 -2.84375 1.921875 -2.84375 C 2.140625 -2.84375 2.296875 -2.734375 2.453125 -2.546875 L 2.453125 -1.046875 C 2.296875 -0.78125 2.109375 -0.65625 1.859375 -0.65625 Z M 1.859375 -0.65625 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-22"> | |
| 117 | +<path d="M 2.734375 -4.703125 L 2.328125 -5.484375 L 0.90625 -4.609375 L 1.1875 -4.078125 Z M 3.4375 -1.8125 C 3.4375 -2.9375 2.828125 -3.59375 1.84375 -3.59375 C 0.78125 -3.59375 0.203125 -2.765625 0.203125 -1.71875 C 0.203125 -0.640625 0.796875 0.109375 1.96875 0.109375 C 2.53125 0.109375 2.96875 -0.09375 3.328125 -0.375 L 2.890625 -0.953125 C 2.59375 -0.734375 2.34375 -0.640625 2.0625 -0.640625 C 1.640625 -0.640625 1.34375 -0.8125 1.265625 -1.4375 L 3.421875 -1.4375 C 3.4375 -1.546875 3.4375 -1.703125 3.4375 -1.8125 Z M 2.421875 -2.0625 L 1.265625 -2.0625 C 1.3125 -2.6875 1.515625 -2.90625 1.859375 -2.90625 C 2.28125 -2.90625 2.421875 -2.578125 2.421875 -2.109375 Z M 2.421875 -2.0625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-23"> | |
| 120 | +<path d="M 1.3125 0.109375 C 1.5625 0.109375 1.796875 0.0625 1.9375 0 L 1.75 -0.734375 C 1.703125 -0.71875 1.640625 -0.703125 1.578125 -0.703125 C 1.453125 -0.703125 1.390625 -0.78125 1.390625 -0.921875 L 1.390625 -4.984375 L 0.359375 -4.875 L 0.359375 -0.890625 C 0.359375 -0.25 0.703125 0.109375 1.3125 0.109375 Z M 1.3125 0.109375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-24"> | |
| 123 | +<path d="M 3.53125 -0.953125 L 3.046875 -0.953125 L 3.046875 -2.015625 L 2.171875 -2.015625 L 2.0625 -0.953125 L 1.15625 -0.953125 L 2.234375 -3.5 L 1.359375 -3.8125 L 0.09375 -0.859375 L 0.09375 -0.1875 L 2.046875 -0.1875 L 2.046875 0.71875 L 3.046875 0.71875 L 3.046875 -0.1875 L 3.53125 -0.1875 Z M 3.53125 -0.953125 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-25"> | |
| 126 | +<path d="M 3.328125 -3.484375 L 2.296875 -3.484375 L 2.296875 -1.0625 C 2.140625 -0.796875 1.9375 -0.65625 1.71875 -0.65625 C 1.515625 -0.65625 1.390625 -0.765625 1.390625 -1.109375 L 1.390625 -3.484375 L 0.359375 -3.484375 L 0.359375 -0.984375 C 0.359375 -0.3125 0.671875 0.109375 1.328125 0.109375 C 1.796875 0.109375 2.125 -0.078125 2.375 -0.4375 L 2.421875 0 L 3.328125 0 Z M 3.328125 -3.484375 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-26"> | |
| 129 | +<path d="M 2.375 -3.59375 C 1.984375 -3.59375 1.640625 -3.421875 1.4375 -3.125 L 1.4375 -4.984375 L 0.40625 -4.875 L 0.40625 0 L 1.3125 0 L 1.375 -0.328125 C 1.578125 -0.0625 1.890625 0.109375 2.28125 0.109375 C 3.15625 0.109375 3.671875 -0.65625 3.671875 -1.734375 C 3.671875 -2.90625 3.203125 -3.59375 2.375 -3.59375 Z M 1.984375 -0.640625 C 1.765625 -0.640625 1.5625 -0.765625 1.4375 -0.984375 L 1.4375 -2.421875 C 1.59375 -2.6875 1.796875 -2.828125 2.03125 -2.828125 C 2.359375 -2.828125 2.59375 -2.625 2.59375 -1.734375 C 2.59375 -0.921875 2.34375 -0.640625 1.984375 -0.640625 Z M 1.984375 -0.640625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-2-0"> | |
| 132 | +<path d="M 2.875 -5.90625 C 1.5625 -5.90625 0.46875 -4.875 0.46875 -2.90625 C 0.46875 -0.953125 1.484375 0.09375 2.890625 0.09375 C 3.671875 0.09375 4.234375 -0.21875 4.546875 -0.546875 L 4.15625 -1.046875 C 3.828125 -0.8125 3.46875 -0.578125 2.90625 -0.578125 C 2.015625 -0.578125 1.3125 -1.234375 1.3125 -2.90625 C 1.3125 -4.65625 2.046875 -5.25 2.921875 -5.25 C 3.328125 -5.25 3.6875 -5.109375 4.046875 -4.8125 L 4.484375 -5.328125 C 4.015625 -5.703125 3.609375 -5.90625 2.875 -5.90625 Z M 2.875 -5.90625 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-2-1"> | |
| 135 | +<path d="M 4.0625 -4.4375 L 3.265625 -4.4375 L 2.09375 -0.5625 L 0.90625 -4.4375 L 0.078125 -4.4375 L 1.578125 0 L 1.84375 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.1875 L 0.515625 1.796875 C 1.75 1.65625 2.265625 0.96875 2.578125 0.03125 Z M 4.0625 -4.4375 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-2-2"> | |
| 138 | +<path d="M 2.421875 -4.546875 C 1.21875 -4.546875 0.484375 -3.59375 0.484375 -2.1875 C 0.484375 -0.75 1.21875 0.09375 2.421875 0.09375 C 2.9375 0.09375 3.375 -0.0625 3.765625 -0.390625 L 3.421875 -0.890625 C 3.078125 -0.671875 2.828125 -0.5625 2.453125 -0.5625 C 1.75 -0.5625 1.3125 -1.03125 1.3125 -2.203125 C 1.3125 -3.359375 1.75 -3.90625 2.453125 -3.90625 C 2.828125 -3.90625 3.09375 -3.796875 3.40625 -3.578125 L 3.765625 -4.0625 C 3.359375 -4.40625 2.9375 -4.546875 2.421875 -4.546875 Z M 2.421875 -4.546875 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-2-3"> | |
| 141 | +<path d="M 1.65625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.984375 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.3125 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.09375 0.09375 1.65625 0.09375 Z M 1.65625 0.09375 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-2-4"> | |
| 144 | +<path d="M 4.15625 -2.34375 C 4.15625 -3.703125 3.515625 -4.546875 2.328125 -4.546875 C 1.171875 -4.546875 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.0625 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.65625 -0.921875 C 3.265625 -0.65625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.3125 -1.953125 L 4.140625 -1.953125 C 4.140625 -2.0625 4.15625 -2.203125 4.15625 -2.34375 Z M 3.390625 -2.53125 L 1.3125 -2.53125 C 1.359375 -3.515625 1.75 -3.921875 2.34375 -3.921875 C 3.046875 -3.921875 3.390625 -3.4375 3.390625 -2.578125 Z M 3.390625 -2.53125 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-2-5"> | |
| 147 | +<path d="M 2.46875 -4.546875 C 1.203125 -4.546875 0.484375 -3.59375 0.484375 -2.21875 C 0.484375 -0.8125 1.203125 0.09375 2.453125 0.09375 C 3.71875 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.734375 -4.546875 2.46875 -4.546875 Z M 2.46875 -3.921875 C 3.203125 -3.921875 3.609375 -3.375 3.609375 -2.21875 C 3.609375 -1.0625 3.203125 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.21875 C 1.3125 -3.375 1.71875 -3.921875 2.46875 -3.921875 Z M 2.46875 -3.921875 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-2-6"> | |
| 150 | +<path d="M 5.234375 -4.546875 C 4.625 -4.546875 4.234375 -4.21875 3.90625 -3.734375 C 3.734375 -4.25 3.328125 -4.546875 2.78125 -4.546875 C 2.203125 -4.546875 1.796875 -4.234375 1.5 -3.796875 L 1.4375 -4.4375 L 0.78125 -4.4375 L 0.78125 0 L 1.546875 0 L 1.546875 -3.15625 C 1.84375 -3.625 2.109375 -3.9375 2.59375 -3.9375 C 2.9375 -3.9375 3.21875 -3.734375 3.21875 -3.078125 L 3.21875 0 L 3.984375 0 L 3.984375 -3.15625 C 4.296875 -3.625 4.5625 -3.9375 5.03125 -3.9375 C 5.375 -3.9375 5.65625 -3.734375 5.65625 -3.078125 L 5.65625 0 L 6.4375 0 L 6.4375 -3.1875 C 6.4375 -4.015625 5.953125 -4.546875 5.234375 -4.546875 Z M 5.234375 -4.546875 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-2-7"> | |
| 153 | +<path d="M 2.8125 -4.546875 C 2.3125 -4.546875 1.828125 -4.296875 1.5 -3.84375 L 1.4375 -4.4375 L 0.78125 -4.4375 L 0.78125 1.796875 L 1.546875 1.703125 L 1.546875 -0.40625 C 1.84375 -0.0625 2.234375 0.09375 2.71875 0.09375 C 3.859375 0.09375 4.453125 -0.875 4.453125 -2.21875 C 4.453125 -3.625 3.984375 -4.546875 2.8125 -4.546875 Z M 2.53125 -0.53125 C 2.125 -0.53125 1.78125 -0.71875 1.546875 -1.0625 L 1.546875 -3.234375 C 1.78125 -3.59375 2.140625 -3.921875 2.625 -3.921875 C 3.28125 -3.921875 3.625 -3.375 3.625 -2.21875 C 3.625 -1.0625 3.234375 -0.53125 2.53125 -0.53125 Z M 2.53125 -0.53125 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-2-8"> | |
| 156 | +<path d="M 2.75 -0.71875 C 2.53125 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.203125 L 1.625 -3.84375 L 2.59375 -3.84375 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.53125 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.84375 L 0.84375 -3.84375 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.75 0 3.046875 -0.203125 Z M 2.75 -0.71875 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-2-9"> | |
| 159 | +<path d="M 1 -4.171875 C 0.671875 -4.171875 0.421875 -3.90625 0.421875 -3.59375 C 0.421875 -3.265625 0.671875 -3 1 -3 C 1.34375 -3 1.59375 -3.265625 1.59375 -3.59375 C 1.59375 -3.90625 1.34375 -4.171875 1 -4.171875 Z M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.34375 0.09375 1.59375 -0.15625 1.59375 -0.484375 C 1.59375 -0.8125 1.34375 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-2-10"> | |
| 162 | +<path d="M 3.484375 -4.75 L 0.125 -4.75 L 0.125 -4.125 L 2.703125 -4.125 L 0.71875 0.765625 L 1.421875 1 L 3.484375 -4.171875 Z M 3.484375 -4.75 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-2-11"> | |
| 165 | +<path d="M 3.25 -5.78125 L 1.578125 -6.75 L 1.234375 -6.09375 L 3.015625 -5.375 Z M 3.75 -1.03125 L 3.75 -3.0625 C 3.75 -3.984375 3.265625 -4.546875 2.1875 -4.546875 C 1.6875 -4.546875 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.3125 -3.828125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.296875 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.875 0.09375 1.75 0.09375 C 2.296875 0.09375 2.765625 -0.09375 3.078125 -0.5625 C 3.203125 -0.125 3.5 0.046875 3.9375 0.09375 L 4.125 -0.4375 C 3.890625 -0.515625 3.75 -0.65625 3.75 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.765625 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.390625 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-2-12"> | |
| 168 | +<path d="M 2.71875 -4.75 L 2.03125 -4.75 L 0.296875 -3.671875 L 0.625 -3.125 L 1.953125 -3.921875 L 1.953125 0 L 2.71875 0 Z M 2.71875 -4.75 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-2-13"> | |
| 171 | +<path d="M 1.875 -4.828125 C 1.140625 -4.828125 0.59375 -4.515625 0.125 -3.9375 L 0.625 -3.53125 C 1.03125 -4.03125 1.390625 -4.203125 1.859375 -4.203125 C 2.421875 -4.203125 2.8125 -3.859375 2.8125 -3.3125 C 2.8125 -2.640625 2.546875 -2.265625 0.25 -0.609375 L 0.25 0 L 3.625 0 L 3.71875 -0.65625 L 1.25 -0.65625 C 3.421875 -2.03125 3.625 -2.578125 3.625 -3.34375 C 3.625 -4.1875 2.953125 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-2-14"> | |
| 174 | +<path d="M 3.75 -1.03125 L 3.75 -3.0625 C 3.75 -3.984375 3.265625 -4.546875 2.1875 -4.546875 C 1.6875 -4.546875 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.3125 -3.828125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.296875 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.875 0.09375 1.75 0.09375 C 2.296875 0.09375 2.765625 -0.09375 3.078125 -0.5625 C 3.203125 -0.125 3.5 0.046875 3.9375 0.09375 L 4.125 -0.4375 C 3.890625 -0.515625 3.75 -0.65625 3.75 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.765625 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.390625 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-2-15"> | |
| 177 | +<path d="M 2.859375 -4.546875 C 2.28125 -4.546875 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.78125 -4.4375 L 0.78125 0 L 1.546875 0 L 1.546875 -3.15625 C 1.84375 -3.625 2.1875 -3.9375 2.671875 -3.9375 C 3.109375 -3.9375 3.375 -3.734375 3.375 -3.078125 L 3.375 0 L 4.15625 0 L 4.15625 -3.1875 C 4.15625 -4.03125 3.6875 -4.546875 2.859375 -4.546875 Z M 2.859375 -4.546875 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-2-16"> | |
| 180 | +<path d="M 2 -4.546875 C 1.09375 -4.546875 0.40625 -4.03125 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.75 -2.03125 C 2.609375 -1.796875 2.828125 -1.640625 2.828125 -1.203125 C 2.828125 -0.78125 2.453125 -0.515625 1.875 -0.515625 C 1.390625 -0.515625 0.984375 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.640625 -0.3125 3.640625 -1.25 C 3.640625 -2.015625 3.09375 -2.390625 2.171875 -2.625 C 1.453125 -2.8125 1.21875 -2.984375 1.21875 -3.34375 C 1.21875 -3.703125 1.53125 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.1875 -3.546875 L 3.515625 -4.03125 C 3.09375 -4.359375 2.625 -4.546875 2 -4.546875 Z M 2 -4.546875 "/> | |
| 181 | +</g> | |
| 182 | +</g> | |
| 183 | +</defs> | |
| 184 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(37.644958%, 39.99939%, 43.920898%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00189532 0.0000462793 L 302.801374 0.0000462793 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 185 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(37.644958%, 39.99939%, 43.920898%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549323 3.109729 C -2.084433 1.246263 -1.045268 0.363363 0.00171068 0.0000462793 C -1.045268 -0.363271 -2.084433 -1.246171 -2.549323 -3.109636 " transform="matrix(0.999901, 0, 0, -0.999901, 334.123289, 148.656296)"/> | |
| 186 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 187 | +<use xlink:href="#glyph-0-0" x="338.036762" y="150.478116"/> | |
| 188 | +</g> | |
| 189 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 190 | +<use xlink:href="#glyph-0-1" x="341.497678" y="150.478116"/> | |
| 191 | +<use xlink:href="#glyph-0-2" x="345.572868" y="150.478116"/> | |
| 192 | +<use xlink:href="#glyph-0-3" x="351.940354" y="150.478116"/> | |
| 193 | +<use xlink:href="#glyph-0-4" x="356.330173" y="150.478116"/> | |
| 194 | +</g> | |
| 195 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(37.644958%, 39.99939%, 43.920898%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00189532 0.0000462793 L 0.00189532 129.317523 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 196 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(37.644958%, 39.99939%, 43.920898%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549163 3.111694 C -2.084273 1.244322 -1.045108 0.361422 0.00187033 -0.00189532 C -1.045108 -0.361306 -2.084273 -1.244206 -2.549163 -3.111578 " transform="matrix(0, -0.999901, -0.999901, 0, 30.955136, 18.954995)"/> | |
| 197 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 198 | +<use xlink:href="#glyph-0-5" x="8.103396" y="14.25559"/> | |
| 199 | +</g> | |
| 200 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 201 | +<use xlink:href="#glyph-0-6" x="12.305937" y="14.25559"/> | |
| 202 | +<use xlink:href="#glyph-0-7" x="15.175051" y="14.25559"/> | |
| 203 | +<use xlink:href="#glyph-0-8" x="17.24261" y="14.25559"/> | |
| 204 | +</g> | |
| 205 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 206 | +<use xlink:href="#glyph-0-9" x="22.86098" y="14.25559"/> | |
| 207 | +</g> | |
| 208 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 209 | +<use xlink:href="#glyph-0-10" x="28.74154" y="14.25559"/> | |
| 210 | +<use xlink:href="#glyph-0-11" x="33.033974" y="14.25559"/> | |
| 211 | +<use xlink:href="#glyph-0-12" x="36.614748" y="14.25559"/> | |
| 212 | +<use xlink:href="#glyph-0-7" x="39.319056" y="14.25559"/> | |
| 213 | +<use xlink:href="#glyph-0-13" x="41.386616" y="14.25559"/> | |
| 214 | +<use xlink:href="#glyph-0-7" x="45.072266" y="14.25559"/> | |
| 215 | +<use xlink:href="#glyph-0-12" x="47.139826" y="14.25559"/> | |
| 216 | +</g> | |
| 217 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 218 | +<use xlink:href="#glyph-0-14" x="49.731767" y="14.25559"/> | |
| 219 | +</g> | |
| 220 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12.046055 60.236472 C 12.046055 60.236472 27.785893 70.753138 36.142188 77.105328 C 44.498484 83.457519 62.590117 99.998217 72.286388 106.018344 C 81.978753 112.034564 97.995962 119.136829 106.016287 120.472899 C 114.040518 121.812875 123.428165 119.000097 130.11242 115.656016 C 136.800581 112.311935 147.520391 102.732863 154.208553 96.380672 C 160.892808 90.028481 171.616524 76.226335 178.300779 69.874144 C 184.988941 63.521954 197.384698 53.942881 202.396912 50.598801 C 207.413034 47.25472 209.428858 44.777912 214.444979 45.781918 C 219.4611 46.782017 231.852951 52.813863 238.541112 57.826078 C 245.225367 62.842199 255.281049 74.566015 262.633339 81.922211 C 269.989535 89.278407 291.550261 110.835227 291.550261 110.835227 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 221 | +<path fill-rule="nonzero" fill="rgb(85.939026%, 92.292786%, 89.588928%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 61.632991 32.171197 L 10.651386 32.171197 C 7.350278 32.171197 4.674232 29.495151 4.674232 26.194043 L 4.674232 17.17362 C 4.674232 13.872512 7.350278 11.196466 10.651386 11.196466 L 61.632991 11.196466 C 64.934098 11.196466 67.610144 13.872512 67.610144 17.17362 L 67.610144 26.194043 C 67.610144 29.495151 64.934098 32.171197 61.632991 32.171197 Z M 61.632991 32.171197 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 222 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 223 | +<use xlink:href="#glyph-1-0" x="52.377017" y="124.916644"/> | |
| 224 | +<use xlink:href="#glyph-1-1" x="55.339765" y="124.916644"/> | |
| 225 | +</g> | |
| 226 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 227 | +<use xlink:href="#glyph-1-2" x="59.095638" y="124.916644"/> | |
| 228 | +</g> | |
| 229 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 230 | +<use xlink:href="#glyph-1-3" x="63.067817" y="124.916644"/> | |
| 231 | +<use xlink:href="#glyph-1-4" x="66.69915" y="124.916644"/> | |
| 232 | +<use xlink:href="#glyph-1-5" x="70.573008" y="124.916644"/> | |
| 233 | +<use xlink:href="#glyph-1-6" x="73.194909" y="124.916644"/> | |
| 234 | +<use xlink:href="#glyph-1-7" x="75.030239" y="124.916644"/> | |
| 235 | +<use xlink:href="#glyph-1-3" x="78.17652" y="124.916644"/> | |
| 236 | +</g> | |
| 237 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 238 | +<use xlink:href="#glyph-1-8" x="49.644288" y="132.886856"/> | |
| 239 | +<use xlink:href="#glyph-1-3" x="51.774582" y="132.886856"/> | |
| 240 | +</g> | |
| 241 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 242 | +<use xlink:href="#glyph-1-9" x="55.333812" y="132.886856"/> | |
| 243 | +<use xlink:href="#glyph-1-4" x="58.689845" y="132.886856"/> | |
| 244 | +</g> | |
| 245 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 246 | +<use xlink:href="#glyph-1-10" x="62.511265" y="132.886856"/> | |
| 247 | +<use xlink:href="#glyph-1-11" x="66.090159" y="132.886856"/> | |
| 248 | +<use xlink:href="#glyph-1-7" x="69.846032" y="132.886856"/> | |
| 249 | +<use xlink:href="#glyph-1-6" x="72.992313" y="132.886856"/> | |
| 250 | +<use xlink:href="#glyph-1-12" x="74.827643" y="132.886856"/> | |
| 251 | +<use xlink:href="#glyph-1-11" x="78.655618" y="132.886856"/> | |
| 252 | +<use xlink:href="#glyph-1-13" x="82.411491" y="132.886856"/> | |
| 253 | +</g> | |
| 254 | +<path fill-rule="nonzero" fill="rgb(96.998596%, 94.645691%, 87.11853%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 131.507089 31.897732 L 80.525484 31.897732 C 77.224376 31.897732 74.548331 29.221686 74.548331 25.920579 L 74.548331 17.450991 C 74.548331 14.149883 77.224376 11.473837 80.525484 11.473837 L 131.507089 11.473837 C 134.808197 11.473837 137.484242 14.149883 137.484242 17.450991 L 137.484242 25.920579 C 137.484242 29.221686 134.808197 31.897732 131.507089 31.897732 Z M 131.507089 31.897732 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 255 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 256 | +<use xlink:href="#glyph-1-14" x="121.005229" y="124.641672"/> | |
| 257 | +<use xlink:href="#glyph-1-1" x="124.394036" y="124.641672"/> | |
| 258 | +</g> | |
| 259 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 260 | +<use xlink:href="#glyph-1-15" x="128.149909" y="124.641672"/> | |
| 261 | +<use xlink:href="#glyph-1-12" x="131.899226" y="124.641672"/> | |
| 262 | +<use xlink:href="#glyph-1-16" x="135.727201" y="124.641672"/> | |
| 263 | +<use xlink:href="#glyph-1-16" x="141.239748" y="124.641672"/> | |
| 264 | +<use xlink:href="#glyph-1-3" x="146.752294" y="124.641672"/> | |
| 265 | +<use xlink:href="#glyph-1-17" x="150.383626" y="124.641672"/> | |
| 266 | +</g> | |
| 267 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 268 | +<use xlink:href="#glyph-1-8" x="130.406299" y="132.610883"/> | |
| 269 | +<use xlink:href="#glyph-1-4" x="132.536594" y="132.610883"/> | |
| 270 | +<use xlink:href="#glyph-1-6" x="136.410452" y="132.610883"/> | |
| 271 | +<use xlink:href="#glyph-1-18" x="138.245782" y="132.610883"/> | |
| 272 | +<use xlink:href="#glyph-1-13" x="141.385508" y="132.610883"/> | |
| 273 | +</g> | |
| 274 | +<path fill-rule="nonzero" fill="rgb(95.469666%, 87.469482%, 86.880493%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 203.791582 31.975865 L 152.813884 31.975865 C 149.508869 31.975865 146.832823 29.299819 146.832823 25.998711 L 146.832823 17.372858 C 146.832823 14.07175 149.508869 11.395705 152.813884 11.395705 L 203.791582 11.395705 C 207.092689 11.395705 209.772642 14.07175 209.772642 17.372858 L 209.772642 25.998711 C 209.772642 29.299819 207.092689 31.975865 203.791582 31.975865 Z M 203.791582 31.975865 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 275 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 276 | +<use xlink:href="#glyph-1-19" x="188.234579" y="125.115625"/> | |
| 277 | +<use xlink:href="#glyph-1-1" x="191.610277" y="125.115625"/> | |
| 278 | +</g> | |
| 279 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 280 | +<use xlink:href="#glyph-1-20" x="195.366149" y="125.115625"/> | |
| 281 | +</g> | |
| 282 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 283 | +<use xlink:href="#glyph-1-12" x="199.004036" y="125.115625"/> | |
| 284 | +<use xlink:href="#glyph-1-11" x="202.832011" y="125.115625"/> | |
| 285 | +<use xlink:href="#glyph-1-17" x="206.587884" y="125.115625"/> | |
| 286 | +<use xlink:href="#glyph-1-5" x="209.118018" y="125.115625"/> | |
| 287 | +</g> | |
| 288 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 289 | +<use xlink:href="#glyph-1-10" x="211.569495" y="125.115625"/> | |
| 290 | +<use xlink:href="#glyph-1-18" x="215.14839" y="125.115625"/> | |
| 291 | +<use xlink:href="#glyph-1-17" x="218.288116" y="125.115625"/> | |
| 292 | +<use xlink:href="#glyph-1-6" x="220.81825" y="125.115625"/> | |
| 293 | +<use xlink:href="#glyph-1-12" x="222.65358" y="125.115625"/> | |
| 294 | +<use xlink:href="#glyph-1-11" x="226.481555" y="125.115625"/> | |
| 295 | +</g> | |
| 296 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 297 | +<use xlink:href="#glyph-1-8" x="197.995614" y="133.084836"/> | |
| 298 | +<use xlink:href="#glyph-1-21" x="200.125908" y="133.084836"/> | |
| 299 | +<use xlink:href="#glyph-1-22" x="204.019431" y="133.084836"/> | |
| 300 | +<use xlink:href="#glyph-1-18" x="207.650763" y="133.084836"/> | |
| 301 | +<use xlink:href="#glyph-1-23" x="210.790489" y="133.084836"/> | |
| 302 | +<use xlink:href="#glyph-1-6" x="212.756915" y="133.084836"/> | |
| 303 | +<use xlink:href="#glyph-1-11" x="214.592245" y="133.084836"/> | |
| 304 | +<use xlink:href="#glyph-1-13" x="218.348118" y="133.084836"/> | |
| 305 | +</g> | |
| 306 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 264.031914 31.698494 L 213.05031 31.698494 C 209.749202 31.698494 207.073156 29.022448 207.073156 25.72134 L 207.073156 17.650229 C 207.073156 14.349122 209.749202 11.673076 213.05031 11.673076 L 264.031914 11.673076 C 267.333022 11.673076 270.009068 14.349122 270.009068 17.650229 L 270.009068 25.72134 C 270.009068 29.022448 267.333022 31.698494 264.031914 31.698494 Z M 264.031914 31.698494 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 307 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 308 | +<use xlink:href="#glyph-1-24" x="257.333745" y="124.839652"/> | |
| 309 | +</g> | |
| 310 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 311 | +<use xlink:href="#glyph-1-1" x="260.951968" y="124.839652"/> | |
| 312 | +</g> | |
| 313 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 314 | +<use xlink:href="#glyph-1-20" x="264.70784" y="124.839652"/> | |
| 315 | +</g> | |
| 316 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 317 | +<use xlink:href="#glyph-1-5" x="268.398166" y="124.839652"/> | |
| 318 | +</g> | |
| 319 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 320 | +<use xlink:href="#glyph-1-3" x="270.888971" y="124.839652"/> | |
| 321 | +<use xlink:href="#glyph-1-25" x="274.520304" y="124.839652"/> | |
| 322 | +<use xlink:href="#glyph-1-9" x="278.243403" y="124.839652"/> | |
| 323 | +</g> | |
| 324 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 325 | +<use xlink:href="#glyph-1-8" x="248.636605" y="132.809864"/> | |
| 326 | +<use xlink:href="#glyph-1-7" x="250.766899" y="132.809864"/> | |
| 327 | +<use xlink:href="#glyph-1-17" x="253.91318" y="132.809864"/> | |
| 328 | +</g> | |
| 329 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 330 | +<use xlink:href="#glyph-1-10" x="256.403986" y="132.809864"/> | |
| 331 | +<use xlink:href="#glyph-1-26" x="259.98288" y="132.809864"/> | |
| 332 | +<use xlink:href="#glyph-1-6" x="263.856738" y="132.809864"/> | |
| 333 | +<use xlink:href="#glyph-1-23" x="265.692069" y="132.809864"/> | |
| 334 | +<use xlink:href="#glyph-1-6" x="267.658494" y="132.809864"/> | |
| 335 | +<use xlink:href="#glyph-1-7" x="269.493825" y="132.809864"/> | |
| 336 | +<use xlink:href="#glyph-1-10" x="272.640106" y="132.809864"/> | |
| 337 | +<use xlink:href="#glyph-1-17" x="276.219" y="132.809864"/> | |
| 338 | +<use xlink:href="#glyph-1-6" x="278.749134" y="132.809864"/> | |
| 339 | +<use xlink:href="#glyph-1-12" x="280.584465" y="132.809864"/> | |
| 340 | +<use xlink:href="#glyph-1-11" x="284.41244" y="132.809864"/> | |
| 341 | +<use xlink:href="#glyph-1-13" x="288.168312" y="132.809864"/> | |
| 342 | +</g> | |
| 343 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 36.142188 33.733851 L 48.092589 81.535454 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 344 | +<path fill="none" stroke-width="0.3985" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.074171 2.391104 C -1.695203 0.955622 -0.849096 0.277187 0.00175799 -0.00140081 C -0.851005 -0.279 -1.692407 -0.956446 -2.070497 -2.39191 " transform="matrix(0.242486, -0.970044, -0.970044, -0.242486, 79.091965, 66.934959)"/> | |
| 345 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 106.016287 33.733851 L 106.016287 110.43675 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 346 | +<path fill="none" stroke-width="0.3985" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.072229 2.392245 C -1.693285 0.954603 -0.849452 0.278755 -0.0017117 0.00138349 C -0.849452 -0.279894 -1.693285 -0.955742 -2.072229 -2.389478 " transform="matrix(0, -0.999901, -0.999901, 0, 136.962321, 38.029538)"/> | |
| 347 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 178.300779 33.733851 L 168.745147 79.125059 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 348 | +<path fill="none" stroke-width="0.3985" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.073398 2.392428 C -1.693325 0.955011 -0.849671 0.278353 0.00183149 -0.000723177 C -0.851484 -0.280195 -1.692728 -0.957451 -2.070397 -2.391042 " transform="matrix(-0.20599, -0.978433, -0.978433, 0.20599, 199.644201, 69.345691)"/> | |
| 349 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 238.541112 33.733851 L 219.562673 50.337056 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 350 | +<path fill="none" stroke-width="0.3985" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.071116 2.390662 C -1.693284 0.95622 -0.849807 0.277045 0.00101486 -0.00116047 C -0.850903 -0.279387 -1.693261 -0.954172 -2.071425 -2.390829 " transform="matrix(-0.752456, -0.658415, -0.658415, 0.752456, 250.347656, 98.192948)"/> | |
| 351 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12.843009 -13.251264 L 290.753307 -13.251264 " transform="matrix(0.999901, 0, 0, -0.999901, 30.955136, 148.656296)"/> | |
| 352 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549616 3.112563 C -2.084726 1.245191 -1.045561 0.362291 0.00141784 -0.00102571 C -1.045561 -0.364343 -2.084726 -1.243336 -2.549616 -3.110708 " transform="matrix(-0.999901, 0, 0, 0.999901, 43.399855, 161.907276)"/> | |
| 353 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549899 3.110708 C -2.08501 1.243336 -1.045844 0.364343 0.00113411 0.00102571 C -1.045844 -0.362291 -2.08501 -1.245191 -2.549899 -3.112563 " transform="matrix(0.999901, 0, 0, -0.999901, 322.076991, 161.907276)"/> | |
| 354 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-2-0" x="135.086836" y="172.062981"/> | |
| 356 | +</g> | |
| 357 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 358 | +<use xlink:href="#glyph-2-1" x="139.384895" y="172.062981"/> | |
| 359 | +</g> | |
| 360 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 361 | +<use xlink:href="#glyph-2-2" x="143.497548" y="172.062981"/> | |
| 362 | +<use xlink:href="#glyph-2-3" x="147.525924" y="172.062981"/> | |
| 363 | +</g> | |
| 364 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 365 | +<use xlink:href="#glyph-2-4" x="149.961491" y="172.062981"/> | |
| 366 | +</g> | |
| 367 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 368 | +<use xlink:href="#glyph-2-2" x="156.779392" y="172.062981"/> | |
| 369 | +</g> | |
| 370 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 371 | +<use xlink:href="#glyph-2-5" x="160.681356" y="172.062981"/> | |
| 372 | +<use xlink:href="#glyph-2-6" x="165.603054" y="172.062981"/> | |
| 373 | +<use xlink:href="#glyph-2-7" x="172.766486" y="172.062981"/> | |
| 374 | +<use xlink:href="#glyph-2-3" x="177.70504" y="172.062981"/> | |
| 375 | +</g> | |
| 376 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 377 | +<use xlink:href="#glyph-2-4" x="180.140606" y="172.062981"/> | |
| 378 | +<use xlink:href="#glyph-2-8" x="184.725203" y="172.062981"/> | |
| 379 | +</g> | |
| 380 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 381 | +<use xlink:href="#glyph-2-9" x="190.000859" y="172.062981"/> | |
| 382 | +</g> | |
| 383 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 384 | +<use xlink:href="#glyph-2-10" x="194.25678" y="172.062981"/> | |
| 385 | +</g> | |
| 386 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 387 | +<use xlink:href="#glyph-2-11" x="200.274063" y="172.062981"/> | |
| 388 | +</g> | |
| 389 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 390 | +<use xlink:href="#glyph-2-12" x="207.049826" y="172.062981"/> | |
| 391 | +<use xlink:href="#glyph-2-13" x="210.614687" y="172.062981"/> | |
| 392 | +</g> | |
| 393 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 394 | +<use xlink:href="#glyph-2-14" x="217.028065" y="172.062981"/> | |
| 395 | +<use xlink:href="#glyph-2-15" x="221.570523" y="172.062981"/> | |
| 396 | +<use xlink:href="#glyph-2-16" x="226.450084" y="172.062981"/> | |
| 397 | +</g> | |
| 398 | +</svg> | |
added
dist/assets/fig/6bdd004543fa18f6.svg
+687 −0
@@ -0,0 +1,687 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="360.568pt" height="131.011pt" viewBox="0 0 360.568 131.011"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.703125 -4.71875 L 2.015625 -4.71875 L 0.296875 -3.640625 L 0.625 -3.09375 L 1.9375 -3.890625 L 1.9375 0 L 2.703125 0 Z M 2.703125 -4.71875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.796875 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.328125 0.09375 1.578125 -0.15625 1.578125 -0.484375 C 1.578125 -0.796875 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 2.84375 -5.859375 C 1.546875 -5.859375 0.453125 -4.828125 0.453125 -2.890625 C 0.453125 -0.9375 1.46875 0.09375 2.875 0.09375 C 3.640625 0.09375 4.203125 -0.21875 4.515625 -0.546875 L 4.125 -1.046875 C 3.796875 -0.796875 3.4375 -0.5625 2.890625 -0.5625 C 2 -0.5625 1.296875 -1.21875 1.296875 -2.890625 C 1.296875 -4.625 2.03125 -5.203125 2.90625 -5.203125 C 3.296875 -5.203125 3.65625 -5.078125 4.015625 -4.78125 L 4.453125 -5.296875 C 3.984375 -5.65625 3.578125 -5.859375 2.84375 -5.859375 Z M 2.84375 -5.859375 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 2.453125 -4.5 C 1.203125 -4.5 0.46875 -3.5625 0.46875 -2.203125 C 0.46875 -0.796875 1.1875 0.09375 2.4375 0.09375 C 3.6875 0.09375 4.40625 -0.84375 4.40625 -2.203125 C 4.40625 -3.609375 3.703125 -4.5 2.453125 -4.5 Z M 2.453125 -3.890625 C 3.171875 -3.890625 3.578125 -3.359375 3.578125 -2.203125 C 3.578125 -1.046875 3.171875 -0.515625 2.4375 -0.515625 C 1.703125 -0.515625 1.296875 -1.046875 1.296875 -2.203125 C 1.296875 -3.359375 1.71875 -3.890625 2.453125 -3.890625 Z M 2.453125 -3.890625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 1.640625 0.09375 C 1.859375 0.09375 2.078125 0.046875 2.25 -0.046875 L 2.046875 -0.578125 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.484375 -0.65625 1.484375 -0.890625 L 1.484375 -6.265625 L 0.71875 -6.171875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 4.125 -2.328125 C 4.125 -3.671875 3.5 -4.5 2.3125 -4.5 C 1.171875 -4.5 0.46875 -3.53125 0.46875 -2.15625 C 0.46875 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.03125 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.109375 -2.046875 4.125 -2.1875 4.125 -2.328125 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.484375 1.734375 -3.890625 2.328125 -3.890625 C 3.015625 -3.890625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.40625 -4.5 C 1.203125 -4.5 0.46875 -3.5625 0.46875 -2.171875 C 0.46875 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.90625 0.09375 3.359375 -0.0625 3.75 -0.390625 L 3.390625 -0.890625 C 3.0625 -0.671875 2.796875 -0.546875 2.4375 -0.546875 C 1.734375 -0.546875 1.296875 -1.03125 1.296875 -2.1875 C 1.296875 -3.328125 1.734375 -3.875 2.4375 -3.875 C 2.796875 -3.875 3.078125 -3.765625 3.375 -3.546875 L 3.75 -4.03125 C 3.328125 -4.375 2.921875 -4.5 2.40625 -4.5 Z M 2.40625 -4.5 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.71875 -0.703125 C 2.515625 -0.59375 2.328125 -0.53125 2.140625 -0.53125 C 1.75 -0.53125 1.609375 -0.75 1.609375 -1.1875 L 1.609375 -3.8125 L 2.578125 -3.8125 L 2.65625 -4.40625 L 1.609375 -4.40625 L 1.609375 -5.484375 L 0.84375 -5.40625 L 0.84375 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.84375 -3.8125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.28125 0.09375 2.03125 0.09375 C 2.40625 0.09375 2.71875 0 3.015625 -0.203125 Z M 2.71875 -0.703125 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.390625 -6.265625 L 3.390625 -3.96875 C 3.09375 -4.265625 2.71875 -4.5 2.203125 -4.5 C 1.125 -4.5 0.46875 -3.53125 0.46875 -2.1875 C 0.46875 -0.8125 1.0625 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.171875 3.40625 -0.609375 L 3.484375 0 L 4.15625 0 L 4.15625 -6.171875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.296875 -1.03125 1.296875 -2.203125 C 1.296875 -3.34375 1.71875 -3.890625 2.375 -3.890625 C 2.8125 -3.890625 3.125 -3.671875 3.390625 -3.3125 L 3.390625 -1.15625 C 3.09375 -0.75 2.796875 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 1.984375 -4.5 C 1.078125 -4.5 0.40625 -4 0.40625 -3.296875 C 0.40625 -2.671875 0.78125 -2.265625 1.734375 -2.015625 C 2.578125 -1.78125 2.796875 -1.625 2.796875 -1.1875 C 2.796875 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.375 -0.515625 0.96875 -0.671875 0.625 -0.9375 L 0.203125 -0.46875 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.765625 0.09375 3.609375 -0.3125 3.609375 -1.234375 C 3.609375 -2 3.078125 -2.375 2.140625 -2.609375 C 1.4375 -2.796875 1.203125 -2.953125 1.203125 -3.3125 C 1.203125 -3.671875 1.515625 -3.890625 2.015625 -3.890625 C 2.421875 -3.890625 2.765625 -3.765625 3.15625 -3.515625 L 3.484375 -4 C 3.0625 -4.328125 2.609375 -4.5 1.984375 -4.5 Z M 1.984375 -4.5 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.84375 -4.5 C 2.265625 -4.5 1.796875 -4.203125 1.5 -3.75 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -3.125 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.078125 -3.90625 3.359375 -3.71875 3.359375 -3.046875 L 3.359375 0 L 4.125 0 L 4.125 -3.15625 C 4.125 -4 3.65625 -4.5 2.84375 -4.5 Z M 2.84375 -4.5 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 3.328125 -6.046875 L 3 -6.703125 L 1.328125 -5.75 L 1.5625 -5.328125 Z M 4.125 -2.328125 C 4.125 -3.671875 3.5 -4.5 2.3125 -4.5 C 1.171875 -4.5 0.46875 -3.53125 0.46875 -2.15625 C 0.46875 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.03125 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.109375 -2.046875 4.125 -2.1875 4.125 -2.328125 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.484375 1.734375 -3.890625 2.328125 -3.890625 C 3.015625 -3.890625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.78125 -4.5 C 2.25 -4.5 1.84375 -4.265625 1.53125 -3.859375 L 1.53125 -6.265625 L 0.765625 -6.171875 L 0.765625 0 L 1.453125 0 L 1.515625 -0.484375 C 1.828125 -0.109375 2.203125 0.09375 2.6875 0.09375 C 3.765625 0.09375 4.421875 -0.828125 4.421875 -2.203125 C 4.421875 -3.671875 3.78125 -4.5 2.78125 -4.5 Z M 2.515625 -0.515625 C 2.109375 -0.515625 1.765625 -0.75 1.53125 -1.109375 L 1.53125 -3.203125 C 1.765625 -3.5625 2.078125 -3.890625 2.5625 -3.890625 C 3.1875 -3.890625 3.59375 -3.453125 3.59375 -2.203125 C 3.59375 -1 3.15625 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.6875 -4.5 C 2.140625 -4.5 1.734375 -4.171875 1.5 -3.515625 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -2.515625 C 1.71875 -3.359375 2.046875 -3.75 2.59375 -3.75 C 2.75 -3.75 2.84375 -3.734375 2.96875 -3.703125 L 3.125 -4.453125 C 2.984375 -4.484375 2.828125 -4.5 2.6875 -4.5 Z M 2.6875 -4.5 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 4.03125 -4.40625 L 3.265625 -4.40625 L 3.265625 -1.265625 C 3 -0.8125 2.640625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.484375 -0.734375 1.484375 -1.328125 L 1.484375 -4.40625 L 0.71875 -4.40625 L 0.71875 -1.25 C 0.71875 -0.390625 1.171875 0.09375 1.953125 0.09375 C 2.578125 0.09375 2.984375 -0.15625 3.3125 -0.6875 L 3.375 0 L 4.03125 0 Z M 4.03125 -4.40625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 1.859375 -4.796875 C 1.125 -4.796875 0.578125 -4.484375 0.125 -3.90625 L 0.625 -3.515625 C 1.015625 -4 1.390625 -4.171875 1.84375 -4.171875 C 2.40625 -4.171875 2.796875 -3.828125 2.796875 -3.296875 C 2.796875 -2.625 2.53125 -2.25 0.25 -0.609375 L 0.25 0 L 3.59375 0 L 3.6875 -0.640625 L 1.234375 -0.640625 C 3.390625 -2.015625 3.609375 -2.5625 3.609375 -3.3125 C 3.609375 -4.15625 2.921875 -4.796875 1.859375 -4.796875 Z M 1.859375 -4.796875 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 3.09375 -7.609375 L 1.421875 -6.71875 L 1.625 -6.3125 L 3.421875 -6.96875 Z M 3.953125 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 4.015625 0 L 4.015625 -0.640625 L 1.625 -0.640625 L 1.625 -2.609375 L 3.5625 -2.609375 L 3.5625 -3.25 L 1.625 -3.25 L 1.625 -5.125 L 3.859375 -5.125 Z M 3.953125 -5.765625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 4.03125 -4.40625 L 3.21875 -4.40625 L 2.078125 -0.6875 L 0.921875 -4.40625 L 0.078125 -4.40625 L 1.609375 0 L 2.53125 0 Z M 4.03125 -4.40625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 3.71875 -1.03125 L 3.71875 -3.046875 C 3.71875 -3.96875 3.234375 -4.5 2.171875 -4.5 C 1.6875 -4.5 1.203125 -4.40625 0.65625 -4.203125 L 0.84375 -3.640625 C 1.296875 -3.796875 1.703125 -3.875 2.03125 -3.875 C 2.640625 -3.875 2.953125 -3.640625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.734375 -0.09375 3.046875 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.90625 0.09375 L 4.09375 -0.4375 C 3.859375 -0.515625 3.71875 -0.640625 3.71875 -1.03125 Z M 1.921875 -0.46875 C 1.40625 -0.46875 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.15625 C 2.703125 -0.703125 2.359375 -0.46875 1.921875 -0.46875 Z M 1.921875 -0.46875 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 1.859375 -4.796875 C 1.234375 -4.796875 0.71875 -4.578125 0.25 -4.140625 L 0.640625 -3.671875 C 1.015625 -4.03125 1.359375 -4.1875 1.796875 -4.1875 C 2.390625 -4.1875 2.765625 -3.859375 2.765625 -3.34375 C 2.765625 -2.734375 2.296875 -2.40625 1.71875 -2.40625 L 1.421875 -2.40625 L 1.34375 -1.8125 L 1.75 -1.8125 C 2.5 -1.8125 2.90625 -1.5 2.90625 -0.765625 C 2.90625 -0.078125 2.46875 0.34375 1.734375 0.34375 C 1.28125 0.34375 0.90625 0.1875 0.546875 -0.203125 L 0.078125 0.21875 C 0.515625 0.734375 1.09375 0.984375 1.765625 0.984375 C 2.953125 0.984375 3.703125 0.25 3.703125 -0.734375 C 3.703125 -1.609375 3.171875 -2.0625 2.421875 -2.140625 C 3.0625 -2.28125 3.53125 -2.734375 3.53125 -3.40625 C 3.53125 -4.140625 2.9375 -4.796875 1.859375 -4.796875 Z M 1.859375 -4.796875 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 1.890625 -7.0625 C 1.0625 -5.90625 0.328125 -4.90625 0.328125 -2.921875 C 0.328125 -0.9375 1.0625 0.046875 1.890625 1.21875 L 2.375 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.921875 C 1.140625 -4.71875 1.625 -5.625 2.375 -6.734375 Z M 1.890625 -7.0625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 1.140625 -6.515625 C 0.828125 -6.515625 0.609375 -6.296875 0.609375 -6 C 0.609375 -5.703125 0.828125 -5.46875 1.140625 -5.46875 C 1.46875 -5.46875 1.6875 -5.703125 1.6875 -6 C 1.6875 -6.296875 1.46875 -6.515625 1.140625 -6.515625 Z M 1.53125 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 Z M 1.53125 -4.40625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 2.796875 -4.5 C 2.296875 -4.5 1.8125 -4.265625 1.484375 -3.8125 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 1.78125 L 1.53125 1.6875 L 1.53125 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.6875 0.09375 C 3.828125 0.09375 4.421875 -0.875 4.421875 -2.203125 C 4.421875 -3.59375 3.96875 -4.5 2.796875 -4.5 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.53125 -1.0625 L 1.53125 -3.203125 C 1.765625 -3.5625 2.125 -3.890625 2.59375 -3.890625 C 3.265625 -3.890625 3.59375 -3.359375 3.59375 -2.203125 C 3.59375 -1.046875 3.203125 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 0.8125 -7.0625 L 0.328125 -6.734375 C 1.09375 -5.625 1.578125 -4.71875 1.578125 -2.921875 C 1.578125 -1.140625 1.09375 -0.234375 0.328125 0.875 L 0.8125 1.21875 C 1.640625 0.046875 2.375 -0.9375 2.375 -2.921875 C 2.375 -4.90625 1.640625 -5.90625 0.8125 -7.0625 Z M 0.8125 -7.0625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 4.140625 -0.921875 L 3.4375 -0.921875 L 3.4375 -2.453125 L 2.796875 -2.453125 L 2.71875 -0.921875 L 0.984375 -0.921875 L 2.484375 -4.53125 L 1.84375 -4.796875 L 0.171875 -0.875 L 0.171875 -0.328125 L 2.71875 -0.328125 L 2.71875 0.890625 L 3.4375 0.890625 L 3.4375 -0.328125 L 4.140625 -0.328125 Z M 4.140625 -0.921875 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 4.59375 -5.765625 L 3.796875 -5.765625 L 2.34375 -0.859375 L 0.90625 -5.765625 L 0.046875 -5.765625 L 1.90625 0 L 2.765625 0 Z M 4.59375 -5.765625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 2.3125 -6.265625 C 1.234375 -6.265625 0.78125 -5.71875 0.78125 -4.984375 L 0.78125 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.78125 -3.8125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.8125 L 3.25 -3.8125 L 3.25 0 L 4.015625 0 L 4.015625 -4.40625 L 1.5625 -4.40625 L 1.5625 -4.984375 C 1.5625 -5.40625 1.71875 -5.640625 2.328125 -5.640625 C 2.671875 -5.640625 2.984375 -5.5625 3.265625 -5.4375 L 3.53125 -5.96875 C 3.171875 -6.15625 2.796875 -6.265625 2.3125 -6.265625 Z M 2.3125 -6.265625 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 3.5625 -4.71875 L 0.546875 -4.71875 L 0.546875 -1.890625 L 1.140625 -1.890625 C 1.390625 -2.015625 1.640625 -2.09375 1.9375 -2.09375 C 2.515625 -2.09375 2.953125 -1.78125 2.953125 -0.921875 C 2.953125 -0.109375 2.515625 0.34375 1.8125 0.34375 C 1.328125 0.34375 0.96875 0.171875 0.625 -0.171875 L 0.171875 0.265625 C 0.609375 0.703125 1.109375 0.984375 1.828125 0.984375 C 2.984375 0.984375 3.765625 0.203125 3.765625 -0.90625 C 3.765625 -2.015625 3.125 -2.6875 2.171875 -2.6875 C 1.859375 -2.6875 1.578125 -2.625 1.28125 -2.46875 L 1.28125 -4.109375 L 3.453125 -4.109375 Z M 3.5625 -4.71875 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 1 -6.296875 C 0.703125 -6.296875 0.453125 -6.0625 0.453125 -5.765625 C 0.453125 -5.59375 0.53125 -5.453125 0.671875 -5.34375 L 0.328125 -4.09375 L 0.84375 -4.09375 L 1.390625 -5.28125 C 1.5 -5.515625 1.53125 -5.640625 1.53125 -5.765625 C 1.53125 -6.0625 1.296875 -6.296875 1 -6.296875 Z M 1 -6.296875 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 4.03125 -4.40625 L 3.234375 -4.40625 L 2.078125 -0.5625 L 0.90625 -4.40625 L 0.078125 -4.40625 L 1.5625 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.171875 L 0.515625 1.78125 C 1.734375 1.640625 2.25 0.96875 2.5625 0.03125 Z M 4.03125 -4.40625 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-0"> | |
| 96 | +<path d="M 2.546875 -6.34375 C 1.234375 -6.34375 0.703125 -5.671875 0.703125 -4.828125 L 0.703125 -4.4375 L 0.03125 -4.4375 L 0.03125 -3.515625 L 0.703125 -3.515625 L 0.703125 0 L 2.015625 0 L 2.015625 -3.515625 L 3.171875 -3.515625 L 3.171875 0 L 4.484375 0 L 4.484375 -4.4375 L 2.015625 -4.4375 L 2.015625 -4.765625 C 2.015625 -5.203125 2.171875 -5.359375 2.703125 -5.359375 C 3.046875 -5.359375 3.390625 -5.28125 3.65625 -5.171875 L 4.015625 -6.015625 C 3.65625 -6.1875 3.171875 -6.34375 2.546875 -6.34375 Z M 2.546875 -6.34375 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-1"> | |
| 99 | +<path d="M 4.03125 -1.28125 L 4.03125 -3.015625 C 4.03125 -4.03125 3.484375 -4.578125 2.1875 -4.578125 C 1.6875 -4.578125 1.078125 -4.46875 0.515625 -4.25 L 0.8125 -3.390625 C 1.265625 -3.53125 1.703125 -3.625 1.984375 -3.625 C 2.53125 -3.625 2.734375 -3.453125 2.734375 -2.9375 L 2.734375 -2.734375 L 2.28125 -2.734375 C 0.9375 -2.734375 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.640625 0.140625 C 2.171875 0.140625 2.671875 -0.03125 2.984375 -0.515625 C 3.1875 -0.078125 3.53125 0.078125 4.046875 0.109375 L 4.328125 -0.75 C 4.125 -0.8125 4.03125 -0.9375 4.03125 -1.28125 Z M 2.03125 -0.796875 C 1.703125 -0.796875 1.515625 -1.015625 1.515625 -1.359375 C 1.515625 -1.8125 1.8125 -2.015625 2.40625 -2.015625 L 2.734375 -2.015625 L 2.734375 -1.21875 C 2.578125 -0.96875 2.328125 -0.796875 2.03125 -0.796875 Z M 2.03125 -0.796875 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-2"> | |
| 102 | +<path d="M 3.03125 -4.578125 C 2.53125 -4.578125 2.09375 -4.359375 1.828125 -3.984375 L 1.828125 -6.34375 L 0.515625 -6.203125 L 0.515625 0 L 1.6875 0 L 1.75 -0.421875 C 2.015625 -0.078125 2.421875 0.140625 2.90625 0.140625 C 4.015625 0.140625 4.671875 -0.84375 4.671875 -2.21875 C 4.671875 -3.703125 4.09375 -4.578125 3.03125 -4.578125 Z M 2.53125 -0.8125 C 2.234375 -0.8125 2 -0.984375 1.828125 -1.25 L 1.828125 -3.09375 C 2.015625 -3.421875 2.28125 -3.609375 2.578125 -3.609375 C 3 -3.609375 3.296875 -3.34375 3.296875 -2.21875 C 3.296875 -1.171875 2.984375 -0.8125 2.53125 -0.8125 Z M 2.53125 -0.8125 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-3"> | |
| 105 | +<path d="M 1.15625 -6.78125 C 0.703125 -6.78125 0.390625 -6.453125 0.390625 -6.03125 C 0.390625 -5.59375 0.703125 -5.28125 1.15625 -5.28125 C 1.625 -5.28125 1.953125 -5.59375 1.953125 -6.03125 C 1.953125 -6.453125 1.625 -6.78125 1.15625 -6.78125 Z M 1.828125 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 Z M 1.828125 -4.4375 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-4"> | |
| 108 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.28125 0.078125 2.46875 -0.015625 L 2.21875 -0.9375 C 2.171875 -0.921875 2.09375 -0.90625 2 -0.90625 C 1.84375 -0.90625 1.765625 -1 1.765625 -1.171875 L 1.765625 -6.34375 L 0.453125 -6.203125 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-5"> | |
| 111 | +<path d="M 2.859375 -1.046875 C 2.6875 -0.9375 2.53125 -0.90625 2.375 -0.90625 C 2.109375 -0.90625 1.96875 -1.046875 1.96875 -1.484375 L 1.96875 -3.515625 L 2.84375 -3.515625 L 2.984375 -4.4375 L 1.96875 -4.4375 L 1.96875 -5.546875 L 0.640625 -5.40625 L 0.640625 -4.4375 L 0.015625 -4.4375 L 0.015625 -3.515625 L 0.640625 -3.515625 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.09375 0.140625 C 2.5 0.140625 2.96875 0.03125 3.296875 -0.203125 Z M 2.859375 -1.046875 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-6"> | |
| 114 | +<path d="M 3.484375 -6 L 2.96875 -6.984375 L 1.140625 -5.875 L 1.515625 -5.203125 Z M 4.390625 -2.3125 C 4.390625 -3.75 3.609375 -4.578125 2.34375 -4.578125 C 1 -4.578125 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.78125 -0.125 4.234375 -0.46875 L 3.6875 -1.21875 C 3.296875 -0.9375 2.984375 -0.8125 2.625 -0.8125 C 2.078125 -0.8125 1.703125 -1.03125 1.609375 -1.828125 L 4.359375 -1.828125 C 4.375 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.671875 -3.421875 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.078125 -3.28125 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-7"> | |
| 117 | +<path d="M 2.90625 -5.9375 C 1.40625 -5.9375 0.28125 -4.84375 0.28125 -2.90625 C 0.28125 -0.921875 1.34375 0.140625 2.921875 0.140625 C 3.734375 0.140625 4.359375 -0.21875 4.734375 -0.609375 L 4.125 -1.390625 C 3.78125 -1.125 3.453125 -0.921875 3 -0.921875 C 2.21875 -0.921875 1.71875 -1.515625 1.71875 -2.90625 C 1.71875 -4.328125 2.234375 -4.921875 2.96875 -4.921875 C 3.375 -4.921875 3.6875 -4.765625 4.015625 -4.515625 L 4.671875 -5.296875 C 4.1875 -5.703125 3.65625 -5.9375 2.90625 -5.9375 Z M 2.90625 -5.9375 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-8"> | |
| 120 | +<path d="M 2.4375 -4.578125 C 1.09375 -4.578125 0.265625 -3.640625 0.265625 -2.21875 C 0.265625 -0.734375 1.09375 0.140625 2.4375 0.140625 C 3.796875 0.140625 4.609375 -0.796875 4.609375 -2.21875 C 4.609375 -3.71875 3.796875 -4.578125 2.4375 -4.578125 Z M 2.4375 -3.609375 C 2.96875 -3.609375 3.25 -3.203125 3.25 -2.21875 C 3.25 -1.25 2.96875 -0.828125 2.4375 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.21875 C 1.640625 -3.1875 1.90625 -3.609375 2.4375 -3.609375 Z M 2.4375 -3.609375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-9"> | |
| 123 | +<path d="M 3.109375 -4.578125 C 2.546875 -4.578125 2.125 -4.34375 1.75 -3.90625 L 1.65625 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 L 1.828125 -3.03125 C 2.0625 -3.40625 2.3125 -3.609375 2.59375 -3.609375 C 2.859375 -3.609375 3.015625 -3.484375 3.015625 -3.015625 L 3.015625 0 L 4.34375 0 L 4.34375 -3.25 C 4.34375 -4.09375 3.875 -4.578125 3.109375 -4.578125 Z M 3.109375 -4.578125 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-10"> | |
| 126 | +<path d="M 2.921875 -4.5625 C 2.40625 -4.5625 1.96875 -4.203125 1.765625 -3.578125 L 1.65625 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 L 1.828125 -2.234375 C 1.984375 -2.890625 2.203125 -3.28125 2.75 -3.28125 C 2.890625 -3.28125 3.015625 -3.265625 3.15625 -3.234375 L 3.359375 -4.5 C 3.203125 -4.546875 3.078125 -4.5625 2.921875 -4.5625 Z M 2.921875 -4.5625 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-11"> | |
| 129 | +<path d="M 5.421875 -4.578125 C 4.84375 -4.578125 4.4375 -4.34375 4.09375 -3.875 C 3.90625 -4.328125 3.53125 -4.578125 3.046875 -4.578125 C 2.5 -4.578125 2.09375 -4.359375 1.75 -3.90625 L 1.65625 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 L 1.828125 -3.03125 C 2.015625 -3.40625 2.234375 -3.609375 2.515625 -3.609375 C 2.703125 -3.609375 2.890625 -3.484375 2.890625 -3.015625 L 2.890625 0 L 4.203125 0 L 4.203125 -3.03125 C 4.390625 -3.40625 4.59375 -3.609375 4.875 -3.609375 C 5.078125 -3.609375 5.25 -3.484375 5.25 -3.015625 L 5.25 0 L 6.578125 0 L 6.578125 -3.25 C 6.578125 -4.09375 6.109375 -4.578125 5.421875 -4.578125 Z M 5.421875 -4.578125 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-1-12"> | |
| 132 | +<path d="M 2.4375 -4.578125 C 1.109375 -4.578125 0.265625 -3.59375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.078125 0.140625 3.546875 -0.0625 3.96875 -0.390625 L 3.390625 -1.203125 C 3.0625 -1 2.84375 -0.90625 2.53125 -0.90625 C 2 -0.90625 1.65625 -1.203125 1.65625 -2.1875 C 1.65625 -3.1875 1.984375 -3.5625 2.546875 -3.5625 C 2.84375 -3.5625 3.109375 -3.46875 3.390625 -3.25 L 3.96875 -4.03125 C 3.53125 -4.390625 3.0625 -4.578125 2.4375 -4.578125 Z M 2.4375 -4.578125 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-1-13"> | |
| 135 | +<path d="M 2.078125 -4.578125 C 0.96875 -4.578125 0.265625 -3.984375 0.265625 -3.234375 C 0.265625 -2.546875 0.703125 -2.09375 1.578125 -1.84375 C 2.375 -1.609375 2.515625 -1.515625 2.515625 -1.21875 C 2.515625 -0.953125 2.28125 -0.796875 1.875 -0.796875 C 1.4375 -0.796875 1.03125 -0.984375 0.6875 -1.234375 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.90625 0.140625 C 3.015625 0.140625 3.875 -0.40625 3.875 -1.328125 C 3.875 -2.109375 3.390625 -2.484375 2.515625 -2.734375 C 1.71875 -2.96875 1.59375 -3.0625 1.59375 -3.296875 C 1.59375 -3.5 1.765625 -3.640625 2.125 -3.640625 C 2.515625 -3.640625 2.890625 -3.515625 3.234375 -3.296875 L 3.71875 -4.03125 C 3.296875 -4.375 2.71875 -4.578125 2.078125 -4.578125 Z M 2.078125 -4.578125 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-1-14"> | |
| 138 | +<path d="M 4.390625 -2.3125 C 4.390625 -3.75 3.609375 -4.578125 2.34375 -4.578125 C 1 -4.578125 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.78125 -0.125 4.234375 -0.46875 L 3.6875 -1.21875 C 3.296875 -0.9375 2.984375 -0.8125 2.625 -0.8125 C 2.078125 -0.8125 1.703125 -1.03125 1.625 -1.828125 L 4.359375 -1.828125 C 4.375 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.6875 -3.421875 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.078125 -3.28125 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-1-15"> | |
| 141 | +<path d="M 3.109375 -4.578125 C 2.578125 -4.578125 2.1875 -4.375 1.828125 -3.96875 L 1.828125 -6.34375 L 0.515625 -6.203125 L 0.515625 0 L 1.828125 0 L 1.828125 -3.046875 C 2.0625 -3.40625 2.3125 -3.609375 2.59375 -3.609375 C 2.84375 -3.609375 3.015625 -3.484375 3.015625 -3.015625 L 3.015625 0 L 4.34375 0 L 4.34375 -3.25 C 4.34375 -4.09375 3.875 -4.578125 3.109375 -4.578125 Z M 3.109375 -4.578125 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-1-16"> | |
| 144 | +<path d="M 1.921875 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 1.921875 0 Z M 1.921875 -5.796875 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-1-17"> | |
| 147 | +<path d="M 4.296875 -5.15625 C 3.765625 -4.84375 3.1875 -4.5625 2.203125 -4.578125 C 1.046875 -4.578125 0.265625 -3.96875 0.265625 -2.953125 C 0.265625 -2.375 0.484375 -1.984375 1.046875 -1.6875 C 0.734375 -1.484375 0.53125 -1.15625 0.53125 -0.84375 C 0.53125 -0.359375 0.921875 0.046875 1.890625 0.046875 L 2.53125 0.046875 C 2.96875 0.046875 3.171875 0.21875 3.171875 0.46875 C 3.171875 0.765625 2.984375 0.984375 2.203125 0.984375 C 1.40625 0.984375 1.234375 0.8125 1.234375 0.421875 L 0.046875 0.421875 C 0.046875 1.296875 0.5 1.859375 2.171875 1.859375 C 3.6875 1.859375 4.5 1.296875 4.5 0.390625 C 4.5 -0.359375 3.84375 -0.90625 2.796875 -0.90625 L 2.125 -0.90625 C 1.703125 -0.90625 1.640625 -1.03125 1.640625 -1.171875 C 1.640625 -1.265625 1.703125 -1.375 1.78125 -1.421875 C 1.953125 -1.390625 2.109375 -1.375 2.296875 -1.375 C 3.453125 -1.375 4.15625 -2 4.15625 -2.859375 C 4.15625 -3.4375 3.890625 -3.765625 3.328125 -4 C 3.890625 -4 4.296875 -4.046875 4.609375 -4.1875 Z M 2.234375 -3.71875 C 2.6875 -3.71875 2.90625 -3.484375 2.90625 -3 C 2.90625 -2.484375 2.671875 -2.21875 2.234375 -2.21875 C 1.84375 -2.21875 1.578125 -2.484375 1.578125 -2.96875 C 1.578125 -3.4375 1.828125 -3.71875 2.234375 -3.71875 Z M 2.234375 -3.71875 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-2-0"> | |
| 150 | +<path d="M 2.6875 -1.515625 C 2.6875 -2.390625 2.265625 -2.9375 1.5 -2.9375 C 0.765625 -2.9375 0.3125 -2.296875 0.3125 -1.40625 C 0.3125 -0.5 0.78125 0.0625 1.578125 0.0625 C 1.96875 0.0625 2.296875 -0.078125 2.578125 -0.296875 L 2.359375 -0.59375 C 2.109375 -0.421875 1.890625 -0.34375 1.609375 -0.34375 C 1.203125 -0.34375 0.890625 -0.59375 0.84375 -1.265625 L 2.671875 -1.265625 C 2.671875 -1.328125 2.6875 -1.421875 2.6875 -1.515625 Z M 2.1875 -1.625 L 0.84375 -1.625 C 0.875 -2.265625 1.125 -2.53125 1.515625 -2.53125 C 1.96875 -2.53125 2.1875 -2.21875 2.1875 -1.65625 Z M 2.1875 -1.625 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-3-0"> | |
| 153 | +<path d="M 2.015625 -5.21875 C 1.0625 -5.21875 0.390625 -4.65625 0.390625 -3.875 C 0.390625 -3.078125 0.921875 -2.703125 1.90625 -2.390625 C 2.78125 -2.125 3.015625 -1.90625 3.015625 -1.40625 C 3.015625 -0.78125 2.515625 -0.484375 1.921875 -0.484375 C 1.359375 -0.484375 0.953125 -0.6875 0.578125 -1 L 0.1875 -0.578125 C 0.609375 -0.15625 1.1875 0.09375 1.921875 0.09375 C 3.078125 0.09375 3.75 -0.53125 3.75 -1.421875 C 3.75 -2.40625 3.0625 -2.734375 2.234375 -2.984375 C 1.3125 -3.265625 1.109375 -3.46875 1.109375 -3.90625 C 1.109375 -4.390625 1.53125 -4.640625 2.03125 -4.640625 C 2.46875 -4.640625 2.8125 -4.5 3.203125 -4.1875 L 3.59375 -4.625 C 3.15625 -5 2.71875 -5.21875 2.015625 -5.21875 Z M 2.015625 -5.21875 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-3-1"> | |
| 156 | +<path d="M 2.171875 -4.015625 C 1.0625 -4.015625 0.421875 -3.171875 0.421875 -1.953125 C 0.421875 -0.71875 1.0625 0.09375 2.171875 0.09375 C 3.28125 0.09375 3.921875 -0.75 3.921875 -1.96875 C 3.921875 -3.203125 3.296875 -4.015625 2.171875 -4.015625 Z M 2.171875 -3.453125 C 2.828125 -3.453125 3.1875 -2.984375 3.1875 -1.96875 C 3.1875 -0.9375 2.828125 -0.46875 2.171875 -0.46875 C 1.515625 -0.46875 1.15625 -0.9375 1.15625 -1.953125 C 1.15625 -2.984375 1.53125 -3.453125 2.171875 -3.453125 Z M 2.171875 -3.453125 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-3-2"> | |
| 159 | +<path d="M 3.59375 -3.921875 L 2.90625 -3.921875 L 2.90625 -1.125 C 2.671875 -0.734375 2.34375 -0.453125 1.921875 -0.453125 C 1.5 -0.453125 1.328125 -0.640625 1.328125 -1.1875 L 1.328125 -3.921875 L 0.640625 -3.921875 L 0.640625 -1.109375 C 0.640625 -0.34375 1.046875 0.09375 1.734375 0.09375 C 2.296875 0.09375 2.65625 -0.140625 2.953125 -0.609375 L 3 0 L 3.59375 0 Z M 3.59375 -3.921875 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-3-3"> | |
| 162 | +<path d="M 2.390625 -4.015625 C 1.90625 -4.015625 1.546875 -3.71875 1.34375 -3.125 L 1.265625 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.234375 C 1.53125 -2.984375 1.8125 -3.34375 2.3125 -3.34375 C 2.453125 -3.34375 2.53125 -3.328125 2.640625 -3.296875 L 2.78125 -3.96875 C 2.65625 -4 2.515625 -4.015625 2.390625 -4.015625 Z M 2.390625 -4.015625 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-3-4"> | |
| 165 | +<path d="M 2.140625 -4.015625 C 1.078125 -4.015625 0.421875 -3.171875 0.421875 -1.921875 C 0.421875 -0.65625 1.078125 0.09375 2.140625 0.09375 C 2.59375 0.09375 2.984375 -0.0625 3.328125 -0.34375 L 3.015625 -0.78125 C 2.71875 -0.59375 2.484375 -0.484375 2.171875 -0.484375 C 1.546875 -0.484375 1.15625 -0.921875 1.15625 -1.9375 C 1.15625 -2.953125 1.546875 -3.4375 2.171875 -3.4375 C 2.484375 -3.4375 2.734375 -3.34375 3 -3.15625 L 3.328125 -3.578125 C 2.96875 -3.890625 2.59375 -4.015625 2.140625 -4.015625 Z M 2.140625 -4.015625 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-3-5"> | |
| 168 | +<path d="M 3.671875 -2.078125 C 3.671875 -3.265625 3.109375 -4.015625 2.046875 -4.015625 C 1.046875 -4.015625 0.421875 -3.140625 0.421875 -1.921875 C 0.421875 -0.671875 1.0625 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.09375 3.53125 -0.40625 L 3.234375 -0.8125 C 2.890625 -0.578125 2.59375 -0.46875 2.203125 -0.46875 C 1.640625 -0.46875 1.21875 -0.8125 1.15625 -1.71875 L 3.65625 -1.71875 C 3.65625 -1.8125 3.671875 -1.9375 3.671875 -2.078125 Z M 2.984375 -2.234375 L 1.15625 -2.234375 C 1.203125 -3.09375 1.546875 -3.46875 2.0625 -3.46875 C 2.6875 -3.46875 2.984375 -3.046875 2.984375 -2.28125 Z M 2.984375 -2.234375 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-3-6"> | |
| 171 | +<path d="M 3.015625 -5.578125 L 3.015625 -3.53125 C 2.765625 -3.796875 2.421875 -4.015625 1.96875 -4.015625 C 1 -4.015625 0.421875 -3.140625 0.421875 -1.9375 C 0.421875 -0.71875 0.953125 0.09375 1.90625 0.09375 C 2.390625 0.09375 2.78125 -0.15625 3.03125 -0.546875 L 3.09375 0 L 3.703125 0 L 3.703125 -5.5 Z M 2.046875 -0.453125 C 1.484375 -0.453125 1.15625 -0.921875 1.15625 -1.953125 C 1.15625 -2.96875 1.53125 -3.46875 2.109375 -3.46875 C 2.5 -3.46875 2.78125 -3.265625 3.015625 -2.953125 L 3.015625 -1.03125 C 2.765625 -0.671875 2.484375 -0.453125 2.046875 -0.453125 Z M 2.046875 -0.453125 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-3-7"> | |
| 174 | +<path d="M 2.421875 -0.625 C 2.234375 -0.53125 2.078125 -0.46875 1.90625 -0.46875 C 1.5625 -0.46875 1.4375 -0.65625 1.4375 -1.0625 L 1.4375 -3.390625 L 2.296875 -3.390625 L 2.359375 -3.921875 L 1.4375 -3.921875 L 1.4375 -4.890625 L 0.75 -4.796875 L 0.75 -3.921875 L 0.0625 -3.921875 L 0.0625 -3.390625 L 0.75 -3.390625 L 0.75 -1.03125 C 0.75 -0.296875 1.140625 0.09375 1.8125 0.09375 C 2.140625 0.09375 2.421875 0 2.6875 -0.171875 Z M 2.421875 -0.625 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-3-8"> | |
| 177 | +<path d="M 1.765625 -4.015625 C 0.953125 -4.015625 0.359375 -3.5625 0.359375 -2.9375 C 0.359375 -2.375 0.6875 -2.015625 1.546875 -1.796875 C 2.296875 -1.59375 2.484375 -1.4375 2.484375 -1.0625 C 2.484375 -0.6875 2.171875 -0.46875 1.65625 -0.46875 C 1.234375 -0.46875 0.859375 -0.609375 0.546875 -0.84375 L 0.1875 -0.421875 C 0.53125 -0.125 1 0.09375 1.671875 0.09375 C 2.46875 0.09375 3.21875 -0.28125 3.21875 -1.09375 C 3.21875 -1.78125 2.734375 -2.109375 1.90625 -2.328125 C 1.28125 -2.484375 1.078125 -2.640625 1.078125 -2.953125 C 1.078125 -3.265625 1.34375 -3.46875 1.796875 -3.46875 C 2.15625 -3.46875 2.46875 -3.359375 2.8125 -3.125 L 3.09375 -3.5625 C 2.734375 -3.84375 2.328125 -4.015625 1.765625 -4.015625 Z M 1.765625 -4.015625 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-3-9"> | |
| 180 | +<path d="M 2.53125 -4.015625 C 2.03125 -4.015625 1.65625 -3.765625 1.375 -3.375 L 1.375 -5.5625 L 0.6875 -5.484375 L 0.6875 0 L 1.375 0 L 1.375 -2.78125 C 1.625 -3.203125 1.9375 -3.46875 2.359375 -3.46875 C 2.734375 -3.46875 2.984375 -3.296875 2.984375 -2.71875 L 2.984375 0 L 3.671875 0 L 3.671875 -2.8125 C 3.671875 -3.546875 3.25 -4.015625 2.53125 -4.015625 Z M 2.53125 -4.015625 "/> | |
| 181 | +</g> | |
| 182 | +<g id="glyph-3-10"> | |
| 183 | +<path d="M 0.453125 -2.03125 L 2.546875 -2.03125 L 2.546875 -2.625 L 0.453125 -2.625 Z M 0.453125 -2.03125 "/> | |
| 184 | +</g> | |
| 185 | +<g id="glyph-3-11"> | |
| 186 | +<path d="M 2.53125 -4.015625 C 2.015625 -4.015625 1.59375 -3.734375 1.328125 -3.34375 L 1.265625 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.78125 C 1.625 -3.203125 1.921875 -3.46875 2.359375 -3.46875 C 2.75 -3.46875 2.984375 -3.296875 2.984375 -2.71875 L 2.984375 0 L 3.671875 0 L 3.671875 -2.8125 C 3.671875 -3.5625 3.25 -4.015625 2.53125 -4.015625 Z M 2.53125 -4.015625 "/> | |
| 187 | +</g> | |
| 188 | +<g id="glyph-3-12"> | |
| 189 | +<path d="M 3.3125 -0.921875 L 3.3125 -2.703125 C 3.3125 -3.53125 2.875 -4.015625 1.9375 -4.015625 C 1.5 -4.015625 1.0625 -3.921875 0.578125 -3.734375 L 0.75 -3.25 C 1.15625 -3.375 1.515625 -3.453125 1.8125 -3.453125 C 2.34375 -3.453125 2.625 -3.25 2.625 -2.671875 L 2.625 -2.390625 L 2.015625 -2.390625 C 0.921875 -2.390625 0.296875 -1.9375 0.296875 -1.09375 C 0.296875 -0.390625 0.765625 0.09375 1.546875 0.09375 C 2.015625 0.09375 2.4375 -0.09375 2.71875 -0.5 C 2.828125 -0.109375 3.09375 0.046875 3.484375 0.09375 L 3.640625 -0.390625 C 3.4375 -0.46875 3.3125 -0.578125 3.3125 -0.921875 Z M 1.703125 -0.421875 C 1.25 -0.421875 1.03125 -0.671875 1.03125 -1.125 C 1.03125 -1.671875 1.390625 -1.9375 2.109375 -1.9375 L 2.625 -1.9375 L 2.625 -1.03125 C 2.40625 -0.625 2.109375 -0.421875 1.703125 -0.421875 Z M 1.703125 -0.421875 "/> | |
| 190 | +</g> | |
| 191 | +<g id="glyph-3-13"> | |
| 192 | +<path d="M 1.453125 0.09375 C 1.65625 0.09375 1.859375 0.03125 2 -0.046875 L 1.828125 -0.515625 C 1.75 -0.484375 1.671875 -0.46875 1.5625 -0.46875 C 1.390625 -0.46875 1.328125 -0.578125 1.328125 -0.78125 L 1.328125 -5.578125 L 0.640625 -5.5 L 0.640625 -0.78125 C 0.640625 -0.21875 0.953125 0.09375 1.453125 0.09375 Z M 1.453125 0.09375 "/> | |
| 193 | +</g> | |
| 194 | +<g id="glyph-3-14"> | |
| 195 | +<path d="M 1.015625 -5.796875 C 0.734375 -5.796875 0.546875 -5.59375 0.546875 -5.328125 C 0.546875 -5.078125 0.734375 -4.875 1.015625 -4.875 C 1.3125 -4.875 1.5 -5.078125 1.5 -5.328125 C 1.5 -5.59375 1.3125 -5.796875 1.015625 -5.796875 Z M 1.375 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 Z M 1.375 -3.921875 "/> | |
| 196 | +</g> | |
| 197 | +<g id="glyph-3-15"> | |
| 198 | +<path d="M 3.578125 -3.921875 L 2.859375 -3.921875 L 1.84375 -0.609375 L 0.8125 -3.921875 L 0.078125 -3.921875 L 1.421875 0 L 2.25 0 Z M 3.578125 -3.921875 "/> | |
| 199 | +</g> | |
| 200 | +<g id="glyph-3-16"> | |
| 201 | +<path d="M 3.46875 0 L 4.21875 0 L 2.578125 -5.125 L 1.6875 -5.125 L 0.046875 0 L 0.765625 0 L 1.140625 -1.28125 L 3.09375 -1.28125 Z M 1.3125 -1.859375 L 2.125 -4.53125 L 2.921875 -1.859375 Z M 1.3125 -1.859375 "/> | |
| 202 | +</g> | |
| 203 | +<g id="glyph-3-17"> | |
| 204 | +<path d="M 4.625 -4.015625 C 4.09375 -4.015625 3.734375 -3.71875 3.453125 -3.296875 C 3.296875 -3.75 2.9375 -4.015625 2.46875 -4.015625 C 1.953125 -4.015625 1.59375 -3.734375 1.328125 -3.34375 L 1.265625 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.78125 C 1.625 -3.203125 1.859375 -3.46875 2.296875 -3.46875 C 2.59375 -3.46875 2.84375 -3.296875 2.84375 -2.71875 L 2.84375 0 L 3.53125 0 L 3.53125 -2.78125 C 3.796875 -3.203125 4.03125 -3.46875 4.453125 -3.46875 C 4.75 -3.46875 5 -3.296875 5 -2.71875 L 5 0 L 5.6875 0 L 5.6875 -2.8125 C 5.6875 -3.546875 5.265625 -4.015625 4.625 -4.015625 Z M 4.625 -4.015625 "/> | |
| 205 | +</g> | |
| 206 | +<g id="glyph-3-18"> | |
| 207 | +<path d="M 3.671875 -4.359375 C 3.203125 -4.15625 2.84375 -3.984375 1.875 -4.015625 C 1.015625 -4.015625 0.359375 -3.4375 0.359375 -2.640625 C 0.359375 -2.140625 0.578125 -1.796875 1.03125 -1.546875 C 0.75 -1.375 0.59375 -1.109375 0.59375 -0.859375 C 0.59375 -0.46875 0.90625 -0.125 1.609375 -0.125 L 2.21875 -0.125 C 2.71875 -0.125 3.015625 0.0625 3.015625 0.4375 C 3.015625 0.828125 2.71875 1.046875 1.859375 1.046875 C 1 1.046875 0.796875 0.84375 0.796875 0.390625 L 0.1875 0.390625 C 0.1875 1.1875 0.59375 1.578125 1.859375 1.578125 C 3.078125 1.578125 3.703125 1.15625 3.703125 0.390625 C 3.703125 -0.234375 3.171875 -0.6875 2.359375 -0.6875 L 1.734375 -0.6875 C 1.34375 -0.6875 1.234375 -0.828125 1.234375 -1.015625 C 1.234375 -1.15625 1.3125 -1.296875 1.421875 -1.375 C 1.578125 -1.328125 1.734375 -1.296875 1.921875 -1.296875 C 2.859375 -1.296875 3.40625 -1.859375 3.40625 -2.640625 C 3.40625 -3.09375 3.1875 -3.40625 2.71875 -3.625 C 3.171875 -3.625 3.546875 -3.640625 3.875 -3.734375 Z M 1.875 -3.515625 C 2.4375 -3.515625 2.71875 -3.21875 2.71875 -2.640625 C 2.71875 -2.078125 2.421875 -1.75 1.890625 -1.75 C 1.359375 -1.75 1.0625 -2.125 1.0625 -2.640625 C 1.0625 -3.15625 1.34375 -3.515625 1.875 -3.515625 Z M 1.875 -3.515625 "/> | |
| 208 | +</g> | |
| 209 | +<g id="glyph-3-19"> | |
| 210 | +<path d="M 0.890625 -5.59375 C 0.625 -5.59375 0.40625 -5.390625 0.40625 -5.125 C 0.40625 -4.984375 0.46875 -4.859375 0.59375 -4.765625 L 0.296875 -3.640625 L 0.75 -3.640625 L 1.234375 -4.703125 C 1.34375 -4.90625 1.375 -5.015625 1.375 -5.125 C 1.375 -5.390625 1.15625 -5.59375 0.890625 -5.59375 Z M 0.890625 -5.59375 "/> | |
| 211 | +</g> | |
| 212 | +<g id="glyph-4-0"> | |
| 213 | +<path d="M 7.921875 -1.96875 C 7.921875 -2.03125 7.875 -2.078125 7.828125 -2.078125 C 6.953125 -2.34375 6.296875 -3.0625 6.125 -3.984375 C 6.109375 -4.03125 6.0625 -4.0625 6.015625 -4.0625 L 5.875 -4.0625 C 5.8125 -4.0625 5.765625 -4.015625 5.765625 -3.921875 C 5.890625 -3.203125 6.3125 -2.578125 6.90625 -2.15625 L 0.640625 -2.15625 C 0.515625 -2.15625 0.46875 -2.0625 0.46875 -1.96875 C 0.46875 -1.890625 0.515625 -1.796875 0.640625 -1.796875 L 6.90625 -1.796875 C 6.3125 -1.375 5.890625 -0.75 5.765625 -0.03125 C 5.765625 0.0625 5.8125 0.109375 5.875 0.109375 L 6.015625 0.109375 C 6.0625 0.109375 6.109375 0.078125 6.125 0.03125 C 6.296875 -0.890625 6.953125 -1.609375 7.828125 -1.875 C 7.875 -1.875 7.921875 -1.921875 7.921875 -1.96875 Z M 7.921875 -1.96875 "/> | |
| 214 | +</g> | |
| 215 | +</g> | |
| 216 | +<clipPath id="clip-0"> | |
| 217 | +<path clip-rule="nonzero" d="M 1.136719 0 L 232 0 L 232 28 L 1.136719 28 Z M 1.136719 0 "/> | |
| 218 | +</clipPath> | |
| 219 | +<clipPath id="clip-1"> | |
| 220 | +<path clip-rule="nonzero" d="M 1.136719 25 L 232 25 L 232 54 L 1.136719 54 Z M 1.136719 25 "/> | |
| 221 | +</clipPath> | |
| 222 | +<clipPath id="clip-2"> | |
| 223 | +<path clip-rule="nonzero" d="M 1.136719 50 L 232 50 L 232 80 L 1.136719 80 Z M 1.136719 50 "/> | |
| 224 | +</clipPath> | |
| 225 | +<clipPath id="clip-3"> | |
| 226 | +<path clip-rule="nonzero" d="M 1.136719 76 L 232 76 L 232 105 L 1.136719 105 Z M 1.136719 76 "/> | |
| 227 | +</clipPath> | |
| 228 | +<clipPath id="clip-4"> | |
| 229 | +<path clip-rule="nonzero" d="M 1.136719 102 L 232 102 L 232 130.03125 L 1.136719 130.03125 Z M 1.136719 102 "/> | |
| 230 | +</clipPath> | |
| 231 | +<clipPath id="clip-5"> | |
| 232 | +<path clip-rule="nonzero" d="M 243 23 L 359.003906 23 L 359.003906 56 L 243 56 Z M 243 23 "/> | |
| 233 | +</clipPath> | |
| 234 | +<clipPath id="clip-6"> | |
| 235 | +<path clip-rule="nonzero" d="M 243 73 L 359.003906 73 L 359.003906 108 L 243 108 Z M 243 73 "/> | |
| 236 | +</clipPath> | |
| 237 | +</defs> | |
| 238 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 222.339844 5.140625 L 10.230469 5.140625 C 8.046875 5.140625 6.277344 6.910156 6.277344 9.097656 L 6.277344 18.066406 C 6.277344 20.25 8.046875 22.023438 10.230469 22.023438 L 222.339844 22.023438 C 224.523438 22.023438 226.292969 20.25 226.292969 18.066406 L 226.292969 9.097656 C 226.292969 6.910156 224.523438 5.140625 222.339844 5.140625 Z M 222.339844 5.140625 "/> | |
| 239 | +<g clip-path="url(#clip-0)"> | |
| 240 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 106.855323 8.504569 L -106.855263 8.504569 C -109.05534 8.504569 -110.83823 6.721679 -110.83823 4.517666 L -110.83823 -4.518789 C -110.83823 -6.718867 -109.05534 -8.505692 -106.855263 -8.505692 L 106.855323 -8.505692 C 109.0554 -8.505692 110.83829 -6.718867 110.83829 -4.518789 L 110.83829 4.517666 C 110.83829 6.721679 109.0554 8.504569 106.855323 8.504569 Z M 106.855323 8.504569 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 241 | +</g> | |
| 242 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 243 | +<use xlink:href="#glyph-0-0" x="57.711299" y="16.824988"/> | |
| 244 | +<use xlink:href="#glyph-0-1" x="61.249801" y="16.824988"/> | |
| 245 | +</g> | |
| 246 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 247 | +<use xlink:href="#glyph-0-2" x="66.043089" y="16.824988"/> | |
| 248 | +</g> | |
| 249 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 250 | +<use xlink:href="#glyph-0-3" x="70.560325" y="16.824988"/> | |
| 251 | +<use xlink:href="#glyph-0-4" x="75.445631" y="16.824988"/> | |
| 252 | +<use xlink:href="#glyph-0-4" x="77.905015" y="16.824988"/> | |
| 253 | +</g> | |
| 254 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 255 | +<use xlink:href="#glyph-0-5" x="80.322572" y="16.824988"/> | |
| 256 | +<use xlink:href="#glyph-0-6" x="84.873269" y="16.824988"/> | |
| 257 | +<use xlink:href="#glyph-0-7" x="88.871859" y="16.824988"/> | |
| 258 | +</g> | |
| 259 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 260 | +<use xlink:href="#glyph-0-5" x="91.766236" y="16.824988"/> | |
| 261 | +</g> | |
| 262 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 263 | +<use xlink:href="#glyph-0-8" x="99.110926" y="16.824988"/> | |
| 264 | +<use xlink:href="#glyph-0-5" x="104.046424" y="16.824988"/> | |
| 265 | +<use xlink:href="#glyph-0-9" x="108.59712" y="16.824988"/> | |
| 266 | +</g> | |
| 267 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 268 | +<use xlink:href="#glyph-0-8" x="115.289321" y="16.824988"/> | |
| 269 | +<use xlink:href="#glyph-0-3" x="120.224819" y="16.824988"/> | |
| 270 | +<use xlink:href="#glyph-0-10" x="125.110126" y="16.824988"/> | |
| 271 | +<use xlink:href="#glyph-0-10" x="129.953606" y="16.824988"/> | |
| 272 | +<use xlink:href="#glyph-0-11" x="134.797086" y="16.824988"/> | |
| 273 | +<use xlink:href="#glyph-0-5" x="139.347782" y="16.824988"/> | |
| 274 | +<use xlink:href="#glyph-0-9" x="143.898479" y="16.824988"/> | |
| 275 | +</g> | |
| 276 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 277 | +<use xlink:href="#glyph-0-12" x="150.59068" y="16.824988"/> | |
| 278 | +<use xlink:href="#glyph-0-13" x="155.492717" y="16.824988"/> | |
| 279 | +<use xlink:href="#glyph-0-14" x="158.696608" y="16.824988"/> | |
| 280 | +<use xlink:href="#glyph-0-7" x="163.506627" y="16.824988"/> | |
| 281 | +</g> | |
| 282 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 283 | +<use xlink:href="#glyph-0-5" x="166.401004" y="16.824988"/> | |
| 284 | +<use xlink:href="#glyph-0-9" x="170.9517" y="16.824988"/> | |
| 285 | +</g> | |
| 286 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 222.339844 30.859375 L 10.230469 30.859375 C 8.046875 30.859375 6.277344 32.628906 6.277344 34.8125 L 6.277344 43.785156 C 6.277344 45.96875 8.046875 47.738281 10.230469 47.738281 L 222.339844 47.738281 C 224.523438 47.738281 226.292969 45.96875 226.292969 43.785156 L 226.292969 34.8125 C 226.292969 32.628906 224.523438 30.859375 222.339844 30.859375 Z M 222.339844 30.859375 "/> | |
| 287 | +<g clip-path="url(#clip-1)"> | |
| 288 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 106.855323 -17.408332 L -106.855263 -17.408332 C -109.05534 -17.408332 -110.83823 -19.191221 -110.83823 -21.391299 L -110.83823 -30.43169 C -110.83823 -32.631767 -109.05534 -34.414657 -106.855263 -34.414657 L 106.855323 -34.414657 C 109.0554 -34.414657 110.83829 -32.631767 110.83829 -30.43169 L 110.83829 -21.391299 C 110.83829 -19.191221 109.0554 -17.408332 106.855323 -17.408332 Z M 106.855323 -17.408332 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 289 | +</g> | |
| 290 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 291 | +<use xlink:href="#glyph-0-15" x="51.995448" y="43.027188"/> | |
| 292 | +<use xlink:href="#glyph-0-1" x="56.144613" y="43.027188"/> | |
| 293 | +</g> | |
| 294 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 295 | +<use xlink:href="#glyph-0-16" x="60.937901" y="43.027188"/> | |
| 296 | +</g> | |
| 297 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 298 | +<use xlink:href="#glyph-0-17" x="65.246006" y="43.027188"/> | |
| 299 | +</g> | |
| 300 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 301 | +<use xlink:href="#glyph-0-18" x="69.319883" y="43.027188"/> | |
| 302 | +</g> | |
| 303 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 304 | +<use xlink:href="#glyph-0-4" x="73.786927" y="43.027188"/> | |
| 305 | +<use xlink:href="#glyph-0-14" x="76.24631" y="43.027188"/> | |
| 306 | +<use xlink:href="#glyph-0-5" x="81.05633" y="43.027188"/> | |
| 307 | +<use xlink:href="#glyph-0-13" x="85.607026" y="43.027188"/> | |
| 308 | +</g> | |
| 309 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 310 | +<use xlink:href="#glyph-0-4" x="91.604911" y="43.027188"/> | |
| 311 | +</g> | |
| 312 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 313 | +<use xlink:href="#glyph-0-18" x="94.022469" y="43.027188"/> | |
| 314 | +</g> | |
| 315 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 316 | +<use xlink:href="#glyph-1-0" x="101.316967" y="43.027188"/> | |
| 317 | +<use xlink:href="#glyph-1-1" x="106.319387" y="43.027188"/> | |
| 318 | +<use xlink:href="#glyph-1-2" x="110.886814" y="43.027188"/> | |
| 319 | +<use xlink:href="#glyph-1-3" x="115.830678" y="43.027188"/> | |
| 320 | +<use xlink:href="#glyph-1-4" x="118.172948" y="43.027188"/> | |
| 321 | +<use xlink:href="#glyph-1-3" x="120.682523" y="43.027188"/> | |
| 322 | +<use xlink:href="#glyph-1-5" x="123.024793" y="43.027188"/> | |
| 323 | +</g> | |
| 324 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 325 | +<use xlink:href="#glyph-1-6" x="126.103206" y="43.027188"/> | |
| 326 | +</g> | |
| 327 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 328 | +<use xlink:href="#glyph-0-8" x="133.523183" y="43.027188"/> | |
| 329 | +<use xlink:href="#glyph-0-5" x="138.458681" y="43.027188"/> | |
| 330 | +</g> | |
| 331 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 332 | +<use xlink:href="#glyph-0-4" x="145.795006" y="43.027188"/> | |
| 333 | +</g> | |
| 334 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 335 | +<use xlink:href="#glyph-0-18" x="148.212564" y="43.027188"/> | |
| 336 | +</g> | |
| 337 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 338 | +<use xlink:href="#glyph-0-9" x="155.515428" y="43.027188"/> | |
| 339 | +<use xlink:href="#glyph-0-3" x="159.422" y="43.027188"/> | |
| 340 | +<use xlink:href="#glyph-0-14" x="164.307306" y="43.027188"/> | |
| 341 | +<use xlink:href="#glyph-0-13" x="169.117325" y="43.027188"/> | |
| 342 | +</g> | |
| 343 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 344 | +<use xlink:href="#glyph-0-6" x="172.153912" y="43.027188"/> | |
| 345 | +</g> | |
| 346 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 347 | +<use xlink:href="#glyph-0-5" x="176.027023" y="43.027188"/> | |
| 348 | +</g> | |
| 349 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 222.339844 56.574219 L 10.230469 56.574219 C 8.046875 56.574219 6.277344 58.34375 6.277344 60.53125 L 6.277344 69.5 C 6.277344 71.683594 8.046875 73.457031 10.230469 73.457031 L 222.339844 73.457031 C 224.523438 73.457031 226.292969 71.683594 226.292969 69.5 L 226.292969 60.53125 C 226.292969 58.34375 224.523438 56.574219 222.339844 56.574219 Z M 222.339844 56.574219 "/> | |
| 350 | +<g clip-path="url(#clip-2)"> | |
| 351 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 106.855323 -43.317297 L -106.855263 -43.317297 C -109.05534 -43.317297 -110.83823 -45.100186 -110.83823 -47.304199 L -110.83823 -56.340654 C -110.83823 -58.540732 -109.05534 -60.327557 -106.855263 -60.327557 L 106.855323 -60.327557 C 109.0554 -60.327557 110.83829 -58.540732 110.83829 -56.340654 L 110.83829 -47.304199 C 110.83829 -45.100186 109.0554 -43.317297 106.855323 -43.317297 Z M 106.855323 -43.317297 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 352 | +</g> | |
| 353 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 354 | +<use xlink:href="#glyph-0-19" x="22.531868" y="67.653286"/> | |
| 355 | +<use xlink:href="#glyph-0-1" x="26.614111" y="67.653286"/> | |
| 356 | +</g> | |
| 357 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 358 | +<use xlink:href="#glyph-1-7" x="31.4074" y="67.653286"/> | |
| 359 | +</g> | |
| 360 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 361 | +<use xlink:href="#glyph-1-8" x="36.050114" y="67.653286"/> | |
| 362 | +<use xlink:href="#glyph-1-9" x="40.93542" y="67.653286"/> | |
| 363 | +<use xlink:href="#glyph-1-0" x="45.728709" y="67.653286"/> | |
| 364 | +<use xlink:href="#glyph-1-10" x="50.731129" y="67.653286"/> | |
| 365 | +<use xlink:href="#glyph-1-11" x="54.077229" y="67.653286"/> | |
| 366 | +<use xlink:href="#glyph-1-1" x="61.112405" y="67.653286"/> | |
| 367 | +<use xlink:href="#glyph-1-5" x="65.679832" y="67.653286"/> | |
| 368 | +<use xlink:href="#glyph-1-3" x="68.908819" y="67.653286"/> | |
| 369 | +<use xlink:href="#glyph-1-8" x="71.251089" y="67.653286"/> | |
| 370 | +<use xlink:href="#glyph-1-9" x="76.136396" y="67.653286"/> | |
| 371 | +</g> | |
| 372 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 373 | +<use xlink:href="#glyph-1-12" x="83.723678" y="67.653286"/> | |
| 374 | +<use xlink:href="#glyph-1-10" x="87.730634" y="67.653286"/> | |
| 375 | +</g> | |
| 376 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 377 | +<use xlink:href="#glyph-1-8" x="90.909429" y="67.653286"/> | |
| 378 | +<use xlink:href="#glyph-1-3" x="95.794735" y="67.653286"/> | |
| 379 | +<use xlink:href="#glyph-1-13" x="98.137006" y="67.653286"/> | |
| 380 | +<use xlink:href="#glyph-1-6" x="102.152326" y="67.653286"/> | |
| 381 | +<use xlink:href="#glyph-1-14" x="106.786675" y="67.653286"/> | |
| 382 | +</g> | |
| 383 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 384 | +<use xlink:href="#glyph-0-20" x="114.206652" y="67.653286"/> | |
| 385 | +<use xlink:href="#glyph-0-15" x="116.916994" y="67.653286"/> | |
| 386 | +</g> | |
| 387 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 388 | +<use xlink:href="#glyph-2-0" x="121.065043" y="65.366549"/> | |
| 389 | +</g> | |
| 390 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 391 | +<use xlink:href="#glyph-0-9" x="126.810669" y="67.653286"/> | |
| 392 | +<use xlink:href="#glyph-0-3" x="130.717241" y="67.653286"/> | |
| 393 | +<use xlink:href="#glyph-0-14" x="135.602548" y="67.653286"/> | |
| 394 | +<use xlink:href="#glyph-0-13" x="140.412567" y="67.653286"/> | |
| 395 | +</g> | |
| 396 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 397 | +<use xlink:href="#glyph-0-6" x="143.449153" y="67.653286"/> | |
| 398 | +</g> | |
| 399 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 400 | +<use xlink:href="#glyph-0-5" x="147.322264" y="67.653286"/> | |
| 401 | +</g> | |
| 402 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 403 | +<use xlink:href="#glyph-0-21" x="154.658589" y="67.653286"/> | |
| 404 | +<use xlink:href="#glyph-0-10" x="156.967399" y="67.653286"/> | |
| 405 | +<use xlink:href="#glyph-0-8" x="161.810879" y="67.653286"/> | |
| 406 | +<use xlink:href="#glyph-0-11" x="166.746377" y="67.653286"/> | |
| 407 | +<use xlink:href="#glyph-0-22" x="171.297073" y="67.653286"/> | |
| 408 | +<use xlink:href="#glyph-0-5" x="176.19911" y="67.653286"/> | |
| 409 | +<use xlink:href="#glyph-0-10" x="180.749807" y="67.653286"/> | |
| 410 | +<use xlink:href="#glyph-0-8" x="185.593287" y="67.653286"/> | |
| 411 | +<use xlink:href="#glyph-0-18" x="190.528785" y="67.653286"/> | |
| 412 | +<use xlink:href="#glyph-0-10" x="195.037655" y="67.653286"/> | |
| 413 | +<use xlink:href="#glyph-0-7" x="199.881136" y="67.653286"/> | |
| 414 | +</g> | |
| 415 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 416 | +<use xlink:href="#glyph-0-5" x="202.775512" y="67.653286"/> | |
| 417 | +<use xlink:href="#glyph-0-23" x="207.326209" y="67.653286"/> | |
| 418 | +</g> | |
| 419 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 222.339844 82.292969 L 10.230469 82.292969 C 8.046875 82.292969 6.277344 84.0625 6.277344 86.246094 L 6.277344 95.21875 C 6.277344 97.402344 8.046875 99.171875 10.230469 99.171875 L 222.339844 99.171875 C 224.523438 99.171875 226.292969 97.402344 226.292969 95.21875 L 226.292969 86.246094 C 226.292969 84.0625 224.523438 82.292969 222.339844 82.292969 Z M 222.339844 82.292969 "/> | |
| 420 | +<g clip-path="url(#clip-3)"> | |
| 421 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 106.855323 -69.230197 L -106.855263 -69.230197 C -109.05534 -69.230197 -110.83823 -71.013087 -110.83823 -73.213164 L -110.83823 -82.253555 C -110.83823 -84.453633 -109.05534 -86.236522 -106.855263 -86.236522 L 106.855323 -86.236522 C 109.0554 -86.236522 110.83829 -84.453633 110.83829 -82.253555 L 110.83829 -73.213164 C 110.83829 -71.013087 109.0554 -69.230197 106.855323 -69.230197 Z M 106.855323 -69.230197 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 422 | +</g> | |
| 423 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 424 | +<use xlink:href="#glyph-0-24" x="46.592237" y="93.825711"/> | |
| 425 | +</g> | |
| 426 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 427 | +<use xlink:href="#glyph-0-1" x="50.833419" y="93.825711"/> | |
| 428 | +</g> | |
| 429 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 430 | +<use xlink:href="#glyph-0-25" x="55.626708" y="93.825711"/> | |
| 431 | +</g> | |
| 432 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 433 | +<use xlink:href="#glyph-0-11" x="60.068656" y="93.825711"/> | |
| 434 | +<use xlink:href="#glyph-0-13" x="64.619353" y="93.825711"/> | |
| 435 | +<use xlink:href="#glyph-0-21" x="67.823244" y="93.825711"/> | |
| 436 | +<use xlink:href="#glyph-0-26" x="70.132053" y="93.825711"/> | |
| 437 | +<use xlink:href="#glyph-0-5" x="74.916976" y="93.825711"/> | |
| 438 | +<use xlink:href="#glyph-0-13" x="79.467673" y="93.825711"/> | |
| 439 | +</g> | |
| 440 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 441 | +<use xlink:href="#glyph-0-4" x="85.465558" y="93.825711"/> | |
| 442 | +</g> | |
| 443 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 444 | +<use xlink:href="#glyph-0-18" x="87.883115" y="93.825711"/> | |
| 445 | +</g> | |
| 446 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 447 | +<use xlink:href="#glyph-1-12" x="95.177614" y="93.825711"/> | |
| 448 | +</g> | |
| 449 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 450 | +<use xlink:href="#glyph-1-8" x="99.05909" y="93.825711"/> | |
| 451 | +<use xlink:href="#glyph-1-15" x="103.944397" y="93.825711"/> | |
| 452 | +<use xlink:href="#glyph-1-6" x="108.737686" y="93.825711"/> | |
| 453 | +<use xlink:href="#glyph-1-10" x="113.372035" y="93.825711"/> | |
| 454 | +</g> | |
| 455 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 456 | +<use xlink:href="#glyph-1-14" x="116.55083" y="93.825711"/> | |
| 457 | +<use xlink:href="#glyph-1-9" x="121.185179" y="93.825711"/> | |
| 458 | +<use xlink:href="#glyph-1-12" x="125.978468" y="93.825711"/> | |
| 459 | +</g> | |
| 460 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 461 | +<use xlink:href="#glyph-1-14" x="129.859944" y="93.825711"/> | |
| 462 | +</g> | |
| 463 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 464 | +<use xlink:href="#glyph-0-8" x="137.279922" y="93.825711"/> | |
| 465 | +<use xlink:href="#glyph-0-5" x="142.21542" y="93.825711"/> | |
| 466 | +<use xlink:href="#glyph-0-9" x="146.766116" y="93.825711"/> | |
| 467 | +</g> | |
| 468 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 469 | +<use xlink:href="#glyph-0-8" x="153.466682" y="93.825711"/> | |
| 470 | +<use xlink:href="#glyph-0-3" x="158.40218" y="93.825711"/> | |
| 471 | +<use xlink:href="#glyph-0-10" x="163.287486" y="93.825711"/> | |
| 472 | +<use xlink:href="#glyph-0-10" x="168.130967" y="93.825711"/> | |
| 473 | +<use xlink:href="#glyph-0-11" x="172.974447" y="93.825711"/> | |
| 474 | +<use xlink:href="#glyph-0-5" x="177.525143" y="93.825711"/> | |
| 475 | +<use xlink:href="#glyph-0-9" x="182.07584" y="93.825711"/> | |
| 476 | +</g> | |
| 477 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 222.339844 108.007812 L 10.230469 108.007812 C 8.046875 108.007812 6.277344 109.777344 6.277344 111.964844 L 6.277344 120.933594 C 6.277344 123.117188 8.046875 124.890625 10.230469 124.890625 L 222.339844 124.890625 C 224.523438 124.890625 226.292969 123.117188 226.292969 120.933594 L 226.292969 111.964844 C 226.292969 109.777344 224.523438 108.007812 222.339844 108.007812 Z M 222.339844 108.007812 "/> | |
| 478 | +<g clip-path="url(#clip-4)"> | |
| 479 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 106.855323 -95.139162 L -106.855263 -95.139162 C -109.05534 -95.139162 -110.83823 -96.922051 -110.83823 -99.126065 L -110.83823 -108.16252 C -110.83823 -110.362597 -109.05534 -112.149422 -106.855263 -112.149422 L 106.855323 -112.149422 C 109.0554 -112.149422 110.83829 -110.362597 110.83829 -108.16252 L 110.83829 -99.126065 C 110.83829 -96.922051 109.0554 -95.139162 106.855323 -95.139162 Z M 106.855323 -95.139162 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 480 | +</g> | |
| 481 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 482 | +<use xlink:href="#glyph-0-27" x="62.283782" y="119.053269"/> | |
| 483 | +<use xlink:href="#glyph-0-1" x="66.382755" y="119.053269"/> | |
| 484 | +</g> | |
| 485 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 486 | +<use xlink:href="#glyph-1-16" x="71.176043" y="119.053269"/> | |
| 487 | +<use xlink:href="#glyph-1-9" x="73.627062" y="119.053269"/> | |
| 488 | +<use xlink:href="#glyph-1-5" x="78.420351" y="119.053269"/> | |
| 489 | +</g> | |
| 490 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 491 | +<use xlink:href="#glyph-1-6" x="81.498763" y="119.053269"/> | |
| 492 | +<use xlink:href="#glyph-1-17" x="86.133112" y="119.053269"/> | |
| 493 | +<use xlink:href="#glyph-1-10" x="90.742365" y="119.053269"/> | |
| 494 | +</g> | |
| 495 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 496 | +<use xlink:href="#glyph-1-1" x="93.870969" y="119.053269"/> | |
| 497 | +<use xlink:href="#glyph-1-5" x="98.438396" y="119.053269"/> | |
| 498 | +<use xlink:href="#glyph-1-3" x="101.667383" y="119.053269"/> | |
| 499 | +<use xlink:href="#glyph-1-8" x="104.009653" y="119.053269"/> | |
| 500 | +<use xlink:href="#glyph-1-9" x="108.89496" y="119.053269"/> | |
| 501 | +</g> | |
| 502 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 503 | +<use xlink:href="#glyph-0-8" x="116.482242" y="119.053269"/> | |
| 504 | +<use xlink:href="#glyph-0-18" x="121.41774" y="119.053269"/> | |
| 505 | +<use xlink:href="#glyph-0-10" x="125.92661" y="119.053269"/> | |
| 506 | +<use xlink:href="#glyph-0-9" x="130.770091" y="119.053269"/> | |
| 507 | +</g> | |
| 508 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 509 | +<use xlink:href="#glyph-0-4" x="137.462291" y="119.053269"/> | |
| 510 | +</g> | |
| 511 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 512 | +<use xlink:href="#glyph-0-28" x="139.796196" y="119.053269"/> | |
| 513 | +</g> | |
| 514 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 515 | +<use xlink:href="#glyph-0-18" x="141.577995" y="119.053269"/> | |
| 516 | +<use xlink:href="#glyph-0-10" x="146.086865" y="119.053269"/> | |
| 517 | +<use xlink:href="#glyph-0-18" x="150.930345" y="119.053269"/> | |
| 518 | +</g> | |
| 519 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 520 | +<use xlink:href="#glyph-0-4" x="155.397389" y="119.053269"/> | |
| 521 | +</g> | |
| 522 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 523 | +<use xlink:href="#glyph-0-29" x="157.77312" y="119.053269"/> | |
| 524 | +</g> | |
| 525 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 526 | +<use xlink:href="#glyph-0-9" x="161.830267" y="119.053269"/> | |
| 527 | +<use xlink:href="#glyph-0-5" x="165.736839" y="119.053269"/> | |
| 528 | +</g> | |
| 529 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 347.929688 28.664062 L 255.128906 28.664062 C 251.851562 28.664062 249.195312 31.320312 249.195312 34.597656 L 249.195312 44 C 249.195312 47.277344 251.851562 49.933594 255.128906 49.933594 L 347.929688 49.933594 C 351.207031 49.933594 353.863281 47.277344 353.863281 44 L 353.863281 34.597656 C 353.863281 31.320312 351.207031 28.664062 347.929688 28.664062 Z M 347.929688 28.664062 "/> | |
| 530 | +<g clip-path="url(#clip-5)"> | |
| 531 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 233.393242 -15.196447 L 139.891909 -15.196447 C 136.589825 -15.196447 133.913523 -17.872749 133.913523 -21.174833 L 133.913523 -30.648155 C 133.913523 -33.95024 136.589825 -36.626542 139.891909 -36.626542 L 233.393242 -36.626542 C 236.695327 -36.626542 239.371629 -33.95024 239.371629 -30.648155 L 239.371629 -21.174833 C 239.371629 -17.872749 236.695327 -15.196447 233.393242 -15.196447 Z M 233.393242 -15.196447 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 532 | +</g> | |
| 533 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 534 | +<use xlink:href="#glyph-3-0" x="257.719441" y="37.35203"/> | |
| 535 | +<use xlink:href="#glyph-3-1" x="261.771934" y="37.35203"/> | |
| 536 | +<use xlink:href="#glyph-3-2" x="266.114423" y="37.35203"/> | |
| 537 | +<use xlink:href="#glyph-3-3" x="270.389989" y="37.35203"/> | |
| 538 | +</g> | |
| 539 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 540 | +<use xlink:href="#glyph-3-4" x="273.089172" y="37.35203"/> | |
| 541 | +</g> | |
| 542 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 543 | +<use xlink:href="#glyph-3-5" x="276.531933" y="37.35203"/> | |
| 544 | +</g> | |
| 545 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 546 | +<use xlink:href="#glyph-3-6" x="283.053101" y="37.35203"/> | |
| 547 | +<use xlink:href="#glyph-3-1" x="287.440204" y="37.35203"/> | |
| 548 | +<use xlink:href="#glyph-3-2" x="291.782692" y="37.35203"/> | |
| 549 | +<use xlink:href="#glyph-3-7" x="296.058258" y="37.35203"/> | |
| 550 | +</g> | |
| 551 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 552 | +<use xlink:href="#glyph-3-5" x="298.631034" y="37.35203"/> | |
| 553 | +<use xlink:href="#glyph-3-2" x="302.676091" y="37.35203"/> | |
| 554 | +<use xlink:href="#glyph-3-8" x="306.951658" y="37.35203"/> | |
| 555 | +<use xlink:href="#glyph-3-5" x="310.424161" y="37.35203"/> | |
| 556 | +</g> | |
| 557 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 558 | +<use xlink:href="#glyph-4-0" x="316.953079" y="37.35203"/> | |
| 559 | +</g> | |
| 560 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 561 | +<use xlink:href="#glyph-3-4" x="327.833974" y="37.35203"/> | |
| 562 | +<use xlink:href="#glyph-3-9" x="331.388271" y="37.35203"/> | |
| 563 | +<use xlink:href="#glyph-3-5" x="335.69358" y="37.35203"/> | |
| 564 | +<use xlink:href="#glyph-3-3" x="339.738637" y="37.35203"/> | |
| 565 | +</g> | |
| 566 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 567 | +<use xlink:href="#glyph-3-10" x="342.341156" y="37.35203"/> | |
| 568 | +</g> | |
| 569 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 570 | +<use xlink:href="#glyph-3-4" x="254.809409" y="46.746114"/> | |
| 571 | +<use xlink:href="#glyph-3-9" x="258.363706" y="46.746114"/> | |
| 572 | +<use xlink:href="#glyph-3-5" x="262.669015" y="46.746114"/> | |
| 573 | +<use xlink:href="#glyph-3-3" x="266.714073" y="46.746114"/> | |
| 574 | +</g> | |
| 575 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 576 | +<use xlink:href="#glyph-3-2" x="272.038082" y="46.746114"/> | |
| 577 | +<use xlink:href="#glyph-3-11" x="276.313648" y="46.746114"/> | |
| 578 | +<use xlink:href="#glyph-3-5" x="280.618958" y="46.746114"/> | |
| 579 | +</g> | |
| 580 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 581 | +<use xlink:href="#glyph-3-8" x="287.147562" y="46.746114"/> | |
| 582 | +<use xlink:href="#glyph-3-1" x="290.620065" y="46.746114"/> | |
| 583 | +<use xlink:href="#glyph-3-2" x="294.962553" y="46.746114"/> | |
| 584 | +<use xlink:href="#glyph-3-3" x="299.23812" y="46.746114"/> | |
| 585 | +</g> | |
| 586 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 587 | +<use xlink:href="#glyph-3-4" x="301.937303" y="46.746114"/> | |
| 588 | +</g> | |
| 589 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 590 | +<use xlink:href="#glyph-3-5" x="305.380064" y="46.746114"/> | |
| 591 | +</g> | |
| 592 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 593 | +<use xlink:href="#glyph-3-12" x="311.901232" y="46.746114"/> | |
| 594 | +</g> | |
| 595 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 596 | +<use xlink:href="#glyph-3-13" x="315.871932" y="46.746114"/> | |
| 597 | +<use xlink:href="#glyph-3-7" x="318.058047" y="46.746114"/> | |
| 598 | +</g> | |
| 599 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 600 | +<use xlink:href="#glyph-3-5" x="320.630823" y="46.746114"/> | |
| 601 | +<use xlink:href="#glyph-3-3" x="324.67588" y="46.746114"/> | |
| 602 | +<use xlink:href="#glyph-3-11" x="327.523779" y="46.746114"/> | |
| 603 | +<use xlink:href="#glyph-3-12" x="331.829089" y="46.746114"/> | |
| 604 | +<use xlink:href="#glyph-3-7" x="335.836967" y="46.746114"/> | |
| 605 | +<use xlink:href="#glyph-3-14" x="338.521279" y="46.746114"/> | |
| 606 | +<use xlink:href="#glyph-3-15" x="340.573551" y="46.746114"/> | |
| 607 | +</g> | |
| 608 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 609 | +<use xlink:href="#glyph-3-5" x="344.202206" y="46.746114"/> | |
| 610 | +</g> | |
| 611 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 347.929688 79.214844 L 255.128906 79.214844 C 251.851562 79.214844 249.195312 81.871094 249.195312 85.148438 L 249.195312 96.316406 C 249.195312 99.59375 251.851562 102.25 255.128906 102.25 L 347.929688 102.25 C 351.207031 102.25 353.863281 99.59375 353.863281 96.316406 L 353.863281 85.148438 C 353.863281 81.871094 351.207031 79.214844 347.929688 79.214844 Z M 347.929688 79.214844 "/> | |
| 612 | +<g clip-path="url(#clip-6)"> | |
| 613 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 233.393242 -66.128835 L 139.891909 -66.128835 C 136.589825 -66.128835 133.913523 -68.805137 133.913523 -72.107222 L 133.913523 -83.359497 C 133.913523 -86.661582 136.589825 -89.337884 139.891909 -89.337884 L 233.393242 -89.337884 C 236.695327 -89.337884 239.371629 -86.661582 239.371629 -83.359497 L 239.371629 -72.107222 C 239.371629 -68.805137 236.695327 -66.128835 233.393242 -66.128835 Z M 233.393242 -66.128835 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 614 | +</g> | |
| 615 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 616 | +<use xlink:href="#glyph-3-16" x="266.514051" y="88.168418"/> | |
| 617 | +<use xlink:href="#glyph-3-11" x="270.774745" y="88.168418"/> | |
| 618 | +<use xlink:href="#glyph-3-1" x="275.080055" y="88.168418"/> | |
| 619 | +<use xlink:href="#glyph-3-17" x="279.422543" y="88.168418"/> | |
| 620 | +<use xlink:href="#glyph-3-12" x="285.742945" y="88.168418"/> | |
| 621 | +</g> | |
| 622 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 623 | +<use xlink:href="#glyph-3-13" x="289.713645" y="88.168418"/> | |
| 624 | +<use xlink:href="#glyph-3-14" x="291.899761" y="88.168418"/> | |
| 625 | +<use xlink:href="#glyph-3-5" x="293.952033" y="88.168418"/> | |
| 626 | +</g> | |
| 627 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 628 | +<use xlink:href="#glyph-4-0" x="300.473041" y="88.168418"/> | |
| 629 | +</g> | |
| 630 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 631 | +<use xlink:href="#glyph-3-14" x="311.361371" y="88.168418"/> | |
| 632 | +<use xlink:href="#glyph-3-11" x="313.413643" y="88.168418"/> | |
| 633 | +</g> | |
| 634 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 635 | +<use xlink:href="#glyph-3-15" x="317.666902" y="88.168418"/> | |
| 636 | +</g> | |
| 637 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 638 | +<use xlink:href="#glyph-3-5" x="321.295556" y="88.168418"/> | |
| 639 | +<use xlink:href="#glyph-3-8" x="325.340614" y="88.168418"/> | |
| 640 | +<use xlink:href="#glyph-3-7" x="328.813117" y="88.168418"/> | |
| 641 | +<use xlink:href="#glyph-3-14" x="331.497429" y="88.168418"/> | |
| 642 | +<use xlink:href="#glyph-3-10" x="333.549701" y="88.168418"/> | |
| 643 | +</g> | |
| 644 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 645 | +<use xlink:href="#glyph-3-18" x="267.407308" y="97.56151"/> | |
| 646 | +</g> | |
| 647 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 648 | +<use xlink:href="#glyph-3-2" x="271.236728" y="97.56151"/> | |
| 649 | +<use xlink:href="#glyph-3-5" x="275.512294" y="97.56151"/> | |
| 650 | +<use xlink:href="#glyph-3-3" x="279.557352" y="97.56151"/> | |
| 651 | +</g> | |
| 652 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 653 | +<use xlink:href="#glyph-3-12" x="284.881361" y="97.56151"/> | |
| 654 | +</g> | |
| 655 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 656 | +<use xlink:href="#glyph-3-15" x="288.852061" y="97.56151"/> | |
| 657 | +</g> | |
| 658 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 659 | +<use xlink:href="#glyph-3-12" x="292.47328" y="97.56151"/> | |
| 660 | +<use xlink:href="#glyph-3-11" x="296.481158" y="97.56151"/> | |
| 661 | +<use xlink:href="#glyph-3-7" x="300.786468" y="97.56151"/> | |
| 662 | +</g> | |
| 663 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 664 | +<use xlink:href="#glyph-3-6" x="305.954326" y="97.56151"/> | |
| 665 | +<use xlink:href="#glyph-3-19" x="310.341429" y="97.56151"/> | |
| 666 | +<use xlink:href="#glyph-3-2" x="312.036784" y="97.56151"/> | |
| 667 | +<use xlink:href="#glyph-3-7" x="316.31235" y="97.56151"/> | |
| 668 | +<use xlink:href="#glyph-3-14" x="318.996662" y="97.56151"/> | |
| 669 | +<use xlink:href="#glyph-3-13" x="321.048934" y="97.56151"/> | |
| 670 | +<use xlink:href="#glyph-3-14" x="323.23505" y="97.56151"/> | |
| 671 | +<use xlink:href="#glyph-3-8" x="325.287322" y="97.56151"/> | |
| 672 | +<use xlink:href="#glyph-3-5" x="328.759825" y="97.56151"/> | |
| 673 | +<use xlink:href="#glyph-3-3" x="332.804883" y="97.56151"/> | |
| 674 | +</g> | |
| 675 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0000299746 -8.702479 L 0.0000299746 -16.408654 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 676 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549249 3.109263 C -2.084832 1.243723 -1.045797 0.362118 0.00110973 0.0000299746 C -1.045797 -0.362058 -2.084832 -1.243663 -2.549249 -3.109203 " transform="matrix(0, 0.992508, 0.992508, 0, 116.285126, 30.264524)"/> | |
| 677 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0000299746 -34.615379 L 0.0000299746 -42.321555 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 678 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551154 3.109263 C -2.082801 1.243723 -1.047702 0.362118 -0.000795563 0.0000299746 C -1.047702 -0.362058 -2.082801 -1.243663 -2.551154 -3.109203 " transform="matrix(0, 0.992508, 0.992508, 0, 116.285126, 55.981258)"/> | |
| 679 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0000299746 -60.524344 L 0.0000299746 -68.23052 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 680 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549133 3.109263 C -2.084716 1.243723 -1.045681 0.362118 0.00122488 0.0000299746 C -1.045681 -0.362058 -2.084716 -1.243663 -2.549133 -3.109203 " transform="matrix(0, 0.992508, 0.992508, 0, 116.285126, 81.698003)"/> | |
| 681 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.0000299746 -86.437245 L 0.0000299746 -94.14342 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 682 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551039 3.109263 C -2.082686 1.243723 -1.047587 0.362118 -0.000680414 0.0000299746 C -1.047587 -0.362058 -2.082686 -1.243663 -2.551039 -3.109203 " transform="matrix(0, 0.992508, 0.992508, 0, 116.285126, 107.414738)"/> | |
| 683 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 111.039012 -25.909526 L 132.917781 -25.909526 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 684 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548732 3.110577 C -2.084315 1.245037 -1.04528 0.363431 0.00162645 0.0013435 C -1.04528 -0.36468 -2.084315 -1.246286 -2.548732 -3.111825 " transform="matrix(0.992508, 0, 0, -0.992508, 248.603854, 39.298208)"/> | |
| 685 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 111.039012 -77.731392 L 132.917781 -77.731392 " transform="matrix(0.992508, 0, 0, -0.992508, 116.285126, 13.581474)"/> | |
| 686 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548732 3.110462 C -2.084315 1.244922 -1.04528 0.363316 0.00162645 0.00122835 C -1.04528 -0.364795 -2.084315 -1.242465 -2.548732 -3.111941 " transform="matrix(0.992508, 0, 0, -0.992508, 248.603854, 90.731688)"/> | |
| 687 | +</svg> | |
added
dist/assets/fig/6bff32d37d43411e.svg
+826 −0
@@ -0,0 +1,826 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="166.016pt" viewBox="0 0 314.242 166.016"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.703125 -4.71875 L 2.03125 -4.71875 L 0.296875 -3.65625 L 0.625 -3.109375 L 1.9375 -3.90625 L 1.9375 0 L 2.703125 0 Z M 2.703125 -4.71875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.796875 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.328125 0.09375 1.578125 -0.15625 1.578125 -0.484375 C 1.578125 -0.796875 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.078125 0.046875 2.25 -0.046875 L 2.046875 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.484375 -0.65625 1.484375 -0.890625 L 1.484375 -6.28125 L 0.71875 -6.1875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4 0.40625 -3.296875 C 0.40625 -2.6875 0.78125 -2.265625 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.375 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.765625 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.078125 -2.375 2.15625 -2.609375 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.671875 1.515625 -3.90625 2.015625 -3.90625 C 2.421875 -3.90625 2.765625 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.328125 2.609375 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 3.40625 -6.28125 L 3.40625 -3.96875 C 3.109375 -4.28125 2.734375 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.53125 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.171875 3.421875 -0.609375 L 3.5 0 L 4.171875 0 L 4.171875 -6.1875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.03125 1.3125 -2.203125 C 1.3125 -3.34375 1.71875 -3.90625 2.375 -3.90625 C 2.8125 -3.90625 3.125 -3.671875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.5625 0.484375 -2.203125 C 0.484375 -0.796875 1.1875 0.09375 2.453125 0.09375 C 3.6875 0.09375 4.40625 -0.84375 4.40625 -2.21875 C 4.40625 -3.609375 3.703125 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.890625 C 3.1875 -3.890625 3.578125 -3.359375 3.578125 -2.21875 C 3.578125 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.703125 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.890625 2.453125 -3.890625 Z M 2.453125 -3.890625 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.84375 -4.515625 C 2.265625 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -3.125 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.09375 -3.90625 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.125 0 L 4.125 -3.171875 C 4.125 -4 3.65625 -4.515625 2.84375 -4.515625 Z M 2.84375 -4.515625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.34375 -6.0625 L 3 -6.703125 L 1.328125 -5.75 L 1.5625 -5.34375 Z M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.75 -0.390625 L 3.40625 -0.890625 C 3.0625 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.734375 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.328125 1.734375 -3.875 2.4375 -3.875 C 2.8125 -3.875 3.078125 -3.765625 3.390625 -3.546875 L 3.75 -4.03125 C 3.34375 -4.375 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.96875 3.234375 -4.515625 2.171875 -4.515625 C 1.6875 -4.515625 1.203125 -4.40625 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.796875 1.703125 -3.890625 2.03125 -3.890625 C 2.640625 -3.890625 2.953125 -3.65625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.921875 0.09375 L 4.09375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 1.140625 -6.53125 C 0.828125 -6.53125 0.609375 -6.3125 0.609375 -6 C 0.609375 -5.71875 0.828125 -5.484375 1.140625 -5.484375 C 1.46875 -5.484375 1.6875 -5.71875 1.6875 -6 C 1.6875 -6.3125 1.46875 -6.53125 1.140625 -6.53125 Z M 1.546875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.40625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.734375 -4.171875 1.5 -3.515625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -2.515625 C 1.71875 -3.359375 2.046875 -3.765625 2.59375 -3.765625 C 2.75 -3.765625 2.84375 -3.75 2.984375 -3.703125 L 3.125 -4.46875 C 2.984375 -4.5 2.828125 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.203125 -4.203125 3.890625 -3.71875 C 3.71875 -4.21875 3.3125 -4.515625 2.765625 -4.515625 C 2.1875 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -3.125 C 1.828125 -3.59375 2.109375 -3.90625 2.578125 -3.90625 C 2.921875 -3.90625 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.96875 0 L 3.96875 -3.125 C 4.265625 -3.59375 4.53125 -3.90625 5.015625 -3.90625 C 5.34375 -3.90625 5.625 -3.71875 5.625 -3.0625 L 5.625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.921875 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.609375 -0.75 1.609375 -1.1875 L 1.609375 -3.8125 L 2.578125 -3.8125 L 2.65625 -4.40625 L 1.609375 -4.40625 L 1.609375 -5.5 L 0.84375 -5.40625 L 0.84375 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.84375 -3.8125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.40625 0.09375 2.734375 0 3.015625 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.84375 -4.515625 C 2.296875 -4.515625 1.859375 -4.234375 1.546875 -3.796875 L 1.546875 -6.265625 L 0.765625 -6.1875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.078125 -3.90625 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.125 0 L 4.125 -3.171875 C 4.125 -4 3.65625 -4.515625 2.84375 -4.515625 Z M 2.84375 -4.515625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 1.875 -4.8125 C 1.125 -4.8125 0.59375 -4.5 0.125 -3.921875 L 0.625 -3.515625 C 1.015625 -4 1.390625 -4.171875 1.84375 -4.171875 C 2.40625 -4.171875 2.796875 -3.828125 2.796875 -3.296875 C 2.796875 -2.625 2.53125 -2.25 0.25 -0.609375 L 0.25 0 L 3.59375 0 L 3.6875 -0.640625 L 1.234375 -0.640625 C 3.40625 -2.015625 3.609375 -2.5625 3.609375 -3.328125 C 3.609375 -4.171875 2.9375 -4.8125 1.875 -4.8125 Z M 1.875 -4.8125 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 4.046875 -4.40625 L 3.28125 -4.40625 L 3.28125 -1.265625 C 3 -0.828125 2.640625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.484375 -0.734375 1.484375 -1.328125 L 1.484375 -4.40625 L 0.71875 -4.40625 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 2.984375 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.40625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 3.234375 -5.75 L 1.5625 -6.703125 L 1.21875 -6.0625 L 3 -5.34375 Z M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.96875 3.234375 -4.515625 2.171875 -4.515625 C 1.6875 -4.515625 1.203125 -4.40625 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.796875 1.703125 -3.890625 2.03125 -3.890625 C 2.640625 -3.890625 2.953125 -3.65625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.921875 0.09375 L 4.09375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 4.125 -4.90625 C 3.609375 -4.671875 3.203125 -4.484375 2.109375 -4.515625 C 1.140625 -4.515625 0.40625 -3.875 0.40625 -2.96875 C 0.40625 -2.40625 0.640625 -2.015625 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.25 0.671875 -0.96875 C 0.671875 -0.53125 1.015625 -0.140625 1.8125 -0.140625 L 2.5 -0.140625 C 3.0625 -0.140625 3.390625 0.078125 3.390625 0.5 C 3.390625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.125 1.1875 0.90625 0.953125 0.90625 0.4375 L 0.203125 0.4375 C 0.203125 1.34375 0.65625 1.78125 2.109375 1.78125 C 3.46875 1.78125 4.171875 1.296875 4.171875 0.4375 C 4.171875 -0.265625 3.5625 -0.78125 2.65625 -0.78125 L 1.953125 -0.78125 C 1.5 -0.78125 1.375 -0.9375 1.375 -1.140625 C 1.375 -1.296875 1.46875 -1.453125 1.59375 -1.546875 C 1.78125 -1.484375 1.953125 -1.46875 2.15625 -1.46875 C 3.21875 -1.46875 3.84375 -2.09375 3.84375 -2.96875 C 3.84375 -3.46875 3.578125 -3.84375 3.0625 -4.078125 C 3.5625 -4.078125 3.984375 -4.09375 4.359375 -4.21875 Z M 2.109375 -3.96875 C 2.734375 -3.96875 3.0625 -3.625 3.0625 -2.984375 C 3.0625 -2.34375 2.734375 -1.96875 2.125 -1.96875 C 1.53125 -1.96875 1.203125 -2.390625 1.203125 -2.96875 C 1.203125 -3.546875 1.515625 -3.96875 2.109375 -3.96875 Z M 2.109375 -3.96875 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 1.875 -4.8125 C 1.234375 -4.8125 0.71875 -4.59375 0.25 -4.140625 L 0.640625 -3.6875 C 1.015625 -4.03125 1.359375 -4.1875 1.796875 -4.1875 C 2.390625 -4.1875 2.765625 -3.875 2.765625 -3.34375 C 2.765625 -2.734375 2.296875 -2.40625 1.71875 -2.40625 L 1.4375 -2.40625 L 1.34375 -1.8125 L 1.765625 -1.8125 C 2.5 -1.8125 2.90625 -1.5 2.90625 -0.765625 C 2.90625 -0.078125 2.484375 0.359375 1.734375 0.359375 C 1.296875 0.359375 0.90625 0.1875 0.546875 -0.203125 L 0.078125 0.21875 C 0.515625 0.734375 1.09375 0.984375 1.765625 0.984375 C 2.96875 0.984375 3.703125 0.25 3.703125 -0.734375 C 3.703125 -1.609375 3.1875 -2.0625 2.421875 -2.140625 C 3.0625 -2.28125 3.53125 -2.75 3.53125 -3.40625 C 3.53125 -4.140625 2.953125 -4.8125 1.875 -4.8125 Z M 1.875 -4.8125 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.8125 -4.265625 1.484375 -3.8125 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.828125 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.59375 3.96875 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.5625 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 1.890625 -7.078125 C 1.078125 -5.90625 0.328125 -4.921875 0.328125 -2.9375 C 0.328125 -0.953125 1.078125 0.046875 1.890625 1.21875 L 2.375 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.734375 1.625 -5.625 2.375 -6.734375 Z M 1.890625 -7.078125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 0.5 -2.296875 L 2.875 -2.296875 L 2.875 -2.953125 L 0.5 -2.953125 Z M 0.5 -2.296875 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.796875 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.578125 -0.296875 1.578125 -0.484375 C 1.578125 -0.796875 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 4.03125 -4.40625 L 3.21875 -4.40625 L 2.078125 -0.6875 L 0.921875 -4.40625 L 0.078125 -4.40625 L 1.609375 0 L 2.53125 0 Z M 4.03125 -4.40625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 0.828125 -7.078125 L 0.328125 -6.734375 C 1.09375 -5.625 1.578125 -4.734375 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.328125 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.375 -0.953125 2.375 -2.9375 C 2.375 -4.921875 1.640625 -5.90625 0.828125 -7.078125 Z M 0.828125 -7.078125 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 4.15625 -0.921875 L 3.453125 -0.921875 L 3.453125 -2.453125 L 2.796875 -2.453125 L 2.734375 -0.921875 L 0.984375 -0.921875 L 2.5 -4.546875 L 1.84375 -4.8125 L 0.171875 -0.875 L 0.171875 -0.328125 L 2.71875 -0.328125 L 2.71875 0.890625 L 3.453125 0.890625 L 3.453125 -0.328125 L 4.15625 -0.328125 Z M 4.15625 -0.921875 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 1 -6.3125 C 0.703125 -6.3125 0.453125 -6.078125 0.453125 -5.78125 C 0.453125 -5.609375 0.53125 -5.46875 0.671875 -5.359375 L 0.328125 -4.109375 L 0.84375 -4.109375 L 1.40625 -5.296875 C 1.5 -5.53125 1.546875 -5.640625 1.546875 -5.78125 C 1.546875 -6.078125 1.296875 -6.3125 1 -6.3125 Z M 1 -6.3125 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.40625 L 2.96875 -4.40625 L 2.046875 -2.796875 L 1.125 -4.40625 L 0.21875 -4.40625 L 1.578125 -2.328125 L 0.046875 0 L 0.90625 0 L 2.015625 -1.875 L 3.09375 0 L 4.015625 0 Z M 2.484375 -2.359375 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-0-30"> | |
| 96 | +<path d="M 3.578125 -4.71875 L 0.546875 -4.71875 L 0.546875 -1.90625 L 1.140625 -1.90625 C 1.390625 -2.015625 1.65625 -2.09375 1.9375 -2.09375 C 2.515625 -2.09375 2.96875 -1.796875 2.96875 -0.921875 C 2.96875 -0.109375 2.515625 0.359375 1.8125 0.359375 C 1.328125 0.359375 0.96875 0.171875 0.625 -0.171875 L 0.171875 0.265625 C 0.609375 0.71875 1.109375 0.984375 1.828125 0.984375 C 2.984375 0.984375 3.765625 0.203125 3.765625 -0.90625 C 3.765625 -2.03125 3.125 -2.6875 2.171875 -2.6875 C 1.875 -2.6875 1.578125 -2.625 1.28125 -2.46875 L 1.28125 -4.125 L 3.46875 -4.125 Z M 3.578125 -4.71875 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-0-31"> | |
| 99 | +<path d="M 3.421875 -5.75 L 1.765625 -6.703125 L 1.421875 -6.0625 L 3.1875 -5.34375 Z M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-0-32"> | |
| 102 | +<path d="M 4.03125 -4.40625 L 3.234375 -4.40625 L 2.078125 -0.5625 L 0.90625 -4.40625 L 0.078125 -4.40625 L 1.5625 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.1875 L 0.515625 1.78125 C 1.734375 1.65625 2.25 0.96875 2.5625 0.03125 Z M 4.03125 -4.40625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-0-33"> | |
| 105 | +<path d="M 3.515625 -4.40625 L 3.453125 -3.921875 C 3.15625 -4.25 2.75 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.53125 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.109375 -0.15625 3.40625 -0.59375 L 3.40625 1.6875 L 4.171875 1.78125 L 4.171875 -4.40625 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.03125 1.3125 -2.203125 C 1.3125 -3.34375 1.71875 -3.90625 2.375 -3.90625 C 2.8125 -3.90625 3.125 -3.671875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-0-34"> | |
| 108 | +<path d="M 2.609375 -3.6875 C 2.0625 -3.6875 1.59375 -3.453125 1.234375 -2.9375 C 1.265625 -4.21875 1.765625 -5.078125 2.625 -5.078125 C 2.9375 -5.078125 3.21875 -4.984375 3.5 -4.828125 L 3.796875 -5.34375 C 3.46875 -5.5625 3.09375 -5.6875 2.625 -5.6875 C 1.25 -5.6875 0.453125 -4.46875 0.453125 -2.625 C 0.453125 -1.015625 0.984375 0.09375 2.375 0.09375 C 3.375 0.09375 4.1875 -0.671875 4.1875 -1.90625 C 4.1875 -3.09375 3.4375 -3.6875 2.609375 -3.6875 Z M 2.375 -0.515625 C 1.59375 -0.515625 1.265625 -1.078125 1.234375 -2.296875 C 1.53125 -2.75 1.953125 -3.078125 2.484375 -3.078125 C 3.015625 -3.078125 3.40625 -2.765625 3.40625 -1.875 C 3.40625 -1.0625 3.046875 -0.515625 2.375 -0.515625 Z M 2.375 -0.515625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-0"> | |
| 111 | +<path d="M 1.921875 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 1.921875 0 Z M 1.921875 -5.796875 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-1"> | |
| 114 | +<path d="M 3.140625 -6.359375 L 3.140625 -4.171875 C 2.875 -4.4375 2.515625 -4.59375 2.078125 -4.59375 C 0.984375 -4.59375 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.953125 0.140625 C 2.5625 0.140625 2.96875 -0.15625 3.21875 -0.515625 L 3.296875 0 L 4.46875 0 L 4.46875 -6.21875 Z M 2.375 -0.828125 C 1.9375 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.21875 1.96875 -3.625 2.453125 -3.625 C 2.734375 -3.625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.9375 -1 2.6875 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-2"> | |
| 117 | +<path d="M 4.390625 -2.3125 C 4.390625 -3.75 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.796875 -0.125 4.234375 -0.484375 L 3.6875 -1.21875 C 3.3125 -0.953125 2.984375 -0.828125 2.625 -0.828125 C 2.078125 -0.828125 1.703125 -1.03125 1.625 -1.828125 L 4.375 -1.828125 C 4.390625 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.6875 -3.4375 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.09375 -3.296875 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-3"> | |
| 120 | +<path d="M 3.109375 -4.59375 C 2.546875 -4.59375 2.125 -4.359375 1.765625 -3.90625 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.828125 0 L 1.828125 -3.046875 C 2.0625 -3.40625 2.3125 -3.625 2.609375 -3.625 C 2.859375 -3.625 3.015625 -3.5 3.015625 -3.015625 L 3.015625 0 L 4.34375 0 L 4.34375 -3.25 C 4.34375 -4.09375 3.890625 -4.59375 3.109375 -4.59375 Z M 3.109375 -4.59375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-4"> | |
| 123 | +<path d="M 2.859375 -1.046875 C 2.6875 -0.953125 2.53125 -0.90625 2.390625 -0.90625 C 2.109375 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.84375 -3.53125 L 2.984375 -4.453125 L 1.96875 -4.453125 L 1.96875 -5.5625 L 0.640625 -5.40625 L 0.640625 -4.453125 L 0.015625 -4.453125 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.5 0.140625 2.96875 0.03125 3.3125 -0.203125 Z M 2.859375 -1.046875 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-5"> | |
| 126 | +<path d="M 1.171875 -6.796875 C 0.71875 -6.796875 0.390625 -6.46875 0.390625 -6.03125 C 0.390625 -5.609375 0.71875 -5.28125 1.171875 -5.28125 C 1.640625 -5.28125 1.953125 -5.609375 1.953125 -6.03125 C 1.953125 -6.46875 1.640625 -6.796875 1.171875 -6.796875 Z M 1.828125 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.828125 0 Z M 1.828125 -4.453125 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-6"> | |
| 129 | +<path d="M 2.546875 -6.359375 C 1.234375 -6.359375 0.703125 -5.6875 0.703125 -4.828125 L 0.703125 -4.453125 L 0.03125 -4.453125 L 0.03125 -3.53125 L 0.703125 -3.53125 L 0.703125 0 L 2.03125 0 L 2.03125 -3.53125 L 3.171875 -3.53125 L 3.171875 0 L 4.5 0 L 4.5 -4.453125 L 2.03125 -4.453125 L 2.03125 -4.78125 C 2.03125 -5.203125 2.171875 -5.375 2.703125 -5.375 C 3.0625 -5.375 3.390625 -5.28125 3.65625 -5.171875 L 4.03125 -6.015625 C 3.671875 -6.203125 3.171875 -6.359375 2.546875 -6.359375 Z M 2.546875 -6.359375 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-1-7"> | |
| 132 | +<path d="M 2.921875 -4.578125 C 2.40625 -4.578125 1.96875 -4.203125 1.78125 -3.578125 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.828125 0 L 1.828125 -2.234375 C 1.984375 -2.890625 2.21875 -3.296875 2.75 -3.296875 C 2.890625 -3.296875 3.015625 -3.265625 3.15625 -3.234375 L 3.359375 -4.515625 C 3.21875 -4.5625 3.09375 -4.578125 2.921875 -4.578125 Z M 2.921875 -4.578125 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-1-8"> | |
| 135 | +<path d="M 2.421875 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 1.921875 0 L 1.921875 -1.9375 L 2.546875 -1.9375 C 3.890625 -1.9375 4.84375 -2.5625 4.84375 -3.90625 C 4.84375 -5.1875 3.921875 -5.796875 2.421875 -5.796875 Z M 2.421875 -2.921875 L 1.921875 -2.921875 L 1.921875 -4.828125 L 2.40625 -4.828125 C 3.078125 -4.828125 3.421875 -4.53125 3.421875 -3.90625 C 3.421875 -3.1875 3.046875 -2.921875 2.421875 -2.921875 Z M 2.421875 -2.921875 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-1-9"> | |
| 138 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.28125 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.84375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.359375 L 0.453125 -6.21875 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-1-10"> | |
| 141 | +<path d="M 4.03125 -1.296875 L 4.03125 -3.015625 C 4.03125 -4.046875 3.484375 -4.59375 2.1875 -4.59375 C 1.6875 -4.59375 1.078125 -4.46875 0.515625 -4.265625 L 0.828125 -3.390625 C 1.265625 -3.546875 1.703125 -3.625 1.984375 -3.625 C 2.53125 -3.625 2.734375 -3.46875 2.734375 -2.9375 L 2.734375 -2.75 L 2.28125 -2.75 C 0.953125 -2.75 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.171875 0.140625 2.671875 -0.03125 2.984375 -0.515625 C 3.203125 -0.078125 3.546875 0.078125 4.0625 0.125 L 4.34375 -0.75 C 4.125 -0.828125 4.03125 -0.953125 4.03125 -1.296875 Z M 2.03125 -0.796875 C 1.703125 -0.796875 1.53125 -1.015625 1.53125 -1.359375 C 1.53125 -1.8125 1.8125 -2.015625 2.40625 -2.015625 L 2.734375 -2.015625 L 2.734375 -1.21875 C 2.578125 -0.96875 2.34375 -0.796875 2.03125 -0.796875 Z M 2.03125 -0.796875 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-1-11"> | |
| 144 | +<path d="M 2.921875 -5.953125 C 1.40625 -5.953125 0.28125 -4.859375 0.28125 -2.921875 C 0.28125 -0.921875 1.34375 0.140625 2.9375 0.140625 C 3.734375 0.140625 4.359375 -0.21875 4.75 -0.609375 L 4.140625 -1.390625 C 3.796875 -1.125 3.453125 -0.921875 3 -0.921875 C 2.234375 -0.921875 1.71875 -1.515625 1.71875 -2.921875 C 1.71875 -4.34375 2.234375 -4.9375 2.984375 -4.9375 C 3.375 -4.9375 3.703125 -4.78125 4.03125 -4.53125 L 4.6875 -5.3125 C 4.203125 -5.71875 3.671875 -5.953125 2.921875 -5.953125 Z M 2.921875 -5.953125 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-1-12"> | |
| 147 | +<path d="M 2.453125 -4.59375 C 1.09375 -4.59375 0.265625 -3.65625 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.796875 0.140625 4.625 -0.796875 4.625 -2.21875 C 4.625 -3.71875 3.796875 -4.59375 2.453125 -4.59375 Z M 2.453125 -3.625 C 2.984375 -3.625 3.25 -3.203125 3.25 -2.21875 C 3.25 -1.25 2.984375 -0.828125 2.453125 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.234375 C 1.640625 -3.1875 1.90625 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-1-13"> | |
| 150 | +<path d="M 2.453125 -4.59375 C 1.109375 -4.59375 0.265625 -3.59375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.078125 0.140625 3.5625 -0.0625 3.96875 -0.390625 L 3.390625 -1.203125 C 3.078125 -1 2.859375 -0.90625 2.53125 -0.90625 C 2.015625 -0.90625 1.65625 -1.203125 1.65625 -2.1875 C 1.65625 -3.1875 1.984375 -3.578125 2.546875 -3.578125 C 2.859375 -3.578125 3.109375 -3.46875 3.40625 -3.265625 L 3.96875 -4.046875 C 3.546875 -4.40625 3.0625 -4.59375 2.453125 -4.59375 Z M 2.453125 -4.59375 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-1-14"> | |
| 153 | +<path d="M 4.890625 -5.796875 L 3.484375 -5.796875 L 2.453125 -1.078125 L 1.34375 -5.796875 L -0.109375 -5.796875 L 1.5625 0 L 3.28125 0 Z M 4.890625 -5.796875 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-1-15"> | |
| 156 | +<path d="M 3.5 -6 L 2.96875 -7 L 1.140625 -5.890625 L 1.515625 -5.203125 Z M 4.390625 -2.3125 C 4.390625 -3.75 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.796875 -0.125 4.234375 -0.484375 L 3.6875 -1.21875 C 3.3125 -0.953125 2.984375 -0.828125 2.625 -0.828125 C 2.078125 -0.828125 1.703125 -1.03125 1.609375 -1.828125 L 4.375 -1.828125 C 4.390625 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.671875 -3.421875 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.09375 -3.296875 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-1-16"> | |
| 159 | +<path d="M 2.890625 -5.953125 C 1.25 -5.953125 0.28125 -4.796875 0.28125 -2.90625 C 0.28125 -0.96875 1.25 0.140625 2.890625 0.140625 C 4.53125 0.140625 5.515625 -1 5.515625 -2.90625 C 5.515625 -4.84375 4.53125 -5.953125 2.890625 -5.953125 Z M 2.890625 -4.9375 C 3.671875 -4.9375 4.0625 -4.375 4.0625 -2.90625 C 4.0625 -1.4375 3.671875 -0.859375 2.890625 -0.859375 C 2.140625 -0.859375 1.71875 -1.4375 1.71875 -2.90625 C 1.71875 -4.375 2.125 -4.9375 2.890625 -4.9375 Z M 2.890625 -4.9375 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-1-17"> | |
| 162 | +<path d="M 4.3125 -5.171875 C 3.765625 -4.84375 3.203125 -4.5625 2.21875 -4.59375 C 1.046875 -4.59375 0.265625 -3.96875 0.265625 -2.96875 C 0.265625 -2.390625 0.484375 -2 1.0625 -1.6875 C 0.734375 -1.484375 0.53125 -1.171875 0.53125 -0.84375 C 0.53125 -0.359375 0.921875 0.046875 1.890625 0.046875 L 2.53125 0.046875 C 2.984375 0.046875 3.171875 0.21875 3.171875 0.484375 C 3.171875 0.765625 2.984375 0.984375 2.21875 0.984375 C 1.40625 0.984375 1.234375 0.8125 1.234375 0.421875 L 0.046875 0.421875 C 0.046875 1.3125 0.5 1.859375 2.171875 1.859375 C 3.703125 1.859375 4.5 1.296875 4.5 0.390625 C 4.5 -0.359375 3.84375 -0.90625 2.8125 -0.90625 L 2.140625 -0.90625 C 1.703125 -0.90625 1.65625 -1.03125 1.65625 -1.171875 C 1.65625 -1.265625 1.703125 -1.375 1.796875 -1.421875 C 1.953125 -1.390625 2.125 -1.375 2.296875 -1.375 C 3.453125 -1.375 4.171875 -2 4.171875 -2.859375 C 4.171875 -3.4375 3.890625 -3.765625 3.328125 -4.015625 C 3.890625 -4.015625 4.3125 -4.0625 4.609375 -4.1875 Z M 2.25 -3.71875 C 2.6875 -3.71875 2.921875 -3.5 2.921875 -3 C 2.921875 -2.484375 2.6875 -2.234375 2.25 -2.234375 C 1.84375 -2.234375 1.578125 -2.5 1.578125 -2.984375 C 1.578125 -3.4375 1.828125 -3.71875 2.25 -3.71875 Z M 2.25 -3.71875 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-1-18"> | |
| 165 | +<path d="M 2.078125 -4.59375 C 0.96875 -4.59375 0.265625 -4 0.265625 -3.234375 C 0.265625 -2.546875 0.703125 -2.09375 1.578125 -1.84375 C 2.390625 -1.609375 2.515625 -1.53125 2.515625 -1.21875 C 2.515625 -0.953125 2.28125 -0.796875 1.875 -0.796875 C 1.4375 -0.796875 1.03125 -0.984375 0.6875 -1.234375 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.90625 0.140625 C 3.015625 0.140625 3.890625 -0.40625 3.890625 -1.328125 C 3.890625 -2.125 3.390625 -2.484375 2.515625 -2.734375 C 1.71875 -2.96875 1.59375 -3.078125 1.59375 -3.3125 C 1.59375 -3.515625 1.78125 -3.640625 2.140625 -3.640625 C 2.515625 -3.640625 2.890625 -3.515625 3.234375 -3.296875 L 3.71875 -4.046875 C 3.3125 -4.375 2.734375 -4.59375 2.078125 -4.59375 Z M 2.078125 -4.59375 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-1-19"> | |
| 168 | +<path d="M 3.59375 0 L 5.0625 0 L 3.3125 -5.796875 L 1.640625 -5.796875 L -0.109375 0 L 1.3125 0 L 1.609375 -1.25 L 3.3125 -1.25 Z M 1.84375 -2.25 L 2.453125 -4.8125 L 3.0625 -2.25 Z M 1.84375 -2.25 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-1-20"> | |
| 171 | +<path d="M 4.390625 -4.453125 L 3.015625 -4.453125 L 2.15625 -0.84375 L 1.359375 -4.453125 L -0.046875 -4.453125 L 1.3125 0 L 1.765625 0 C 1.515625 0.5625 1.203125 0.828125 0.328125 0.921875 L 0.46875 1.859375 C 1.875 1.78125 2.625 1.125 2.96875 0.015625 Z M 4.390625 -4.453125 "/> | |
| 172 | +</g> | |
| 173 | +</g> | |
| 174 | +<clipPath id="clip-0"> | |
| 175 | +<path clip-rule="nonzero" d="M 0.550781 0 L 312.9375 0 L 312.9375 28 L 0.550781 28 Z M 0.550781 0 "/> | |
| 176 | +</clipPath> | |
| 177 | +<clipPath id="clip-1"> | |
| 178 | +<path clip-rule="nonzero" d="M 0.550781 25 L 312.9375 25 L 312.9375 54 L 0.550781 54 Z M 0.550781 25 "/> | |
| 179 | +</clipPath> | |
| 180 | +<clipPath id="clip-2"> | |
| 181 | +<path clip-rule="nonzero" d="M 0.550781 51 L 312.9375 51 L 312.9375 89 L 0.550781 89 Z M 0.550781 51 "/> | |
| 182 | +</clipPath> | |
| 183 | +<clipPath id="clip-3"> | |
| 184 | +<path clip-rule="nonzero" d="M 0.550781 85 L 312.9375 85 L 312.9375 114 L 0.550781 114 Z M 0.550781 85 "/> | |
| 185 | +</clipPath> | |
| 186 | +<clipPath id="clip-4"> | |
| 187 | +<path clip-rule="nonzero" d="M 0.550781 111 L 312.9375 111 L 312.9375 140 L 0.550781 140 Z M 0.550781 111 "/> | |
| 188 | +</clipPath> | |
| 189 | +<clipPath id="clip-5"> | |
| 190 | +<path clip-rule="nonzero" d="M 0.550781 137 L 312.9375 137 L 312.9375 165.039062 L 0.550781 165.039062 Z M 0.550781 137 "/> | |
| 191 | +</clipPath> | |
| 192 | +</defs> | |
| 193 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.828125 5.148438 L 9.660156 5.148438 C 7.472656 5.148438 5.699219 6.925781 5.699219 9.113281 L 5.699219 18.097656 C 5.699219 20.285156 7.472656 22.058594 9.660156 22.058594 L 303.828125 22.058594 C 306.015625 22.058594 307.792969 20.285156 307.792969 18.097656 L 307.792969 9.113281 C 307.792969 6.925781 306.015625 5.148438 303.828125 5.148438 Z M 303.828125 5.148438 "/> | |
| 194 | +<g clip-path="url(#clip-0)"> | |
| 195 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.955679 8.506047 L -147.955865 8.506047 C -150.15633 8.506047 -151.940279 6.718169 -151.940279 4.517703 L -151.940279 -4.519924 C -151.940279 -6.720389 -150.15633 -8.504338 -147.955865 -8.504338 L 147.955679 -8.504338 C 150.156144 -8.504338 151.944023 -6.720389 151.944023 -4.519924 L 151.944023 4.517703 C 151.944023 6.718169 150.156144 8.506047 147.955679 8.506047 Z M 147.955679 8.506047 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 196 | +</g> | |
| 197 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 198 | +<use xlink:href="#glyph-0-0" x="22.106251" y="16.926673"/> | |
| 199 | +<use xlink:href="#glyph-0-1" x="25.650457" y="16.926673"/> | |
| 200 | +</g> | |
| 201 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 202 | +<use xlink:href="#glyph-1-0" x="30.451474" y="16.926673"/> | |
| 203 | +<use xlink:href="#glyph-1-1" x="32.906445" y="16.926673"/> | |
| 204 | +<use xlink:href="#glyph-1-2" x="37.883415" y="16.926673"/> | |
| 205 | +<use xlink:href="#glyph-1-3" x="42.525236" y="16.926673"/> | |
| 206 | +<use xlink:href="#glyph-1-4" x="47.326253" y="16.926673"/> | |
| 207 | +<use xlink:href="#glyph-1-5" x="50.560446" y="16.926673"/> | |
| 208 | +<use xlink:href="#glyph-1-6" x="52.906492" y="16.926673"/> | |
| 209 | +<use xlink:href="#glyph-1-2" x="57.916978" y="16.926673"/> | |
| 210 | +<use xlink:href="#glyph-1-7" x="62.558799" y="16.926673"/> | |
| 211 | +</g> | |
| 212 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 213 | +<use xlink:href="#glyph-0-2" x="68.72555" y="16.926673"/> | |
| 214 | +</g> | |
| 215 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 216 | +<use xlink:href="#glyph-0-3" x="71.147005" y="16.926673"/> | |
| 217 | +<use xlink:href="#glyph-0-4" x="75.705039" y="16.926673"/> | |
| 218 | +</g> | |
| 219 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 220 | +<use xlink:href="#glyph-0-5" x="82.408029" y="16.926673"/> | |
| 221 | +<use xlink:href="#glyph-0-6" x="87.351484" y="16.926673"/> | |
| 222 | +<use xlink:href="#glyph-0-7" x="92.244667" y="16.926673"/> | |
| 223 | +<use xlink:href="#glyph-0-7" x="97.095957" y="16.926673"/> | |
| 224 | +<use xlink:href="#glyph-0-8" x="101.947246" y="16.926673"/> | |
| 225 | +<use xlink:href="#glyph-0-3" x="106.50528" y="16.926673"/> | |
| 226 | +<use xlink:href="#glyph-0-4" x="111.063313" y="16.926673"/> | |
| 227 | +</g> | |
| 228 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 229 | +<use xlink:href="#glyph-0-7" x="117.766304" y="16.926673"/> | |
| 230 | +<use xlink:href="#glyph-0-8" x="122.617593" y="16.926673"/> | |
| 231 | +<use xlink:href="#glyph-0-9" x="127.175626" y="16.926673"/> | |
| 232 | +</g> | |
| 233 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 234 | +<use xlink:href="#glyph-0-3" x="131.054982" y="16.926673"/> | |
| 235 | +<use xlink:href="#glyph-0-4" x="135.613016" y="16.926673"/> | |
| 236 | +</g> | |
| 237 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 238 | +<use xlink:href="#glyph-0-4" x="139.442099" y="16.926673"/> | |
| 239 | +<use xlink:href="#glyph-0-10" x="143.35497" y="16.926673"/> | |
| 240 | +<use xlink:href="#glyph-0-11" x="147.871109" y="16.926673"/> | |
| 241 | +<use xlink:href="#glyph-0-12" x="150.183641" y="16.926673"/> | |
| 242 | +</g> | |
| 243 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 244 | +<use xlink:href="#glyph-0-3" x="153.225123" y="16.926673"/> | |
| 245 | +<use xlink:href="#glyph-0-4" x="157.783157" y="16.926673"/> | |
| 246 | +</g> | |
| 247 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 248 | +<use xlink:href="#glyph-0-4" x="164.486147" y="16.926673"/> | |
| 249 | +<use xlink:href="#glyph-0-3" x="168.399018" y="16.926673"/> | |
| 250 | +<use xlink:href="#glyph-0-2" x="172.957051" y="16.926673"/> | |
| 251 | +</g> | |
| 252 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 253 | +<use xlink:href="#glyph-0-6" x="175.378506" y="16.926673"/> | |
| 254 | +<use xlink:href="#glyph-0-7" x="180.271689" y="16.926673"/> | |
| 255 | +</g> | |
| 256 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 257 | +<use xlink:href="#glyph-0-2" x="187.921477" y="16.926673"/> | |
| 258 | +</g> | |
| 259 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 260 | +<use xlink:href="#glyph-0-3" x="190.342933" y="16.926673"/> | |
| 261 | +</g> | |
| 262 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 263 | +<use xlink:href="#glyph-0-13" x="197.691086" y="16.926673"/> | |
| 264 | +<use xlink:href="#glyph-0-10" x="204.813013" y="16.926673"/> | |
| 265 | +<use xlink:href="#glyph-0-7" x="209.329153" y="16.926673"/> | |
| 266 | +<use xlink:href="#glyph-0-5" x="214.180442" y="16.926673"/> | |
| 267 | +<use xlink:href="#glyph-0-10" x="219.123898" y="16.926673"/> | |
| 268 | +<use xlink:href="#glyph-0-14" x="223.640038" y="16.926673"/> | |
| 269 | +</g> | |
| 270 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 271 | +<use xlink:href="#glyph-0-3" x="229.454882" y="16.926673"/> | |
| 272 | +<use xlink:href="#glyph-0-14" x="234.012915" y="16.926673"/> | |
| 273 | +</g> | |
| 274 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 275 | +<use xlink:href="#glyph-0-2" x="239.836138" y="16.926673"/> | |
| 276 | +</g> | |
| 277 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 278 | +<use xlink:href="#glyph-0-3" x="242.257594" y="16.926673"/> | |
| 279 | +<use xlink:href="#glyph-0-4" x="246.815627" y="16.926673"/> | |
| 280 | +</g> | |
| 281 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 282 | +<use xlink:href="#glyph-0-13" x="253.518617" y="16.926673"/> | |
| 283 | +<use xlink:href="#glyph-0-8" x="260.640545" y="16.926673"/> | |
| 284 | +<use xlink:href="#glyph-0-14" x="265.198578" y="16.926673"/> | |
| 285 | +<use xlink:href="#glyph-0-15" x="268.223303" y="16.926673"/> | |
| 286 | +<use xlink:href="#glyph-0-6" x="273.074592" y="16.926673"/> | |
| 287 | +<use xlink:href="#glyph-0-5" x="277.967775" y="16.926673"/> | |
| 288 | +<use xlink:href="#glyph-0-3" x="282.911231" y="16.926673"/> | |
| 289 | +<use xlink:href="#glyph-0-4" x="287.469264" y="16.926673"/> | |
| 290 | +</g> | |
| 291 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.828125 30.910156 L 9.660156 30.910156 C 7.472656 30.910156 5.699219 32.683594 5.699219 34.871094 L 5.699219 43.855469 C 5.699219 46.042969 7.472656 47.816406 9.660156 47.816406 L 303.828125 47.816406 C 306.015625 47.816406 307.792969 46.042969 307.792969 43.855469 L 307.792969 34.871094 C 307.792969 32.683594 306.015625 30.910156 303.828125 30.910156 Z M 303.828125 30.910156 "/> | |
| 292 | +<g clip-path="url(#clip-1)"> | |
| 293 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.955679 -17.408365 L -147.955865 -17.408365 C -150.15633 -17.408365 -151.940279 -19.192314 -151.940279 -21.39278 L -151.940279 -30.430406 C -151.940279 -32.630872 -150.15633 -34.414821 -147.955865 -34.414821 L 147.955679 -34.414821 C 150.156144 -34.414821 151.944023 -32.630872 151.944023 -30.430406 L 151.944023 -21.39278 C 151.944023 -19.192314 150.156144 -17.408365 147.955679 -17.408365 Z M 147.955679 -17.408365 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 294 | +</g> | |
| 295 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 296 | +<use xlink:href="#glyph-0-16" x="36.328951" y="41.860885"/> | |
| 297 | +<use xlink:href="#glyph-0-1" x="40.484805" y="41.860885"/> | |
| 298 | +</g> | |
| 299 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 300 | +<use xlink:href="#glyph-1-8" x="45.285822" y="41.860885"/> | |
| 301 | +</g> | |
| 302 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 303 | +<use xlink:href="#glyph-1-9" x="50.229278" y="41.860885"/> | |
| 304 | +</g> | |
| 305 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 306 | +<use xlink:href="#glyph-1-10" x="52.701005" y="41.860885"/> | |
| 307 | +<use xlink:href="#glyph-1-3" x="57.275796" y="41.860885"/> | |
| 308 | +<use xlink:href="#glyph-1-5" x="62.076813" y="41.860885"/> | |
| 309 | +<use xlink:href="#glyph-1-6" x="64.42286" y="41.860885"/> | |
| 310 | +<use xlink:href="#glyph-1-2" x="69.433345" y="41.860885"/> | |
| 311 | +<use xlink:href="#glyph-1-7" x="74.075166" y="41.860885"/> | |
| 312 | +</g> | |
| 313 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 314 | +<use xlink:href="#glyph-0-2" x="80.241917" y="41.860885"/> | |
| 315 | +</g> | |
| 316 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 317 | +<use xlink:href="#glyph-0-3" x="82.663373" y="41.860885"/> | |
| 318 | +<use xlink:href="#glyph-0-4" x="87.221406" y="41.860885"/> | |
| 319 | +</g> | |
| 320 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 321 | +<use xlink:href="#glyph-0-4" x="93.924397" y="41.860885"/> | |
| 322 | +<use xlink:href="#glyph-0-6" x="97.837267" y="41.860885"/> | |
| 323 | +<use xlink:href="#glyph-0-17" x="102.73045" y="41.860885"/> | |
| 324 | +<use xlink:href="#glyph-0-12" x="107.548225" y="41.860885"/> | |
| 325 | +</g> | |
| 326 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 327 | +<use xlink:href="#glyph-0-9" x="110.589707" y="41.860885"/> | |
| 328 | +</g> | |
| 329 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 330 | +<use xlink:href="#glyph-0-3" x="114.469062" y="41.860885"/> | |
| 331 | +<use xlink:href="#glyph-0-4" x="119.027096" y="41.860885"/> | |
| 332 | +</g> | |
| 333 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 334 | +<use xlink:href="#glyph-0-18" x="125.730086" y="41.860885"/> | |
| 335 | +</g> | |
| 336 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 337 | +<use xlink:href="#glyph-0-9" x="133.044725" y="41.860885"/> | |
| 338 | +</g> | |
| 339 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 340 | +<use xlink:href="#glyph-0-6" x="136.92408" y="41.860885"/> | |
| 341 | +<use xlink:href="#glyph-0-7" x="141.817263" y="41.860885"/> | |
| 342 | +<use xlink:href="#glyph-0-4" x="146.668553" y="41.860885"/> | |
| 343 | +<use xlink:href="#glyph-0-17" x="150.581423" y="41.860885"/> | |
| 344 | +<use xlink:href="#glyph-0-2" x="155.399198" y="41.860885"/> | |
| 345 | +<use xlink:href="#glyph-0-14" x="157.862547" y="41.860885"/> | |
| 346 | +</g> | |
| 347 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 348 | +<use xlink:href="#glyph-0-3" x="160.76159" y="41.860885"/> | |
| 349 | +<use xlink:href="#glyph-0-12" x="165.319624" y="41.860885"/> | |
| 350 | +</g> | |
| 351 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 352 | +<use xlink:href="#glyph-0-3" x="171.3188" y="41.860885"/> | |
| 353 | +<use xlink:href="#glyph-0-14" x="175.876834" y="41.860885"/> | |
| 354 | +</g> | |
| 355 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 356 | +<use xlink:href="#glyph-0-2" x="181.691678" y="41.860885"/> | |
| 357 | +</g> | |
| 358 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 359 | +<use xlink:href="#glyph-0-10" x="184.113133" y="41.860885"/> | |
| 360 | +</g> | |
| 361 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 362 | +<use xlink:href="#glyph-0-4" x="191.419393" y="41.860885"/> | |
| 363 | +<use xlink:href="#glyph-0-14" x="195.332263" y="41.860885"/> | |
| 364 | +<use xlink:href="#glyph-0-12" x="198.356988" y="41.860885"/> | |
| 365 | +</g> | |
| 366 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 367 | +<use xlink:href="#glyph-0-10" x="201.39847" y="41.860885"/> | |
| 368 | +<use xlink:href="#glyph-0-14" x="205.914609" y="41.860885"/> | |
| 369 | +</g> | |
| 370 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 371 | +<use xlink:href="#glyph-0-8" x="208.813653" y="41.860885"/> | |
| 372 | +<use xlink:href="#glyph-0-19" x="213.371686" y="41.860885"/> | |
| 373 | +<use xlink:href="#glyph-0-11" x="217.72863" y="41.860885"/> | |
| 374 | +<use xlink:href="#glyph-0-3" x="220.041162" y="41.860885"/> | |
| 375 | +</g> | |
| 376 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 377 | +<use xlink:href="#glyph-0-5" x="227.397694" y="41.860885"/> | |
| 378 | +<use xlink:href="#glyph-0-3" x="232.341149" y="41.860885"/> | |
| 379 | +</g> | |
| 380 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 381 | +<use xlink:href="#glyph-0-12" x="239.689303" y="41.860885"/> | |
| 382 | +</g> | |
| 383 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 384 | +<use xlink:href="#glyph-0-3" x="242.730784" y="41.860885"/> | |
| 385 | +<use xlink:href="#glyph-0-9" x="247.288818" y="41.860885"/> | |
| 386 | +<use xlink:href="#glyph-0-15" x="251.293855" y="41.860885"/> | |
| 387 | +<use xlink:href="#glyph-0-3" x="256.145144" y="41.860885"/> | |
| 388 | +<use xlink:href="#glyph-0-12" x="260.703178" y="41.860885"/> | |
| 389 | +</g> | |
| 390 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 391 | +<use xlink:href="#glyph-0-9" x="263.744659" y="41.860885"/> | |
| 392 | +<use xlink:href="#glyph-0-15" x="267.749696" y="41.860885"/> | |
| 393 | +<use xlink:href="#glyph-0-3" x="272.600986" y="41.860885"/> | |
| 394 | +</g> | |
| 395 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.828125 56.667969 L 9.660156 56.667969 C 7.472656 56.667969 5.699219 58.441406 5.699219 60.628906 L 5.699219 78.652344 C 5.699219 80.839844 7.472656 82.613281 9.660156 82.613281 L 303.828125 82.613281 C 306.015625 82.613281 307.792969 80.839844 307.792969 78.652344 L 307.792969 60.628906 C 307.792969 58.441406 306.015625 56.667969 303.828125 56.667969 Z M 303.828125 56.667969 "/> | |
| 396 | +<g clip-path="url(#clip-2)"> | |
| 397 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.955679 -43.318848 L -147.955865 -43.318848 C -150.15633 -43.318848 -151.940279 -45.102797 -151.940279 -47.303262 L -151.940279 -65.433527 C -151.940279 -67.633993 -150.15633 -69.417942 -147.955865 -69.417942 L 147.955679 -69.417942 C 150.156144 -69.417942 151.944023 -67.633993 151.944023 -65.433527 L 151.944023 -47.303262 C 151.944023 -45.102797 150.156144 -43.318848 147.955679 -43.318848 Z M 147.955679 -43.318848 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 398 | +</g> | |
| 399 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 400 | +<use xlink:href="#glyph-0-20" x="74.756188" y="66.827902"/> | |
| 401 | +<use xlink:href="#glyph-0-1" x="78.845012" y="66.827902"/> | |
| 402 | +</g> | |
| 403 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 404 | +<use xlink:href="#glyph-1-11" x="83.646029" y="66.827902"/> | |
| 405 | +</g> | |
| 406 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 407 | +<use xlink:href="#glyph-1-12" x="88.296228" y="66.827902"/> | |
| 408 | +<use xlink:href="#glyph-1-9" x="93.189411" y="66.827902"/> | |
| 409 | +<use xlink:href="#glyph-1-9" x="95.703033" y="66.827902"/> | |
| 410 | +</g> | |
| 411 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 412 | +<use xlink:href="#glyph-1-2" x="98.174761" y="66.827902"/> | |
| 413 | +<use xlink:href="#glyph-1-13" x="102.816581" y="66.827902"/> | |
| 414 | +<use xlink:href="#glyph-1-4" x="106.829997" y="66.827902"/> | |
| 415 | +</g> | |
| 416 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 417 | +<use xlink:href="#glyph-1-2" x="109.913373" y="66.827902"/> | |
| 418 | +<use xlink:href="#glyph-1-7" x="114.555193" y="66.827902"/> | |
| 419 | +</g> | |
| 420 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 421 | +<use xlink:href="#glyph-0-2" x="120.721945" y="66.827902"/> | |
| 422 | +</g> | |
| 423 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 424 | +<use xlink:href="#glyph-0-3" x="123.1434" y="66.827902"/> | |
| 425 | +<use xlink:href="#glyph-0-4" x="127.701433" y="66.827902"/> | |
| 426 | +</g> | |
| 427 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 428 | +<use xlink:href="#glyph-0-5" x="134.404424" y="66.827902"/> | |
| 429 | +<use xlink:href="#glyph-0-6" x="139.347879" y="66.827902"/> | |
| 430 | +<use xlink:href="#glyph-0-7" x="144.241062" y="66.827902"/> | |
| 431 | +<use xlink:href="#glyph-0-7" x="149.092352" y="66.827902"/> | |
| 432 | +<use xlink:href="#glyph-0-8" x="153.943641" y="66.827902"/> | |
| 433 | +<use xlink:href="#glyph-0-3" x="158.501675" y="66.827902"/> | |
| 434 | +<use xlink:href="#glyph-0-4" x="163.059708" y="66.827902"/> | |
| 435 | +</g> | |
| 436 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 437 | +<use xlink:href="#glyph-0-21" x="169.762698" y="66.827902"/> | |
| 438 | +<use xlink:href="#glyph-0-12" x="174.672639" y="66.827902"/> | |
| 439 | +<use xlink:href="#glyph-0-11" x="177.881696" y="66.827902"/> | |
| 440 | +<use xlink:href="#glyph-0-13" x="180.194227" y="66.827902"/> | |
| 441 | +<use xlink:href="#glyph-0-10" x="187.316155" y="66.827902"/> | |
| 442 | +<use xlink:href="#glyph-0-11" x="191.832295" y="66.827902"/> | |
| 443 | +<use xlink:href="#glyph-0-12" x="194.144826" y="66.827902"/> | |
| 444 | +</g> | |
| 445 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 446 | +<use xlink:href="#glyph-0-3" x="197.186308" y="66.827902"/> | |
| 447 | +<use xlink:href="#glyph-0-4" x="201.744342" y="66.827902"/> | |
| 448 | +</g> | |
| 449 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 450 | +<use xlink:href="#glyph-0-22" x="208.447332" y="66.827902"/> | |
| 451 | +<use xlink:href="#glyph-0-11" x="211.162043" y="66.827902"/> | |
| 452 | +<use xlink:href="#glyph-0-7" x="213.474575" y="66.827902"/> | |
| 453 | +<use xlink:href="#glyph-0-4" x="218.325864" y="66.827902"/> | |
| 454 | +<use xlink:href="#glyph-0-21" x="222.238735" y="66.827902"/> | |
| 455 | +<use xlink:href="#glyph-0-3" x="227.148675" y="66.827902"/> | |
| 456 | +<use xlink:href="#glyph-0-9" x="231.706709" y="66.827902"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-0-23" x="235.35146" y="66.827902"/> | |
| 460 | +</g> | |
| 461 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 462 | +<use xlink:href="#glyph-0-14" x="76.998895" y="77.722329"/> | |
| 463 | +<use xlink:href="#glyph-0-11" x="80.023619" y="77.722329"/> | |
| 464 | +<use xlink:href="#glyph-0-6" x="82.336151" y="77.722329"/> | |
| 465 | +<use xlink:href="#glyph-0-7" x="87.229334" y="77.722329"/> | |
| 466 | +<use xlink:href="#glyph-0-24" x="92.080623" y="77.722329"/> | |
| 467 | +</g> | |
| 468 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 469 | +<use xlink:href="#glyph-0-3" x="96.88164" y="77.722329"/> | |
| 470 | +<use xlink:href="#glyph-0-7" x="101.439674" y="77.722329"/> | |
| 471 | +<use xlink:href="#glyph-0-14" x="106.290963" y="77.722329"/> | |
| 472 | +<use xlink:href="#glyph-0-12" x="109.315688" y="77.722329"/> | |
| 473 | +</g> | |
| 474 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 475 | +<use xlink:href="#glyph-0-3" x="112.357169" y="77.722329"/> | |
| 476 | +</g> | |
| 477 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 478 | +<use xlink:href="#glyph-0-25" x="116.873309" y="77.722329"/> | |
| 479 | +<use xlink:href="#glyph-0-17" x="120.995648" y="77.722329"/> | |
| 480 | +<use xlink:href="#glyph-0-3" x="125.813423" y="77.722329"/> | |
| 481 | +<use xlink:href="#glyph-0-4" x="130.371456" y="77.722329"/> | |
| 482 | +<use xlink:href="#glyph-0-26" x="134.284327" y="77.722329"/> | |
| 483 | +</g> | |
| 484 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 485 | +<use xlink:href="#glyph-0-3" x="139.797537" y="77.722329"/> | |
| 486 | +<use xlink:href="#glyph-0-14" x="144.35557" y="77.722329"/> | |
| 487 | +</g> | |
| 488 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 489 | +<use xlink:href="#glyph-0-4" x="150.170414" y="77.722329"/> | |
| 490 | +<use xlink:href="#glyph-0-3" x="154.083285" y="77.722329"/> | |
| 491 | +<use xlink:href="#glyph-0-9" x="158.641318" y="77.722329"/> | |
| 492 | +</g> | |
| 493 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 494 | +<use xlink:href="#glyph-0-6" x="162.520674" y="77.722329"/> | |
| 495 | +<use xlink:href="#glyph-0-7" x="167.413857" y="77.722329"/> | |
| 496 | +<use xlink:href="#glyph-0-5" x="172.265147" y="77.722329"/> | |
| 497 | +<use xlink:href="#glyph-0-10" x="177.208602" y="77.722329"/> | |
| 498 | +<use xlink:href="#glyph-0-11" x="181.724742" y="77.722329"/> | |
| 499 | +<use xlink:href="#glyph-0-12" x="184.037273" y="77.722329"/> | |
| 500 | +</g> | |
| 501 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 502 | +<use xlink:href="#glyph-0-3" x="187.078755" y="77.722329"/> | |
| 503 | +<use xlink:href="#glyph-0-4" x="191.636789" y="77.722329"/> | |
| 504 | +</g> | |
| 505 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 506 | +<use xlink:href="#glyph-0-22" x="198.339779" y="77.722329"/> | |
| 507 | +<use xlink:href="#glyph-0-12" x="201.05449" y="77.722329"/> | |
| 508 | +</g> | |
| 509 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 510 | +<use xlink:href="#glyph-0-3" x="204.095972" y="77.722329"/> | |
| 511 | +<use xlink:href="#glyph-0-19" x="208.654006" y="77.722329"/> | |
| 512 | +<use xlink:href="#glyph-0-11" x="213.01095" y="77.722329"/> | |
| 513 | +<use xlink:href="#glyph-0-4" x="215.323481" y="77.722329"/> | |
| 514 | +<use xlink:href="#glyph-0-14" x="219.236352" y="77.722329"/> | |
| 515 | +<use xlink:href="#glyph-0-12" x="222.261076" y="77.722329"/> | |
| 516 | +</g> | |
| 517 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 518 | +<use xlink:href="#glyph-0-3" x="225.302558" y="77.722329"/> | |
| 519 | +<use xlink:href="#glyph-0-4" x="229.860592" y="77.722329"/> | |
| 520 | +<use xlink:href="#glyph-0-26" x="233.773463" y="77.722329"/> | |
| 521 | +</g> | |
| 522 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.828125 91.464844 L 9.660156 91.464844 C 7.472656 91.464844 5.699219 93.238281 5.699219 95.425781 L 5.699219 104.410156 C 5.699219 106.601562 7.472656 108.375 9.660156 108.375 L 303.828125 108.375 C 306.015625 108.375 307.792969 106.601562 307.792969 104.410156 L 307.792969 95.425781 C 307.792969 93.238281 306.015625 91.464844 303.828125 91.464844 Z M 303.828125 91.464844 "/> | |
| 523 | +<g clip-path="url(#clip-3)"> | |
| 524 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.955679 -78.321969 L -147.955865 -78.321969 C -150.15633 -78.321969 -151.940279 -80.105918 -151.940279 -82.306383 L -151.940279 -91.34401 C -151.940279 -93.548405 -150.15633 -95.332354 -147.955865 -95.332354 L 147.955679 -95.332354 C 150.156144 -95.332354 151.944023 -93.548405 151.944023 -91.34401 L 151.944023 -82.306383 C 151.944023 -80.105918 150.156144 -78.321969 147.955679 -78.321969 Z M 147.955679 -78.321969 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 525 | +</g> | |
| 526 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 527 | +<use xlink:href="#glyph-0-27" x="37.282301" y="103.018396"/> | |
| 528 | +</g> | |
| 529 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 530 | +<use xlink:href="#glyph-0-1" x="41.530321" y="103.018396"/> | |
| 531 | +</g> | |
| 532 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 533 | +<use xlink:href="#glyph-1-14" x="46.331338" y="103.018396"/> | |
| 534 | +</g> | |
| 535 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 536 | +<use xlink:href="#glyph-1-15" x="50.89775" y="103.018396"/> | |
| 537 | +<use xlink:href="#glyph-1-7" x="55.539571" y="103.018396"/> | |
| 538 | +<use xlink:href="#glyph-1-5" x="58.891066" y="103.018396"/> | |
| 539 | +<use xlink:href="#glyph-1-6" x="61.237113" y="103.018396"/> | |
| 540 | +<use xlink:href="#glyph-1-2" x="66.247598" y="103.018396"/> | |
| 541 | +<use xlink:href="#glyph-1-7" x="70.889419" y="103.018396"/> | |
| 542 | +</g> | |
| 543 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 544 | +<use xlink:href="#glyph-0-2" x="77.05617" y="103.018396"/> | |
| 545 | +</g> | |
| 546 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 547 | +<use xlink:href="#glyph-0-28" x="79.393838" y="103.018396"/> | |
| 548 | +</g> | |
| 549 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 550 | +<use xlink:href="#glyph-0-3" x="81.220403" y="103.018396"/> | |
| 551 | +</g> | |
| 552 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 553 | +<use xlink:href="#glyph-0-29" x="85.736543" y="103.018396"/> | |
| 554 | +</g> | |
| 555 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 556 | +<use xlink:href="#glyph-0-10" x="89.758337" y="103.018396"/> | |
| 557 | +<use xlink:href="#glyph-0-9" x="94.274477" y="103.018396"/> | |
| 558 | +<use xlink:href="#glyph-0-14" x="98.279514" y="103.018396"/> | |
| 559 | +<use xlink:href="#glyph-0-11" x="101.304238" y="103.018396"/> | |
| 560 | +<use xlink:href="#glyph-0-14" x="103.61677" y="103.018396"/> | |
| 561 | +<use xlink:href="#glyph-0-17" x="106.641494" y="103.018396"/> | |
| 562 | +<use xlink:href="#glyph-0-5" x="111.459269" y="103.018396"/> | |
| 563 | +<use xlink:href="#glyph-0-3" x="116.402724" y="103.018396"/> | |
| 564 | +</g> | |
| 565 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 566 | +<use xlink:href="#glyph-0-3" x="123.750877" y="103.018396"/> | |
| 567 | +<use xlink:href="#glyph-0-14" x="128.308911" y="103.018396"/> | |
| 568 | +</g> | |
| 569 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 570 | +<use xlink:href="#glyph-0-2" x="134.123755" y="103.018396"/> | |
| 571 | +</g> | |
| 572 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 573 | +<use xlink:href="#glyph-0-10" x="136.54521" y="103.018396"/> | |
| 574 | +</g> | |
| 575 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 576 | +<use xlink:href="#glyph-0-9" x="143.859849" y="103.018396"/> | |
| 577 | +</g> | |
| 578 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 579 | +<use xlink:href="#glyph-0-6" x="147.739204" y="103.018396"/> | |
| 580 | +<use xlink:href="#glyph-0-15" x="152.632387" y="103.018396"/> | |
| 581 | +<use xlink:href="#glyph-0-8" x="157.483677" y="103.018396"/> | |
| 582 | +<use xlink:href="#glyph-0-12" x="162.04171" y="103.018396"/> | |
| 583 | +</g> | |
| 584 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 585 | +<use xlink:href="#glyph-0-3" x="165.083192" y="103.018396"/> | |
| 586 | +<use xlink:href="#glyph-0-7" x="169.641226" y="103.018396"/> | |
| 587 | +<use xlink:href="#glyph-0-9" x="174.492515" y="103.018396"/> | |
| 588 | +</g> | |
| 589 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 590 | +<use xlink:href="#glyph-0-3" x="178.371871" y="103.018396"/> | |
| 591 | +</g> | |
| 592 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 593 | +<use xlink:href="#glyph-0-5" x="185.720024" y="103.018396"/> | |
| 594 | +<use xlink:href="#glyph-0-3" x="190.663479" y="103.018396"/> | |
| 595 | +<use xlink:href="#glyph-0-4" x="195.221513" y="103.018396"/> | |
| 596 | +</g> | |
| 597 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 598 | +<use xlink:href="#glyph-0-5" x="201.924503" y="103.018396"/> | |
| 599 | +<use xlink:href="#glyph-0-6" x="206.867959" y="103.018396"/> | |
| 600 | +<use xlink:href="#glyph-0-7" x="211.761142" y="103.018396"/> | |
| 601 | +<use xlink:href="#glyph-0-7" x="216.612431" y="103.018396"/> | |
| 602 | +<use xlink:href="#glyph-0-8" x="221.463721" y="103.018396"/> | |
| 603 | +<use xlink:href="#glyph-0-3" x="226.021754" y="103.018396"/> | |
| 604 | +<use xlink:href="#glyph-0-4" x="230.579788" y="103.018396"/> | |
| 605 | +</g> | |
| 606 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 607 | +<use xlink:href="#glyph-0-12" x="237.282778" y="103.018396"/> | |
| 608 | +</g> | |
| 609 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 610 | +<use xlink:href="#glyph-0-3" x="240.32426" y="103.018396"/> | |
| 611 | +<use xlink:href="#glyph-0-9" x="244.882293" y="103.018396"/> | |
| 612 | +</g> | |
| 613 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 614 | +<use xlink:href="#glyph-0-17" x="248.803543" y="103.018396"/> | |
| 615 | +<use xlink:href="#glyph-0-3" x="253.621317" y="103.018396"/> | |
| 616 | +<use xlink:href="#glyph-0-11" x="258.179351" y="103.018396"/> | |
| 617 | +<use xlink:href="#glyph-0-2" x="260.491882" y="103.018396"/> | |
| 618 | +<use xlink:href="#glyph-0-2" x="262.955231" y="103.018396"/> | |
| 619 | +<use xlink:href="#glyph-0-11" x="265.41858" y="103.018396"/> | |
| 620 | +<use xlink:href="#glyph-0-3" x="267.731112" y="103.018396"/> | |
| 621 | +<use xlink:href="#glyph-0-4" x="272.289146" y="103.018396"/> | |
| 622 | +</g> | |
| 623 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.828125 117.222656 L 9.660156 117.222656 C 7.472656 117.222656 5.699219 118.996094 5.699219 121.183594 L 5.699219 130.171875 C 5.699219 132.359375 7.472656 134.132812 9.660156 134.132812 L 303.828125 134.132812 C 306.015625 134.132812 307.792969 132.359375 307.792969 130.171875 L 307.792969 121.183594 C 307.792969 118.996094 306.015625 117.222656 303.828125 117.222656 Z M 303.828125 117.222656 "/> | |
| 624 | +<g clip-path="url(#clip-4)"> | |
| 625 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.955679 -104.232451 L -147.955865 -104.232451 C -150.15633 -104.232451 -151.940279 -106.0164 -151.940279 -108.216866 L -151.940279 -117.258422 C -151.940279 -119.458887 -150.15633 -121.242836 -147.955865 -121.242836 L 147.955679 -121.242836 C 150.156144 -121.242836 151.944023 -119.458887 151.944023 -117.258422 L 151.944023 -108.216866 C 151.944023 -106.0164 150.156144 -104.232451 147.955679 -104.232451 Z M 147.955679 -104.232451 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 626 | +</g> | |
| 627 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 628 | +<use xlink:href="#glyph-0-30" x="39.582666" y="128.141488"/> | |
| 629 | +<use xlink:href="#glyph-0-1" x="43.688248" y="128.141488"/> | |
| 630 | +</g> | |
| 631 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 632 | +<use xlink:href="#glyph-1-16" x="48.489265" y="128.141488"/> | |
| 633 | +<use xlink:href="#glyph-1-7" x="54.278973" y="128.141488"/> | |
| 634 | +</g> | |
| 635 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 636 | +<use xlink:href="#glyph-1-17" x="57.529923" y="128.141488"/> | |
| 637 | +</g> | |
| 638 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 639 | +<use xlink:href="#glyph-1-10" x="62.046063" y="128.141488"/> | |
| 640 | +<use xlink:href="#glyph-1-3" x="66.620854" y="128.141488"/> | |
| 641 | +<use xlink:href="#glyph-1-5" x="71.421871" y="128.141488"/> | |
| 642 | +<use xlink:href="#glyph-1-18" x="73.767917" y="128.141488"/> | |
| 643 | +<use xlink:href="#glyph-1-2" x="77.789712" y="128.141488"/> | |
| 644 | +<use xlink:href="#glyph-1-7" x="82.431532" y="128.141488"/> | |
| 645 | +</g> | |
| 646 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 647 | +<use xlink:href="#glyph-0-3" x="88.598284" y="128.141488"/> | |
| 648 | +<use xlink:href="#glyph-0-14" x="93.156317" y="128.141488"/> | |
| 649 | +</g> | |
| 650 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 651 | +<use xlink:href="#glyph-0-9" x="98.971161" y="128.141488"/> | |
| 652 | +<use xlink:href="#glyph-0-2" x="102.976198" y="128.141488"/> | |
| 653 | +</g> | |
| 654 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 655 | +<use xlink:href="#glyph-0-10" x="105.397653" y="128.141488"/> | |
| 656 | +<use xlink:href="#glyph-0-4" x="109.913793" y="128.141488"/> | |
| 657 | +</g> | |
| 658 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 659 | +<use xlink:href="#glyph-0-4" x="113.742877" y="128.141488"/> | |
| 660 | +<use xlink:href="#glyph-0-3" x="117.655747" y="128.141488"/> | |
| 661 | +<use xlink:href="#glyph-0-12" x="122.213781" y="128.141488"/> | |
| 662 | +</g> | |
| 663 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 664 | +<use xlink:href="#glyph-0-2" x="128.212957" y="128.141488"/> | |
| 665 | +</g> | |
| 666 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 667 | +<use xlink:href="#glyph-0-3" x="130.634413" y="128.141488"/> | |
| 668 | +<use xlink:href="#glyph-0-4" x="135.192446" y="128.141488"/> | |
| 669 | +</g> | |
| 670 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 671 | +<use xlink:href="#glyph-0-5" x="141.895436" y="128.141488"/> | |
| 672 | +<use xlink:href="#glyph-0-6" x="146.838892" y="128.141488"/> | |
| 673 | +<use xlink:href="#glyph-0-7" x="151.732075" y="128.141488"/> | |
| 674 | +<use xlink:href="#glyph-0-7" x="156.583364" y="128.141488"/> | |
| 675 | +<use xlink:href="#glyph-0-8" x="161.434654" y="128.141488"/> | |
| 676 | +<use xlink:href="#glyph-0-3" x="165.992687" y="128.141488"/> | |
| 677 | +<use xlink:href="#glyph-0-4" x="170.550721" y="128.141488"/> | |
| 678 | +</g> | |
| 679 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 680 | +<use xlink:href="#glyph-0-5" x="177.26209" y="128.141488"/> | |
| 681 | +<use xlink:href="#glyph-0-3" x="182.205545" y="128.141488"/> | |
| 682 | +</g> | |
| 683 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 684 | +<use xlink:href="#glyph-0-13" x="189.553698" y="128.141488"/> | |
| 685 | +<use xlink:href="#glyph-0-10" x="196.675626" y="128.141488"/> | |
| 686 | +<use xlink:href="#glyph-0-7" x="201.191766" y="128.141488"/> | |
| 687 | +<use xlink:href="#glyph-0-11" x="206.043055" y="128.141488"/> | |
| 688 | +<use xlink:href="#glyph-0-31" x="208.355587" y="128.141488"/> | |
| 689 | +<use xlink:href="#glyph-0-12" x="212.91362" y="128.141488"/> | |
| 690 | +</g> | |
| 691 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 692 | +<use xlink:href="#glyph-0-3" x="215.955102" y="128.141488"/> | |
| 693 | +</g> | |
| 694 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 695 | +<use xlink:href="#glyph-0-4" x="223.303255" y="128.141488"/> | |
| 696 | +</g> | |
| 697 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 698 | +<use xlink:href="#glyph-0-32" x="227.174232" y="128.141488"/> | |
| 699 | +</g> | |
| 700 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 701 | +<use xlink:href="#glyph-0-4" x="231.23792" y="128.141488"/> | |
| 702 | +<use xlink:href="#glyph-0-14" x="235.150791" y="128.141488"/> | |
| 703 | +</g> | |
| 704 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 705 | +<use xlink:href="#glyph-0-8" x="238.049834" y="128.141488"/> | |
| 706 | +<use xlink:href="#glyph-0-13" x="242.607868" y="128.141488"/> | |
| 707 | +<use xlink:href="#glyph-0-10" x="249.729795" y="128.141488"/> | |
| 708 | +<use xlink:href="#glyph-0-14" x="254.245935" y="128.141488"/> | |
| 709 | +<use xlink:href="#glyph-0-11" x="257.270659" y="128.141488"/> | |
| 710 | +<use xlink:href="#glyph-0-33" x="259.583191" y="128.141488"/> | |
| 711 | +<use xlink:href="#glyph-0-17" x="264.526647" y="128.141488"/> | |
| 712 | +<use xlink:href="#glyph-0-3" x="269.344421" y="128.141488"/> | |
| 713 | +</g> | |
| 714 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.828125 142.980469 L 9.660156 142.980469 C 7.472656 142.980469 5.699219 144.753906 5.699219 146.945312 L 5.699219 155.929688 C 5.699219 158.117188 7.472656 159.890625 9.660156 159.890625 L 303.828125 159.890625 C 306.015625 159.890625 307.792969 158.117188 307.792969 155.929688 L 307.792969 146.945312 C 307.792969 144.753906 306.015625 142.980469 303.828125 142.980469 Z M 303.828125 142.980469 "/> | |
| 715 | +<g clip-path="url(#clip-5)"> | |
| 716 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.955679 -130.142934 L -147.955865 -130.142934 C -150.15633 -130.142934 -151.940279 -131.926883 -151.940279 -134.131278 L -151.940279 -143.168905 C -151.940279 -145.36937 -150.15633 -147.153319 -147.955865 -147.153319 L 147.955679 -147.153319 C 150.156144 -147.153319 151.944023 -145.36937 151.944023 -143.168905 L 151.944023 -134.131278 C 151.944023 -131.926883 150.156144 -130.142934 147.955679 -130.142934 Z M 147.955679 -130.142934 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 717 | +</g> | |
| 718 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 719 | +<use xlink:href="#glyph-0-34" x="30.598914" y="153.805374"/> | |
| 720 | +</g> | |
| 721 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 722 | +<use xlink:href="#glyph-0-1" x="35.081539" y="153.805374"/> | |
| 723 | +</g> | |
| 724 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 725 | +<use xlink:href="#glyph-1-19" x="39.882556" y="153.805374"/> | |
| 726 | +<use xlink:href="#glyph-1-3" x="44.826011" y="153.805374"/> | |
| 727 | +<use xlink:href="#glyph-1-10" x="49.627028" y="153.805374"/> | |
| 728 | +</g> | |
| 729 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 730 | +<use xlink:href="#glyph-1-9" x="54.134789" y="153.805374"/> | |
| 731 | +</g> | |
| 732 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 733 | +<use xlink:href="#glyph-1-20" x="56.564623" y="153.805374"/> | |
| 734 | +</g> | |
| 735 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 736 | +<use xlink:href="#glyph-1-18" x="60.829401" y="153.805374"/> | |
| 737 | +<use xlink:href="#glyph-1-2" x="64.851195" y="153.805374"/> | |
| 738 | +<use xlink:href="#glyph-1-7" x="69.493016" y="153.805374"/> | |
| 739 | +</g> | |
| 740 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 741 | +<use xlink:href="#glyph-0-2" x="75.659767" y="153.805374"/> | |
| 742 | +</g> | |
| 743 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 744 | +<use xlink:href="#glyph-0-3" x="78.081223" y="153.805374"/> | |
| 745 | +<use xlink:href="#glyph-0-4" x="82.639256" y="153.805374"/> | |
| 746 | +</g> | |
| 747 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 748 | +<use xlink:href="#glyph-0-5" x="89.342247" y="153.805374"/> | |
| 749 | +<use xlink:href="#glyph-0-6" x="94.285702" y="153.805374"/> | |
| 750 | +<use xlink:href="#glyph-0-7" x="99.178885" y="153.805374"/> | |
| 751 | +<use xlink:href="#glyph-0-7" x="104.030174" y="153.805374"/> | |
| 752 | +<use xlink:href="#glyph-0-8" x="108.881464" y="153.805374"/> | |
| 753 | +<use xlink:href="#glyph-0-3" x="113.439497" y="153.805374"/> | |
| 754 | +<use xlink:href="#glyph-0-4" x="117.997531" y="153.805374"/> | |
| 755 | +</g> | |
| 756 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 757 | +<use xlink:href="#glyph-0-5" x="124.700521" y="153.805374"/> | |
| 758 | +<use xlink:href="#glyph-0-10" x="129.643977" y="153.805374"/> | |
| 759 | +<use xlink:href="#glyph-0-7" x="134.160116" y="153.805374"/> | |
| 760 | +<use xlink:href="#glyph-0-4" x="139.011406" y="153.805374"/> | |
| 761 | +</g> | |
| 762 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 763 | +<use xlink:href="#glyph-0-2" x="145.722775" y="153.805374"/> | |
| 764 | +</g> | |
| 765 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 766 | +<use xlink:href="#glyph-0-3" x="148.14423" y="153.805374"/> | |
| 767 | +</g> | |
| 768 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 769 | +<use xlink:href="#glyph-0-9" x="155.492383" y="153.805374"/> | |
| 770 | +</g> | |
| 771 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 772 | +<use xlink:href="#glyph-0-10" x="159.455527" y="153.805374"/> | |
| 773 | +<use xlink:href="#glyph-0-5" x="163.971666" y="153.805374"/> | |
| 774 | +<use xlink:href="#glyph-0-12" x="168.915122" y="153.805374"/> | |
| 775 | +</g> | |
| 776 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 777 | +<use xlink:href="#glyph-0-3" x="171.956604" y="153.805374"/> | |
| 778 | +</g> | |
| 779 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 780 | +<use xlink:href="#glyph-0-5" x="179.304757" y="153.805374"/> | |
| 781 | +<use xlink:href="#glyph-0-3" x="184.248212" y="153.805374"/> | |
| 782 | +<use xlink:href="#glyph-0-4" x="188.806246" y="153.805374"/> | |
| 783 | +</g> | |
| 784 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 785 | +<use xlink:href="#glyph-0-13" x="195.509236" y="153.805374"/> | |
| 786 | +<use xlink:href="#glyph-0-8" x="202.631164" y="153.805374"/> | |
| 787 | +<use xlink:href="#glyph-0-14" x="207.189197" y="153.805374"/> | |
| 788 | +<use xlink:href="#glyph-0-15" x="210.213922" y="153.805374"/> | |
| 789 | +<use xlink:href="#glyph-0-6" x="215.065211" y="153.805374"/> | |
| 790 | +<use xlink:href="#glyph-0-5" x="219.958394" y="153.805374"/> | |
| 791 | +<use xlink:href="#glyph-0-3" x="224.901849" y="153.805374"/> | |
| 792 | +<use xlink:href="#glyph-0-4" x="229.459883" y="153.805374"/> | |
| 793 | +</g> | |
| 794 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 795 | +<use xlink:href="#glyph-0-5" x="236.171252" y="153.805374"/> | |
| 796 | +<use xlink:href="#glyph-0-28" x="241.114708" y="153.805374"/> | |
| 797 | +</g> | |
| 798 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 799 | +<use xlink:href="#glyph-0-8" x="242.941272" y="153.805374"/> | |
| 800 | +</g> | |
| 801 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 802 | +<use xlink:href="#glyph-0-25" x="247.457412" y="153.805374"/> | |
| 803 | +</g> | |
| 804 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 805 | +<use xlink:href="#glyph-0-10" x="251.537858" y="153.805374"/> | |
| 806 | +</g> | |
| 807 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 808 | +<use xlink:href="#glyph-0-2" x="256.012104" y="153.805374"/> | |
| 809 | +<use xlink:href="#glyph-0-17" x="258.475453" y="153.805374"/> | |
| 810 | +<use xlink:href="#glyph-0-10" x="263.293227" y="153.805374"/> | |
| 811 | +<use xlink:href="#glyph-0-14" x="267.809367" y="153.805374"/> | |
| 812 | +<use xlink:href="#glyph-0-11" x="270.834091" y="153.805374"/> | |
| 813 | +<use xlink:href="#glyph-0-6" x="273.146623" y="153.805374"/> | |
| 814 | +<use xlink:href="#glyph-0-7" x="278.039806" y="153.805374"/> | |
| 815 | +</g> | |
| 816 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00187163 -8.704738 L 0.00187163 -16.410297 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 817 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552006 3.110029 C -2.084407 1.243563 -1.047045 0.363377 -0.00182358 0.00187163 C -1.047045 -0.363563 -2.084407 -1.243749 -2.552006 -3.110215 " transform="matrix(0, 0.994108, 0.994108, 0, 156.744233, 30.314313)"/> | |
| 818 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00187163 -34.61522 L 0.00187163 -42.320779 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 819 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552393 3.110029 C -2.084794 1.243563 -1.047432 0.363377 0.00171847 0.00187163 C -1.047432 -0.363563 -2.084794 -1.243749 -2.552393 -3.110215 " transform="matrix(0, 0.994108, 0.994108, 0, 156.744233, 56.07251)"/> | |
| 820 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00187163 -69.618341 L 0.00187163 -77.32783 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 821 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550203 3.110029 C -2.082604 1.243563 -1.045242 0.363377 -0.000020596 0.00187163 C -1.045242 -0.363563 -2.082604 -1.243749 -2.550203 -3.110215 " transform="matrix(0, 0.994108, 0.994108, 0, 156.744233, 90.871114)"/> | |
| 822 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00187163 -95.528824 L 0.00187163 -103.238312 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 823 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.55059 3.110029 C -2.082991 1.243563 -1.045629 0.363377 -0.000407947 0.00187163 C -1.045629 -0.363563 -2.082991 -1.243749 -2.55059 -3.110215 " transform="matrix(0, 0.994108, 0.994108, 0, 156.744233, 116.629312)"/> | |
| 824 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00187163 -121.439307 L 0.00187163 -129.148795 " transform="matrix(0.994108, 0, 0, -0.994108, 156.744233, 13.604365)"/> | |
| 825 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550978 3.110029 C -2.083379 1.243563 -1.046016 0.363377 -0.000795298 0.00187163 C -1.046016 -0.363563 -2.083379 -1.243749 -2.550978 -3.110215 " transform="matrix(0, 0.994108, 0.994108, 0, 156.744233, 142.387509)"/> | |
| 826 | +</svg> | |
added
dist/assets/fig/6d1dc0137257549a.svg
+227 −0
@@ -0,0 +1,227 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="284.909pt" height="164.613pt" viewBox="0 0 284.909 164.613"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 7.984375 -4.265625 C 7.984375 -5.671875 7.140625 -6.78125 5.65625 -6.78125 L 2.3125 -6.78125 C 2.125 -6.78125 2.015625 -6.78125 2.015625 -6.59375 C 2.015625 -6.484375 2.109375 -6.484375 2.3125 -6.484375 C 2.4375 -6.484375 2.609375 -6.46875 2.734375 -6.453125 C 2.890625 -6.4375 2.953125 -6.40625 2.953125 -6.296875 C 2.953125 -6.265625 2.9375 -6.234375 2.90625 -6.109375 L 1.578125 -0.78125 C 1.484375 -0.390625 1.453125 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.484375 0 0.671875 0 L 3.96875 0 C 6.03125 0 7.984375 -2.09375 7.984375 -4.265625 Z M 7.125 -4.640625 C 7.125 -4.15625 6.921875 -2.53125 6.078125 -1.4375 C 5.796875 -1.0625 5.015625 -0.3125 3.78125 -0.3125 L 2.65625 -0.3125 C 2.53125 -0.3125 2.5 -0.3125 2.4375 -0.3125 C 2.34375 -0.328125 2.3125 -0.34375 2.3125 -0.421875 C 2.3125 -0.453125 2.3125 -0.46875 2.359375 -0.640625 L 3.734375 -6.109375 C 3.8125 -6.453125 3.828125 -6.484375 4.265625 -6.484375 L 5.328125 -6.484375 C 6.296875 -6.484375 7.125 -5.953125 7.125 -4.640625 Z M 7.125 -4.640625 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 7.359375 -4.328125 C 7.359375 -5.9375 6.296875 -7 4.8125 -7 C 2.671875 -7 0.484375 -4.75 0.484375 -2.4375 C 0.484375 -0.78125 1.59375 0.21875 3.03125 0.21875 C 5.140625 0.21875 7.359375 -1.953125 7.359375 -4.328125 Z M 6.46875 -4.71875 C 6.46875 -4 6.203125 -2.453125 5.21875 -1.234375 C 4.734375 -0.625 3.921875 -0.046875 3.09375 -0.046875 C 2.109375 -0.046875 1.40625 -0.84375 1.40625 -2.15625 C 1.40625 -2.59375 1.546875 -4.046875 2.3125 -5.203125 C 3 -6.234375 3.96875 -6.75 4.765625 -6.75 C 5.578125 -6.75 6.46875 -6.203125 6.46875 -4.71875 Z M 6.46875 -4.71875 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 7.078125 -2.453125 C 7.078125 -2.453125 7.078125 -2.5625 6.96875 -2.5625 C 6.875 -2.5625 6.859375 -2.5 6.84375 -2.4375 C 6.1875 -0.96875 5.828125 -0.3125 4.125 -0.3125 L 2.671875 -0.3125 C 2.53125 -0.3125 2.515625 -0.3125 2.453125 -0.3125 C 2.359375 -0.328125 2.328125 -0.34375 2.328125 -0.421875 C 2.328125 -0.453125 2.328125 -0.46875 2.375 -0.640625 L 3.046875 -3.359375 L 4.03125 -3.359375 C 4.875 -3.359375 4.875 -3.15625 4.875 -2.90625 C 4.875 -2.828125 4.875 -2.71875 4.8125 -2.421875 C 4.796875 -2.359375 4.78125 -2.328125 4.78125 -2.3125 C 4.78125 -2.25 4.8125 -2.203125 4.90625 -2.203125 C 4.984375 -2.203125 5.015625 -2.25 5.0625 -2.390625 L 5.625 -4.71875 C 5.625 -4.78125 5.578125 -4.828125 5.5 -4.828125 C 5.421875 -4.828125 5.390625 -4.765625 5.359375 -4.65625 C 5.15625 -3.890625 4.984375 -3.671875 4.0625 -3.671875 L 3.125 -3.671875 L 3.734375 -6.0625 C 3.8125 -6.40625 3.828125 -6.453125 4.265625 -6.453125 L 5.671875 -6.453125 C 6.875 -6.453125 7.171875 -6.15625 7.171875 -5.34375 C 7.171875 -5.109375 7.171875 -5.09375 7.140625 -4.8125 C 7.140625 -4.765625 7.125 -4.6875 7.125 -4.640625 C 7.125 -4.59375 7.15625 -4.515625 7.25 -4.515625 C 7.359375 -4.515625 7.359375 -4.578125 7.390625 -4.765625 L 7.578125 -6.484375 C 7.609375 -6.75 7.5625 -6.75 7.3125 -6.75 L 2.296875 -6.75 C 2.09375 -6.75 2 -6.75 2 -6.5625 C 2 -6.453125 2.09375 -6.453125 2.28125 -6.453125 C 2.640625 -6.453125 2.921875 -6.453125 2.921875 -6.265625 C 2.921875 -6.234375 2.921875 -6.21875 2.875 -6.03125 L 1.5625 -0.78125 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.375 -0.3125 0.375 -0.125 C 0.375 0 0.46875 0 0.65625 0 L 5.8125 0 C 6.046875 0 6.046875 -0.015625 6.125 -0.171875 L 7.03125 -2.3125 C 7.0625 -2.359375 7.078125 -2.453125 7.078125 -2.453125 Z M 7.078125 -2.453125 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 6.453125 0 C 6.453125 -0.0625 6.375 -0.09375 6.34375 -0.09375 C 6.265625 -0.09375 6.234375 -0.046875 6.21875 0.015625 C 5.984375 0.71875 5.40625 0.96875 5.0625 0.96875 C 4.59375 0.96875 4.453125 0.703125 4.359375 -0.0625 C 5.890625 -0.640625 7.359375 -2.421875 7.359375 -4.328125 C 7.359375 -5.9375 6.296875 -7 4.8125 -7 C 2.671875 -7 0.484375 -4.75 0.484375 -2.4375 C 0.484375 -0.78125 1.59375 0.21875 3.03125 0.21875 C 3.28125 0.21875 3.625 0.171875 4 0.0625 C 3.96875 0.6875 3.96875 0.703125 3.96875 0.828125 C 3.96875 1.15625 3.96875 1.921875 4.796875 1.921875 C 5.96875 1.921875 6.453125 0.109375 6.453125 0 Z M 6.484375 -4.65625 C 6.484375 -3.65625 5.96875 -1.328125 4.296875 -0.390625 C 4.25 -0.75 4.15625 -1.46875 3.421875 -1.46875 C 2.90625 -1.46875 2.421875 -0.96875 2.421875 -0.453125 C 2.421875 -0.265625 2.46875 -0.140625 2.46875 -0.140625 C 1.703125 -0.453125 1.359375 -1.21875 1.359375 -2.109375 C 1.359375 -2.796875 1.625 -4.21875 2.375 -5.28125 C 3.09375 -6.296875 4.03125 -6.75 4.765625 -6.75 C 5.75 -6.75 6.484375 -5.984375 6.484375 -4.65625 Z M 4.03125 -0.40625 C 4.03125 -0.265625 4.03125 -0.25 3.921875 -0.203125 C 3.671875 -0.09375 3.375 -0.03125 3.09375 -0.03125 C 2.953125 -0.03125 2.640625 -0.03125 2.640625 -0.453125 C 2.640625 -0.859375 3.015625 -1.25 3.421875 -1.25 C 3.84375 -1.25 4.03125 -1.015625 4.03125 -0.40625 Z M 4.03125 -0.40625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 7.5 -5.28125 C 7.5 -6.046875 6.84375 -6.78125 5.53125 -6.78125 L 2.3125 -6.78125 C 2.125 -6.78125 2.015625 -6.78125 2.015625 -6.59375 C 2.015625 -6.484375 2.109375 -6.484375 2.3125 -6.484375 C 2.4375 -6.484375 2.609375 -6.46875 2.734375 -6.453125 C 2.890625 -6.4375 2.953125 -6.40625 2.953125 -6.296875 C 2.953125 -6.265625 2.9375 -6.234375 2.90625 -6.109375 L 1.578125 -0.78125 C 1.484375 -0.390625 1.453125 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.515625 0 0.546875 0 L 1.8125 -0.03125 L 2.4375 -0.015625 C 2.65625 -0.015625 2.875 0 3.09375 0 C 3.15625 0 3.296875 0 3.296875 -0.203125 C 3.296875 -0.3125 3.203125 -0.3125 3.015625 -0.3125 C 2.640625 -0.3125 2.359375 -0.3125 2.359375 -0.484375 C 2.359375 -0.546875 2.390625 -0.59375 2.390625 -0.65625 L 3.015625 -3.140625 L 4.703125 -3.140625 C 6.109375 -3.140625 7.5 -4.171875 7.5 -5.28125 Z M 6.5625 -5.53125 C 6.5625 -5.140625 6.375 -4.28125 5.984375 -3.921875 C 5.484375 -3.484375 4.890625 -3.40625 4.453125 -3.40625 L 3.046875 -3.40625 L 3.734375 -6.109375 C 3.8125 -6.453125 3.828125 -6.484375 4.265625 -6.484375 L 5.21875 -6.484375 C 6.046875 -6.484375 6.5625 -6.21875 6.5625 -5.53125 Z M 6.5625 -5.53125 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-1-0"> | |
| 21 | +<path d="M 1.984375 -8.03125 C 1.03125 -6.734375 0.171875 -5.5 0.171875 -3.265625 C 0.171875 -1.03125 1.03125 0.1875 1.984375 1.484375 L 2.921875 0.84375 C 2.0625 -0.390625 1.65625 -1.546875 1.65625 -3.265625 C 1.65625 -5 2.0625 -6.140625 2.921875 -7.390625 Z M 1.984375 -8.03125 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-1-1"> | |
| 24 | +<path d="M 3.890625 -6.703125 L 3.3125 -7.796875 L 1.28125 -6.5625 L 1.6875 -5.8125 Z M 4.90625 -2.578125 C 4.90625 -4.1875 4.03125 -5.125 2.609375 -5.125 C 1.109375 -5.125 0.296875 -3.9375 0.296875 -2.453125 C 0.296875 -0.90625 1.140625 0.15625 2.796875 0.15625 C 3.59375 0.15625 4.234375 -0.140625 4.734375 -0.53125 L 4.125 -1.359375 C 3.6875 -1.0625 3.328125 -0.921875 2.9375 -0.921875 C 2.328125 -0.921875 1.90625 -1.15625 1.796875 -2.046875 L 4.875 -2.046875 C 4.890625 -2.203125 4.90625 -2.421875 4.90625 -2.578125 Z M 3.453125 -2.9375 L 1.796875 -2.9375 C 1.875 -3.828125 2.15625 -4.140625 2.65625 -4.140625 C 3.25 -4.140625 3.453125 -3.671875 3.453125 -3 Z M 3.453125 -2.9375 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-1-2"> | |
| 27 | +<path d="M 3.6875 -4.96875 L 3.609375 -4.53125 C 3.265625 -4.921875 2.84375 -5.125 2.34375 -5.125 C 1.09375 -5.125 0.296875 -4.03125 0.296875 -2.5 C 0.296875 -0.890625 0.921875 0.15625 2.1875 0.15625 C 2.796875 0.15625 3.21875 -0.109375 3.5 -0.46875 L 3.5 1.921875 L 4.984375 2.078125 L 4.984375 -4.96875 Z M 2.640625 -0.921875 C 2.171875 -0.921875 1.828125 -1.25 1.828125 -2.484375 C 1.828125 -3.59375 2.203125 -4.046875 2.734375 -4.046875 C 3.0625 -4.046875 3.28125 -3.890625 3.5 -3.625 L 3.5 -1.484375 C 3.265625 -1.109375 3 -0.921875 2.640625 -0.921875 Z M 2.640625 -0.921875 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-1-3"> | |
| 30 | +<path d="M 4.734375 -4.96875 L 3.265625 -4.96875 L 3.265625 -1.515625 C 3.046875 -1.140625 2.765625 -0.9375 2.453125 -0.9375 C 2.15625 -0.9375 1.984375 -1.078125 1.984375 -1.59375 L 1.984375 -4.96875 L 0.5 -4.96875 L 0.5 -1.40625 C 0.5 -0.4375 0.96875 0.15625 1.890625 0.15625 C 2.546875 0.15625 3.03125 -0.109375 3.390625 -0.625 L 3.453125 0 L 4.734375 0 Z M 4.734375 -4.96875 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-1-4"> | |
| 33 | +<path d="M 1.296875 -7.578125 C 0.796875 -7.578125 0.4375 -7.21875 0.4375 -6.734375 C 0.4375 -6.265625 0.796875 -5.890625 1.296875 -5.890625 C 1.828125 -5.890625 2.171875 -6.265625 2.171875 -6.734375 C 2.171875 -7.21875 1.828125 -7.578125 1.296875 -7.578125 Z M 2.046875 -4.96875 L 0.5625 -4.96875 L 0.5625 0 L 2.046875 0 Z M 2.046875 -4.96875 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-1-5"> | |
| 36 | +<path d="M 1.875 0.15625 C 2.234375 0.15625 2.546875 0.078125 2.765625 -0.015625 L 2.484375 -1.0625 C 2.421875 -1.03125 2.34375 -1.015625 2.25 -1.015625 C 2.0625 -1.015625 1.984375 -1.109375 1.984375 -1.3125 L 1.984375 -7.09375 L 0.5 -6.9375 L 0.5 -1.265625 C 0.5 -0.359375 1.015625 0.15625 1.875 0.15625 Z M 1.875 0.15625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-1-6"> | |
| 39 | +<path d="M 3.375 -5.125 C 2.828125 -5.125 2.34375 -4.875 2.046875 -4.453125 L 2.046875 -7.09375 L 0.5625 -6.9375 L 0.5625 0 L 1.875 0 L 1.953125 -0.46875 C 2.25 -0.078125 2.703125 0.15625 3.25 0.15625 C 4.484375 0.15625 5.21875 -0.9375 5.21875 -2.46875 C 5.21875 -4.140625 4.5625 -5.125 3.375 -5.125 Z M 2.828125 -0.921875 C 2.5 -0.921875 2.234375 -1.09375 2.046875 -1.390625 L 2.046875 -3.453125 C 2.265625 -3.828125 2.546875 -4.03125 2.890625 -4.03125 C 3.359375 -4.03125 3.6875 -3.734375 3.6875 -2.46875 C 3.6875 -1.3125 3.328125 -0.921875 2.828125 -0.921875 Z M 2.828125 -0.921875 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-1-7"> | |
| 42 | +<path d="M 3.265625 -5.109375 C 2.6875 -5.109375 2.203125 -4.6875 1.984375 -4 L 1.84375 -4.96875 L 0.5625 -4.96875 L 0.5625 0 L 2.046875 0 L 2.046875 -2.5 C 2.21875 -3.234375 2.46875 -3.671875 3.078125 -3.671875 C 3.234375 -3.671875 3.359375 -3.640625 3.515625 -3.609375 L 3.75 -5.03125 C 3.59375 -5.078125 3.453125 -5.109375 3.265625 -5.109375 Z M 3.265625 -5.109375 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-1-8"> | |
| 45 | +<path d="M 4.90625 -2.578125 C 4.90625 -4.1875 4.03125 -5.125 2.609375 -5.125 C 1.109375 -5.125 0.296875 -3.9375 0.296875 -2.453125 C 0.296875 -0.90625 1.140625 0.15625 2.796875 0.15625 C 3.59375 0.15625 4.234375 -0.140625 4.734375 -0.53125 L 4.125 -1.359375 C 3.6875 -1.0625 3.328125 -0.921875 2.9375 -0.921875 C 2.328125 -0.921875 1.90625 -1.15625 1.8125 -2.046875 L 4.875 -2.046875 C 4.890625 -2.203125 4.90625 -2.421875 4.90625 -2.578125 Z M 3.453125 -2.9375 L 1.796875 -2.9375 C 1.875 -3.828125 2.15625 -4.140625 2.65625 -4.140625 C 3.25 -4.140625 3.453125 -3.671875 3.453125 -3 Z M 3.453125 -2.9375 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-1-9"> | |
| 48 | +<path d="M 1.0625 -8.03125 L 0.109375 -7.390625 C 0.96875 -6.140625 1.375 -5 1.375 -3.265625 C 1.375 -1.546875 0.96875 -0.390625 0.109375 0.84375 L 1.0625 1.484375 C 1.984375 0.1875 2.859375 -1.03125 2.859375 -3.265625 C 2.859375 -5.5 1.984375 -6.734375 1.0625 -8.03125 Z M 1.0625 -8.03125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-2-0"> | |
| 51 | +<path d="M 3.453125 -1.09375 C 3.453125 -1.21875 3.34375 -1.265625 3.3125 -1.28125 L 2.25 -1.734375 L 3.28125 -2.171875 C 3.375 -2.21875 3.453125 -2.25 3.453125 -2.375 C 3.453125 -2.46875 3.359375 -2.59375 3.234375 -2.59375 C 3.171875 -2.59375 3.15625 -2.59375 3.09375 -2.53125 L 2.125 -1.90625 L 2.234375 -2.953125 L 2.25 -3.03125 C 2.25 -3.125 2.171875 -3.234375 2.03125 -3.234375 C 1.890625 -3.234375 1.8125 -3.125 1.8125 -3.03125 L 1.9375 -1.90625 L 0.984375 -2.53125 C 0.890625 -2.59375 0.859375 -2.59375 0.828125 -2.59375 C 0.703125 -2.59375 0.609375 -2.46875 0.609375 -2.375 C 0.609375 -2.25 0.6875 -2.21875 0.78125 -2.171875 L 1.8125 -1.734375 L 0.78125 -1.296875 C 0.6875 -1.25 0.609375 -1.21875 0.609375 -1.09375 C 0.609375 -1 0.703125 -0.875 0.828125 -0.875 C 0.890625 -0.875 0.90625 -0.890625 0.96875 -0.9375 L 1.921875 -1.5625 L 1.8125 -0.4375 C 1.8125 -0.34375 1.890625 -0.234375 2.03125 -0.234375 C 2.171875 -0.234375 2.25 -0.34375 2.25 -0.4375 C 2.25 -0.46875 2.125 -1.53125 2.125 -1.5625 L 2.984375 -1 C 3.171875 -0.875 3.1875 -0.875 3.234375 -0.875 C 3.359375 -0.875 3.453125 -1 3.453125 -1.09375 Z M 3.453125 -1.09375 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-3-0"> | |
| 54 | +<path d="M 4.03125 -0.328125 C 4.84375 -0.75 5.359375 -1.46875 5.359375 -2.890625 C 5.359375 -4.84375 4.359375 -5.890625 2.90625 -5.890625 C 1.46875 -5.890625 0.46875 -4.796875 0.46875 -2.890625 C 0.46875 -0.9375 1.46875 0.078125 2.890625 0.078125 C 3.9375 0.078125 4.421875 0.28125 5.078125 0.859375 L 5.59375 0.1875 C 5.1875 -0.09375 4.6875 -0.328125 4.03125 -0.328125 Z M 1.3125 -2.890625 C 1.3125 -4.5625 1.9375 -5.234375 2.90625 -5.234375 C 3.90625 -5.234375 4.5 -4.5625 4.5 -2.890625 C 4.5 -1.203125 3.890625 -0.5625 2.90625 -0.5625 C 1.96875 -0.5625 1.3125 -1.203125 1.3125 -2.890625 Z M 1.3125 -2.890625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-3-1"> | |
| 57 | +<path d="M 4.0625 -4.4375 L 3.28125 -4.4375 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.703125 -0.5 1.5 -0.734375 1.5 -1.34375 L 1.5 -4.4375 L 0.71875 -4.4375 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.59375 0.09375 3 -0.15625 3.34375 -0.6875 L 3.390625 0 L 4.0625 0 Z M 4.0625 -4.4375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-3-2"> | |
| 60 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-3-3"> | |
| 63 | +<path d="M 2.859375 -4.53125 C 2.28125 -4.53125 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.109375 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-3-4"> | |
| 66 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.59375 -3.828125 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.515625 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-3-5"> | |
| 69 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.328125 0.609375 -6.03125 C 0.609375 -5.734375 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.703125 -5.734375 1.703125 -6.03125 C 1.703125 -6.328125 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-3-6"> | |
| 72 | +<path d="M 3.359375 -6.09375 L 3.015625 -6.734375 L 1.34375 -5.78125 L 1.578125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-3-7"> | |
| 75 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.125 -4.296875 2.734375 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.171875 3.4375 -0.609375 L 3.5 0 L 4.1875 0 L 4.1875 -6.21875 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-3-8"> | |
| 78 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-3-9"> | |
| 81 | +<path d="M 2.8125 -4.53125 C 2.296875 -4.53125 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 1.796875 L 1.546875 1.703125 L 1.546875 -0.40625 C 1.828125 -0.0625 2.234375 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.453125 -0.875 4.453125 -2.21875 C 4.453125 -3.609375 3.984375 -4.53125 2.8125 -4.53125 Z M 2.515625 -0.53125 C 2.125 -0.53125 1.78125 -0.71875 1.546875 -1.0625 L 1.546875 -3.234375 C 1.78125 -3.578125 2.140625 -3.921875 2.609375 -3.921875 C 3.28125 -3.921875 3.609375 -3.375 3.609375 -2.21875 C 3.609375 -1.0625 3.234375 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-3-10"> | |
| 84 | +<path d="M 2.703125 -4.53125 C 2.15625 -4.53125 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.78125 2.609375 -3.78125 C 2.765625 -3.78125 2.859375 -3.75 3 -3.71875 L 3.140625 -4.484375 C 3 -4.515625 2.84375 -4.53125 2.703125 -4.53125 Z M 2.703125 -4.53125 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-3-11"> | |
| 87 | +<path d="M 2.46875 -4.53125 C 1.203125 -4.53125 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.71875 -4.53125 2.46875 -4.53125 Z M 2.46875 -3.90625 C 3.1875 -3.90625 3.59375 -3.375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.375 1.71875 -3.90625 2.46875 -3.90625 Z M 2.46875 -3.90625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-3-12"> | |
| 90 | +<path d="M 2 -4.53125 C 1.078125 -4.53125 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.03125 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.453125 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.25 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.453125 -2.8125 1.203125 -2.96875 1.203125 -3.34375 C 1.203125 -3.6875 1.515625 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.171875 -3.53125 L 3.5 -4.03125 C 3.078125 -4.34375 2.625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-3-13"> | |
| 93 | +<path d="M 1.90625 -7.109375 C 1.078125 -5.9375 0.34375 -4.9375 0.34375 -2.9375 C 0.34375 -0.953125 1.078125 0.046875 1.90625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.75 1.625 -5.65625 2.390625 -6.765625 Z M 1.90625 -7.109375 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-3-14"> | |
| 96 | +<path d="M 0.828125 -7.109375 L 0.34375 -6.765625 C 1.09375 -5.65625 1.578125 -4.75 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.34375 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.9375 1.640625 -5.9375 0.828125 -7.109375 Z M 0.828125 -7.109375 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-4-0"> | |
| 99 | +<path d="M 5.96875 0 C 5.96875 -0.046875 5.921875 -0.109375 5.859375 -0.109375 C 5.78125 -0.109375 5.765625 -0.046875 5.734375 0.015625 C 5.53125 0.625 5.015625 0.84375 4.6875 0.84375 C 4.265625 0.84375 4.140625 0.59375 4.046875 -0.046875 C 6 -0.890625 6.78125 -2.65625 6.78125 -3.875 C 6.78125 -5.296875 5.84375 -6.3125 4.4375 -6.3125 C 2.421875 -6.3125 0.453125 -4.25 0.453125 -2.21875 C 0.453125 -0.75 1.453125 0.203125 2.8125 0.203125 C 3.171875 0.203125 3.546875 0.109375 3.703125 0.078125 L 3.6875 0.359375 C 3.671875 0.46875 3.671875 0.59375 3.671875 0.703125 C 3.671875 1.125 3.75 1.734375 4.453125 1.734375 C 5.515625 1.734375 5.96875 0.140625 5.96875 0 Z M 5.96875 -4.15625 C 5.96875 -3.265625 5.53125 -1.234375 4 -0.375 C 3.90625 -0.859375 3.75 -1.328125 3.171875 -1.328125 C 2.671875 -1.328125 2.234375 -0.875 2.234375 -0.421875 C 2.234375 -0.34375 2.25 -0.21875 2.28125 -0.15625 C 1.859375 -0.328125 1.265625 -0.78125 1.265625 -1.9375 C 1.265625 -2.421875 1.421875 -3.859375 2.375 -5.015625 C 2.84375 -5.5625 3.59375 -6.0625 4.375 -6.0625 C 5.25 -6.0625 5.96875 -5.40625 5.96875 -4.15625 Z M 3.71875 -0.234375 C 3.59375 -0.171875 3.234375 -0.046875 2.875 -0.046875 C 2.75 -0.046875 2.453125 -0.046875 2.453125 -0.421875 C 2.453125 -0.75 2.78125 -1.109375 3.171875 -1.109375 C 3.703125 -1.109375 3.71875 -0.625 3.71875 -0.234375 Z M 3.71875 -0.234375 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-5-0"> | |
| 102 | +<path d="M -5.796875 -2.359375 L -5.796875 -0.84375 L 0 -0.84375 L 0 -1.640625 L -2.125 -1.640625 L -2.125 -2.375 C -2.125 -3.640625 -2.671875 -4.609375 -4 -4.609375 C -5.21875 -4.609375 -5.796875 -3.75 -5.796875 -2.359375 Z M -2.75 -2.34375 L -2.75 -1.640625 L -5.171875 -1.640625 L -5.171875 -2.359375 C -5.171875 -3.21875 -4.859375 -3.765625 -4 -3.765625 C -3.015625 -3.765625 -2.75 -3.1875 -2.75 -2.34375 Z M -2.75 -2.34375 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-5-1"> | |
| 105 | +<path d="M -4.53125 -2.703125 C -4.53125 -2.15625 -4.1875 -1.75 -3.53125 -1.515625 L -4.4375 -1.4375 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 L -2.53125 -1.546875 C -3.375 -1.734375 -3.78125 -2.046875 -3.78125 -2.609375 C -3.78125 -2.765625 -3.75 -2.859375 -3.71875 -3 L -4.484375 -3.140625 C -4.515625 -3 -4.53125 -2.84375 -4.53125 -2.703125 Z M -4.53125 -2.703125 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-5-2"> | |
| 108 | +<path d="M -6.5625 -1.15625 C -6.5625 -0.828125 -6.328125 -0.609375 -6.03125 -0.609375 C -5.734375 -0.609375 -5.5 -0.828125 -5.5 -1.15625 C -5.5 -1.484375 -5.734375 -1.703125 -6.03125 -1.703125 C -6.328125 -1.703125 -6.5625 -1.484375 -6.5625 -1.15625 Z M -4.4375 -1.546875 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 Z M -4.4375 -1.546875 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-5-3"> | |
| 111 | +<path d="M -2.375 -2.5 L -4.4375 -3.859375 L -4.4375 -2.984375 L -2.8125 -2.046875 L -4.4375 -1.125 L -4.4375 -0.21875 L -2.34375 -1.59375 L 0 -0.046875 L 0 -0.921875 L -1.875 -2.015625 L 0 -3.109375 L 0 -4.03125 Z M -2.375 -2.5 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-5-4"> | |
| 114 | +<path d="M -7.109375 -1.90625 C -5.9375 -1.078125 -4.9375 -0.34375 -2.9375 -0.34375 C -0.953125 -0.34375 0.046875 -1.078125 1.21875 -1.90625 L 0.875 -2.390625 C -0.234375 -1.625 -1.140625 -1.140625 -2.9375 -1.140625 C -4.75 -1.140625 -5.65625 -1.625 -6.765625 -2.390625 Z M -7.109375 -1.90625 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-5-5"> | |
| 117 | +<path d="M -7.109375 -0.828125 L -6.765625 -0.34375 C -5.65625 -1.09375 -4.75 -1.578125 -2.9375 -1.578125 C -1.140625 -1.578125 -0.234375 -1.09375 0.875 -0.34375 L 1.21875 -0.828125 C 0.046875 -1.640625 -0.953125 -2.390625 -2.9375 -2.390625 C -4.9375 -2.390625 -5.9375 -1.640625 -7.109375 -0.828125 Z M -7.109375 -0.828125 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-6-0"> | |
| 120 | +<path d="M -4.75 -6.890625 C -5.46875 -6.890625 -6.109375 -6.265625 -6.109375 -5.078125 L -6.109375 -2.125 C -6.109375 -1.96875 -6.109375 -1.859375 -5.953125 -1.859375 C -5.84375 -1.859375 -5.84375 -1.9375 -5.84375 -2.125 C -5.84375 -2.171875 -5.84375 -2.328125 -5.8125 -2.46875 C -5.796875 -2.625 -5.78125 -2.6875 -5.6875 -2.6875 C -5.640625 -2.6875 -5.609375 -2.671875 -5.5 -2.65625 L -0.6875 -1.4375 C -0.359375 -1.359375 -0.28125 -1.34375 -0.28125 -0.671875 C -0.28125 -0.5 -0.28125 -0.40625 -0.109375 -0.40625 C -0.015625 -0.40625 0 -0.46875 0 -0.53125 L -0.015625 -1.09375 L -0.03125 -1.671875 L 0 -2.828125 C 0 -2.890625 0 -3.015625 -0.15625 -3.015625 C -0.28125 -3.015625 -0.28125 -2.921875 -0.28125 -2.734375 C -0.28125 -2.6875 -0.28125 -2.53125 -0.296875 -2.390625 C -0.328125 -2.1875 -0.359375 -2.1875 -0.4375 -2.1875 C -0.46875 -2.1875 -0.484375 -2.1875 -0.640625 -2.234375 L -2.8125 -2.765625 L -2.8125 -4.265625 C -2.8125 -5.71875 -3.8125 -6.890625 -4.75 -6.890625 Z M -4.96875 -6.046875 C -4.78125 -6.046875 -3.9375 -5.9375 -3.515625 -5.484375 C -3.328125 -5.28125 -3.0625 -4.875 -3.0625 -4.09375 L -3.0625 -2.796875 L -5.484375 -3.40625 C -5.8125 -3.484375 -5.84375 -3.515625 -5.84375 -3.890625 L -5.84375 -4.796875 C -5.84375 -5.484375 -5.625 -6.046875 -4.96875 -6.046875 Z M -4.96875 -6.046875 "/> | |
| 121 | +</g> | |
| 122 | +</g> | |
| 123 | +</defs> | |
| 124 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000143436 -0.00147391 L 250.814694 -0.00147391 " transform="matrix(0.997655, 0, 0, -0.997655, 27.148581, 141.830561)"/> | |
| 125 | +<path fill-rule="nonzero" fill="rgb(65.705872%, 66.999817%, 69.155884%)" fill-opacity="1" d="M 279.363281 141.832031 L 276.183594 140.242188 L 277.375 141.832031 L 276.183594 143.421875 "/> | |
| 126 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000143436 -0.00147391 L -0.000143436 134.595467 " transform="matrix(0.997655, 0, 0, -0.997655, 27.148581, 141.830561)"/> | |
| 127 | +<path fill-rule="nonzero" fill="rgb(65.705872%, 66.999817%, 69.155884%)" fill-opacity="1" d="M 27.148438 5.5625 L 25.558594 8.746094 L 27.148438 7.550781 L 28.738281 8.746094 "/> | |
| 128 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25.28181 122.927475 L 33.707823 118.373826 L 42.133836 113.824093 L 50.559849 109.270443 L 58.989777 104.716794 L 75.841803 95.609496 L 84.267816 91.059762 L 92.697744 86.506113 L 117.975782 72.845166 L 126.405711 68.291517 L 134.831724 63.741783 L 151.683749 54.634485 L 160.113678 50.080836 L 168.53969 45.527186 L 176.965703 40.977453 L 185.391716 36.423804 L 193.821644 31.870155 L 210.67367 22.762856 L 219.099683 18.213123 L 227.529611 13.659473 " transform="matrix(0.997655, 0, 0, -0.997655, 27.148581, 141.830561)"/> | |
| 129 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 130 | +<use xlink:href="#glyph-0-0" x="257.454139" y="124.786631"/> | |
| 131 | +</g> | |
| 132 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 25.28181 27.316505 L 50.559849 40.977453 L 58.989777 45.527186 L 84.267816 59.188134 L 92.697744 63.741783 L 101.123757 68.291517 L 117.975782 77.398815 L 126.405711 81.952464 L 134.831724 86.506113 L 143.257736 91.055847 L 151.683749 95.609496 L 160.113678 100.163145 L 185.391716 113.824093 L 193.821644 118.373826 L 219.099683 132.034774 L 227.529611 136.588423 " transform="matrix(0.997655, 0, 0, -0.997655, 27.148581, 141.830561)"/> | |
| 133 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 134 | +<use xlink:href="#glyph-0-1" x="257.77738" y="15.774914"/> | |
| 135 | +</g> | |
| 136 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 137 | +<use xlink:href="#glyph-0-2" x="143.956968" y="61.50241"/> | |
| 138 | +</g> | |
| 139 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 140 | +<use xlink:href="#glyph-1-0" x="154.078304" y="61.50241"/> | |
| 141 | +<use xlink:href="#glyph-1-1" x="157.114758" y="61.50241"/> | |
| 142 | +<use xlink:href="#glyph-1-2" x="162.290744" y="61.50241"/> | |
| 143 | +<use xlink:href="#glyph-1-3" x="167.840448" y="61.50241"/> | |
| 144 | +<use xlink:href="#glyph-1-4" x="173.147235" y="61.50241"/> | |
| 145 | +<use xlink:href="#glyph-1-5" x="175.763257" y="61.50241"/> | |
| 146 | +<use xlink:href="#glyph-1-4" x="178.566137" y="61.50241"/> | |
| 147 | +<use xlink:href="#glyph-1-6" x="181.182159" y="61.50241"/> | |
| 148 | +<use xlink:href="#glyph-1-7" x="186.703834" y="61.50241"/> | |
| 149 | +</g> | |
| 150 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 151 | +<use xlink:href="#glyph-1-8" x="190.254149" y="61.50241"/> | |
| 152 | +<use xlink:href="#glyph-1-9" x="195.430135" y="61.50241"/> | |
| 153 | +</g> | |
| 154 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(37.644958%, 39.99939%, 43.920898%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 113.762776 -0.00147391 L 113.762776 75.123948 " transform="matrix(0.997655, 0, 0, -0.997655, 27.148581, 141.830561)"/> | |
| 155 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(37.644958%, 39.99939%, 43.920898%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -0.000143436 75.123948 L 113.762776 75.123948 " transform="matrix(0.997655, 0, 0, -0.997655, 27.148581, 141.830561)"/> | |
| 156 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 157 | +<use xlink:href="#glyph-0-3" x="134.430364" y="151.098772"/> | |
| 158 | +</g> | |
| 159 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 160 | +<use xlink:href="#glyph-2-0" x="142.287892" y="147.49225"/> | |
| 161 | +</g> | |
| 162 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 163 | +<use xlink:href="#glyph-0-4" x="8.372722" y="70.306711"/> | |
| 164 | +</g> | |
| 165 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 166 | +<use xlink:href="#glyph-2-0" x="16.133477" y="66.70019"/> | |
| 167 | +</g> | |
| 168 | +<path fill-rule="nonzero" fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 117.748687 75.123948 C 117.748687 77.324422 115.96325 79.105944 113.762776 79.105944 C 111.562302 79.105944 109.78078 77.324422 109.78078 75.123948 C 109.78078 72.923474 111.562302 71.138037 113.762776 71.138037 C 115.96325 71.138037 117.748687 72.923474 117.748687 75.123948 Z M 117.748687 75.123948 " transform="matrix(0.997655, 0, 0, -0.997655, 27.148581, 141.830561)"/> | |
| 169 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 170 | +<use xlink:href="#glyph-3-0" x="102.680009" y="154.348132"/> | |
| 171 | +<use xlink:href="#glyph-3-1" x="108.490373" y="154.348132"/> | |
| 172 | +<use xlink:href="#glyph-3-2" x="113.325336" y="154.348132"/> | |
| 173 | +<use xlink:href="#glyph-3-3" x="117.857589" y="154.348132"/> | |
| 174 | +<use xlink:href="#glyph-3-4" x="122.726186" y="154.348132"/> | |
| 175 | +<use xlink:href="#glyph-3-5" x="125.761702" y="154.348132"/> | |
| 176 | +<use xlink:href="#glyph-3-4" x="128.082485" y="154.348132"/> | |
| 177 | +</g> | |
| 178 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 179 | +<use xlink:href="#glyph-3-6" x="130.991871" y="154.348132"/> | |
| 180 | +</g> | |
| 181 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 182 | +<use xlink:href="#glyph-3-7" x="137.794454" y="154.348132"/> | |
| 183 | +<use xlink:href="#glyph-3-8" x="142.755547" y="154.348132"/> | |
| 184 | +</g> | |
| 185 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 186 | +<use xlink:href="#glyph-3-9" x="149.55813" y="154.348132"/> | |
| 187 | +<use xlink:href="#glyph-3-10" x="154.485588" y="154.348132"/> | |
| 188 | +</g> | |
| 189 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 190 | +<use xlink:href="#glyph-3-11" x="157.537921" y="154.348132"/> | |
| 191 | +<use xlink:href="#glyph-3-9" x="162.448562" y="154.348132"/> | |
| 192 | +<use xlink:href="#glyph-3-10" x="167.37602" y="154.348132"/> | |
| 193 | +<use xlink:href="#glyph-3-5" x="170.596526" y="154.348132"/> | |
| 194 | +<use xlink:href="#glyph-3-6" x="172.917308" y="154.348132"/> | |
| 195 | +<use xlink:href="#glyph-3-4" x="177.491604" y="154.348132"/> | |
| 196 | +</g> | |
| 197 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 198 | +<use xlink:href="#glyph-3-6" x="180.40099" y="154.348132"/> | |
| 199 | +<use xlink:href="#glyph-3-12" x="184.975286" y="154.348132"/> | |
| 200 | +</g> | |
| 201 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 202 | +<use xlink:href="#glyph-3-13" x="191.130404" y="154.348132"/> | |
| 203 | +</g> | |
| 204 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 205 | +<use xlink:href="#glyph-4-0" x="193.854801" y="154.348132"/> | |
| 206 | +</g> | |
| 207 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 208 | +<use xlink:href="#glyph-3-14" x="201.105917" y="154.348132"/> | |
| 209 | +</g> | |
| 210 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 211 | +<use xlink:href="#glyph-5-0" x="20.474272" y="88.27846"/> | |
| 212 | +</g> | |
| 213 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 214 | +<use xlink:href="#glyph-5-1" x="20.474272" y="83.561218"/> | |
| 215 | +<use xlink:href="#glyph-5-2" x="20.474272" y="80.340712"/> | |
| 216 | +<use xlink:href="#glyph-5-3" x="20.474272" y="78.01993"/> | |
| 217 | +</g> | |
| 218 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 219 | +<use xlink:href="#glyph-5-4" x="20.474272" y="71.713456"/> | |
| 220 | +</g> | |
| 221 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 222 | +<use xlink:href="#glyph-6-0" x="20.474272" y="68.989059"/> | |
| 223 | +</g> | |
| 224 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 225 | +<use xlink:href="#glyph-5-5" x="20.474272" y="61.840996"/> | |
| 226 | +</g> | |
| 227 | +</svg> | |
added
dist/assets/fig/7d9680996ac7a82e.svg
+473 −0
@@ -0,0 +1,473 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="372.595pt" height="186.331pt" viewBox="0 0 372.595 186.331"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.578125 -1.421875 C 3.578125 -2.296875 2.875 -2.953125 2.0625 -2.953125 C 1.5 -2.953125 1.203125 -2.59375 1.046875 -2.28125 C 1.046875 -2.84375 1.09375 -3.359375 1.359375 -3.78125 C 1.59375 -4.15625 1.96875 -4.421875 2.40625 -4.421875 C 2.625 -4.421875 2.90625 -4.359375 3.03125 -4.171875 C 2.859375 -4.15625 2.71875 -4.046875 2.71875 -3.84375 C 2.71875 -3.671875 2.84375 -3.515625 3.046875 -3.515625 C 3.25 -3.515625 3.375 -3.65625 3.375 -3.859375 C 3.375 -4.25 3.09375 -4.609375 2.40625 -4.609375 C 1.390625 -4.609375 0.375 -3.703125 0.375 -2.203125 C 0.375 -0.40625 1.21875 0.140625 1.984375 0.140625 C 2.84375 0.140625 3.578125 -0.5 3.578125 -1.421875 Z M 2.90625 -1.421875 C 2.90625 -1.015625 2.90625 -0.734375 2.71875 -0.453125 C 2.546875 -0.21875 2.328125 -0.078125 1.984375 -0.078125 C 1.640625 -0.078125 1.375 -0.28125 1.21875 -0.59375 C 1.125 -0.796875 1.0625 -1.140625 1.0625 -1.5625 C 1.0625 -2.234375 1.46875 -2.765625 2.015625 -2.765625 C 2.34375 -2.765625 2.5625 -2.640625 2.734375 -2.375 C 2.90625 -2.109375 2.90625 -1.828125 2.90625 -1.421875 Z M 2.90625 -1.421875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.515625 -1.390625 C 3.515625 -2.1875 2.90625 -2.90625 2.046875 -2.90625 C 1.75 -2.90625 1.390625 -2.828125 1.078125 -2.5625 L 1.078125 -3.875 C 1.4375 -3.796875 1.640625 -3.796875 1.75 -3.796875 C 2.671875 -3.796875 3.21875 -4.421875 3.21875 -4.515625 C 3.21875 -4.59375 3.15625 -4.609375 3.125 -4.609375 C 3.125 -4.609375 3.09375 -4.609375 3.078125 -4.59375 C 2.90625 -4.53125 2.53125 -4.390625 2.015625 -4.390625 C 1.828125 -4.390625 1.453125 -4.40625 1.015625 -4.578125 C 0.9375 -4.609375 0.921875 -4.609375 0.921875 -4.609375 C 0.828125 -4.609375 0.828125 -4.546875 0.828125 -4.421875 L 0.828125 -2.375 C 0.828125 -2.265625 0.828125 -2.171875 0.9375 -2.171875 C 1 -2.171875 1.015625 -2.1875 1.078125 -2.28125 C 1.375 -2.65625 1.796875 -2.71875 2.046875 -2.71875 C 2.46875 -2.71875 2.65625 -2.375 2.6875 -2.328125 C 2.8125 -2.09375 2.84375 -1.828125 2.84375 -1.421875 C 2.84375 -1.21875 2.84375 -0.8125 2.640625 -0.5 C 2.46875 -0.25 2.171875 -0.078125 1.828125 -0.078125 C 1.375 -0.078125 0.90625 -0.328125 0.734375 -0.796875 C 1 -0.765625 1.140625 -0.953125 1.140625 -1.140625 C 1.140625 -1.4375 0.875 -1.484375 0.78125 -1.484375 C 0.78125 -1.484375 0.4375 -1.484375 0.4375 -1.109375 C 0.4375 -0.484375 1.015625 0.140625 1.84375 0.140625 C 2.734375 0.140625 3.515625 -0.515625 3.515625 -1.390625 Z M 3.515625 -1.390625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 3.796875 -4.484375 L 1.96875 -4.484375 C 1.6875 -4.484375 1.609375 -4.484375 1.359375 -4.5 C 1 -4.53125 0.984375 -4.578125 0.96875 -4.703125 L 0.734375 -4.703125 L 0.484375 -3.21875 L 0.71875 -3.21875 C 0.734375 -3.3125 0.8125 -3.78125 0.921875 -3.84375 C 0.96875 -3.890625 1.53125 -3.890625 1.640625 -3.890625 L 3.15625 -3.890625 L 2.4375 -2.96875 C 1.515625 -1.765625 1.4375 -0.671875 1.4375 -0.25 C 1.4375 -0.1875 1.4375 0.140625 1.765625 0.140625 C 2.09375 0.140625 2.09375 -0.171875 2.09375 -0.265625 L 2.09375 -0.546875 C 2.09375 -1.890625 2.375 -2.515625 2.671875 -2.890625 L 3.71875 -4.203125 C 3.796875 -4.28125 3.796875 -4.296875 3.796875 -4.484375 Z M 3.796875 -4.484375 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.578125 -1.171875 C 3.578125 -1.640625 3.296875 -2.015625 2.90625 -2.265625 L 2.46875 -2.515625 C 3.015625 -2.78125 3.359375 -3.09375 3.359375 -3.578125 C 3.359375 -4.25 2.65625 -4.609375 1.984375 -4.609375 C 1.21875 -4.609375 0.59375 -4.109375 0.59375 -3.453125 C 0.59375 -3.125 0.75 -2.890625 0.875 -2.75 C 1 -2.609375 1.046875 -2.578125 1.453125 -2.34375 C 1.0625 -2.171875 0.375 -1.796875 0.375 -1.0625 C 0.375 -0.296875 1.171875 0.140625 1.96875 0.140625 C 2.84375 0.140625 3.578125 -0.421875 3.578125 -1.171875 Z M 2.984375 -3.578125 C 2.984375 -2.96875 2.25 -2.65625 2.25 -2.65625 C 2.25 -2.65625 2.21875 -2.65625 2.171875 -2.6875 L 1.328125 -3.171875 C 1.15625 -3.28125 0.953125 -3.46875 0.953125 -3.71875 C 0.953125 -4.15625 1.46875 -4.421875 1.96875 -4.421875 C 2.515625 -4.421875 2.984375 -4.078125 2.984375 -3.578125 Z M 3.15625 -0.9375 C 3.15625 -0.40625 2.578125 -0.078125 1.984375 -0.078125 C 1.34375 -0.078125 0.796875 -0.5 0.796875 -1.0625 C 0.796875 -1.578125 1.171875 -1.96875 1.671875 -2.203125 C 2.0625 -1.984375 2.078125 -1.984375 2.625 -1.65625 C 2.8125 -1.546875 3.15625 -1.34375 3.15625 -0.9375 Z M 3.15625 -0.9375 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 3.578125 -2.28125 C 3.578125 -4.015625 2.8125 -4.609375 2 -4.609375 C 1.765625 -4.609375 1.28125 -4.578125 0.890625 -4.1875 C 0.65625 -3.96875 0.375 -3.6875 0.375 -3.0625 C 0.375 -2.1875 1.078125 -1.53125 1.890625 -1.53125 C 2.453125 -1.53125 2.75 -1.890625 2.90625 -2.21875 L 2.90625 -2.078125 C 2.90625 -0.34375 2.046875 -0.078125 1.640625 -0.078125 C 1.484375 -0.078125 1.109375 -0.09375 0.921875 -0.3125 C 1.203125 -0.34375 1.234375 -0.578125 1.234375 -0.640625 C 1.234375 -0.8125 1.109375 -0.96875 0.90625 -0.96875 C 0.703125 -0.96875 0.5625 -0.828125 0.5625 -0.625 C 0.5625 -0.15625 0.96875 0.140625 1.640625 0.140625 C 2.640625 0.140625 3.578125 -0.796875 3.578125 -2.28125 Z M 2.890625 -2.984375 C 2.890625 -2.09375 2.359375 -1.71875 1.921875 -1.71875 C 1.65625 -1.71875 1.390625 -1.8125 1.203125 -2.140625 C 1.046875 -2.390625 1.046875 -2.6875 1.046875 -3.0625 C 1.046875 -3.46875 1.046875 -3.75 1.25 -4.03125 C 1.40625 -4.265625 1.640625 -4.421875 2 -4.421875 C 2.359375 -4.421875 2.5625 -4.1875 2.671875 -4.015625 C 2.859375 -3.71875 2.890625 -3.234375 2.890625 -2.984375 Z M 2.890625 -2.984375 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.53125 3.171875 -4.015625 C 2.96875 -4.34375 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.953125 -2.3125 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.8125 1 -3.34375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.421875 1.96875 -4.421875 C 2.34375 -4.421875 2.71875 -4.1875 2.84375 -3.796875 C 2.953125 -3.40625 2.953125 -2.90625 2.953125 -2.3125 Z M 2.953125 -2.3125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.671875 -1.140625 L 3.671875 -1.390625 L 2.90625 -1.390625 L 2.90625 -4.484375 C 2.90625 -4.640625 2.90625 -4.6875 2.75 -4.6875 C 2.671875 -4.6875 2.640625 -4.6875 2.578125 -4.59375 L 0.265625 -1.390625 L 0.265625 -1.140625 L 2.3125 -1.140625 L 2.3125 -0.5625 C 2.3125 -0.328125 2.3125 -0.25 1.75 -0.25 L 1.5625 -0.25 L 1.5625 0 L 2.609375 -0.03125 L 3.65625 0 L 3.65625 -0.25 L 3.46875 -0.25 C 2.90625 -0.25 2.90625 -0.328125 2.90625 -0.5625 L 2.90625 -1.140625 Z M 2.359375 -1.390625 L 0.53125 -1.390625 L 2.359375 -3.9375 Z M 2.359375 -1.390625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-1-0"> | |
| 33 | +<path d="M 1.65625 -0.046875 C 1.65625 -0.46875 1.5 -0.796875 1.171875 -0.796875 C 0.953125 -0.796875 0.78125 -0.625 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.1875 0 C 1.34375 0 1.46875 -0.109375 1.46875 -0.109375 C 1.46875 0.265625 1.390625 0.71875 0.921875 1.15625 C 0.890625 1.1875 0.875 1.203125 0.875 1.25 C 0.875 1.296875 0.9375 1.34375 0.96875 1.34375 C 1.078125 1.34375 1.65625 0.78125 1.65625 -0.046875 Z M 1.65625 -0.046875 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-2-0"> | |
| 36 | +<path d="M 4.25 -5.78125 L 0.125 -5.78125 L 0.125 -5.09375 L 1.765625 -5.09375 L 1.765625 0 L 2.5625 0 L 2.5625 -5.09375 L 4.171875 -5.09375 Z M 4.25 -5.78125 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-2-1"> | |
| 39 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-2-2"> | |
| 42 | +<path d="M 4.046875 -4.421875 L 3.28125 -4.421875 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.5 -0.734375 1.5 -1.328125 L 1.5 -4.421875 L 0.71875 -4.421875 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 3 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.421875 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-2-3"> | |
| 45 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.421875 L 2.984375 -4.421875 L 2.046875 -2.796875 L 1.125 -4.421875 L 0.21875 -4.421875 L 1.578125 -2.328125 L 0.046875 0 L 0.921875 0 L 2.015625 -1.875 L 3.09375 0 L 4.03125 0 Z M 2.484375 -2.359375 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-2-4"> | |
| 48 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.109375 -4.28125 2.734375 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.140625 -0.171875 3.421875 -0.609375 L 3.5 0 L 4.171875 0 L 4.171875 -6.203125 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.390625 -3.90625 C 2.8125 -3.90625 3.125 -3.6875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-2-5"> | |
| 51 | +<path d="M 1 -6.3125 C 0.703125 -6.3125 0.453125 -6.078125 0.453125 -5.796875 C 0.453125 -5.625 0.53125 -5.484375 0.671875 -5.375 L 0.328125 -4.109375 L 0.84375 -4.109375 L 1.40625 -5.296875 C 1.515625 -5.53125 1.546875 -5.65625 1.546875 -5.796875 C 1.546875 -6.078125 1.296875 -6.3125 1 -6.3125 Z M 1 -6.3125 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-2-6"> | |
| 54 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.75 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.4375 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.34375 -4.390625 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-2-7"> | |
| 57 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.578125 -3.828125 L 2.671875 -4.421875 L 1.625 -4.421875 L 1.625 -5.515625 L 0.84375 -5.421875 L 0.84375 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-2-8"> | |
| 60 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.25 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.203125 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-2-9"> | |
| 63 | +<path d="M 1.15625 -6.546875 C 0.828125 -6.546875 0.609375 -6.3125 0.609375 -6.015625 C 0.609375 -5.71875 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.6875 -5.71875 1.6875 -6.015625 C 1.6875 -6.3125 1.484375 -6.546875 1.15625 -6.546875 Z M 1.546875 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.421875 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-2-10"> | |
| 66 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.6875 1.515625 -3.90625 2.015625 -3.90625 C 2.4375 -3.90625 2.78125 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.34375 2.625 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-2-11"> | |
| 69 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.421875 -0.84375 4.421875 -2.21875 C 4.421875 -3.609375 3.71875 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.90625 C 3.1875 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.453125 -3.90625 Z M 2.453125 -3.90625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-2-12"> | |
| 72 | +<path d="M 2.859375 -4.515625 C 2.28125 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.09375 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-2-13"> | |
| 75 | +<path d="M 1.890625 -7.09375 C 1.078125 -5.921875 0.328125 -4.921875 0.328125 -2.9375 C 0.328125 -0.953125 1.078125 0.046875 1.890625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.734375 1.625 -5.640625 2.390625 -6.75 Z M 1.890625 -7.09375 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-2-14"> | |
| 78 | +<path d="M 5.140625 -5.96875 L 1.265625 -0.09375 L 1.796875 0.265625 L 5.6875 -5.609375 Z M 1.734375 -5.703125 C 0.953125 -5.703125 0.375 -5.15625 0.375 -4.28125 C 0.375 -3.40625 0.953125 -2.859375 1.734375 -2.859375 C 2.53125 -2.859375 3.109375 -3.40625 3.109375 -4.28125 C 3.109375 -5.15625 2.53125 -5.703125 1.734375 -5.703125 Z M 1.734375 -5.171875 C 2.28125 -5.171875 2.421875 -4.71875 2.421875 -4.28125 C 2.421875 -3.828125 2.28125 -3.375 1.734375 -3.375 C 1.203125 -3.375 1.0625 -3.84375 1.0625 -4.28125 C 1.0625 -4.734375 1.203125 -5.171875 1.734375 -5.171875 Z M 5.1875 -2.734375 C 4.40625 -2.734375 3.828125 -2.1875 3.828125 -1.3125 C 3.828125 -0.4375 4.40625 0.09375 5.1875 0.09375 C 5.984375 0.09375 6.546875 -0.4375 6.546875 -1.3125 C 6.546875 -2.1875 5.984375 -2.734375 5.1875 -2.734375 Z M 5.1875 -2.203125 C 5.734375 -2.203125 5.875 -1.75 5.875 -1.3125 C 5.875 -0.859375 5.734375 -0.421875 5.1875 -0.421875 C 4.65625 -0.421875 4.515625 -0.875 4.515625 -1.3125 C 4.515625 -1.765625 4.65625 -2.203125 5.1875 -2.203125 Z M 5.1875 -2.203125 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-2-15"> | |
| 81 | +<path d="M 0.828125 -7.09375 L 0.328125 -6.75 C 1.09375 -5.640625 1.578125 -4.734375 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.328125 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.921875 1.640625 -5.921875 0.828125 -7.09375 Z M 0.828125 -7.09375 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-2-16"> | |
| 84 | +<path d="M 2.96875 -5.875 C 1.640625 -5.875 0.46875 -4.84375 0.46875 -2.890625 C 0.46875 -0.890625 1.390625 0.09375 2.890625 0.09375 C 3.625 0.09375 4.234375 -0.09375 4.78125 -0.40625 L 4.78125 -3.203125 L 2.875 -3.203125 L 2.96875 -2.5625 L 3.984375 -2.5625 L 3.984375 -0.8125 C 3.65625 -0.625 3.265625 -0.546875 2.890625 -0.546875 C 1.875 -0.546875 1.3125 -1.234375 1.3125 -2.890625 C 1.3125 -4.59375 2.140625 -5.234375 2.96875 -5.234375 C 3.484375 -5.234375 3.828125 -5.078125 4.234375 -4.75 L 4.703125 -5.25 C 4.21875 -5.65625 3.734375 -5.875 2.96875 -5.875 Z M 2.96875 -5.875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-2-17"> | |
| 87 | +<path d="M 3.921875 0 L 4.75 0 L 2.90625 -5.78125 L 1.90625 -5.78125 L 0.046875 0 L 0.859375 0 L 1.296875 -1.453125 L 3.484375 -1.453125 Z M 1.484375 -2.09375 L 2.390625 -5.125 L 3.296875 -2.09375 Z M 1.484375 -2.09375 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-2-18"> | |
| 90 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.765625 2.59375 -3.765625 C 2.765625 -3.765625 2.859375 -3.75 2.984375 -3.71875 L 3.125 -4.46875 C 3 -4.5 2.84375 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-2-19"> | |
| 93 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-2-20"> | |
| 96 | +<path d="M 3.578125 -4.734375 L 0.546875 -4.734375 L 0.546875 -1.90625 L 1.15625 -1.90625 C 1.390625 -2.015625 1.65625 -2.09375 1.953125 -2.09375 C 2.53125 -2.09375 2.96875 -1.796875 2.96875 -0.9375 C 2.96875 -0.109375 2.53125 0.359375 1.828125 0.359375 C 1.328125 0.359375 0.96875 0.171875 0.625 -0.171875 L 0.171875 0.265625 C 0.609375 0.71875 1.109375 0.984375 1.828125 0.984375 C 3 0.984375 3.78125 0.203125 3.78125 -0.921875 C 3.78125 -2.03125 3.125 -2.6875 2.1875 -2.6875 C 1.875 -2.6875 1.578125 -2.640625 1.28125 -2.46875 L 1.28125 -4.125 L 3.46875 -4.125 Z M 3.578125 -4.734375 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-2-21"> | |
| 99 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.578125 -0.296875 1.578125 -0.484375 C 1.578125 -0.8125 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-2-22"> | |
| 102 | +<path d="M 2.546875 -4.8125 C 1.265625 -4.8125 0.328125 -3.921875 0.328125 -2.359375 C 0.328125 -0.8125 1.265625 0.09375 2.546875 0.09375 C 3.8125 0.09375 4.75 -0.8125 4.75 -2.359375 C 4.75 -3.921875 3.8125 -4.8125 2.546875 -4.8125 Z M 2.546875 -4.203125 C 3.265625 -4.203125 3.96875 -3.71875 3.96875 -2.359375 C 3.96875 -1.015625 3.265625 -0.515625 2.546875 -0.515625 C 1.828125 -0.515625 1.109375 -1.015625 1.109375 -2.359375 C 1.109375 -3.71875 1.828125 -4.203125 2.546875 -4.203125 Z M 2.546875 -4.203125 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-2-23"> | |
| 105 | +<path d="M 3.46875 -4.734375 L 0.125 -4.734375 L 0.125 -4.109375 L 2.6875 -4.109375 L 0.71875 0.765625 L 1.421875 1 L 3.46875 -4.15625 Z M 3.46875 -4.734375 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-2-24"> | |
| 108 | +<path d="M 2.625 -3.6875 C 2.0625 -3.6875 1.609375 -3.46875 1.234375 -2.9375 C 1.265625 -4.234375 1.765625 -5.078125 2.625 -5.078125 C 2.9375 -5.078125 3.21875 -5 3.5 -4.84375 L 3.796875 -5.359375 C 3.46875 -5.578125 3.09375 -5.703125 2.625 -5.703125 C 1.265625 -5.703125 0.46875 -4.46875 0.46875 -2.640625 C 0.46875 -1.03125 0.984375 0.09375 2.390625 0.09375 C 3.375 0.09375 4.203125 -0.671875 4.203125 -1.90625 C 4.203125 -3.109375 3.453125 -3.6875 2.625 -3.6875 Z M 2.390625 -0.515625 C 1.609375 -0.515625 1.28125 -1.078125 1.234375 -2.296875 C 1.53125 -2.765625 1.953125 -3.078125 2.484375 -3.078125 C 3.015625 -3.078125 3.421875 -2.765625 3.421875 -1.875 C 3.421875 -1.0625 3.046875 -0.515625 2.390625 -0.515625 Z M 2.390625 -0.515625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-3-0"> | |
| 111 | +<path d="M -5.78125 -4.609375 L -5.78125 -3.8125 L -0.859375 -2.359375 L -5.78125 -0.90625 L -5.78125 -0.046875 L 0 -1.90625 L 0 -2.765625 Z M -5.78125 -4.609375 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-3-1"> | |
| 114 | +<path d="M -1.03125 -3.734375 L -3.046875 -3.734375 C -3.984375 -3.734375 -4.515625 -3.25 -4.515625 -2.1875 C -4.515625 -1.6875 -4.421875 -1.203125 -4.21875 -0.65625 L -3.65625 -0.84375 C -3.8125 -1.296875 -3.890625 -1.71875 -3.890625 -2.03125 C -3.890625 -2.65625 -3.65625 -2.96875 -3.015625 -2.96875 L -2.6875 -2.96875 L -2.6875 -2.28125 C -2.6875 -1.046875 -2.1875 -0.328125 -1.234375 -0.328125 C -0.4375 -0.328125 0.09375 -0.859375 0.09375 -1.75 C 0.09375 -2.28125 -0.09375 -2.75 -0.5625 -3.0625 C -0.125 -3.203125 0.046875 -3.484375 0.09375 -3.921875 L -0.4375 -4.109375 C -0.515625 -3.875 -0.640625 -3.734375 -1.03125 -3.734375 Z M -0.484375 -1.921875 C -0.484375 -1.421875 -0.75 -1.15625 -1.28125 -1.15625 C -1.875 -1.15625 -2.1875 -1.5625 -2.1875 -2.390625 L -2.1875 -2.96875 L -1.171875 -2.96875 C -0.703125 -2.703125 -0.484375 -2.375 -0.484375 -1.921875 Z M -0.484375 -1.921875 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-3-2"> | |
| 117 | +<path d="M 0.09375 -1.640625 C 0.09375 -1.875 0.046875 -2.09375 -0.046875 -2.25 L -0.59375 -2.0625 C -0.546875 -1.96875 -0.53125 -1.875 -0.53125 -1.765625 C -0.53125 -1.5625 -0.65625 -1.5 -0.890625 -1.5 L -6.296875 -1.5 L -6.203125 -0.71875 L -0.875 -0.71875 C -0.25 -0.71875 0.09375 -1.078125 0.09375 -1.640625 Z M 0.09375 -1.640625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-3-3"> | |
| 120 | +<path d="M -2.34375 -4.140625 C -3.6875 -4.140625 -4.515625 -3.5 -4.515625 -2.3125 C -4.515625 -1.171875 -3.546875 -0.484375 -2.171875 -0.484375 C -0.765625 -0.484375 0.09375 -1.203125 0.09375 -2.4375 C 0.09375 -3.046875 -0.109375 -3.546875 -0.453125 -3.984375 L -0.921875 -3.640625 C -0.640625 -3.25 -0.53125 -2.921875 -0.53125 -2.484375 C -0.53125 -1.859375 -0.921875 -1.375 -1.953125 -1.296875 L -1.953125 -4.125 C -2.046875 -4.125 -2.1875 -4.140625 -2.34375 -4.140625 Z M -2.515625 -3.375 L -2.515625 -1.296875 C -3.5 -1.359375 -3.90625 -1.75 -3.90625 -2.328125 C -3.90625 -3.03125 -3.4375 -3.375 -2.5625 -3.375 Z M -2.515625 -3.375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-3-4"> | |
| 123 | +<path d="M -4.421875 -4.046875 L -4.421875 -3.28125 L -1.265625 -3.28125 C -0.828125 -3.015625 -0.5 -2.65625 -0.5 -2.171875 C -0.5 -1.6875 -0.734375 -1.5 -1.328125 -1.5 L -4.421875 -1.5 L -4.421875 -0.71875 L -1.25 -0.71875 C -0.390625 -0.71875 0.09375 -1.1875 0.09375 -1.953125 C 0.09375 -2.578125 -0.15625 -3 -0.6875 -3.328125 L 0 -3.390625 L 0 -4.046875 Z M -4.421875 -4.046875 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-3-5"> | |
| 126 | +<path d="M -4.515625 -2.6875 C -4.515625 -2.15625 -4.1875 -1.75 -3.53125 -1.515625 L -4.421875 -1.4375 L -4.421875 -0.765625 L 0 -0.765625 L 0 -1.546875 L -2.53125 -1.546875 C -3.375 -1.734375 -3.765625 -2.046875 -3.765625 -2.59375 C -3.765625 -2.765625 -3.75 -2.859375 -3.71875 -2.984375 L -4.46875 -3.125 C -4.5 -3 -4.515625 -2.84375 -4.515625 -2.6875 Z M -4.515625 -2.6875 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-3-6"> | |
| 129 | +<path d="M -4.515625 -2 C -4.515625 -1.078125 -4.015625 -0.40625 -3.3125 -0.40625 C -2.6875 -0.40625 -2.28125 -0.78125 -2.015625 -1.734375 C -1.796875 -2.59375 -1.625 -2.8125 -1.1875 -2.8125 C -0.765625 -2.8125 -0.515625 -2.4375 -0.515625 -1.859375 C -0.515625 -1.390625 -0.671875 -0.96875 -0.953125 -0.625 L -0.484375 -0.203125 C -0.140625 -0.59375 0.09375 -1.125 0.09375 -1.875 C 0.09375 -2.78125 -0.3125 -3.625 -1.234375 -3.625 C -2.015625 -3.625 -2.390625 -3.09375 -2.625 -2.15625 C -2.796875 -1.4375 -2.96875 -1.203125 -3.328125 -1.203125 C -3.6875 -1.203125 -3.90625 -1.515625 -3.90625 -2.015625 C -3.90625 -2.4375 -3.78125 -2.78125 -3.53125 -3.171875 L -4.015625 -3.5 C -4.34375 -3.078125 -4.515625 -2.625 -4.515625 -2 Z M -4.515625 -2 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-3-7"> | |
| 132 | +<path d="M -0.71875 -2.734375 C -0.59375 -2.515625 -0.53125 -2.34375 -0.53125 -2.140625 C -0.53125 -1.765625 -0.75 -1.625 -1.1875 -1.625 L -3.828125 -1.625 L -3.828125 -2.578125 L -4.421875 -2.671875 L -4.421875 -1.625 L -5.515625 -1.625 L -5.421875 -0.84375 L -4.421875 -0.84375 L -4.421875 -0.078125 L -3.828125 -0.078125 L -3.828125 -0.84375 L -1.15625 -0.84375 C -0.328125 -0.84375 0.09375 -1.296875 0.09375 -2.03125 C 0.09375 -2.421875 0 -2.734375 -0.203125 -3.03125 Z M -0.71875 -2.734375 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-3-8"> | |
| 135 | +<path d="M -6.546875 -1.15625 C -6.546875 -0.828125 -6.3125 -0.609375 -6.015625 -0.609375 C -5.71875 -0.609375 -5.5 -0.828125 -5.5 -1.15625 C -5.5 -1.484375 -5.71875 -1.6875 -6.015625 -1.6875 C -6.3125 -1.6875 -6.546875 -1.484375 -6.546875 -1.15625 Z M -4.421875 -1.546875 L -4.421875 -0.765625 L 0 -0.765625 L 0 -1.546875 Z M -4.421875 -1.546875 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-3-9"> | |
| 138 | +<path d="M -4.515625 -5.203125 C -4.515625 -4.609375 -4.203125 -4.21875 -3.71875 -3.890625 C -4.234375 -3.71875 -4.515625 -3.328125 -4.515625 -2.78125 C -4.515625 -2.203125 -4.21875 -1.796875 -3.78125 -1.5 L -4.421875 -1.4375 L -4.421875 -0.765625 L 0 -0.765625 L 0 -1.546875 L -3.140625 -1.546875 C -3.609375 -1.84375 -3.921875 -2.109375 -3.921875 -2.578125 C -3.921875 -2.921875 -3.71875 -3.203125 -3.0625 -3.203125 L 0 -3.203125 L 0 -3.984375 L -3.140625 -3.984375 C -3.609375 -4.28125 -3.921875 -4.546875 -3.921875 -5.015625 C -3.921875 -5.359375 -3.71875 -5.640625 -3.0625 -5.640625 L 0 -5.640625 L 0 -6.40625 L -3.171875 -6.40625 C -4 -6.40625 -4.515625 -5.9375 -4.515625 -5.203125 Z M -4.515625 -5.203125 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-3-10"> | |
| 141 | +<path d="M -6.078125 -3.34375 L -6.71875 -3 L -5.765625 -1.328125 L -5.359375 -1.5625 Z M -2.34375 -4.140625 C -3.6875 -4.140625 -4.515625 -3.5 -4.515625 -2.3125 C -4.515625 -1.171875 -3.546875 -0.484375 -2.171875 -0.484375 C -0.765625 -0.484375 0.09375 -1.203125 0.09375 -2.4375 C 0.09375 -3.046875 -0.109375 -3.546875 -0.453125 -3.984375 L -0.921875 -3.640625 C -0.640625 -3.25 -0.53125 -2.921875 -0.53125 -2.484375 C -0.53125 -1.859375 -0.921875 -1.375 -1.953125 -1.296875 L -1.953125 -4.125 C -2.046875 -4.125 -2.1875 -4.140625 -2.34375 -4.140625 Z M -2.515625 -3.375 L -2.515625 -1.296875 C -3.5 -1.359375 -3.90625 -1.75 -3.90625 -2.328125 C -3.90625 -3.03125 -3.4375 -3.375 -2.5625 -3.375 Z M -2.515625 -3.375 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-3-11"> | |
| 144 | +<path d="M -7.09375 -1.890625 C -5.921875 -1.078125 -4.921875 -0.328125 -2.9375 -0.328125 C -0.953125 -0.328125 0.046875 -1.078125 1.21875 -1.890625 L 0.875 -2.390625 C -0.234375 -1.625 -1.140625 -1.140625 -2.9375 -1.140625 C -4.734375 -1.140625 -5.640625 -1.625 -6.75 -2.390625 Z M -7.09375 -1.890625 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-3-12"> | |
| 147 | +<path d="M -4.515625 -2.453125 C -4.515625 -1.203125 -3.578125 -0.484375 -2.203125 -0.484375 C -0.8125 -0.484375 0.09375 -1.1875 0.09375 -2.453125 C 0.09375 -3.703125 -0.84375 -4.421875 -2.21875 -4.421875 C -3.609375 -4.421875 -4.515625 -3.71875 -4.515625 -2.453125 Z M -3.90625 -2.453125 C -3.90625 -3.1875 -3.359375 -3.59375 -2.21875 -3.59375 C -1.0625 -3.59375 -0.515625 -3.1875 -0.515625 -2.453125 C -0.515625 -1.71875 -1.0625 -1.3125 -2.203125 -1.3125 C -3.359375 -1.3125 -3.90625 -1.71875 -3.90625 -2.453125 Z M -3.90625 -2.453125 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-3-13"> | |
| 150 | +<path d="M -4.515625 -2.859375 C -4.515625 -2.28125 -4.21875 -1.796875 -3.765625 -1.5 L -4.421875 -1.4375 L -4.421875 -0.765625 L 0 -0.765625 L 0 -1.546875 L -3.140625 -1.546875 C -3.609375 -1.84375 -3.921875 -2.171875 -3.921875 -2.671875 C -3.921875 -3.09375 -3.71875 -3.359375 -3.0625 -3.359375 L 0 -3.359375 L 0 -4.140625 L -3.171875 -4.140625 C -4.015625 -4.140625 -4.515625 -3.671875 -4.515625 -2.859375 Z M -4.515625 -2.859375 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-3-14"> | |
| 153 | +<path d="M -1.5625 -4.125 C -2.640625 -4.125 -2.984375 -3.359375 -3.265625 -2.453125 C -3.578125 -1.453125 -3.796875 -1.234375 -4.265625 -1.234375 C -4.8125 -1.234375 -5.0625 -1.671875 -5.0625 -2.234375 C -5.0625 -2.703125 -4.921875 -3.109375 -4.5625 -3.5 L -5.046875 -3.9375 C -5.40625 -3.5625 -5.625 -3.15625 -5.6875 -2.59375 L -6.90625 -2.59375 L -6.90625 -1.9375 L -5.6875 -1.9375 C -5.59375 -1.046875 -5.03125 -0.4375 -4.234375 -0.4375 C -3.375 -0.4375 -2.953125 -1 -2.625 -2.09375 C -2.328125 -3.046875 -2.078125 -3.3125 -1.53125 -3.3125 C -0.859375 -3.3125 -0.53125 -2.765625 -0.53125 -2.109375 C -0.53125 -1.5 -0.75 -1.046875 -1.125 -0.65625 L -0.625 -0.203125 C -0.203125 -0.640625 0.0625 -1.203125 0.09375 -1.9375 L 1.296875 -1.9375 L 1.296875 -2.59375 L 0.0625 -2.59375 C -0.09375 -3.5625 -0.71875 -4.125 -1.5625 -4.125 Z M -1.5625 -4.125 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-3-15"> | |
| 156 | +<path d="M -7.09375 -0.828125 L -6.75 -0.328125 C -5.640625 -1.09375 -4.734375 -1.578125 -2.9375 -1.578125 C -1.140625 -1.578125 -0.234375 -1.09375 0.875 -0.328125 L 1.21875 -0.828125 C 0.046875 -1.640625 -0.953125 -2.390625 -2.9375 -2.390625 C -4.921875 -2.390625 -5.921875 -1.640625 -7.09375 -0.828125 Z M -7.09375 -0.828125 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-4-0"> | |
| 159 | +<path d="M 6.625 -3.140625 C 6.625 -3.34375 6.421875 -3.34375 6.296875 -3.34375 L 0.84375 -3.34375 C 0.703125 -3.34375 0.515625 -3.34375 0.515625 -3.140625 C 0.515625 -2.953125 0.6875 -2.953125 0.796875 -2.953125 L 6.328125 -2.953125 C 6.453125 -2.953125 6.625 -2.953125 6.625 -3.140625 Z M 6.625 -1.328125 C 6.625 -1.515625 6.453125 -1.515625 6.328125 -1.515625 L 0.796875 -1.515625 C 0.6875 -1.515625 0.515625 -1.515625 0.515625 -1.328125 C 0.515625 -1.140625 0.703125 -1.140625 0.84375 -1.140625 L 6.296875 -1.140625 C 6.421875 -1.140625 6.625 -1.140625 6.625 -1.328125 Z M 6.625 -1.328125 "/> | |
| 160 | +</g> | |
| 161 | +</g> | |
| 162 | +<clipPath id="clip-0"> | |
| 163 | +<path clip-rule="nonzero" d="M 37.910156 21 L 366.074219 21 L 366.074219 126 L 37.910156 126 Z M 37.910156 21 "/> | |
| 164 | +</clipPath> | |
| 165 | +<clipPath id="clip-1"> | |
| 166 | +<path clip-rule="nonzero" d="M 37.910156 35 L 366.074219 35 L 366.074219 137 L 37.910156 137 Z M 37.910156 35 "/> | |
| 167 | +</clipPath> | |
| 168 | +<clipPath id="clip-2"> | |
| 169 | +<path clip-rule="nonzero" d="M 37.910156 48 L 366.074219 48 L 366.074219 148 L 37.910156 148 Z M 37.910156 48 "/> | |
| 170 | +</clipPath> | |
| 171 | +<clipPath id="clip-3"> | |
| 172 | +<path clip-rule="nonzero" d="M 329 94 L 371.726562 94 L 371.726562 139 L 329 139 Z M 329 94 "/> | |
| 173 | +</clipPath> | |
| 174 | +<clipPath id="clip-4"> | |
| 175 | +<path clip-rule="nonzero" d="M 329 105 L 371.726562 105 L 371.726562 149 L 329 149 Z M 329 105 "/> | |
| 176 | +</clipPath> | |
| 177 | +</defs> | |
| 178 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(84.999084%, 84.999084%, 84.999084%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 14.970419 0.0000903634 L 14.970419 142.251187 M 52.393363 0.0000903634 L 52.393363 142.251187 M 89.820228 0.0000903634 L 89.820228 142.251187 M 127.243173 0.0000903634 L 127.243173 142.251187 M 164.670037 0.0000903634 L 164.670037 142.251187 M 202.092982 0.0000903634 L 202.092982 142.251187 M 239.519847 0.0000903634 L 239.519847 142.251187 M 276.946712 0.0000903634 L 276.946712 142.251187 M 314.369656 0.0000903634 L 314.369656 142.251187 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 179 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(84.999084%, 84.999084%, 84.999084%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -0.00111142 15.806639 L 329.341186 15.806639 M -0.00111142 47.415816 L 329.341186 47.415816 M -0.00111142 79.028913 L 329.341186 79.028913 M -0.00111142 110.63809 L 329.341186 110.63809 M -0.00111142 142.251187 L 329.341186 142.251187 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 180 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14.970419 0.0000903634 L 14.970419 4.253589 M 52.393363 0.0000903634 L 52.393363 4.253589 M 89.820228 0.0000903634 L 89.820228 4.253589 M 127.243173 0.0000903634 L 127.243173 4.253589 M 164.670037 0.0000903634 L 164.670037 4.253589 M 202.092982 0.0000903634 L 202.092982 4.253589 M 239.519847 0.0000903634 L 239.519847 4.253589 M 276.946712 0.0000903634 L 276.946712 4.253589 M 314.369656 0.0000903634 L 314.369656 4.253589 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 181 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00111142 15.806639 L 4.252387 15.806639 M -0.00111142 47.415816 L 4.252387 47.415816 M -0.00111142 79.028913 L 4.252387 79.028913 M -0.00111142 110.63809 L 4.252387 110.63809 M -0.00111142 142.251187 L 4.252387 142.251187 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 182 | +<path fill="none" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00111142 0.0000903634 L 329.341186 0.0000903634 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 183 | +<path fill="none" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00111142 0.0000903634 L -0.00111142 142.251187 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 184 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 185 | +<use xlink:href="#glyph-0-0" x="50.848813" y="161.009912"/> | |
| 186 | +</g> | |
| 187 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 188 | +<use xlink:href="#glyph-0-0" x="84.982261" y="161.009912"/> | |
| 189 | +</g> | |
| 190 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 191 | +<use xlink:href="#glyph-1-0" x="88.938936" y="161.009912"/> | |
| 192 | +</g> | |
| 193 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 194 | +<use xlink:href="#glyph-0-1" x="91.296682" y="161.009912"/> | |
| 195 | +</g> | |
| 196 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 197 | +<use xlink:href="#glyph-0-2" x="125.430038" y="161.009912"/> | |
| 198 | +</g> | |
| 199 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 200 | +<use xlink:href="#glyph-0-2" x="159.563485" y="161.009912"/> | |
| 201 | +</g> | |
| 202 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 203 | +<use xlink:href="#glyph-1-0" x="163.520161" y="161.009912"/> | |
| 204 | +</g> | |
| 205 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 206 | +<use xlink:href="#glyph-0-1" x="165.877906" y="161.009912"/> | |
| 207 | +</g> | |
| 208 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 209 | +<use xlink:href="#glyph-0-3" x="200.011262" y="161.009912"/> | |
| 210 | +</g> | |
| 211 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 212 | +<use xlink:href="#glyph-0-3" x="234.14471" y="161.009912"/> | |
| 213 | +</g> | |
| 214 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 215 | +<use xlink:href="#glyph-1-0" x="238.101386" y="161.009912"/> | |
| 216 | +</g> | |
| 217 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 218 | +<use xlink:href="#glyph-0-1" x="240.459131" y="161.009912"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-0-4" x="274.592487" y="161.009912"/> | |
| 222 | +</g> | |
| 223 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 224 | +<use xlink:href="#glyph-0-4" x="308.725935" y="161.009912"/> | |
| 225 | +</g> | |
| 226 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 227 | +<use xlink:href="#glyph-1-0" x="312.682611" y="161.009912"/> | |
| 228 | +</g> | |
| 229 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 230 | +<use xlink:href="#glyph-0-1" x="315.040356" y="161.009912"/> | |
| 231 | +</g> | |
| 232 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 233 | +<use xlink:href="#glyph-0-5" x="347.195813" y="161.009912"/> | |
| 234 | +<use xlink:href="#glyph-0-6" x="351.152489" y="161.009912"/> | |
| 235 | +</g> | |
| 236 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 237 | +<use xlink:href="#glyph-0-7" x="30.149133" y="139.217157"/> | |
| 238 | +</g> | |
| 239 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 240 | +<use xlink:href="#glyph-0-7" x="23.834804" y="107.043672"/> | |
| 241 | +</g> | |
| 242 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 243 | +<use xlink:href="#glyph-1-0" x="27.791479" y="107.043672"/> | |
| 244 | +</g> | |
| 245 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 246 | +<use xlink:href="#glyph-0-7" x="30.149224" y="107.043672"/> | |
| 247 | +</g> | |
| 248 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 249 | +<use xlink:href="#glyph-0-7" x="23.834804" y="75.546758"/> | |
| 250 | +</g> | |
| 251 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 252 | +<use xlink:href="#glyph-1-0" x="27.791479" y="75.546758"/> | |
| 253 | +</g> | |
| 254 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 255 | +<use xlink:href="#glyph-0-8" x="30.149224" y="75.546758"/> | |
| 256 | +</g> | |
| 257 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 258 | +<use xlink:href="#glyph-0-7" x="23.834804" y="44.048848"/> | |
| 259 | +</g> | |
| 260 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 261 | +<use xlink:href="#glyph-1-0" x="27.791479" y="44.048848"/> | |
| 262 | +</g> | |
| 263 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 264 | +<use xlink:href="#glyph-0-0" x="30.149224" y="44.048848"/> | |
| 265 | +</g> | |
| 266 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 267 | +<use xlink:href="#glyph-0-7" x="23.834804" y="12.551934"/> | |
| 268 | +</g> | |
| 269 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 270 | +<use xlink:href="#glyph-1-0" x="27.791479" y="12.551934"/> | |
| 271 | +</g> | |
| 272 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 273 | +<use xlink:href="#glyph-0-3" x="30.149224" y="12.551934"/> | |
| 274 | +</g> | |
| 275 | +<g clip-path="url(#clip-0)"> | |
| 276 | +<path fill="none" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14.970419 112.217961 L 164.670037 77.445122 L 239.519847 63.222364 L 314.369656 47.415816 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 277 | +</g> | |
| 278 | +<g clip-path="url(#clip-1)"> | |
| 279 | +<path fill="none" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14.970419 97.995203 L 89.820228 80.608784 L 164.670037 64.802235 L 239.519847 50.579478 L 314.369656 36.3528 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 280 | +</g> | |
| 281 | +<g clip-path="url(#clip-2)"> | |
| 282 | +<path fill="none" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14.970419 85.348396 L 89.820228 69.545768 L 164.670037 53.739219 L 239.519847 39.512541 L 314.369656 25.289784 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 283 | +</g> | |
| 284 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 12.677058 109.92852 L 17.259859 109.92852 L 17.259859 114.511321 L 12.677058 114.511321 Z M 12.677058 109.92852 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 285 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 87.526867 92.542101 L 92.109669 92.542101 L 92.109669 97.124902 L 87.526867 97.124902 Z M 87.526867 92.542101 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 286 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 162.376677 75.155681 L 166.959478 75.155681 L 166.959478 79.738483 L 162.376677 79.738483 Z M 162.376677 75.155681 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 287 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 237.230406 60.929003 L 241.813208 60.929003 L 241.813208 65.511805 L 237.230406 65.511805 Z M 237.230406 60.929003 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 288 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 312.080216 45.126375 L 316.663017 45.126375 L 316.663017 49.709177 L 312.080216 49.709177 Z M 312.080216 45.126375 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 289 | +<path fill-rule="nonzero" fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 17.259859 97.995203 C 17.259859 99.261452 16.236667 100.284644 14.970419 100.284644 C 13.70417 100.284644 12.677058 99.261452 12.677058 97.995203 C 12.677058 96.728954 13.70417 95.701842 14.970419 95.701842 C 16.236667 95.701842 17.259859 96.728954 17.259859 97.995203 Z M 17.259859 97.995203 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 290 | +<path fill-rule="nonzero" fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 92.109669 80.608784 C 92.109669 81.875033 91.086477 82.898224 89.820228 82.898224 C 88.553979 82.898224 87.526867 81.875033 87.526867 80.608784 C 87.526867 79.342535 88.553979 78.315423 89.820228 78.315423 C 91.086477 78.315423 92.109669 79.342535 92.109669 80.608784 Z M 92.109669 80.608784 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 291 | +<path fill-rule="nonzero" fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 166.959478 64.802235 C 166.959478 66.068484 165.936286 67.095596 164.670037 67.095596 C 163.403789 67.095596 162.376677 66.068484 162.376677 64.802235 C 162.376677 63.535986 163.403789 62.512795 164.670037 62.512795 C 165.936286 62.512795 166.959478 63.535986 166.959478 64.802235 Z M 166.959478 64.802235 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 292 | +<path fill-rule="nonzero" fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 241.813208 50.579478 C 241.813208 51.841806 240.786096 52.868918 239.519847 52.868918 C 238.253598 52.868918 237.230406 51.841806 237.230406 50.579478 C 237.230406 49.313229 238.253598 48.286117 239.519847 48.286117 C 240.786096 48.286117 241.813208 49.313229 241.813208 50.579478 Z M 241.813208 50.579478 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 293 | +<path fill-rule="nonzero" fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1" d="M 353.441406 116.503906 C 353.441406 115.242188 352.417969 114.222656 351.15625 114.222656 C 349.894531 114.222656 348.875 115.242188 348.875 116.503906 C 348.875 117.765625 349.894531 118.789062 351.15625 118.789062 C 352.417969 118.789062 353.441406 117.765625 353.441406 116.503906 Z M 353.441406 116.503906 "/> | |
| 294 | +<g clip-path="url(#clip-3)"> | |
| 295 | +<path fill="none" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 316.663017 36.3528 C 316.663017 37.619049 315.635905 38.64224 314.369656 38.64224 C 313.103408 38.64224 312.080216 37.619049 312.080216 36.3528 C 312.080216 35.086551 313.103408 34.059439 314.369656 34.059439 C 315.635905 34.059439 316.663017 35.086551 316.663017 36.3528 Z M 316.663017 36.3528 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 296 | +</g> | |
| 297 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14.970419 87.641757 L 16.954078 84.203676 L 12.986759 84.203676 Z M 14.970419 87.641757 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 298 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 89.820228 71.835208 L 91.803887 68.397127 L 87.836569 68.397127 Z M 89.820228 71.835208 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 299 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 164.670037 56.02866 L 166.653697 52.594499 L 162.686378 52.594499 Z M 164.670037 56.02866 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 300 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 239.519847 41.805902 L 241.503506 38.367821 L 237.536188 38.367821 Z M 239.519847 41.805902 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 301 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" d="M 351.15625 125.246094 L 353.132812 128.671875 L 349.179688 128.671875 Z M 351.15625 125.246094 "/> | |
| 302 | +<g clip-path="url(#clip-4)"> | |
| 303 | +<path fill="none" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 314.369656 27.579225 L 316.353315 24.141143 L 312.385997 24.141143 Z M 314.369656 27.579225 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 304 | +</g> | |
| 305 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 306 | +<use xlink:href="#glyph-2-0" x="156.90802" y="176.351829"/> | |
| 307 | +</g> | |
| 308 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 309 | +<use xlink:href="#glyph-2-1" x="160.830001" y="176.351829"/> | |
| 310 | +<use xlink:href="#glyph-2-2" x="165.356656" y="176.351829"/> | |
| 311 | +<use xlink:href="#glyph-2-3" x="170.185648" y="176.351829"/> | |
| 312 | +</g> | |
| 313 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 314 | +<use xlink:href="#glyph-2-4" x="176.484333" y="176.351829"/> | |
| 315 | +<use xlink:href="#glyph-2-5" x="181.439299" y="176.351829"/> | |
| 316 | +</g> | |
| 317 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 318 | +<use xlink:href="#glyph-2-1" x="183.228126" y="176.351829"/> | |
| 319 | +<use xlink:href="#glyph-2-6" x="187.754781" y="176.351829"/> | |
| 320 | +<use xlink:href="#glyph-2-7" x="191.769143" y="176.351829"/> | |
| 321 | +<use xlink:href="#glyph-2-2" x="194.80091" y="176.351829"/> | |
| 322 | +<use xlink:href="#glyph-2-1" x="199.629902" y="176.351829"/> | |
| 323 | +</g> | |
| 324 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 325 | +<use xlink:href="#glyph-2-8" x="204.114566" y="176.351829"/> | |
| 326 | +<use xlink:href="#glyph-2-9" x="206.583651" y="176.351829"/> | |
| 327 | +<use xlink:href="#glyph-2-10" x="208.901567" y="176.351829"/> | |
| 328 | +<use xlink:href="#glyph-2-1" x="212.823548" y="176.351829"/> | |
| 329 | +<use xlink:href="#glyph-2-7" x="217.350204" y="176.351829"/> | |
| 330 | +<use xlink:href="#glyph-2-9" x="220.381971" y="176.351829"/> | |
| 331 | +<use xlink:href="#glyph-2-11" x="222.699887" y="176.351829"/> | |
| 332 | +<use xlink:href="#glyph-2-12" x="227.604463" y="176.351829"/> | |
| 333 | +</g> | |
| 334 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 335 | +<use xlink:href="#glyph-2-13" x="234.692584" y="176.351829"/> | |
| 336 | +<use xlink:href="#glyph-2-14" x="237.413616" y="176.351829"/> | |
| 337 | +<use xlink:href="#glyph-2-15" x="244.350568" y="176.351829"/> | |
| 338 | +</g> | |
| 339 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 340 | +<use xlink:href="#glyph-3-0" x="15.613322" y="132.376717"/> | |
| 341 | +</g> | |
| 342 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 343 | +<use xlink:href="#glyph-3-1" x="15.613322" y="127.959239"/> | |
| 344 | +</g> | |
| 345 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 346 | +<use xlink:href="#glyph-3-2" x="15.613322" y="123.474575"/> | |
| 347 | +</g> | |
| 348 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 349 | +<use xlink:href="#glyph-3-3" x="15.613322" y="121.047481"/> | |
| 350 | +<use xlink:href="#glyph-3-4" x="15.613322" y="116.478835"/> | |
| 351 | +<use xlink:href="#glyph-3-5" x="15.613322" y="111.649843"/> | |
| 352 | +</g> | |
| 353 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 354 | +<use xlink:href="#glyph-3-3" x="15.613322" y="106.207779"/> | |
| 355 | +<use xlink:href="#glyph-3-6" x="15.613322" y="101.639132"/> | |
| 356 | +<use xlink:href="#glyph-3-7" x="15.613322" y="97.717151"/> | |
| 357 | +<use xlink:href="#glyph-3-8" x="15.613322" y="94.685384"/> | |
| 358 | +<use xlink:href="#glyph-3-9" x="15.613322" y="92.367468"/> | |
| 359 | +<use xlink:href="#glyph-3-10" x="15.613322" y="85.228958"/> | |
| 360 | +<use xlink:href="#glyph-3-3" x="15.613322" y="80.660311"/> | |
| 361 | +</g> | |
| 362 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 363 | +<use xlink:href="#glyph-3-11" x="15.613322" y="73.866129"/> | |
| 364 | +<use xlink:href="#glyph-3-9" x="15.613322" y="71.145097"/> | |
| 365 | +<use xlink:href="#glyph-3-8" x="15.613322" y="64.006587"/> | |
| 366 | +<use xlink:href="#glyph-3-2" x="15.613322" y="61.688671"/> | |
| 367 | +<use xlink:href="#glyph-3-2" x="15.613322" y="59.219586"/> | |
| 368 | +<use xlink:href="#glyph-3-8" x="15.613322" y="56.750502"/> | |
| 369 | +<use xlink:href="#glyph-3-12" x="15.613322" y="54.432586"/> | |
| 370 | +<use xlink:href="#glyph-3-13" x="15.613322" y="49.528009"/> | |
| 371 | +<use xlink:href="#glyph-3-6" x="15.613322" y="44.665424"/> | |
| 372 | +</g> | |
| 373 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 374 | +<use xlink:href="#glyph-3-14" x="15.613322" y="38.517907"/> | |
| 375 | +<use xlink:href="#glyph-3-15" x="15.613322" y="34.058438"/> | |
| 376 | +</g> | |
| 377 | +<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="0.9" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(81.568909%, 83.529663%, 86.274719%)" stroke-opacity="1" stroke-miterlimit="10" d="M 218.45621 98.638128 L 322.053395 98.638128 L 322.053395 138.707258 L 218.45621 138.707258 Z M 218.45621 98.638128 " transform="matrix(0.996422, 0, 0, -0.996422, 37.911264, 152.726653)"/> | |
| 378 | +<path fill="none" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000652174 0.000136616 L 17.009421 0.000136616 " transform="matrix(0.996422, 0, 0, -0.996422, 259.254556, 22.49623)"/> | |
| 379 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="0.9" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.212984 -2.293224 L 10.795785 -2.293224 L 10.795785 2.289577 L 6.212984 2.289577 Z M 6.212984 -2.293224 " transform="matrix(0.996422, 0, 0, -0.996422, 259.254556, 22.49623)"/> | |
| 380 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 381 | +<use xlink:href="#glyph-2-0" x="279.579581" y="25.102871"/> | |
| 382 | +</g> | |
| 383 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 384 | +<use xlink:href="#glyph-2-16" x="283.627537" y="25.102871"/> | |
| 385 | +<use xlink:href="#glyph-2-17" x="288.92683" y="25.102871"/> | |
| 386 | +</g> | |
| 387 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 388 | +<use xlink:href="#glyph-2-10" x="295.964561" y="25.102871"/> | |
| 389 | +<use xlink:href="#glyph-2-11" x="299.886543" y="25.102871"/> | |
| 390 | +<use xlink:href="#glyph-2-18" x="304.791119" y="25.102871"/> | |
| 391 | +<use xlink:href="#glyph-2-7" x="308.007648" y="25.102871"/> | |
| 392 | +<use xlink:href="#glyph-2-9" x="311.039415" y="25.102871"/> | |
| 393 | +<use xlink:href="#glyph-2-19" x="313.357331" y="25.102871"/> | |
| 394 | +</g> | |
| 395 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 396 | +<use xlink:href="#glyph-4-0" x="320.150624" y="25.102871"/> | |
| 397 | +</g> | |
| 398 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 399 | +<use xlink:href="#glyph-2-20" x="329.518257" y="25.102871"/> | |
| 400 | +<use xlink:href="#glyph-2-21" x="333.633398" y="25.102871"/> | |
| 401 | +<use xlink:href="#glyph-2-20" x="335.648977" y="25.102871"/> | |
| 402 | +</g> | |
| 403 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 404 | +<use xlink:href="#glyph-2-22" x="339.722127" y="25.102871"/> | |
| 405 | +</g> | |
| 406 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 407 | +<use xlink:href="#glyph-2-14" x="346.213972" y="25.102871"/> | |
| 408 | +</g> | |
| 409 | +<path fill="none" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000652174 -0.000266903 L 17.009421 -0.000266903 " transform="matrix(0.996422, 0, 0, -0.996422, 259.254556, 34.480203)"/> | |
| 410 | +<path fill-rule="nonzero" fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="0.9" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10.795785 -0.000266903 C 10.795785 1.265982 9.768673 2.293094 8.502424 2.293094 C 7.240096 2.293094 6.212984 1.265982 6.212984 -0.000266903 C 6.212984 -1.266516 7.240096 -2.289707 8.502424 -2.289707 C 9.768673 -2.289707 10.795785 -1.266516 10.795785 -0.000266903 Z M 10.795785 -0.000266903 " transform="matrix(0.996422, 0, 0, -0.996422, 259.254556, 34.480203)"/> | |
| 411 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 412 | +<use xlink:href="#glyph-2-0" x="280.406612" y="37.086844"/> | |
| 413 | +</g> | |
| 414 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 415 | +<use xlink:href="#glyph-2-16" x="284.454567" y="37.086844"/> | |
| 416 | +<use xlink:href="#glyph-2-17" x="289.753861" y="37.086844"/> | |
| 417 | +</g> | |
| 418 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 419 | +<use xlink:href="#glyph-2-10" x="296.791592" y="37.086844"/> | |
| 420 | +<use xlink:href="#glyph-2-11" x="300.713573" y="37.086844"/> | |
| 421 | +<use xlink:href="#glyph-2-18" x="305.61815" y="37.086844"/> | |
| 422 | +<use xlink:href="#glyph-2-7" x="308.834678" y="37.086844"/> | |
| 423 | +<use xlink:href="#glyph-2-9" x="311.866446" y="37.086844"/> | |
| 424 | +<use xlink:href="#glyph-2-19" x="314.184362" y="37.086844"/> | |
| 425 | +</g> | |
| 426 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 427 | +<use xlink:href="#glyph-4-0" x="320.977654" y="37.086844"/> | |
| 428 | +</g> | |
| 429 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 430 | +<use xlink:href="#glyph-2-20" x="330.345287" y="37.086844"/> | |
| 431 | +<use xlink:href="#glyph-2-21" x="334.460428" y="37.086844"/> | |
| 432 | +</g> | |
| 433 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 434 | +<use xlink:href="#glyph-2-23" x="336.22406" y="37.086844"/> | |
| 435 | +</g> | |
| 436 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 437 | +<use xlink:href="#glyph-2-20" x="339.868899" y="37.086844"/> | |
| 438 | +</g> | |
| 439 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 440 | +<use xlink:href="#glyph-2-14" x="345.386548" y="37.086844"/> | |
| 441 | +</g> | |
| 442 | +<path fill="none" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000652174 -0.000670421 L 17.009421 -0.000670421 " transform="matrix(0.996422, 0, 0, -0.996422, 259.254556, 46.464176)"/> | |
| 443 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="0.9" stroke-width="1.39478" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 8.502424 2.29269 L 10.490004 -1.145391 L 6.518765 -1.145391 Z M 8.502424 2.29269 " transform="matrix(0.996422, 0, 0, -0.996422, 259.254556, 46.464176)"/> | |
| 444 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 445 | +<use xlink:href="#glyph-2-0" x="278.882086" y="49.070817"/> | |
| 446 | +</g> | |
| 447 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 448 | +<use xlink:href="#glyph-2-16" x="282.930041" y="49.070817"/> | |
| 449 | +<use xlink:href="#glyph-2-17" x="288.229335" y="49.070817"/> | |
| 450 | +</g> | |
| 451 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 452 | +<use xlink:href="#glyph-2-10" x="295.267066" y="49.070817"/> | |
| 453 | +<use xlink:href="#glyph-2-11" x="299.189047" y="49.070817"/> | |
| 454 | +<use xlink:href="#glyph-2-18" x="304.093623" y="49.070817"/> | |
| 455 | +<use xlink:href="#glyph-2-7" x="307.310152" y="49.070817"/> | |
| 456 | +<use xlink:href="#glyph-2-9" x="310.341919" y="49.070817"/> | |
| 457 | +<use xlink:href="#glyph-2-19" x="312.659835" y="49.070817"/> | |
| 458 | +</g> | |
| 459 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 460 | +<use xlink:href="#glyph-4-0" x="319.453128" y="49.070817"/> | |
| 461 | +</g> | |
| 462 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 463 | +<use xlink:href="#glyph-2-24" x="328.820761" y="49.070817"/> | |
| 464 | +</g> | |
| 465 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 466 | +<use xlink:href="#glyph-2-21" x="333.313823" y="49.070817"/> | |
| 467 | +<use xlink:href="#glyph-2-22" x="335.329402" y="49.070817"/> | |
| 468 | +<use xlink:href="#glyph-2-22" x="340.41874" y="49.070817"/> | |
| 469 | +</g> | |
| 470 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 471 | +<use xlink:href="#glyph-2-14" x="346.910585" y="49.070817"/> | |
| 472 | +</g> | |
| 473 | +</svg> | |
added
dist/assets/fig/868f917ffd7053a2.svg
+587 −0
@@ -0,0 +1,587 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="131.011pt" viewBox="0 0 314.242 131.011"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.171875 -4.75 L 2 -4.75 L 0.078125 -3.59375 L 0.65625 -2.71875 L 1.890625 -3.46875 L 1.890625 0 L 3.171875 0 Z M 3.171875 -4.75 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.375 C 0.578125 -1.375 0.25 -1.03125 0.25 -0.625 C 0.25 -0.203125 0.578125 0.140625 1 0.140625 C 1.421875 0.140625 1.75 -0.203125 1.75 -0.625 C 1.75 -1.03125 1.421875 -1.375 1 -1.375 Z M 1 -1.375 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.921875 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 4.03125 0 L 4.171875 -1.09375 L 1.921875 -1.09375 Z M 1.921875 -5.796875 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.484375 -6 L 2.96875 -6.984375 L 1.140625 -5.875 L 1.515625 -5.203125 Z M 4.390625 -2.3125 C 4.390625 -3.75 3.609375 -4.578125 2.34375 -4.578125 C 1 -4.578125 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.78125 -0.125 4.234375 -0.46875 L 3.6875 -1.21875 C 3.296875 -0.9375 2.984375 -0.8125 2.625 -0.8125 C 2.078125 -0.8125 1.703125 -1.03125 1.609375 -1.828125 L 4.359375 -1.828125 C 4.375 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.671875 -3.421875 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.078125 -3.28125 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.296875 -5.15625 C 3.765625 -4.84375 3.1875 -4.5625 2.203125 -4.578125 C 1.046875 -4.578125 0.265625 -3.96875 0.265625 -2.953125 C 0.265625 -2.375 0.484375 -1.984375 1.046875 -1.6875 C 0.734375 -1.484375 0.53125 -1.15625 0.53125 -0.84375 C 0.53125 -0.359375 0.921875 0.046875 1.890625 0.046875 L 2.53125 0.046875 C 2.96875 0.046875 3.171875 0.21875 3.171875 0.46875 C 3.171875 0.765625 2.984375 0.984375 2.203125 0.984375 C 1.40625 0.984375 1.234375 0.8125 1.234375 0.421875 L 0.046875 0.421875 C 0.046875 1.296875 0.5 1.859375 2.171875 1.859375 C 3.6875 1.859375 4.5 1.296875 4.5 0.390625 C 4.5 -0.359375 3.84375 -0.90625 2.796875 -0.90625 L 2.125 -0.90625 C 1.703125 -0.90625 1.640625 -1.03125 1.640625 -1.171875 C 1.640625 -1.265625 1.703125 -1.375 1.78125 -1.421875 C 1.953125 -1.390625 2.109375 -1.375 2.296875 -1.375 C 3.453125 -1.375 4.15625 -2 4.15625 -2.859375 C 4.15625 -3.4375 3.890625 -3.765625 3.328125 -4 C 3.890625 -4 4.296875 -4.046875 4.609375 -4.1875 Z M 2.234375 -3.71875 C 2.6875 -3.71875 2.90625 -3.484375 2.90625 -3 C 2.90625 -2.484375 2.671875 -2.21875 2.234375 -2.21875 C 1.84375 -2.21875 1.578125 -2.484375 1.578125 -2.96875 C 1.578125 -3.4375 1.828125 -3.71875 2.234375 -3.71875 Z M 2.234375 -3.71875 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 4.03125 -1.28125 L 4.03125 -3.015625 C 4.03125 -4.03125 3.484375 -4.578125 2.1875 -4.578125 C 1.6875 -4.578125 1.078125 -4.46875 0.515625 -4.25 L 0.8125 -3.390625 C 1.265625 -3.53125 1.703125 -3.625 1.984375 -3.625 C 2.53125 -3.625 2.734375 -3.453125 2.734375 -2.9375 L 2.734375 -2.734375 L 2.28125 -2.734375 C 0.9375 -2.734375 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.640625 0.140625 C 2.171875 0.140625 2.671875 -0.03125 2.984375 -0.515625 C 3.1875 -0.078125 3.53125 0.078125 4.046875 0.109375 L 4.328125 -0.75 C 4.125 -0.8125 4.03125 -0.9375 4.03125 -1.28125 Z M 2.03125 -0.796875 C 1.703125 -0.796875 1.515625 -1.015625 1.515625 -1.359375 C 1.515625 -1.8125 1.8125 -2.015625 2.40625 -2.015625 L 2.734375 -2.015625 L 2.734375 -1.21875 C 2.578125 -0.96875 2.328125 -0.796875 2.03125 -0.796875 Z M 2.03125 -0.796875 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.28125 0.078125 2.46875 -0.015625 L 2.21875 -0.9375 C 2.171875 -0.921875 2.09375 -0.90625 2 -0.90625 C 1.84375 -0.90625 1.765625 -1 1.765625 -1.171875 L 1.765625 -6.34375 L 0.453125 -6.203125 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 4.390625 -2.3125 C 4.390625 -3.75 3.609375 -4.578125 2.34375 -4.578125 C 1 -4.578125 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.78125 -0.125 4.234375 -0.46875 L 3.6875 -1.21875 C 3.296875 -0.9375 2.984375 -0.8125 2.625 -0.8125 C 2.078125 -0.8125 1.703125 -1.03125 1.625 -1.828125 L 4.359375 -1.828125 C 4.375 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.6875 -3.421875 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.078125 -3.28125 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 5.421875 -4.578125 C 4.84375 -4.578125 4.4375 -4.34375 4.09375 -3.875 C 3.90625 -4.328125 3.53125 -4.578125 3.046875 -4.578125 C 2.5 -4.578125 2.09375 -4.359375 1.75 -3.90625 L 1.65625 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 L 1.828125 -3.03125 C 2.015625 -3.40625 2.234375 -3.609375 2.515625 -3.609375 C 2.703125 -3.609375 2.890625 -3.484375 2.890625 -3.015625 L 2.890625 0 L 4.203125 0 L 4.203125 -3.03125 C 4.390625 -3.40625 4.59375 -3.609375 4.875 -3.609375 C 5.078125 -3.609375 5.25 -3.484375 5.25 -3.015625 L 5.25 0 L 6.578125 0 L 6.578125 -3.25 C 6.578125 -4.09375 6.109375 -4.578125 5.421875 -4.578125 Z M 5.421875 -4.578125 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 3.109375 -4.578125 C 2.546875 -4.578125 2.125 -4.34375 1.75 -3.90625 L 1.65625 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 L 1.828125 -3.03125 C 2.0625 -3.40625 2.3125 -3.609375 2.59375 -3.609375 C 2.859375 -3.609375 3.015625 -3.484375 3.015625 -3.015625 L 3.015625 0 L 4.34375 0 L 4.34375 -3.25 C 4.34375 -4.09375 3.875 -4.578125 3.109375 -4.578125 Z M 3.109375 -4.578125 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.859375 -1.046875 C 2.6875 -0.9375 2.53125 -0.90625 2.375 -0.90625 C 2.109375 -0.90625 1.96875 -1.046875 1.96875 -1.484375 L 1.96875 -3.515625 L 2.84375 -3.515625 L 2.984375 -4.4375 L 1.96875 -4.4375 L 1.96875 -5.546875 L 0.640625 -5.40625 L 0.640625 -4.4375 L 0.015625 -4.4375 L 0.015625 -3.515625 L 0.640625 -3.515625 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.09375 0.140625 C 2.5 0.140625 2.96875 0.03125 3.296875 -0.203125 Z M 2.859375 -1.046875 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 3.015625 -4.578125 C 2.578125 -4.578125 2.109375 -4.40625 1.734375 -3.953125 L 1.671875 -4.4375 L 0.515625 -4.4375 L 0.515625 1.859375 L 1.828125 1.71875 L 1.828125 -0.3125 C 2.109375 -0.015625 2.46875 0.140625 2.90625 0.140625 C 4 0.140625 4.671875 -0.859375 4.671875 -2.234375 C 4.671875 -3.671875 4.15625 -4.578125 3.015625 -4.578125 Z M 2.5 -0.828125 C 2.21875 -0.828125 2.015625 -0.953125 1.828125 -1.21875 L 1.828125 -3.09375 C 2.015625 -3.421875 2.296875 -3.609375 2.59375 -3.609375 C 3.03125 -3.609375 3.296875 -3.3125 3.296875 -2.21875 C 3.296875 -1.21875 3 -0.828125 2.5 -0.828125 Z M 2.5 -0.828125 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.921875 -4.5625 C 2.40625 -4.5625 1.96875 -4.203125 1.765625 -3.578125 L 1.65625 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 L 1.828125 -2.234375 C 1.984375 -2.890625 2.203125 -3.28125 2.75 -3.28125 C 2.890625 -3.28125 3.015625 -3.265625 3.15625 -3.234375 L 3.359375 -4.5 C 3.203125 -4.546875 3.078125 -4.5625 2.921875 -4.5625 Z M 2.921875 -4.5625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 1.15625 -6.78125 C 0.703125 -6.78125 0.390625 -6.453125 0.390625 -6.03125 C 0.390625 -5.59375 0.703125 -5.28125 1.15625 -5.28125 C 1.625 -5.28125 1.953125 -5.59375 1.953125 -6.03125 C 1.953125 -6.453125 1.625 -6.78125 1.15625 -6.78125 Z M 1.828125 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 Z M 1.828125 -4.4375 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 2.078125 -4.578125 C 0.96875 -4.578125 0.265625 -3.984375 0.265625 -3.234375 C 0.265625 -2.546875 0.703125 -2.09375 1.578125 -1.84375 C 2.375 -1.609375 2.515625 -1.515625 2.515625 -1.21875 C 2.515625 -0.953125 2.28125 -0.796875 1.875 -0.796875 C 1.4375 -0.796875 1.03125 -0.984375 0.6875 -1.234375 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.90625 0.140625 C 3.015625 0.140625 3.875 -0.40625 3.875 -1.328125 C 3.875 -2.109375 3.390625 -2.484375 2.515625 -2.734375 C 1.71875 -2.96875 1.59375 -3.0625 1.59375 -3.296875 C 1.59375 -3.5 1.765625 -3.640625 2.125 -3.640625 C 2.515625 -3.640625 2.890625 -3.515625 3.234375 -3.296875 L 3.71875 -4.03125 C 3.296875 -4.375 2.71875 -4.578125 2.078125 -4.578125 Z M 2.078125 -4.578125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.078125 -5.9375 C 1.21875 -5.9375 0.59375 -5.59375 0.109375 -5.046875 L 0.96875 -4.390625 C 1.265625 -4.734375 1.59375 -4.90625 1.9375 -4.90625 C 2.3125 -4.90625 2.53125 -4.71875 2.53125 -4.421875 C 2.53125 -3.734375 1.203125 -3.84375 1.203125 -2.390625 L 1.203125 -2.125 L 2.40625 -2.125 L 2.40625 -2.34375 C 2.40625 -3.28125 3.90625 -3.1875 3.90625 -4.546875 C 3.90625 -5.28125 3.296875 -5.9375 2.078125 -5.9375 Z M 1.8125 -1.375 C 1.390625 -1.375 1.0625 -1.03125 1.0625 -0.625 C 1.0625 -0.203125 1.390625 0.140625 1.8125 0.140625 C 2.234375 0.140625 2.5625 -0.203125 2.5625 -0.625 C 2.5625 -1.03125 2.234375 -1.375 1.8125 -1.375 Z M 1.8125 -1.375 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 2 -4.859375 C 1.171875 -4.859375 0.546875 -4.546875 0.046875 -3.921875 L 0.8125 -3.3125 C 1.15625 -3.703125 1.46875 -3.875 1.859375 -3.875 C 2.296875 -3.875 2.5625 -3.609375 2.5625 -3.234375 C 2.5625 -2.6875 2.25 -2.34375 0.203125 -0.9375 L 0.203125 0 L 3.875 0 L 4.015625 -1 L 1.8125 -1 C 3.59375 -2.0625 3.90625 -2.546875 3.90625 -3.328125 C 3.90625 -4.171875 3.1875 -4.859375 2 -4.859375 Z M 2 -4.859375 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 2.421875 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 1.921875 0 L 1.921875 -1.9375 L 2.546875 -1.9375 C 3.875 -1.9375 4.828125 -2.5625 4.828125 -3.90625 C 4.828125 -5.171875 3.90625 -5.796875 2.421875 -5.796875 Z M 2.421875 -2.921875 L 1.921875 -2.921875 L 1.921875 -4.8125 L 2.40625 -4.8125 C 3.078125 -4.8125 3.421875 -4.515625 3.421875 -3.90625 C 3.421875 -3.171875 3.046875 -2.921875 2.421875 -2.921875 Z M 2.421875 -2.921875 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 3.109375 -4.578125 C 2.578125 -4.578125 2.1875 -4.375 1.828125 -3.96875 L 1.828125 -6.34375 L 0.515625 -6.203125 L 0.515625 0 L 1.828125 0 L 1.828125 -3.046875 C 2.0625 -3.40625 2.3125 -3.609375 2.59375 -3.609375 C 2.84375 -3.609375 3.015625 -3.484375 3.015625 -3.015625 L 3.015625 0 L 4.34375 0 L 4.34375 -3.25 C 4.34375 -4.09375 3.875 -4.578125 3.109375 -4.578125 Z M 3.109375 -4.578125 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 4.375 -4.4375 L 3.015625 -4.4375 L 2.140625 -0.84375 L 1.359375 -4.4375 L -0.046875 -4.4375 L 1.296875 0 L 1.75 0 C 1.515625 0.5625 1.203125 0.8125 0.328125 0.921875 L 0.46875 1.859375 C 1.859375 1.78125 2.609375 1.125 2.96875 0.015625 Z M 4.375 -4.4375 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 3.296875 -4.4375 L 3.234375 -4.046875 C 2.921875 -4.40625 2.546875 -4.578125 2.09375 -4.578125 C 0.984375 -4.578125 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.953125 0.140625 C 2.5 0.140625 2.875 -0.09375 3.140625 -0.421875 L 3.140625 1.71875 L 4.453125 1.859375 L 4.453125 -4.4375 Z M 2.359375 -0.828125 C 1.9375 -0.828125 1.640625 -1.125 1.640625 -2.21875 C 1.640625 -3.21875 1.96875 -3.625 2.453125 -3.625 C 2.734375 -3.625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.921875 -1 2.6875 -0.828125 2.359375 -0.828125 Z M 2.359375 -0.828125 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 4.234375 -4.4375 L 2.921875 -4.4375 L 2.921875 -1.359375 C 2.71875 -1.015625 2.46875 -0.84375 2.203125 -0.84375 C 1.921875 -0.84375 1.765625 -0.96875 1.765625 -1.421875 L 1.765625 -4.4375 L 0.453125 -4.4375 L 0.453125 -1.25 C 0.453125 -0.390625 0.859375 0.140625 1.6875 0.140625 C 2.28125 0.140625 2.71875 -0.09375 3.03125 -0.5625 L 3.09375 0 L 4.234375 0 Z M 4.234375 -4.4375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 2.4375 -4.578125 C 1.09375 -4.578125 0.265625 -3.640625 0.265625 -2.21875 C 0.265625 -0.734375 1.09375 0.140625 2.4375 0.140625 C 3.796875 0.140625 4.609375 -0.796875 4.609375 -2.21875 C 4.609375 -3.71875 3.796875 -4.578125 2.4375 -4.578125 Z M 2.4375 -3.609375 C 2.96875 -3.609375 3.25 -3.203125 3.25 -2.21875 C 3.25 -1.25 2.96875 -0.828125 2.4375 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.21875 C 1.640625 -3.1875 1.90625 -3.609375 2.4375 -3.609375 Z M 2.4375 -3.609375 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 3.03125 -4.578125 C 2.53125 -4.578125 2.09375 -4.359375 1.828125 -3.984375 L 1.828125 -6.34375 L 0.515625 -6.203125 L 0.515625 0 L 1.6875 0 L 1.75 -0.421875 C 2.015625 -0.078125 2.421875 0.140625 2.90625 0.140625 C 4.015625 0.140625 4.671875 -0.84375 4.671875 -2.21875 C 4.671875 -3.703125 4.09375 -4.578125 3.03125 -4.578125 Z M 2.53125 -0.8125 C 2.234375 -0.8125 2 -0.984375 1.828125 -1.25 L 1.828125 -3.09375 C 2.015625 -3.421875 2.28125 -3.609375 2.578125 -3.609375 C 3 -3.609375 3.296875 -3.34375 3.296875 -2.21875 C 3.296875 -1.171875 2.984375 -0.8125 2.53125 -0.8125 Z M 2.53125 -0.8125 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 1.984375 -4.859375 C 1.234375 -4.859375 0.609375 -4.609375 0.078125 -4.109375 L 0.734375 -3.40625 C 1.0625 -3.71875 1.421875 -3.890625 1.828125 -3.890625 C 2.296875 -3.890625 2.59375 -3.65625 2.59375 -3.25 C 2.59375 -2.8125 2.28125 -2.546875 1.765625 -2.546875 L 1.453125 -2.546875 L 1.296875 -1.625 L 1.765625 -1.625 C 2.40625 -1.625 2.703125 -1.390625 2.703125 -0.796875 C 2.703125 -0.265625 2.34375 0.03125 1.8125 0.03125 C 1.375 0.03125 1.046875 -0.140625 0.65625 -0.515625 L -0.046875 0.171875 C 0.390625 0.71875 1.03125 1.03125 1.890625 1.03125 C 3.296875 1.03125 4.0625 0.25 4.0625 -0.734375 C 4.0625 -1.640625 3.484375 -2.046875 2.75 -2.109375 C 3.453125 -2.3125 3.875 -2.78125 3.875 -3.4375 C 3.875 -4.21875 3.21875 -4.859375 1.984375 -4.859375 Z M 1.984375 -4.859375 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 0.546875 0 L 1.921875 0 L 1.921875 -2.296875 L 3.609375 -2.296875 L 3.609375 -3.28125 L 1.921875 -3.28125 L 1.921875 -4.8125 L 3.859375 -4.8125 L 4 -5.796875 L 0.546875 -5.796875 Z M 0.546875 0 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 2.4375 -4.578125 C 1.109375 -4.578125 0.265625 -3.59375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.078125 0.140625 3.546875 -0.0625 3.96875 -0.390625 L 3.390625 -1.203125 C 3.0625 -1 2.84375 -0.90625 2.53125 -0.90625 C 2 -0.90625 1.65625 -1.203125 1.65625 -2.1875 C 1.65625 -3.1875 1.984375 -3.5625 2.546875 -3.5625 C 2.84375 -3.5625 3.109375 -3.46875 3.390625 -3.25 L 3.96875 -4.03125 C 3.53125 -4.390625 3.0625 -4.578125 2.4375 -4.578125 Z M 2.4375 -4.578125 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 1.796875 -6.984375 L 1.28125 -6 L 3.25 -5.203125 L 3.625 -5.875 Z M 4.390625 -2.3125 C 4.390625 -3.75 3.609375 -4.578125 2.34375 -4.578125 C 1 -4.578125 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.78125 -0.125 4.234375 -0.46875 L 3.6875 -1.21875 C 3.296875 -0.9375 2.984375 -0.8125 2.625 -0.8125 C 2.078125 -0.8125 1.703125 -1.03125 1.625 -1.828125 L 4.359375 -1.828125 C 4.375 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.6875 -3.421875 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.078125 -3.28125 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 2.546875 -5.359375 C 2.734375 -5.359375 3 -5.328125 3.25 -5.203125 L 3.609375 -6.0625 C 3.28125 -6.234375 2.84375 -6.34375 2.390625 -6.34375 C 1.25 -6.34375 0.6875 -5.6875 0.6875 -4.828125 L 0.6875 -4.4375 L 0.03125 -4.4375 L 0.03125 -3.515625 L 0.6875 -3.515625 L 0.6875 0 L 2.015625 0 L 2.015625 -3.515625 L 2.921875 -3.515625 L 3.0625 -4.4375 L 2.015625 -4.4375 L 2.015625 -4.78125 C 2.015625 -5.203125 2.171875 -5.359375 2.546875 -5.359375 Z M 2.546875 -5.359375 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 4.5 -1.21875 L 3.875 -1.21875 L 3.875 -2.5625 L 2.78125 -2.5625 L 2.640625 -1.21875 L 1.484375 -1.21875 L 2.84375 -4.453125 L 1.71875 -4.859375 L 0.109375 -1.09375 L 0.109375 -0.25 L 2.609375 -0.25 L 2.609375 0.921875 L 3.875 0.921875 L 3.875 -0.25 L 4.5 -0.25 Z M 4.5 -1.21875 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-0-30"> | |
| 96 | +<path d="M 5.859375 -5.796875 L 4.125 -5.796875 L 3.3125 -1.859375 L 2.4375 -5.796875 L 0.703125 -5.796875 L 0.28125 0 L 1.609375 0 L 1.71875 -2.25 C 1.75 -3.0625 1.75 -3.78125 1.6875 -4.625 L 2.640625 -0.609375 L 3.9375 -0.609375 L 4.828125 -4.625 C 4.796875 -3.90625 4.8125 -3.078125 4.84375 -2.265625 L 4.953125 0 L 6.296875 0 Z M 5.859375 -5.796875 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-0-31"> | |
| 99 | +<path d="M 2.9375 -2.375 L 4.140625 -4.4375 L 2.734375 -4.4375 L 2.140625 -3.015625 L 1.53125 -4.4375 L 0.046875 -4.4375 L 1.34375 -2.328125 L -0.09375 0 L 1.34375 0 L 2.09375 -1.65625 L 2.875 0 L 4.359375 0 Z M 2.9375 -2.375 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-0-32"> | |
| 102 | +<path d="M 3.140625 -6.34375 L 3.140625 -4.15625 C 2.875 -4.421875 2.515625 -4.578125 2.078125 -4.578125 C 0.984375 -4.578125 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.953125 0.140625 C 2.5625 0.140625 2.953125 -0.15625 3.21875 -0.515625 L 3.28125 0 L 4.453125 0 L 4.453125 -6.203125 Z M 2.359375 -0.828125 C 1.9375 -0.828125 1.640625 -1.125 1.640625 -2.21875 C 1.640625 -3.21875 1.96875 -3.625 2.4375 -3.625 C 2.734375 -3.625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.921875 -1 2.6875 -0.828125 2.359375 -0.828125 Z M 2.359375 -0.828125 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-0"> | |
| 105 | +<path d="M 0.265625 -2.296875 L 6.34375 -2.296875 L 6.34375 -2.9375 L 0.265625 -2.9375 Z M 0.265625 -2.296875 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-1"> | |
| 108 | +<path d="M 1.984375 -4.5 C 1.078125 -4.5 0.40625 -4 0.40625 -3.296875 C 0.40625 -2.671875 0.78125 -2.265625 1.734375 -2.015625 C 2.578125 -1.78125 2.796875 -1.625 2.796875 -1.1875 C 2.796875 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.375 -0.515625 0.96875 -0.671875 0.625 -0.9375 L 0.203125 -0.46875 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.765625 0.09375 3.609375 -0.3125 3.609375 -1.234375 C 3.609375 -2 3.078125 -2.375 2.140625 -2.609375 C 1.4375 -2.796875 1.203125 -2.953125 1.203125 -3.3125 C 1.203125 -3.671875 1.515625 -3.890625 2.015625 -3.890625 C 2.421875 -3.890625 2.765625 -3.765625 3.15625 -3.515625 L 3.484375 -4 C 3.0625 -4.328125 2.609375 -4.5 1.984375 -4.5 Z M 1.984375 -4.5 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-2"> | |
| 111 | +<path d="M 1.140625 -6.515625 C 0.828125 -6.515625 0.609375 -6.296875 0.609375 -6 C 0.609375 -5.703125 0.828125 -5.46875 1.140625 -5.46875 C 1.46875 -5.46875 1.6875 -5.703125 1.6875 -6 C 1.6875 -6.296875 1.46875 -6.515625 1.140625 -6.515625 Z M 1.53125 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 Z M 1.53125 -4.40625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-3"> | |
| 114 | +<path d="M 2.84375 -4.5 C 2.265625 -4.5 1.796875 -4.203125 1.5 -3.75 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -3.125 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.078125 -3.90625 3.359375 -3.71875 3.359375 -3.046875 L 3.359375 0 L 4.125 0 L 4.125 -3.15625 C 4.125 -4 3.65625 -4.5 2.84375 -4.5 Z M 2.84375 -4.5 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-4"> | |
| 117 | +<path d="M 2.453125 -4.5 C 1.203125 -4.5 0.46875 -3.5625 0.46875 -2.203125 C 0.46875 -0.796875 1.1875 0.09375 2.4375 0.09375 C 3.6875 0.09375 4.40625 -0.84375 4.40625 -2.203125 C 4.40625 -3.609375 3.703125 -4.5 2.453125 -4.5 Z M 2.453125 -3.890625 C 3.171875 -3.890625 3.578125 -3.359375 3.578125 -2.203125 C 3.578125 -1.046875 3.171875 -0.515625 2.4375 -0.515625 C 1.703125 -0.515625 1.296875 -1.046875 1.296875 -2.203125 C 1.296875 -3.359375 1.71875 -3.890625 2.453125 -3.890625 Z M 2.453125 -3.890625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-5"> | |
| 120 | +<path d="M 1 -4.140625 C 0.671875 -4.140625 0.421875 -3.875 0.421875 -3.5625 C 0.421875 -3.234375 0.671875 -2.96875 1 -2.96875 C 1.328125 -2.96875 1.578125 -3.234375 1.578125 -3.5625 C 1.578125 -3.875 1.328125 -4.140625 1 -4.140625 Z M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.796875 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.328125 0.09375 1.578125 -0.15625 1.578125 -0.484375 C 1.578125 -0.796875 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-6"> | |
| 123 | +<path d="M 4.03125 -4.40625 L 3.265625 -4.40625 L 3.265625 -1.265625 C 3 -0.8125 2.640625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.484375 -0.734375 1.484375 -1.328125 L 1.484375 -4.40625 L 0.71875 -4.40625 L 0.71875 -1.25 C 0.71875 -0.390625 1.171875 0.09375 1.953125 0.09375 C 2.578125 0.09375 2.984375 -0.15625 3.3125 -0.6875 L 3.375 0 L 4.03125 0 Z M 4.03125 -4.40625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-7"> | |
| 126 | +<path d="M 3.71875 -1.03125 L 3.71875 -3.046875 C 3.71875 -3.96875 3.234375 -4.5 2.171875 -4.5 C 1.6875 -4.5 1.203125 -4.40625 0.65625 -4.203125 L 0.84375 -3.640625 C 1.296875 -3.796875 1.703125 -3.875 2.03125 -3.875 C 2.640625 -3.875 2.953125 -3.640625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.734375 -0.09375 3.046875 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.90625 0.09375 L 4.09375 -0.4375 C 3.859375 -0.515625 3.71875 -0.640625 3.71875 -1.03125 Z M 1.921875 -0.46875 C 1.40625 -0.46875 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.15625 C 2.703125 -0.703125 2.359375 -0.46875 1.921875 -0.46875 Z M 1.921875 -0.46875 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-8"> | |
| 129 | +<path d="M 4.125 -4.90625 C 3.609375 -4.671875 3.203125 -4.484375 2.109375 -4.5 C 1.140625 -4.5 0.40625 -3.875 0.40625 -2.96875 C 0.40625 -2.40625 0.640625 -2.015625 1.15625 -1.75 C 0.84375 -1.53125 0.671875 -1.25 0.671875 -0.96875 C 0.671875 -0.53125 1.015625 -0.140625 1.8125 -0.140625 L 2.5 -0.140625 C 3.046875 -0.140625 3.390625 0.078125 3.390625 0.5 C 3.390625 0.9375 3.046875 1.171875 2.09375 1.171875 C 1.125 1.171875 0.90625 0.9375 0.90625 0.4375 L 0.203125 0.4375 C 0.203125 1.34375 0.65625 1.78125 2.09375 1.78125 C 3.453125 1.78125 4.15625 1.296875 4.15625 0.4375 C 4.15625 -0.265625 3.5625 -0.78125 2.65625 -0.78125 L 1.953125 -0.78125 C 1.5 -0.78125 1.375 -0.9375 1.375 -1.140625 C 1.375 -1.296875 1.46875 -1.453125 1.59375 -1.546875 C 1.78125 -1.484375 1.953125 -1.46875 2.15625 -1.46875 C 3.203125 -1.46875 3.84375 -2.09375 3.84375 -2.953125 C 3.84375 -3.46875 3.578125 -3.84375 3.0625 -4.078125 C 3.5625 -4.078125 3.984375 -4.09375 4.34375 -4.203125 Z M 2.109375 -3.953125 C 2.734375 -3.953125 3.046875 -3.625 3.046875 -2.96875 C 3.046875 -2.34375 2.71875 -1.96875 2.125 -1.96875 C 1.515625 -1.96875 1.203125 -2.375 1.203125 -2.96875 C 1.203125 -3.546875 1.515625 -3.953125 2.109375 -3.953125 Z M 2.109375 -3.953125 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-1-9"> | |
| 132 | +<path d="M 4.125 -2.328125 C 4.125 -3.671875 3.5 -4.5 2.3125 -4.5 C 1.171875 -4.5 0.46875 -3.53125 0.46875 -2.15625 C 0.46875 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.03125 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.109375 -2.046875 4.125 -2.1875 4.125 -2.328125 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.484375 1.734375 -3.890625 2.328125 -3.890625 C 3.015625 -3.890625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-1-10"> | |
| 135 | +<path d="M 3.328125 -6.046875 L 3 -6.703125 L 1.328125 -5.75 L 1.5625 -5.328125 Z M 4.125 -2.328125 C 4.125 -3.671875 3.5 -4.5 2.3125 -4.5 C 1.171875 -4.5 0.46875 -3.53125 0.46875 -2.15625 C 0.46875 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.03125 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.109375 -2.046875 4.125 -2.1875 4.125 -2.328125 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.484375 1.734375 -3.890625 2.328125 -3.890625 C 3.015625 -3.890625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-1-11"> | |
| 138 | +<path d="M 1.640625 0.09375 C 1.859375 0.09375 2.078125 0.046875 2.25 -0.046875 L 2.046875 -0.578125 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.484375 -0.65625 1.484375 -0.890625 L 1.484375 -6.265625 L 0.71875 -6.171875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-1-12"> | |
| 141 | +<path d="M 5.1875 -4.5 C 4.59375 -4.5 4.203125 -4.1875 3.875 -3.71875 C 3.71875 -4.21875 3.3125 -4.5 2.765625 -4.5 C 2.1875 -4.5 1.78125 -4.203125 1.5 -3.765625 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -3.125 C 1.828125 -3.59375 2.09375 -3.90625 2.578125 -3.90625 C 2.90625 -3.90625 3.1875 -3.71875 3.1875 -3.046875 L 3.1875 0 L 3.96875 0 L 3.96875 -3.125 C 4.265625 -3.59375 4.515625 -3.90625 5 -3.90625 C 5.328125 -3.90625 5.625 -3.71875 5.625 -3.046875 L 5.625 0 L 6.390625 0 L 6.390625 -3.15625 C 6.390625 -3.984375 5.90625 -4.5 5.1875 -4.5 Z M 5.1875 -4.5 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-1-13"> | |
| 144 | +<path d="M 0.5 -2.296875 L 2.875 -2.296875 L 2.875 -2.9375 L 0.5 -2.9375 Z M 0.5 -2.296875 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-1-14"> | |
| 147 | +<path d="M 2.796875 -4.5 C 2.296875 -4.5 1.8125 -4.265625 1.484375 -3.8125 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 1.78125 L 1.53125 1.6875 L 1.53125 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.6875 0.09375 C 3.828125 0.09375 4.421875 -0.875 4.421875 -2.203125 C 4.421875 -3.59375 3.96875 -4.5 2.796875 -4.5 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.53125 -1.0625 L 1.53125 -3.203125 C 1.765625 -3.5625 2.125 -3.890625 2.59375 -3.890625 C 3.265625 -3.890625 3.59375 -3.359375 3.59375 -2.203125 C 3.59375 -1.046875 3.203125 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-1-15"> | |
| 150 | +<path d="M 2.71875 -0.703125 C 2.515625 -0.59375 2.328125 -0.53125 2.140625 -0.53125 C 1.75 -0.53125 1.609375 -0.75 1.609375 -1.1875 L 1.609375 -3.8125 L 2.578125 -3.8125 L 2.65625 -4.40625 L 1.609375 -4.40625 L 1.609375 -5.484375 L 0.84375 -5.40625 L 0.84375 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.84375 -3.8125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.28125 0.09375 2.03125 0.09375 C 2.40625 0.09375 2.71875 0 3.015625 -0.203125 Z M 2.71875 -0.703125 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-2-0"> | |
| 153 | +<path d="M 5.546875 -6.4375 L 4.015625 -6.4375 L 4.015625 -2.203125 C 4.015625 -1.375 3.71875 -0.96875 3.015625 -0.96875 C 2.328125 -0.96875 2.03125 -1.375 2.03125 -2.203125 L 2.03125 -6.4375 L 0.515625 -6.4375 L 0.515625 -2.140625 C 0.515625 -0.78125 1.34375 0.15625 3.015625 0.15625 C 4.703125 0.15625 5.546875 -0.84375 5.546875 -2.140625 Z M 5.546875 -6.4375 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-2-1"> | |
| 156 | +<path d="M 3.171875 -1.15625 C 2.984375 -1.046875 2.8125 -1 2.65625 -1 C 2.34375 -1 2.1875 -1.171875 2.1875 -1.640625 L 2.1875 -3.90625 L 3.15625 -3.90625 L 3.3125 -4.9375 L 2.1875 -4.9375 L 2.1875 -6.171875 L 0.71875 -6 L 0.71875 -4.9375 L 0.015625 -4.9375 L 0.015625 -3.90625 L 0.71875 -3.90625 L 0.71875 -1.625 C 0.71875 -0.46875 1.25 0.15625 2.328125 0.15625 C 2.78125 0.15625 3.296875 0.03125 3.671875 -0.234375 Z M 3.171875 -1.15625 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-2-2"> | |
| 159 | +<path d="M 1.296875 -7.546875 C 0.796875 -7.546875 0.421875 -7.171875 0.421875 -6.703125 C 0.421875 -6.234375 0.796875 -5.859375 1.296875 -5.859375 C 1.8125 -5.859375 2.171875 -6.234375 2.171875 -6.703125 C 2.171875 -7.171875 1.8125 -7.546875 1.296875 -7.546875 Z M 2.03125 -4.9375 L 0.5625 -4.9375 L 0.5625 0 L 2.03125 0 Z M 2.03125 -4.9375 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-2-3"> | |
| 162 | +<path d="M 1.859375 0.15625 C 2.21875 0.15625 2.53125 0.078125 2.75 -0.015625 L 2.46875 -1.046875 C 2.40625 -1.015625 2.328125 -1 2.234375 -1 C 2.046875 -1 1.96875 -1.109375 1.96875 -1.3125 L 1.96875 -7.0625 L 0.5 -6.890625 L 0.5 -1.25 C 0.5 -0.359375 1 0.15625 1.859375 0.15625 Z M 1.859375 0.15625 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-2-4"> | |
| 165 | +<path d="M 2.3125 -5.09375 C 1.0625 -5.09375 0.296875 -4.4375 0.296875 -3.59375 C 0.296875 -2.828125 0.78125 -2.328125 1.75 -2.046875 C 2.65625 -1.796875 2.796875 -1.6875 2.796875 -1.359375 C 2.796875 -1.0625 2.53125 -0.890625 2.078125 -0.890625 C 1.59375 -0.890625 1.140625 -1.09375 0.765625 -1.375 L 0.0625 -0.578125 C 0.546875 -0.140625 1.265625 0.15625 2.125 0.15625 C 3.34375 0.15625 4.3125 -0.453125 4.3125 -1.46875 C 4.3125 -2.359375 3.765625 -2.765625 2.796875 -3.046875 C 1.90625 -3.296875 1.78125 -3.40625 1.78125 -3.671875 C 1.78125 -3.890625 1.96875 -4.046875 2.375 -4.046875 C 2.796875 -4.046875 3.203125 -3.90625 3.59375 -3.65625 L 4.125 -4.484375 C 3.671875 -4.859375 3.03125 -5.09375 2.3125 -5.09375 Z M 2.3125 -5.09375 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-2-5"> | |
| 168 | +<path d="M 4.484375 -1.4375 L 4.484375 -3.34375 C 4.484375 -4.484375 3.875 -5.09375 2.4375 -5.09375 C 1.875 -5.09375 1.203125 -4.96875 0.578125 -4.734375 L 0.90625 -3.765625 C 1.40625 -3.9375 1.890625 -4.03125 2.203125 -4.03125 C 2.8125 -4.03125 3.046875 -3.84375 3.046875 -3.265625 L 3.046875 -3.046875 L 2.53125 -3.046875 C 1.046875 -3.046875 0.21875 -2.46875 0.21875 -1.390625 C 0.21875 -0.484375 0.84375 0.15625 1.828125 0.15625 C 2.421875 0.15625 2.96875 -0.03125 3.3125 -0.578125 C 3.546875 -0.09375 3.9375 0.078125 4.515625 0.125 L 4.8125 -0.828125 C 4.578125 -0.90625 4.484375 -1.046875 4.484375 -1.4375 Z M 2.265625 -0.890625 C 1.890625 -0.890625 1.6875 -1.125 1.6875 -1.515625 C 1.6875 -2.015625 2.015625 -2.234375 2.671875 -2.234375 L 3.046875 -2.234375 L 3.046875 -1.359375 C 2.859375 -1.0625 2.59375 -0.890625 2.265625 -0.890625 Z M 2.265625 -0.890625 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-2-6"> | |
| 171 | +<path d="M 2.71875 -5.09375 C 1.203125 -5.09375 0.296875 -4.046875 0.296875 -2.46875 C 0.296875 -0.8125 1.21875 0.15625 2.71875 0.15625 C 4.21875 0.15625 5.125 -0.890625 5.125 -2.46875 C 5.125 -4.125 4.21875 -5.09375 2.71875 -5.09375 Z M 2.71875 -4.015625 C 3.3125 -4.015625 3.609375 -3.5625 3.609375 -2.46875 C 3.609375 -1.390625 3.3125 -0.921875 2.71875 -0.921875 C 2.125 -0.921875 1.828125 -1.375 1.828125 -2.46875 C 1.828125 -3.546875 2.125 -4.015625 2.71875 -4.015625 Z M 2.71875 -4.015625 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-2-7"> | |
| 174 | +<path d="M 3.453125 -5.09375 C 2.828125 -5.09375 2.359375 -4.828125 1.953125 -4.34375 L 1.84375 -4.9375 L 0.5625 -4.9375 L 0.5625 0 L 2.03125 0 L 2.03125 -3.375 C 2.28125 -3.78125 2.5625 -4.015625 2.890625 -4.015625 C 3.171875 -4.015625 3.359375 -3.875 3.359375 -3.359375 L 3.359375 0 L 4.828125 0 L 4.828125 -3.609375 C 4.828125 -4.546875 4.3125 -5.09375 3.453125 -5.09375 Z M 3.453125 -5.09375 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-2-8"> | |
| 177 | +<path d="M 3.359375 -5.09375 C 2.859375 -5.09375 2.34375 -4.90625 1.9375 -4.390625 L 1.859375 -4.9375 L 0.5625 -4.9375 L 0.5625 2.0625 L 2.03125 1.90625 L 2.03125 -0.359375 C 2.34375 -0.015625 2.75 0.15625 3.234375 0.15625 C 4.453125 0.15625 5.203125 -0.953125 5.203125 -2.484375 C 5.203125 -4.078125 4.625 -5.09375 3.359375 -5.09375 Z M 2.78125 -0.921875 C 2.46875 -0.921875 2.234375 -1.0625 2.03125 -1.359375 L 2.03125 -3.4375 C 2.25 -3.796875 2.546875 -4.015625 2.875 -4.015625 C 3.375 -4.015625 3.671875 -3.6875 3.671875 -2.46875 C 3.671875 -1.359375 3.328125 -0.921875 2.78125 -0.921875 Z M 2.78125 -0.921875 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-2-9"> | |
| 180 | +<path d="M 6.03125 -5.09375 C 5.390625 -5.09375 4.9375 -4.828125 4.546875 -4.3125 C 4.34375 -4.8125 3.9375 -5.09375 3.390625 -5.09375 C 2.78125 -5.09375 2.328125 -4.84375 1.953125 -4.34375 L 1.84375 -4.9375 L 0.5625 -4.9375 L 0.5625 0 L 2.03125 0 L 2.03125 -3.375 C 2.25 -3.78125 2.484375 -4.015625 2.796875 -4.015625 C 3.015625 -4.015625 3.203125 -3.875 3.203125 -3.359375 L 3.203125 0 L 4.671875 0 L 4.671875 -3.375 C 4.890625 -3.78125 5.109375 -4.015625 5.421875 -4.015625 C 5.65625 -4.015625 5.84375 -3.875 5.84375 -3.359375 L 5.84375 0 L 7.3125 0 L 7.3125 -3.609375 C 7.3125 -4.546875 6.78125 -5.09375 6.03125 -5.09375 Z M 6.03125 -5.09375 "/> | |
| 181 | +</g> | |
| 182 | +<g id="glyph-2-10"> | |
| 183 | +<path d="M 4.875 -2.5625 C 4.875 -4.171875 4.015625 -5.09375 2.609375 -5.09375 C 1.109375 -5.09375 0.296875 -3.921875 0.296875 -2.4375 C 0.296875 -0.90625 1.140625 0.15625 2.78125 0.15625 C 3.578125 0.15625 4.21875 -0.140625 4.703125 -0.53125 L 4.09375 -1.34375 C 3.671875 -1.046875 3.3125 -0.90625 2.921875 -0.90625 C 2.3125 -0.90625 1.890625 -1.15625 1.796875 -2.03125 L 4.859375 -2.03125 C 4.875 -2.1875 4.875 -2.40625 4.875 -2.5625 Z M 3.4375 -2.921875 L 1.796875 -2.921875 C 1.875 -3.8125 2.140625 -4.125 2.640625 -4.125 C 3.21875 -4.125 3.4375 -3.65625 3.4375 -2.984375 Z M 3.4375 -2.921875 "/> | |
| 184 | +</g> | |
| 185 | +<g id="glyph-2-11"> | |
| 186 | +<path d="M 3.25 -5.078125 C 2.671875 -5.078125 2.1875 -4.671875 1.96875 -3.984375 L 1.84375 -4.9375 L 0.5625 -4.9375 L 0.5625 0 L 2.03125 0 L 2.03125 -2.484375 C 2.203125 -3.21875 2.453125 -3.65625 3.0625 -3.65625 C 3.21875 -3.65625 3.34375 -3.625 3.5 -3.59375 L 3.734375 -5.015625 C 3.5625 -5.0625 3.4375 -5.078125 3.25 -5.078125 Z M 3.25 -5.078125 "/> | |
| 187 | +</g> | |
| 188 | +<g id="glyph-2-12"> | |
| 189 | +<path d="M 4.71875 -4.9375 L 3.25 -4.9375 L 3.25 -1.5 C 3.03125 -1.140625 2.75 -0.9375 2.4375 -0.9375 C 2.140625 -0.9375 1.96875 -1.078125 1.96875 -1.578125 L 1.96875 -4.9375 L 0.5 -4.9375 L 0.5 -1.390625 C 0.5 -0.4375 0.953125 0.15625 1.875 0.15625 C 2.53125 0.15625 3.015625 -0.109375 3.375 -0.625 L 3.4375 0 L 4.71875 0 Z M 4.71875 -4.9375 "/> | |
| 190 | +</g> | |
| 191 | +<g id="glyph-3-0"> | |
| 192 | +<path d="M 3.21875 -6.515625 C 1.625 -6.515625 0.515625 -5.296875 0.515625 -3.1875 C 0.515625 -1.046875 1.625 0.109375 3.21875 0.109375 C 4.828125 0.109375 5.921875 -1.078125 5.921875 -3.203125 C 5.921875 -5.359375 4.828125 -6.515625 3.21875 -6.515625 Z M 3.21875 -5.796875 C 4.3125 -5.796875 4.984375 -5.03125 4.984375 -3.203125 C 4.984375 -1.34375 4.296875 -0.609375 3.21875 -0.609375 C 2.171875 -0.609375 1.453125 -1.34375 1.453125 -3.1875 C 1.453125 -5.03125 2.140625 -5.796875 3.21875 -5.796875 Z M 3.21875 -5.796875 "/> | |
| 193 | +</g> | |
| 194 | +<g id="glyph-3-1"> | |
| 195 | +<path d="M 4.484375 -4.90625 L 3.640625 -4.90625 L 3.640625 -1.40625 C 3.34375 -0.90625 2.9375 -0.5625 2.40625 -0.5625 C 1.875 -0.5625 1.65625 -0.8125 1.65625 -1.484375 L 1.65625 -4.90625 L 0.796875 -4.90625 L 0.796875 -1.390625 C 0.796875 -0.421875 1.3125 0.109375 2.171875 0.109375 C 2.859375 0.109375 3.3125 -0.171875 3.6875 -0.765625 L 3.75 0 L 4.484375 0 Z M 4.484375 -4.90625 "/> | |
| 196 | +</g> | |
| 197 | +<g id="glyph-3-2"> | |
| 198 | +<path d="M 1.28125 -7.25 C 0.921875 -7.25 0.671875 -7 0.671875 -6.671875 C 0.671875 -6.34375 0.921875 -6.09375 1.28125 -6.09375 C 1.640625 -6.09375 1.875 -6.34375 1.875 -6.671875 C 1.875 -7 1.640625 -7.25 1.28125 -7.25 Z M 1.703125 -4.90625 L 0.859375 -4.90625 L 0.859375 0 L 1.703125 0 Z M 1.703125 -4.90625 "/> | |
| 199 | +</g> | |
| 200 | +</g> | |
| 201 | +<clipPath id="clip-0"> | |
| 202 | +<path clip-rule="nonzero" d="M 0.800781 0 L 312.6875 0 L 312.6875 28 L 0.800781 28 Z M 0.800781 0 "/> | |
| 203 | +</clipPath> | |
| 204 | +<clipPath id="clip-1"> | |
| 205 | +<path clip-rule="nonzero" d="M 0.800781 25 L 312.6875 25 L 312.6875 54 L 0.800781 54 Z M 0.800781 25 "/> | |
| 206 | +</clipPath> | |
| 207 | +<clipPath id="clip-2"> | |
| 208 | +<path clip-rule="nonzero" d="M 0.800781 50 L 312.6875 50 L 312.6875 80 L 0.800781 80 Z M 0.800781 50 "/> | |
| 209 | +</clipPath> | |
| 210 | +<clipPath id="clip-3"> | |
| 211 | +<path clip-rule="nonzero" d="M 0.800781 76 L 312.6875 76 L 312.6875 105 L 0.800781 105 Z M 0.800781 76 "/> | |
| 212 | +</clipPath> | |
| 213 | +<clipPath id="clip-4"> | |
| 214 | +<path clip-rule="nonzero" d="M 0.800781 102 L 312.6875 102 L 312.6875 130.03125 L 0.800781 130.03125 Z M 0.800781 102 "/> | |
| 215 | +</clipPath> | |
| 216 | +</defs> | |
| 217 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.59375 5.140625 L 9.894531 5.140625 C 7.710938 5.140625 5.941406 6.910156 5.941406 9.097656 L 5.941406 18.066406 C 5.941406 20.25 7.710938 22.023438 9.894531 22.023438 L 303.59375 22.023438 C 305.777344 22.023438 307.546875 20.25 307.546875 18.066406 L 307.546875 9.097656 C 307.546875 6.910156 305.777344 5.140625 303.59375 5.140625 Z M 303.59375 5.140625 "/> | |
| 218 | +<g clip-path="url(#clip-0)"> | |
| 219 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957471 8.504569 L -147.958879 8.504569 C -150.158957 8.504569 -151.941846 6.721679 -151.941846 4.517666 L -151.941846 -4.518789 C -151.941846 -6.718867 -150.158957 -8.505692 -147.958879 -8.505692 L 147.957471 -8.505692 C 150.157548 -8.505692 151.940438 -6.718867 151.940438 -4.518789 L 151.940438 4.517666 C 151.940438 6.721679 150.157548 8.504569 147.957471 8.504569 Z M 147.957471 8.504569 " transform="matrix(0.992508, 0, 0, -0.992508, 156.74484, 13.581474)"/> | |
| 220 | +</g> | |
| 221 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 222 | +<use xlink:href="#glyph-0-0" x="66.334347" y="16.187799"/> | |
| 223 | +<use xlink:href="#glyph-0-1" x="70.11544" y="16.187799"/> | |
| 224 | +</g> | |
| 225 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 226 | +<use xlink:href="#glyph-0-2" x="74.908729" y="16.187799"/> | |
| 227 | +</g> | |
| 228 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 229 | +<use xlink:href="#glyph-0-3" x="78.990972" y="16.187799"/> | |
| 230 | +<use xlink:href="#glyph-0-4" x="83.625321" y="16.187799"/> | |
| 231 | +</g> | |
| 232 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 233 | +<use xlink:href="#glyph-0-5" x="88.134191" y="16.187799"/> | |
| 234 | +</g> | |
| 235 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 236 | +<use xlink:href="#glyph-0-6" x="92.634696" y="16.187799"/> | |
| 237 | +</g> | |
| 238 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 239 | +<use xlink:href="#glyph-0-7" x="95.102445" y="16.187799"/> | |
| 240 | +<use xlink:href="#glyph-0-8" x="99.736794" y="16.187799"/> | |
| 241 | +<use xlink:href="#glyph-0-7" x="106.77197" y="16.187799"/> | |
| 242 | +<use xlink:href="#glyph-0-9" x="111.406319" y="16.187799"/> | |
| 243 | +<use xlink:href="#glyph-0-10" x="116.199607" y="16.187799"/> | |
| 244 | +</g> | |
| 245 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 246 | +<use xlink:href="#glyph-0-11" x="122.222588" y="16.187799"/> | |
| 247 | +<use xlink:href="#glyph-0-7" x="127.166451" y="16.187799"/> | |
| 248 | +<use xlink:href="#glyph-0-12" x="131.8008" y="16.187799"/> | |
| 249 | +<use xlink:href="#glyph-0-8" x="135.146901" y="16.187799"/> | |
| 250 | +<use xlink:href="#glyph-0-13" x="142.182077" y="16.187799"/> | |
| 251 | +<use xlink:href="#glyph-0-14" x="144.524347" y="16.187799"/> | |
| 252 | +</g> | |
| 253 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 254 | +<use xlink:href="#glyph-0-15" x="149.526767" y="16.187799"/> | |
| 255 | +</g> | |
| 256 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 257 | +<use xlink:href="#glyph-1-0" x="156.336081" y="16.187799"/> | |
| 258 | +</g> | |
| 259 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 260 | +<use xlink:href="#glyph-1-1" x="165.738623" y="16.187799"/> | |
| 261 | +<use xlink:href="#glyph-1-2" x="169.645195" y="16.187799"/> | |
| 262 | +<use xlink:href="#glyph-1-3" x="171.954004" y="16.187799"/> | |
| 263 | +<use xlink:href="#glyph-1-4" x="176.797485" y="16.187799"/> | |
| 264 | +<use xlink:href="#glyph-1-3" x="181.682791" y="16.187799"/> | |
| 265 | +</g> | |
| 266 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 267 | +<use xlink:href="#glyph-1-5" x="189.3119" y="16.187799"/> | |
| 268 | +</g> | |
| 269 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 270 | +<use xlink:href="#glyph-1-6" x="194.105189" y="16.187799"/> | |
| 271 | +<use xlink:href="#glyph-1-1" x="198.915208" y="16.187799"/> | |
| 272 | +<use xlink:href="#glyph-1-7" x="202.82178" y="16.187799"/> | |
| 273 | +<use xlink:href="#glyph-1-8" x="207.33065" y="16.187799"/> | |
| 274 | +<use xlink:href="#glyph-1-9" x="211.680581" y="16.187799"/> | |
| 275 | +</g> | |
| 276 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 277 | +<use xlink:href="#glyph-1-10" x="219.025271" y="16.187799"/> | |
| 278 | +<use xlink:href="#glyph-1-11" x="223.575967" y="16.187799"/> | |
| 279 | +<use xlink:href="#glyph-1-2" x="226.035351" y="16.187799"/> | |
| 280 | +<use xlink:href="#glyph-1-12" x="228.34416" y="16.187799"/> | |
| 281 | +<use xlink:href="#glyph-1-2" x="235.454623" y="16.187799"/> | |
| 282 | +<use xlink:href="#glyph-1-3" x="237.763433" y="16.187799"/> | |
| 283 | +<use xlink:href="#glyph-1-10" x="242.606913" y="16.187799"/> | |
| 284 | +</g> | |
| 285 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.59375 30.859375 L 9.894531 30.859375 C 7.710938 30.859375 5.941406 32.628906 5.941406 34.8125 L 5.941406 43.785156 C 5.941406 45.96875 7.710938 47.738281 9.894531 47.738281 L 303.59375 47.738281 C 305.777344 47.738281 307.546875 45.96875 307.546875 43.785156 L 307.546875 34.8125 C 307.546875 32.628906 305.777344 30.859375 303.59375 30.859375 Z M 303.59375 30.859375 "/> | |
| 286 | +<g clip-path="url(#clip-1)"> | |
| 287 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957471 -17.408332 L -147.958879 -17.408332 C -150.158957 -17.408332 -151.941846 -19.191221 -151.941846 -21.391299 L -151.941846 -30.43169 C -151.941846 -32.631767 -150.158957 -34.414657 -147.958879 -34.414657 L 147.957471 -34.414657 C 150.157548 -34.414657 151.940438 -32.631767 151.940438 -30.43169 L 151.940438 -21.391299 C 151.940438 -19.191221 150.157548 -17.408332 147.957471 -17.408332 Z M 147.957471 -17.408332 " transform="matrix(0.992508, 0, 0, -0.992508, 156.74484, 13.581474)"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-0-16" x="58.258313" y="41.759756"/> | |
| 291 | +<use xlink:href="#glyph-0-1" x="62.583148" y="41.759756"/> | |
| 292 | +</g> | |
| 293 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 294 | +<use xlink:href="#glyph-0-17" x="67.376436" y="41.759756"/> | |
| 295 | +</g> | |
| 296 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 297 | +<use xlink:href="#glyph-0-18" x="72.228282" y="41.759756"/> | |
| 298 | +</g> | |
| 299 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 300 | +<use xlink:href="#glyph-0-19" x="76.971379" y="41.759756"/> | |
| 301 | +</g> | |
| 302 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 303 | +<use xlink:href="#glyph-0-14" x="81.229292" y="41.759756"/> | |
| 304 | +<use xlink:href="#glyph-0-13" x="85.244612" y="41.759756"/> | |
| 305 | +<use xlink:href="#glyph-0-20" x="87.586882" y="41.759756"/> | |
| 306 | +<use xlink:href="#glyph-0-21" x="92.555841" y="41.759756"/> | |
| 307 | +<use xlink:href="#glyph-0-7" x="97.307304" y="41.759756"/> | |
| 308 | +<use xlink:href="#glyph-0-8" x="101.941653" y="41.759756"/> | |
| 309 | +<use xlink:href="#glyph-0-7" x="108.976829" y="41.759756"/> | |
| 310 | +<use xlink:href="#glyph-0-9" x="113.611178" y="41.759756"/> | |
| 311 | +<use xlink:href="#glyph-0-10" x="118.404467" y="41.759756"/> | |
| 312 | +</g> | |
| 313 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 314 | +<use xlink:href="#glyph-0-11" x="124.427447" y="41.759756"/> | |
| 315 | +<use xlink:href="#glyph-0-22" x="129.37131" y="41.759756"/> | |
| 316 | +<use xlink:href="#glyph-0-14" x="134.256617" y="41.759756"/> | |
| 317 | +</g> | |
| 318 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 319 | +<use xlink:href="#glyph-0-14" x="138.213381" y="41.759756"/> | |
| 320 | +<use xlink:href="#glyph-0-13" x="142.228701" y="41.759756"/> | |
| 321 | +<use xlink:href="#glyph-0-23" x="144.570971" y="41.759756"/> | |
| 322 | +<use xlink:href="#glyph-0-6" x="149.514834" y="41.759756"/> | |
| 323 | +</g> | |
| 324 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 325 | +<use xlink:href="#glyph-0-7" x="151.982583" y="41.759756"/> | |
| 326 | +</g> | |
| 327 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 328 | +<use xlink:href="#glyph-0-15" x="157.604032" y="41.759756"/> | |
| 329 | +</g> | |
| 330 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 331 | +<use xlink:href="#glyph-1-0" x="164.413346" y="41.759756"/> | |
| 332 | +</g> | |
| 333 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 334 | +<use xlink:href="#glyph-1-1" x="173.815888" y="41.759756"/> | |
| 335 | +<use xlink:href="#glyph-1-2" x="177.72246" y="41.759756"/> | |
| 336 | +<use xlink:href="#glyph-1-3" x="180.03127" y="41.759756"/> | |
| 337 | +<use xlink:href="#glyph-1-4" x="184.87475" y="41.759756"/> | |
| 338 | +<use xlink:href="#glyph-1-3" x="189.760056" y="41.759756"/> | |
| 339 | +</g> | |
| 340 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 341 | +<use xlink:href="#glyph-1-5" x="197.389165" y="41.759756"/> | |
| 342 | +</g> | |
| 343 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 344 | +<use xlink:href="#glyph-1-6" x="202.182454" y="41.759756"/> | |
| 345 | +<use xlink:href="#glyph-1-1" x="206.992473" y="41.759756"/> | |
| 346 | +<use xlink:href="#glyph-1-7" x="210.899045" y="41.759756"/> | |
| 347 | +<use xlink:href="#glyph-1-8" x="215.407915" y="41.759756"/> | |
| 348 | +<use xlink:href="#glyph-1-9" x="219.757846" y="41.759756"/> | |
| 349 | +</g> | |
| 350 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 351 | +<use xlink:href="#glyph-1-10" x="227.102536" y="41.759756"/> | |
| 352 | +<use xlink:href="#glyph-1-11" x="231.653233" y="41.759756"/> | |
| 353 | +<use xlink:href="#glyph-1-2" x="234.112616" y="41.759756"/> | |
| 354 | +<use xlink:href="#glyph-1-12" x="236.421426" y="41.759756"/> | |
| 355 | +<use xlink:href="#glyph-1-2" x="243.531889" y="41.759756"/> | |
| 356 | +<use xlink:href="#glyph-1-3" x="245.840698" y="41.759756"/> | |
| 357 | +<use xlink:href="#glyph-1-10" x="250.684178" y="41.759756"/> | |
| 358 | +</g> | |
| 359 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.59375 56.574219 L 9.894531 56.574219 C 7.710938 56.574219 5.941406 58.34375 5.941406 60.53125 L 5.941406 69.5 C 5.941406 71.683594 7.710938 73.457031 9.894531 73.457031 L 303.59375 73.457031 C 305.777344 73.457031 307.546875 71.683594 307.546875 69.5 L 307.546875 60.53125 C 307.546875 58.34375 305.777344 56.574219 303.59375 56.574219 Z M 303.59375 56.574219 "/> | |
| 360 | +<g clip-path="url(#clip-2)"> | |
| 361 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957471 -43.317297 L -147.958879 -43.317297 C -150.158957 -43.317297 -151.941846 -45.100186 -151.941846 -47.304199 L -151.941846 -56.340654 C -151.941846 -58.540732 -150.158957 -60.327557 -147.958879 -60.327557 L 147.957471 -60.327557 C 150.157548 -60.327557 151.940438 -58.540732 151.940438 -56.340654 L 151.940438 -47.304199 C 151.940438 -45.100186 150.157548 -43.317297 147.957471 -43.317297 Z M 147.957471 -43.317297 " transform="matrix(0.992508, 0, 0, -0.992508, 156.74484, 13.581474)"/> | |
| 362 | +</g> | |
| 363 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 364 | +<use xlink:href="#glyph-0-24" x="56.890637" y="67.653286"/> | |
| 365 | +<use xlink:href="#glyph-0-1" x="61.198742" y="67.653286"/> | |
| 366 | +</g> | |
| 367 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 368 | +<use xlink:href="#glyph-0-25" x="65.99203" y="67.653286"/> | |
| 369 | +</g> | |
| 370 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 371 | +<use xlink:href="#glyph-0-13" x="69.823315" y="67.653286"/> | |
| 372 | +<use xlink:href="#glyph-0-9" x="72.165586" y="67.653286"/> | |
| 373 | +<use xlink:href="#glyph-0-5" x="76.958874" y="67.653286"/> | |
| 374 | +<use xlink:href="#glyph-0-9" x="81.526301" y="67.653286"/> | |
| 375 | +<use xlink:href="#glyph-0-26" x="86.31959" y="67.653286"/> | |
| 376 | +<use xlink:href="#glyph-0-13" x="90.326545" y="67.653286"/> | |
| 377 | +<use xlink:href="#glyph-0-27" x="92.668815" y="67.653286"/> | |
| 378 | +<use xlink:href="#glyph-0-12" x="97.303164" y="67.653286"/> | |
| 379 | +</g> | |
| 380 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 381 | +<use xlink:href="#glyph-0-7" x="100.48196" y="67.653286"/> | |
| 382 | +<use xlink:href="#glyph-0-8" x="105.116309" y="67.653286"/> | |
| 383 | +<use xlink:href="#glyph-0-7" x="112.151485" y="67.653286"/> | |
| 384 | +<use xlink:href="#glyph-0-9" x="116.785834" y="67.653286"/> | |
| 385 | +<use xlink:href="#glyph-0-10" x="121.579122" y="67.653286"/> | |
| 386 | +</g> | |
| 387 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 388 | +<use xlink:href="#glyph-0-28" x="127.602103" y="67.653286"/> | |
| 389 | +</g> | |
| 390 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 391 | +<use xlink:href="#glyph-0-5" x="130.446288" y="67.653286"/> | |
| 392 | +<use xlink:href="#glyph-0-13" x="135.013715" y="67.653286"/> | |
| 393 | +<use xlink:href="#glyph-0-14" x="137.355985" y="67.653286"/> | |
| 394 | +<use xlink:href="#glyph-0-5" x="141.371306" y="67.653286"/> | |
| 395 | +<use xlink:href="#glyph-0-23" x="145.938733" y="67.653286"/> | |
| 396 | +<use xlink:href="#glyph-0-6" x="150.882596" y="67.653286"/> | |
| 397 | +</g> | |
| 398 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 399 | +<use xlink:href="#glyph-0-7" x="153.350345" y="67.653286"/> | |
| 400 | +</g> | |
| 401 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 402 | +<use xlink:href="#glyph-0-15" x="158.971794" y="67.653286"/> | |
| 403 | +</g> | |
| 404 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 405 | +<use xlink:href="#glyph-1-0" x="165.781108" y="67.653286"/> | |
| 406 | +</g> | |
| 407 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 408 | +<use xlink:href="#glyph-1-1" x="175.18365" y="67.653286"/> | |
| 409 | +<use xlink:href="#glyph-1-2" x="179.090222" y="67.653286"/> | |
| 410 | +<use xlink:href="#glyph-1-3" x="181.399031" y="67.653286"/> | |
| 411 | +<use xlink:href="#glyph-1-4" x="186.242511" y="67.653286"/> | |
| 412 | +<use xlink:href="#glyph-1-3" x="191.127818" y="67.653286"/> | |
| 413 | +</g> | |
| 414 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 415 | +<use xlink:href="#glyph-1-5" x="198.756927" y="67.653286"/> | |
| 416 | +</g> | |
| 417 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 418 | +<use xlink:href="#glyph-1-6" x="203.550215" y="67.653286"/> | |
| 419 | +<use xlink:href="#glyph-1-1" x="208.360235" y="67.653286"/> | |
| 420 | +<use xlink:href="#glyph-1-7" x="212.266807" y="67.653286"/> | |
| 421 | +<use xlink:href="#glyph-1-8" x="216.775677" y="67.653286"/> | |
| 422 | +<use xlink:href="#glyph-1-9" x="221.125607" y="67.653286"/> | |
| 423 | +</g> | |
| 424 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 425 | +<use xlink:href="#glyph-1-10" x="228.470298" y="67.653286"/> | |
| 426 | +<use xlink:href="#glyph-1-11" x="233.020994" y="67.653286"/> | |
| 427 | +<use xlink:href="#glyph-1-2" x="235.480378" y="67.653286"/> | |
| 428 | +<use xlink:href="#glyph-1-12" x="237.789187" y="67.653286"/> | |
| 429 | +<use xlink:href="#glyph-1-2" x="244.89965" y="67.653286"/> | |
| 430 | +<use xlink:href="#glyph-1-3" x="247.20846" y="67.653286"/> | |
| 431 | +<use xlink:href="#glyph-1-10" x="252.05194" y="67.653286"/> | |
| 432 | +</g> | |
| 433 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.59375 82.292969 L 9.894531 82.292969 C 7.710938 82.292969 5.941406 84.0625 5.941406 86.246094 L 5.941406 95.21875 C 5.941406 97.402344 7.710938 99.171875 9.894531 99.171875 L 303.59375 99.171875 C 305.777344 99.171875 307.546875 97.402344 307.546875 95.21875 L 307.546875 86.246094 C 307.546875 84.0625 305.777344 82.292969 303.59375 82.292969 Z M 303.59375 82.292969 "/> | |
| 434 | +<g clip-path="url(#clip-3)"> | |
| 435 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957471 -69.230197 L -147.958879 -69.230197 C -150.158957 -69.230197 -151.941846 -71.013087 -151.941846 -73.213164 L -151.941846 -82.253555 C -151.941846 -84.453633 -150.158957 -86.236522 -147.958879 -86.236522 L 147.957471 -86.236522 C 150.157548 -86.236522 151.940438 -84.453633 151.940438 -82.253555 L 151.940438 -73.213164 C 151.940438 -71.013087 150.157548 -69.230197 147.957471 -69.230197 Z M 147.957471 -69.230197 " transform="matrix(0.992508, 0, 0, -0.992508, 156.74484, 13.581474)"/> | |
| 436 | +</g> | |
| 437 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 438 | +<use xlink:href="#glyph-0-29" x="44.735397" y="93.192491"/> | |
| 439 | +</g> | |
| 440 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 441 | +<use xlink:href="#glyph-0-1" x="49.353016" y="93.192491"/> | |
| 442 | +</g> | |
| 443 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 444 | +<use xlink:href="#glyph-0-30" x="54.146304" y="93.192491"/> | |
| 445 | +<use xlink:href="#glyph-0-5" x="60.721392" y="93.192491"/> | |
| 446 | +<use xlink:href="#glyph-0-31" x="65.288819" y="93.192491"/> | |
| 447 | +<use xlink:href="#glyph-0-13" x="69.571827" y="93.192491"/> | |
| 448 | +<use xlink:href="#glyph-0-8" x="71.914097" y="93.192491"/> | |
| 449 | +<use xlink:href="#glyph-0-5" x="78.949273" y="93.192491"/> | |
| 450 | +</g> | |
| 451 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 452 | +<use xlink:href="#glyph-0-6" x="83.449778" y="93.192491"/> | |
| 453 | +</g> | |
| 454 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 455 | +<use xlink:href="#glyph-0-7" x="85.917527" y="93.192491"/> | |
| 456 | +<use xlink:href="#glyph-0-8" x="90.551876" y="93.192491"/> | |
| 457 | +<use xlink:href="#glyph-0-7" x="97.587052" y="93.192491"/> | |
| 458 | +<use xlink:href="#glyph-0-9" x="102.221401" y="93.192491"/> | |
| 459 | +<use xlink:href="#glyph-0-10" x="107.01469" y="93.192491"/> | |
| 460 | +</g> | |
| 461 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 462 | +<use xlink:href="#glyph-0-11" x="113.03767" y="93.192491"/> | |
| 463 | +<use xlink:href="#glyph-0-12" x="117.981534" y="93.192491"/> | |
| 464 | +</g> | |
| 465 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 466 | +<use xlink:href="#glyph-0-22" x="121.160329" y="93.192491"/> | |
| 467 | +<use xlink:href="#glyph-0-32" x="126.045635" y="93.192491"/> | |
| 468 | +<use xlink:href="#glyph-0-21" x="131.014594" y="93.192491"/> | |
| 469 | +<use xlink:href="#glyph-0-26" x="135.766057" y="93.192491"/> | |
| 470 | +<use xlink:href="#glyph-0-10" x="139.773012" y="93.192491"/> | |
| 471 | +<use xlink:href="#glyph-0-13" x="143.001999" y="93.192491"/> | |
| 472 | +<use xlink:href="#glyph-0-28" x="145.344269" y="93.192491"/> | |
| 473 | +</g> | |
| 474 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 475 | +<use xlink:href="#glyph-0-15" x="149.309398" y="93.192491"/> | |
| 476 | +</g> | |
| 477 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 478 | +<use xlink:href="#glyph-1-0" x="156.118712" y="93.192491"/> | |
| 479 | +</g> | |
| 480 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 481 | +<use xlink:href="#glyph-1-1" x="165.521254" y="93.192491"/> | |
| 482 | +<use xlink:href="#glyph-1-2" x="169.427826" y="93.192491"/> | |
| 483 | +<use xlink:href="#glyph-1-3" x="171.736636" y="93.192491"/> | |
| 484 | +<use xlink:href="#glyph-1-4" x="176.580116" y="93.192491"/> | |
| 485 | +<use xlink:href="#glyph-1-3" x="181.465422" y="93.192491"/> | |
| 486 | +</g> | |
| 487 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 488 | +<use xlink:href="#glyph-1-5" x="189.094531" y="93.192491"/> | |
| 489 | +</g> | |
| 490 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 491 | +<use xlink:href="#glyph-1-6" x="193.88782" y="93.192491"/> | |
| 492 | +<use xlink:href="#glyph-1-1" x="198.697839" y="93.192491"/> | |
| 493 | +<use xlink:href="#glyph-1-7" x="202.604411" y="93.192491"/> | |
| 494 | +<use xlink:href="#glyph-1-8" x="207.113281" y="93.192491"/> | |
| 495 | +<use xlink:href="#glyph-1-9" x="211.463212" y="93.192491"/> | |
| 496 | +</g> | |
| 497 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 498 | +<use xlink:href="#glyph-1-1" x="218.807902" y="93.192491"/> | |
| 499 | +<use xlink:href="#glyph-1-4" x="222.714474" y="93.192491"/> | |
| 500 | +<use xlink:href="#glyph-1-6" x="227.599781" y="93.192491"/> | |
| 501 | +<use xlink:href="#glyph-1-1" x="232.4098" y="93.192491"/> | |
| 502 | +</g> | |
| 503 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 504 | +<use xlink:href="#glyph-1-13" x="236.23272" y="93.192491"/> | |
| 505 | +<use xlink:href="#glyph-1-4" x="239.603916" y="93.192491"/> | |
| 506 | +<use xlink:href="#glyph-1-14" x="244.489222" y="93.192491"/> | |
| 507 | +<use xlink:href="#glyph-1-15" x="249.391259" y="93.192491"/> | |
| 508 | +<use xlink:href="#glyph-1-2" x="252.411115" y="93.192491"/> | |
| 509 | +<use xlink:href="#glyph-1-12" x="254.719924" y="93.192491"/> | |
| 510 | +<use xlink:href="#glyph-1-7" x="261.830387" y="93.192491"/> | |
| 511 | +</g> | |
| 512 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 513 | +<use xlink:href="#glyph-1-11" x="266.297431" y="93.192491"/> | |
| 514 | +</g> | |
| 515 | +<path fill-rule="nonzero" fill="rgb(92.501831%, 95.890808%, 94.445801%)" fill-opacity="1" d="M 303.59375 108.007812 L 9.894531 108.007812 C 7.710938 108.007812 5.941406 109.777344 5.941406 111.964844 L 5.941406 120.933594 C 5.941406 123.117188 7.710938 124.890625 9.894531 124.890625 L 303.59375 124.890625 C 305.777344 124.890625 307.546875 123.117188 307.546875 120.933594 L 307.546875 111.964844 C 307.546875 109.777344 305.777344 108.007812 303.59375 108.007812 Z M 303.59375 108.007812 "/> | |
| 516 | +<g clip-path="url(#clip-4)"> | |
| 517 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957471 -95.139162 L -147.958879 -95.139162 C -150.158957 -95.139162 -151.941846 -96.922051 -151.941846 -99.126065 L -151.941846 -108.16252 C -151.941846 -110.362597 -150.158957 -112.149422 -147.958879 -112.149422 L 147.957471 -112.149422 C 150.157548 -112.149422 151.940438 -110.362597 151.940438 -108.16252 L 151.940438 -99.126065 C 151.940438 -96.922051 150.157548 -95.139162 147.957471 -95.139162 Z M 147.957471 -95.139162 " transform="matrix(0.992508, 0, 0, -0.992508, 156.74484, 13.581474)"/> | |
| 518 | +</g> | |
| 519 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 520 | +<use xlink:href="#glyph-2-0" x="96.177065" y="119.182295"/> | |
| 521 | +<use xlink:href="#glyph-2-1" x="102.227937" y="119.182295"/> | |
| 522 | +<use xlink:href="#glyph-2-2" x="105.815704" y="119.182295"/> | |
| 523 | +<use xlink:href="#glyph-2-3" x="108.41823" y="119.182295"/> | |
| 524 | +<use xlink:href="#glyph-2-2" x="111.20665" y="119.182295"/> | |
| 525 | +<use xlink:href="#glyph-2-4" x="113.809176" y="119.182295"/> | |
| 526 | +<use xlink:href="#glyph-2-5" x="118.270648" y="119.182295"/> | |
| 527 | +<use xlink:href="#glyph-2-1" x="123.345573" y="119.182295"/> | |
| 528 | +<use xlink:href="#glyph-2-2" x="126.93334" y="119.182295"/> | |
| 529 | +<use xlink:href="#glyph-2-6" x="129.535866" y="119.182295"/> | |
| 530 | +<use xlink:href="#glyph-2-7" x="134.963991" y="119.182295"/> | |
| 531 | +</g> | |
| 532 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 533 | +<use xlink:href="#glyph-2-6" x="143.38502" y="119.182295"/> | |
| 534 | +<use xlink:href="#glyph-2-8" x="148.813145" y="119.182295"/> | |
| 535 | +<use xlink:href="#glyph-2-1" x="154.306332" y="119.182295"/> | |
| 536 | +<use xlink:href="#glyph-2-2" x="157.8941" y="119.182295"/> | |
| 537 | +<use xlink:href="#glyph-2-9" x="160.496625" y="119.182295"/> | |
| 538 | +<use xlink:href="#glyph-2-5" x="168.313497" y="119.182295"/> | |
| 539 | +</g> | |
| 540 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 541 | +<use xlink:href="#glyph-2-3" x="173.314064" y="119.182295"/> | |
| 542 | +</g> | |
| 543 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 544 | +<use xlink:href="#glyph-2-10" x="176.056011" y="119.182295"/> | |
| 545 | +</g> | |
| 546 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 547 | +<use xlink:href="#glyph-2-11" x="184.309734" y="119.182295"/> | |
| 548 | +</g> | |
| 549 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 550 | +<use xlink:href="#glyph-2-10" x="187.841733" y="119.182295"/> | |
| 551 | +<use xlink:href="#glyph-2-1" x="192.991016" y="119.182295"/> | |
| 552 | +</g> | |
| 553 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 554 | +<use xlink:href="#glyph-2-10" x="196.411478" y="119.182295"/> | |
| 555 | +<use xlink:href="#glyph-2-7" x="201.560761" y="119.182295"/> | |
| 556 | +<use xlink:href="#glyph-2-12" x="206.886644" y="119.182295"/> | |
| 557 | +<use xlink:href="#glyph-2-10" x="212.166053" y="119.182295"/> | |
| 558 | +</g> | |
| 559 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00126359 -8.702479 L 0.00126359 -16.408654 " transform="matrix(0.992508, 0, 0, -0.992508, 156.74484, 13.581474)"/> | |
| 560 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549249 3.110497 C -2.084832 1.244957 -1.045797 0.363352 0.00110973 0.00126359 C -1.045797 -0.36476 -2.084832 -1.24243 -2.549249 -3.111905 " transform="matrix(0, 0.992508, 0.992508, 0, 156.74484, 30.264524)"/> | |
| 561 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 562 | +<use xlink:href="#glyph-3-0" x="160.238466" y="30.044197"/> | |
| 563 | +<use xlink:href="#glyph-3-1" x="166.670422" y="30.044197"/> | |
| 564 | +<use xlink:href="#glyph-3-2" x="172.014895" y="30.044197"/> | |
| 565 | +</g> | |
| 566 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00126359 -34.615379 L 0.00126359 -42.321555 " transform="matrix(0.992508, 0, 0, -0.992508, 156.74484, 13.581474)"/> | |
| 567 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551154 3.110497 C -2.082801 1.244957 -1.047702 0.363352 -0.000795563 0.00126359 C -1.047702 -0.36476 -2.082801 -1.24243 -2.551154 -3.111905 " transform="matrix(0, 0.992508, 0.992508, 0, 156.74484, 55.981258)"/> | |
| 568 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 569 | +<use xlink:href="#glyph-3-0" x="160.238466" y="55.760068"/> | |
| 570 | +<use xlink:href="#glyph-3-1" x="166.670422" y="55.760068"/> | |
| 571 | +<use xlink:href="#glyph-3-2" x="172.014895" y="55.760068"/> | |
| 572 | +</g> | |
| 573 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00126359 -60.524344 L 0.00126359 -68.23052 " transform="matrix(0.992508, 0, 0, -0.992508, 156.74484, 13.581474)"/> | |
| 574 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549133 3.110497 C -2.084716 1.244957 -1.045681 0.363352 0.00122488 0.00126359 C -1.045681 -0.36476 -2.084716 -1.24243 -2.549133 -3.111905 " transform="matrix(0, 0.992508, 0.992508, 0, 156.74484, 81.698003)"/> | |
| 575 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 576 | +<use xlink:href="#glyph-3-0" x="160.238466" y="81.476932"/> | |
| 577 | +<use xlink:href="#glyph-3-1" x="166.670422" y="81.476932"/> | |
| 578 | +<use xlink:href="#glyph-3-2" x="172.014895" y="81.476932"/> | |
| 579 | +</g> | |
| 580 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00126359 -86.437245 L 0.00126359 -94.14342 " transform="matrix(0.992508, 0, 0, -0.992508, 156.74484, 13.581474)"/> | |
| 581 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551039 3.110497 C -2.082686 1.244957 -1.047587 0.363352 -0.000680414 0.00126359 C -1.047587 -0.36476 -2.082686 -1.24243 -2.551039 -3.111905 " transform="matrix(0, 0.992508, 0.992508, 0, 156.74484, 107.414738)"/> | |
| 582 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 583 | +<use xlink:href="#glyph-3-0" x="160.238466" y="107.192803"/> | |
| 584 | +<use xlink:href="#glyph-3-1" x="166.670422" y="107.192803"/> | |
| 585 | +<use xlink:href="#glyph-3-2" x="172.014895" y="107.192803"/> | |
| 586 | +</g> | |
| 587 | +</svg> | |
added
dist/assets/fig/868fa1ab2b7cb9cd.svg
+215 −0
@@ -0,0 +1,215 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="385.872pt" height="114.953pt" viewBox="0 0 385.872 114.953"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.046875 -0.796875 C 2.8125 -0.671875 2.609375 -0.59375 2.390625 -0.59375 C 1.96875 -0.59375 1.8125 -0.828125 1.8125 -1.328125 L 1.8125 -4.265625 L 2.875 -4.265625 L 2.96875 -4.9375 L 1.8125 -4.9375 L 1.8125 -6.15625 L 0.9375 -6.046875 L 0.9375 -4.9375 L 0.078125 -4.9375 L 0.078125 -4.265625 L 0.9375 -4.265625 L 0.9375 -1.296875 C 0.9375 -0.375 1.4375 0.109375 2.28125 0.109375 C 2.703125 0.109375 3.046875 0 3.375 -0.21875 Z M 3.046875 -0.796875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 4.609375 -2.609375 C 4.609375 -4.125 3.90625 -5.046875 2.578125 -5.046875 C 1.3125 -5.046875 0.53125 -3.953125 0.53125 -2.421875 C 0.53125 -0.859375 1.34375 0.109375 2.71875 0.109375 C 3.390625 0.109375 3.953125 -0.125 4.4375 -0.5 L 4.0625 -1.015625 C 3.625 -0.71875 3.265625 -0.59375 2.78125 -0.59375 C 2.0625 -0.59375 1.53125 -1.03125 1.453125 -2.171875 L 4.59375 -2.171875 C 4.609375 -2.28125 4.609375 -2.4375 4.609375 -2.609375 Z M 3.765625 -2.8125 L 1.453125 -2.8125 C 1.515625 -3.90625 1.953125 -4.359375 2.609375 -4.359375 C 3.375 -4.359375 3.765625 -3.828125 3.765625 -2.859375 Z M 3.765625 -2.8125 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 5.8125 -5.046875 C 5.140625 -5.046875 4.703125 -4.6875 4.34375 -4.15625 C 4.15625 -4.71875 3.703125 -5.046875 3.09375 -5.046875 C 2.453125 -5.046875 2 -4.703125 1.671875 -4.21875 L 1.59375 -4.9375 L 0.859375 -4.9375 L 0.859375 0 L 1.71875 0 L 1.71875 -3.5 C 2.046875 -4.03125 2.34375 -4.375 2.875 -4.375 C 3.25 -4.375 3.578125 -4.15625 3.578125 -3.421875 L 3.578125 0 L 4.4375 0 L 4.4375 -3.5 C 4.765625 -4.03125 5.0625 -4.375 5.59375 -4.375 C 5.96875 -4.375 6.296875 -4.15625 6.296875 -3.421875 L 6.296875 0 L 7.15625 0 L 7.15625 -3.53125 C 7.15625 -4.46875 6.609375 -5.046875 5.8125 -5.046875 Z M 5.8125 -5.046875 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.125 -5.046875 C 2.5625 -5.046875 2.03125 -4.765625 1.671875 -4.265625 L 1.59375 -4.9375 L 0.859375 -4.9375 L 0.859375 2 L 1.71875 1.890625 L 1.71875 -0.453125 C 2.046875 -0.0625 2.484375 0.109375 3.015625 0.109375 C 4.28125 0.109375 4.953125 -0.96875 4.953125 -2.46875 C 4.953125 -4.03125 4.4375 -5.046875 3.125 -5.046875 Z M 2.8125 -0.59375 C 2.359375 -0.59375 1.96875 -0.8125 1.71875 -1.1875 L 1.71875 -3.59375 C 1.984375 -3.984375 2.390625 -4.359375 2.90625 -4.359375 C 3.65625 -4.359375 4.03125 -3.75 4.03125 -2.46875 C 4.03125 -1.171875 3.59375 -0.59375 2.8125 -0.59375 Z M 2.8125 -0.59375 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 2.234375 -5.046875 C 1.203125 -5.046875 0.453125 -4.46875 0.453125 -3.6875 C 0.453125 -3 0.875 -2.53125 1.9375 -2.25 C 2.890625 -2 3.140625 -1.8125 3.140625 -1.328125 C 3.140625 -0.859375 2.71875 -0.578125 2.078125 -0.578125 C 1.546875 -0.578125 1.078125 -0.765625 0.6875 -1.0625 L 0.234375 -0.53125 C 0.671875 -0.15625 1.265625 0.109375 2.09375 0.109375 C 3.09375 0.109375 4.046875 -0.359375 4.046875 -1.390625 C 4.046875 -2.25 3.4375 -2.65625 2.40625 -2.921875 C 1.609375 -3.125 1.34375 -3.3125 1.34375 -3.71875 C 1.34375 -4.109375 1.6875 -4.359375 2.25 -4.359375 C 2.71875 -4.359375 3.09375 -4.21875 3.53125 -3.9375 L 3.90625 -4.484375 C 3.4375 -4.84375 2.921875 -5.046875 2.234375 -5.046875 Z M 2.234375 -5.046875 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-1-0"> | |
| 21 | +<path d="M 3.75 -1.03125 L 3.75 -3.0625 C 3.75 -3.984375 3.265625 -4.546875 2.1875 -4.546875 C 1.6875 -4.546875 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.3125 -3.828125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.296875 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.875 0.09375 1.75 0.09375 C 2.296875 0.09375 2.765625 -0.09375 3.078125 -0.5625 C 3.203125 -0.125 3.5 0.046875 3.9375 0.09375 L 4.125 -0.4375 C 3.890625 -0.515625 3.75 -0.65625 3.75 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.765625 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.390625 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-1-1"> | |
| 24 | +<path d="M 2.859375 -4.546875 C 2.28125 -4.546875 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.78125 -4.4375 L 0.78125 0 L 1.546875 0 L 1.546875 -3.15625 C 1.84375 -3.625 2.1875 -3.9375 2.671875 -3.9375 C 3.109375 -3.9375 3.375 -3.734375 3.375 -3.078125 L 3.375 0 L 4.15625 0 L 4.15625 -3.1875 C 4.15625 -4.03125 3.6875 -4.546875 2.859375 -4.546875 Z M 2.859375 -4.546875 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-1-2"> | |
| 27 | +<path d="M 2.546875 -4.828125 C 1.265625 -4.828125 0.34375 -3.9375 0.34375 -2.375 C 0.34375 -0.8125 1.265625 0.09375 2.546875 0.09375 C 3.828125 0.09375 4.765625 -0.8125 4.765625 -2.375 C 4.765625 -3.9375 3.828125 -4.828125 2.546875 -4.828125 Z M 2.546875 -4.21875 C 3.28125 -4.21875 3.984375 -3.734375 3.984375 -2.375 C 3.984375 -1.015625 3.28125 -0.515625 2.546875 -0.515625 C 1.828125 -0.515625 1.125 -1.015625 1.125 -2.375 C 1.125 -3.734375 1.828125 -4.21875 2.546875 -4.21875 Z M 2.546875 -4.21875 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-1-3"> | |
| 30 | +<path d="M 2.71875 -4.75 L 2.03125 -4.75 L 0.296875 -3.671875 L 0.625 -3.125 L 1.953125 -3.921875 L 1.953125 0 L 2.71875 0 Z M 2.71875 -4.75 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-1-4"> | |
| 33 | +<path d="M 1.875 -4.828125 C 1.140625 -4.828125 0.59375 -4.515625 0.125 -3.9375 L 0.625 -3.53125 C 1.03125 -4.03125 1.390625 -4.203125 1.859375 -4.203125 C 2.421875 -4.203125 2.8125 -3.859375 2.8125 -3.3125 C 2.8125 -2.640625 2.546875 -2.265625 0.25 -0.609375 L 0.25 0 L 3.625 0 L 3.71875 -0.65625 L 1.25 -0.65625 C 3.421875 -2.03125 3.625 -2.578125 3.625 -3.34375 C 3.625 -4.1875 2.953125 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-1-5"> | |
| 36 | +<path d="M 1.875 -4.828125 C 1.25 -4.828125 0.71875 -4.609375 0.25 -4.171875 L 0.65625 -3.703125 C 1.03125 -4.0625 1.359375 -4.21875 1.8125 -4.21875 C 2.40625 -4.21875 2.78125 -3.890625 2.78125 -3.375 C 2.78125 -2.75 2.3125 -2.421875 1.71875 -2.421875 L 1.4375 -2.421875 L 1.34375 -1.8125 L 1.765625 -1.8125 C 2.515625 -1.8125 2.921875 -1.515625 2.921875 -0.78125 C 2.921875 -0.078125 2.5 0.359375 1.75 0.359375 C 1.296875 0.359375 0.921875 0.1875 0.546875 -0.203125 L 0.078125 0.234375 C 0.515625 0.734375 1.109375 0.984375 1.78125 0.984375 C 2.984375 0.984375 3.734375 0.25 3.734375 -0.734375 C 3.734375 -1.625 3.203125 -2.078125 2.4375 -2.15625 C 3.078125 -2.296875 3.546875 -2.765625 3.546875 -3.421875 C 3.546875 -4.171875 2.96875 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-1-6"> | |
| 39 | +<path d="M 4.171875 -0.9375 L 3.46875 -0.9375 L 3.46875 -2.46875 L 2.8125 -2.46875 L 2.75 -0.9375 L 0.984375 -0.9375 L 2.515625 -4.5625 L 1.859375 -4.828125 L 0.171875 -0.875 L 0.171875 -0.34375 L 2.734375 -0.34375 L 2.734375 0.90625 L 3.46875 0.90625 L 3.46875 -0.34375 L 4.171875 -0.34375 Z M 4.171875 -0.9375 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-1-7"> | |
| 42 | +<path d="M 3.59375 -4.75 L 0.546875 -4.75 L 0.546875 -1.90625 L 1.15625 -1.90625 C 1.390625 -2.03125 1.65625 -2.109375 1.953125 -2.109375 C 2.53125 -2.109375 2.984375 -1.796875 2.984375 -0.9375 C 2.984375 -0.109375 2.53125 0.359375 1.828125 0.359375 C 1.34375 0.359375 0.984375 0.171875 0.625 -0.171875 L 0.171875 0.265625 C 0.609375 0.71875 1.125 0.984375 1.84375 0.984375 C 3 0.984375 3.796875 0.203125 3.796875 -0.921875 C 3.796875 -2.03125 3.140625 -2.703125 2.1875 -2.703125 C 1.875 -2.703125 1.59375 -2.640625 1.28125 -2.484375 L 1.28125 -4.140625 L 3.484375 -4.140625 Z M 3.59375 -4.75 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-2-0"> | |
| 45 | +<path d="M 6.9375 -6.078125 C 6.96875 -6.1875 6.96875 -6.21875 6.96875 -6.21875 C 6.96875 -6.21875 6.953125 -6.328125 6.859375 -6.328125 C 6.8125 -6.328125 6.78125 -6.296875 6.71875 -6.21875 L 6.171875 -5.625 C 6.140625 -5.578125 6.09375 -5.546875 6.09375 -5.546875 C 6.09375 -5.546875 6.078125 -5.546875 6.015625 -5.609375 C 5.890625 -5.796875 5.484375 -6.328125 4.546875 -6.328125 C 2.5 -6.328125 0.453125 -4.328125 0.453125 -2.28125 C 0.453125 -0.828125 1.53125 0.203125 2.96875 0.203125 C 3.90625 0.203125 4.640625 -0.28125 4.984375 -0.59375 C 5.796875 -1.328125 5.953125 -2.109375 5.953125 -2.15625 C 5.953125 -2.1875 5.9375 -2.25 5.828125 -2.25 C 5.734375 -2.25 5.71875 -2.203125 5.703125 -2.15625 C 5.265625 -0.71875 3.984375 -0.078125 3.078125 -0.078125 C 2.21875 -0.078125 1.296875 -0.609375 1.296875 -1.96875 C 1.296875 -2.375 1.421875 -3.78125 2.328125 -4.890625 C 2.875 -5.53125 3.75 -6.046875 4.609375 -6.046875 C 5.609375 -6.046875 6.140625 -5.28125 6.140625 -4.296875 C 6.140625 -3.984375 6.109375 -3.921875 6.109375 -3.859375 C 6.109375 -3.765625 6.21875 -3.765625 6.25 -3.765625 C 6.359375 -3.765625 6.359375 -3.78125 6.40625 -3.953125 Z M 6.9375 -6.078125 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-2-1"> | |
| 48 | +<path d="M 6.6875 -4.3125 L 6.875 -5.96875 C 6.875 -6.09375 6.78125 -6.09375 6.609375 -6.09375 L 2.109375 -6.09375 C 1.9375 -6.09375 1.84375 -6.09375 1.84375 -5.9375 C 1.84375 -5.828125 1.9375 -5.828125 2.125 -5.828125 C 2.15625 -5.828125 2.328125 -5.828125 2.46875 -5.796875 C 2.65625 -5.78125 2.671875 -5.734375 2.671875 -5.65625 C 2.671875 -5.625 2.671875 -5.609375 2.625 -5.453125 L 1.4375 -0.6875 C 1.359375 -0.359375 1.34375 -0.28125 0.65625 -0.28125 C 0.5 -0.28125 0.390625 -0.28125 0.390625 -0.109375 C 0.390625 -0.0625 0.421875 0 0.53125 0 C 0.625 0 1.046875 -0.015625 1.140625 -0.015625 C 1.203125 -0.03125 1.53125 -0.03125 1.71875 -0.03125 L 2.359375 -0.015625 C 2.578125 -0.015625 2.828125 0 3.046875 0 C 3.109375 0 3.234375 0 3.234375 -0.15625 C 3.234375 -0.28125 3.140625 -0.28125 2.953125 -0.28125 C 2.953125 -0.28125 2.703125 -0.28125 2.484375 -0.296875 C 2.203125 -0.328125 2.1875 -0.359375 2.1875 -0.46875 C 2.1875 -0.46875 2.1875 -0.53125 2.21875 -0.671875 L 2.796875 -2.921875 L 3.671875 -2.921875 C 4.3125 -2.921875 4.4375 -2.8125 4.4375 -2.515625 C 4.4375 -2.5 4.421875 -2.328125 4.375 -2.109375 C 4.328125 -2.015625 4.328125 -1.984375 4.328125 -1.984375 C 4.328125 -1.953125 4.359375 -1.859375 4.453125 -1.859375 C 4.5625 -1.859375 4.5625 -1.90625 4.59375 -2.046875 L 5.09375 -3.984375 C 5.109375 -4.03125 5.125 -4.078125 5.125 -4.125 C 5.125 -4.171875 5.078125 -4.25 5 -4.25 C 4.890625 -4.25 4.875 -4.171875 4.84375 -4.03125 C 4.65625 -3.328125 4.40625 -3.1875 3.6875 -3.1875 L 2.859375 -3.1875 L 3.46875 -5.640625 C 3.53125 -5.828125 3.625 -5.828125 3.90625 -5.828125 L 5.140625 -5.828125 C 6.265625 -5.828125 6.46875 -5.53125 6.46875 -4.828125 C 6.46875 -4.53125 6.421875 -4.28125 6.421875 -4.21875 C 6.421875 -4.140625 6.46875 -4.078125 6.546875 -4.078125 C 6.65625 -4.078125 6.65625 -4.140625 6.6875 -4.3125 Z M 6.6875 -4.3125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-2-2"> | |
| 51 | +<path d="M 7.078125 -6.015625 C 7.078125 -6.078125 7.015625 -6.125 6.953125 -6.125 C 6.921875 -6.125 6.703125 -6.09375 6.21875 -6.09375 C 5.9375 -6.09375 5.625 -6.125 5.359375 -6.125 C 5.296875 -6.125 5.1875 -6.109375 5.1875 -5.96875 C 5.1875 -5.859375 5.296875 -5.84375 5.3125 -5.84375 C 5.40625 -5.84375 5.734375 -5.828125 5.734375 -5.5625 C 5.734375 -5.484375 5.703125 -5.421875 5.671875 -5.359375 C 5.625 -5.28125 5.609375 -5.25 5.578125 -5.1875 L 2.765625 -0.828125 L 2.09375 -5.578125 C 2.09375 -5.65625 2.15625 -5.84375 2.703125 -5.84375 C 2.8125 -5.84375 2.921875 -5.84375 2.921875 -6.015625 C 2.921875 -6.109375 2.828125 -6.125 2.78125 -6.125 C 2.625 -6.125 2.4375 -6.109375 2.265625 -6.109375 L 1.6875 -6.09375 C 1.53125 -6.09375 1.28125 -6.09375 1.203125 -6.109375 L 0.6875 -6.125 C 0.65625 -6.125 0.53125 -6.125 0.53125 -5.96875 C 0.53125 -5.84375 0.625 -5.84375 0.734375 -5.84375 C 1.234375 -5.84375 1.25 -5.765625 1.28125 -5.546875 L 2.078125 -0.03125 C 2.09375 0.140625 2.109375 0.203125 2.265625 0.203125 C 2.40625 0.203125 2.453125 0.125 2.515625 0.015625 L 5.796875 -5.0625 C 6.15625 -5.640625 6.46875 -5.8125 6.890625 -5.84375 C 7 -5.859375 7.078125 -5.859375 7.078125 -6.015625 Z M 7.078125 -6.015625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-2-3"> | |
| 54 | +<path d="M 6.90625 -4.765625 C 6.90625 -5.46875 6.265625 -6.125 5.09375 -6.125 L 2.140625 -6.125 C 1.96875 -6.125 1.859375 -6.125 1.859375 -5.96875 C 1.859375 -5.84375 1.953125 -5.84375 2.140625 -5.84375 C 2.171875 -5.84375 2.328125 -5.84375 2.46875 -5.828125 C 2.625 -5.8125 2.6875 -5.796875 2.6875 -5.6875 C 2.6875 -5.65625 2.6875 -5.609375 2.65625 -5.515625 L 1.4375 -0.6875 C 1.359375 -0.359375 1.34375 -0.28125 0.671875 -0.28125 C 0.5 -0.28125 0.40625 -0.28125 0.40625 -0.109375 C 0.40625 -0.015625 0.46875 0 0.53125 0 L 1.109375 -0.015625 L 1.671875 -0.03125 L 2.828125 0 C 2.890625 0 3.015625 0 3.015625 -0.15625 C 3.015625 -0.28125 2.921875 -0.28125 2.734375 -0.28125 C 2.703125 -0.28125 2.53125 -0.28125 2.390625 -0.296875 C 2.203125 -0.328125 2.1875 -0.359375 2.1875 -0.4375 C 2.1875 -0.46875 2.1875 -0.484375 2.234375 -0.640625 L 2.765625 -2.8125 L 4.265625 -2.8125 C 5.71875 -2.8125 6.90625 -3.8125 6.90625 -4.765625 Z M 6.046875 -4.984375 C 6.046875 -4.796875 5.953125 -3.953125 5.484375 -3.515625 C 5.296875 -3.34375 4.875 -3.0625 4.109375 -3.0625 L 2.8125 -3.0625 L 3.421875 -5.5 C 3.5 -5.828125 3.515625 -5.84375 3.890625 -5.84375 L 4.796875 -5.84375 C 5.5 -5.84375 6.046875 -5.625 6.046875 -4.984375 Z M 6.046875 -4.984375 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-3-0"> | |
| 57 | +<path d="M 3.015625 0 L 3.015625 -0.234375 L 2.75 -0.234375 C 2.140625 -0.234375 2.140625 -0.3125 2.140625 -0.5 L 2.140625 -3.796875 C 2.140625 -3.96875 2.125 -3.96875 1.9375 -3.96875 C 1.546875 -3.59375 0.9375 -3.59375 0.71875 -3.59375 L 0.71875 -3.359375 C 0.875 -3.359375 1.265625 -3.359375 1.625 -3.515625 L 1.625 -0.5 C 1.625 -0.3125 1.625 -0.234375 1.015625 -0.234375 L 0.765625 -0.234375 L 0.765625 0 C 1.09375 -0.03125 1.546875 -0.03125 1.890625 -0.03125 C 2.21875 -0.03125 2.6875 -0.03125 3.015625 0 Z M 3.015625 0 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-3-1"> | |
| 60 | +<path d="M 3.21875 -1.109375 L 2.984375 -1.109375 C 2.984375 -1.03125 2.921875 -0.640625 2.828125 -0.578125 C 2.78125 -0.53125 2.296875 -0.53125 2.21875 -0.53125 L 1.109375 -0.53125 L 1.875 -1.15625 C 2.078125 -1.3125 2.609375 -1.703125 2.78125 -1.875 C 2.96875 -2.0625 3.21875 -2.359375 3.21875 -2.78125 C 3.21875 -3.53125 2.53125 -3.96875 1.734375 -3.96875 C 0.96875 -3.96875 0.4375 -3.46875 0.4375 -2.90625 C 0.4375 -2.59375 0.6875 -2.5625 0.75 -2.5625 C 0.90625 -2.5625 1.078125 -2.671875 1.078125 -2.890625 C 1.078125 -3.015625 1 -3.203125 0.734375 -3.203125 C 0.875 -3.515625 1.234375 -3.734375 1.640625 -3.734375 C 2.28125 -3.734375 2.609375 -3.265625 2.609375 -2.78125 C 2.609375 -2.359375 2.328125 -1.921875 1.90625 -1.546875 L 0.5 -0.25 C 0.4375 -0.1875 0.4375 -0.1875 0.4375 0 L 3.03125 0 Z M 3.21875 -1.109375 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-3-2"> | |
| 63 | +<path d="M 3.265625 -1.03125 C 3.265625 -1.46875 2.9375 -1.921875 2.21875 -2.109375 C 2.6875 -2.265625 3.078125 -2.640625 3.078125 -3.140625 C 3.078125 -3.609375 2.515625 -3.96875 1.796875 -3.96875 C 1.09375 -3.96875 0.5625 -3.640625 0.5625 -3.15625 C 0.5625 -2.90625 0.765625 -2.828125 0.890625 -2.828125 C 1.03125 -2.828125 1.203125 -2.9375 1.203125 -3.140625 C 1.203125 -3.328125 1.0625 -3.4375 0.90625 -3.46875 C 1.1875 -3.765625 1.734375 -3.765625 1.78125 -3.765625 C 2.09375 -3.765625 2.46875 -3.625 2.46875 -3.140625 C 2.46875 -2.8125 2.28125 -2.234375 1.6875 -2.203125 C 1.578125 -2.1875 1.421875 -2.171875 1.359375 -2.171875 C 1.3125 -2.171875 1.234375 -2.171875 1.234375 -2.078125 C 1.234375 -1.984375 1.3125 -1.984375 1.40625 -1.984375 L 1.75 -1.984375 C 2.265625 -1.984375 2.609375 -1.640625 2.609375 -1.03125 C 2.609375 -0.375 2.203125 -0.09375 1.765625 -0.09375 C 1.609375 -0.09375 1 -0.125 0.734375 -0.46875 C 0.96875 -0.5 1.0625 -0.65625 1.0625 -0.8125 C 1.0625 -1.015625 0.90625 -1.15625 0.71875 -1.15625 C 0.5625 -1.15625 0.375 -1.046875 0.375 -0.796875 C 0.375 -0.203125 1.03125 0.125 1.796875 0.125 C 2.671875 0.125 3.265625 -0.4375 3.265625 -1.03125 Z M 3.265625 -1.03125 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-3-3"> | |
| 66 | +<path d="M 3.359375 -0.984375 L 3.359375 -1.21875 L 2.671875 -1.21875 L 2.671875 -3.84375 C 2.671875 -3.984375 2.671875 -4.03125 2.515625 -4.03125 C 2.40625 -4.03125 2.40625 -4.015625 2.34375 -3.9375 L 0.28125 -1.21875 L 0.28125 -0.984375 L 2.125 -0.984375 L 2.125 -0.5 C 2.125 -0.296875 2.125 -0.234375 1.625 -0.234375 L 1.453125 -0.234375 L 1.453125 0 L 2.40625 -0.03125 L 3.34375 0 L 3.34375 -0.234375 L 3.171875 -0.234375 C 2.671875 -0.234375 2.671875 -0.296875 2.671875 -0.5 L 2.671875 -0.984375 Z M 2.171875 -1.21875 L 0.53125 -1.21875 L 2.171875 -3.375 Z M 2.171875 -1.21875 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-3-4"> | |
| 69 | +<path d="M 3.21875 -1.203125 C 3.21875 -1.875 2.65625 -2.5 1.890625 -2.5 C 1.5 -2.5 1.203125 -2.375 1.015625 -2.21875 L 1.015625 -3.3125 C 1.21875 -3.265625 1.421875 -3.234375 1.625 -3.234375 C 1.75 -3.234375 2.09375 -3.234375 2.46875 -3.4375 C 2.5625 -3.5 2.9375 -3.75 2.9375 -3.875 C 2.9375 -3.953125 2.875 -3.96875 2.859375 -3.96875 C 2.828125 -3.96875 2.828125 -3.96875 2.765625 -3.953125 C 2.546875 -3.859375 2.25 -3.78125 1.859375 -3.78125 C 1.5625 -3.78125 1.234375 -3.828125 0.96875 -3.9375 C 0.90625 -3.953125 0.890625 -3.96875 0.859375 -3.96875 C 0.78125 -3.96875 0.78125 -3.90625 0.78125 -3.8125 L 0.78125 -2.015625 C 0.78125 -1.921875 0.78125 -1.84375 0.890625 -1.84375 C 0.9375 -1.84375 0.96875 -1.875 1 -1.921875 C 1.15625 -2.109375 1.421875 -2.3125 1.875 -2.3125 C 2.609375 -2.3125 2.609375 -1.421875 2.609375 -1.21875 C 2.609375 -0.984375 2.59375 -0.65625 2.40625 -0.40625 C 2.21875 -0.1875 1.9375 -0.09375 1.6875 -0.09375 C 1.265625 -0.09375 0.859375 -0.3125 0.71875 -0.65625 C 1.015625 -0.671875 1.046875 -0.90625 1.046875 -0.96875 C 1.046875 -1.140625 0.921875 -1.28125 0.734375 -1.28125 C 0.6875 -1.28125 0.4375 -1.25 0.4375 -0.953125 C 0.4375 -0.40625 0.953125 0.125 1.703125 0.125 C 2.515625 0.125 3.21875 -0.453125 3.21875 -1.203125 Z M 3.21875 -1.203125 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-4-0"> | |
| 72 | +<path d="M 4.21875 -0.859375 C 4.21875 -0.859375 4.21875 -0.9375 4.109375 -0.9375 C 4.03125 -0.9375 4.015625 -0.90625 3.984375 -0.796875 C 3.890625 -0.484375 3.640625 -0.140625 3.34375 -0.140625 C 3.234375 -0.140625 3.1875 -0.234375 3.1875 -0.359375 C 3.1875 -0.46875 3.21875 -0.578125 3.28125 -0.703125 C 3.359375 -0.9375 3.640625 -1.609375 3.640625 -1.9375 C 3.640625 -2.421875 3.265625 -2.625 2.8125 -2.625 C 2.515625 -2.625 2.125 -2.53125 1.75 -2.0625 C 1.71875 -2.515625 1.296875 -2.625 1.078125 -2.625 C 0.84375 -2.625 0.6875 -2.5 0.578125 -2.296875 C 0.4375 -2.0625 0.359375 -1.75 0.359375 -1.71875 C 0.359375 -1.65625 0.421875 -1.625 0.46875 -1.625 C 0.5625 -1.625 0.578125 -1.671875 0.609375 -1.765625 C 0.71875 -2.25 0.859375 -2.4375 1.0625 -2.4375 C 1.265625 -2.4375 1.265625 -2.1875 1.265625 -2.125 C 1.265625 -2.03125 1.21875 -1.796875 1.171875 -1.625 L 1.03125 -1.09375 L 0.921875 -0.640625 C 0.875 -0.46875 0.8125 -0.171875 0.8125 -0.140625 C 0.8125 0 0.90625 0.0625 1.015625 0.0625 C 1.125 0.0625 1.21875 -0.015625 1.265625 -0.09375 L 1.359375 -0.46875 L 1.5 -1 L 1.59375 -1.40625 C 1.65625 -1.609375 1.859375 -1.921875 2.078125 -2.140625 C 2.203125 -2.25 2.453125 -2.4375 2.78125 -2.4375 C 3.15625 -2.4375 3.15625 -2.125 3.15625 -2.015625 C 3.15625 -1.671875 2.90625 -1.03125 2.796875 -0.765625 C 2.765625 -0.65625 2.71875 -0.5625 2.71875 -0.453125 C 2.71875 -0.15625 3 0.0625 3.328125 0.0625 C 3.921875 0.0625 4.21875 -0.734375 4.21875 -0.859375 Z M 4.21875 -0.859375 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-5-0"> | |
| 75 | +<path d="M 6.640625 -3.15625 C 6.640625 -3.359375 6.453125 -3.359375 6.3125 -3.359375 L 0.84375 -3.359375 C 0.703125 -3.359375 0.515625 -3.359375 0.515625 -3.15625 C 0.515625 -2.96875 0.6875 -2.96875 0.8125 -2.96875 L 6.34375 -2.96875 C 6.46875 -2.96875 6.640625 -2.96875 6.640625 -3.15625 Z M 6.640625 -1.34375 C 6.640625 -1.53125 6.46875 -1.53125 6.34375 -1.53125 L 0.8125 -1.53125 C 0.6875 -1.53125 0.515625 -1.53125 0.515625 -1.34375 C 0.515625 -1.140625 0.703125 -1.140625 0.84375 -1.140625 L 6.3125 -1.140625 C 6.453125 -1.140625 6.640625 -1.140625 6.640625 -1.34375 Z M 6.640625 -1.34375 "/> | |
| 76 | +</g> | |
| 77 | +</g> | |
| 78 | +</defs> | |
| 79 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.0000492941 -0.00143662 L 301.380936 -0.00143662 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 80 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.54955 3.10921 C -2.084516 1.245167 -1.045028 0.361993 -0.00163329 -0.00143662 C -1.045028 -0.364866 -2.084516 -1.244132 -2.54955 -3.112083 " transform="matrix(0.999591, 0, 0, -0.999591, 347.571945, 83.994658)"/> | |
| 81 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 82 | +<use xlink:href="#glyph-0-0" x="351.484176" y="86.119789"/> | |
| 83 | +</g> | |
| 84 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 85 | +<use xlink:href="#glyph-0-1" x="354.723107" y="86.119789"/> | |
| 86 | +<use xlink:href="#glyph-0-2" x="359.81553" y="86.119789"/> | |
| 87 | +<use xlink:href="#glyph-0-3" x="367.772442" y="86.119789"/> | |
| 88 | +<use xlink:href="#glyph-0-4" x="373.25803" y="86.119789"/> | |
| 89 | +</g> | |
| 90 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(14.901733%, 16.862488%, 20.391846%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.0000492941 3.488271 L -0.0000492941 -3.487236 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 91 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 92 | +<use xlink:href="#glyph-1-0" x="37.535537" y="95.842813"/> | |
| 93 | +<use xlink:href="#glyph-1-1" x="42.076588" y="95.842813"/> | |
| 94 | +</g> | |
| 95 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 96 | +<use xlink:href="#glyph-1-2" x="49.187251" y="95.842813"/> | |
| 97 | +</g> | |
| 98 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(14.901733%, 16.862488%, 20.391846%)" stroke-opacity="1" stroke-miterlimit="10" d="M 46.4877 3.488271 L 46.4877 -3.487236 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 99 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 100 | +<use xlink:href="#glyph-1-0" x="84.775223" y="95.842813"/> | |
| 101 | +<use xlink:href="#glyph-1-1" x="89.316274" y="95.842813"/> | |
| 102 | +</g> | |
| 103 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 104 | +<use xlink:href="#glyph-1-3" x="96.426936" y="95.842813"/> | |
| 105 | +</g> | |
| 106 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(14.901733%, 16.862488%, 20.391846%)" stroke-opacity="1" stroke-miterlimit="10" d="M 92.979357 3.488271 L 92.979357 -3.487236 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 107 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 108 | +<use xlink:href="#glyph-1-0" x="130.937349" y="95.842813"/> | |
| 109 | +<use xlink:href="#glyph-1-1" x="135.4784" y="95.842813"/> | |
| 110 | +</g> | |
| 111 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 112 | +<use xlink:href="#glyph-1-4" x="142.589062" y="95.842813"/> | |
| 113 | +</g> | |
| 114 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(14.901733%, 16.862488%, 20.391846%)" stroke-opacity="1" stroke-miterlimit="10" d="M 139.467107 3.488271 L 139.467107 -3.487236 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 115 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 116 | +<use xlink:href="#glyph-1-0" x="177.441335" y="95.842813"/> | |
| 117 | +<use xlink:href="#glyph-1-1" x="181.982386" y="95.842813"/> | |
| 118 | +</g> | |
| 119 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 120 | +<use xlink:href="#glyph-1-5" x="189.093048" y="95.842813"/> | |
| 121 | +</g> | |
| 122 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(14.901733%, 16.862488%, 20.391846%)" stroke-opacity="1" stroke-miterlimit="10" d="M 185.954856 3.488271 L 185.954856 -3.487236 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 123 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 124 | +<use xlink:href="#glyph-1-0" x="223.893343" y="95.842813"/> | |
| 125 | +<use xlink:href="#glyph-1-1" x="228.434394" y="95.842813"/> | |
| 126 | +</g> | |
| 127 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 128 | +<use xlink:href="#glyph-1-6" x="235.545056" y="95.842813"/> | |
| 129 | +</g> | |
| 130 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(14.901733%, 16.862488%, 20.391846%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.446513 3.488271 L 232.446513 -3.487236 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 131 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 132 | +<use xlink:href="#glyph-1-0" x="270.37134" y="95.842813"/> | |
| 133 | +<use xlink:href="#glyph-1-1" x="274.912391" y="95.842813"/> | |
| 134 | +</g> | |
| 135 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 136 | +<use xlink:href="#glyph-1-7" x="282.023053" y="95.842813"/> | |
| 137 | +</g> | |
| 138 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 46.4877 4.648901 L 46.4877 27.095575 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 139 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548661 3.112116 C -2.083627 1.244165 -1.048047 0.3649 -0.000744287 0.00146995 C -1.048047 -0.36196 -2.083627 -1.245133 -2.548661 -3.109176 " transform="matrix(0, -0.999591, -0.999591, 0, 92.384282, 56.510975)"/> | |
| 140 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 141 | +<use xlink:href="#glyph-2-0" x="83.761637" y="51.598903"/> | |
| 142 | +</g> | |
| 143 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 144 | +<use xlink:href="#glyph-2-1" x="90.973054" y="51.598903"/> | |
| 145 | +</g> | |
| 146 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 147 | +<use xlink:href="#glyph-3-0" x="96.856283" y="52.594496"/> | |
| 148 | +</g> | |
| 149 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 92.979357 4.648901 L 92.979357 27.095575 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 150 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548661 3.109639 C -2.083627 1.245596 -1.048047 0.362423 -0.000744287 -0.00100724 C -1.048047 -0.364437 -2.083627 -1.243703 -2.548661 -3.111654 " transform="matrix(0, -0.999591, -0.999591, 0, 138.854462, 56.510975)"/> | |
| 151 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 152 | +<use xlink:href="#glyph-2-0" x="130.230638" y="51.598903"/> | |
| 153 | +</g> | |
| 154 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 155 | +<use xlink:href="#glyph-2-1" x="137.442055" y="51.598903"/> | |
| 156 | +</g> | |
| 157 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 158 | +<use xlink:href="#glyph-3-1" x="143.325284" y="52.594496"/> | |
| 159 | +</g> | |
| 160 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 139.467107 4.648901 L 139.467107 27.095575 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 161 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548661 3.11107 C -2.083627 1.243119 -1.048047 0.363853 -0.000744287 0.000423424 C -1.048047 -0.363006 -2.083627 -1.24618 -2.548661 -3.110223 " transform="matrix(0, -0.999591, -0.999591, 0, 185.324642, 56.510975)"/> | |
| 162 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 163 | +<use xlink:href="#glyph-2-0" x="176.700638" y="51.598903"/> | |
| 164 | +</g> | |
| 165 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 166 | +<use xlink:href="#glyph-2-1" x="183.912055" y="51.598903"/> | |
| 167 | +</g> | |
| 168 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 169 | +<use xlink:href="#glyph-3-2" x="189.795284" y="52.594496"/> | |
| 170 | +</g> | |
| 171 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 185.954856 4.648901 L 185.954856 27.095575 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 172 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548661 3.1125 C -2.083627 1.244549 -1.048047 0.361376 -0.000744287 0.00185408 C -1.048047 -0.361576 -2.083627 -1.244749 -2.548661 -3.1127 " transform="matrix(0, -0.999591, -0.999591, 0, 231.794822, 56.510975)"/> | |
| 173 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 174 | +<use xlink:href="#glyph-2-0" x="223.169639" y="51.598903"/> | |
| 175 | +</g> | |
| 176 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 177 | +<use xlink:href="#glyph-2-1" x="230.381056" y="51.598903"/> | |
| 178 | +</g> | |
| 179 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 180 | +<use xlink:href="#glyph-3-3" x="236.264285" y="52.594496"/> | |
| 181 | +</g> | |
| 182 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.446513 4.648901 L 232.446513 27.095575 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 183 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548661 3.110033 C -2.083627 1.24599 -1.048047 0.362817 -0.000744287 -0.000613105 C -1.048047 -0.364043 -2.083627 -1.243308 -2.548661 -3.111259 " transform="matrix(0, -0.999591, -0.999591, 0, 278.265012, 56.510975)"/> | |
| 184 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 185 | +<use xlink:href="#glyph-2-0" x="269.639639" y="51.598903"/> | |
| 186 | +</g> | |
| 187 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 188 | +<use xlink:href="#glyph-2-1" x="276.851056" y="51.598903"/> | |
| 189 | +</g> | |
| 190 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 191 | +<use xlink:href="#glyph-3-4" x="282.734285" y="52.594496"/> | |
| 192 | +</g> | |
| 193 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 232.446513 34.868283 L 232.446513 63.887956 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 194 | +<path fill="none" stroke-width="1.19553" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -3.029875 3.829077 C -2.474961 1.531263 -1.243989 0.448789 -0.00129345 -0.000613105 C -1.243989 -0.446108 -2.474961 -1.532489 -3.029875 -3.830303 " transform="matrix(0, -0.999591, -0.999591, 0, 278.265012, 19.533863)"/> | |
| 195 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 196 | +<use xlink:href="#glyph-2-2" x="273.027254" y="14.224184"/> | |
| 197 | +</g> | |
| 198 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 199 | +<use xlink:href="#glyph-4-0" x="278.399057" y="15.219777"/> | |
| 200 | +</g> | |
| 201 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 232.446513 -19.759512 L 0.797152 -19.759512 " transform="matrix(0.999591, 0, 0, -0.999591, 45.914112, 83.994658)"/> | |
| 202 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551875 3.112128 C -2.082934 1.244177 -1.047354 0.361004 -0.0000511122 0.00148166 C -1.047354 -0.361948 -2.082934 -1.245122 -2.551875 -3.109165 " transform="matrix(-0.999591, 0, 0, 0.999591, 46.312449, 103.744613)"/> | |
| 203 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 204 | +<use xlink:href="#glyph-2-2" x="8.114567" y="106.806331"/> | |
| 205 | +</g> | |
| 206 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 207 | +<use xlink:href="#glyph-5-0" x="18.093676" y="106.806331"/> | |
| 208 | +</g> | |
| 209 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 210 | +<use xlink:href="#glyph-2-3" x="27.812867" y="106.806331"/> | |
| 211 | +</g> | |
| 212 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 213 | +<use xlink:href="#glyph-2-2" x="34.975885" y="106.806331"/> | |
| 214 | +</g> | |
| 215 | +</svg> | |
added
dist/assets/fig/86c1c980b1618f3a.svg
+497 −0
@@ -0,0 +1,497 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="133.28pt" viewBox="0 0 314.242 133.28"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.921875 0 L 4.859375 0 L 3.3125 -2.59375 C 4.140625 -2.84375 4.5625 -3.328125 4.5625 -4.140625 C 4.5625 -5.234375 3.796875 -5.78125 2.359375 -5.78125 L 0.84375 -5.78125 L 0.84375 0 L 1.640625 0 L 1.640625 -2.453125 L 2.53125 -2.453125 Z M 1.640625 -3.0625 L 1.640625 -5.15625 L 2.34375 -5.15625 C 3.296875 -5.15625 3.703125 -4.859375 3.703125 -4.140625 C 3.703125 -3.359375 3.25 -3.0625 2.4375 -3.0625 Z M 1.640625 -3.0625 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 4.046875 -4.421875 L 3.234375 -4.421875 L 2.078125 -0.6875 L 0.921875 -4.421875 L 0.078125 -4.421875 L 1.609375 0 L 2.546875 0 Z M 4.046875 -4.421875 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 2.859375 -4.515625 C 2.28125 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.09375 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.046875 -4.421875 L 3.28125 -4.421875 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.5 -0.734375 1.5 -1.328125 L 1.5 -4.421875 L 0.71875 -4.421875 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 3 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.421875 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.796875 -4.515625 C 2.25 -4.515625 1.84375 -4.28125 1.546875 -3.875 L 1.546875 -6.296875 L 0.765625 -6.203125 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.78125 0.09375 4.4375 -0.828125 4.4375 -2.21875 C 4.4375 -3.6875 3.796875 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.765625 -0.75 1.546875 -1.109375 L 1.546875 -3.21875 C 1.765625 -3.578125 2.09375 -3.90625 2.578125 -3.90625 C 3.203125 -3.90625 3.609375 -3.46875 3.609375 -2.21875 C 3.609375 -1 3.15625 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.765625 2.59375 -3.765625 C 2.765625 -3.765625 2.859375 -3.75 2.984375 -3.71875 L 3.125 -4.46875 C 3 -4.5 2.84375 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.578125 -3.828125 L 2.671875 -4.421875 L 1.625 -4.421875 L 1.625 -5.515625 L 0.84375 -5.421875 L 0.84375 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.609375 3.984375 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.578125 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.609375 -3.359375 3.609375 -2.21875 C 3.609375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.421875 -0.84375 4.421875 -2.21875 C 4.421875 -3.609375 3.71875 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.90625 C 3.1875 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.453125 -3.90625 Z M 2.453125 -3.90625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 1.15625 -6.546875 C 0.828125 -6.546875 0.609375 -6.3125 0.609375 -6.015625 C 0.609375 -5.71875 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.6875 -5.71875 1.6875 -6.015625 C 1.6875 -6.3125 1.484375 -6.546875 1.15625 -6.546875 Z M 1.546875 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.421875 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.25 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.203125 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 1.890625 -7.09375 C 1.078125 -5.921875 0.328125 -4.921875 0.328125 -2.9375 C 0.328125 -0.953125 1.078125 0.046875 1.890625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.734375 1.625 -5.640625 2.390625 -6.75 Z M 1.890625 -7.09375 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 3.390625 -3.046875 C 3.953125 -3.171875 4.46875 -3.609375 4.46875 -4.328125 C 4.46875 -5.328125 3.640625 -5.78125 2.203125 -5.78125 L 0.84375 -5.78125 L 0.84375 0 L 2.4375 0 C 3.78125 0 4.71875 -0.421875 4.71875 -1.640625 C 4.71875 -2.625 4.0625 -2.9375 3.390625 -3.046875 Z M 2.296875 -5.15625 C 3.140625 -5.15625 3.65625 -4.96875 3.65625 -4.265625 C 3.65625 -3.65625 3.15625 -3.328125 2.515625 -3.328125 L 1.640625 -3.328125 L 1.640625 -5.15625 Z M 2.4375 -0.640625 L 1.640625 -0.640625 L 1.640625 -2.71875 L 2.578125 -2.71875 C 3.28125 -2.71875 3.890625 -2.453125 3.890625 -1.640625 C 3.890625 -0.8125 3.265625 -0.640625 2.4375 -0.640625 Z M 2.4375 -0.640625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 2.359375 -5.78125 L 0.84375 -5.78125 L 0.84375 0 L 1.640625 0 L 1.640625 -2.125 L 2.359375 -2.125 C 3.640625 -2.125 4.609375 -2.671875 4.609375 -4 C 4.609375 -5.203125 3.75 -5.78125 2.359375 -5.78125 Z M 2.328125 -2.75 L 1.640625 -2.75 L 1.640625 -5.15625 L 2.34375 -5.15625 C 3.203125 -5.15625 3.765625 -4.84375 3.765625 -3.984375 C 3.765625 -3 3.1875 -2.75 2.328125 -2.75 Z M 2.328125 -2.75 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 0.828125 -7.09375 L 0.328125 -6.75 C 1.09375 -5.640625 1.578125 -4.734375 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.328125 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.921875 1.640625 -5.921875 0.828125 -7.09375 Z M 0.828125 -7.09375 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.75 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.4375 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.34375 -4.390625 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.21875 -4.203125 3.890625 -3.71875 C 3.71875 -4.234375 3.328125 -4.515625 2.78125 -4.515625 C 2.203125 -4.515625 1.796875 -4.21875 1.5 -3.78125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.578125 -3.921875 C 2.921875 -3.921875 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.015625 -3.921875 C 5.359375 -3.921875 5.640625 -3.71875 5.640625 -3.0625 L 5.640625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.9375 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.6875 1.515625 -3.90625 2.015625 -3.90625 C 2.4375 -3.90625 2.78125 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.34375 2.625 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 3.34375 -6.078125 L 3 -6.71875 L 1.328125 -5.765625 L 1.5625 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 4.609375 -5.671875 C 4.828125 -5.671875 5.09375 -5.625 5.375 -5.5 L 5.625 -6.0625 C 5.265625 -6.21875 4.984375 -6.296875 4.5625 -6.296875 C 4.109375 -6.296875 3.75 -6.15625 3.515625 -5.921875 C 3.046875 -6.140625 2.703125 -6.203125 2.25 -6.203125 C 1.265625 -6.203125 0.78125 -5.6875 0.78125 -4.9375 L 0.78125 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.78125 -3.828125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.828125 L 3.1875 -3.828125 L 3.1875 0 L 3.953125 0 L 3.953125 -3.828125 L 4.9375 -3.828125 L 5.03125 -4.421875 L 3.953125 -4.421875 L 3.953125 -5.03125 C 3.953125 -5.46875 4.125 -5.671875 4.609375 -5.671875 Z M 3.1875 -4.421875 L 1.5625 -4.421875 L 1.5625 -4.953125 C 1.5625 -5.375 1.734375 -5.59375 2.296875 -5.59375 C 2.640625 -5.59375 2.890625 -5.53125 3.234375 -5.40625 C 3.203125 -5.296875 3.1875 -5.15625 3.1875 -5.03125 Z M 3.1875 -4.421875 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 2.296875 -5.671875 C 2.53125 -5.671875 2.78125 -5.625 3.078125 -5.5 L 3.3125 -6.0625 C 2.96875 -6.21875 2.671875 -6.296875 2.25 -6.296875 C 1.359375 -6.296875 0.875 -5.765625 0.875 -5.03125 L 0.875 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.875 -3.828125 L 0.875 0 L 1.640625 0 L 1.640625 -3.828125 L 2.640625 -3.828125 L 2.71875 -4.421875 L 1.640625 -4.421875 L 1.640625 -5.03125 C 1.640625 -5.46875 1.8125 -5.671875 2.296875 -5.671875 Z M 2.296875 -5.671875 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 3.96875 -5.78125 L 0.84375 -5.78125 L 0.84375 0 L 4.03125 0 L 4.03125 -0.640625 L 1.640625 -0.640625 L 1.640625 -2.625 L 3.578125 -2.625 L 3.578125 -3.25 L 1.640625 -3.25 L 1.640625 -5.140625 L 3.875 -5.140625 Z M 3.96875 -5.78125 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.109375 -4.28125 2.734375 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.140625 -0.171875 3.421875 -0.609375 L 3.5 0 L 4.171875 0 L 4.171875 -6.203125 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.390625 -3.90625 C 2.8125 -3.90625 3.125 -3.6875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 1 -6.3125 C 0.703125 -6.3125 0.453125 -6.078125 0.453125 -5.796875 C 0.453125 -5.625 0.53125 -5.484375 0.671875 -5.375 L 0.328125 -4.109375 L 0.84375 -4.109375 L 1.40625 -5.296875 C 1.515625 -5.53125 1.546875 -5.65625 1.546875 -5.796875 C 1.546875 -6.078125 1.296875 -6.3125 1 -6.3125 Z M 1 -6.3125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.421875 L 2.984375 -4.421875 L 2.046875 -2.796875 L 1.125 -4.421875 L 0.21875 -4.421875 L 1.578125 -2.328125 L 0.046875 0 L 0.921875 0 L 2.015625 -1.875 L 3.09375 0 L 4.03125 0 Z M 2.484375 -2.359375 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 2.3125 -6.296875 C 1.234375 -6.296875 0.78125 -5.75 0.78125 -5 L 0.78125 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.78125 -3.828125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.828125 L 3.25 -3.828125 L 3.25 0 L 4.03125 0 L 4.03125 -4.421875 L 1.5625 -4.421875 L 1.5625 -5.015625 C 1.5625 -5.421875 1.71875 -5.65625 2.34375 -5.65625 C 2.6875 -5.65625 3 -5.59375 3.265625 -5.453125 L 3.546875 -5.984375 C 3.1875 -6.171875 2.8125 -6.296875 2.3125 -6.296875 Z M 2.3125 -6.296875 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-0"> | |
| 90 | +<path d="M 6.359375 -2.234375 C 6.359375 -2.421875 6.1875 -2.421875 6.046875 -2.421875 L 1.078125 -2.421875 C 0.953125 -2.421875 0.765625 -2.421875 0.765625 -2.234375 C 0.765625 -2.046875 0.9375 -2.046875 1.078125 -2.046875 L 6.046875 -2.046875 C 6.171875 -2.046875 6.359375 -2.046875 6.359375 -2.234375 Z M 6.359375 -2.234375 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-2-0"> | |
| 93 | +<path d="M 6.609375 -2.234375 C 6.609375 -2.421875 6.4375 -2.421875 6.296875 -2.421875 L 3.75 -2.421875 L 3.75 -4.984375 C 3.75 -5.125 3.75 -5.296875 3.5625 -5.296875 C 3.375 -5.296875 3.375 -5.109375 3.375 -4.984375 L 3.375 -2.421875 L 0.828125 -2.421875 C 0.703125 -2.421875 0.515625 -2.421875 0.515625 -2.234375 C 0.515625 -2.046875 0.671875 -2.046875 0.828125 -2.046875 L 3.375 -2.046875 L 3.375 0.515625 C 3.375 0.65625 3.375 0.828125 3.5625 0.828125 C 3.75 0.828125 3.75 0.640625 3.75 0.515625 L 3.75 -2.046875 L 6.296875 -2.046875 C 6.421875 -2.046875 6.609375 -2.046875 6.609375 -2.234375 Z M 6.609375 -2.234375 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-2-1"> | |
| 96 | +<path d="M 6.609375 -3.140625 C 6.609375 -3.34375 6.421875 -3.34375 6.28125 -3.34375 L 0.84375 -3.34375 C 0.703125 -3.34375 0.515625 -3.34375 0.515625 -3.140625 C 0.515625 -2.953125 0.6875 -2.953125 0.796875 -2.953125 L 6.3125 -2.953125 C 6.4375 -2.953125 6.609375 -2.953125 6.609375 -3.140625 Z M 6.609375 -1.328125 C 6.609375 -1.515625 6.4375 -1.515625 6.3125 -1.515625 L 0.796875 -1.515625 C 0.6875 -1.515625 0.515625 -1.515625 0.515625 -1.328125 C 0.515625 -1.140625 0.703125 -1.140625 0.84375 -1.140625 L 6.28125 -1.140625 C 6.421875 -1.140625 6.609375 -1.140625 6.609375 -1.328125 Z M 6.609375 -1.328125 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-3-0"> | |
| 99 | +<path d="M 2.921875 -4.578125 C 2.421875 -4.578125 1.984375 -4.21875 1.78125 -3.59375 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -2.234375 C 1.984375 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.015625 -3.265625 3.15625 -3.234375 L 3.375 -4.515625 C 3.21875 -4.5625 3.09375 -4.578125 2.921875 -4.578125 Z M 2.921875 -4.578125 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-3-1"> | |
| 102 | +<path d="M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-3-2"> | |
| 105 | +<path d="M 4.359375 -4.453125 L 3 -4.453125 L 2.1875 -1 L 1.390625 -4.453125 L -0.046875 -4.453125 L 1.390625 0 L 2.953125 0 Z M 4.359375 -4.453125 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-3-3"> | |
| 108 | +<path d="M 3.125 -4.59375 C 2.5625 -4.59375 2.125 -4.359375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.25 C 4.359375 -4.109375 3.890625 -4.59375 3.125 -4.59375 Z M 3.125 -4.59375 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-3-4"> | |
| 111 | +<path d="M 4.25 -4.453125 L 2.921875 -4.453125 L 2.921875 -1.359375 C 2.734375 -1.03125 2.484375 -0.84375 2.203125 -0.84375 C 1.9375 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.453125 L 0.453125 -4.453125 L 0.453125 -1.265625 C 0.453125 -0.390625 0.859375 0.140625 1.6875 0.140625 C 2.296875 0.140625 2.734375 -0.09375 3.046875 -0.5625 L 3.109375 0 L 4.25 0 Z M 4.25 -4.453125 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-3-5"> | |
| 114 | +<path d="M 2.875 -1.046875 C 2.6875 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.109375 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.453125 L 1.96875 -4.453125 L 1.96875 -5.578125 L 0.640625 -5.421875 L 0.640625 -4.453125 L 0.015625 -4.453125 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.3125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-3-6"> | |
| 117 | +<path d="M 3.140625 -6.375 L 3.140625 -4.171875 C 2.890625 -4.4375 2.53125 -4.59375 2.09375 -4.59375 C 0.984375 -4.59375 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.5625 0.140625 2.96875 -0.15625 3.234375 -0.515625 L 3.296875 0 L 4.46875 0 L 4.46875 -6.21875 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.453125 -3.640625 C 2.75 -3.640625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.9375 -1 2.6875 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-3-7"> | |
| 120 | +<path d="M 1.015625 -6.421875 C 0.609375 -6.421875 0.296875 -6.140625 0.296875 -5.75 C 0.296875 -5.484375 0.421875 -5.3125 0.609375 -5.171875 L 0.265625 -3.859375 L 0.9375 -3.859375 L 1.484375 -4.96875 C 1.65625 -5.328125 1.71875 -5.53125 1.71875 -5.75 C 1.71875 -6.140625 1.421875 -6.421875 1.015625 -6.421875 Z M 1.015625 -6.421875 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-3-8"> | |
| 123 | +<path d="M 2.9375 -2.390625 L 4.15625 -4.453125 L 2.75 -4.453125 L 2.15625 -3.03125 L 1.53125 -4.453125 L 0.046875 -4.453125 L 1.34375 -2.34375 L -0.09375 0 L 1.34375 0 L 2.109375 -1.671875 L 2.875 0 L 4.375 0 Z M 2.9375 -2.390625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-3-9"> | |
| 126 | +<path d="M 3.03125 -4.59375 C 2.578125 -4.59375 2.109375 -4.421875 1.75 -3.953125 L 1.671875 -4.453125 L 0.515625 -4.453125 L 0.515625 1.859375 L 1.84375 1.71875 L 1.84375 -0.3125 C 2.109375 -0.015625 2.484375 0.140625 2.921875 0.140625 C 4.015625 0.140625 4.6875 -0.859375 4.6875 -2.234375 C 4.6875 -3.6875 4.171875 -4.59375 3.03125 -4.59375 Z M 2.515625 -0.828125 C 2.234375 -0.828125 2.015625 -0.953125 1.84375 -1.21875 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.59375 -3.625 C 3.046875 -3.625 3.3125 -3.328125 3.3125 -2.21875 C 3.3125 -1.21875 3 -0.828125 2.515625 -0.828125 Z M 2.515625 -0.828125 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-3-10"> | |
| 129 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.296875 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.859375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.375 L 0.453125 -6.21875 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-3-11"> | |
| 132 | +<path d="M 2.453125 -4.59375 C 1.09375 -4.59375 0.265625 -3.65625 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.625 -0.796875 4.625 -2.21875 C 4.625 -3.71875 3.8125 -4.59375 2.453125 -4.59375 Z M 2.453125 -3.625 C 2.984375 -3.625 3.25 -3.21875 3.25 -2.21875 C 3.25 -1.265625 2.984375 -0.828125 2.453125 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.234375 C 1.640625 -3.203125 1.90625 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-3-12"> | |
| 135 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.046875 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.046875 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.453125 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-3-13"> | |
| 138 | +<path d="M 4.046875 -1.296875 L 4.046875 -3.015625 C 4.046875 -4.046875 3.484375 -4.59375 2.203125 -4.59375 C 1.6875 -4.59375 1.078125 -4.484375 0.515625 -4.265625 L 0.828125 -3.390625 C 1.265625 -3.546875 1.703125 -3.640625 1.984375 -3.640625 C 2.53125 -3.640625 2.75 -3.46875 2.75 -2.9375 L 2.75 -2.75 L 2.296875 -2.75 C 0.953125 -2.75 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.1875 0.140625 2.671875 -0.03125 3 -0.515625 C 3.203125 -0.078125 3.546875 0.078125 4.0625 0.125 L 4.34375 -0.75 C 4.140625 -0.828125 4.046875 -0.953125 4.046875 -1.296875 Z M 2.03125 -0.8125 C 1.71875 -0.8125 1.53125 -1.015625 1.53125 -1.375 C 1.53125 -1.8125 1.8125 -2.015625 2.421875 -2.015625 L 2.75 -2.015625 L 2.75 -1.21875 C 2.578125 -0.96875 2.34375 -0.8125 2.03125 -0.8125 Z M 2.03125 -0.8125 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-3-14"> | |
| 141 | +<path d="M 1.78125 -7.203125 C 0.9375 -6.046875 0.15625 -4.9375 0.15625 -2.9375 C 0.15625 -0.9375 0.9375 0.171875 1.78125 1.328125 L 2.625 0.765625 C 1.84375 -0.359375 1.5 -1.390625 1.5 -2.9375 C 1.5 -4.484375 1.84375 -5.515625 2.625 -6.640625 Z M 1.78125 -7.203125 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-3-15"> | |
| 144 | +<path d="M 3.65625 0 L 5.203125 0 L 3.71875 -2.46875 C 4.484375 -2.8125 4.84375 -3.28125 4.84375 -4.046875 C 4.84375 -5.25 4.03125 -5.8125 2.453125 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 1.921875 0 L 1.921875 -2.21875 L 2.453125 -2.21875 Z M 1.921875 -4.84375 L 2.421875 -4.84375 C 3.09375 -4.84375 3.421875 -4.609375 3.421875 -4.046875 C 3.421875 -3.4375 3.109375 -3.171875 2.5 -3.171875 L 1.921875 -3.171875 Z M 1.921875 -4.84375 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-3-16"> | |
| 147 | +<path d="M 5.03125 -5.8125 L 3.796875 -5.8125 L 3.796875 -3.46875 C 3.796875 -2.53125 3.90625 -1.765625 3.984375 -1.296875 L 2.25 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 1.765625 0 L 1.765625 -2.125 C 1.765625 -3.203125 1.65625 -3.984375 1.59375 -4.5 L 3.265625 0 L 5.03125 0 Z M 5.03125 -5.8125 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-3-17"> | |
| 150 | +<path d="M 4.109375 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 4.109375 0 L 4.109375 -0.984375 L 1.921875 -0.984375 L 1.921875 -2.46875 L 3.703125 -2.46875 L 3.703125 -3.4375 L 1.921875 -3.4375 L 1.921875 -4.828125 L 3.96875 -4.828125 Z M 4.109375 -5.8125 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-3-18"> | |
| 153 | +<path d="M 0.953125 -7.203125 L 0.09375 -6.640625 C 0.875 -5.515625 1.234375 -4.484375 1.234375 -2.9375 C 1.234375 -1.390625 0.875 -0.359375 0.09375 0.765625 L 0.953125 1.328125 C 1.78125 0.171875 2.5625 -0.9375 2.5625 -2.9375 C 2.5625 -4.9375 1.78125 -6.046875 0.953125 -7.203125 Z M 0.953125 -7.203125 "/> | |
| 154 | +</g> | |
| 155 | +</g> | |
| 156 | +<clipPath id="clip-0"> | |
| 157 | +<path clip-rule="nonzero" d="M 0.46875 0 L 313.019531 0 L 313.019531 28 L 0.46875 28 Z M 0.46875 0 "/> | |
| 158 | +</clipPath> | |
| 159 | +<clipPath id="clip-1"> | |
| 160 | +<path clip-rule="nonzero" d="M 0.46875 25 L 313.019531 25 L 313.019531 55 L 0.46875 55 Z M 0.46875 25 "/> | |
| 161 | +</clipPath> | |
| 162 | +<clipPath id="clip-2"> | |
| 163 | +<path clip-rule="nonzero" d="M 0.46875 52 L 313.019531 52 L 313.019531 81 L 0.46875 81 Z M 0.46875 52 "/> | |
| 164 | +</clipPath> | |
| 165 | +<clipPath id="clip-3"> | |
| 166 | +<path clip-rule="nonzero" d="M 0.46875 78 L 313.019531 78 L 313.019531 107 L 0.46875 107 Z M 0.46875 78 "/> | |
| 167 | +</clipPath> | |
| 168 | +<clipPath id="clip-4"> | |
| 169 | +<path clip-rule="nonzero" d="M 0.46875 104 L 313.019531 104 L 313.019531 132.5625 L 0.46875 132.5625 Z M 0.46875 104 "/> | |
| 170 | +</clipPath> | |
| 171 | +</defs> | |
| 172 | +<path fill-rule="nonzero" fill="rgb(84.999084%, 88.645935%, 92.411804%)" fill-opacity="1" d="M 303.90625 5.152344 L 9.582031 5.152344 C 7.394531 5.152344 5.617188 6.925781 5.617188 9.117188 L 5.617188 18.105469 C 5.617188 20.296875 7.394531 22.070312 9.582031 22.070312 L 303.90625 22.070312 C 306.09375 22.070312 307.871094 20.296875 307.871094 18.105469 L 307.871094 9.117188 C 307.871094 6.925781 306.09375 5.152344 303.90625 5.152344 Z M 303.90625 5.152344 "/> | |
| 173 | +<g clip-path="url(#clip-0)"> | |
| 174 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957208 8.504822 L -147.956998 8.504822 C -150.156315 8.504822 -151.94326 6.721805 -151.94326 4.51856 L -151.94326 -4.518277 C -151.94326 -6.721522 -150.156315 -8.50454 -147.956998 -8.50454 L 147.957208 -8.50454 C 150.156525 -8.50454 151.94347 -6.721522 151.94347 -4.518277 L 151.94347 4.51856 C 151.94347 6.721805 150.156525 8.504822 147.957208 8.504822 Z M 147.957208 8.504822 " transform="matrix(0.994627, 0, 0, -0.994627, 156.744036, 13.611469)"/> | |
| 175 | +</g> | |
| 176 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 177 | +<use xlink:href="#glyph-0-0" x="103.150557" y="16.248224"/> | |
| 178 | +</g> | |
| 179 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 180 | +<use xlink:href="#glyph-0-1" x="108.180425" y="16.248224"/> | |
| 181 | +</g> | |
| 182 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 183 | +<use xlink:href="#glyph-0-2" x="112.698923" y="16.248224"/> | |
| 184 | +</g> | |
| 185 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 186 | +<use xlink:href="#glyph-0-1" x="116.789882" y="16.248224"/> | |
| 187 | +<use xlink:href="#glyph-0-3" x="121.350295" y="16.248224"/> | |
| 188 | +<use xlink:href="#glyph-0-4" x="126.204118" y="16.248224"/> | |
| 189 | +</g> | |
| 190 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 191 | +<use xlink:href="#glyph-0-5" x="133.815985" y="16.248224"/> | |
| 192 | +<use xlink:href="#glyph-0-6" x="138.728489" y="16.248224"/> | |
| 193 | +<use xlink:href="#glyph-0-4" x="141.939221" y="16.248224"/> | |
| 194 | +<use xlink:href="#glyph-0-7" x="146.759511" y="16.248224"/> | |
| 195 | +</g> | |
| 196 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 197 | +<use xlink:href="#glyph-0-8" x="152.585775" y="16.248224"/> | |
| 198 | +<use xlink:href="#glyph-0-9" x="157.498279" y="16.248224"/> | |
| 199 | +<use xlink:href="#glyph-0-7" x="162.394017" y="16.248224"/> | |
| 200 | +</g> | |
| 201 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 202 | +<use xlink:href="#glyph-0-1" x="165.294574" y="16.248224"/> | |
| 203 | +<use xlink:href="#glyph-0-3" x="169.854988" y="16.248224"/> | |
| 204 | +<use xlink:href="#glyph-0-7" x="174.70881" y="16.248224"/> | |
| 205 | +<use xlink:href="#glyph-0-10" x="177.735114" y="16.248224"/> | |
| 206 | +<use xlink:href="#glyph-0-1" x="180.048853" y="16.248224"/> | |
| 207 | +<use xlink:href="#glyph-0-11" x="184.609267" y="16.248224"/> | |
| 208 | +</g> | |
| 209 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 210 | +<use xlink:href="#glyph-0-12" x="189.865479" y="16.248224"/> | |
| 211 | +<use xlink:href="#glyph-0-0" x="192.581607" y="16.248224"/> | |
| 212 | +<use xlink:href="#glyph-0-13" x="197.653391" y="16.248224"/> | |
| 213 | +<use xlink:href="#glyph-0-14" x="202.750323" y="16.248224"/> | |
| 214 | +<use xlink:href="#glyph-0-15" x="207.620912" y="16.248224"/> | |
| 215 | +</g> | |
| 216 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.90625 31.488281 L 9.582031 31.488281 C 7.394531 31.488281 5.617188 33.261719 5.617188 35.453125 L 5.617188 44.441406 C 5.617188 46.632812 7.394531 48.40625 9.582031 48.40625 L 303.90625 48.40625 C 306.09375 48.40625 307.871094 46.632812 307.871094 44.441406 L 307.871094 35.453125 C 307.871094 33.261719 306.09375 31.488281 303.90625 31.488281 Z M 303.90625 31.488281 "/> | |
| 217 | +<g clip-path="url(#clip-1)"> | |
| 218 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957208 -17.973386 L -147.956998 -17.973386 C -150.156315 -17.973386 -151.94326 -19.756404 -151.94326 -21.959648 L -151.94326 -30.996486 C -151.94326 -33.19973 -150.156315 -34.982748 -147.956998 -34.982748 L 147.957208 -34.982748 C 150.156525 -34.982748 151.94347 -33.19973 151.94347 -30.996486 L 151.94347 -21.959648 C 151.94347 -19.756404 150.156525 -17.973386 147.957208 -17.973386 Z M 147.957208 -17.973386 " transform="matrix(0.994627, 0, 0, -0.994627, 156.744036, 13.611469)"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-1-0" x="43.890688" y="42.353201"/> | |
| 222 | +</g> | |
| 223 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 224 | +<use xlink:href="#glyph-0-10" x="53.811492" y="42.353201"/> | |
| 225 | +<use xlink:href="#glyph-0-3" x="56.125231" y="42.353201"/> | |
| 226 | +<use xlink:href="#glyph-0-9" x="60.979054" y="42.353201"/> | |
| 227 | +<use xlink:href="#glyph-0-16" x="65.874792" y="42.353201"/> | |
| 228 | +</g> | |
| 229 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 230 | +<use xlink:href="#glyph-0-16" x="69.756173" y="42.353201"/> | |
| 231 | +</g> | |
| 232 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 233 | +<use xlink:href="#glyph-0-4" x="73.67947" y="42.353201"/> | |
| 234 | +<use xlink:href="#glyph-0-8" x="78.49976" y="42.353201"/> | |
| 235 | +</g> | |
| 236 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 237 | +<use xlink:href="#glyph-0-17" x="83.370349" y="42.353201"/> | |
| 238 | +<use xlink:href="#glyph-0-7" x="87.888847" y="42.353201"/> | |
| 239 | +<use xlink:href="#glyph-0-10" x="90.91515" y="42.353201"/> | |
| 240 | +<use xlink:href="#glyph-0-9" x="93.22889" y="42.353201"/> | |
| 241 | +<use xlink:href="#glyph-0-3" x="98.124628" y="42.353201"/> | |
| 242 | +</g> | |
| 243 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 244 | +<use xlink:href="#glyph-0-1" x="105.77841" y="42.353201"/> | |
| 245 | +<use xlink:href="#glyph-0-7" x="110.338823" y="42.353201"/> | |
| 246 | +</g> | |
| 247 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 248 | +<use xlink:href="#glyph-0-18" x="116.156704" y="42.353201"/> | |
| 249 | +<use xlink:href="#glyph-0-17" x="123.28235" y="42.353201"/> | |
| 250 | +<use xlink:href="#glyph-0-4" x="127.800848" y="42.353201"/> | |
| 251 | +<use xlink:href="#glyph-0-2" x="132.621138" y="42.353201"/> | |
| 252 | +</g> | |
| 253 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 254 | +<use xlink:href="#glyph-0-17" x="136.703714" y="42.353201"/> | |
| 255 | +<use xlink:href="#glyph-0-10" x="141.222212" y="42.353201"/> | |
| 256 | +<use xlink:href="#glyph-0-19" x="143.535951" y="42.353201"/> | |
| 257 | +<use xlink:href="#glyph-0-1" x="147.450865" y="42.353201"/> | |
| 258 | +<use xlink:href="#glyph-0-19" x="152.011278" y="42.353201"/> | |
| 259 | +</g> | |
| 260 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 261 | +<use xlink:href="#glyph-0-16" x="158.717769" y="42.353201"/> | |
| 262 | +<use xlink:href="#glyph-0-6" x="162.724897" y="42.353201"/> | |
| 263 | +</g> | |
| 264 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 265 | +<use xlink:href="#glyph-0-20" x="165.767967" y="42.353201"/> | |
| 266 | +</g> | |
| 267 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 268 | +<use xlink:href="#glyph-0-17" x="170.286465" y="42.353201"/> | |
| 269 | +<use xlink:href="#glyph-0-3" x="174.804963" y="42.353201"/> | |
| 270 | +<use xlink:href="#glyph-0-16" x="179.658785" y="42.353201"/> | |
| 271 | +</g> | |
| 272 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 273 | +<use xlink:href="#glyph-0-1" x="183.540167" y="42.353201"/> | |
| 274 | +<use xlink:href="#glyph-0-19" x="188.10058" y="42.353201"/> | |
| 275 | +</g> | |
| 276 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 277 | +<use xlink:href="#glyph-2-0" x="203.190027" y="42.353201"/> | |
| 278 | +</g> | |
| 279 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 280 | +<use xlink:href="#glyph-0-17" x="213.119213" y="42.353201"/> | |
| 281 | +<use xlink:href="#glyph-0-4" x="217.637711" y="42.353201"/> | |
| 282 | +<use xlink:href="#glyph-0-7" x="222.458001" y="42.353201"/> | |
| 283 | +<use xlink:href="#glyph-0-6" x="225.484305" y="42.353201"/> | |
| 284 | +</g> | |
| 285 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 286 | +<use xlink:href="#glyph-0-1" x="228.527375" y="42.353201"/> | |
| 287 | +<use xlink:href="#glyph-0-19" x="233.087789" y="42.353201"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-0-6" x="239.794279" y="42.353201"/> | |
| 291 | +</g> | |
| 292 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 293 | +<use xlink:href="#glyph-0-1" x="242.837349" y="42.353201"/> | |
| 294 | +</g> | |
| 295 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 296 | +<use xlink:href="#glyph-0-2" x="247.355847" y="42.353201"/> | |
| 297 | +</g> | |
| 298 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 299 | +<use xlink:href="#glyph-0-1" x="251.446806" y="42.353201"/> | |
| 300 | +<use xlink:href="#glyph-0-3" x="256.00722" y="42.353201"/> | |
| 301 | +<use xlink:href="#glyph-0-4" x="260.861042" y="42.353201"/> | |
| 302 | +<use xlink:href="#glyph-0-19" x="265.681332" y="42.353201"/> | |
| 303 | +</g> | |
| 304 | +<path fill-rule="nonzero" fill="rgb(87.409973%, 91.941833%, 95.999146%)" fill-opacity="1" d="M 303.90625 57.824219 L 9.582031 57.824219 C 7.394531 57.824219 5.617188 59.597656 5.617188 61.789062 L 5.617188 70.777344 C 5.617188 72.964844 7.394531 74.742188 9.582031 74.742188 L 303.90625 74.742188 C 306.09375 74.742188 307.871094 72.964844 307.871094 70.777344 L 307.871094 61.789062 C 307.871094 59.597656 306.09375 57.824219 303.90625 57.824219 Z M 303.90625 57.824219 "/> | |
| 305 | +<g clip-path="url(#clip-2)"> | |
| 306 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957208 -44.451594 L -147.956998 -44.451594 C -150.156315 -44.451594 -151.94326 -46.234612 -151.94326 -48.437857 L -151.94326 -57.474694 C -151.94326 -59.674012 -150.156315 -61.460957 -147.956998 -61.460957 L 147.957208 -61.460957 C 150.156525 -61.460957 151.94347 -59.674012 151.94347 -57.474694 L 151.94347 -48.437857 C 151.94347 -46.234612 150.156525 -44.451594 147.957208 -44.451594 Z M 147.957208 -44.451594 " transform="matrix(0.994627, 0, 0, -0.994627, 156.744036, 13.611469)"/> | |
| 307 | +</g> | |
| 308 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 309 | +<use xlink:href="#glyph-2-1" x="103.466848" y="69.195196"/> | |
| 310 | +</g> | |
| 311 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 312 | +<use xlink:href="#glyph-0-6" x="113.387652" y="69.195196"/> | |
| 313 | +</g> | |
| 314 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 315 | +<use xlink:href="#glyph-0-1" x="116.430722" y="69.195196"/> | |
| 316 | +</g> | |
| 317 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 318 | +<use xlink:href="#glyph-0-2" x="120.94922" y="69.195196"/> | |
| 319 | +</g> | |
| 320 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 321 | +<use xlink:href="#glyph-0-1" x="125.040179" y="69.195196"/> | |
| 322 | +<use xlink:href="#glyph-0-3" x="129.600593" y="69.195196"/> | |
| 323 | +<use xlink:href="#glyph-0-4" x="134.454415" y="69.195196"/> | |
| 324 | +</g> | |
| 325 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 326 | +<use xlink:href="#glyph-0-5" x="142.074665" y="69.195196"/> | |
| 327 | +<use xlink:href="#glyph-0-6" x="146.987169" y="69.195196"/> | |
| 328 | +<use xlink:href="#glyph-0-4" x="150.197901" y="69.195196"/> | |
| 329 | +<use xlink:href="#glyph-0-7" x="155.018191" y="69.195196"/> | |
| 330 | +</g> | |
| 331 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 332 | +<use xlink:href="#glyph-0-1" x="160.836072" y="69.195196"/> | |
| 333 | +<use xlink:href="#glyph-0-21" x="165.396485" y="69.195196"/> | |
| 334 | +</g> | |
| 335 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 336 | +<use xlink:href="#glyph-0-1" x="170.426353" y="69.195196"/> | |
| 337 | +<use xlink:href="#glyph-0-16" x="174.986767" y="69.195196"/> | |
| 338 | +<use xlink:href="#glyph-0-7" x="178.993895" y="69.195196"/> | |
| 339 | +<use xlink:href="#glyph-0-10" x="182.020199" y="69.195196"/> | |
| 340 | +<use xlink:href="#glyph-0-22" x="184.333938" y="69.195196"/> | |
| 341 | +</g> | |
| 342 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 343 | +<use xlink:href="#glyph-0-12" x="189.933857" y="69.195196"/> | |
| 344 | +<use xlink:href="#glyph-0-0" x="192.649986" y="69.195196"/> | |
| 345 | +<use xlink:href="#glyph-0-13" x="197.721769" y="69.195196"/> | |
| 346 | +<use xlink:href="#glyph-0-23" x="202.818702" y="69.195196"/> | |
| 347 | +<use xlink:href="#glyph-0-15" x="207.303668" y="69.195196"/> | |
| 348 | +</g> | |
| 349 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.90625 84.160156 L 9.582031 84.160156 C 7.394531 84.160156 5.617188 85.933594 5.617188 88.125 L 5.617188 97.113281 C 5.617188 99.300781 7.394531 101.078125 9.582031 101.078125 L 303.90625 101.078125 C 306.09375 101.078125 307.871094 99.300781 307.871094 97.113281 L 307.871094 88.125 C 307.871094 85.933594 306.09375 84.160156 303.90625 84.160156 Z M 303.90625 84.160156 "/> | |
| 350 | +<g clip-path="url(#clip-3)"> | |
| 351 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957208 -70.929803 L -147.956998 -70.929803 C -150.156315 -70.929803 -151.94326 -72.712821 -151.94326 -74.916065 L -151.94326 -83.952903 C -151.94326 -86.15222 -150.156315 -87.939165 -147.956998 -87.939165 L 147.957208 -87.939165 C 150.156525 -87.939165 151.94347 -86.15222 151.94347 -83.952903 L 151.94347 -74.916065 C 151.94347 -72.712821 150.156525 -70.929803 147.957208 -70.929803 Z M 147.957208 -70.929803 " transform="matrix(0.994627, 0, 0, -0.994627, 156.744036, 13.611469)"/> | |
| 352 | +</g> | |
| 353 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 354 | +<use xlink:href="#glyph-1-0" x="49.329308" y="95.25442"/> | |
| 355 | +</g> | |
| 356 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 357 | +<use xlink:href="#glyph-0-24" x="59.250112" y="95.25442"/> | |
| 358 | +<use xlink:href="#glyph-0-20" x="64.196148" y="95.25442"/> | |
| 359 | +<use xlink:href="#glyph-0-8" x="68.756562" y="95.25442"/> | |
| 360 | +<use xlink:href="#glyph-0-1" x="73.669066" y="95.25442"/> | |
| 361 | +<use xlink:href="#glyph-0-3" x="78.22948" y="95.25442"/> | |
| 362 | +<use xlink:href="#glyph-0-19" x="83.083302" y="95.25442"/> | |
| 363 | +<use xlink:href="#glyph-0-1" x="86.998216" y="95.25442"/> | |
| 364 | +<use xlink:href="#glyph-0-19" x="91.558629" y="95.25442"/> | |
| 365 | +</g> | |
| 366 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 367 | +<use xlink:href="#glyph-0-24" x="98.273503" y="95.25442"/> | |
| 368 | +<use xlink:href="#glyph-0-25" x="103.21954" y="95.25442"/> | |
| 369 | +</g> | |
| 370 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 371 | +<use xlink:href="#glyph-0-1" x="105.047058" y="95.25442"/> | |
| 372 | +</g> | |
| 373 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 374 | +<use xlink:href="#glyph-0-26" x="109.565556" y="95.25442"/> | |
| 375 | +<use xlink:href="#glyph-0-8" x="113.631366" y="95.25442"/> | |
| 376 | +<use xlink:href="#glyph-0-11" x="118.54387" y="95.25442"/> | |
| 377 | +</g> | |
| 378 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 379 | +<use xlink:href="#glyph-0-9" x="120.96659" y="95.25442"/> | |
| 380 | +<use xlink:href="#glyph-0-10" x="125.862328" y="95.25442"/> | |
| 381 | +<use xlink:href="#glyph-0-7" x="128.176067" y="95.25442"/> | |
| 382 | +<use xlink:href="#glyph-0-17" x="131.202371" y="95.25442"/> | |
| 383 | +<use xlink:href="#glyph-0-7" x="135.720869" y="95.25442"/> | |
| 384 | +<use xlink:href="#glyph-0-10" x="138.747173" y="95.25442"/> | |
| 385 | +<use xlink:href="#glyph-0-9" x="141.060912" y="95.25442"/> | |
| 386 | +<use xlink:href="#glyph-0-3" x="145.95665" y="95.25442"/> | |
| 387 | +</g> | |
| 388 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 389 | +<use xlink:href="#glyph-0-12" x="153.602049" y="95.25442"/> | |
| 390 | +<use xlink:href="#glyph-0-27" x="156.318178" y="95.25442"/> | |
| 391 | +<use xlink:href="#glyph-0-26" x="161.113319" y="95.25442"/> | |
| 392 | +</g> | |
| 393 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 394 | +<use xlink:href="#glyph-0-1" x="165.137213" y="95.25442"/> | |
| 395 | +<use xlink:href="#glyph-0-19" x="169.697626" y="95.25442"/> | |
| 396 | +</g> | |
| 397 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 398 | +<use xlink:href="#glyph-2-0" x="176.403944" y="95.25442"/> | |
| 399 | +</g> | |
| 400 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 401 | +<use xlink:href="#glyph-0-2" x="186.33313" y="95.25442"/> | |
| 402 | +</g> | |
| 403 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 404 | +<use xlink:href="#glyph-0-17" x="190.415707" y="95.25442"/> | |
| 405 | +<use xlink:href="#glyph-0-6" x="194.934205" y="95.25442"/> | |
| 406 | +<use xlink:href="#glyph-0-10" x="198.144937" y="95.25442"/> | |
| 407 | +<use xlink:href="#glyph-0-17" x="200.458676" y="95.25442"/> | |
| 408 | +<use xlink:href="#glyph-0-5" x="204.977174" y="95.25442"/> | |
| 409 | +<use xlink:href="#glyph-0-11" x="209.889678" y="95.25442"/> | |
| 410 | +</g> | |
| 411 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 412 | +<use xlink:href="#glyph-0-1" x="212.312398" y="95.25442"/> | |
| 413 | +<use xlink:href="#glyph-0-19" x="216.872811" y="95.25442"/> | |
| 414 | +</g> | |
| 415 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 416 | +<use xlink:href="#glyph-2-0" x="223.579129" y="95.25442"/> | |
| 417 | +</g> | |
| 418 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 419 | +<use xlink:href="#glyph-0-6" x="233.499932" y="95.25442"/> | |
| 420 | +</g> | |
| 421 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 422 | +<use xlink:href="#glyph-0-20" x="236.543002" y="95.25442"/> | |
| 423 | +<use xlink:href="#glyph-0-19" x="241.103416" y="95.25442"/> | |
| 424 | +<use xlink:href="#glyph-0-1" x="245.01833" y="95.25442"/> | |
| 425 | +<use xlink:href="#glyph-0-6" x="249.578743" y="95.25442"/> | |
| 426 | +<use xlink:href="#glyph-0-2" x="252.789476" y="95.25442"/> | |
| 427 | +</g> | |
| 428 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 429 | +<use xlink:href="#glyph-0-1" x="256.880435" y="95.25442"/> | |
| 430 | +<use xlink:href="#glyph-0-15" x="261.440848" y="95.25442"/> | |
| 431 | +</g> | |
| 432 | +<path fill-rule="nonzero" fill="rgb(85.939026%, 92.292786%, 89.588928%)" fill-opacity="1" d="M 303.90625 110.496094 L 9.582031 110.496094 C 7.394531 110.496094 5.617188 112.269531 5.617188 114.460938 L 5.617188 123.449219 C 5.617188 125.636719 7.394531 127.414062 9.582031 127.414062 L 303.90625 127.414062 C 306.09375 127.414062 307.871094 125.636719 307.871094 123.449219 L 307.871094 114.460938 C 307.871094 112.269531 306.09375 110.496094 303.90625 110.496094 Z M 303.90625 110.496094 "/> | |
| 433 | +<g clip-path="url(#clip-4)"> | |
| 434 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957208 -97.408011 L -147.956998 -97.408011 C -150.156315 -97.408011 -151.94326 -99.191029 -151.94326 -101.394274 L -151.94326 -110.431111 C -151.94326 -112.630429 -150.156315 -114.417374 -147.956998 -114.417374 L 147.957208 -114.417374 C 150.156525 -114.417374 151.94347 -112.630429 151.94347 -110.431111 L 151.94347 -101.394274 C 151.94347 -99.191029 150.156525 -97.408011 147.957208 -97.408011 Z M 147.957208 -97.408011 " transform="matrix(0.994627, 0, 0, -0.994627, 156.744036, 13.611469)"/> | |
| 435 | +</g> | |
| 436 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 437 | +<use xlink:href="#glyph-2-1" x="91.105626" y="121.56429"/> | |
| 438 | +</g> | |
| 439 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 440 | +<use xlink:href="#glyph-3-0" x="101.026429" y="121.56429"/> | |
| 441 | +</g> | |
| 442 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 443 | +<use xlink:href="#glyph-3-1" x="104.212012" y="121.56429"/> | |
| 444 | +</g> | |
| 445 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 446 | +<use xlink:href="#glyph-3-2" x="108.789192" y="121.56429"/> | |
| 447 | +</g> | |
| 448 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 449 | +<use xlink:href="#glyph-3-1" x="113.022664" y="121.56429"/> | |
| 450 | +<use xlink:href="#glyph-3-3" x="117.666909" y="121.56429"/> | |
| 451 | +<use xlink:href="#glyph-3-4" x="122.470432" y="121.56429"/> | |
| 452 | +</g> | |
| 453 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 454 | +<use xlink:href="#glyph-3-3" x="130.032" y="121.56429"/> | |
| 455 | +<use xlink:href="#glyph-3-1" x="134.835524" y="121.56429"/> | |
| 456 | +<use xlink:href="#glyph-3-5" x="139.479769" y="121.56429"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-3-6" x="145.507227" y="121.56429"/> | |
| 460 | +<use xlink:href="#glyph-3-7" x="150.486796" y="121.56429"/> | |
| 461 | +</g> | |
| 462 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 463 | +<use xlink:href="#glyph-3-1" x="152.440062" y="121.56429"/> | |
| 464 | +</g> | |
| 465 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 466 | +<use xlink:href="#glyph-3-8" x="156.992092" y="121.56429"/> | |
| 467 | +<use xlink:href="#glyph-3-9" x="161.284246" y="121.56429"/> | |
| 468 | +<use xlink:href="#glyph-3-10" x="166.238666" y="121.56429"/> | |
| 469 | +</g> | |
| 470 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 471 | +<use xlink:href="#glyph-3-11" x="168.711684" y="121.56429"/> | |
| 472 | +<use xlink:href="#glyph-3-12" x="173.607422" y="121.56429"/> | |
| 473 | +<use xlink:href="#glyph-3-5" x="175.954694" y="121.56429"/> | |
| 474 | +</g> | |
| 475 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 476 | +<use xlink:href="#glyph-3-13" x="179.140277" y="121.56429"/> | |
| 477 | +<use xlink:href="#glyph-3-5" x="183.717457" y="121.56429"/> | |
| 478 | +<use xlink:href="#glyph-3-12" x="186.953338" y="121.56429"/> | |
| 479 | +<use xlink:href="#glyph-3-11" x="189.30061" y="121.56429"/> | |
| 480 | +<use xlink:href="#glyph-3-3" x="194.196348" y="121.56429"/> | |
| 481 | +</g> | |
| 482 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 483 | +<use xlink:href="#glyph-3-14" x="201.791448" y="121.56429"/> | |
| 484 | +<use xlink:href="#glyph-3-15" x="204.51596" y="121.56429"/> | |
| 485 | +<use xlink:href="#glyph-3-16" x="209.688341" y="121.56429"/> | |
| 486 | +<use xlink:href="#glyph-3-17" x="215.246345" y="121.56429"/> | |
| 487 | +<use xlink:href="#glyph-3-18" x="219.655862" y="121.56429"/> | |
| 488 | +</g> | |
| 489 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00185891 -8.704835 L -0.00185891 -16.975839 " transform="matrix(0.994627, 0, 0, -0.994627, 156.744036, 13.611469)"/> | |
| 490 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.5524 3.112531 C -2.085046 1.243112 -1.044297 0.363385 0.000378478 -0.00185891 C -1.044297 -0.363175 -2.085046 -1.242902 -2.5524 -3.112322 " transform="matrix(0, 0.994627, 0.994627, 0, 156.744036, 30.894155)"/> | |
| 491 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00185891 -35.183043 L -0.00185891 -43.454047 " transform="matrix(0.994627, 0, 0, -0.994627, 156.744036, 13.611469)"/> | |
| 492 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552132 3.112531 C -2.084777 1.243112 -1.047956 0.363385 0.000646949 -0.00185891 C -1.047956 -0.363175 -2.084777 -1.242902 -2.552132 -3.112322 " transform="matrix(0, 0.994627, 0.994627, 0, 156.744036, 57.229825)"/> | |
| 493 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00185891 -61.657324 L -0.00185891 -69.932255 " transform="matrix(0.994627, 0, 0, -0.994627, 156.744036, 13.611469)"/> | |
| 494 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551854 3.112531 C -2.084499 1.243112 -1.047678 0.363385 0.000925419 -0.00185891 C -1.047678 -0.363175 -2.084499 -1.242902 -2.551854 -3.112322 " transform="matrix(0, 0.994627, 0.994627, 0, 156.744036, 83.565486)"/> | |
| 495 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00185891 -88.135533 L -0.00185891 -96.410464 " transform="matrix(0.994627, 0, 0, -0.994627, 156.744036, 13.611469)"/> | |
| 496 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551605 3.112531 C -2.08425 1.243112 -1.047429 0.363385 0.00117389 -0.00185891 C -1.047429 -0.363175 -2.08425 -1.242902 -2.551605 -3.112322 " transform="matrix(0, 0.994627, 0.994627, 0, 156.744036, 109.901176)"/> | |
| 497 | +</svg> | |
added
dist/assets/fig/8a3cf2c324617f58.svg
+774 −0
@@ -0,0 +1,774 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="362.43pt" height="136.681pt" viewBox="0 0 362.43 136.681"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.421875 -5.96875 C 1.203125 -5.96875 0.3125 -5.3125 0.3125 -4.28125 C 0.3125 -3.421875 0.796875 -2.890625 2.09375 -2.484375 C 2.953125 -2.21875 3.171875 -2.03125 3.171875 -1.59375 C 3.171875 -1.15625 2.8125 -0.875 2.25 -0.875 C 1.671875 -0.875 1.203125 -1.09375 0.765625 -1.453125 L 0.078125 -0.6875 C 0.5625 -0.234375 1.28125 0.140625 2.28125 0.140625 C 3.734375 0.140625 4.59375 -0.609375 4.59375 -1.703125 C 4.59375 -2.78125 3.96875 -3.234375 2.859375 -3.578125 C 1.953125 -3.859375 1.734375 -4.015625 1.734375 -4.390625 C 1.734375 -4.765625 2.046875 -4.953125 2.515625 -4.953125 C 3 -4.953125 3.390625 -4.796875 3.796875 -4.46875 L 4.4375 -5.21875 C 3.921875 -5.703125 3.3125 -5.96875 2.421875 -5.96875 Z M 2.421875 -5.96875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 2.453125 -4.609375 C 1.09375 -4.609375 0.265625 -3.671875 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.640625 -0.796875 4.640625 -2.234375 C 4.640625 -3.734375 3.8125 -4.609375 2.453125 -4.609375 Z M 2.453125 -3.625 C 3 -3.625 3.265625 -3.21875 3.265625 -2.234375 C 3.265625 -1.265625 3 -0.828125 2.453125 -0.828125 C 1.921875 -0.828125 1.640625 -1.25 1.640625 -2.234375 C 1.640625 -3.203125 1.921875 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 2.453125 -4.609375 C 1.125 -4.609375 0.265625 -3.609375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.484375 0.140625 C 3.09375 0.140625 3.578125 -0.0625 3.984375 -0.390625 L 3.40625 -1.203125 C 3.078125 -1.015625 2.859375 -0.90625 2.546875 -0.90625 C 2.015625 -0.90625 1.671875 -1.203125 1.671875 -2.203125 C 1.671875 -3.203125 2 -3.59375 2.5625 -3.59375 C 2.859375 -3.59375 3.125 -3.484375 3.40625 -3.265625 L 3.984375 -4.0625 C 3.5625 -4.421875 3.078125 -4.609375 2.453125 -4.609375 Z M 2.453125 -4.609375 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.0625 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.0625 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.46875 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.046875 -1.296875 L 4.046875 -3.03125 C 4.046875 -4.0625 3.5 -4.609375 2.203125 -4.609375 C 1.703125 -4.609375 1.078125 -4.484375 0.515625 -4.28125 L 0.828125 -3.40625 C 1.265625 -3.5625 1.703125 -3.640625 2 -3.640625 C 2.53125 -3.640625 2.75 -3.484375 2.75 -2.953125 L 2.75 -2.75 L 2.296875 -2.75 C 0.953125 -2.75 0.203125 -2.234375 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.1875 0.140625 2.6875 -0.03125 3 -0.515625 C 3.21875 -0.078125 3.5625 0.078125 4.078125 0.125 L 4.359375 -0.75 C 4.140625 -0.828125 4.046875 -0.953125 4.046875 -1.296875 Z M 2.046875 -0.8125 C 1.71875 -0.8125 1.53125 -1.015625 1.53125 -1.375 C 1.53125 -1.8125 1.8125 -2.03125 2.421875 -2.03125 L 2.75 -2.03125 L 2.75 -1.234375 C 2.59375 -0.96875 2.34375 -0.8125 2.046875 -0.8125 Z M 2.046875 -0.8125 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 1.6875 0.140625 C 2.015625 0.140625 2.296875 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.859375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.375 L 0.453125 -6.234375 L 0.453125 -1.140625 C 0.453125 -0.3125 0.90625 0.140625 1.6875 0.140625 Z M 1.6875 0.140625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 1.015625 -4.28125 C 0.578125 -4.28125 0.25 -3.9375 0.25 -3.515625 C 0.25 -3.109375 0.578125 -2.765625 1.015625 -2.765625 C 1.421875 -2.765625 1.765625 -3.109375 1.765625 -3.515625 C 1.765625 -3.9375 1.421875 -4.28125 1.015625 -4.28125 Z M 1.015625 -1.375 C 0.578125 -1.375 0.25 -1.03125 0.25 -0.625 C 0.25 -0.203125 0.578125 0.140625 1.015625 0.140625 C 1.421875 0.140625 1.765625 -0.203125 1.765625 -0.625 C 1.765625 -1.03125 1.421875 -1.375 1.015625 -1.375 Z M 1.015625 -1.375 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 3.03125 -8.03125 L 1.171875 -6.984375 L 1.5 -6.3125 L 3.515625 -7.046875 Z M 4.125 -5.828125 L 0.546875 -5.828125 L 0.546875 0 L 4.125 0 L 4.125 -0.984375 L 1.921875 -0.984375 L 1.921875 -2.484375 L 3.71875 -2.484375 L 3.71875 -3.453125 L 1.921875 -3.453125 L 1.921875 -4.84375 L 3.96875 -4.84375 Z M 4.125 -5.828125 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.125 -4.609375 C 2.5625 -4.609375 2.140625 -4.375 1.765625 -3.921875 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.265625 C 4.359375 -4.109375 3.90625 -4.609375 3.125 -4.609375 Z M 3.125 -4.609375 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 5.453125 -4.609375 C 4.875 -4.609375 4.46875 -4.375 4.109375 -3.90625 C 3.9375 -4.359375 3.5625 -4.609375 3.0625 -4.609375 C 2.515625 -4.609375 2.09375 -4.375 1.765625 -3.9375 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.03125 -3.421875 2.25 -3.625 2.515625 -3.625 C 2.71875 -3.625 2.90625 -3.5 2.90625 -3.03125 L 2.90625 0 L 4.234375 0 L 4.234375 -3.046875 C 4.421875 -3.421875 4.625 -3.625 4.90625 -3.625 C 5.109375 -3.625 5.28125 -3.5 5.28125 -3.03125 L 5.28125 0 L 6.609375 0 L 6.609375 -3.265625 C 6.609375 -4.109375 6.140625 -4.609375 5.453125 -4.609375 Z M 5.453125 -4.609375 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.328125 -4.46875 L 3.25 -4.078125 C 2.9375 -4.4375 2.5625 -4.609375 2.09375 -4.609375 C 0.984375 -4.609375 0.265625 -3.625 0.265625 -2.25 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.515625 0.140625 2.890625 -0.09375 3.15625 -0.421875 L 3.15625 1.71875 L 4.484375 1.859375 L 4.484375 -4.46875 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.46875 -3.640625 C 2.75 -3.640625 2.953125 -3.5 3.15625 -3.265625 L 3.15625 -1.34375 C 2.9375 -1 2.703125 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 4.265625 -4.46875 L 2.9375 -4.46875 L 2.9375 -1.359375 C 2.734375 -1.03125 2.484375 -0.84375 2.203125 -0.84375 C 1.9375 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.46875 L 0.453125 -4.46875 L 0.453125 -1.265625 C 0.453125 -0.390625 0.859375 0.140625 1.703125 0.140625 C 2.296875 0.140625 2.734375 -0.09375 3.046875 -0.5625 L 3.109375 0 L 4.265625 0 Z M 4.265625 -4.46875 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.609375 2.359375 -4.609375 C 1 -4.609375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.8125 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.328125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.390625 -1.84375 C 4.40625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.453125 1.9375 -3.71875 2.390625 -3.71875 C 2.921875 -3.71875 3.109375 -3.296875 3.109375 -2.703125 Z M 3.109375 -2.640625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 3.0625 -5.96875 C 1.5 -5.96875 0.28125 -4.890625 0.28125 -2.921875 C 0.28125 -0.921875 1.171875 0.140625 2.953125 0.140625 C 3.6875 0.140625 4.4375 -0.078125 5.046875 -0.46875 L 5.046875 -3.359375 L 2.8125 -3.359375 L 2.953125 -2.375 L 3.703125 -2.375 L 3.703125 -1.0625 C 3.46875 -0.921875 3.203125 -0.859375 2.921875 -0.859375 C 2.109375 -0.859375 1.703125 -1.390625 1.703125 -2.921875 C 1.703125 -4.359375 2.3125 -4.96875 3.125 -4.96875 C 3.59375 -4.96875 3.921875 -4.828125 4.3125 -4.515625 L 5.015625 -5.25 C 4.53125 -5.671875 3.921875 -5.96875 3.0625 -5.96875 Z M 3.0625 -5.96875 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 4.359375 -4.46875 L 3.015625 -4.46875 L 2.1875 -1.015625 L 1.390625 -4.46875 L -0.046875 -4.46875 L 1.390625 0 L 2.953125 0 Z M 4.359375 -4.46875 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.9375 -4.59375 C 2.421875 -4.59375 1.984375 -4.21875 1.78125 -3.59375 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -2.25 C 2 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.03125 -3.28125 3.171875 -3.25 L 3.375 -4.53125 C 3.234375 -4.578125 3.109375 -4.59375 2.9375 -4.59375 Z M 2.9375 -4.59375 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 2.875 -1.046875 C 2.703125 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.125 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.46875 L 1.96875 -4.46875 L 1.96875 -5.578125 L 0.640625 -5.4375 L 0.640625 -4.46875 L 0.015625 -4.46875 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.328125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 2.421875 -5.828125 L 0.546875 -5.828125 L 0.546875 0 L 1.921875 0 L 1.921875 -1.9375 L 2.5625 -1.9375 C 3.90625 -1.9375 4.859375 -2.578125 4.859375 -3.921875 C 4.859375 -5.203125 3.9375 -5.828125 2.421875 -5.828125 Z M 2.4375 -2.9375 L 1.921875 -2.9375 L 1.921875 -4.84375 L 2.40625 -4.84375 C 3.09375 -4.84375 3.4375 -4.546875 3.4375 -3.921875 C 3.4375 -3.1875 3.0625 -2.9375 2.4375 -2.9375 Z M 2.4375 -2.9375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 3.125 -4.609375 C 2.59375 -4.609375 2.203125 -4.390625 1.84375 -3.984375 L 1.84375 -6.375 L 0.515625 -6.234375 L 0.515625 0 L 1.84375 0 L 1.84375 -3.0625 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.859375 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.265625 C 4.359375 -4.109375 3.890625 -4.609375 3.125 -4.609375 Z M 3.125 -4.609375 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 4.40625 -4.46875 L 3.03125 -4.46875 L 2.15625 -0.84375 L 1.359375 -4.46875 L -0.046875 -4.46875 L 1.3125 0 L 1.765625 0 C 1.515625 0.578125 1.203125 0.828125 0.328125 0.9375 L 0.46875 1.859375 C 1.875 1.796875 2.625 1.140625 2.984375 0.015625 Z M 4.40625 -4.46875 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 2.09375 -4.609375 C 0.96875 -4.609375 0.265625 -4.015625 0.265625 -3.25 C 0.265625 -2.5625 0.703125 -2.09375 1.59375 -1.84375 C 2.390625 -1.625 2.53125 -1.53125 2.53125 -1.234375 C 2.53125 -0.953125 2.28125 -0.8125 1.890625 -0.8125 C 1.453125 -0.8125 1.03125 -0.984375 0.703125 -1.25 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.921875 0.140625 C 3.03125 0.140625 3.90625 -0.40625 3.90625 -1.328125 C 3.90625 -2.125 3.40625 -2.5 2.515625 -2.75 C 1.71875 -2.984375 1.609375 -3.078125 1.609375 -3.328125 C 1.609375 -3.515625 1.78125 -3.65625 2.140625 -3.65625 C 2.53125 -3.65625 2.90625 -3.53125 3.25 -3.3125 L 3.734375 -4.0625 C 3.328125 -4.390625 2.734375 -4.609375 2.09375 -4.609375 Z M 2.09375 -4.609375 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 3.65625 0 L 5.21875 0 L 3.734375 -2.484375 C 4.484375 -2.828125 4.84375 -3.28125 4.84375 -4.046875 C 4.84375 -5.265625 4.03125 -5.828125 2.453125 -5.828125 L 0.546875 -5.828125 L 0.546875 0 L 1.921875 0 L 1.921875 -2.234375 L 2.46875 -2.234375 Z M 1.921875 -4.859375 L 2.421875 -4.859375 C 3.109375 -4.859375 3.4375 -4.609375 3.4375 -4.046875 C 3.4375 -3.4375 3.109375 -3.171875 2.5 -3.171875 L 1.921875 -3.171875 Z M 1.921875 -4.859375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 3.5 -6.03125 L 2.984375 -7.015625 L 1.15625 -5.90625 L 1.515625 -5.234375 Z M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.609375 2.359375 -4.609375 C 1 -4.609375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.8125 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.328125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.390625 -1.84375 C 4.40625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.921875 -3.71875 3.109375 -3.296875 3.109375 -2.703125 Z M 3.109375 -2.640625 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-0"> | |
| 75 | +<path d="M 2.296875 -5.6875 C 2.53125 -5.6875 2.796875 -5.640625 3.078125 -5.515625 L 3.328125 -6.078125 C 2.96875 -6.234375 2.6875 -6.296875 2.265625 -6.296875 C 1.359375 -6.296875 0.875 -5.78125 0.875 -5.03125 L 0.875 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.875 -3.828125 L 0.875 0 L 1.640625 0 L 1.640625 -3.828125 L 2.640625 -3.828125 L 2.71875 -4.4375 L 1.640625 -4.4375 L 1.640625 -5.046875 C 1.640625 -5.46875 1.8125 -5.6875 2.296875 -5.6875 Z M 2.296875 -5.6875 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-1"> | |
| 78 | +<path d="M 2.46875 -4.53125 C 1.203125 -4.53125 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.71875 -4.53125 2.46875 -4.53125 Z M 2.46875 -3.90625 C 3.1875 -3.90625 3.59375 -3.375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.375 1.71875 -3.90625 2.46875 -3.90625 Z M 2.46875 -3.90625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-2"> | |
| 81 | +<path d="M 2.703125 -4.53125 C 2.15625 -4.53125 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.78125 2.609375 -3.78125 C 2.765625 -3.78125 2.859375 -3.75 3 -3.71875 L 3.140625 -4.484375 C 3 -4.515625 2.84375 -4.53125 2.703125 -4.53125 Z M 2.703125 -4.53125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-3"> | |
| 84 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.59375 -3.828125 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.515625 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-4"> | |
| 87 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-5"> | |
| 90 | +<path d="M 2.40625 -4.53125 C 1.203125 -4.53125 0.484375 -3.59375 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.5625 2.453125 -0.5625 C 1.75 -0.5625 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.453125 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.359375 -4.390625 2.9375 -4.53125 2.40625 -4.53125 Z M 2.40625 -4.53125 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-6"> | |
| 93 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.328125 0.609375 -6.03125 C 0.609375 -5.734375 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.703125 -5.734375 1.703125 -6.03125 C 1.703125 -6.328125 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-7"> | |
| 96 | +<path d="M 2 -4.53125 C 1.078125 -4.53125 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.03125 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.453125 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.25 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.453125 -2.8125 1.203125 -2.96875 1.203125 -3.34375 C 1.203125 -3.6875 1.515625 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.171875 -3.53125 L 3.5 -4.03125 C 3.078125 -4.34375 2.625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-8"> | |
| 99 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-9"> | |
| 102 | +<path d="M 2.859375 -4.53125 C 2.28125 -4.53125 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.109375 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-10"> | |
| 105 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.125 -4.296875 2.734375 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.171875 3.4375 -0.609375 L 3.5 0 L 4.1875 0 L 4.1875 -6.21875 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-11"> | |
| 108 | +<path d="M 3.359375 -6.09375 L 3.015625 -6.734375 L 1.34375 -5.78125 L 1.578125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-12"> | |
| 111 | +<path d="M 5.21875 -4.53125 C 4.625 -4.53125 4.21875 -4.21875 3.90625 -3.734375 C 3.734375 -4.234375 3.328125 -4.53125 2.78125 -4.53125 C 2.203125 -4.53125 1.796875 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.59375 -3.921875 C 2.921875 -3.921875 3.21875 -3.734375 3.21875 -3.0625 L 3.21875 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.03125 -3.921875 C 5.359375 -3.921875 5.65625 -3.734375 5.65625 -3.0625 L 5.65625 0 L 6.421875 0 L 6.421875 -3.171875 C 6.421875 -4.015625 5.9375 -4.53125 5.21875 -4.53125 Z M 5.21875 -4.53125 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-13"> | |
| 114 | +<path d="M 4.140625 -4.921875 C 3.625 -4.6875 3.21875 -4.5 2.125 -4.53125 C 1.140625 -4.53125 0.40625 -3.890625 0.40625 -2.984375 C 0.40625 -2.40625 0.640625 -2.03125 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.265625 0.671875 -0.96875 C 0.671875 -0.53125 1.03125 -0.140625 1.8125 -0.140625 L 2.515625 -0.140625 C 3.0625 -0.140625 3.40625 0.078125 3.40625 0.5 C 3.40625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.140625 1.1875 0.90625 0.953125 0.90625 0.453125 L 0.203125 0.453125 C 0.203125 1.34375 0.671875 1.796875 2.109375 1.796875 C 3.484375 1.796875 4.1875 1.296875 4.1875 0.453125 C 4.1875 -0.265625 3.578125 -0.78125 2.671875 -0.78125 L 1.96875 -0.78125 C 1.515625 -0.78125 1.390625 -0.9375 1.390625 -1.140625 C 1.390625 -1.296875 1.484375 -1.46875 1.609375 -1.5625 C 1.796875 -1.5 1.96875 -1.46875 2.171875 -1.46875 C 3.234375 -1.46875 3.859375 -2.09375 3.859375 -2.96875 C 3.859375 -3.484375 3.59375 -3.859375 3.078125 -4.09375 C 3.578125 -4.09375 4 -4.109375 4.375 -4.234375 Z M 2.125 -3.96875 C 2.75 -3.96875 3.0625 -3.640625 3.0625 -3 C 3.0625 -2.359375 2.734375 -1.984375 2.140625 -1.984375 C 1.53125 -1.984375 1.203125 -2.390625 1.203125 -2.984375 C 1.203125 -3.5625 1.515625 -3.96875 2.125 -3.96875 Z M 2.125 -3.96875 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-14"> | |
| 117 | +<path d="M 2.8125 -4.53125 C 2.296875 -4.53125 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 1.796875 L 1.546875 1.703125 L 1.546875 -0.40625 C 1.828125 -0.0625 2.234375 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.453125 -0.875 4.453125 -2.21875 C 4.453125 -3.609375 3.984375 -4.53125 2.8125 -4.53125 Z M 2.515625 -0.53125 C 2.125 -0.53125 1.78125 -0.71875 1.546875 -1.0625 L 1.546875 -3.234375 C 1.78125 -3.578125 2.140625 -3.921875 2.609375 -3.921875 C 3.28125 -3.921875 3.609375 -3.375 3.609375 -2.21875 C 3.609375 -1.0625 3.234375 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-15"> | |
| 120 | +<path d="M 2.859375 -4.53125 C 2.296875 -4.53125 1.859375 -4.25 1.546875 -3.8125 L 1.546875 -6.28125 L 0.765625 -6.203125 L 0.765625 0 L 1.546875 0 L 1.546875 -3.15625 C 1.84375 -3.609375 2.1875 -3.921875 2.671875 -3.921875 C 3.078125 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-16"> | |
| 123 | +<path d="M 3.515625 -4.4375 L 3.46875 -3.9375 C 3.15625 -4.265625 2.765625 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.6875 0.09375 3.125 -0.15625 3.40625 -0.59375 L 3.40625 1.703125 L 4.1875 1.796875 L 4.1875 -4.4375 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-17"> | |
| 126 | +<path d="M 4.0625 -4.4375 L 3.28125 -4.4375 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.703125 -0.5 1.5 -0.734375 1.5 -1.34375 L 1.5 -4.4375 L 0.71875 -4.4375 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.59375 0.09375 3 -0.15625 3.34375 -0.6875 L 3.390625 0 L 4.0625 0 Z M 4.0625 -4.4375 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-18"> | |
| 129 | +<path d="M 1.90625 -7.109375 C 1.078125 -5.9375 0.34375 -4.9375 0.34375 -2.9375 C 0.34375 -0.953125 1.078125 0.046875 1.90625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.75 1.625 -5.65625 2.390625 -6.765625 Z M 1.90625 -7.109375 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-1-19"> | |
| 132 | +<path d="M 1.875 -4.828125 C 1.140625 -4.828125 0.59375 -4.515625 0.125 -3.9375 L 0.625 -3.53125 C 1.03125 -4.015625 1.390625 -4.1875 1.859375 -4.1875 C 2.40625 -4.1875 2.8125 -3.84375 2.8125 -3.3125 C 2.8125 -2.640625 2.546875 -2.265625 0.25 -0.609375 L 0.25 0 L 3.609375 0 L 3.703125 -0.640625 L 1.25 -0.640625 C 3.40625 -2.03125 3.625 -2.578125 3.625 -3.34375 C 3.625 -4.1875 2.9375 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-1-20"> | |
| 135 | +<path d="M 2.546875 -4.828125 C 1.265625 -4.828125 0.34375 -3.9375 0.34375 -2.375 C 0.34375 -0.8125 1.265625 0.09375 2.546875 0.09375 C 3.828125 0.09375 4.765625 -0.8125 4.765625 -2.375 C 4.765625 -3.9375 3.828125 -4.828125 2.546875 -4.828125 Z M 2.546875 -4.21875 C 3.265625 -4.21875 3.96875 -3.71875 3.96875 -2.375 C 3.96875 -1.015625 3.265625 -0.515625 2.546875 -0.515625 C 1.828125 -0.515625 1.125 -1.015625 1.125 -2.375 C 1.125 -3.71875 1.828125 -4.21875 2.546875 -4.21875 Z M 2.546875 -4.21875 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-1-21"> | |
| 138 | +<path d="M 1.875 -4.828125 C 1.25 -4.828125 0.71875 -4.609375 0.25 -4.15625 L 0.640625 -3.703125 C 1.03125 -4.046875 1.359375 -4.203125 1.8125 -4.203125 C 2.40625 -4.203125 2.78125 -3.890625 2.78125 -3.359375 C 2.78125 -2.75 2.3125 -2.40625 1.71875 -2.40625 L 1.4375 -2.40625 L 1.34375 -1.8125 L 1.765625 -1.8125 C 2.515625 -1.8125 2.921875 -1.515625 2.921875 -0.765625 C 2.921875 -0.078125 2.484375 0.359375 1.75 0.359375 C 1.296875 0.359375 0.921875 0.1875 0.546875 -0.203125 L 0.078125 0.234375 C 0.515625 0.734375 1.09375 0.984375 1.78125 0.984375 C 2.96875 0.984375 3.71875 0.25 3.71875 -0.734375 C 3.71875 -1.625 3.1875 -2.0625 2.4375 -2.15625 C 3.078125 -2.296875 3.546875 -2.75 3.546875 -3.421875 C 3.546875 -4.15625 2.953125 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-1-22"> | |
| 141 | +<path d="M 0.265625 -2.296875 L 4.109375 -2.296875 L 4.109375 -2.953125 L 0.265625 -2.953125 Z M 0.265625 -2.296875 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-1-23"> | |
| 144 | +<path d="M 4.171875 -0.9375 L 3.46875 -0.9375 L 3.46875 -2.46875 L 2.8125 -2.46875 L 2.734375 -0.9375 L 0.984375 -0.9375 L 2.5 -4.5625 L 1.859375 -4.828125 L 0.171875 -0.875 L 0.171875 -0.34375 L 2.734375 -0.34375 L 2.734375 0.90625 L 3.46875 0.90625 L 3.46875 -0.34375 L 4.171875 -0.34375 Z M 4.171875 -0.9375 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-1-24"> | |
| 147 | +<path d="M 0.828125 -7.109375 L 0.34375 -6.765625 C 1.09375 -5.65625 1.578125 -4.75 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.34375 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.9375 1.640625 -5.9375 0.828125 -7.109375 Z M 0.828125 -7.109375 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-1-25"> | |
| 150 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.59375 -0.296875 1.59375 -0.484375 C 1.59375 -0.8125 1.34375 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-1-26"> | |
| 153 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-1-27"> | |
| 156 | +<path d="M 1 -6.328125 C 0.703125 -6.328125 0.453125 -6.09375 0.453125 -5.796875 C 0.453125 -5.625 0.53125 -5.484375 0.671875 -5.375 L 0.34375 -4.125 L 0.84375 -4.125 L 1.40625 -5.3125 C 1.515625 -5.546875 1.546875 -5.671875 1.546875 -5.796875 C 1.546875 -6.09375 1.296875 -6.328125 1 -6.328125 Z M 1 -6.328125 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-1-28"> | |
| 159 | +<path d="M 3.390625 -4.4375 L 0.40625 -4.4375 L 0.40625 -3.78125 L 2.515625 -3.78125 L 0.203125 -0.578125 L 0.203125 0 L 3.328125 0 L 3.421875 -0.640625 L 1.078125 -0.640625 L 3.390625 -3.84375 Z M 3.390625 -4.4375 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-1-29"> | |
| 162 | +<path d="M 4.609375 -5.6875 C 4.84375 -5.6875 5.109375 -5.640625 5.390625 -5.515625 L 5.625 -6.078125 C 5.28125 -6.234375 5 -6.296875 4.578125 -6.296875 C 4.109375 -6.296875 3.75 -6.15625 3.515625 -5.921875 C 3.046875 -6.140625 2.71875 -6.21875 2.25 -6.21875 C 1.265625 -6.21875 0.796875 -5.6875 0.796875 -4.953125 L 0.796875 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.796875 -3.828125 L 0.796875 0 L 1.5625 0 L 1.5625 -3.828125 L 3.1875 -3.828125 L 3.1875 0 L 3.953125 0 L 3.953125 -3.828125 L 4.953125 -3.828125 L 5.03125 -4.4375 L 3.953125 -4.4375 L 3.953125 -5.046875 C 3.953125 -5.46875 4.125 -5.6875 4.609375 -5.6875 Z M 3.1875 -4.4375 L 1.5625 -4.4375 L 1.5625 -4.953125 C 1.5625 -5.390625 1.734375 -5.59375 2.296875 -5.59375 C 2.640625 -5.59375 2.90625 -5.546875 3.234375 -5.421875 C 3.203125 -5.296875 3.1875 -5.171875 3.1875 -5.03125 Z M 3.1875 -4.4375 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-1-30"> | |
| 165 | +<path d="M 3.953125 -4.4375 L 3.953125 -5.015625 C 3.953125 -5.4375 4.125 -5.671875 4.734375 -5.671875 C 5.078125 -5.671875 5.390625 -5.59375 5.671875 -5.46875 L 5.9375 -6 C 5.578125 -6.1875 5.21875 -6.296875 4.71875 -6.296875 C 4.171875 -6.296875 3.78125 -6.15625 3.53125 -5.921875 C 3.046875 -6.140625 2.71875 -6.21875 2.25 -6.21875 C 1.265625 -6.21875 0.796875 -5.6875 0.796875 -4.953125 L 0.796875 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.796875 -3.828125 L 0.796875 0 L 1.5625 0 L 1.5625 -3.828125 L 3.1875 -3.828125 L 3.1875 0 L 3.953125 0 L 3.953125 -3.828125 L 5.65625 -3.828125 L 5.65625 0 L 6.4375 0 L 6.4375 -4.4375 Z M 3.1875 -4.4375 L 1.5625 -4.4375 L 1.5625 -4.953125 C 1.5625 -5.390625 1.734375 -5.59375 2.296875 -5.59375 C 2.640625 -5.59375 2.90625 -5.546875 3.234375 -5.421875 C 3.203125 -5.296875 3.1875 -5.15625 3.1875 -5.015625 Z M 3.1875 -4.4375 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-1-31"> | |
| 168 | +<path d="M 2.5 -2.375 L 3.859375 -4.4375 L 2.984375 -4.4375 L 2.046875 -2.8125 L 1.125 -4.4375 L 0.21875 -4.4375 L 1.59375 -2.34375 L 0.046875 0 L 0.921875 0 L 2.015625 -1.875 L 3.109375 0 L 4.03125 0 Z M 2.5 -2.375 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-1-32"> | |
| 171 | +<path d="M 2.796875 -4.53125 C 2.265625 -4.53125 1.84375 -4.28125 1.546875 -3.875 L 1.546875 -6.296875 L 0.765625 -6.21875 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.78125 0.09375 4.453125 -0.828125 4.453125 -2.21875 C 4.453125 -3.703125 3.796875 -4.53125 2.796875 -4.53125 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.78125 -0.75 1.546875 -1.109375 L 1.546875 -3.234375 C 1.78125 -3.578125 2.09375 -3.921875 2.578125 -3.921875 C 3.203125 -3.921875 3.609375 -3.484375 3.609375 -2.21875 C 3.609375 -1.015625 3.171875 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 172 | +</g> | |
| 173 | +</g> | |
| 174 | +<clipPath id="clip-0"> | |
| 175 | +<path clip-rule="nonzero" d="M 0.136719 0 L 361.722656 0 L 361.722656 28 L 0.136719 28 Z M 0.136719 0 "/> | |
| 176 | +</clipPath> | |
| 177 | +<clipPath id="clip-1"> | |
| 178 | +<path clip-rule="nonzero" d="M 0.136719 26 L 361.722656 26 L 361.722656 56 L 0.136719 56 Z M 0.136719 26 "/> | |
| 179 | +</clipPath> | |
| 180 | +<clipPath id="clip-2"> | |
| 181 | +<path clip-rule="nonzero" d="M 0.136719 54 L 361.722656 54 L 361.722656 83 L 0.136719 83 Z M 0.136719 54 "/> | |
| 182 | +</clipPath> | |
| 183 | +<clipPath id="clip-3"> | |
| 184 | +<path clip-rule="nonzero" d="M 0.136719 81 L 361.722656 81 L 361.722656 110 L 0.136719 110 Z M 0.136719 81 "/> | |
| 185 | +</clipPath> | |
| 186 | +<clipPath id="clip-4"> | |
| 187 | +<path clip-rule="nonzero" d="M 0.136719 108 L 361.722656 108 L 361.722656 136.363281 L 0.136719 136.363281 Z M 0.136719 108 "/> | |
| 188 | +</clipPath> | |
| 189 | +</defs> | |
| 190 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 352.582031 5.167969 L 9.28125 5.167969 C 7.082031 5.167969 5.304688 6.949219 5.304688 9.144531 L 5.304688 18.160156 C 5.304688 20.359375 7.082031 22.136719 9.28125 22.136719 L 352.582031 22.136719 C 354.777344 22.136719 356.558594 20.359375 356.558594 18.160156 L 356.558594 9.144531 C 356.558594 6.949219 354.777344 5.167969 352.582031 5.167969 Z M 352.582031 5.167969 "/> | |
| 191 | +<g clip-path="url(#clip-0)"> | |
| 192 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.051985 8.50497 L -172.050026 8.50497 C -174.254378 8.50497 -176.03587 6.719562 -176.03587 4.519126 L -176.03587 -4.51754 C -176.03587 -6.721892 -174.254378 -8.503384 -172.050026 -8.503384 L 172.051985 -8.503384 C 174.252421 -8.503384 176.037828 -6.721892 176.037828 -4.51754 L 176.037828 4.519126 C 176.037828 6.719562 174.252421 8.50497 172.051985 8.50497 Z M 172.051985 8.50497 " transform="matrix(0.997672, 0, 0, -0.997672, 180.930664, 13.653135)"/> | |
| 193 | +</g> | |
| 194 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 195 | +<use xlink:href="#glyph-0-0" x="8.420286" y="16.296964"/> | |
| 196 | +<use xlink:href="#glyph-0-1" x="13.230105" y="16.296964"/> | |
| 197 | +<use xlink:href="#glyph-0-2" x="18.140829" y="16.296964"/> | |
| 198 | +<use xlink:href="#glyph-0-3" x="22.168633" y="16.296964"/> | |
| 199 | +<use xlink:href="#glyph-0-4" x="24.523089" y="16.296964"/> | |
| 200 | +</g> | |
| 201 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 202 | +<use xlink:href="#glyph-0-5" x="29.04701" y="16.296964"/> | |
| 203 | +</g> | |
| 204 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 205 | +<use xlink:href="#glyph-0-6" x="34.369765" y="16.296964"/> | |
| 206 | +</g> | |
| 207 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 208 | +<use xlink:href="#glyph-1-0" x="39.196401" y="16.296964"/> | |
| 209 | +</g> | |
| 210 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 211 | +<use xlink:href="#glyph-1-1" x="41.929253" y="16.296964"/> | |
| 212 | +<use xlink:href="#glyph-1-2" x="46.839978" y="16.296964"/> | |
| 213 | +<use xlink:href="#glyph-1-3" x="50.060538" y="16.296964"/> | |
| 214 | +</g> | |
| 215 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 216 | +<use xlink:href="#glyph-1-4" x="52.969974" y="16.296964"/> | |
| 217 | +</g> | |
| 218 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 219 | +<use xlink:href="#glyph-1-5" x="60.34447" y="16.296964"/> | |
| 220 | +<use xlink:href="#glyph-1-2" x="64.363864" y="16.296964"/> | |
| 221 | +</g> | |
| 222 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 223 | +<use xlink:href="#glyph-1-1" x="67.416249" y="16.296964"/> | |
| 224 | +<use xlink:href="#glyph-1-6" x="72.326974" y="16.296964"/> | |
| 225 | +<use xlink:href="#glyph-1-7" x="74.647796" y="16.296964"/> | |
| 226 | +</g> | |
| 227 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 228 | +<use xlink:href="#glyph-1-7" x="78.490606" y="16.296964"/> | |
| 229 | +<use xlink:href="#glyph-1-8" x="82.417504" y="16.296964"/> | |
| 230 | +<use xlink:href="#glyph-1-9" x="86.949833" y="16.296964"/> | |
| 231 | +<use xlink:href="#glyph-1-5" x="91.818514" y="16.296964"/> | |
| 232 | +</g> | |
| 233 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 234 | +<use xlink:href="#glyph-1-4" x="95.711777" y="16.296964"/> | |
| 235 | +</g> | |
| 236 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 237 | +<use xlink:href="#glyph-1-10" x="103.086272" y="16.296964"/> | |
| 238 | +<use xlink:href="#glyph-1-11" x="108.047449" y="16.296964"/> | |
| 239 | +<use xlink:href="#glyph-1-12" x="112.621823" y="16.296964"/> | |
| 240 | +<use xlink:href="#glyph-1-1" x="119.769281" y="16.296964"/> | |
| 241 | +<use xlink:href="#glyph-1-13" x="124.680006" y="16.296964"/> | |
| 242 | +<use xlink:href="#glyph-1-2" x="129.052568" y="16.296964"/> | |
| 243 | +</g> | |
| 244 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 245 | +<use xlink:href="#glyph-1-8" x="132.104954" y="16.296964"/> | |
| 246 | +<use xlink:href="#glyph-1-14" x="136.637283" y="16.296964"/> | |
| 247 | +<use xlink:href="#glyph-1-15" x="141.564825" y="16.296964"/> | |
| 248 | +<use xlink:href="#glyph-1-6" x="146.433506" y="16.296964"/> | |
| 249 | +<use xlink:href="#glyph-1-16" x="148.754328" y="16.296964"/> | |
| 250 | +<use xlink:href="#glyph-1-17" x="153.715505" y="16.296964"/> | |
| 251 | +<use xlink:href="#glyph-1-4" x="158.55055" y="16.296964"/> | |
| 252 | +</g> | |
| 253 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 254 | +<use xlink:href="#glyph-1-18" x="165.925046" y="16.296964"/> | |
| 255 | +<use xlink:href="#glyph-1-19" x="168.649489" y="16.296964"/> | |
| 256 | +<use xlink:href="#glyph-1-20" x="172.820241" y="16.296964"/> | |
| 257 | +</g> | |
| 258 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 259 | +<use xlink:href="#glyph-1-19" x="177.815053" y="16.296964"/> | |
| 260 | +</g> | |
| 261 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 262 | +<use xlink:href="#glyph-1-21" x="181.775586" y="16.296964"/> | |
| 263 | +<use xlink:href="#glyph-1-22" x="185.879068" y="16.296964"/> | |
| 264 | +</g> | |
| 265 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 266 | +<use xlink:href="#glyph-1-19" x="189.957324" y="16.296964"/> | |
| 267 | +<use xlink:href="#glyph-1-20" x="194.128076" y="16.296964"/> | |
| 268 | +</g> | |
| 269 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 270 | +<use xlink:href="#glyph-1-19" x="199.122888" y="16.296964"/> | |
| 271 | +</g> | |
| 272 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 273 | +<use xlink:href="#glyph-1-23" x="203.167509" y="16.296964"/> | |
| 274 | +<use xlink:href="#glyph-1-24" x="207.304626" y="16.296964"/> | |
| 275 | +<use xlink:href="#glyph-1-25" x="210.029069" y="16.296964"/> | |
| 276 | +</g> | |
| 277 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 278 | +<use xlink:href="#glyph-1-14" x="214.855706" y="16.296964"/> | |
| 279 | +<use xlink:href="#glyph-1-1" x="219.783248" y="16.296964"/> | |
| 280 | +<use xlink:href="#glyph-1-2" x="224.693972" y="16.296964"/> | |
| 281 | +<use xlink:href="#glyph-1-3" x="227.914533" y="16.296964"/> | |
| 282 | +</g> | |
| 283 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 284 | +<use xlink:href="#glyph-1-11" x="230.823969" y="16.296964"/> | |
| 285 | +<use xlink:href="#glyph-1-4" x="235.398343" y="16.296964"/> | |
| 286 | +</g> | |
| 287 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 288 | +<use xlink:href="#glyph-1-14" x="242.772838" y="16.296964"/> | |
| 289 | +</g> | |
| 290 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 291 | +<use xlink:href="#glyph-1-8" x="247.658336" y="16.296964"/> | |
| 292 | +<use xlink:href="#glyph-1-2" x="252.190666" y="16.296964"/> | |
| 293 | +</g> | |
| 294 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 295 | +<use xlink:href="#glyph-1-26" x="258.211349" y="16.296964"/> | |
| 296 | +</g> | |
| 297 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 298 | +<use xlink:href="#glyph-1-27" x="260.557397" y="16.296964"/> | |
| 299 | +<use xlink:href="#glyph-1-6" x="262.474597" y="16.296964"/> | |
| 300 | +<use xlink:href="#glyph-1-12" x="264.795419" y="16.296964"/> | |
| 301 | +<use xlink:href="#glyph-1-12" x="271.942878" y="16.296964"/> | |
| 302 | +<use xlink:href="#glyph-1-6" x="279.090336" y="16.296964"/> | |
| 303 | +<use xlink:href="#glyph-1-13" x="281.411158" y="16.296964"/> | |
| 304 | +<use xlink:href="#glyph-1-2" x="285.783721" y="16.296964"/> | |
| 305 | +</g> | |
| 306 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 307 | +<use xlink:href="#glyph-1-8" x="288.836106" y="16.296964"/> | |
| 308 | +<use xlink:href="#glyph-1-3" x="293.368436" y="16.296964"/> | |
| 309 | +<use xlink:href="#glyph-1-6" x="296.404003" y="16.296964"/> | |
| 310 | +<use xlink:href="#glyph-1-1" x="298.724825" y="16.296964"/> | |
| 311 | +<use xlink:href="#glyph-1-9" x="303.63555" y="16.296964"/> | |
| 312 | +</g> | |
| 313 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 314 | +<use xlink:href="#glyph-1-3" x="311.312761" y="16.296964"/> | |
| 315 | +</g> | |
| 316 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 317 | +<use xlink:href="#glyph-1-4" x="314.222197" y="16.296964"/> | |
| 318 | +<use xlink:href="#glyph-1-12" x="318.796571" y="16.296964"/> | |
| 319 | +<use xlink:href="#glyph-1-14" x="325.944029" y="16.296964"/> | |
| 320 | +<use xlink:href="#glyph-1-1" x="330.871571" y="16.296964"/> | |
| 321 | +<use xlink:href="#glyph-1-2" x="335.782296" y="16.296964"/> | |
| 322 | +</g> | |
| 323 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 324 | +<use xlink:href="#glyph-1-8" x="338.834681" y="16.296964"/> | |
| 325 | +<use xlink:href="#glyph-1-6" x="343.36701" y="16.296964"/> | |
| 326 | +<use xlink:href="#glyph-1-2" x="345.687832" y="16.296964"/> | |
| 327 | +</g> | |
| 328 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 329 | +<use xlink:href="#glyph-1-4" x="348.740217" y="16.296964"/> | |
| 330 | +</g> | |
| 331 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 352.582031 32.433594 L 9.28125 32.433594 C 7.082031 32.433594 5.304688 34.214844 5.304688 36.410156 L 5.304688 45.425781 C 5.304688 47.621094 7.082031 49.402344 9.28125 49.402344 L 352.582031 49.402344 C 354.777344 49.402344 356.558594 47.621094 356.558594 45.425781 L 356.558594 36.410156 C 356.558594 34.214844 354.777344 32.433594 352.582031 32.433594 Z M 352.582031 32.433594 "/> | |
| 332 | +<g clip-path="url(#clip-1)"> | |
| 333 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.051985 -18.824291 L -172.050026 -18.824291 C -174.254378 -18.824291 -176.03587 -20.609698 -176.03587 -22.810134 L -176.03587 -31.846801 C -176.03587 -34.047237 -174.254378 -35.832644 -172.050026 -35.832644 L 172.051985 -35.832644 C 174.252421 -35.832644 176.037828 -34.047237 176.037828 -31.846801 L 176.037828 -22.810134 C 176.037828 -20.609698 174.252421 -18.824291 172.051985 -18.824291 Z M 172.051985 -18.824291 " transform="matrix(0.997672, 0, 0, -0.997672, 180.930664, 13.653135)"/> | |
| 334 | +</g> | |
| 335 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 336 | +<use xlink:href="#glyph-0-7" x="8.420286" y="44.005296"/> | |
| 337 | +</g> | |
| 338 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 339 | +<use xlink:href="#glyph-0-2" x="12.675126" y="44.005296"/> | |
| 340 | +</g> | |
| 341 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 342 | +<use xlink:href="#glyph-0-1" x="16.576797" y="44.005296"/> | |
| 343 | +<use xlink:href="#glyph-0-8" x="21.487522" y="44.005296"/> | |
| 344 | +<use xlink:href="#glyph-0-1" x="26.30575" y="44.005296"/> | |
| 345 | +<use xlink:href="#glyph-0-9" x="31.216474" y="44.005296"/> | |
| 346 | +<use xlink:href="#glyph-0-3" x="38.288254" y="44.005296"/> | |
| 347 | +<use xlink:href="#glyph-0-10" x="40.642711" y="44.005296"/> | |
| 348 | +<use xlink:href="#glyph-0-11" x="45.637523" y="44.005296"/> | |
| 349 | +<use xlink:href="#glyph-0-12" x="50.413707" y="44.005296"/> | |
| 350 | +</g> | |
| 351 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 352 | +<use xlink:href="#glyph-0-6" x="57.87229" y="44.005296"/> | |
| 353 | +</g> | |
| 354 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-1-15" x="62.698927" y="44.005296"/> | |
| 356 | +<use xlink:href="#glyph-1-8" x="67.567607" y="44.005296"/> | |
| 357 | +<use xlink:href="#glyph-1-17" x="72.099937" y="44.005296"/> | |
| 358 | +<use xlink:href="#glyph-1-7" x="76.934982" y="44.005296"/> | |
| 359 | +</g> | |
| 360 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 361 | +<use xlink:href="#glyph-1-7" x="80.777793" y="44.005296"/> | |
| 362 | +<use xlink:href="#glyph-1-4" x="84.70469" y="44.005296"/> | |
| 363 | +</g> | |
| 364 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 365 | +<use xlink:href="#glyph-1-10" x="92.079186" y="44.005296"/> | |
| 366 | +<use xlink:href="#glyph-1-4" x="97.040363" y="44.005296"/> | |
| 367 | +</g> | |
| 368 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 369 | +<use xlink:href="#glyph-1-26" x="104.414858" y="44.005296"/> | |
| 370 | +</g> | |
| 371 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 372 | +<use xlink:href="#glyph-1-8" x="106.844994" y="44.005296"/> | |
| 373 | +</g> | |
| 374 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 375 | +<use xlink:href="#glyph-1-10" x="114.177446" y="44.005296"/> | |
| 376 | +<use xlink:href="#glyph-1-4" x="119.138623" y="44.005296"/> | |
| 377 | +<use xlink:href="#glyph-1-12" x="123.712996" y="44.005296"/> | |
| 378 | +<use xlink:href="#glyph-1-8" x="130.860455" y="44.005296"/> | |
| 379 | +<use xlink:href="#glyph-1-9" x="135.392785" y="44.005296"/> | |
| 380 | +<use xlink:href="#glyph-1-10" x="140.261465" y="44.005296"/> | |
| 381 | +<use xlink:href="#glyph-1-4" x="145.222642" y="44.005296"/> | |
| 382 | +</g> | |
| 383 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 384 | +<use xlink:href="#glyph-1-10" x="152.605546" y="44.005296"/> | |
| 385 | +<use xlink:href="#glyph-1-4" x="157.566724" y="44.005296"/> | |
| 386 | +</g> | |
| 387 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 388 | +<use xlink:href="#glyph-1-26" x="164.941219" y="44.005296"/> | |
| 389 | +</g> | |
| 390 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 391 | +<use xlink:href="#glyph-1-1" x="167.371355" y="44.005296"/> | |
| 392 | +<use xlink:href="#glyph-1-13" x="172.282079" y="44.005296"/> | |
| 393 | +<use xlink:href="#glyph-1-4" x="176.654642" y="44.005296"/> | |
| 394 | +<use xlink:href="#glyph-1-12" x="181.229016" y="44.005296"/> | |
| 395 | +<use xlink:href="#glyph-1-4" x="188.376474" y="44.005296"/> | |
| 396 | +<use xlink:href="#glyph-1-9" x="192.950848" y="44.005296"/> | |
| 397 | +<use xlink:href="#glyph-1-3" x="197.819528" y="44.005296"/> | |
| 398 | +<use xlink:href="#glyph-1-7" x="200.855096" y="44.005296"/> | |
| 399 | +<use xlink:href="#glyph-1-25" x="204.781994" y="44.005296"/> | |
| 400 | +</g> | |
| 401 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 402 | +<use xlink:href="#glyph-1-4" x="209.600222" y="44.005296"/> | |
| 403 | +<use xlink:href="#glyph-1-12" x="214.174595" y="44.005296"/> | |
| 404 | +<use xlink:href="#glyph-1-14" x="221.322054" y="44.005296"/> | |
| 405 | +<use xlink:href="#glyph-1-26" x="226.249596" y="44.005296"/> | |
| 406 | +</g> | |
| 407 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 408 | +<use xlink:href="#glyph-1-1" x="228.679732" y="44.005296"/> | |
| 409 | +<use xlink:href="#glyph-1-6" x="233.590456" y="44.005296"/> | |
| 410 | +</g> | |
| 411 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 412 | +<use xlink:href="#glyph-1-4" x="238.719809" y="44.005296"/> | |
| 413 | +<use xlink:href="#glyph-1-9" x="243.294182" y="44.005296"/> | |
| 414 | +</g> | |
| 415 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 416 | +<use xlink:href="#glyph-1-5" x="250.962985" y="44.005296"/> | |
| 417 | +<use xlink:href="#glyph-1-2" x="254.982379" y="44.005296"/> | |
| 418 | +</g> | |
| 419 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 420 | +<use xlink:href="#glyph-1-1" x="258.034764" y="44.005296"/> | |
| 421 | +<use xlink:href="#glyph-1-6" x="262.945489" y="44.005296"/> | |
| 422 | +<use xlink:href="#glyph-1-7" x="265.266311" y="44.005296"/> | |
| 423 | +</g> | |
| 424 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 425 | +<use xlink:href="#glyph-1-7" x="269.109121" y="44.005296"/> | |
| 426 | +<use xlink:href="#glyph-1-8" x="273.036018" y="44.005296"/> | |
| 427 | +<use xlink:href="#glyph-1-9" x="277.568348" y="44.005296"/> | |
| 428 | +<use xlink:href="#glyph-1-5" x="282.437029" y="44.005296"/> | |
| 429 | +</g> | |
| 430 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 431 | +<use xlink:href="#glyph-1-4" x="286.330291" y="44.005296"/> | |
| 432 | +</g> | |
| 433 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 352.582031 59.699219 L 9.28125 59.699219 C 7.082031 59.699219 5.304688 61.476562 5.304688 63.675781 L 5.304688 72.691406 C 5.304688 74.886719 7.082031 76.667969 9.28125 76.667969 L 352.582031 76.667969 C 354.777344 76.667969 356.558594 74.886719 356.558594 72.691406 L 356.558594 63.675781 C 356.558594 61.476562 354.777344 59.699219 352.582031 59.699219 Z M 352.582031 59.699219 "/> | |
| 434 | +<g clip-path="url(#clip-2)"> | |
| 435 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.051985 -46.153551 L -172.050026 -46.153551 C -174.254378 -46.153551 -176.03587 -47.935043 -176.03587 -50.139394 L -176.03587 -59.176061 C -176.03587 -61.376497 -174.254378 -63.161904 -172.050026 -63.161904 L 172.051985 -63.161904 C 174.252421 -63.161904 176.037828 -61.376497 176.037828 -59.176061 L 176.037828 -50.139394 C 176.037828 -47.935043 174.252421 -46.153551 172.051985 -46.153551 Z M 172.051985 -46.153551 " transform="matrix(0.997672, 0, 0, -0.997672, 180.930664, 13.653135)"/> | |
| 436 | +</g> | |
| 437 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 438 | +<use xlink:href="#glyph-0-13" x="8.420286" y="70.59424"/> | |
| 439 | +<use xlink:href="#glyph-0-1" x="13.843946" y="70.59424"/> | |
| 440 | +<use xlink:href="#glyph-0-11" x="18.75467" y="70.59424"/> | |
| 441 | +<use xlink:href="#glyph-0-14" x="23.530854" y="70.59424"/> | |
| 442 | +</g> | |
| 443 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 444 | +<use xlink:href="#glyph-0-12" x="27.777285" y="70.59424"/> | |
| 445 | +<use xlink:href="#glyph-0-15" x="32.435747" y="70.59424"/> | |
| 446 | +<use xlink:href="#glyph-0-8" x="35.799256" y="70.59424"/> | |
| 447 | +<use xlink:href="#glyph-0-12" x="40.617484" y="70.59424"/> | |
| 448 | +<use xlink:href="#glyph-0-9" x="45.275946" y="70.59424"/> | |
| 449 | +<use xlink:href="#glyph-0-12" x="52.347725" y="70.59424"/> | |
| 450 | +<use xlink:href="#glyph-0-8" x="57.006186" y="70.59424"/> | |
| 451 | +<use xlink:href="#glyph-0-16" x="61.824414" y="70.59424"/> | |
| 452 | +</g> | |
| 453 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 454 | +<use xlink:href="#glyph-0-4" x="65.019749" y="70.59424"/> | |
| 455 | +</g> | |
| 456 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 457 | +<use xlink:href="#glyph-0-5" x="69.543669" y="70.59424"/> | |
| 458 | +</g> | |
| 459 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 460 | +<use xlink:href="#glyph-0-6" x="74.866424" y="70.59424"/> | |
| 461 | +</g> | |
| 462 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 463 | +<use xlink:href="#glyph-1-28" x="79.693061" y="70.59424"/> | |
| 464 | +</g> | |
| 465 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 466 | +<use xlink:href="#glyph-1-1" x="83.283607" y="70.59424"/> | |
| 467 | +<use xlink:href="#glyph-1-9" x="88.194332" y="70.59424"/> | |
| 468 | +<use xlink:href="#glyph-1-8" x="93.063012" y="70.59424"/> | |
| 469 | +<use xlink:href="#glyph-1-13" x="97.595342" y="70.59424"/> | |
| 470 | +<use xlink:href="#glyph-1-4" x="101.967905" y="70.59424"/> | |
| 471 | +</g> | |
| 472 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 473 | +<use xlink:href="#glyph-1-2" x="109.3424" y="70.59424"/> | |
| 474 | +</g> | |
| 475 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 476 | +<use xlink:href="#glyph-1-4" x="112.394786" y="70.59424"/> | |
| 477 | +<use xlink:href="#glyph-1-7" x="116.969159" y="70.59424"/> | |
| 478 | +<use xlink:href="#glyph-1-3" x="120.896057" y="70.59424"/> | |
| 479 | +<use xlink:href="#glyph-1-2" x="123.931625" y="70.59424"/> | |
| 480 | +<use xlink:href="#glyph-1-6" x="127.152185" y="70.59424"/> | |
| 481 | +<use xlink:href="#glyph-1-5" x="129.473007" y="70.59424"/> | |
| 482 | +<use xlink:href="#glyph-1-3" x="133.492401" y="70.59424"/> | |
| 483 | +<use xlink:href="#glyph-1-6" x="136.527969" y="70.59424"/> | |
| 484 | +<use xlink:href="#glyph-1-0" x="138.848791" y="70.59424"/> | |
| 485 | +</g> | |
| 486 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 487 | +<use xlink:href="#glyph-1-25" x="141.245292" y="70.59424"/> | |
| 488 | +</g> | |
| 489 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 490 | +<use xlink:href="#glyph-1-10" x="146.06352" y="70.59424"/> | |
| 491 | +<use xlink:href="#glyph-1-11" x="151.024697" y="70.59424"/> | |
| 492 | +<use xlink:href="#glyph-1-26" x="155.59907" y="70.59424"/> | |
| 493 | +</g> | |
| 494 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 495 | +<use xlink:href="#glyph-1-8" x="158.029206" y="70.59424"/> | |
| 496 | +<use xlink:href="#glyph-1-6" x="162.561536" y="70.59424"/> | |
| 497 | +<use xlink:href="#glyph-1-7" x="164.882358" y="70.59424"/> | |
| 498 | +</g> | |
| 499 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 500 | +<use xlink:href="#glyph-1-10" x="171.609377" y="70.59424"/> | |
| 501 | +<use xlink:href="#glyph-1-4" x="176.570554" y="70.59424"/> | |
| 502 | +</g> | |
| 503 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 504 | +<use xlink:href="#glyph-1-14" x="183.953459" y="70.59424"/> | |
| 505 | +<use xlink:href="#glyph-1-4" x="188.881001" y="70.59424"/> | |
| 506 | +<use xlink:href="#glyph-1-2" x="193.455374" y="70.59424"/> | |
| 507 | +<use xlink:href="#glyph-1-12" x="196.675935" y="70.59424"/> | |
| 508 | +<use xlink:href="#glyph-1-6" x="203.823393" y="70.59424"/> | |
| 509 | +<use xlink:href="#glyph-1-7" x="206.144215" y="70.59424"/> | |
| 510 | +<use xlink:href="#glyph-1-25" x="210.071113" y="70.59424"/> | |
| 511 | +</g> | |
| 512 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 513 | +<use xlink:href="#glyph-1-14" x="214.889341" y="70.59424"/> | |
| 514 | +<use xlink:href="#glyph-1-2" x="219.816883" y="70.59424"/> | |
| 515 | +</g> | |
| 516 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 517 | +<use xlink:href="#glyph-1-1" x="222.869268" y="70.59424"/> | |
| 518 | +<use xlink:href="#glyph-1-3" x="227.779993" y="70.59424"/> | |
| 519 | +</g> | |
| 520 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 521 | +<use xlink:href="#glyph-1-4" x="230.689429" y="70.59424"/> | |
| 522 | +<use xlink:href="#glyph-1-5" x="235.263802" y="70.59424"/> | |
| 523 | +<use xlink:href="#glyph-1-3" x="239.283197" y="70.59424"/> | |
| 524 | +<use xlink:href="#glyph-1-6" x="242.318764" y="70.59424"/> | |
| 525 | +<use xlink:href="#glyph-1-1" x="244.639586" y="70.59424"/> | |
| 526 | +<use xlink:href="#glyph-1-9" x="249.550311" y="70.59424"/> | |
| 527 | +</g> | |
| 528 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 529 | +<use xlink:href="#glyph-1-10" x="257.219113" y="70.59424"/> | |
| 530 | +<use xlink:href="#glyph-1-17" x="262.18029" y="70.59424"/> | |
| 531 | +</g> | |
| 532 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 533 | +<use xlink:href="#glyph-1-3" x="269.823866" y="70.59424"/> | |
| 534 | +</g> | |
| 535 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 536 | +<use xlink:href="#glyph-1-4" x="272.733302" y="70.59424"/> | |
| 537 | +<use xlink:href="#glyph-1-2" x="277.307676" y="70.59424"/> | |
| 538 | +<use xlink:href="#glyph-1-2" x="280.528237" y="70.59424"/> | |
| 539 | +<use xlink:href="#glyph-1-6" x="283.748797" y="70.59424"/> | |
| 540 | +<use xlink:href="#glyph-1-3" x="286.069619" y="70.59424"/> | |
| 541 | +</g> | |
| 542 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 543 | +<use xlink:href="#glyph-1-1" x="288.979055" y="70.59424"/> | |
| 544 | +<use xlink:href="#glyph-1-6" x="293.88978" y="70.59424"/> | |
| 545 | +<use xlink:href="#glyph-1-2" x="296.210602" y="70.59424"/> | |
| 546 | +</g> | |
| 547 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 548 | +<use xlink:href="#glyph-1-4" x="299.262987" y="70.59424"/> | |
| 549 | +</g> | |
| 550 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 551 | +<use xlink:href="#glyph-1-8" x="306.637482" y="70.59424"/> | |
| 552 | +<use xlink:href="#glyph-1-13" x="311.169812" y="70.59424"/> | |
| 553 | +<use xlink:href="#glyph-1-2" x="315.542375" y="70.59424"/> | |
| 554 | +<use xlink:href="#glyph-1-6" x="318.762935" y="70.59424"/> | |
| 555 | +<use xlink:href="#glyph-1-5" x="321.083757" y="70.59424"/> | |
| 556 | +</g> | |
| 557 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 558 | +<use xlink:href="#glyph-1-1" x="324.97702" y="70.59424"/> | |
| 559 | +<use xlink:href="#glyph-1-26" x="329.887744" y="70.59424"/> | |
| 560 | +</g> | |
| 561 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 562 | +<use xlink:href="#glyph-1-4" x="332.31788" y="70.59424"/> | |
| 563 | +</g> | |
| 564 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 352.582031 86.960938 L 9.28125 86.960938 C 7.082031 86.960938 5.304688 88.742188 5.304688 90.9375 L 5.304688 99.957031 C 5.304688 102.152344 7.082031 103.929688 9.28125 103.929688 L 352.582031 103.929688 C 354.777344 103.929688 356.558594 102.152344 356.558594 99.957031 L 356.558594 90.9375 C 356.558594 88.742188 354.777344 86.960938 352.582031 86.960938 Z M 352.582031 86.960938 "/> | |
| 565 | +<g clip-path="url(#clip-3)"> | |
| 566 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.051985 -73.478896 L -172.050026 -73.478896 C -174.254378 -73.478896 -176.03587 -75.264303 -176.03587 -77.464739 L -176.03587 -86.505321 C -176.03587 -88.705757 -174.254378 -90.487249 -172.050026 -90.487249 L 172.051985 -90.487249 C 174.252421 -90.487249 176.037828 -88.705757 176.037828 -86.505321 L 176.037828 -77.464739 C 176.037828 -75.264303 174.252421 -73.478896 172.051985 -73.478896 Z M 172.051985 -73.478896 " transform="matrix(0.997672, 0, 0, -0.997672, 180.930664, 13.653135)"/> | |
| 567 | +</g> | |
| 568 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 569 | +<use xlink:href="#glyph-0-17" x="8.420286" y="97.920463"/> | |
| 570 | +</g> | |
| 571 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 572 | +<use xlink:href="#glyph-0-18" x="13.297375" y="97.920463"/> | |
| 573 | +</g> | |
| 574 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 575 | +<use xlink:href="#glyph-0-19" x="18.06515" y="97.920463"/> | |
| 576 | +</g> | |
| 577 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 578 | +<use xlink:href="#glyph-0-20" x="22.345217" y="97.920463"/> | |
| 579 | +<use xlink:href="#glyph-0-3" x="26.381429" y="97.920463"/> | |
| 580 | +<use xlink:href="#glyph-0-10" x="28.735886" y="97.920463"/> | |
| 581 | +<use xlink:href="#glyph-0-11" x="33.730698" y="97.920463"/> | |
| 582 | +<use xlink:href="#glyph-0-12" x="38.506882" y="97.920463"/> | |
| 583 | +</g> | |
| 584 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 585 | +<use xlink:href="#glyph-0-6" x="45.965465" y="97.920463"/> | |
| 586 | +</g> | |
| 587 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 588 | +<use xlink:href="#glyph-1-14" x="50.792102" y="97.920463"/> | |
| 589 | +<use xlink:href="#glyph-1-11" x="55.719644" y="97.920463"/> | |
| 590 | +<use xlink:href="#glyph-1-9" x="60.294017" y="97.920463"/> | |
| 591 | +<use xlink:href="#glyph-1-17" x="65.162698" y="97.920463"/> | |
| 592 | +<use xlink:href="#glyph-1-2" x="69.997743" y="97.920463"/> | |
| 593 | +<use xlink:href="#glyph-1-6" x="73.218304" y="97.920463"/> | |
| 594 | +<use xlink:href="#glyph-1-4" x="75.539126" y="97.920463"/> | |
| 595 | +</g> | |
| 596 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 597 | +<use xlink:href="#glyph-1-10" x="82.913621" y="97.920463"/> | |
| 598 | +<use xlink:href="#glyph-1-4" x="87.874798" y="97.920463"/> | |
| 599 | +</g> | |
| 600 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 601 | +<use xlink:href="#glyph-1-3" x="95.249294" y="97.920463"/> | |
| 602 | +</g> | |
| 603 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 604 | +<use xlink:href="#glyph-1-4" x="98.15873" y="97.920463"/> | |
| 605 | +<use xlink:href="#glyph-1-2" x="102.733103" y="97.920463"/> | |
| 606 | +<use xlink:href="#glyph-1-2" x="105.953664" y="97.920463"/> | |
| 607 | +</g> | |
| 608 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 609 | +<use xlink:href="#glyph-1-8" x="109.006049" y="97.920463"/> | |
| 610 | +<use xlink:href="#glyph-1-6" x="113.538379" y="97.920463"/> | |
| 611 | +<use xlink:href="#glyph-1-9" x="115.859201" y="97.920463"/> | |
| 612 | +<use xlink:href="#glyph-1-7" x="120.727881" y="97.920463"/> | |
| 613 | +<use xlink:href="#glyph-1-25" x="124.654779" y="97.920463"/> | |
| 614 | +</g> | |
| 615 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 616 | +<use xlink:href="#glyph-1-1" x="129.473007" y="97.920463"/> | |
| 617 | +<use xlink:href="#glyph-1-29" x="134.383732" y="97.920463"/> | |
| 618 | +<use xlink:href="#glyph-1-2" x="139.513084" y="97.920463"/> | |
| 619 | +</g> | |
| 620 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 621 | +<use xlink:href="#glyph-1-4" x="142.565469" y="97.920463"/> | |
| 622 | +</g> | |
| 623 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 624 | +<use xlink:href="#glyph-1-26" x="149.948374" y="97.920463"/> | |
| 625 | +<use xlink:href="#glyph-1-6" x="152.420553" y="97.920463"/> | |
| 626 | +<use xlink:href="#glyph-1-12" x="154.741375" y="97.920463"/> | |
| 627 | +<use xlink:href="#glyph-1-6" x="161.888834" y="97.920463"/> | |
| 628 | +<use xlink:href="#glyph-1-3" x="164.209656" y="97.920463"/> | |
| 629 | +</g> | |
| 630 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 631 | +<use xlink:href="#glyph-1-11" x="167.119092" y="97.920463"/> | |
| 632 | +<use xlink:href="#glyph-1-4" x="171.693465" y="97.920463"/> | |
| 633 | +</g> | |
| 634 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 635 | +<use xlink:href="#glyph-1-25" x="176.183751" y="97.920463"/> | |
| 636 | +</g> | |
| 637 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 638 | +<use xlink:href="#glyph-1-6" x="181.001979" y="97.920463"/> | |
| 639 | +<use xlink:href="#glyph-1-9" x="183.322801" y="97.920463"/> | |
| 640 | +<use xlink:href="#glyph-1-0" x="188.191481" y="97.920463"/> | |
| 641 | +<use xlink:href="#glyph-1-2" x="191.008421" y="97.920463"/> | |
| 642 | +</g> | |
| 643 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 644 | +<use xlink:href="#glyph-1-8" x="194.060806" y="97.920463"/> | |
| 645 | +<use xlink:href="#glyph-1-7" x="198.593136" y="97.920463"/> | |
| 646 | +<use xlink:href="#glyph-1-3" x="202.520033" y="97.920463"/> | |
| 647 | +<use xlink:href="#glyph-1-2" x="205.555601" y="97.920463"/> | |
| 648 | +<use xlink:href="#glyph-1-17" x="208.776162" y="97.920463"/> | |
| 649 | +<use xlink:href="#glyph-1-5" x="213.611207" y="97.920463"/> | |
| 650 | +<use xlink:href="#glyph-1-3" x="217.630602" y="97.920463"/> | |
| 651 | +<use xlink:href="#glyph-1-17" x="220.666169" y="97.920463"/> | |
| 652 | +<use xlink:href="#glyph-1-2" x="225.501215" y="97.920463"/> | |
| 653 | +</g> | |
| 654 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 655 | +<use xlink:href="#glyph-1-4" x="228.5536" y="97.920463"/> | |
| 656 | +<use xlink:href="#glyph-1-7" x="233.127973" y="97.920463"/> | |
| 657 | +</g> | |
| 658 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 659 | +<use xlink:href="#glyph-1-6" x="239.854993" y="97.920463"/> | |
| 660 | +<use xlink:href="#glyph-1-9" x="242.175815" y="97.920463"/> | |
| 661 | +<use xlink:href="#glyph-1-7" x="247.044496" y="97.920463"/> | |
| 662 | +<use xlink:href="#glyph-1-17" x="250.971393" y="97.920463"/> | |
| 663 | +<use xlink:href="#glyph-1-30" x="255.806439" y="97.920463"/> | |
| 664 | +<use xlink:href="#glyph-1-7" x="263.012759" y="97.920463"/> | |
| 665 | +<use xlink:href="#glyph-1-8" x="266.939657" y="97.920463"/> | |
| 666 | +<use xlink:href="#glyph-1-9" x="271.471986" y="97.920463"/> | |
| 667 | +<use xlink:href="#glyph-1-3" x="276.340667" y="97.920463"/> | |
| 668 | +</g> | |
| 669 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 670 | +<use xlink:href="#glyph-1-4" x="279.250103" y="97.920463"/> | |
| 671 | +<use xlink:href="#glyph-1-7" x="283.824476" y="97.920463"/> | |
| 672 | +</g> | |
| 673 | +<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 352.582031 114.226562 L 9.28125 114.226562 C 7.082031 114.226562 5.304688 116.007812 5.304688 118.203125 L 5.304688 127.21875 C 5.304688 129.417969 7.082031 131.195312 9.28125 131.195312 L 352.582031 131.195312 C 354.777344 131.195312 356.558594 129.417969 356.558594 127.21875 L 356.558594 118.203125 C 356.558594 116.007812 354.777344 114.226562 352.582031 114.226562 Z M 352.582031 114.226562 "/> | |
| 674 | +<g clip-path="url(#clip-4)"> | |
| 675 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 172.051985 -100.808156 L -172.050026 -100.808156 C -174.254378 -100.808156 -176.03587 -102.593563 -176.03587 -104.793999 L -176.03587 -113.830666 C -176.03587 -116.035018 -174.254378 -117.816509 -172.050026 -117.816509 L 172.051985 -117.816509 C 174.252421 -117.816509 176.037828 -116.035018 176.037828 -113.830666 L 176.037828 -104.793999 C 176.037828 -102.593563 174.252421 -100.808156 172.051985 -100.808156 Z M 172.051985 -100.808156 " transform="matrix(0.997672, 0, 0, -0.997672, 180.930664, 13.653135)"/> | |
| 676 | +</g> | |
| 677 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 678 | +<use xlink:href="#glyph-0-21" x="8.420286" y="125.363414"/> | |
| 679 | +</g> | |
| 680 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 681 | +<use xlink:href="#glyph-0-22" x="13.516003" y="125.363414"/> | |
| 682 | +<use xlink:href="#glyph-0-20" x="18.174465" y="125.363414"/> | |
| 683 | +<use xlink:href="#glyph-0-11" x="22.210676" y="125.363414"/> | |
| 684 | +<use xlink:href="#glyph-0-5" x="26.98686" y="125.363414"/> | |
| 685 | +<use xlink:href="#glyph-0-16" x="29.509493" y="125.363414"/> | |
| 686 | +</g> | |
| 687 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 688 | +<use xlink:href="#glyph-0-4" x="32.704827" y="125.363414"/> | |
| 689 | +<use xlink:href="#glyph-0-16" x="37.296018" y="125.363414"/> | |
| 690 | +</g> | |
| 691 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 692 | +<use xlink:href="#glyph-0-6" x="43.341927" y="125.363414"/> | |
| 693 | +</g> | |
| 694 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 695 | +<use xlink:href="#glyph-1-15" x="48.168564" y="125.363414"/> | |
| 696 | +<use xlink:href="#glyph-1-8" x="53.037245" y="125.363414"/> | |
| 697 | +<use xlink:href="#glyph-1-17" x="57.569574" y="125.363414"/> | |
| 698 | +<use xlink:href="#glyph-1-7" x="62.40462" y="125.363414"/> | |
| 699 | +</g> | |
| 700 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 701 | +<use xlink:href="#glyph-1-7" x="66.24743" y="125.363414"/> | |
| 702 | +<use xlink:href="#glyph-1-4" x="70.174328" y="125.363414"/> | |
| 703 | +</g> | |
| 704 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 705 | +<use xlink:href="#glyph-1-10" x="77.548823" y="125.363414"/> | |
| 706 | +<use xlink:href="#glyph-1-4" x="82.51" y="125.363414"/> | |
| 707 | +<use xlink:href="#glyph-1-7" x="87.084374" y="125.363414"/> | |
| 708 | +</g> | |
| 709 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 710 | +<use xlink:href="#glyph-1-14" x="93.811393" y="125.363414"/> | |
| 711 | +<use xlink:href="#glyph-1-2" x="98.738935" y="125.363414"/> | |
| 712 | +<use xlink:href="#glyph-1-6" x="101.959496" y="125.363414"/> | |
| 713 | +<use xlink:href="#glyph-1-31" x="104.280318" y="125.363414"/> | |
| 714 | +</g> | |
| 715 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 716 | +<use xlink:href="#glyph-1-6" x="111.158696" y="125.363414"/> | |
| 717 | +<use xlink:href="#glyph-1-12" x="113.479518" y="125.363414"/> | |
| 718 | +<use xlink:href="#glyph-1-12" x="120.626976" y="125.363414"/> | |
| 719 | +<use xlink:href="#glyph-1-1" x="127.774435" y="125.363414"/> | |
| 720 | +<use xlink:href="#glyph-1-32" x="132.685159" y="125.363414"/> | |
| 721 | +<use xlink:href="#glyph-1-6" x="137.612701" y="125.363414"/> | |
| 722 | +<use xlink:href="#glyph-1-26" x="139.933523" y="125.363414"/> | |
| 723 | +<use xlink:href="#glyph-1-6" x="142.405703" y="125.363414"/> | |
| 724 | +<use xlink:href="#glyph-1-4" x="144.726525" y="125.363414"/> | |
| 725 | +<use xlink:href="#glyph-1-2" x="149.300898" y="125.363414"/> | |
| 726 | +</g> | |
| 727 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 728 | +<use xlink:href="#glyph-1-7" x="152.395327" y="125.363414"/> | |
| 729 | +<use xlink:href="#glyph-1-25" x="156.322225" y="125.363414"/> | |
| 730 | +</g> | |
| 731 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 732 | +<use xlink:href="#glyph-1-5" x="161.148862" y="125.363414"/> | |
| 733 | +<use xlink:href="#glyph-1-2" x="165.168256" y="125.363414"/> | |
| 734 | +<use xlink:href="#glyph-1-6" x="168.388817" y="125.363414"/> | |
| 735 | +<use xlink:href="#glyph-1-7" x="170.709638" y="125.363414"/> | |
| 736 | +<use xlink:href="#glyph-1-4" x="174.636536" y="125.363414"/> | |
| 737 | +</g> | |
| 738 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 739 | +<use xlink:href="#glyph-1-10" x="182.011032" y="125.363414"/> | |
| 740 | +<use xlink:href="#glyph-1-4" x="186.972209" y="125.363414"/> | |
| 741 | +</g> | |
| 742 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 743 | +<use xlink:href="#glyph-1-26" x="194.346704" y="125.363414"/> | |
| 744 | +</g> | |
| 745 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 746 | +<use xlink:href="#glyph-1-27" x="196.692752" y="125.363414"/> | |
| 747 | +</g> | |
| 748 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 749 | +<use xlink:href="#glyph-1-8" x="198.483821" y="125.363414"/> | |
| 750 | +<use xlink:href="#glyph-1-32" x="203.016151" y="125.363414"/> | |
| 751 | +<use xlink:href="#glyph-1-1" x="207.943693" y="125.363414"/> | |
| 752 | +<use xlink:href="#glyph-1-2" x="212.854418" y="125.363414"/> | |
| 753 | +</g> | |
| 754 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 755 | +<use xlink:href="#glyph-1-10" x="215.906803" y="125.363414"/> | |
| 756 | +<use xlink:href="#glyph-1-8" x="220.86798" y="125.363414"/> | |
| 757 | +<use xlink:href="#glyph-1-32" x="225.400309" y="125.363414"/> | |
| 758 | +<use xlink:href="#glyph-1-6" x="230.327851" y="125.363414"/> | |
| 759 | +<use xlink:href="#glyph-1-26" x="232.648673" y="125.363414"/> | |
| 760 | +<use xlink:href="#glyph-1-6" x="235.120853" y="125.363414"/> | |
| 761 | +<use xlink:href="#glyph-1-3" x="237.441675" y="125.363414"/> | |
| 762 | +</g> | |
| 763 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 764 | +<use xlink:href="#glyph-1-11" x="240.351111" y="125.363414"/> | |
| 765 | +</g> | |
| 766 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000978391 -8.703067 L -0.000978391 -17.829787 " transform="matrix(0.997672, 0, 0, -0.997672, 180.930664, 13.653135)"/> | |
| 767 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550094 3.111738 C -2.084166 1.244108 -1.046593 0.363151 -0.00119056 -0.000978391 C -1.046593 -0.361192 -2.084166 -1.246065 -2.550094 -3.10978 " transform="matrix(0, 0.997672, 0.997672, 0, 180.930664, 31.837125)"/> | |
| 768 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000978391 -36.032328 L -0.000978391 -45.155132 " transform="matrix(0.997672, 0, 0, -0.997672, 180.930664, 13.653135)"/> | |
| 769 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549134 3.111738 C -2.083205 1.244108 -1.045633 0.363151 -0.000230271 -0.000978391 C -1.045633 -0.361192 -2.083205 -1.246065 -2.549134 -3.10978 " transform="matrix(0, 0.997672, 0.997672, 0, 180.930664, 59.101792)"/> | |
| 770 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000978391 -63.361588 L -0.000978391 -72.484393 " transform="matrix(0.997672, 0, 0, -0.997672, 180.930664, 13.653135)"/> | |
| 771 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552099 3.111738 C -2.08617 1.244108 -1.044683 0.363151 0.000720014 -0.000978391 C -1.044683 -0.361192 -2.08617 -1.246065 -2.552099 -3.10978 " transform="matrix(0, 0.997672, 0.997672, 0, 180.930664, 86.366469)"/> | |
| 772 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000978391 -90.686933 L -0.000978391 -99.813653 " transform="matrix(0.997672, 0, 0, -0.997672, 180.930664, 13.653135)"/> | |
| 773 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551149 3.111738 C -2.08522 1.244108 -1.047648 0.363151 0.0016703 -0.000978391 C -1.047648 -0.361192 -2.08522 -1.246065 -2.551149 -3.10978 " transform="matrix(0, 0.997672, 0.997672, 0, 180.930664, 113.631146)"/> | |
| 774 | +</svg> | |
added
dist/assets/fig/8e7d5f4b801a7141.svg
+694 −0
@@ -0,0 +1,694 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="136.681pt" viewBox="0 0 314.242 136.681"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.71875 -4.734375 L 2.03125 -4.734375 L 0.296875 -3.671875 L 0.625 -3.125 L 1.9375 -3.921875 L 1.9375 0 L 2.71875 0 Z M 2.71875 -4.734375 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.34375 0.09375 1.59375 -0.15625 1.59375 -0.484375 C 1.59375 -0.8125 1.34375 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 3.96875 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 4.046875 0 L 4.046875 -0.640625 L 1.640625 -0.640625 L 1.640625 -2.625 L 3.59375 -2.625 L 3.59375 -3.265625 L 1.640625 -3.265625 L 1.640625 -5.15625 L 3.890625 -5.15625 Z M 3.96875 -5.796875 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 2 -4.53125 C 1.078125 -4.53125 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.03125 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.453125 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.25 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.453125 -2.8125 1.203125 -2.96875 1.203125 -3.34375 C 1.203125 -3.6875 1.515625 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.171875 -3.53125 L 3.5 -4.03125 C 3.078125 -4.34375 2.625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.59375 -3.828125 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.515625 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.328125 0.609375 -6.03125 C 0.609375 -5.734375 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.703125 -5.734375 1.703125 -6.03125 C 1.703125 -6.328125 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 5.21875 -4.53125 C 4.625 -4.53125 4.21875 -4.21875 3.90625 -3.734375 C 3.734375 -4.234375 3.328125 -4.53125 2.78125 -4.53125 C 2.203125 -4.53125 1.796875 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.59375 -3.921875 C 2.921875 -3.921875 3.21875 -3.734375 3.21875 -3.0625 L 3.21875 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.03125 -3.921875 C 5.359375 -3.921875 5.65625 -3.734375 5.65625 -3.0625 L 5.65625 0 L 6.421875 0 L 6.421875 -3.171875 C 6.421875 -4.015625 5.9375 -4.53125 5.21875 -4.53125 Z M 5.21875 -4.53125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.703125 -4.53125 C 2.15625 -4.53125 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.78125 2.609375 -3.78125 C 2.765625 -3.78125 2.859375 -3.75 3 -3.71875 L 3.140625 -4.484375 C 3 -4.515625 2.84375 -4.53125 2.703125 -4.53125 Z M 2.703125 -4.53125 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.40625 -4.53125 C 1.203125 -4.53125 0.484375 -3.59375 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.5625 2.453125 -0.5625 C 1.75 -0.5625 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.453125 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.359375 -4.390625 2.9375 -4.53125 2.40625 -4.53125 Z M 2.40625 -4.53125 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 2.46875 -4.53125 C 1.203125 -4.53125 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.71875 -4.53125 2.46875 -4.53125 Z M 2.46875 -3.90625 C 3.1875 -3.90625 3.59375 -3.375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.375 1.71875 -3.90625 2.46875 -3.90625 Z M 2.46875 -3.90625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 1.328125 -5.328125 L 2.390625 -6.03125 L 3.453125 -5.328125 L 3.796875 -5.703125 L 2.640625 -6.65625 L 2.140625 -6.65625 L 1 -5.703125 Z M 4.0625 -4.4375 L 3.28125 -4.4375 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.703125 -0.5 1.5 -0.734375 1.5 -1.34375 L 1.5 -4.4375 L 0.71875 -4.4375 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.59375 0.09375 3 -0.15625 3.34375 -0.6875 L 3.390625 0 L 4.0625 0 Z M 4.0625 -4.4375 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.125 -4.296875 2.734375 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.171875 3.4375 -0.609375 L 3.5 0 L 4.1875 0 L 4.1875 -6.21875 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 2.8125 -4.53125 C 2.296875 -4.53125 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 1.796875 L 1.546875 1.703125 L 1.546875 -0.40625 C 1.828125 -0.0625 2.234375 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.453125 -0.875 4.453125 -2.21875 C 4.453125 -3.609375 3.984375 -4.53125 2.8125 -4.53125 Z M 2.515625 -0.53125 C 2.125 -0.53125 1.78125 -0.71875 1.546875 -1.0625 L 1.546875 -3.234375 C 1.78125 -3.578125 2.140625 -3.921875 2.609375 -3.921875 C 3.28125 -3.921875 3.609375 -3.375 3.609375 -2.21875 C 3.609375 -1.0625 3.234375 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 2.859375 -4.53125 C 2.28125 -4.53125 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.109375 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 3.25 -5.78125 L 1.578125 -6.734375 L 1.234375 -6.09375 L 3.015625 -5.359375 Z M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 4.0625 -4.4375 L 3.28125 -4.4375 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.703125 -0.5 1.5 -0.734375 1.5 -1.34375 L 1.5 -4.4375 L 0.71875 -4.4375 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.59375 0.09375 3 -0.15625 3.34375 -0.6875 L 3.390625 0 L 4.0625 0 Z M 4.0625 -4.4375 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 2.296875 -5.6875 C 2.53125 -5.6875 2.796875 -5.640625 3.078125 -5.515625 L 3.328125 -6.078125 C 2.96875 -6.234375 2.6875 -6.296875 2.265625 -6.296875 C 1.359375 -6.296875 0.875 -5.78125 0.875 -5.03125 L 0.875 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.875 -3.828125 L 0.875 0 L 1.640625 0 L 1.640625 -3.828125 L 2.640625 -3.828125 L 2.71875 -4.4375 L 1.640625 -4.4375 L 1.640625 -5.046875 C 1.640625 -5.46875 1.8125 -5.6875 2.296875 -5.6875 Z M 2.296875 -5.6875 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 1.90625 -7.109375 C 1.078125 -5.9375 0.34375 -4.9375 0.34375 -2.9375 C 0.34375 -0.953125 1.078125 0.046875 1.90625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.75 1.625 -5.65625 2.390625 -6.765625 Z M 1.90625 -7.109375 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 0.828125 -7.109375 L 0.34375 -6.765625 C 1.09375 -5.65625 1.578125 -4.75 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.34375 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.9375 1.640625 -5.9375 0.828125 -7.109375 Z M 0.828125 -7.109375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 1.875 -4.828125 C 1.140625 -4.828125 0.59375 -4.515625 0.125 -3.9375 L 0.625 -3.53125 C 1.03125 -4.015625 1.390625 -4.1875 1.859375 -4.1875 C 2.40625 -4.1875 2.8125 -3.84375 2.8125 -3.3125 C 2.8125 -2.640625 2.546875 -2.265625 0.25 -0.609375 L 0.25 0 L 3.609375 0 L 3.703125 -0.640625 L 1.25 -0.640625 C 3.40625 -2.03125 3.625 -2.578125 3.625 -3.34375 C 3.625 -4.1875 2.9375 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 3.359375 -6.09375 L 3.015625 -6.734375 L 1.34375 -5.78125 L 1.578125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 1.875 -4.828125 C 1.25 -4.828125 0.71875 -4.609375 0.25 -4.15625 L 0.640625 -3.703125 C 1.03125 -4.046875 1.359375 -4.203125 1.8125 -4.203125 C 2.40625 -4.203125 2.78125 -3.890625 2.78125 -3.359375 C 2.78125 -2.75 2.3125 -2.40625 1.71875 -2.40625 L 1.4375 -2.40625 L 1.34375 -1.8125 L 1.765625 -1.8125 C 2.515625 -1.8125 2.921875 -1.515625 2.921875 -0.765625 C 2.921875 -0.078125 2.484375 0.359375 1.75 0.359375 C 1.296875 0.359375 0.921875 0.1875 0.546875 -0.203125 L 0.078125 0.234375 C 0.515625 0.734375 1.09375 0.984375 1.78125 0.984375 C 2.96875 0.984375 3.71875 0.25 3.71875 -0.734375 C 3.71875 -1.625 3.1875 -2.0625 2.4375 -2.15625 C 3.078125 -2.296875 3.546875 -2.75 3.546875 -3.421875 C 3.546875 -4.15625 2.953125 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 2.265625 -5.890625 C 1.203125 -5.890625 0.453125 -5.265625 0.453125 -4.375 C 0.453125 -3.484375 1.03125 -3.046875 2.15625 -2.703125 C 3.140625 -2.40625 3.40625 -2.15625 3.40625 -1.59375 C 3.40625 -0.890625 2.84375 -0.5625 2.171875 -0.5625 C 1.53125 -0.5625 1.078125 -0.78125 0.640625 -1.140625 L 0.203125 -0.640625 C 0.6875 -0.171875 1.34375 0.09375 2.171875 0.09375 C 3.484375 0.09375 4.25 -0.609375 4.25 -1.609375 C 4.25 -2.71875 3.453125 -3.078125 2.53125 -3.375 C 1.484375 -3.6875 1.265625 -3.921875 1.265625 -4.40625 C 1.265625 -4.96875 1.71875 -5.234375 2.296875 -5.234375 C 2.78125 -5.234375 3.1875 -5.078125 3.625 -4.734375 L 4.0625 -5.21875 C 3.578125 -5.65625 3.0625 -5.890625 2.265625 -5.890625 Z M 2.265625 -5.890625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 1 -4.15625 C 0.671875 -4.15625 0.421875 -3.90625 0.421875 -3.578125 C 0.421875 -3.25 0.671875 -3 1 -3 C 1.34375 -3 1.59375 -3.25 1.59375 -3.578125 C 1.59375 -3.90625 1.34375 -4.15625 1 -4.15625 Z M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.34375 0.09375 1.59375 -0.15625 1.59375 -0.484375 C 1.59375 -0.8125 1.34375 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 4.046875 -4.4375 L 3.234375 -4.4375 L 2.078125 -0.6875 L 0.921875 -4.4375 L 0.078125 -4.4375 L 1.609375 0 L 2.546875 0 Z M 4.046875 -4.4375 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 2.796875 -4.53125 C 2.265625 -4.53125 1.84375 -4.28125 1.546875 -3.875 L 1.546875 -6.296875 L 0.765625 -6.21875 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.78125 0.09375 4.453125 -0.828125 4.453125 -2.21875 C 4.453125 -3.703125 3.796875 -4.53125 2.796875 -4.53125 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.78125 -0.75 1.546875 -1.109375 L 1.546875 -3.234375 C 1.78125 -3.578125 2.09375 -3.921875 2.578125 -3.921875 C 3.203125 -3.921875 3.609375 -3.484375 3.609375 -2.21875 C 3.609375 -1.015625 3.171875 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 2.15625 -6.03125 L 3.21875 -5.328125 L 3.546875 -5.703125 L 2.40625 -6.65625 L 1.890625 -6.65625 L 0.75 -5.703125 L 1.078125 -5.328125 Z M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-0-30"> | |
| 96 | +<path d="M 4.171875 -0.9375 L 3.46875 -0.9375 L 3.46875 -2.46875 L 2.8125 -2.46875 L 2.734375 -0.9375 L 0.984375 -0.9375 L 2.5 -4.5625 L 1.859375 -4.828125 L 0.171875 -0.875 L 0.171875 -0.34375 L 2.734375 -0.34375 L 2.734375 0.90625 L 3.46875 0.90625 L 3.46875 -0.34375 L 4.171875 -0.34375 Z M 4.171875 -0.9375 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-0-31"> | |
| 99 | +<path d="M 1 -6.328125 C 0.703125 -6.328125 0.453125 -6.09375 0.453125 -5.796875 C 0.453125 -5.625 0.53125 -5.484375 0.671875 -5.375 L 0.34375 -4.125 L 0.84375 -4.125 L 1.40625 -5.3125 C 1.515625 -5.546875 1.546875 -5.671875 1.546875 -5.796875 C 1.546875 -6.09375 1.296875 -6.328125 1 -6.328125 Z M 1 -6.328125 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-0"> | |
| 102 | +<path d="M 6.921875 -6.0625 C 6.9375 -6.171875 6.9375 -6.203125 6.9375 -6.203125 C 6.9375 -6.203125 6.9375 -6.296875 6.84375 -6.296875 C 6.78125 -6.296875 6.75 -6.28125 6.6875 -6.203125 L 6.15625 -5.609375 C 6.109375 -5.5625 6.0625 -5.515625 6.0625 -5.515625 C 6.0625 -5.515625 6.046875 -5.53125 6 -5.59375 C 5.859375 -5.78125 5.453125 -6.296875 4.53125 -6.296875 C 2.484375 -6.296875 0.453125 -4.3125 0.453125 -2.28125 C 0.453125 -0.828125 1.515625 0.203125 2.953125 0.203125 C 3.890625 0.203125 4.625 -0.28125 4.96875 -0.59375 C 5.78125 -1.328125 5.9375 -2.109375 5.9375 -2.140625 C 5.9375 -2.1875 5.921875 -2.25 5.8125 -2.25 C 5.71875 -2.25 5.6875 -2.1875 5.6875 -2.15625 C 5.25 -0.71875 3.96875 -0.078125 3.078125 -0.078125 C 2.203125 -0.078125 1.28125 -0.609375 1.28125 -1.953125 C 1.28125 -2.359375 1.421875 -3.765625 2.328125 -4.875 C 2.859375 -5.515625 3.734375 -6.03125 4.59375 -6.03125 C 5.59375 -6.03125 6.109375 -5.265625 6.109375 -4.28125 C 6.109375 -3.984375 6.09375 -3.921875 6.09375 -3.84375 C 6.09375 -3.75 6.1875 -3.75 6.21875 -3.75 C 6.34375 -3.75 6.34375 -3.765625 6.375 -3.9375 Z M 6.921875 -6.0625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-1"> | |
| 105 | +<path d="M 7.359375 -3.828125 C 7.359375 -5.046875 6.59375 -6.109375 5.1875 -6.109375 L 2.125 -6.109375 C 1.96875 -6.109375 1.859375 -6.109375 1.859375 -5.9375 C 1.859375 -5.828125 1.9375 -5.828125 2.125 -5.828125 C 2.15625 -5.828125 2.328125 -5.828125 2.46875 -5.8125 C 2.625 -5.796875 2.6875 -5.78125 2.6875 -5.671875 C 2.6875 -5.625 2.671875 -5.59375 2.640625 -5.5 L 1.4375 -0.671875 C 1.359375 -0.359375 1.34375 -0.28125 0.671875 -0.28125 C 0.5 -0.28125 0.40625 -0.28125 0.40625 -0.109375 C 0.40625 0 0.484375 0 0.65625 0 L 3.671875 0 C 5.578125 0 7.359375 -1.890625 7.359375 -3.828125 Z M 6.5625 -4.15625 C 6.5625 -3.640625 6.34375 -2.203125 5.640625 -1.328125 C 5.234375 -0.8125 4.484375 -0.28125 3.5 -0.28125 L 2.4375 -0.28125 C 2.3125 -0.28125 2.28125 -0.28125 2.25 -0.28125 C 2.15625 -0.296875 2.140625 -0.296875 2.140625 -0.359375 C 2.140625 -0.390625 2.140625 -0.40625 2.1875 -0.578125 L 3.40625 -5.484375 C 3.484375 -5.796875 3.5 -5.828125 3.875 -5.828125 L 4.890625 -5.828125 C 5.8125 -5.828125 6.5625 -5.3125 6.5625 -4.15625 Z M 6.5625 -4.15625 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-2"> | |
| 108 | +<path d="M 7.046875 -5.984375 C 7.046875 -6.0625 7 -6.109375 6.9375 -6.109375 C 6.90625 -6.109375 6.671875 -6.078125 6.203125 -6.078125 C 5.921875 -6.078125 5.609375 -6.109375 5.328125 -6.109375 C 5.265625 -6.109375 5.171875 -6.09375 5.171875 -5.9375 C 5.171875 -5.84375 5.265625 -5.828125 5.296875 -5.828125 C 5.390625 -5.8125 5.71875 -5.796875 5.71875 -5.546875 C 5.71875 -5.46875 5.6875 -5.40625 5.65625 -5.328125 C 5.609375 -5.265625 5.59375 -5.234375 5.5625 -5.171875 L 2.765625 -0.828125 L 2.078125 -5.5625 C 2.078125 -5.640625 2.140625 -5.828125 2.703125 -5.828125 C 2.8125 -5.828125 2.90625 -5.828125 2.90625 -5.984375 C 2.90625 -6.09375 2.828125 -6.109375 2.765625 -6.109375 C 2.609375 -6.109375 2.421875 -6.09375 2.25 -6.09375 L 1.6875 -6.078125 C 1.53125 -6.078125 1.28125 -6.078125 1.203125 -6.09375 L 0.6875 -6.109375 C 0.65625 -6.109375 0.53125 -6.109375 0.53125 -5.9375 C 0.53125 -5.828125 0.625 -5.828125 0.734375 -5.828125 C 1.234375 -5.828125 1.25 -5.75 1.28125 -5.515625 L 2.0625 -0.03125 C 2.09375 0.140625 2.09375 0.203125 2.25 0.203125 C 2.390625 0.203125 2.453125 0.125 2.515625 0.015625 L 5.78125 -5.046875 C 6.140625 -5.625 6.453125 -5.796875 6.859375 -5.828125 C 6.96875 -5.84375 7.046875 -5.84375 7.046875 -5.984375 Z M 7.046875 -5.984375 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-2-0"> | |
| 111 | +<path d="M 1.90625 -3.015625 C 1.515625 -3.015625 1.203125 -2.828125 1 -2.515625 L 0.953125 -2.953125 L 0.515625 -2.953125 L 0.515625 0 L 1.03125 0 L 1.03125 -2.09375 C 1.234375 -2.40625 1.453125 -2.625 1.78125 -2.625 C 2.0625 -2.625 2.25 -2.484375 2.25 -2.046875 L 2.25 0 L 2.765625 0 L 2.765625 -2.125 C 2.765625 -2.6875 2.453125 -3.015625 1.90625 -3.015625 Z M 1.90625 -3.015625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-2-1"> | |
| 114 | +<path d="M 2.765625 -1.5625 C 2.765625 -2.46875 2.34375 -3.015625 1.546875 -3.015625 C 0.78125 -3.015625 0.3125 -2.359375 0.3125 -1.453125 C 0.3125 -0.515625 0.796875 0.0625 1.625 0.0625 C 2.03125 0.0625 2.359375 -0.078125 2.65625 -0.296875 L 2.4375 -0.609375 C 2.171875 -0.4375 1.953125 -0.359375 1.671875 -0.359375 C 1.234375 -0.359375 0.921875 -0.609375 0.875 -1.296875 L 2.75 -1.296875 C 2.765625 -1.375 2.765625 -1.46875 2.765625 -1.5625 Z M 2.25 -1.6875 L 0.875 -1.6875 C 0.90625 -2.34375 1.171875 -2.609375 1.5625 -2.609375 C 2.03125 -2.609375 2.25 -2.296875 2.25 -1.71875 Z M 2.25 -1.6875 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-2-2"> | |
| 117 | +<path d="M 2.703125 -2.953125 L 2.1875 -2.953125 L 2.1875 -0.84375 C 2.015625 -0.546875 1.765625 -0.34375 1.453125 -0.34375 C 1.140625 -0.34375 1 -0.484375 1 -0.890625 L 1 -2.953125 L 0.484375 -2.953125 L 0.484375 -0.828125 C 0.484375 -0.265625 0.796875 0.0625 1.3125 0.0625 C 1.734375 0.0625 2 -0.09375 2.234375 -0.453125 L 2.265625 0 L 2.703125 0 Z M 2.703125 -2.953125 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-2-3"> | |
| 120 | +<path d="M 1.53125 -3.796875 C 1.6875 -3.796875 1.859375 -3.765625 2.046875 -3.671875 L 2.21875 -4.0625 C 1.984375 -4.15625 1.796875 -4.203125 1.515625 -4.203125 C 0.90625 -4.203125 0.578125 -3.859375 0.578125 -3.359375 L 0.578125 -2.953125 L 0.0625 -2.953125 L 0.0625 -2.5625 L 0.578125 -2.5625 L 0.578125 0 L 1.09375 0 L 1.09375 -2.5625 L 1.765625 -2.5625 L 1.8125 -2.953125 L 1.09375 -2.953125 L 1.09375 -3.359375 C 1.09375 -3.65625 1.21875 -3.796875 1.53125 -3.796875 Z M 1.53125 -3.796875 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-2-4"> | |
| 123 | +<path d="M 1.828125 -0.484375 C 1.6875 -0.390625 1.5625 -0.359375 1.4375 -0.359375 C 1.171875 -0.359375 1.078125 -0.5 1.078125 -0.796875 L 1.078125 -2.5625 L 1.734375 -2.5625 L 1.78125 -2.953125 L 1.078125 -2.953125 L 1.078125 -3.6875 L 0.5625 -3.625 L 0.5625 -2.953125 L 0.046875 -2.953125 L 0.046875 -2.5625 L 0.5625 -2.5625 L 0.5625 -0.78125 C 0.5625 -0.21875 0.859375 0.0625 1.359375 0.0625 C 1.609375 0.0625 1.828125 0 2.03125 -0.140625 Z M 1.828125 -0.484375 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-2-5"> | |
| 126 | +<path d="M 1.640625 -3.015625 C 0.796875 -3.015625 0.3125 -2.390625 0.3125 -1.46875 C 0.3125 -0.53125 0.796875 0.0625 1.640625 0.0625 C 2.46875 0.0625 2.953125 -0.5625 2.953125 -1.484375 C 2.953125 -2.421875 2.484375 -3.015625 1.640625 -3.015625 Z M 1.640625 -2.609375 C 2.125 -2.609375 2.40625 -2.25 2.40625 -1.484375 C 2.40625 -0.703125 2.125 -0.34375 1.640625 -0.34375 C 1.140625 -0.34375 0.875 -0.703125 0.875 -1.46875 C 0.875 -2.25 1.15625 -2.609375 1.640625 -2.609375 Z M 1.640625 -2.609375 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-2-6"> | |
| 129 | +<path d="M 2.5 -0.6875 L 2.5 -2.046875 C 2.5 -2.65625 2.171875 -3.015625 1.453125 -3.015625 C 1.125 -3.015625 0.796875 -2.953125 0.4375 -2.828125 L 0.5625 -2.453125 C 0.875 -2.546875 1.140625 -2.609375 1.359375 -2.609375 C 1.765625 -2.609375 1.984375 -2.453125 1.984375 -2.015625 L 1.984375 -1.796875 L 1.53125 -1.796875 C 0.703125 -1.796875 0.21875 -1.453125 0.21875 -0.828125 C 0.21875 -0.296875 0.578125 0.0625 1.171875 0.0625 C 1.53125 0.0625 1.84375 -0.0625 2.046875 -0.375 C 2.140625 -0.078125 2.328125 0.03125 2.625 0.0625 L 2.75 -0.296875 C 2.59375 -0.34375 2.5 -0.4375 2.5 -0.6875 Z M 1.28125 -0.3125 C 0.953125 -0.3125 0.78125 -0.5 0.78125 -0.859375 C 0.78125 -1.25 1.046875 -1.453125 1.59375 -1.453125 L 1.984375 -1.453125 L 1.984375 -0.78125 C 1.8125 -0.46875 1.59375 -0.3125 1.28125 -0.3125 Z M 1.28125 -0.3125 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-2-7"> | |
| 132 | +<path d="M 1.09375 0.0625 C 1.25 0.0625 1.390625 0.03125 1.515625 -0.03125 L 1.375 -0.390625 C 1.3125 -0.375 1.25 -0.359375 1.1875 -0.359375 C 1.046875 -0.359375 1 -0.4375 1 -0.59375 L 1 -4.203125 L 0.484375 -4.140625 L 0.484375 -0.578125 C 0.484375 -0.15625 0.71875 0.0625 1.09375 0.0625 Z M 1.09375 0.0625 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-2-8"> | |
| 135 | +<path d="M 1.796875 -3.015625 C 1.4375 -3.015625 1.171875 -2.796875 1.015625 -2.359375 L 0.953125 -2.953125 L 0.515625 -2.953125 L 0.515625 0 L 1.03125 0 L 1.03125 -1.6875 C 1.15625 -2.25 1.375 -2.515625 1.734375 -2.515625 C 1.84375 -2.515625 1.90625 -2.5 2 -2.484375 L 2.09375 -2.984375 C 2 -3.015625 1.890625 -3.015625 1.796875 -3.015625 Z M 1.796875 -3.015625 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-2-9"> | |
| 138 | +<path d="M 0.765625 -4.375 C 0.5625 -4.375 0.40625 -4.21875 0.40625 -4.015625 C 0.40625 -3.828125 0.5625 -3.671875 0.765625 -3.671875 C 0.984375 -3.671875 1.140625 -3.828125 1.140625 -4.015625 C 1.140625 -4.21875 0.984375 -4.375 0.765625 -4.375 Z M 1.03125 -2.953125 L 0.515625 -2.953125 L 0.515625 0 L 1.03125 0 Z M 1.03125 -2.953125 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-3-0"> | |
| 141 | +<path d="M 6.359375 -2.234375 C 6.359375 -2.4375 6.1875 -2.4375 6.046875 -2.4375 L 1.078125 -2.4375 C 0.953125 -2.4375 0.765625 -2.4375 0.765625 -2.25 C 0.765625 -2.046875 0.9375 -2.046875 1.078125 -2.046875 L 6.046875 -2.046875 C 6.171875 -2.046875 6.359375 -2.046875 6.359375 -2.234375 Z M 6.359375 -2.234375 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-4-0"> | |
| 144 | +<path d="M 6.625 -3.140625 C 6.625 -3.34375 6.421875 -3.34375 6.296875 -3.34375 L 0.84375 -3.34375 C 0.703125 -3.34375 0.515625 -3.34375 0.515625 -3.140625 C 0.515625 -2.953125 0.6875 -2.953125 0.796875 -2.953125 L 6.328125 -2.953125 C 6.453125 -2.953125 6.625 -2.953125 6.625 -3.140625 Z M 6.625 -1.328125 C 6.625 -1.515625 6.453125 -1.515625 6.328125 -1.515625 L 0.796875 -1.515625 C 0.6875 -1.515625 0.515625 -1.515625 0.515625 -1.328125 C 0.515625 -1.140625 0.703125 -1.140625 0.84375 -1.140625 L 6.296875 -1.140625 C 6.421875 -1.140625 6.625 -1.140625 6.625 -1.328125 Z M 6.625 -1.328125 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-4-1"> | |
| 147 | +<path d="M 6.625 -2.234375 C 6.625 -2.4375 6.453125 -2.4375 6.3125 -2.4375 L 3.765625 -2.4375 L 3.765625 -4.984375 C 3.765625 -5.125 3.765625 -5.296875 3.5625 -5.296875 C 3.375 -5.296875 3.375 -5.109375 3.375 -4.984375 L 3.375 -2.4375 L 0.828125 -2.4375 C 0.703125 -2.4375 0.515625 -2.4375 0.515625 -2.25 C 0.515625 -2.046875 0.671875 -2.046875 0.828125 -2.046875 L 3.375 -2.046875 L 3.375 0.515625 C 3.375 0.65625 3.375 0.828125 3.578125 0.828125 C 3.765625 0.828125 3.765625 0.640625 3.765625 0.515625 L 3.765625 -2.046875 L 6.3125 -2.046875 C 6.4375 -2.046875 6.625 -2.046875 6.625 -2.234375 Z M 6.625 -2.234375 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-5-0"> | |
| 150 | +<path d="M 3.921875 -4.78125 L 0.453125 -4.78125 L 0.453125 -1.71875 L 1.34375 -1.71875 C 1.5625 -1.84375 1.796875 -1.921875 2.03125 -1.921875 C 2.5 -1.921875 2.828125 -1.6875 2.828125 -0.96875 C 2.828125 -0.3125 2.484375 0.046875 1.90625 0.046875 C 1.453125 0.046875 1.09375 -0.15625 0.8125 -0.5 L 0.0625 0.171875 C 0.5 0.6875 1.09375 1.046875 1.953125 1.046875 C 3.3125 1.046875 4.1875 0.21875 4.1875 -0.96875 C 4.1875 -2.15625 3.484375 -2.828125 2.5625 -2.828125 C 2.25 -2.828125 1.984375 -2.78125 1.703125 -2.625 L 1.703125 -3.828125 L 3.78125 -3.828125 Z M 3.921875 -4.78125 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-5-1"> | |
| 153 | +<path d="M 1.015625 -1.375 C 0.578125 -1.375 0.25 -1.03125 0.25 -0.625 C 0.25 -0.203125 0.578125 0.140625 1.015625 0.140625 C 1.421875 0.140625 1.765625 -0.203125 1.765625 -0.625 C 1.765625 -1.03125 1.421875 -1.375 1.015625 -1.375 Z M 1.015625 -1.375 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-5-2"> | |
| 156 | +<path d="M 3.609375 0 L 5.078125 0 L 3.328125 -5.828125 L 1.640625 -5.828125 L -0.109375 0 L 1.3125 0 L 1.609375 -1.25 L 3.328125 -1.25 Z M 1.84375 -2.25 L 2.46875 -4.828125 L 3.078125 -2.25 Z M 1.84375 -2.25 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-5-3"> | |
| 159 | +<path d="M 3.15625 -6.375 L 3.15625 -4.1875 C 2.890625 -4.453125 2.53125 -4.609375 2.09375 -4.609375 C 0.984375 -4.609375 0.265625 -3.625 0.265625 -2.25 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.578125 0.140625 2.96875 -0.15625 3.234375 -0.515625 L 3.296875 0 L 4.484375 0 L 4.484375 -6.234375 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.453125 -3.640625 C 2.75 -3.640625 2.953125 -3.5 3.15625 -3.265625 L 3.15625 -1.34375 C 2.9375 -1 2.703125 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-5-4"> | |
| 162 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.0625 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.0625 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.46875 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-5-5"> | |
| 165 | +<path d="M 2.875 -1.046875 C 2.703125 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.125 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.46875 L 1.96875 -4.46875 L 1.96875 -5.578125 L 0.640625 -5.4375 L 0.640625 -4.46875 L 0.015625 -4.46875 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.328125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-5-6"> | |
| 168 | +<path d="M 2.453125 -4.609375 C 1.09375 -4.609375 0.265625 -3.671875 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.640625 -0.796875 4.640625 -2.234375 C 4.640625 -3.734375 3.8125 -4.609375 2.453125 -4.609375 Z M 2.453125 -3.625 C 3 -3.625 3.265625 -3.21875 3.265625 -2.234375 C 3.265625 -1.265625 3 -0.828125 2.453125 -0.828125 C 1.921875 -0.828125 1.640625 -1.25 1.640625 -2.234375 C 1.640625 -3.203125 1.921875 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-5-7"> | |
| 171 | +<path d="M 3.125 -4.609375 C 2.5625 -4.609375 2.140625 -4.375 1.765625 -3.921875 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.265625 C 4.359375 -4.109375 3.90625 -4.609375 3.125 -4.609375 Z M 3.125 -4.609375 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-5-8"> | |
| 174 | +<path d="M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.609375 2.359375 -4.609375 C 1 -4.609375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.8125 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.328125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.390625 -1.84375 C 4.40625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.453125 1.9375 -3.71875 2.390625 -3.71875 C 2.921875 -3.71875 3.109375 -3.296875 3.109375 -2.703125 Z M 3.109375 -2.640625 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-5-9"> | |
| 177 | +<path d="M 2.9375 -4.59375 C 2.421875 -4.59375 1.984375 -4.21875 1.78125 -3.59375 L 1.671875 -4.46875 L 0.515625 -4.46875 L 0.515625 0 L 1.84375 0 L 1.84375 -2.25 C 2 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.03125 -3.28125 3.171875 -3.25 L 3.375 -4.53125 C 3.234375 -4.578125 3.109375 -4.59375 2.9375 -4.59375 Z M 2.9375 -4.59375 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-5-10"> | |
| 180 | +<path d="M 1.015625 -4.28125 C 0.578125 -4.28125 0.25 -3.9375 0.25 -3.515625 C 0.25 -3.109375 0.578125 -2.765625 1.015625 -2.765625 C 1.421875 -2.765625 1.765625 -3.109375 1.765625 -3.515625 C 1.765625 -3.9375 1.421875 -4.28125 1.015625 -4.28125 Z M 1.015625 -1.375 C 0.578125 -1.375 0.25 -1.03125 0.25 -0.625 C 0.25 -0.203125 0.578125 0.140625 1.015625 0.140625 C 1.421875 0.140625 1.765625 -0.203125 1.765625 -0.625 C 1.765625 -1.03125 1.421875 -1.375 1.015625 -1.375 Z M 1.015625 -1.375 "/> | |
| 181 | +</g> | |
| 182 | +<g id="glyph-6-0"> | |
| 183 | +<path d="M 2.09375 -3.078125 C 1.703125 -3.078125 1.421875 -2.921875 1.171875 -2.625 L 1.109375 -2.984375 L 0.34375 -2.984375 L 0.34375 0 L 1.234375 0 L 1.234375 -2.03125 C 1.375 -2.28125 1.546875 -2.421875 1.75 -2.421875 C 1.921875 -2.421875 2.03125 -2.34375 2.03125 -2.03125 L 2.03125 0 L 2.90625 0 L 2.90625 -2.171875 C 2.90625 -2.75 2.609375 -3.078125 2.09375 -3.078125 Z M 2.09375 -3.078125 "/> | |
| 184 | +</g> | |
| 185 | +<g id="glyph-6-1"> | |
| 186 | +<path d="M 2.9375 -1.546875 C 2.9375 -2.515625 2.421875 -3.078125 1.578125 -3.078125 C 0.671875 -3.078125 0.171875 -2.359375 0.171875 -1.46875 C 0.171875 -0.546875 0.6875 0.09375 1.671875 0.09375 C 2.15625 0.09375 2.546875 -0.078125 2.84375 -0.3125 L 2.46875 -0.8125 C 2.21875 -0.640625 2 -0.546875 1.765625 -0.546875 C 1.390625 -0.546875 1.140625 -0.703125 1.09375 -1.234375 L 2.921875 -1.234375 C 2.9375 -1.3125 2.9375 -1.453125 2.9375 -1.546875 Z M 2.078125 -1.765625 L 1.078125 -1.765625 C 1.125 -2.296875 1.296875 -2.484375 1.59375 -2.484375 C 1.953125 -2.484375 2.0625 -2.203125 2.078125 -1.796875 Z M 2.078125 -1.765625 "/> | |
| 187 | +</g> | |
| 188 | +<g id="glyph-6-2"> | |
| 189 | +<path d="M 2.84375 -2.984375 L 1.953125 -2.984375 L 1.953125 -0.90625 C 1.828125 -0.6875 1.65625 -0.5625 1.46875 -0.5625 C 1.296875 -0.5625 1.1875 -0.65625 1.1875 -0.953125 L 1.1875 -2.984375 L 0.296875 -2.984375 L 0.296875 -0.84375 C 0.296875 -0.265625 0.578125 0.09375 1.140625 0.09375 C 1.53125 0.09375 1.828125 -0.0625 2.03125 -0.375 L 2.078125 0 L 2.84375 0 Z M 2.84375 -2.984375 "/> | |
| 190 | +</g> | |
| 191 | +<g id="glyph-6-3"> | |
| 192 | +<path d="M 1.703125 -3.59375 C 1.84375 -3.59375 2.015625 -3.578125 2.171875 -3.484375 L 2.421875 -4.0625 C 2.203125 -4.171875 1.90625 -4.25 1.609375 -4.25 C 0.84375 -4.25 0.46875 -3.8125 0.46875 -3.234375 L 0.46875 -2.984375 L 0.015625 -2.984375 L 0.015625 -2.359375 L 0.46875 -2.359375 L 0.46875 0 L 1.359375 0 L 1.359375 -2.359375 L 1.953125 -2.359375 L 2.046875 -2.984375 L 1.359375 -2.984375 L 1.359375 -3.203125 C 1.359375 -3.484375 1.453125 -3.59375 1.703125 -3.59375 Z M 1.703125 -3.59375 "/> | |
| 193 | +</g> | |
| 194 | +<g id="glyph-6-4"> | |
| 195 | +<path d="M 1.921875 -0.703125 C 1.796875 -0.640625 1.703125 -0.609375 1.59375 -0.609375 C 1.40625 -0.609375 1.3125 -0.703125 1.3125 -1 L 1.3125 -2.359375 L 1.90625 -2.359375 L 2 -2.984375 L 1.3125 -2.984375 L 1.3125 -3.71875 L 0.4375 -3.625 L 0.4375 -2.984375 L 0.015625 -2.984375 L 0.015625 -2.359375 L 0.4375 -2.359375 L 0.4375 -0.984375 C 0.4375 -0.28125 0.75 0.09375 1.40625 0.09375 C 1.671875 0.09375 1.984375 0.015625 2.21875 -0.140625 Z M 1.921875 -0.703125 "/> | |
| 196 | +</g> | |
| 197 | +<g id="glyph-6-5"> | |
| 198 | +<path d="M 1.640625 -3.078125 C 0.734375 -3.078125 0.171875 -2.453125 0.171875 -1.484375 C 0.171875 -0.484375 0.734375 0.09375 1.640625 0.09375 C 2.546875 0.09375 3.09375 -0.53125 3.09375 -1.484375 C 3.09375 -2.484375 2.546875 -3.078125 1.640625 -3.078125 Z M 1.640625 -2.421875 C 2 -2.421875 2.171875 -2.140625 2.171875 -1.484375 C 2.171875 -0.84375 2 -0.5625 1.640625 -0.5625 C 1.28125 -0.5625 1.09375 -0.828125 1.09375 -1.484375 C 1.09375 -2.140625 1.28125 -2.421875 1.640625 -2.421875 Z M 1.640625 -2.421875 "/> | |
| 199 | +</g> | |
| 200 | +<g id="glyph-6-6"> | |
| 201 | +<path d="M 2.703125 -0.859375 L 2.703125 -2.015625 C 2.703125 -2.703125 2.328125 -3.078125 1.46875 -3.078125 C 1.140625 -3.078125 0.71875 -3 0.34375 -2.859375 L 0.546875 -2.265625 C 0.84375 -2.375 1.140625 -2.421875 1.328125 -2.421875 C 1.6875 -2.421875 1.828125 -2.328125 1.828125 -1.96875 L 1.828125 -1.84375 L 1.53125 -1.84375 C 0.640625 -1.84375 0.140625 -1.484375 0.140625 -0.828125 C 0.140625 -0.296875 0.515625 0.09375 1.109375 0.09375 C 1.453125 0.09375 1.796875 -0.015625 2 -0.34375 C 2.140625 -0.0625 2.375 0.046875 2.71875 0.078125 L 2.90625 -0.5 C 2.765625 -0.546875 2.703125 -0.640625 2.703125 -0.859375 Z M 1.359375 -0.53125 C 1.140625 -0.53125 1.015625 -0.671875 1.015625 -0.921875 C 1.015625 -1.21875 1.21875 -1.359375 1.609375 -1.359375 L 1.828125 -1.359375 L 1.828125 -0.8125 C 1.734375 -0.640625 1.5625 -0.53125 1.359375 -0.53125 Z M 1.359375 -0.53125 "/> | |
| 202 | +</g> | |
| 203 | +<g id="glyph-6-7"> | |
| 204 | +<path d="M 1.125 0.09375 C 1.34375 0.09375 1.53125 0.046875 1.65625 0 L 1.484375 -0.640625 C 1.453125 -0.609375 1.40625 -0.609375 1.34375 -0.609375 C 1.234375 -0.609375 1.1875 -0.671875 1.1875 -0.796875 L 1.1875 -4.25 L 0.296875 -4.15625 L 0.296875 -0.75 C 0.296875 -0.21875 0.609375 0.09375 1.125 0.09375 Z M 1.125 0.09375 "/> | |
| 205 | +</g> | |
| 206 | +<g id="glyph-6-8"> | |
| 207 | +<path d="M 1.953125 -3.0625 C 1.609375 -3.0625 1.328125 -2.8125 1.1875 -2.40625 L 1.109375 -2.984375 L 0.34375 -2.984375 L 0.34375 0 L 1.234375 0 L 1.234375 -1.5 C 1.328125 -1.9375 1.484375 -2.203125 1.84375 -2.203125 C 1.9375 -2.203125 2.015625 -2.1875 2.109375 -2.171875 L 2.25 -3.015625 C 2.15625 -3.046875 2.0625 -3.0625 1.953125 -3.0625 Z M 1.953125 -3.0625 "/> | |
| 208 | +</g> | |
| 209 | +<g id="glyph-6-9"> | |
| 210 | +<path d="M 0.78125 -4.546875 C 0.484375 -4.546875 0.265625 -4.328125 0.265625 -4.046875 C 0.265625 -3.765625 0.484375 -3.546875 0.78125 -3.546875 C 1.09375 -3.546875 1.3125 -3.765625 1.3125 -4.046875 C 1.3125 -4.328125 1.09375 -4.546875 0.78125 -4.546875 Z M 1.234375 -2.984375 L 0.34375 -2.984375 L 0.34375 0 L 1.234375 0 Z M 1.234375 -2.984375 "/> | |
| 211 | +</g> | |
| 212 | +</g> | |
| 213 | +<clipPath id="clip-0"> | |
| 214 | +<path clip-rule="nonzero" d="M 0 0.00390625 L 313.484375 0.00390625 L 313.484375 28 L 0 28 Z M 0 0.00390625 "/> | |
| 215 | +</clipPath> | |
| 216 | +<clipPath id="clip-1"> | |
| 217 | +<path clip-rule="nonzero" d="M 0 26 L 313.484375 26 L 313.484375 56 L 0 56 Z M 0 26 "/> | |
| 218 | +</clipPath> | |
| 219 | +<clipPath id="clip-2"> | |
| 220 | +<path clip-rule="nonzero" d="M 0 54 L 313.484375 54 L 313.484375 83 L 0 83 Z M 0 54 "/> | |
| 221 | +</clipPath> | |
| 222 | +<clipPath id="clip-3"> | |
| 223 | +<path clip-rule="nonzero" d="M 0 81 L 313.484375 81 L 313.484375 110 L 0 110 Z M 0 81 "/> | |
| 224 | +</clipPath> | |
| 225 | +<clipPath id="clip-4"> | |
| 226 | +<path clip-rule="nonzero" d="M 0 108 L 313.484375 108 L 313.484375 136.359375 L 0 136.359375 Z M 0 108 "/> | |
| 227 | +</clipPath> | |
| 228 | +</defs> | |
| 229 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 5.171875 L 9.140625 5.171875 C 6.945312 5.171875 5.167969 6.953125 5.167969 9.148438 L 5.167969 18.164062 C 5.167969 20.359375 6.945312 22.140625 9.140625 22.140625 L 304.34375 22.140625 C 306.539062 22.140625 308.320312 20.359375 308.320312 18.164062 L 308.320312 9.148438 C 308.320312 6.953125 306.539062 5.171875 304.34375 5.171875 Z M 304.34375 5.171875 "/> | |
| 230 | +<g clip-path="url(#clip-0)"> | |
| 231 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 8.505997 L -147.958326 8.505997 C -150.158934 8.505997 -151.940565 6.720451 -151.940565 4.519843 L -151.940565 -4.517529 C -151.940565 -6.718137 -150.158934 -8.503684 -147.958326 -8.503684 L 147.956874 -8.503684 C 150.157482 -8.503684 151.943028 -6.718137 151.943028 -4.517529 L 151.943028 4.519843 C 151.943028 6.720451 150.157482 8.505997 147.956874 8.505997 Z M 147.956874 8.505997 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.657404)"/> | |
| 232 | +</g> | |
| 233 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 234 | +<use xlink:href="#glyph-0-0" x="61.658271" y="16.301027"/> | |
| 235 | +<use xlink:href="#glyph-0-1" x="65.214905" y="16.301027"/> | |
| 236 | +</g> | |
| 237 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 238 | +<use xlink:href="#glyph-0-2" x="70.032757" y="16.301027"/> | |
| 239 | +</g> | |
| 240 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 241 | +<use xlink:href="#glyph-0-3" x="74.489059" y="16.301027"/> | |
| 242 | +<use xlink:href="#glyph-0-4" x="78.415651" y="16.301027"/> | |
| 243 | +<use xlink:href="#glyph-0-5" x="81.450981" y="16.301027"/> | |
| 244 | +<use xlink:href="#glyph-0-6" x="83.771622" y="16.301027"/> | |
| 245 | +<use xlink:href="#glyph-0-7" x="90.918523" y="16.301027"/> | |
| 246 | +<use xlink:href="#glyph-0-8" x="95.492539" y="16.301027"/> | |
| 247 | +</g> | |
| 248 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 249 | +<use xlink:href="#glyph-0-9" x="101.52116" y="16.301027"/> | |
| 250 | +</g> | |
| 251 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 252 | +<use xlink:href="#glyph-0-7" x="103.951106" y="16.301027"/> | |
| 253 | +</g> | |
| 254 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 255 | +<use xlink:href="#glyph-0-10" x="111.325026" y="16.301027"/> | |
| 256 | +</g> | |
| 257 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 258 | +<use xlink:href="#glyph-0-11" x="115.217985" y="16.301027"/> | |
| 259 | +<use xlink:href="#glyph-0-12" x="120.128326" y="16.301027"/> | |
| 260 | +<use xlink:href="#glyph-0-4" x="124.962994" y="16.301027"/> | |
| 261 | +</g> | |
| 262 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 263 | +<use xlink:href="#glyph-0-13" x="130.798228" y="16.301027"/> | |
| 264 | +<use xlink:href="#glyph-0-7" x="135.759018" y="16.301027"/> | |
| 265 | +</g> | |
| 266 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 267 | +<use xlink:href="#glyph-0-8" x="143.132937" y="16.301027"/> | |
| 268 | +</g> | |
| 269 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 270 | +<use xlink:href="#glyph-0-7" x="146.185084" y="16.301027"/> | |
| 271 | +<use xlink:href="#glyph-0-6" x="150.759101" y="16.301027"/> | |
| 272 | +<use xlink:href="#glyph-0-14" x="157.906001" y="16.301027"/> | |
| 273 | +<use xlink:href="#glyph-0-9" x="162.833159" y="16.301027"/> | |
| 274 | +</g> | |
| 275 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 276 | +<use xlink:href="#glyph-0-15" x="165.263105" y="16.301027"/> | |
| 277 | +<use xlink:href="#glyph-0-10" x="169.795081" y="16.301027"/> | |
| 278 | +</g> | |
| 279 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 280 | +<use xlink:href="#glyph-0-7" x="173.688039" y="16.301027"/> | |
| 281 | +<use xlink:href="#glyph-0-6" x="178.262056" y="16.301027"/> | |
| 282 | +<use xlink:href="#glyph-0-7" x="185.408956" y="16.301027"/> | |
| 283 | +<use xlink:href="#glyph-0-16" x="189.982973" y="16.301027"/> | |
| 284 | +<use xlink:href="#glyph-0-4" x="194.851273" y="16.301027"/> | |
| 285 | +</g> | |
| 286 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 287 | +<use xlink:href="#glyph-0-17" x="200.694915" y="16.301027"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-0-16" x="208.026795" y="16.301027"/> | |
| 291 | +<use xlink:href="#glyph-0-7" x="212.895095" y="16.301027"/> | |
| 292 | +<use xlink:href="#glyph-0-18" x="217.469111" y="16.301027"/> | |
| 293 | +<use xlink:href="#glyph-0-19" x="222.30378" y="16.301027"/> | |
| 294 | +</g> | |
| 295 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 296 | +<use xlink:href="#glyph-0-20" x="227.920403" y="16.301027"/> | |
| 297 | +</g> | |
| 298 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 299 | +<use xlink:href="#glyph-1-0" x="230.644633" y="16.301027"/> | |
| 300 | +</g> | |
| 301 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 302 | +<use xlink:href="#glyph-2-0" x="237.209813" y="17.435291"/> | |
| 303 | +<use xlink:href="#glyph-2-1" x="240.455328" y="17.435291"/> | |
| 304 | +<use xlink:href="#glyph-2-2" x="243.504654" y="17.435291"/> | |
| 305 | +<use xlink:href="#glyph-2-3" x="246.727747" y="17.435291"/> | |
| 306 | +</g> | |
| 307 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 308 | +<use xlink:href="#glyph-0-21" x="249.103125" y="16.301027"/> | |
| 309 | +</g> | |
| 310 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 32.4375 L 9.140625 32.4375 C 6.945312 32.4375 5.167969 34.214844 5.167969 36.410156 L 5.167969 45.429688 C 5.167969 47.625 6.945312 49.402344 9.140625 49.402344 L 304.34375 49.402344 C 306.539062 49.402344 308.320312 47.625 308.320312 45.429688 L 308.320312 36.410156 C 308.320312 34.214844 306.539062 32.4375 304.34375 32.4375 Z M 304.34375 32.4375 "/> | |
| 311 | +<g clip-path="url(#clip-1)"> | |
| 312 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -18.825396 L -147.958326 -18.825396 C -150.158934 -18.825396 -151.940565 -20.607027 -151.940565 -22.807635 L -151.940565 -31.848923 C -151.940565 -34.049531 -150.158934 -35.831162 -147.958326 -35.831162 L 147.956874 -35.831162 C 150.157482 -35.831162 151.943028 -34.049531 151.943028 -31.848923 L 151.943028 -22.807635 C 151.943028 -20.607027 150.157482 -18.825396 147.956874 -18.825396 Z M 147.956874 -18.825396 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.657404)"/> | |
| 313 | +</g> | |
| 314 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 315 | +<use xlink:href="#glyph-0-22" x="79.387505" y="43.563266"/> | |
| 316 | +<use xlink:href="#glyph-0-1" x="83.557932" y="43.563266"/> | |
| 317 | +</g> | |
| 318 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 319 | +<use xlink:href="#glyph-0-2" x="88.375784" y="43.563266"/> | |
| 320 | +</g> | |
| 321 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 322 | +<use xlink:href="#glyph-0-3" x="92.832086" y="43.563266"/> | |
| 323 | +<use xlink:href="#glyph-0-4" x="96.758678" y="43.563266"/> | |
| 324 | +<use xlink:href="#glyph-0-5" x="99.794008" y="43.563266"/> | |
| 325 | +<use xlink:href="#glyph-0-6" x="102.114649" y="43.563266"/> | |
| 326 | +<use xlink:href="#glyph-0-7" x="109.26155" y="43.563266"/> | |
| 327 | +<use xlink:href="#glyph-0-8" x="113.835566" y="43.563266"/> | |
| 328 | +</g> | |
| 329 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 330 | +<use xlink:href="#glyph-0-9" x="119.864187" y="43.563266"/> | |
| 331 | +</g> | |
| 332 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 333 | +<use xlink:href="#glyph-0-15" x="122.294133" y="43.563266"/> | |
| 334 | +</g> | |
| 335 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 336 | +<use xlink:href="#glyph-0-13" x="129.626012" y="43.563266"/> | |
| 337 | +<use xlink:href="#glyph-0-23" x="134.586802" y="43.563266"/> | |
| 338 | +<use xlink:href="#glyph-0-14" x="139.160818" y="43.563266"/> | |
| 339 | +<use xlink:href="#glyph-0-8" x="144.087976" y="43.563266"/> | |
| 340 | +</g> | |
| 341 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 342 | +<use xlink:href="#glyph-0-23" x="147.140123" y="43.563266"/> | |
| 343 | +<use xlink:href="#glyph-0-10" x="151.714139" y="43.563266"/> | |
| 344 | +<use xlink:href="#glyph-0-5" x="155.73322" y="43.563266"/> | |
| 345 | +<use xlink:href="#glyph-0-15" x="158.05386" y="43.563266"/> | |
| 346 | +<use xlink:href="#glyph-0-4" x="162.585836" y="43.563266"/> | |
| 347 | +<use xlink:href="#glyph-0-5" x="165.621167" y="43.563266"/> | |
| 348 | +<use xlink:href="#glyph-0-11" x="167.941807" y="43.563266"/> | |
| 349 | +<use xlink:href="#glyph-0-16" x="172.852148" y="43.563266"/> | |
| 350 | +</g> | |
| 351 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 352 | +<use xlink:href="#glyph-0-4" x="180.520352" y="43.563266"/> | |
| 353 | +</g> | |
| 354 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-0-11" x="183.429561" y="43.563266"/> | |
| 356 | +<use xlink:href="#glyph-0-4" x="188.339902" y="43.563266"/> | |
| 357 | +<use xlink:href="#glyph-0-15" x="191.375233" y="43.563266"/> | |
| 358 | +</g> | |
| 359 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 360 | +<use xlink:href="#glyph-0-9" x="195.865168" y="43.563266"/> | |
| 361 | +</g> | |
| 362 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 363 | +<use xlink:href="#glyph-0-7" x="198.295115" y="43.563266"/> | |
| 364 | +</g> | |
| 365 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 366 | +<use xlink:href="#glyph-0-20" x="205.669034" y="43.563266"/> | |
| 367 | +</g> | |
| 368 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 369 | +<use xlink:href="#glyph-1-1" x="208.393265" y="43.563266"/> | |
| 370 | +</g> | |
| 371 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 372 | +<use xlink:href="#glyph-2-4" x="215.978028" y="44.69753"/> | |
| 373 | +</g> | |
| 374 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 375 | +<use xlink:href="#glyph-2-5" x="217.917489" y="44.69753"/> | |
| 376 | +<use xlink:href="#glyph-2-4" x="221.19103" y="44.69753"/> | |
| 377 | +<use xlink:href="#glyph-2-6" x="223.214572" y="44.69753"/> | |
| 378 | +</g> | |
| 379 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 380 | +<use xlink:href="#glyph-2-7" x="226.207844" y="44.69753"/> | |
| 381 | +</g> | |
| 382 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 383 | +<use xlink:href="#glyph-2-1" x="227.827799" y="44.69753"/> | |
| 384 | +</g> | |
| 385 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 386 | +<use xlink:href="#glyph-0-21" x="231.373891" y="43.563266"/> | |
| 387 | +</g> | |
| 388 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 59.699219 L 9.140625 59.699219 C 6.945312 59.699219 5.167969 61.480469 5.167969 63.675781 L 5.167969 72.691406 C 5.167969 74.886719 6.945312 76.667969 9.140625 76.667969 L 304.34375 76.667969 C 306.539062 76.667969 308.320312 74.886719 308.320312 72.691406 L 308.320312 63.675781 C 308.320312 61.480469 306.539062 59.699219 304.34375 59.699219 Z M 304.34375 59.699219 "/> | |
| 389 | +<g clip-path="url(#clip-2)"> | |
| 390 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -46.152875 L -147.958326 -46.152875 C -150.158934 -46.152875 -151.940565 -47.938421 -151.940565 -50.139029 L -151.940565 -59.176401 C -151.940565 -61.377009 -150.158934 -63.162556 -147.958326 -63.162556 L 147.956874 -63.162556 C 150.157482 -63.162556 151.943028 -61.377009 151.943028 -59.176401 L 151.943028 -50.139029 C 151.943028 -47.938421 150.157482 -46.152875 147.956874 -46.152875 Z M 147.956874 -46.152875 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.657404)"/> | |
| 391 | +</g> | |
| 392 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 393 | +<use xlink:href="#glyph-0-24" x="37.654172" y="70.594064"/> | |
| 394 | +<use xlink:href="#glyph-0-1" x="41.757334" y="70.594064"/> | |
| 395 | +</g> | |
| 396 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 397 | +<use xlink:href="#glyph-0-25" x="46.575186" y="70.594064"/> | |
| 398 | +<use xlink:href="#glyph-0-11" x="51.15761" y="70.594064"/> | |
| 399 | +<use xlink:href="#glyph-0-18" x="56.067951" y="70.594064"/> | |
| 400 | +<use xlink:href="#glyph-0-3" x="60.90262" y="70.594064"/> | |
| 401 | +<use xlink:href="#glyph-0-4" x="64.829211" y="70.594064"/> | |
| 402 | +<use xlink:href="#glyph-0-8" x="67.864541" y="70.594064"/> | |
| 403 | +</g> | |
| 404 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 405 | +<use xlink:href="#glyph-0-15" x="70.916688" y="70.594064"/> | |
| 406 | +<use xlink:href="#glyph-0-5" x="75.448664" y="70.594064"/> | |
| 407 | +<use xlink:href="#glyph-0-8" x="77.769305" y="70.594064"/> | |
| 408 | +</g> | |
| 409 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 410 | +<use xlink:href="#glyph-0-7" x="80.821452" y="70.594064"/> | |
| 411 | +</g> | |
| 412 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 413 | +<use xlink:href="#glyph-0-26" x="88.20378" y="70.594064"/> | |
| 414 | +</g> | |
| 415 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 416 | +<use xlink:href="#glyph-1-0" x="93.021458" y="70.594064"/> | |
| 417 | +</g> | |
| 418 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 419 | +<use xlink:href="#glyph-2-0" x="99.582791" y="71.728328"/> | |
| 420 | +<use xlink:href="#glyph-2-1" x="102.828305" y="71.728328"/> | |
| 421 | +<use xlink:href="#glyph-2-2" x="105.877632" y="71.728328"/> | |
| 422 | +<use xlink:href="#glyph-2-3" x="109.100724" y="71.728328"/> | |
| 423 | +</g> | |
| 424 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 425 | +<use xlink:href="#glyph-3-0" x="115.301874" y="70.594064"/> | |
| 426 | +</g> | |
| 427 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 428 | +<use xlink:href="#glyph-1-1" x="126.280751" y="70.594064"/> | |
| 429 | +</g> | |
| 430 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 431 | +<use xlink:href="#glyph-2-4" x="133.860109" y="71.728328"/> | |
| 432 | +</g> | |
| 433 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 434 | +<use xlink:href="#glyph-2-5" x="135.79957" y="71.728328"/> | |
| 435 | +<use xlink:href="#glyph-2-4" x="139.073111" y="71.728328"/> | |
| 436 | +<use xlink:href="#glyph-2-6" x="141.096653" y="71.728328"/> | |
| 437 | +</g> | |
| 438 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 439 | +<use xlink:href="#glyph-2-7" x="144.089925" y="71.728328"/> | |
| 440 | +</g> | |
| 441 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 442 | +<use xlink:href="#glyph-2-1" x="145.70988" y="71.728328"/> | |
| 443 | +</g> | |
| 444 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 445 | +<use xlink:href="#glyph-4-0" x="152.05921" y="70.594064"/> | |
| 446 | +</g> | |
| 447 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 448 | +<use xlink:href="#glyph-0-27" x="162.009605" y="70.594064"/> | |
| 449 | +</g> | |
| 450 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 451 | +<use xlink:href="#glyph-0-15" x="166.104359" y="70.594064"/> | |
| 452 | +</g> | |
| 453 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 454 | +<use xlink:href="#glyph-0-9" x="170.594294" y="70.594064"/> | |
| 455 | +</g> | |
| 456 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 457 | +<use xlink:href="#glyph-0-7" x="173.02424" y="70.594064"/> | |
| 458 | +<use xlink:href="#glyph-0-18" x="177.598257" y="70.594064"/> | |
| 459 | +<use xlink:href="#glyph-0-8" x="182.432925" y="70.594064"/> | |
| 460 | +</g> | |
| 461 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 462 | +<use xlink:href="#glyph-0-13" x="188.461546" y="70.594064"/> | |
| 463 | +<use xlink:href="#glyph-0-23" x="193.422335" y="70.594064"/> | |
| 464 | +<use xlink:href="#glyph-0-14" x="197.996352" y="70.594064"/> | |
| 465 | +<use xlink:href="#glyph-0-8" x="202.923509" y="70.594064"/> | |
| 466 | +</g> | |
| 467 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 468 | +<use xlink:href="#glyph-0-23" x="205.975656" y="70.594064"/> | |
| 469 | +<use xlink:href="#glyph-0-10" x="210.549672" y="70.594064"/> | |
| 470 | +<use xlink:href="#glyph-0-5" x="214.568753" y="70.594064"/> | |
| 471 | +<use xlink:href="#glyph-0-23" x="216.889394" y="70.594064"/> | |
| 472 | +<use xlink:href="#glyph-0-7" x="221.46341" y="70.594064"/> | |
| 473 | +</g> | |
| 474 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 475 | +<use xlink:href="#glyph-0-13" x="228.83733" y="70.594064"/> | |
| 476 | +<use xlink:href="#glyph-0-18" x="233.79812" y="70.594064"/> | |
| 477 | +</g> | |
| 478 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 479 | +<use xlink:href="#glyph-0-28" x="241.432691" y="70.594064"/> | |
| 480 | +</g> | |
| 481 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 482 | +<use xlink:href="#glyph-0-29" x="246.317808" y="70.594064"/> | |
| 483 | +<use xlink:href="#glyph-0-4" x="250.849784" y="70.594064"/> | |
| 484 | +<use xlink:href="#glyph-0-5" x="253.885114" y="70.594064"/> | |
| 485 | +<use xlink:href="#glyph-0-6" x="256.205755" y="70.594064"/> | |
| 486 | +<use xlink:href="#glyph-0-7" x="263.352655" y="70.594064"/> | |
| 487 | +<use xlink:href="#glyph-0-16" x="267.926672" y="70.594064"/> | |
| 488 | +<use xlink:href="#glyph-0-4" x="272.794972" y="70.594064"/> | |
| 489 | +</g> | |
| 490 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 86.960938 L 9.140625 86.960938 C 6.945312 86.960938 5.167969 88.742188 5.167969 90.9375 L 5.167969 99.953125 C 5.167969 102.148438 6.945312 103.929688 9.140625 103.929688 L 304.34375 103.929688 C 306.539062 103.929688 308.320312 102.148438 308.320312 99.953125 L 308.320312 90.9375 C 308.320312 88.742188 306.539062 86.960938 304.34375 86.960938 Z M 304.34375 86.960938 "/> | |
| 491 | +<g clip-path="url(#clip-3)"> | |
| 492 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -73.480353 L -147.958326 -73.480353 C -150.158934 -73.480353 -151.940565 -75.2659 -151.940565 -77.466507 L -151.940565 -86.50388 C -151.940565 -88.704487 -150.158934 -90.490034 -147.958326 -90.490034 L 147.956874 -90.490034 C 150.157482 -90.490034 151.943028 -88.704487 151.943028 -86.50388 L 151.943028 -77.466507 C 151.943028 -75.2659 150.157482 -73.480353 147.956874 -73.480353 Z M 147.956874 -73.480353 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.657404)"/> | |
| 493 | +</g> | |
| 494 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 495 | +<use xlink:href="#glyph-0-30" x="37.806804" y="98.285269"/> | |
| 496 | +</g> | |
| 497 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 498 | +<use xlink:href="#glyph-0-1" x="42.06972" y="98.285269"/> | |
| 499 | +</g> | |
| 500 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 501 | +<use xlink:href="#glyph-0-2" x="46.887572" y="98.285269"/> | |
| 502 | +</g> | |
| 503 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 504 | +<use xlink:href="#glyph-0-3" x="51.343875" y="98.285269"/> | |
| 505 | +<use xlink:href="#glyph-0-4" x="55.270466" y="98.285269"/> | |
| 506 | +<use xlink:href="#glyph-0-5" x="58.305797" y="98.285269"/> | |
| 507 | +<use xlink:href="#glyph-0-6" x="60.626437" y="98.285269"/> | |
| 508 | +<use xlink:href="#glyph-0-7" x="67.773338" y="98.285269"/> | |
| 509 | +<use xlink:href="#glyph-0-8" x="72.347354" y="98.285269"/> | |
| 510 | +</g> | |
| 511 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 512 | +<use xlink:href="#glyph-0-9" x="78.375975" y="98.285269"/> | |
| 513 | +</g> | |
| 514 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 515 | +<use xlink:href="#glyph-0-15" x="80.805921" y="98.285269"/> | |
| 516 | +</g> | |
| 517 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 518 | +<use xlink:href="#glyph-0-27" x="88.1378" y="98.285269"/> | |
| 519 | +</g> | |
| 520 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 521 | +<use xlink:href="#glyph-0-15" x="92.232554" y="98.285269"/> | |
| 522 | +</g> | |
| 523 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 524 | +<use xlink:href="#glyph-0-9" x="96.722489" y="98.285269"/> | |
| 525 | +</g> | |
| 526 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 527 | +<use xlink:href="#glyph-0-7" x="99.152435" y="98.285269"/> | |
| 528 | +<use xlink:href="#glyph-0-18" x="103.726452" y="98.285269"/> | |
| 529 | +<use xlink:href="#glyph-0-8" x="108.56112" y="98.285269"/> | |
| 530 | +</g> | |
| 531 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 532 | +<use xlink:href="#glyph-0-13" x="114.581333" y="98.285269"/> | |
| 533 | +<use xlink:href="#glyph-0-18" x="119.542122" y="98.285269"/> | |
| 534 | +</g> | |
| 535 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 536 | +<use xlink:href="#glyph-0-4" x="127.176694" y="98.285269"/> | |
| 537 | +</g> | |
| 538 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 539 | +<use xlink:href="#glyph-0-7" x="130.085903" y="98.285269"/> | |
| 540 | +<use xlink:href="#glyph-0-8" x="134.659919" y="98.285269"/> | |
| 541 | +<use xlink:href="#glyph-0-8" x="137.880228" y="98.285269"/> | |
| 542 | +</g> | |
| 543 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 544 | +<use xlink:href="#glyph-0-15" x="140.932375" y="98.285269"/> | |
| 545 | +<use xlink:href="#glyph-0-5" x="145.464351" y="98.285269"/> | |
| 546 | +<use xlink:href="#glyph-0-16" x="147.784992" y="98.285269"/> | |
| 547 | +</g> | |
| 548 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 549 | +<use xlink:href="#glyph-0-10" x="155.461604" y="98.285269"/> | |
| 550 | +</g> | |
| 551 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 552 | +<use xlink:href="#glyph-0-11" x="159.354563" y="98.285269"/> | |
| 553 | +<use xlink:href="#glyph-0-6" x="164.264904" y="98.285269"/> | |
| 554 | +<use xlink:href="#glyph-0-6" x="171.411804" y="98.285269"/> | |
| 555 | +<use xlink:href="#glyph-0-7" x="178.558705" y="98.285269"/> | |
| 556 | +</g> | |
| 557 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 558 | +<use xlink:href="#glyph-0-3" x="185.932625" y="98.285269"/> | |
| 559 | +</g> | |
| 560 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 561 | +<use xlink:href="#glyph-0-31" x="189.733094" y="98.285269"/> | |
| 562 | +<use xlink:href="#glyph-0-5" x="191.650145" y="98.285269"/> | |
| 563 | +<use xlink:href="#glyph-0-9" x="193.970786" y="98.285269"/> | |
| 564 | +</g> | |
| 565 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 566 | +<use xlink:href="#glyph-0-23" x="199.242676" y="98.285269"/> | |
| 567 | +<use xlink:href="#glyph-0-4" x="203.816692" y="98.285269"/> | |
| 568 | +<use xlink:href="#glyph-0-15" x="206.852023" y="98.285269"/> | |
| 569 | +<use xlink:href="#glyph-0-5" x="211.383999" y="98.285269"/> | |
| 570 | +<use xlink:href="#glyph-0-4" x="213.70464" y="98.285269"/> | |
| 571 | +</g> | |
| 572 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 573 | +<use xlink:href="#glyph-0-27" x="219.548282" y="98.285269"/> | |
| 574 | +</g> | |
| 575 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 576 | +<use xlink:href="#glyph-0-15" x="223.643035" y="98.285269"/> | |
| 577 | +<use xlink:href="#glyph-0-10" x="228.175011" y="98.285269"/> | |
| 578 | +</g> | |
| 579 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 580 | +<use xlink:href="#glyph-0-15" x="232.152051" y="98.285269"/> | |
| 581 | +<use xlink:href="#glyph-0-16" x="236.684027" y="98.285269"/> | |
| 582 | +<use xlink:href="#glyph-0-4" x="241.552327" y="98.285269"/> | |
| 583 | +</g> | |
| 584 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 585 | +<use xlink:href="#glyph-0-20" x="247.387562" y="98.285269"/> | |
| 586 | +</g> | |
| 587 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 588 | +<use xlink:href="#glyph-1-2" x="250.111792" y="98.285269"/> | |
| 589 | +</g> | |
| 590 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 591 | +<use xlink:href="#glyph-2-4" x="255.47276" y="99.618054"/> | |
| 592 | +</g> | |
| 593 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 594 | +<use xlink:href="#glyph-2-1" x="257.412222" y="99.618054"/> | |
| 595 | +<use xlink:href="#glyph-2-8" x="260.461548" y="99.618054"/> | |
| 596 | +<use xlink:href="#glyph-2-8" x="262.608408" y="99.618054"/> | |
| 597 | +</g> | |
| 598 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 599 | +<use xlink:href="#glyph-2-6" x="264.64316" y="99.618054"/> | |
| 600 | +<use xlink:href="#glyph-2-9" x="267.66446" y="99.618054"/> | |
| 601 | +<use xlink:href="#glyph-2-0" x="269.211544" y="99.618054"/> | |
| 602 | +</g> | |
| 603 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 604 | +<use xlink:href="#glyph-0-21" x="272.954592" y="98.285269"/> | |
| 605 | +</g> | |
| 606 | +<path fill-rule="nonzero" fill="rgb(96.998596%, 94.645691%, 87.11853%)" fill-opacity="1" d="M 304.34375 114.222656 L 9.140625 114.222656 C 6.945312 114.222656 5.167969 116.003906 5.167969 118.199219 L 5.167969 127.214844 C 5.167969 129.410156 6.945312 131.191406 9.140625 131.191406 L 304.34375 131.191406 C 306.539062 131.191406 308.320312 129.410156 308.320312 127.214844 L 308.320312 118.199219 C 308.320312 116.003906 306.539062 114.222656 304.34375 114.222656 Z M 304.34375 114.222656 "/> | |
| 607 | +<g clip-path="url(#clip-4)"> | |
| 608 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -100.807831 L -147.958326 -100.807831 C -150.158934 -100.807831 -151.940565 -102.593378 -151.940565 -104.793986 L -151.940565 -113.831358 C -151.940565 -116.031966 -150.158934 -117.817512 -147.958326 -117.817512 L 147.956874 -117.817512 C 150.157482 -117.817512 151.943028 -116.031966 151.943028 -113.831358 L 151.943028 -104.793986 C 151.943028 -102.593378 150.157482 -100.807831 147.956874 -100.807831 Z M 147.956874 -100.807831 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.657404)"/> | |
| 609 | +</g> | |
| 610 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 611 | +<use xlink:href="#glyph-5-0" x="58.298375" y="125.334023"/> | |
| 612 | +<use xlink:href="#glyph-5-1" x="62.712637" y="125.334023"/> | |
| 613 | +</g> | |
| 614 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 615 | +<use xlink:href="#glyph-5-2" x="67.530489" y="125.334023"/> | |
| 616 | +<use xlink:href="#glyph-5-3" x="72.491279" y="125.334023"/> | |
| 617 | +<use xlink:href="#glyph-5-3" x="77.485701" y="125.334023"/> | |
| 618 | +<use xlink:href="#glyph-5-4" x="82.480124" y="125.334023"/> | |
| 619 | +<use xlink:href="#glyph-5-5" x="84.834397" y="125.334023"/> | |
| 620 | +<use xlink:href="#glyph-5-4" x="88.07993" y="125.334023"/> | |
| 621 | +<use xlink:href="#glyph-5-6" x="90.434204" y="125.334023"/> | |
| 622 | +<use xlink:href="#glyph-5-7" x="95.344545" y="125.334023"/> | |
| 623 | +<use xlink:href="#glyph-5-7" x="100.162397" y="125.334023"/> | |
| 624 | +<use xlink:href="#glyph-5-8" x="104.980248" y="125.334023"/> | |
| 625 | +<use xlink:href="#glyph-5-9" x="109.638346" y="125.334023"/> | |
| 626 | +</g> | |
| 627 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 628 | +<use xlink:href="#glyph-5-10" x="115.809905" y="125.334023"/> | |
| 629 | +</g> | |
| 630 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 631 | +<use xlink:href="#glyph-1-2" x="120.627583" y="125.334023"/> | |
| 632 | +</g> | |
| 633 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 634 | +<use xlink:href="#glyph-4-0" x="138.180905" y="125.334023"/> | |
| 635 | +</g> | |
| 636 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 637 | +<use xlink:href="#glyph-1-0" x="155.483772" y="125.334023"/> | |
| 638 | +</g> | |
| 639 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 640 | +<use xlink:href="#glyph-6-0" x="162.042129" y="126.5042"/> | |
| 641 | +<use xlink:href="#glyph-6-1" x="165.254012" y="126.5042"/> | |
| 642 | +<use xlink:href="#glyph-6-2" x="168.359392" y="126.5042"/> | |
| 643 | +<use xlink:href="#glyph-6-3" x="171.543247" y="126.5042"/> | |
| 644 | +</g> | |
| 645 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 646 | +<use xlink:href="#glyph-3-0" x="179.116942" y="125.334023"/> | |
| 647 | +</g> | |
| 648 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 649 | +<use xlink:href="#glyph-1-1" x="191.348094" y="125.334023"/> | |
| 650 | +</g> | |
| 651 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 652 | +<use xlink:href="#glyph-6-4" x="198.929152" y="126.5042"/> | |
| 653 | +</g> | |
| 654 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 655 | +<use xlink:href="#glyph-6-5" x="200.991932" y="126.5042"/> | |
| 656 | +<use xlink:href="#glyph-6-4" x="204.265473" y="126.5042"/> | |
| 657 | +</g> | |
| 658 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 659 | +<use xlink:href="#glyph-6-6" x="206.395517" y="126.5042"/> | |
| 660 | +</g> | |
| 661 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 662 | +<use xlink:href="#glyph-6-7" x="209.411211" y="126.5042"/> | |
| 663 | +</g> | |
| 664 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 665 | +<use xlink:href="#glyph-6-1" x="211.064798" y="126.5042"/> | |
| 666 | +</g> | |
| 667 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 668 | +<use xlink:href="#glyph-4-1" x="219.747934" y="125.334023"/> | |
| 669 | +</g> | |
| 670 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 671 | +<use xlink:href="#glyph-1-2" x="231.979086" y="125.334023"/> | |
| 672 | +</g> | |
| 673 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 674 | +<use xlink:href="#glyph-6-4" x="237.340498" y="126.793502"/> | |
| 675 | +</g> | |
| 676 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 677 | +<use xlink:href="#glyph-6-1" x="239.403278" y="126.793502"/> | |
| 678 | +<use xlink:href="#glyph-6-8" x="242.508658" y="126.793502"/> | |
| 679 | +<use xlink:href="#glyph-6-8" x="244.750809" y="126.793502"/> | |
| 680 | +</g> | |
| 681 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 682 | +<use xlink:href="#glyph-6-6" x="246.847221" y="126.793502"/> | |
| 683 | +<use xlink:href="#glyph-6-9" x="249.907758" y="126.793502"/> | |
| 684 | +<use xlink:href="#glyph-6-0" x="251.477264" y="126.793502"/> | |
| 685 | +</g> | |
| 686 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -8.703383 L -0.000726254 -17.8269 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.657404)"/> | |
| 687 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549234 3.112233 C -2.083269 1.244458 -1.045616 0.363431 -0.000131443 -0.000726254 C -1.045616 -0.364884 -2.083269 -1.24591 -2.549234 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 31.839975)"/> | |
| 688 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -36.030861 L -0.000726254 -45.154378 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.657404)"/> | |
| 689 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550056 3.112233 C -2.084091 1.244458 -1.046438 0.363431 -0.000953237 -0.000726254 C -1.046438 -0.364884 -2.084091 -1.24591 -2.550056 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 59.102513)"/> | |
| 690 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -63.35834 L -0.000726254 -72.485772 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.657404)"/> | |
| 691 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550888 3.112233 C -2.084923 1.244458 -1.04727 0.363431 -0.00178503 -0.000726254 C -1.04727 -0.364884 -2.084923 -1.24591 -2.550888 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 86.365062)"/> | |
| 692 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -90.689733 L -0.000726254 -99.81325 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.657404)"/> | |
| 693 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.55172 3.112233 C -2.085755 1.244458 -1.044186 0.363431 0.00129885 -0.000726254 C -1.044186 -0.364884 -2.085755 -1.24591 -2.55172 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 113.627611)"/> | |
| 694 | +</svg> | |
added
dist/assets/fig/9042734ce17f6b75.svg
+267 −0
@@ -0,0 +1,267 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="347.366pt" height="116.04pt" viewBox="0 0 347.366 116.04"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 4.875 -5.796875 L 3.484375 -5.796875 L 2.4375 -1.0625 L 1.34375 -5.796875 L -0.109375 -5.796875 L 1.5625 0 L 3.265625 0 Z M 4.875 -5.796875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.59375 0 L 5.046875 0 L 3.296875 -5.796875 L 1.640625 -5.796875 L -0.109375 0 L 1.3125 0 L 1.609375 -1.25 L 3.296875 -1.25 Z M 1.84375 -2.234375 L 2.453125 -4.796875 L 3.0625 -2.234375 Z M 1.84375 -2.234375 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.921875 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 4.03125 0 L 4.171875 -1.09375 L 1.921875 -1.09375 Z M 1.921875 -5.796875 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 4.09375 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 4.09375 0 L 4.09375 -0.984375 L 1.921875 -0.984375 L 1.921875 -2.46875 L 3.6875 -2.46875 L 3.6875 -3.421875 L 1.921875 -3.421875 L 1.921875 -4.8125 L 3.953125 -4.8125 Z M 4.09375 -5.796875 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.984375 -5.796875 L 3.609375 -5.796875 L 3.609375 -1.984375 C 3.609375 -1.234375 3.34375 -0.875 2.71875 -0.875 C 2.09375 -0.875 1.828125 -1.234375 1.828125 -1.984375 L 1.828125 -5.796875 L 0.453125 -5.796875 L 0.453125 -1.921875 C 0.453125 -0.703125 1.203125 0.140625 2.71875 0.140625 C 4.234375 0.140625 4.984375 -0.75 4.984375 -1.921875 Z M 4.984375 -5.796875 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 3.640625 0 L 5.1875 0 L 3.71875 -2.46875 C 4.46875 -2.8125 4.828125 -3.265625 4.828125 -4.03125 C 4.828125 -5.234375 4.015625 -5.796875 2.4375 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 1.921875 0 L 1.921875 -2.21875 L 2.453125 -2.21875 Z M 1.921875 -4.828125 L 2.40625 -4.828125 C 3.078125 -4.828125 3.40625 -4.59375 3.40625 -4.03125 C 3.40625 -3.421875 3.09375 -3.15625 2.484375 -3.15625 L 1.921875 -3.15625 Z M 1.921875 -4.828125 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 5.859375 -5.796875 L 4.125 -5.796875 L 3.3125 -1.859375 L 2.4375 -5.796875 L 0.703125 -5.796875 L 0.28125 0 L 1.609375 0 L 1.71875 -2.25 C 1.75 -3.0625 1.75 -3.78125 1.6875 -4.625 L 2.640625 -0.609375 L 3.9375 -0.609375 L 4.828125 -4.625 C 4.796875 -3.90625 4.8125 -3.078125 4.84375 -2.265625 L 4.953125 0 L 6.296875 0 Z M 5.859375 -5.796875 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.90625 -5.9375 C 1.40625 -5.9375 0.28125 -4.84375 0.28125 -2.90625 C 0.28125 -0.921875 1.34375 0.140625 2.921875 0.140625 C 3.734375 0.140625 4.359375 -0.21875 4.734375 -0.609375 L 4.125 -1.390625 C 3.78125 -1.125 3.453125 -0.921875 3 -0.921875 C 2.21875 -0.921875 1.71875 -1.515625 1.71875 -2.90625 C 1.71875 -4.328125 2.234375 -4.921875 2.96875 -4.921875 C 3.375 -4.921875 3.6875 -4.765625 4.015625 -4.515625 L 4.671875 -5.296875 C 4.1875 -5.703125 3.65625 -5.9375 2.90625 -5.9375 Z M 2.90625 -5.9375 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.65625 0 L 5.03125 0 L 5.03125 -5.796875 L 3.65625 -5.796875 L 3.65625 -3.546875 L 1.921875 -3.546875 L 1.921875 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 1.921875 0 L 1.921875 -2.484375 L 3.65625 -2.484375 Z M 3.65625 0 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 5 -5.796875 L 3.78125 -5.796875 L 3.78125 -3.453125 C 3.78125 -2.53125 3.890625 -1.765625 3.96875 -1.296875 L 2.25 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 1.765625 0 L 1.765625 -2.125 C 1.765625 -3.1875 1.65625 -3.96875 1.59375 -4.484375 L 3.265625 0 L 5 0 Z M 5 -5.796875 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.15625 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 2.28125 0 C 3.765625 0 5.171875 -0.59375 5.171875 -2.921875 C 5.171875 -5.3125 3.703125 -5.796875 2.15625 -5.796875 Z M 2.34375 -4.796875 C 3.15625 -4.796875 3.75 -4.484375 3.75 -2.921875 C 3.75 -1.390625 3.1875 -1 2.359375 -1 L 1.921875 -1 L 1.921875 -4.796875 Z M 2.34375 -4.796875 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-1-0"> | |
| 39 | +<path d="M 4.78125 -5.765625 L 3.984375 -5.765625 L 3.984375 -1.90625 C 3.984375 -1.015625 3.59375 -0.5625 2.765625 -0.5625 C 1.9375 -0.5625 1.546875 -1.015625 1.546875 -1.90625 L 1.546875 -5.765625 L 0.75 -5.765625 L 0.75 -1.84375 C 0.75 -0.703125 1.453125 0.09375 2.765625 0.09375 C 4.046875 0.09375 4.78125 -0.703125 4.78125 -1.84375 Z M 4.78125 -5.765625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-1-1"> | |
| 42 | +<path d="M 2.71875 -0.703125 C 2.515625 -0.59375 2.328125 -0.53125 2.140625 -0.53125 C 1.75 -0.53125 1.609375 -0.75 1.609375 -1.1875 L 1.609375 -3.8125 L 2.578125 -3.8125 L 2.65625 -4.40625 L 1.609375 -4.40625 L 1.609375 -5.484375 L 0.84375 -5.40625 L 0.84375 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.84375 -3.8125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.28125 0.09375 2.03125 0.09375 C 2.40625 0.09375 2.71875 0 3.015625 -0.203125 Z M 2.71875 -0.703125 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-1-2"> | |
| 45 | +<path d="M 1.140625 -6.515625 C 0.828125 -6.515625 0.609375 -6.296875 0.609375 -6 C 0.609375 -5.703125 0.828125 -5.46875 1.140625 -5.46875 C 1.46875 -5.46875 1.6875 -5.703125 1.6875 -6 C 1.6875 -6.296875 1.46875 -6.515625 1.140625 -6.515625 Z M 1.53125 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 Z M 1.53125 -4.40625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-1-3"> | |
| 48 | +<path d="M 1.640625 0.09375 C 1.859375 0.09375 2.078125 0.046875 2.25 -0.046875 L 2.046875 -0.578125 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.484375 -0.65625 1.484375 -0.890625 L 1.484375 -6.265625 L 0.71875 -6.171875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-1-4"> | |
| 51 | +<path d="M 3.328125 -6.046875 L 3 -6.703125 L 1.328125 -5.75 L 1.5625 -5.328125 Z M 4.125 -2.328125 C 4.125 -3.671875 3.5 -4.5 2.3125 -4.5 C 1.171875 -4.5 0.46875 -3.53125 0.46875 -2.15625 C 0.46875 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.03125 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.109375 -2.046875 4.125 -2.1875 4.125 -2.328125 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.484375 1.734375 -3.890625 2.328125 -3.890625 C 3.015625 -3.890625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-1-5"> | |
| 54 | +<path d="M 3.390625 -6.265625 L 3.390625 -3.96875 C 3.09375 -4.265625 2.71875 -4.5 2.203125 -4.5 C 1.125 -4.5 0.46875 -3.53125 0.46875 -2.1875 C 0.46875 -0.8125 1.0625 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.171875 3.40625 -0.609375 L 3.484375 0 L 4.15625 0 L 4.15625 -6.171875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.296875 -1.03125 1.296875 -2.203125 C 1.296875 -3.34375 1.71875 -3.890625 2.375 -3.890625 C 2.8125 -3.890625 3.125 -3.671875 3.390625 -3.3125 L 3.390625 -1.15625 C 3.09375 -0.75 2.796875 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-1-6"> | |
| 57 | +<path d="M 4.03125 -4.40625 L 3.265625 -4.40625 L 3.265625 -1.265625 C 3 -0.8125 2.640625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.484375 -0.734375 1.484375 -1.328125 L 1.484375 -4.40625 L 0.71875 -4.40625 L 0.71875 -1.25 C 0.71875 -0.390625 1.171875 0.09375 1.953125 0.09375 C 2.578125 0.09375 2.984375 -0.15625 3.3125 -0.6875 L 3.375 0 L 4.03125 0 Z M 4.03125 -4.40625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-7"> | |
| 60 | +<path d="M 2.78125 -4.5 C 2.25 -4.5 1.84375 -4.265625 1.53125 -3.859375 L 1.53125 -6.265625 L 0.765625 -6.171875 L 0.765625 0 L 1.453125 0 L 1.515625 -0.484375 C 1.828125 -0.109375 2.203125 0.09375 2.6875 0.09375 C 3.765625 0.09375 4.421875 -0.828125 4.421875 -2.203125 C 4.421875 -3.671875 3.78125 -4.5 2.78125 -4.5 Z M 2.515625 -0.515625 C 2.109375 -0.515625 1.765625 -0.75 1.53125 -1.109375 L 1.53125 -3.203125 C 1.765625 -3.5625 2.078125 -3.890625 2.5625 -3.890625 C 3.1875 -3.890625 3.59375 -3.453125 3.59375 -2.203125 C 3.59375 -1 3.15625 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-8"> | |
| 63 | +<path d="M 4.125 -2.328125 C 4.125 -3.671875 3.5 -4.5 2.3125 -4.5 C 1.171875 -4.5 0.46875 -3.53125 0.46875 -2.15625 C 0.46875 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.03125 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.109375 -2.046875 4.125 -2.1875 4.125 -2.328125 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.484375 1.734375 -3.890625 2.328125 -3.890625 C 3.015625 -3.890625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-9"> | |
| 66 | +<path d="M 2.84375 -4.5 C 2.265625 -4.5 1.796875 -4.203125 1.5 -3.75 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -3.125 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.078125 -3.90625 3.359375 -3.71875 3.359375 -3.046875 L 3.359375 0 L 4.125 0 L 4.125 -3.15625 C 4.125 -4 3.65625 -4.5 2.84375 -4.5 Z M 2.84375 -4.5 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-10"> | |
| 69 | +<path d="M 3.90625 0 L 4.84375 0 L 3.296875 -2.578125 C 4.125 -2.828125 4.546875 -3.3125 4.546875 -4.125 C 4.546875 -5.203125 3.78125 -5.765625 2.34375 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 1.625 0 L 1.625 -2.4375 L 2.53125 -2.4375 Z M 1.625 -3.046875 L 1.625 -5.140625 L 2.34375 -5.140625 C 3.28125 -5.140625 3.6875 -4.84375 3.6875 -4.125 C 3.6875 -3.359375 3.234375 -3.046875 2.4375 -3.046875 Z M 1.625 -3.046875 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-11"> | |
| 72 | +<path d="M 3.71875 -1.03125 L 3.71875 -3.046875 C 3.71875 -3.96875 3.234375 -4.5 2.171875 -4.5 C 1.6875 -4.5 1.203125 -4.40625 0.65625 -4.203125 L 0.84375 -3.640625 C 1.296875 -3.796875 1.703125 -3.875 2.03125 -3.875 C 2.640625 -3.875 2.953125 -3.640625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.734375 -0.09375 3.046875 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.90625 0.09375 L 4.09375 -0.4375 C 3.859375 -0.515625 3.71875 -0.640625 3.71875 -1.03125 Z M 1.921875 -0.46875 C 1.40625 -0.46875 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.15625 C 2.703125 -0.703125 2.359375 -0.46875 1.921875 -0.46875 Z M 1.921875 -0.46875 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-12"> | |
| 75 | +<path d="M 2.6875 -4.5 C 2.140625 -4.5 1.734375 -4.171875 1.5 -3.515625 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -2.515625 C 1.71875 -3.359375 2.046875 -3.75 2.59375 -3.75 C 2.75 -3.75 2.84375 -3.734375 2.96875 -3.703125 L 3.125 -4.453125 C 2.984375 -4.484375 2.828125 -4.5 2.6875 -4.5 Z M 2.6875 -4.5 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-13"> | |
| 78 | +<path d="M 4.03125 -4.40625 L 3.21875 -4.40625 L 2.078125 -0.6875 L 0.921875 -4.40625 L 0.078125 -4.40625 L 1.609375 0 L 2.53125 0 Z M 4.03125 -4.40625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-14"> | |
| 81 | +<path d="M 2.046875 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 2.21875 0 C 3.453125 0 4.921875 -0.5625 4.921875 -2.90625 C 4.921875 -5.296875 3.515625 -5.765625 2.046875 -5.765625 Z M 2.21875 -5.125 C 3.140625 -5.125 4.078125 -4.859375 4.078125 -2.90625 C 4.078125 -1.015625 3.171875 -0.625 2.28125 -0.625 L 1.625 -0.625 L 1.625 -5.125 Z M 2.21875 -5.125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-15"> | |
| 84 | +<path d="M 1.984375 -4.5 C 1.078125 -4.5 0.40625 -4 0.40625 -3.296875 C 0.40625 -2.671875 0.78125 -2.265625 1.734375 -2.015625 C 2.578125 -1.78125 2.796875 -1.625 2.796875 -1.1875 C 2.796875 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.375 -0.515625 0.96875 -0.671875 0.625 -0.9375 L 0.203125 -0.46875 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.765625 0.09375 3.609375 -0.3125 3.609375 -1.234375 C 3.609375 -2 3.078125 -2.375 2.140625 -2.609375 C 1.4375 -2.796875 1.203125 -2.953125 1.203125 -3.3125 C 1.203125 -3.671875 1.515625 -3.890625 2.015625 -3.890625 C 2.421875 -3.890625 2.765625 -3.765625 3.15625 -3.515625 L 3.484375 -4 C 3.0625 -4.328125 2.609375 -4.5 1.984375 -4.5 Z M 1.984375 -4.5 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-16"> | |
| 87 | +<path d="M 1 -6.296875 C 0.703125 -6.296875 0.453125 -6.0625 0.453125 -5.765625 C 0.453125 -5.59375 0.53125 -5.453125 0.671875 -5.34375 L 0.328125 -4.09375 L 0.84375 -4.09375 L 1.390625 -5.28125 C 1.5 -5.515625 1.53125 -5.640625 1.53125 -5.765625 C 1.53125 -6.0625 1.296875 -6.296875 1 -6.296875 Z M 1 -6.296875 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-17"> | |
| 90 | +<path d="M 2.40625 -4.5 C 1.203125 -4.5 0.46875 -3.5625 0.46875 -2.171875 C 0.46875 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.90625 0.09375 3.359375 -0.0625 3.75 -0.390625 L 3.390625 -0.890625 C 3.0625 -0.671875 2.796875 -0.546875 2.4375 -0.546875 C 1.734375 -0.546875 1.296875 -1.03125 1.296875 -2.1875 C 1.296875 -3.328125 1.734375 -3.875 2.4375 -3.875 C 2.796875 -3.875 3.078125 -3.765625 3.375 -3.546875 L 3.75 -4.03125 C 3.328125 -4.375 2.921875 -4.5 2.40625 -4.5 Z M 2.40625 -4.5 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-18"> | |
| 93 | +<path d="M 3.5 -4.40625 L 3.4375 -3.90625 C 3.140625 -4.25 2.75 -4.5 2.203125 -4.5 C 1.125 -4.5 0.46875 -3.53125 0.46875 -2.1875 C 0.46875 -0.8125 1.0625 0.09375 2.140625 0.09375 C 2.671875 0.09375 3.109375 -0.15625 3.390625 -0.578125 L 3.390625 1.6875 L 4.15625 1.78125 L 4.15625 -4.40625 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.296875 -1.03125 1.296875 -2.203125 C 1.296875 -3.34375 1.71875 -3.890625 2.375 -3.890625 C 2.8125 -3.890625 3.125 -3.671875 3.390625 -3.3125 L 3.390625 -1.15625 C 3.09375 -0.75 2.796875 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-19"> | |
| 96 | +<path d="M 2.453125 -4.5 C 1.203125 -4.5 0.46875 -3.5625 0.46875 -2.203125 C 0.46875 -0.796875 1.1875 0.09375 2.4375 0.09375 C 3.6875 0.09375 4.40625 -0.84375 4.40625 -2.203125 C 4.40625 -3.609375 3.703125 -4.5 2.453125 -4.5 Z M 2.453125 -3.890625 C 3.171875 -3.890625 3.578125 -3.359375 3.578125 -2.203125 C 3.578125 -1.046875 3.171875 -0.515625 2.4375 -0.515625 C 1.703125 -0.515625 1.296875 -1.046875 1.296875 -2.203125 C 1.296875 -3.359375 1.71875 -3.890625 2.453125 -3.890625 Z M 2.453125 -3.890625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-20"> | |
| 99 | +<path d="M 2.34375 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 1.625 0 L 1.625 -2.109375 L 2.359375 -2.109375 C 3.625 -2.109375 4.59375 -2.65625 4.59375 -3.984375 C 4.59375 -5.1875 3.734375 -5.765625 2.34375 -5.765625 Z M 2.328125 -2.734375 L 1.625 -2.734375 L 1.625 -5.140625 L 2.34375 -5.140625 C 3.1875 -5.140625 3.75 -4.828125 3.75 -3.96875 C 3.75 -3 3.171875 -2.734375 2.328125 -2.734375 Z M 2.328125 -2.734375 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-21"> | |
| 102 | +<path d="M 2.84375 -4.5 C 2.296875 -4.5 1.859375 -4.234375 1.53125 -3.796875 L 1.53125 -6.25 L 0.765625 -6.171875 L 0.765625 0 L 1.53125 0 L 1.53125 -3.140625 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.0625 -3.90625 3.359375 -3.71875 3.359375 -3.046875 L 3.359375 0 L 4.125 0 L 4.125 -3.15625 C 4.125 -3.984375 3.640625 -4.5 2.84375 -4.5 Z M 2.84375 -4.5 "/> | |
| 103 | +</g> | |
| 104 | +</g> | |
| 105 | +<clipPath id="clip-0"> | |
| 106 | +<path clip-rule="nonzero" d="M 1.109375 0 L 108 0 L 108 34 L 1.109375 34 Z M 1.109375 0 "/> | |
| 107 | +</clipPath> | |
| 108 | +<clipPath id="clip-1"> | |
| 109 | +<path clip-rule="nonzero" d="M 238 0 L 345.625 0 L 345.625 34 L 238 34 Z M 238 0 "/> | |
| 110 | +</clipPath> | |
| 111 | +<clipPath id="clip-2"> | |
| 112 | +<path clip-rule="nonzero" d="M 1.109375 81 L 108 81 L 108 115.085938 L 1.109375 115.085938 Z M 1.109375 81 "/> | |
| 113 | +</clipPath> | |
| 114 | +<clipPath id="clip-3"> | |
| 115 | +<path clip-rule="nonzero" d="M 238 81 L 345.625 81 L 345.625 115.085938 L 238 115.085938 Z M 238 81 "/> | |
| 116 | +</clipPath> | |
| 117 | +</defs> | |
| 118 | +<path fill-rule="nonzero" fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 64.335058 14.17194 L -64.333969 14.17194 C -66.535628 14.17194 -68.319799 12.387769 -68.319799 10.190049 L -68.319799 -10.188094 C -68.319799 -12.389752 -66.535628 -14.173923 -64.333969 -14.173923 L 64.335058 -14.173923 C 66.536716 -14.173923 68.320887 -12.389752 68.320887 -10.188094 L 68.320887 10.190049 C 68.320887 12.387769 66.536716 14.17194 64.335058 14.17194 Z M 64.335058 14.17194 " transform="matrix(0.991795, 0, 0, -0.991795, 173.368601, 57.543938)"/> | |
| 119 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 120 | +<use xlink:href="#glyph-0-0" x="133.940788" y="60.507422"/> | |
| 121 | +</g> | |
| 122 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 123 | +<use xlink:href="#glyph-0-1" x="138.55509" y="60.507422"/> | |
| 124 | +<use xlink:href="#glyph-0-2" x="143.487044" y="60.507422"/> | |
| 125 | +<use xlink:href="#glyph-0-3" x="147.775336" y="60.507422"/> | |
| 126 | +<use xlink:href="#glyph-0-4" x="152.172299" y="60.507422"/> | |
| 127 | +<use xlink:href="#glyph-0-5" x="157.614166" y="60.507422"/> | |
| 128 | +</g> | |
| 129 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 130 | +<use xlink:href="#glyph-0-6" x="165.555448" y="60.507422"/> | |
| 131 | +<use xlink:href="#glyph-0-1" x="172.125814" y="60.507422"/> | |
| 132 | +<use xlink:href="#glyph-0-5" x="177.057768" y="60.507422"/> | |
| 133 | +</g> | |
| 134 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 135 | +<use xlink:href="#glyph-0-7" x="182.106751" y="60.507422"/> | |
| 136 | +<use xlink:href="#glyph-0-8" x="186.913316" y="60.507422"/> | |
| 137 | +<use xlink:href="#glyph-0-1" x="192.480573" y="60.507422"/> | |
| 138 | +<use xlink:href="#glyph-0-9" x="197.412527" y="60.507422"/> | |
| 139 | +<use xlink:href="#glyph-0-10" x="202.954705" y="60.507422"/> | |
| 140 | +<use xlink:href="#glyph-0-3" x="208.396573" y="60.507422"/> | |
| 141 | +</g> | |
| 142 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 96.476562 5.136719 L 12.175781 5.136719 C 8.902344 5.136719 6.246094 7.792969 6.246094 11.066406 L 6.246094 21.699219 C 6.246094 24.972656 8.902344 27.628906 12.175781 27.628906 L 96.476562 27.628906 C 99.75 27.628906 102.402344 24.972656 102.402344 21.699219 L 102.402344 11.066406 C 102.402344 7.792969 99.75 5.136719 96.476562 5.136719 Z M 96.476562 5.136719 "/> | |
| 143 | +<g clip-path="url(#clip-0)"> | |
| 144 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -77.528167 52.840785 L -162.526369 52.840785 C -165.826888 52.840785 -168.505113 50.16256 -168.505113 46.862041 L -168.505113 36.141263 C -168.505113 32.840745 -165.826888 30.16252 -162.526369 30.16252 L -77.528167 30.16252 C -74.227648 30.16252 -71.553362 32.840745 -71.553362 36.141263 L -71.553362 46.862041 C -71.553362 50.16256 -74.227648 52.840785 -77.528167 52.840785 Z M -77.528167 52.840785 " transform="matrix(0.991795, 0, 0, -0.991795, 173.368601, 57.543938)"/> | |
| 145 | +</g> | |
| 146 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 147 | +<use xlink:href="#glyph-1-0" x="26.84281" y="19.624645"/> | |
| 148 | +<use xlink:href="#glyph-1-1" x="32.37663" y="19.624645"/> | |
| 149 | +<use xlink:href="#glyph-1-2" x="35.394317" y="19.624645"/> | |
| 150 | +<use xlink:href="#glyph-1-3" x="37.701468" y="19.624645"/> | |
| 151 | +<use xlink:href="#glyph-1-2" x="40.159086" y="19.624645"/> | |
| 152 | +<use xlink:href="#glyph-1-1" x="42.466237" y="19.624645"/> | |
| 153 | +</g> | |
| 154 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 155 | +<use xlink:href="#glyph-1-4" x="45.358535" y="19.624645"/> | |
| 156 | +</g> | |
| 157 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 158 | +<use xlink:href="#glyph-1-5" x="52.689592" y="19.624645"/> | |
| 159 | +<use xlink:href="#glyph-1-6" x="57.621546" y="19.624645"/> | |
| 160 | +</g> | |
| 161 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 162 | +<use xlink:href="#glyph-1-7" x="65.220099" y="19.624645"/> | |
| 163 | +<use xlink:href="#glyph-1-2" x="70.118616" y="19.624645"/> | |
| 164 | +<use xlink:href="#glyph-1-8" x="72.425767" y="19.624645"/> | |
| 165 | +<use xlink:href="#glyph-1-9" x="76.973196" y="19.624645"/> | |
| 166 | +</g> | |
| 167 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 334.5625 5.136719 L 250.261719 5.136719 C 246.988281 5.136719 244.332031 7.792969 244.332031 11.066406 L 244.332031 21.699219 C 244.332031 24.972656 246.988281 27.628906 250.261719 27.628906 L 334.5625 27.628906 C 337.835938 27.628906 340.492188 24.972656 340.492188 21.699219 L 340.492188 11.066406 C 340.492188 7.792969 337.835938 5.136719 334.5625 5.136719 Z M 334.5625 5.136719 "/> | |
| 168 | +<g clip-path="url(#clip-1)"> | |
| 169 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 162.527458 52.840785 L 77.529255 52.840785 C 74.228737 52.840785 71.550511 50.16256 71.550511 46.862041 L 71.550511 36.141263 C 71.550511 32.840745 74.228737 30.16252 77.529255 30.16252 L 162.527458 30.16252 C 165.827976 30.16252 168.506201 32.840745 168.506201 36.141263 L 168.506201 46.862041 C 168.506201 50.16256 165.827976 52.840785 162.527458 52.840785 Z M 162.527458 52.840785 " transform="matrix(0.991795, 0, 0, -0.991795, 173.368601, 57.543938)"/> | |
| 170 | +</g> | |
| 171 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 172 | +<use xlink:href="#glyph-1-10" x="264.519509" y="19.624645"/> | |
| 173 | +</g> | |
| 174 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 175 | +<use xlink:href="#glyph-1-11" x="269.535055" y="19.624645"/> | |
| 176 | +<use xlink:href="#glyph-1-12" x="274.040688" y="19.624645"/> | |
| 177 | +</g> | |
| 178 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 179 | +<use xlink:href="#glyph-1-8" x="277.075093" y="19.624645"/> | |
| 180 | +<use xlink:href="#glyph-1-1" x="281.622522" y="19.624645"/> | |
| 181 | +</g> | |
| 182 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 183 | +<use xlink:href="#glyph-1-4" x="284.51482" y="19.624645"/> | |
| 184 | +</g> | |
| 185 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 186 | +<use xlink:href="#glyph-1-12" x="291.845877" y="19.624645"/> | |
| 187 | +</g> | |
| 188 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 189 | +<use xlink:href="#glyph-1-8" x="294.880283" y="19.624645"/> | |
| 190 | +<use xlink:href="#glyph-1-3" x="299.427711" y="19.624645"/> | |
| 191 | +</g> | |
| 192 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 193 | +<use xlink:href="#glyph-1-11" x="301.843533" y="19.624645"/> | |
| 194 | +<use xlink:href="#glyph-1-1" x="306.349165" y="19.624645"/> | |
| 195 | +<use xlink:href="#glyph-1-2" x="309.366852" y="19.624645"/> | |
| 196 | +<use xlink:href="#glyph-1-13" x="311.674004" y="19.624645"/> | |
| 197 | +</g> | |
| 198 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 199 | +<use xlink:href="#glyph-1-8" x="315.753315" y="19.624645"/> | |
| 200 | +</g> | |
| 201 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 96.476562 87.460938 L 12.175781 87.460938 C 8.902344 87.460938 6.246094 90.113281 6.246094 93.386719 L 6.246094 104.023438 C 6.246094 107.296875 8.902344 109.949219 12.175781 109.949219 L 96.476562 109.949219 C 99.75 109.949219 102.402344 107.296875 102.402344 104.023438 L 102.402344 93.386719 C 102.402344 90.113281 99.75 87.460938 96.476562 87.460938 Z M 96.476562 87.460938 "/> | |
| 202 | +<g clip-path="url(#clip-2)"> | |
| 203 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -77.528167 -30.164503 L -162.526369 -30.164503 C -165.826888 -30.164503 -168.505113 -32.838789 -168.505113 -36.139308 L -168.505113 -46.864024 C -168.505113 -50.164543 -165.826888 -52.83883 -162.526369 -52.83883 L -77.528167 -52.83883 C -74.227648 -52.83883 -71.553362 -50.164543 -71.553362 -46.864024 L -71.553362 -36.139308 C -71.553362 -32.838789 -74.227648 -30.164503 -77.528167 -30.164503 Z M -77.528167 -30.164503 " transform="matrix(0.991795, 0, 0, -0.991795, 173.368601, 57.543938)"/> | |
| 204 | +</g> | |
| 205 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 206 | +<use xlink:href="#glyph-1-14" x="19.066147" y="101.103569"/> | |
| 207 | +<use xlink:href="#glyph-1-4" x="24.4495" y="101.103569"/> | |
| 208 | +<use xlink:href="#glyph-1-15" x="28.996928" y="101.103569"/> | |
| 209 | +<use xlink:href="#glyph-1-2" x="32.900695" y="101.103569"/> | |
| 210 | +<use xlink:href="#glyph-1-12" x="35.207847" y="101.103569"/> | |
| 211 | +</g> | |
| 212 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 213 | +<use xlink:href="#glyph-1-5" x="41.193065" y="101.103569"/> | |
| 214 | +<use xlink:href="#glyph-1-16" x="46.125019" y="101.103569"/> | |
| 215 | +</g> | |
| 216 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 217 | +<use xlink:href="#glyph-1-11" x="47.905538" y="101.103569"/> | |
| 218 | +<use xlink:href="#glyph-1-17" x="52.411171" y="101.103569"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-1-18" x="56.2815" y="101.103569"/> | |
| 222 | +<use xlink:href="#glyph-1-6" x="61.213454" y="101.103569"/> | |
| 223 | +<use xlink:href="#glyph-1-2" x="66.02002" y="101.103569"/> | |
| 224 | +<use xlink:href="#glyph-1-15" x="68.327171" y="101.103569"/> | |
| 225 | +<use xlink:href="#glyph-1-2" x="72.230938" y="101.103569"/> | |
| 226 | +<use xlink:href="#glyph-1-1" x="74.538089" y="101.103569"/> | |
| 227 | +<use xlink:href="#glyph-1-2" x="77.555776" y="101.103569"/> | |
| 228 | +<use xlink:href="#glyph-1-19" x="79.862928" y="101.103569"/> | |
| 229 | +<use xlink:href="#glyph-1-9" x="84.744726" y="101.103569"/> | |
| 230 | +</g> | |
| 231 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 334.5625 87.460938 L 250.261719 87.460938 C 246.988281 87.460938 244.332031 90.113281 244.332031 93.386719 L 244.332031 104.023438 C 244.332031 107.296875 246.988281 109.949219 250.261719 109.949219 L 334.5625 109.949219 C 337.835938 109.949219 340.492188 107.296875 340.492188 104.023438 L 340.492188 93.386719 C 340.492188 90.113281 337.835938 87.460938 334.5625 87.460938 Z M 334.5625 87.460938 "/> | |
| 232 | +<g clip-path="url(#clip-3)"> | |
| 233 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 162.527458 -30.164503 L 77.529255 -30.164503 C 74.228737 -30.164503 71.550511 -32.838789 71.550511 -36.139308 L 71.550511 -46.864024 C 71.550511 -50.164543 74.228737 -52.83883 77.529255 -52.83883 L 162.527458 -52.83883 C 165.827976 -52.83883 168.506201 -50.164543 168.506201 -46.864024 L 168.506201 -36.139308 C 168.506201 -32.838789 165.827976 -30.164503 162.527458 -30.164503 Z M 162.527458 -30.164503 " transform="matrix(0.991795, 0, 0, -0.991795, 173.368601, 57.543938)"/> | |
| 234 | +</g> | |
| 235 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 236 | +<use xlink:href="#glyph-1-20" x="262.847343" y="101.945603"/> | |
| 237 | +</g> | |
| 238 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 239 | +<use xlink:href="#glyph-1-19" x="267.453286" y="101.945603"/> | |
| 240 | +<use xlink:href="#glyph-1-6" x="272.335084" y="101.945603"/> | |
| 241 | +<use xlink:href="#glyph-1-13" x="277.14165" y="101.945603"/> | |
| 242 | +</g> | |
| 243 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 244 | +<use xlink:href="#glyph-1-19" x="281.220961" y="101.945603"/> | |
| 245 | +<use xlink:href="#glyph-1-2" x="286.102759" y="101.945603"/> | |
| 246 | +<use xlink:href="#glyph-1-12" x="288.40991" y="101.945603"/> | |
| 247 | +</g> | |
| 248 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 249 | +<use xlink:href="#glyph-1-5" x="294.395129" y="101.945603"/> | |
| 250 | +<use xlink:href="#glyph-1-16" x="299.327083" y="101.945603"/> | |
| 251 | +</g> | |
| 252 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 253 | +<use xlink:href="#glyph-1-11" x="301.107602" y="101.945603"/> | |
| 254 | +<use xlink:href="#glyph-1-17" x="305.613234" y="101.945603"/> | |
| 255 | +<use xlink:href="#glyph-1-21" x="309.608953" y="101.945603"/> | |
| 256 | +<use xlink:href="#glyph-1-11" x="314.448955" y="101.945603"/> | |
| 257 | +<use xlink:href="#glyph-1-1" x="318.954588" y="101.945603"/> | |
| 258 | +</g> | |
| 259 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -86.665641 29.961653 L -42.313445 14.632752 " transform="matrix(0.991795, 0, 0, -0.991795, 173.368601, 57.543938)"/> | |
| 260 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551736 3.110225 C -2.086464 1.245735 -1.047855 0.362875 -0.00128225 -0.000486198 C -1.04732 -0.362052 -2.083857 -1.245415 -2.551514 -3.111492 " transform="matrix(0.937355, 0.324, 0.324, -0.937355, 131.774797, 43.160116)"/> | |
| 261 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 86.666729 29.961653 L 42.314533 14.632752 " transform="matrix(0.991795, 0, 0, -0.991795, 173.368601, 57.543938)"/> | |
| 262 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.54882 3.110561 C -2.084885 1.245771 -1.048349 0.362408 0.00141185 -0.000445028 C -1.045161 -0.363806 -2.08377 -1.246666 -2.549042 -3.111156 " transform="matrix(-0.937355, 0.324, 0.324, 0.937355, 214.962405, 43.160116)"/> | |
| 263 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -86.665641 -29.963636 L -42.313445 -14.634735 " transform="matrix(0.991795, 0, 0, -0.991795, 173.368601, 57.543938)"/> | |
| 264 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552162 3.109618 C -2.084505 1.243541 -1.046681 0.3639 -0.00193012 -0.00138814 C -1.047216 -0.361027 -2.085825 -1.243887 -2.552384 -3.112099 " transform="matrix(0.937355, -0.324, -0.324, -0.937355, 131.774797, 71.927761)"/> | |
| 265 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 86.666729 -29.963636 L 42.314533 -14.634735 " transform="matrix(0.991795, 0, 0, -0.991795, 173.368601, 57.543938)"/> | |
| 266 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.54969 3.113031 C -2.083131 1.244818 -1.044522 0.361958 0.000763985 0.00231936 C -1.04771 -0.364256 -2.085533 -1.243896 -2.549468 -3.108686 " transform="matrix(-0.937355, -0.324, -0.324, 0.937355, 214.962405, 71.927761)"/> | |
| 267 | +</svg> | |
added
dist/assets/fig/90bc38ba889691b4.svg
+546 −0
@@ -0,0 +1,546 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="355.344pt" height="100.487pt" viewBox="0 0 355.344 100.487"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.65625 0 L 5.203125 0 L 3.71875 -2.46875 C 4.484375 -2.8125 4.84375 -3.28125 4.84375 -4.046875 C 4.84375 -5.25 4.03125 -5.8125 2.453125 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 1.921875 0 L 1.921875 -2.21875 L 2.453125 -2.21875 Z M 1.921875 -4.84375 L 2.421875 -4.84375 C 3.09375 -4.84375 3.421875 -4.609375 3.421875 -4.046875 C 3.421875 -3.4375 3.109375 -3.171875 2.5 -3.171875 L 1.921875 -3.171875 Z M 1.921875 -4.84375 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.5 -6.015625 L 2.984375 -7 L 1.15625 -5.90625 L 1.515625 -5.21875 Z M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.671875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 2.09375 -4.59375 C 0.96875 -4.59375 0.265625 -4 0.265625 -3.234375 C 0.265625 -2.546875 0.703125 -2.09375 1.578125 -1.84375 C 2.390625 -1.625 2.53125 -1.53125 2.53125 -1.21875 C 2.53125 -0.953125 2.28125 -0.8125 1.875 -0.8125 C 1.4375 -0.8125 1.03125 -0.984375 0.703125 -1.234375 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.90625 0.140625 C 3.015625 0.140625 3.890625 -0.40625 3.890625 -1.328125 C 3.890625 -2.125 3.390625 -2.484375 2.515625 -2.75 C 1.71875 -2.984375 1.609375 -3.078125 1.609375 -3.3125 C 1.609375 -3.515625 1.78125 -3.65625 2.140625 -3.65625 C 2.53125 -3.65625 2.890625 -3.53125 3.234375 -3.3125 L 3.71875 -4.046875 C 3.3125 -4.390625 2.734375 -4.59375 2.09375 -4.59375 Z M 2.09375 -4.59375 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.046875 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.046875 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.453125 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 3.140625 -6.375 L 3.140625 -4.171875 C 2.890625 -4.4375 2.53125 -4.59375 2.09375 -4.59375 C 0.984375 -4.59375 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.5625 0.140625 2.96875 -0.15625 3.234375 -0.515625 L 3.296875 0 L 4.46875 0 L 4.46875 -6.21875 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.453125 -3.640625 C 2.75 -3.640625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.9375 -1 2.6875 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 3.125 -4.59375 C 2.5625 -4.59375 2.125 -4.359375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.25 C 4.359375 -4.109375 3.890625 -4.59375 3.125 -4.59375 Z M 3.125 -4.59375 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.875 -1.046875 C 2.6875 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.109375 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.453125 L 1.96875 -4.453125 L 1.96875 -5.578125 L 0.640625 -5.421875 L 0.640625 -4.453125 L 0.015625 -4.453125 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.3125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.296875 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.859375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.375 L 0.453125 -6.21875 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.921875 -5.953125 C 1.40625 -5.953125 0.28125 -4.859375 0.28125 -2.921875 C 0.28125 -0.9375 1.34375 0.140625 2.9375 0.140625 C 3.75 0.140625 4.375 -0.21875 4.75 -0.609375 L 4.140625 -1.390625 C 3.796875 -1.125 3.46875 -0.921875 3 -0.921875 C 2.234375 -0.921875 1.71875 -1.515625 1.71875 -2.921875 C 1.71875 -4.34375 2.234375 -4.9375 2.984375 -4.9375 C 3.375 -4.9375 3.703125 -4.796875 4.03125 -4.546875 L 4.6875 -5.3125 C 4.203125 -5.734375 3.671875 -5.953125 2.921875 -5.953125 Z M 2.921875 -5.953125 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.453125 -4.59375 C 1.09375 -4.59375 0.265625 -3.65625 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.625 -0.796875 4.625 -2.21875 C 4.625 -3.71875 3.8125 -4.59375 2.453125 -4.59375 Z M 2.453125 -3.625 C 2.984375 -3.625 3.25 -3.21875 3.25 -2.21875 C 3.25 -1.265625 2.984375 -0.828125 2.453125 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.234375 C 1.640625 -3.203125 1.90625 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 5.4375 -4.59375 C 4.859375 -4.59375 4.453125 -4.359375 4.109375 -3.890625 C 3.921875 -4.34375 3.546875 -4.59375 3.046875 -4.59375 C 2.515625 -4.59375 2.09375 -4.375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.03125 -3.421875 2.234375 -3.625 2.515625 -3.625 C 2.71875 -3.625 2.890625 -3.5 2.890625 -3.03125 L 2.890625 0 L 4.21875 0 L 4.21875 -3.046875 C 4.40625 -3.421875 4.609375 -3.625 4.90625 -3.625 C 5.09375 -3.625 5.265625 -3.5 5.265625 -3.03125 L 5.265625 0 L 6.59375 0 L 6.59375 -3.25 C 6.59375 -4.109375 6.125 -4.59375 5.4375 -4.59375 Z M 5.4375 -4.59375 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.921875 -4.578125 C 2.421875 -4.578125 1.984375 -4.21875 1.78125 -3.59375 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -2.234375 C 1.984375 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.015625 -3.265625 3.15625 -3.234375 L 3.375 -4.515625 C 3.21875 -4.5625 3.09375 -4.578125 2.921875 -4.578125 Z M 2.921875 -4.578125 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.453125 -4.59375 C 1.109375 -4.59375 0.265625 -3.609375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.09375 0.140625 3.5625 -0.0625 3.984375 -0.390625 L 3.390625 -1.203125 C 3.078125 -1 2.859375 -0.90625 2.546875 -0.90625 C 2.015625 -0.90625 1.65625 -1.203125 1.65625 -2.203125 C 1.65625 -3.203125 1.984375 -3.578125 2.5625 -3.578125 C 2.859375 -3.578125 3.125 -3.484375 3.40625 -3.265625 L 3.984375 -4.046875 C 3.546875 -4.40625 3.078125 -4.59375 2.453125 -4.59375 Z M 2.453125 -4.59375 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 4.046875 -1.296875 L 4.046875 -3.015625 C 4.046875 -4.046875 3.484375 -4.59375 2.203125 -4.59375 C 1.6875 -4.59375 1.078125 -4.484375 0.515625 -4.265625 L 0.828125 -3.390625 C 1.265625 -3.546875 1.703125 -3.640625 1.984375 -3.640625 C 2.53125 -3.640625 2.75 -3.46875 2.75 -2.9375 L 2.75 -2.75 L 2.296875 -2.75 C 0.953125 -2.75 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.1875 0.140625 2.671875 -0.03125 3 -0.515625 C 3.203125 -0.078125 3.546875 0.078125 4.0625 0.125 L 4.34375 -0.75 C 4.140625 -0.828125 4.046875 -0.953125 4.046875 -1.296875 Z M 2.03125 -0.8125 C 1.71875 -0.8125 1.53125 -1.015625 1.53125 -1.375 C 1.53125 -1.8125 1.8125 -2.015625 2.421875 -2.015625 L 2.75 -2.015625 L 2.75 -1.21875 C 2.578125 -0.96875 2.34375 -0.8125 2.03125 -0.8125 Z M 2.03125 -0.8125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 1.921875 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 1.921875 0 Z M 1.921875 -5.8125 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 4.25 -4.453125 L 2.921875 -4.453125 L 2.921875 -1.359375 C 2.734375 -1.03125 2.484375 -0.84375 2.203125 -0.84375 C 1.9375 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.453125 L 0.453125 -4.453125 L 0.453125 -1.265625 C 0.453125 -0.390625 0.859375 0.140625 1.6875 0.140625 C 2.296875 0.140625 2.734375 -0.09375 3.046875 -0.5625 L 3.109375 0 L 4.25 0 Z M 4.25 -4.453125 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 4.515625 -5.8125 L 0.078125 -5.8125 L 0.078125 -4.75 L 1.578125 -4.75 L 1.578125 0 L 2.953125 0 L 2.953125 -4.75 L 4.390625 -4.75 Z M 4.515625 -5.8125 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 1.921875 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 4.046875 0 L 4.1875 -1.09375 L 1.921875 -1.09375 Z M 1.921875 -5.8125 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 2.5625 -5.390625 C 2.75 -5.390625 3 -5.34375 3.25 -5.21875 L 3.609375 -6.078125 C 3.296875 -6.25 2.859375 -6.375 2.40625 -6.375 C 1.265625 -6.375 0.703125 -5.703125 0.703125 -4.84375 L 0.703125 -4.453125 L 0.03125 -4.453125 L 0.03125 -3.53125 L 0.703125 -3.53125 L 0.703125 0 L 2.015625 0 L 2.015625 -3.53125 L 2.921875 -3.53125 L 3.078125 -4.453125 L 2.015625 -4.453125 L 2.015625 -4.796875 C 2.015625 -5.21875 2.171875 -5.390625 2.5625 -5.390625 Z M 2.5625 -5.390625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-0"> | |
| 66 | +<path d="M 4.265625 -5.140625 L 3.546875 -5.140625 L 3.546875 -1.703125 C 3.546875 -0.90625 3.203125 -0.5 2.453125 -0.5 C 1.734375 -0.5 1.375 -0.90625 1.375 -1.703125 L 1.375 -5.140625 L 0.671875 -5.140625 L 0.671875 -1.640625 C 0.671875 -0.625 1.296875 0.09375 2.453125 0.09375 C 3.609375 0.09375 4.265625 -0.625 4.265625 -1.640625 Z M 4.265625 -5.140625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-1"> | |
| 69 | +<path d="M 2.53125 -4.015625 C 2.015625 -4.015625 1.609375 -3.75 1.328125 -3.34375 L 1.28125 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.78125 C 1.625 -3.203125 1.9375 -3.484375 2.375 -3.484375 C 2.75 -3.484375 2.984375 -3.3125 2.984375 -2.71875 L 2.984375 0 L 3.671875 0 L 3.671875 -2.8125 C 3.671875 -3.5625 3.25 -4.015625 2.53125 -4.015625 Z M 2.53125 -4.015625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-2"> | |
| 72 | +<path d="M 1.015625 -5.8125 C 0.734375 -5.8125 0.546875 -5.609375 0.546875 -5.34375 C 0.546875 -5.078125 0.734375 -4.875 1.015625 -4.875 C 1.3125 -4.875 1.5 -5.078125 1.5 -5.34375 C 1.5 -5.609375 1.3125 -5.8125 1.015625 -5.8125 Z M 1.375 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 Z M 1.375 -3.921875 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-3"> | |
| 75 | +<path d="M 2.046875 -5.03125 C 2.25 -5.03125 2.46875 -5 2.734375 -4.890625 L 2.9375 -5.390625 C 2.625 -5.515625 2.375 -5.59375 2 -5.59375 C 1.203125 -5.59375 0.78125 -5.125 0.78125 -4.46875 L 0.78125 -3.921875 L 0.078125 -3.921875 L 0.078125 -3.40625 L 0.78125 -3.40625 L 0.78125 0 L 1.453125 0 L 1.453125 -3.40625 L 2.34375 -3.40625 L 2.421875 -3.921875 L 1.453125 -3.921875 L 1.453125 -4.46875 C 1.453125 -4.859375 1.609375 -5.03125 2.046875 -5.03125 Z M 2.046875 -5.03125 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-4"> | |
| 78 | +<path d="M 3.3125 -0.921875 L 3.3125 -2.71875 C 3.3125 -3.53125 2.890625 -4.015625 1.9375 -4.015625 C 1.5 -4.015625 1.0625 -3.921875 0.578125 -3.75 L 0.75 -3.25 C 1.15625 -3.390625 1.515625 -3.453125 1.8125 -3.453125 C 2.359375 -3.453125 2.625 -3.25 2.625 -2.6875 L 2.625 -2.390625 L 2.03125 -2.390625 C 0.9375 -2.390625 0.296875 -1.9375 0.296875 -1.09375 C 0.296875 -0.390625 0.765625 0.09375 1.546875 0.09375 C 2.03125 0.09375 2.4375 -0.09375 2.71875 -0.5 C 2.84375 -0.109375 3.09375 0.046875 3.484375 0.09375 L 3.640625 -0.390625 C 3.4375 -0.46875 3.3125 -0.578125 3.3125 -0.921875 Z M 1.703125 -0.421875 C 1.265625 -0.421875 1.03125 -0.671875 1.03125 -1.140625 C 1.03125 -1.671875 1.390625 -1.9375 2.109375 -1.9375 L 2.625 -1.9375 L 2.625 -1.03125 C 2.40625 -0.625 2.109375 -0.421875 1.703125 -0.421875 Z M 1.703125 -0.421875 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-5"> | |
| 81 | +<path d="M 4.625 -4.015625 C 4.09375 -4.015625 3.734375 -3.734375 3.453125 -3.3125 C 3.3125 -3.75 2.953125 -4.015625 2.46875 -4.015625 C 1.953125 -4.015625 1.59375 -3.75 1.328125 -3.359375 L 1.28125 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.78125 C 1.625 -3.203125 1.875 -3.484375 2.296875 -3.484375 C 2.59375 -3.484375 2.84375 -3.3125 2.84375 -2.71875 L 2.84375 0 L 3.53125 0 L 3.53125 -2.78125 C 3.796875 -3.203125 4.03125 -3.484375 4.453125 -3.484375 C 4.75 -3.484375 5.015625 -3.3125 5.015625 -2.71875 L 5.015625 0 L 5.6875 0 L 5.6875 -2.8125 C 5.6875 -3.5625 5.265625 -4.015625 4.625 -4.015625 Z M 4.625 -4.015625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-6"> | |
| 84 | +<path d="M 1.453125 0.09375 C 1.65625 0.09375 1.859375 0.03125 2 -0.046875 L 1.828125 -0.515625 C 1.75 -0.484375 1.671875 -0.484375 1.578125 -0.484375 C 1.390625 -0.484375 1.328125 -0.578125 1.328125 -0.796875 L 1.328125 -5.59375 L 0.640625 -5.515625 L 0.640625 -0.78125 C 0.640625 -0.21875 0.96875 0.09375 1.453125 0.09375 Z M 1.453125 0.09375 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-7"> | |
| 87 | +<path d="M 3.671875 -2.078125 C 3.671875 -3.28125 3.109375 -4.015625 2.0625 -4.015625 C 1.046875 -4.015625 0.421875 -3.140625 0.421875 -1.921875 C 0.421875 -0.671875 1.0625 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.09375 3.53125 -0.40625 L 3.234375 -0.8125 C 2.890625 -0.578125 2.59375 -0.46875 2.21875 -0.46875 C 1.640625 -0.46875 1.21875 -0.8125 1.15625 -1.734375 L 3.65625 -1.734375 C 3.671875 -1.8125 3.671875 -1.9375 3.671875 -2.078125 Z M 3 -2.234375 L 1.15625 -2.234375 C 1.203125 -3.109375 1.546875 -3.46875 2.078125 -3.46875 C 2.6875 -3.46875 3 -3.046875 3 -2.28125 Z M 3 -2.234375 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-8"> | |
| 90 | +<path d="M 1.78125 -4.015625 C 0.96875 -4.015625 0.359375 -3.5625 0.359375 -2.9375 C 0.359375 -2.390625 0.6875 -2.015625 1.546875 -1.796875 C 2.296875 -1.59375 2.5 -1.453125 2.5 -1.0625 C 2.5 -0.6875 2.171875 -0.46875 1.65625 -0.46875 C 1.234375 -0.46875 0.859375 -0.609375 0.546875 -0.84375 L 0.1875 -0.421875 C 0.53125 -0.125 1 0.09375 1.671875 0.09375 C 2.46875 0.09375 3.21875 -0.28125 3.21875 -1.109375 C 3.21875 -1.78125 2.75 -2.109375 1.921875 -2.328125 C 1.28125 -2.484375 1.078125 -2.640625 1.078125 -2.953125 C 1.078125 -3.265625 1.34375 -3.46875 1.796875 -3.46875 C 2.15625 -3.46875 2.46875 -3.359375 2.8125 -3.140625 L 3.109375 -3.5625 C 2.734375 -3.859375 2.328125 -4.015625 1.78125 -4.015625 Z M 1.78125 -4.015625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-9"> | |
| 93 | +<path d="M 2.546875 -5.21875 C 1.375 -5.21875 0.40625 -4.3125 0.40625 -2.578125 C 0.40625 -0.84375 1.3125 0.09375 2.5625 0.09375 C 3.25 0.09375 3.734375 -0.1875 4.03125 -0.484375 L 3.671875 -0.9375 C 3.390625 -0.71875 3.0625 -0.5 2.578125 -0.5 C 1.78125 -0.5 1.15625 -1.09375 1.15625 -2.578125 C 1.15625 -4.125 1.8125 -4.640625 2.59375 -4.640625 C 2.9375 -4.640625 3.25 -4.53125 3.578125 -4.265625 L 3.96875 -4.71875 C 3.5625 -5.046875 3.1875 -5.21875 2.546875 -5.21875 Z M 2.546875 -5.21875 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-10"> | |
| 96 | +<path d="M 2.1875 -4.015625 C 1.0625 -4.015625 0.421875 -3.171875 0.421875 -1.953125 C 0.421875 -0.71875 1.0625 0.09375 2.171875 0.09375 C 3.28125 0.09375 3.921875 -0.75 3.921875 -1.96875 C 3.921875 -3.21875 3.296875 -4.015625 2.1875 -4.015625 Z M 2.1875 -3.46875 C 2.828125 -3.46875 3.1875 -2.984375 3.1875 -1.96875 C 3.1875 -0.9375 2.828125 -0.46875 2.171875 -0.46875 C 1.515625 -0.46875 1.15625 -0.9375 1.15625 -1.953125 C 1.15625 -2.984375 1.53125 -3.46875 2.1875 -3.46875 Z M 2.1875 -3.46875 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-11"> | |
| 99 | +<path d="M 3.03125 -5.59375 L 3.03125 -3.53125 C 2.765625 -3.8125 2.4375 -4.015625 1.96875 -4.015625 C 1 -4.015625 0.421875 -3.140625 0.421875 -1.9375 C 0.421875 -0.71875 0.953125 0.09375 1.90625 0.09375 C 2.390625 0.09375 2.78125 -0.15625 3.046875 -0.546875 L 3.109375 0 L 3.71875 0 L 3.71875 -5.515625 Z M 2.0625 -0.453125 C 1.484375 -0.453125 1.15625 -0.921875 1.15625 -1.953125 C 1.15625 -2.984375 1.53125 -3.46875 2.109375 -3.46875 C 2.5 -3.46875 2.78125 -3.265625 3.03125 -2.953125 L 3.03125 -1.03125 C 2.765625 -0.671875 2.5 -0.453125 2.0625 -0.453125 Z M 2.0625 -0.453125 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-12"> | |
| 102 | +<path d="M 2.09375 -5.140625 L 0.75 -5.140625 L 0.75 0 L 1.453125 0 L 1.453125 -1.890625 L 2.109375 -1.890625 C 3.234375 -1.890625 4.09375 -2.375 4.09375 -3.546875 C 4.09375 -4.625 3.328125 -5.140625 2.09375 -5.140625 Z M 2.078125 -2.4375 L 1.453125 -2.4375 L 1.453125 -4.578125 L 2.09375 -4.578125 C 2.84375 -4.578125 3.34375 -4.3125 3.34375 -3.546875 C 3.34375 -2.671875 2.828125 -2.4375 2.078125 -2.4375 Z M 2.078125 -2.4375 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-13"> | |
| 105 | +<path d="M 2.21875 -2.109375 L 3.421875 -3.921875 L 2.640625 -3.921875 L 1.8125 -2.484375 L 1 -3.921875 L 0.1875 -3.921875 L 1.40625 -2.078125 L 0.03125 0 L 0.8125 0 L 1.78125 -1.65625 L 2.75 0 L 3.578125 0 Z M 2.21875 -2.109375 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-14"> | |
| 108 | +<path d="M 3.015625 -2.71875 C 3.515625 -2.8125 3.96875 -3.203125 3.96875 -3.84375 C 3.96875 -4.734375 3.234375 -5.140625 1.953125 -5.140625 L 0.75 -5.140625 L 0.75 0 L 2.15625 0 C 3.359375 0 4.203125 -0.375 4.203125 -1.453125 C 4.203125 -2.328125 3.609375 -2.609375 3.015625 -2.71875 Z M 2.03125 -4.578125 C 2.796875 -4.578125 3.25 -4.421875 3.25 -3.78125 C 3.25 -3.234375 2.796875 -2.953125 2.234375 -2.953125 L 1.453125 -2.953125 L 1.453125 -4.578125 Z M 2.15625 -0.5625 L 1.453125 -0.5625 L 1.453125 -2.421875 L 2.296875 -2.421875 C 2.921875 -2.421875 3.453125 -2.1875 3.453125 -1.453125 C 3.453125 -0.71875 2.90625 -0.5625 2.15625 -0.5625 Z M 2.15625 -0.5625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-15"> | |
| 111 | +<path d="M 3.59375 -3.921875 L 2.921875 -3.921875 L 2.921875 -1.125 C 2.671875 -0.734375 2.359375 -0.453125 1.9375 -0.453125 C 1.5 -0.453125 1.328125 -0.640625 1.328125 -1.1875 L 1.328125 -3.921875 L 0.640625 -3.921875 L 0.640625 -1.109375 C 0.640625 -0.34375 1.046875 0.09375 1.734375 0.09375 C 2.296875 0.09375 2.65625 -0.140625 2.953125 -0.609375 L 3.015625 0 L 3.59375 0 Z M 3.59375 -3.921875 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-16"> | |
| 114 | +<path d="M 2.390625 -4.015625 C 1.921875 -4.015625 1.546875 -3.71875 1.34375 -3.125 L 1.28125 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.25 C 1.53125 -3 1.8125 -3.34375 2.3125 -3.34375 C 2.453125 -3.34375 2.53125 -3.328125 2.65625 -3.296875 L 2.78125 -3.96875 C 2.65625 -4 2.515625 -4.015625 2.390625 -4.015625 Z M 2.390625 -4.015625 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-17"> | |
| 117 | +<path d="M 1.8125 -5.140625 L 0.75 -5.140625 L 0.75 0 L 1.96875 0 C 3.078125 0 4.390625 -0.5 4.390625 -2.59375 C 4.390625 -4.71875 3.125 -5.140625 1.8125 -5.140625 Z M 1.96875 -4.5625 C 2.796875 -4.5625 3.640625 -4.328125 3.640625 -2.59375 C 3.640625 -0.90625 2.828125 -0.5625 2.03125 -0.5625 L 1.453125 -0.5625 L 1.453125 -4.5625 Z M 1.96875 -4.5625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-18"> | |
| 120 | +<path d="M 2.96875 -5.390625 L 2.671875 -5.96875 L 1.1875 -5.125 L 1.390625 -4.75 Z M 3.671875 -2.078125 C 3.671875 -3.28125 3.109375 -4.015625 2.0625 -4.015625 C 1.046875 -4.015625 0.421875 -3.140625 0.421875 -1.921875 C 0.421875 -0.671875 1.0625 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.09375 3.53125 -0.40625 L 3.234375 -0.8125 C 2.890625 -0.578125 2.59375 -0.46875 2.21875 -0.46875 C 1.640625 -0.46875 1.21875 -0.8125 1.15625 -1.734375 L 3.65625 -1.734375 C 3.671875 -1.8125 3.671875 -1.9375 3.671875 -2.078125 Z M 3 -2.234375 L 1.15625 -2.234375 C 1.203125 -3.109375 1.546875 -3.46875 2.078125 -3.46875 C 2.6875 -3.46875 3 -3.046875 3 -2.28125 Z M 3 -2.234375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-19"> | |
| 123 | +<path d="M 2.4375 -0.640625 C 2.234375 -0.53125 2.078125 -0.484375 1.90625 -0.484375 C 1.5625 -0.484375 1.4375 -0.65625 1.4375 -1.0625 L 1.4375 -3.40625 L 2.296875 -3.40625 L 2.375 -3.921875 L 1.4375 -3.921875 L 1.4375 -4.890625 L 0.75 -4.8125 L 0.75 -3.921875 L 0.0625 -3.921875 L 0.0625 -3.40625 L 0.75 -3.40625 L 0.75 -1.03125 C 0.75 -0.296875 1.140625 0.09375 1.8125 0.09375 C 2.140625 0.09375 2.4375 0 2.6875 -0.171875 Z M 2.4375 -0.640625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-20"> | |
| 126 | +<path d="M 3.609375 0 L 4.328125 0 L 4.328125 -5.140625 L 3.609375 -5.140625 L 3.609375 -2.984375 L 1.453125 -2.984375 L 1.453125 -5.140625 L 0.75 -5.140625 L 0.75 0 L 1.453125 0 L 1.453125 -2.40625 L 3.609375 -2.40625 Z M 3.609375 0 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-21"> | |
| 129 | +<path d="M 1.234375 -4.71875 L 2.171875 -5.34375 L 3.109375 -4.71875 L 3.40625 -5.0625 L 2.40625 -5.90625 L 1.9375 -5.90625 L 0.9375 -5.0625 Z M 2.1875 -4.015625 C 1.0625 -4.015625 0.421875 -3.171875 0.421875 -1.953125 C 0.421875 -0.71875 1.0625 0.09375 2.171875 0.09375 C 3.28125 0.09375 3.921875 -0.75 3.921875 -1.96875 C 3.921875 -3.21875 3.296875 -4.015625 2.1875 -4.015625 Z M 2.1875 -3.46875 C 2.828125 -3.46875 3.1875 -2.984375 3.1875 -1.96875 C 3.1875 -0.9375 2.828125 -0.46875 2.171875 -0.46875 C 1.515625 -0.46875 1.15625 -0.9375 1.15625 -1.953125 C 1.15625 -2.984375 1.53125 -3.46875 2.1875 -3.46875 Z M 2.1875 -3.46875 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-1-22"> | |
| 132 | +<path d="M 3.53125 -5.140625 L 0.75 -5.140625 L 0.75 0 L 3.578125 0 L 3.578125 -0.5625 L 1.453125 -0.5625 L 1.453125 -2.328125 L 3.1875 -2.328125 L 3.1875 -2.890625 L 1.453125 -2.890625 L 1.453125 -4.5625 L 3.4375 -4.5625 Z M 3.53125 -5.140625 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-1-23"> | |
| 135 | +<path d="M 2.484375 -4.015625 C 2.046875 -4.015625 1.625 -3.796875 1.328125 -3.40625 L 1.28125 -3.921875 L 0.6875 -3.921875 L 0.6875 1.59375 L 1.375 1.5 L 1.375 -0.359375 C 1.625 -0.046875 1.96875 0.09375 2.40625 0.09375 C 3.40625 0.09375 3.9375 -0.78125 3.9375 -1.96875 C 3.9375 -3.203125 3.53125 -4.015625 2.484375 -4.015625 Z M 2.234375 -0.46875 C 1.875 -0.46875 1.578125 -0.640625 1.375 -0.953125 L 1.375 -2.859375 C 1.578125 -3.171875 1.90625 -3.46875 2.3125 -3.46875 C 2.90625 -3.46875 3.203125 -2.984375 3.203125 -1.96875 C 3.203125 -0.9375 2.859375 -0.46875 2.234375 -0.46875 Z M 2.234375 -0.46875 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-1-24"> | |
| 138 | +<path d="M 2.140625 -4.015625 C 1.078125 -4.015625 0.421875 -3.1875 0.421875 -1.9375 C 0.421875 -0.65625 1.078125 0.09375 2.140625 0.09375 C 2.59375 0.09375 2.984375 -0.0625 3.34375 -0.34375 L 3.03125 -0.796875 C 2.734375 -0.59375 2.5 -0.484375 2.171875 -0.484375 C 1.546875 -0.484375 1.15625 -0.921875 1.15625 -1.9375 C 1.15625 -2.96875 1.546875 -3.453125 2.171875 -3.453125 C 2.5 -3.453125 2.75 -3.359375 3.015625 -3.15625 L 3.34375 -3.59375 C 2.96875 -3.890625 2.59375 -4.015625 2.140625 -4.015625 Z M 2.140625 -4.015625 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-1-25"> | |
| 141 | +<path d="M 0.890625 -0.953125 C 0.59375 -0.953125 0.375 -0.71875 0.375 -0.4375 C 0.375 -0.140625 0.59375 0.09375 0.890625 0.09375 C 1.1875 0.09375 1.40625 -0.140625 1.40625 -0.4375 C 1.40625 -0.71875 1.1875 -0.953125 0.890625 -0.953125 Z M 0.890625 -0.953125 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-1-26"> | |
| 144 | +<path d="M 2.484375 -4.015625 C 2 -4.015625 1.640625 -3.796875 1.375 -3.4375 L 1.375 -5.59375 L 0.6875 -5.515625 L 0.6875 0 L 1.296875 0 L 1.359375 -0.4375 C 1.625 -0.109375 1.96875 0.09375 2.40625 0.09375 C 3.359375 0.09375 3.9375 -0.734375 3.9375 -1.96875 C 3.9375 -3.28125 3.375 -4.015625 2.484375 -4.015625 Z M 2.234375 -0.453125 C 1.890625 -0.453125 1.578125 -0.671875 1.375 -0.984375 L 1.375 -2.859375 C 1.578125 -3.171875 1.859375 -3.46875 2.28125 -3.46875 C 2.84375 -3.46875 3.203125 -3.078125 3.203125 -1.96875 C 3.203125 -0.890625 2.8125 -0.453125 2.234375 -0.453125 Z M 2.234375 -0.453125 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-1-27"> | |
| 147 | +<path d="M 3.484375 0 L 4.21875 0 L 2.59375 -5.140625 L 1.6875 -5.140625 L 0.046875 0 L 0.765625 0 L 1.140625 -1.296875 L 3.09375 -1.296875 Z M 1.3125 -1.859375 L 2.125 -4.546875 L 2.921875 -1.859375 Z M 1.3125 -1.859375 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-1-28"> | |
| 150 | +<path d="M 3.671875 -4.375 C 3.21875 -4.15625 2.859375 -4 1.875 -4.015625 C 1.015625 -4.015625 0.359375 -3.453125 0.359375 -2.640625 C 0.359375 -2.140625 0.578125 -1.796875 1.03125 -1.5625 C 0.75 -1.375 0.59375 -1.125 0.59375 -0.859375 C 0.59375 -0.46875 0.90625 -0.125 1.609375 -0.125 L 2.234375 -0.125 C 2.71875 -0.125 3.015625 0.0625 3.015625 0.4375 C 3.015625 0.828125 2.71875 1.046875 1.875 1.046875 C 1 1.046875 0.8125 0.84375 0.8125 0.390625 L 0.1875 0.390625 C 0.1875 1.1875 0.59375 1.59375 1.875 1.59375 C 3.078125 1.59375 3.71875 1.15625 3.71875 0.390625 C 3.71875 -0.234375 3.171875 -0.6875 2.375 -0.6875 L 1.75 -0.6875 C 1.34375 -0.6875 1.234375 -0.828125 1.234375 -1.015625 C 1.234375 -1.15625 1.3125 -1.296875 1.421875 -1.375 C 1.59375 -1.328125 1.75 -1.296875 1.921875 -1.296875 C 2.859375 -1.296875 3.421875 -1.859375 3.421875 -2.640625 C 3.421875 -3.09375 3.1875 -3.421875 2.734375 -3.625 C 3.171875 -3.625 3.546875 -3.640625 3.875 -3.75 Z M 1.875 -3.53125 C 2.4375 -3.53125 2.71875 -3.234375 2.71875 -2.65625 C 2.71875 -2.09375 2.4375 -1.765625 1.890625 -1.765625 C 1.359375 -1.765625 1.0625 -2.125 1.0625 -2.640625 C 1.0625 -3.15625 1.34375 -3.53125 1.875 -3.53125 Z M 1.875 -3.53125 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-1-29"> | |
| 153 | +<path d="M 1.453125 -5.140625 L 0.75 -5.140625 L 0.75 0 L 3.484375 0 L 3.5625 -0.625 L 1.453125 -0.625 Z M 1.453125 -5.140625 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-1-30"> | |
| 156 | +<path d="M 4.90625 -5.140625 L 3.953125 -5.140625 L 2.921875 -1.40625 L 1.84375 -5.140625 L 0.890625 -5.140625 L 0.46875 0 L 1.140625 0 L 1.296875 -2.265625 C 1.359375 -3.015625 1.40625 -3.8125 1.40625 -4.421875 L 2.578125 -0.578125 L 3.234375 -0.578125 L 4.34375 -4.40625 C 4.359375 -3.984375 4.40625 -3.125 4.46875 -2.3125 L 4.65625 0 L 5.34375 0 Z M 4.90625 -5.140625 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-2-0"> | |
| 159 | +<path d="M 6.53125 -6.453125 L 4.59375 -6.453125 L 3.6875 -2.078125 L 2.71875 -6.453125 L 0.796875 -6.453125 L 0.3125 0 L 1.796875 0 L 1.90625 -2.5 C 1.953125 -3.40625 1.953125 -4.203125 1.875 -5.15625 L 2.9375 -0.6875 L 4.390625 -0.6875 L 5.375 -5.15625 C 5.34375 -4.359375 5.359375 -3.421875 5.40625 -2.53125 L 5.515625 0 L 7.015625 0 Z M 6.53125 -6.453125 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-2-1"> | |
| 162 | +<path d="M 4.484375 -1.4375 L 4.484375 -3.359375 C 4.484375 -4.5 3.875 -5.109375 2.4375 -5.109375 C 1.875 -5.109375 1.203125 -4.96875 0.578125 -4.734375 L 0.90625 -3.765625 C 1.40625 -3.9375 1.890625 -4.03125 2.203125 -4.03125 C 2.8125 -4.03125 3.046875 -3.859375 3.046875 -3.265625 L 3.046875 -3.046875 L 2.546875 -3.046875 C 1.046875 -3.046875 0.21875 -2.46875 0.21875 -1.390625 C 0.21875 -0.484375 0.84375 0.15625 1.828125 0.15625 C 2.421875 0.15625 2.96875 -0.03125 3.328125 -0.578125 C 3.5625 -0.09375 3.9375 0.078125 4.515625 0.125 L 4.828125 -0.828125 C 4.59375 -0.90625 4.484375 -1.046875 4.484375 -1.4375 Z M 2.265625 -0.890625 C 1.90625 -0.890625 1.6875 -1.125 1.6875 -1.515625 C 1.6875 -2.015625 2.015625 -2.25 2.6875 -2.25 L 3.046875 -2.25 L 3.046875 -1.359375 C 2.875 -1.078125 2.59375 -0.890625 2.265625 -0.890625 Z M 2.265625 -0.890625 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-2-2"> | |
| 165 | +<path d="M 3.25 -5.078125 C 2.6875 -5.078125 2.203125 -4.671875 1.96875 -3.984375 L 1.84375 -4.9375 L 0.5625 -4.9375 L 0.5625 0 L 2.046875 0 L 2.046875 -2.484375 C 2.203125 -3.21875 2.453125 -3.65625 3.0625 -3.65625 C 3.21875 -3.65625 3.359375 -3.625 3.515625 -3.59375 L 3.75 -5.015625 C 3.578125 -5.0625 3.4375 -5.078125 3.25 -5.078125 Z M 3.25 -5.078125 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-2-3"> | |
| 168 | +<path d="M 2.71875 -5.109375 C 1.234375 -5.109375 0.296875 -4 0.296875 -2.4375 C 0.296875 -0.859375 1.234375 0.15625 2.75 0.15625 C 3.421875 0.15625 3.953125 -0.0625 4.421875 -0.421875 L 3.765625 -1.34375 C 3.421875 -1.125 3.171875 -1 2.828125 -1 C 2.234375 -1 1.84375 -1.34375 1.84375 -2.4375 C 1.84375 -3.546875 2.203125 -3.96875 2.84375 -3.96875 C 3.171875 -3.96875 3.46875 -3.859375 3.78125 -3.625 L 4.421875 -4.5 C 3.9375 -4.890625 3.40625 -5.109375 2.71875 -5.109375 Z M 2.71875 -5.109375 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-2-4"> | |
| 171 | +<path d="M 3.46875 -5.109375 C 2.875 -5.109375 2.4375 -4.875 2.046875 -4.421875 L 2.046875 -7.0625 L 0.5625 -6.90625 L 0.5625 0 L 2.046875 0 L 2.046875 -3.390625 C 2.296875 -3.796875 2.5625 -4.015625 2.890625 -4.015625 C 3.171875 -4.015625 3.359375 -3.890625 3.359375 -3.359375 L 3.359375 0 L 4.828125 0 L 4.828125 -3.609375 C 4.828125 -4.546875 4.3125 -5.109375 3.46875 -5.109375 Z M 3.46875 -5.109375 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-2-5"> | |
| 174 | +<path d="M 3.890625 -6.671875 L 3.3125 -7.78125 L 1.28125 -6.546875 L 1.6875 -5.796875 Z M 4.890625 -2.5625 C 4.890625 -4.171875 4.015625 -5.109375 2.609375 -5.109375 C 1.109375 -5.109375 0.296875 -3.9375 0.296875 -2.453125 C 0.296875 -0.90625 1.140625 0.15625 2.78125 0.15625 C 3.578125 0.15625 4.21875 -0.140625 4.71875 -0.53125 L 4.109375 -1.34375 C 3.671875 -1.046875 3.328125 -0.90625 2.921875 -0.90625 C 2.3125 -0.90625 1.90625 -1.15625 1.796875 -2.046875 L 4.859375 -2.046875 C 4.875 -2.1875 4.890625 -2.40625 4.890625 -2.5625 Z M 3.453125 -2.921875 L 1.796875 -2.921875 C 1.859375 -3.8125 2.15625 -4.125 2.640625 -4.125 C 3.234375 -4.125 3.4375 -3.65625 3.453125 -2.984375 Z M 3.453125 -2.921875 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-2-6"> | |
| 177 | +<path d="M 1.296875 -7.546875 C 0.796875 -7.546875 0.421875 -7.1875 0.421875 -6.71875 C 0.421875 -6.234375 0.796875 -5.875 1.296875 -5.875 C 1.8125 -5.875 2.171875 -6.234375 2.171875 -6.71875 C 2.171875 -7.1875 1.8125 -7.546875 1.296875 -7.546875 Z M 2.046875 -4.9375 L 0.5625 -4.9375 L 0.5625 0 L 2.046875 0 Z M 2.046875 -4.9375 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-2-7"> | |
| 180 | +<path d="M 6.03125 -5.109375 C 5.40625 -5.109375 4.9375 -4.84375 4.546875 -4.328125 C 4.359375 -4.828125 3.9375 -5.109375 3.390625 -5.109375 C 2.78125 -5.109375 2.328125 -4.859375 1.953125 -4.359375 L 1.84375 -4.9375 L 0.5625 -4.9375 L 0.5625 0 L 2.046875 0 L 2.046875 -3.375 C 2.25 -3.796875 2.484375 -4.015625 2.796875 -4.015625 C 3.015625 -4.015625 3.21875 -3.890625 3.21875 -3.359375 L 3.21875 0 L 4.6875 0 L 4.6875 -3.375 C 4.890625 -3.796875 5.125 -4.015625 5.4375 -4.015625 C 5.65625 -4.015625 5.84375 -3.890625 5.84375 -3.359375 L 5.84375 0 L 7.3125 0 L 7.3125 -3.609375 C 7.3125 -4.546875 6.796875 -5.109375 6.03125 -5.109375 Z M 6.03125 -5.109375 "/> | |
| 181 | +</g> | |
| 182 | +<g id="glyph-2-8"> | |
| 183 | +<path d="M 2.71875 -5.109375 C 1.203125 -5.109375 0.296875 -4.0625 0.296875 -2.484375 C 0.296875 -0.8125 1.21875 0.15625 2.71875 0.15625 C 4.234375 0.15625 5.140625 -0.890625 5.140625 -2.46875 C 5.140625 -4.140625 4.234375 -5.109375 2.71875 -5.109375 Z M 2.71875 -4.015625 C 3.3125 -4.015625 3.609375 -3.5625 3.609375 -2.46875 C 3.609375 -1.390625 3.3125 -0.921875 2.71875 -0.921875 C 2.125 -0.921875 1.828125 -1.375 1.828125 -2.484375 C 1.828125 -3.546875 2.125 -4.015625 2.71875 -4.015625 Z M 2.71875 -4.015625 "/> | |
| 184 | +</g> | |
| 185 | +<g id="glyph-2-9"> | |
| 186 | +<path d="M 3.375 -5.109375 C 2.828125 -5.109375 2.34375 -4.859375 2.046875 -4.4375 L 2.046875 -7.0625 L 0.5625 -6.90625 L 0.5625 0 L 1.875 0 L 1.953125 -0.46875 C 2.25 -0.078125 2.6875 0.15625 3.234375 0.15625 C 4.46875 0.15625 5.203125 -0.9375 5.203125 -2.46875 C 5.203125 -4.125 4.546875 -5.109375 3.375 -5.109375 Z M 2.8125 -0.90625 C 2.5 -0.90625 2.21875 -1.09375 2.046875 -1.390625 L 2.046875 -3.453125 C 2.25 -3.8125 2.546875 -4.015625 2.875 -4.015625 C 3.34375 -4.015625 3.671875 -3.71875 3.671875 -2.46875 C 3.671875 -1.3125 3.328125 -0.90625 2.8125 -0.90625 Z M 2.8125 -0.90625 "/> | |
| 187 | +</g> | |
| 188 | +<g id="glyph-2-10"> | |
| 189 | +<path d="M 1.859375 0.15625 C 2.21875 0.15625 2.546875 0.078125 2.75 -0.015625 L 2.484375 -1.046875 C 2.40625 -1.03125 2.328125 -1 2.234375 -1 C 2.0625 -1 1.96875 -1.109375 1.96875 -1.3125 L 1.96875 -7.0625 L 0.5 -6.90625 L 0.5 -1.25 C 0.5 -0.359375 1 0.15625 1.859375 0.15625 Z M 1.859375 0.15625 "/> | |
| 190 | +</g> | |
| 191 | +<g id="glyph-2-11"> | |
| 192 | +<path d="M 4.890625 -2.5625 C 4.890625 -4.171875 4.015625 -5.109375 2.609375 -5.109375 C 1.109375 -5.109375 0.296875 -3.9375 0.296875 -2.453125 C 0.296875 -0.90625 1.140625 0.15625 2.78125 0.15625 C 3.578125 0.15625 4.21875 -0.140625 4.71875 -0.53125 L 4.109375 -1.34375 C 3.671875 -1.046875 3.328125 -0.90625 2.921875 -0.90625 C 2.3125 -0.90625 1.90625 -1.15625 1.8125 -2.046875 L 4.859375 -2.046875 C 4.875 -2.1875 4.890625 -2.40625 4.890625 -2.5625 Z M 3.453125 -2.921875 L 1.796875 -2.921875 C 1.875 -3.8125 2.15625 -4.125 2.640625 -4.125 C 3.234375 -4.125 3.4375 -3.65625 3.453125 -2.984375 Z M 3.453125 -2.921875 "/> | |
| 193 | +</g> | |
| 194 | +<g id="glyph-2-12"> | |
| 195 | +<path d="M 3.671875 -4.9375 L 3.609375 -4.515625 C 3.265625 -4.90625 2.84375 -5.109375 2.328125 -5.109375 C 1.09375 -5.109375 0.296875 -4.015625 0.296875 -2.484375 C 0.296875 -0.890625 0.921875 0.15625 2.171875 0.15625 C 2.78125 0.15625 3.203125 -0.109375 3.484375 -0.46875 L 3.484375 1.90625 L 4.96875 2.0625 L 4.96875 -4.9375 Z M 2.640625 -0.921875 C 2.15625 -0.921875 1.828125 -1.25 1.828125 -2.484375 C 1.828125 -3.578125 2.203125 -4.03125 2.734375 -4.03125 C 3.046875 -4.03125 3.265625 -3.875 3.484375 -3.609375 L 3.484375 -1.484375 C 3.265625 -1.109375 2.984375 -0.921875 2.640625 -0.921875 Z M 2.640625 -0.921875 "/> | |
| 196 | +</g> | |
| 197 | +<g id="glyph-2-13"> | |
| 198 | +<path d="M 4.71875 -4.9375 L 3.25 -4.9375 L 3.25 -1.515625 C 3.03125 -1.140625 2.75 -0.9375 2.453125 -0.9375 C 2.140625 -0.9375 1.96875 -1.078125 1.96875 -1.578125 L 1.96875 -4.9375 L 0.5 -4.9375 L 0.5 -1.390625 C 0.5 -0.4375 0.953125 0.15625 1.875 0.15625 C 2.546875 0.15625 3.03125 -0.109375 3.375 -0.625 L 3.453125 0 L 4.71875 0 Z M 4.71875 -4.9375 "/> | |
| 199 | +</g> | |
| 200 | +<g id="glyph-2-14"> | |
| 201 | +<path d="M 2.3125 -5.109375 C 1.078125 -5.109375 0.296875 -4.4375 0.296875 -3.59375 C 0.296875 -2.828125 0.78125 -2.328125 1.765625 -2.046875 C 2.65625 -1.796875 2.796875 -1.6875 2.796875 -1.359375 C 2.796875 -1.0625 2.53125 -0.890625 2.09375 -0.890625 C 1.609375 -0.890625 1.140625 -1.09375 0.765625 -1.375 L 0.0625 -0.578125 C 0.546875 -0.140625 1.265625 0.15625 2.125 0.15625 C 3.359375 0.15625 4.328125 -0.453125 4.328125 -1.46875 C 4.328125 -2.359375 3.765625 -2.765625 2.796875 -3.046875 C 1.90625 -3.3125 1.78125 -3.421875 1.78125 -3.671875 C 1.78125 -3.90625 1.96875 -4.046875 2.375 -4.046875 C 2.796875 -4.046875 3.21875 -3.90625 3.59375 -3.671875 L 4.140625 -4.5 C 3.671875 -4.875 3.03125 -5.109375 2.3125 -5.109375 Z M 2.3125 -5.109375 "/> | |
| 202 | +</g> | |
| 203 | +</g> | |
| 204 | +<clipPath id="clip-0"> | |
| 205 | +<path clip-rule="nonzero" d="M 0.574219 29 L 73 29 L 73 99.976562 L 0.574219 99.976562 Z M 0.574219 29 "/> | |
| 206 | +</clipPath> | |
| 207 | +<clipPath id="clip-1"> | |
| 208 | +<path clip-rule="nonzero" d="M 70 29 L 144 29 L 144 99.976562 L 70 99.976562 Z M 70 29 "/> | |
| 209 | +</clipPath> | |
| 210 | +<clipPath id="clip-2"> | |
| 211 | +<path clip-rule="nonzero" d="M 141 29 L 214 29 L 214 99.976562 L 141 99.976562 Z M 141 29 "/> | |
| 212 | +</clipPath> | |
| 213 | +<clipPath id="clip-3"> | |
| 214 | +<path clip-rule="nonzero" d="M 211 29 L 285 29 L 285 99.976562 L 211 99.976562 Z M 211 29 "/> | |
| 215 | +</clipPath> | |
| 216 | +<clipPath id="clip-4"> | |
| 217 | +<path clip-rule="nonzero" d="M 282 29 L 354.113281 29 L 354.113281 99.976562 L 282 99.976562 Z M 282 29 "/> | |
| 218 | +</clipPath> | |
| 219 | +</defs> | |
| 220 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 60.988281 35.597656 L 11.675781 35.597656 C 8.394531 35.597656 5.730469 38.257812 5.730469 41.542969 L 5.730469 88.875 C 5.730469 92.160156 8.394531 94.824219 11.675781 94.824219 L 60.988281 94.824219 C 64.273438 94.824219 66.9375 92.160156 66.9375 88.875 L 66.9375 41.542969 C 66.9375 38.257812 64.273438 35.597656 60.988281 35.597656 Z M 60.988281 35.597656 "/> | |
| 221 | +<g clip-path="url(#clip-0)"> | |
| 222 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 24.780595 29.763613 L -24.783652 29.763613 C -28.081654 29.763613 -30.759316 27.089876 -30.759316 23.787949 L -30.759316 -23.785719 C -30.759316 -27.087647 -28.081654 -29.765309 -24.783652 -29.765309 L 24.780595 -29.765309 C 28.082522 -29.765309 30.760185 -27.087647 30.760185 -23.785719 L 30.760185 23.787949 C 30.760185 27.089876 28.082522 29.763613 24.780595 29.763613 Z M 24.780595 29.763613 " transform="matrix(0.994921, 0, 0, -0.994921, 36.333552, 65.210093)"/> | |
| 223 | +</g> | |
| 224 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 225 | +<use xlink:href="#glyph-0-0" x="14.694025" y="52.350742"/> | |
| 226 | +</g> | |
| 227 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 228 | +<use xlink:href="#glyph-0-1" x="19.775693" y="52.350742"/> | |
| 229 | +<use xlink:href="#glyph-0-2" x="24.42131" y="52.350742"/> | |
| 230 | +<use xlink:href="#glyph-0-3" x="28.446393" y="52.350742"/> | |
| 231 | +<use xlink:href="#glyph-0-4" x="30.794359" y="52.350742"/> | |
| 232 | +<use xlink:href="#glyph-0-5" x="35.775399" y="52.350742"/> | |
| 233 | +<use xlink:href="#glyph-0-6" x="40.421016" y="52.350742"/> | |
| 234 | +<use xlink:href="#glyph-0-7" x="45.22596" y="52.350742"/> | |
| 235 | +<use xlink:href="#glyph-0-3" x="48.462798" y="52.350742"/> | |
| 236 | +<use xlink:href="#glyph-0-5" x="50.810763" y="52.350742"/> | |
| 237 | +<use xlink:href="#glyph-0-8" x="55.45638" y="52.350742"/> | |
| 238 | +</g> | |
| 239 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 240 | +<use xlink:href="#glyph-1-0" x="14.303021" y="64.740491"/> | |
| 241 | +<use xlink:href="#glyph-1-1" x="19.237468" y="64.740491"/> | |
| 242 | +<use xlink:href="#glyph-1-2" x="23.553245" y="64.740491"/> | |
| 243 | +<use xlink:href="#glyph-1-3" x="25.610507" y="64.740491"/> | |
| 244 | +</g> | |
| 245 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 246 | +<use xlink:href="#glyph-1-4" x="28.033008" y="64.740491"/> | |
| 247 | +<use xlink:href="#glyph-1-5" x="32.050631" y="64.740491"/> | |
| 248 | +<use xlink:href="#glyph-1-2" x="38.386401" y="64.740491"/> | |
| 249 | +<use xlink:href="#glyph-1-6" x="40.443663" y="64.740491"/> | |
| 250 | +<use xlink:href="#glyph-1-2" x="42.635094" y="64.740491"/> | |
| 251 | +<use xlink:href="#glyph-1-4" x="44.692356" y="64.740491"/> | |
| 252 | +</g> | |
| 253 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 254 | +<use xlink:href="#glyph-1-6" x="48.67271" y="64.740491"/> | |
| 255 | +</g> | |
| 256 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 257 | +<use xlink:href="#glyph-1-7" x="50.826872" y="64.740491"/> | |
| 258 | +<use xlink:href="#glyph-1-8" x="54.881765" y="64.740491"/> | |
| 259 | +</g> | |
| 260 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 261 | +<use xlink:href="#glyph-1-9" x="23.87018" y="74.157416"/> | |
| 262 | +</g> | |
| 263 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 264 | +<use xlink:href="#glyph-1-10" x="27.895257" y="74.157416"/> | |
| 265 | +<use xlink:href="#glyph-1-1" x="32.248304" y="74.157416"/> | |
| 266 | +<use xlink:href="#glyph-1-11" x="36.564081" y="74.157416"/> | |
| 267 | +<use xlink:href="#glyph-1-10" x="40.961851" y="74.157416"/> | |
| 268 | +<use xlink:href="#glyph-1-8" x="45.314898" y="74.157416"/> | |
| 269 | +</g> | |
| 270 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 271 | +<use xlink:href="#glyph-1-12" x="29.311401" y="85.060753"/> | |
| 272 | +</g> | |
| 273 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 274 | +<use xlink:href="#glyph-1-6" x="33.567548" y="85.060753"/> | |
| 275 | +</g> | |
| 276 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 277 | +<use xlink:href="#glyph-1-7" x="35.72171" y="85.060753"/> | |
| 278 | +</g> | |
| 279 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 280 | +<use xlink:href="#glyph-1-13" x="39.739333" y="85.060753"/> | |
| 281 | +</g> | |
| 282 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 131.496094 35.597656 L 82.183594 35.597656 C 78.898438 35.597656 76.238281 38.257812 76.238281 41.542969 L 76.238281 88.875 C 76.238281 92.160156 78.898438 94.824219 82.183594 94.824219 L 131.496094 94.824219 C 134.78125 94.824219 137.445312 92.160156 137.445312 88.875 L 137.445312 41.542969 C 137.445312 38.257812 134.78125 35.597656 131.496094 35.597656 Z M 131.496094 35.597656 "/> | |
| 283 | +<g clip-path="url(#clip-1)"> | |
| 284 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 95.648359 29.763613 L 46.084112 29.763613 C 42.782185 29.763613 40.108448 27.089876 40.108448 23.787949 L 40.108448 -23.785719 C 40.108448 -27.087647 42.782185 -29.765309 46.084112 -29.765309 L 95.648359 -29.765309 C 98.950287 -29.765309 101.62795 -27.087647 101.62795 -23.785719 L 101.62795 23.787949 C 101.62795 27.089876 98.950287 29.763613 95.648359 29.763613 Z M 95.648359 29.763613 " transform="matrix(0.994921, 0, 0, -0.994921, 36.333552, 65.210093)"/> | |
| 285 | +</g> | |
| 286 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 287 | +<use xlink:href="#glyph-0-9" x="84.399171" y="52.206479"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-0-10" x="89.053173" y="52.206479"/> | |
| 291 | +<use xlink:href="#glyph-0-11" x="93.950358" y="52.206479"/> | |
| 292 | +<use xlink:href="#glyph-0-11" x="101.00264" y="52.206479"/> | |
| 293 | +<use xlink:href="#glyph-0-5" x="108.054921" y="52.206479"/> | |
| 294 | +<use xlink:href="#glyph-0-12" x="112.700538" y="52.206479"/> | |
| 295 | +</g> | |
| 296 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 297 | +<use xlink:href="#glyph-0-13" x="115.887063" y="52.206479"/> | |
| 298 | +<use xlink:href="#glyph-0-3" x="119.90376" y="52.206479"/> | |
| 299 | +<use xlink:href="#glyph-0-14" x="122.251726" y="52.206479"/> | |
| 300 | +</g> | |
| 301 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 302 | +<use xlink:href="#glyph-0-8" x="126.763173" y="52.206479"/> | |
| 303 | +</g> | |
| 304 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 305 | +<use xlink:href="#glyph-1-14" x="93.109702" y="64.596227"/> | |
| 306 | +<use xlink:href="#glyph-1-15" x="97.641641" y="64.596227"/> | |
| 307 | +<use xlink:href="#glyph-1-16" x="101.927603" y="64.596227"/> | |
| 308 | +</g> | |
| 309 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 310 | +<use xlink:href="#glyph-1-7" x="104.63335" y="64.596227"/> | |
| 311 | +</g> | |
| 312 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 313 | +<use xlink:href="#glyph-1-4" x="108.650973" y="64.596227"/> | |
| 314 | +<use xlink:href="#glyph-1-15" x="112.668597" y="64.596227"/> | |
| 315 | +<use xlink:href="#glyph-1-13" x="116.954559" y="64.596227"/> | |
| 316 | +</g> | |
| 317 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 318 | +<use xlink:href="#glyph-1-17" x="96.933183" y="74.013153"/> | |
| 319 | +<use xlink:href="#glyph-1-18" x="101.73346" y="74.013153"/> | |
| 320 | +<use xlink:href="#glyph-1-19" x="105.788353" y="74.013153"/> | |
| 321 | +<use xlink:href="#glyph-1-4" x="108.479192" y="74.013153"/> | |
| 322 | +<use xlink:href="#glyph-1-2" x="112.496816" y="74.013153"/> | |
| 323 | +<use xlink:href="#glyph-1-6" x="114.554077" y="74.013153"/> | |
| 324 | +</g> | |
| 325 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 326 | +<use xlink:href="#glyph-1-20" x="95.975074" y="84.915495"/> | |
| 327 | +<use xlink:href="#glyph-1-21" x="101.04369" y="84.915495"/> | |
| 328 | +<use xlink:href="#glyph-1-19" x="105.396737" y="84.915495"/> | |
| 329 | +</g> | |
| 330 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 331 | +<use xlink:href="#glyph-1-7" x="107.975768" y="84.915495"/> | |
| 332 | +<use xlink:href="#glyph-1-6" x="112.030661" y="84.915495"/> | |
| 333 | +<use xlink:href="#glyph-1-8" x="114.222092" y="84.915495"/> | |
| 334 | +</g> | |
| 335 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 202.003906 35.597656 L 152.691406 35.597656 C 149.40625 35.597656 146.746094 38.257812 146.746094 41.542969 L 146.746094 88.875 C 146.746094 92.160156 149.40625 94.824219 152.691406 94.824219 L 202.003906 94.824219 C 205.289062 94.824219 207.949219 92.160156 207.949219 88.875 L 207.949219 41.542969 C 207.949219 38.257812 205.289062 35.597656 202.003906 35.597656 Z M 202.003906 35.597656 "/> | |
| 336 | +<g clip-path="url(#clip-2)"> | |
| 337 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 166.516124 29.763613 L 116.951877 29.763613 C 113.649949 29.763613 110.976213 27.089876 110.976213 23.787949 L 110.976213 -23.785719 C 110.976213 -27.087647 113.649949 -29.765309 116.951877 -29.765309 L 166.516124 -29.765309 C 169.818051 -29.765309 172.491788 -27.087647 172.491788 -23.785719 L 172.491788 23.787949 C 172.491788 27.089876 169.818051 29.763613 166.516124 29.763613 Z M 166.516124 29.763613 " transform="matrix(0.994921, 0, 0, -0.994921, 36.333552, 65.210093)"/> | |
| 338 | +</g> | |
| 339 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 340 | +<use xlink:href="#glyph-0-15" x="158.779449" y="52.206479"/> | |
| 341 | +<use xlink:href="#glyph-0-6" x="161.236427" y="52.206479"/> | |
| 342 | +<use xlink:href="#glyph-0-4" x="166.04137" y="52.206479"/> | |
| 343 | +<use xlink:href="#glyph-0-16" x="171.022411" y="52.206479"/> | |
| 344 | +<use xlink:href="#glyph-0-2" x="175.785426" y="52.206479"/> | |
| 345 | +<use xlink:href="#glyph-0-7" x="179.81051" y="52.206479"/> | |
| 346 | +<use xlink:href="#glyph-0-12" x="183.047348" y="52.206479"/> | |
| 347 | +<use xlink:href="#glyph-0-3" x="186.401584" y="52.206479"/> | |
| 348 | +<use xlink:href="#glyph-0-5" x="188.749549" y="52.206479"/> | |
| 349 | +<use xlink:href="#glyph-0-8" x="193.395166" y="52.206479"/> | |
| 350 | +</g> | |
| 351 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 352 | +<use xlink:href="#glyph-1-22" x="161.058813" y="64.596227"/> | |
| 353 | +</g> | |
| 354 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-1-1" x="164.972082" y="64.596227"/> | |
| 356 | +<use xlink:href="#glyph-1-19" x="169.28786" y="64.596227"/> | |
| 357 | +<use xlink:href="#glyph-1-16" x="171.978699" y="64.596227"/> | |
| 358 | +</g> | |
| 359 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 360 | +<use xlink:href="#glyph-1-7" x="174.684445" y="64.596227"/> | |
| 361 | +<use xlink:href="#glyph-1-23" x="178.739338" y="64.596227"/> | |
| 362 | +<use xlink:href="#glyph-1-21" x="183.107292" y="64.596227"/> | |
| 363 | +<use xlink:href="#glyph-1-19" x="187.460339" y="64.596227"/> | |
| 364 | +<use xlink:href="#glyph-1-8" x="190.151178" y="64.596227"/> | |
| 365 | +</g> | |
| 366 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 367 | +<use xlink:href="#glyph-1-0" x="166.201558" y="74.013153"/> | |
| 368 | +</g> | |
| 369 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 370 | +<use xlink:href="#glyph-1-8" x="171.098736" y="74.013153"/> | |
| 371 | +<use xlink:href="#glyph-1-2" x="174.579682" y="74.013153"/> | |
| 372 | +<use xlink:href="#glyph-1-1" x="176.636944" y="74.013153"/> | |
| 373 | +<use xlink:href="#glyph-1-7" x="180.952722" y="74.013153"/> | |
| 374 | +<use xlink:href="#glyph-1-8" x="185.007614" y="74.013153"/> | |
| 375 | +</g> | |
| 376 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 377 | +<use xlink:href="#glyph-1-12" x="160.749392" y="84.915495"/> | |
| 378 | +</g> | |
| 379 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 380 | +<use xlink:href="#glyph-1-4" x="164.819193" y="84.915495"/> | |
| 381 | +<use xlink:href="#glyph-1-16" x="168.836816" y="84.915495"/> | |
| 382 | +</g> | |
| 383 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 384 | +<use xlink:href="#glyph-1-24" x="171.542563" y="84.915495"/> | |
| 385 | +<use xlink:href="#glyph-1-8" x="175.105502" y="84.915495"/> | |
| 386 | +</g> | |
| 387 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 388 | +<use xlink:href="#glyph-1-2" x="181.381641" y="84.915495"/> | |
| 389 | +<use xlink:href="#glyph-1-1" x="183.438903" y="84.915495"/> | |
| 390 | +<use xlink:href="#glyph-1-11" x="187.75468" y="84.915495"/> | |
| 391 | +<use xlink:href="#glyph-1-25" x="192.15245" y="84.915495"/> | |
| 392 | +</g> | |
| 393 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 272.511719 35.597656 L 223.199219 35.597656 C 219.914062 35.597656 217.25 38.257812 217.25 41.542969 L 217.25 88.875 C 217.25 92.160156 219.914062 94.824219 223.199219 94.824219 L 272.511719 94.824219 C 275.796875 94.824219 278.457031 92.160156 278.457031 88.875 L 278.457031 41.542969 C 278.457031 38.257812 275.796875 35.597656 272.511719 35.597656 Z M 272.511719 35.597656 "/> | |
| 394 | +<g clip-path="url(#clip-3)"> | |
| 395 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 237.383889 29.763613 L 187.819641 29.763613 C 184.517714 29.763613 181.840051 27.089876 181.840051 23.787949 L 181.840051 -23.785719 C 181.840051 -27.087647 184.517714 -29.765309 187.819641 -29.765309 L 237.383889 -29.765309 C 240.685816 -29.765309 243.359553 -27.087647 243.359553 -23.785719 L 243.359553 23.787949 C 243.359553 27.089876 240.685816 29.763613 237.383889 29.763613 Z M 237.383889 29.763613 " transform="matrix(0.994921, 0, 0, -0.994921, 36.333552, 65.210093)"/> | |
| 396 | +</g> | |
| 397 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 398 | +<use xlink:href="#glyph-0-17" x="232.37175" y="52.206479"/> | |
| 399 | +</g> | |
| 400 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 401 | +<use xlink:href="#glyph-0-5" x="236.438762" y="52.206479"/> | |
| 402 | +<use xlink:href="#glyph-0-12" x="241.084379" y="52.206479"/> | |
| 403 | +<use xlink:href="#glyph-0-12" x="244.438615" y="52.206479"/> | |
| 404 | +</g> | |
| 405 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 406 | +<use xlink:href="#glyph-0-14" x="247.574826" y="52.206479"/> | |
| 407 | +<use xlink:href="#glyph-0-3" x="252.153358" y="52.206479"/> | |
| 408 | +<use xlink:href="#glyph-0-6" x="254.501323" y="52.206479"/> | |
| 409 | +<use xlink:href="#glyph-0-2" x="259.306267" y="52.206479"/> | |
| 410 | +</g> | |
| 411 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 412 | +<use xlink:href="#glyph-1-9" x="223.664203" y="64.596227"/> | |
| 413 | +</g> | |
| 414 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 415 | +<use xlink:href="#glyph-1-10" x="227.689281" y="64.596227"/> | |
| 416 | +<use xlink:href="#glyph-1-1" x="232.042328" y="64.596227"/> | |
| 417 | +<use xlink:href="#glyph-1-8" x="236.358105" y="64.596227"/> | |
| 418 | +<use xlink:href="#glyph-1-19" x="239.839052" y="64.596227"/> | |
| 419 | +<use xlink:href="#glyph-1-16" x="242.52989" y="64.596227"/> | |
| 420 | +<use xlink:href="#glyph-1-15" x="245.384714" y="64.596227"/> | |
| 421 | +<use xlink:href="#glyph-1-24" x="249.670676" y="64.596227"/> | |
| 422 | +<use xlink:href="#glyph-1-19" x="253.233615" y="64.596227"/> | |
| 423 | +<use xlink:href="#glyph-1-2" x="255.924454" y="64.596227"/> | |
| 424 | +<use xlink:href="#glyph-1-26" x="257.981715" y="64.596227"/> | |
| 425 | +<use xlink:href="#glyph-1-6" x="262.34967" y="64.596227"/> | |
| 426 | +</g> | |
| 427 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 428 | +<use xlink:href="#glyph-1-7" x="264.503832" y="64.596227"/> | |
| 429 | +<use xlink:href="#glyph-1-8" x="268.558724" y="64.596227"/> | |
| 430 | +</g> | |
| 431 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 432 | +<use xlink:href="#glyph-1-27" x="232.574714" y="74.013153"/> | |
| 433 | +<use xlink:href="#glyph-1-28" x="236.845768" y="74.013153"/> | |
| 434 | +<use xlink:href="#glyph-1-16" x="240.721769" y="74.013153"/> | |
| 435 | +<use xlink:href="#glyph-1-2" x="243.576592" y="74.013153"/> | |
| 436 | +<use xlink:href="#glyph-1-24" x="245.633854" y="74.013153"/> | |
| 437 | +</g> | |
| 438 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 439 | +<use xlink:href="#glyph-1-10" x="249.084985" y="74.013153"/> | |
| 440 | +<use xlink:href="#glyph-1-6" x="253.438032" y="74.013153"/> | |
| 441 | +</g> | |
| 442 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 443 | +<use xlink:href="#glyph-1-7" x="255.592194" y="74.013153"/> | |
| 444 | +<use xlink:href="#glyph-1-8" x="259.647087" y="74.013153"/> | |
| 445 | +</g> | |
| 446 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 447 | +<use xlink:href="#glyph-1-14" x="236.871777" y="84.915495"/> | |
| 448 | +<use xlink:href="#glyph-1-10" x="241.403716" y="84.915495"/> | |
| 449 | +<use xlink:href="#glyph-1-2" x="245.756763" y="84.915495"/> | |
| 450 | +<use xlink:href="#glyph-1-8" x="247.814024" y="84.915495"/> | |
| 451 | +<use xlink:href="#glyph-1-18" x="251.294971" y="84.915495"/> | |
| 452 | +<use xlink:href="#glyph-1-8" x="255.349864" y="84.915495"/> | |
| 453 | +</g> | |
| 454 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 343.019531 35.597656 L 293.707031 35.597656 C 290.421875 35.597656 287.757812 38.257812 287.757812 41.542969 L 287.757812 88.875 C 287.757812 92.160156 290.421875 94.824219 293.707031 94.824219 L 343.019531 94.824219 C 346.300781 94.824219 348.964844 92.160156 348.964844 88.875 L 348.964844 41.542969 C 348.964844 38.257812 346.300781 35.597656 343.019531 35.597656 Z M 343.019531 35.597656 "/> | |
| 455 | +<g clip-path="url(#clip-4)"> | |
| 456 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 308.251653 29.763613 L 258.687406 29.763613 C 255.385479 29.763613 252.707816 27.089876 252.707816 23.787949 L 252.707816 -23.785719 C 252.707816 -27.087647 255.385479 -29.765309 258.687406 -29.765309 L 308.251653 -29.765309 C 311.549654 -29.765309 314.227317 -27.087647 314.227317 -23.785719 L 314.227317 23.787949 C 314.227317 27.089876 311.549654 29.763613 308.251653 29.763613 Z M 308.251653 29.763613 " transform="matrix(0.994921, 0, 0, -0.994921, 36.333552, 65.210093)"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-0-18" x="304.987039" y="52.206479"/> | |
| 460 | +</g> | |
| 461 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 462 | +<use xlink:href="#glyph-0-10" x="309.079207" y="52.206479"/> | |
| 463 | +<use xlink:href="#glyph-0-13" x="313.976392" y="52.206479"/> | |
| 464 | +</g> | |
| 465 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 466 | +<use xlink:href="#glyph-0-14" x="317.951162" y="52.206479"/> | |
| 467 | +<use xlink:href="#glyph-0-7" x="322.529694" y="52.206479"/> | |
| 468 | +<use xlink:href="#glyph-0-3" x="325.766532" y="52.206479"/> | |
| 469 | +<use xlink:href="#glyph-0-19" x="328.114497" y="52.206479"/> | |
| 470 | +</g> | |
| 471 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 472 | +<use xlink:href="#glyph-1-29" x="300.01343" y="64.596227"/> | |
| 473 | +</g> | |
| 474 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 475 | +<use xlink:href="#glyph-1-10" x="303.5391" y="64.596227"/> | |
| 476 | +<use xlink:href="#glyph-1-28" x="307.892146" y="64.596227"/> | |
| 477 | +<use xlink:href="#glyph-1-7" x="311.768147" y="64.596227"/> | |
| 478 | +<use xlink:href="#glyph-1-5" x="315.82304" y="64.596227"/> | |
| 479 | +<use xlink:href="#glyph-1-7" x="322.15881" y="64.596227"/> | |
| 480 | +<use xlink:href="#glyph-1-1" x="326.213703" y="64.596227"/> | |
| 481 | +<use xlink:href="#glyph-1-19" x="330.52948" y="64.596227"/> | |
| 482 | +<use xlink:href="#glyph-1-8" x="333.220319" y="64.596227"/> | |
| 483 | +</g> | |
| 484 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 485 | +<use xlink:href="#glyph-1-9" x="298.556866" y="74.013153"/> | |
| 486 | +</g> | |
| 487 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 488 | +<use xlink:href="#glyph-1-10" x="302.581944" y="74.013153"/> | |
| 489 | +<use xlink:href="#glyph-1-5" x="306.93499" y="74.013153"/> | |
| 490 | +<use xlink:href="#glyph-1-5" x="313.27076" y="74.013153"/> | |
| 491 | +<use xlink:href="#glyph-1-7" x="319.60653" y="74.013153"/> | |
| 492 | +<use xlink:href="#glyph-1-16" x="323.661423" y="74.013153"/> | |
| 493 | +</g> | |
| 494 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 495 | +<use xlink:href="#glyph-1-24" x="326.36717" y="74.013153"/> | |
| 496 | +<use xlink:href="#glyph-1-2" x="329.930108" y="74.013153"/> | |
| 497 | +<use xlink:href="#glyph-1-4" x="331.98737" y="74.013153"/> | |
| 498 | +</g> | |
| 499 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 500 | +<use xlink:href="#glyph-1-6" x="335.967725" y="74.013153"/> | |
| 501 | +</g> | |
| 502 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 503 | +<use xlink:href="#glyph-1-30" x="309.304995" y="84.91649"/> | |
| 504 | +<use xlink:href="#glyph-1-2" x="315.104088" y="84.91649"/> | |
| 505 | +<use xlink:href="#glyph-1-13" x="317.16135" y="84.91649"/> | |
| 506 | +<use xlink:href="#glyph-1-19" x="320.776466" y="84.91649"/> | |
| 507 | +</g> | |
| 508 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 509 | +<use xlink:href="#glyph-1-7" x="323.355497" y="84.91649"/> | |
| 510 | +</g> | |
| 511 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 512 | +<use xlink:href="#glyph-2-0" x="114.863645" y="15.929677"/> | |
| 513 | +<use xlink:href="#glyph-2-1" x="122.18707" y="15.929677"/> | |
| 514 | +<use xlink:href="#glyph-2-2" x="127.274334" y="15.929677"/> | |
| 515 | +</g> | |
| 516 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 517 | +<use xlink:href="#glyph-2-3" x="130.814921" y="15.929677"/> | |
| 518 | +<use xlink:href="#glyph-2-4" x="135.277924" y="15.929677"/> | |
| 519 | +<use xlink:href="#glyph-2-5" x="140.616756" y="15.929677"/> | |
| 520 | +</g> | |
| 521 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 522 | +<use xlink:href="#glyph-2-6" x="147.986767" y="15.929677"/> | |
| 523 | +<use xlink:href="#glyph-2-7" x="150.59562" y="15.929677"/> | |
| 524 | +<use xlink:href="#glyph-2-7" x="158.431498" y="15.929677"/> | |
| 525 | +<use xlink:href="#glyph-2-8" x="166.267375" y="15.929677"/> | |
| 526 | +<use xlink:href="#glyph-2-9" x="171.708698" y="15.929677"/> | |
| 527 | +<use xlink:href="#glyph-2-6" x="177.215243" y="15.929677"/> | |
| 528 | +<use xlink:href="#glyph-2-10" x="179.824096" y="15.929677"/> | |
| 529 | +<use xlink:href="#glyph-2-6" x="182.619296" y="15.929677"/> | |
| 530 | +<use xlink:href="#glyph-2-11" x="185.22815" y="15.929677"/> | |
| 531 | +<use xlink:href="#glyph-2-2" x="190.389952" y="15.929677"/> | |
| 532 | +</g> | |
| 533 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 534 | +<use xlink:href="#glyph-2-12" x="196.325094" y="15.929677"/> | |
| 535 | +<use xlink:href="#glyph-2-13" x="201.85959" y="15.929677"/> | |
| 536 | +<use xlink:href="#glyph-2-5" x="207.151836" y="15.929677"/> | |
| 537 | +<use xlink:href="#glyph-2-9" x="212.313639" y="15.929677"/> | |
| 538 | +<use xlink:href="#glyph-2-5" x="217.820183" y="15.929677"/> | |
| 539 | +<use xlink:href="#glyph-2-3" x="222.981986" y="15.929677"/> | |
| 540 | +</g> | |
| 541 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 542 | +<use xlink:href="#glyph-2-8" x="227.305229" y="15.929677"/> | |
| 543 | +<use xlink:href="#glyph-2-6" x="232.746552" y="15.929677"/> | |
| 544 | +<use xlink:href="#glyph-2-14" x="235.355405" y="15.929677"/> | |
| 545 | +</g> | |
| 546 | +</svg> | |
added
dist/assets/fig/a01c46f6bb90b294.svg
+628 −0
@@ -0,0 +1,628 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="182.832pt" viewBox="0 0 314.242 182.832"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.71875 -4.734375 L 2.03125 -4.734375 L 0.296875 -3.671875 L 0.625 -3.125 L 1.9375 -3.921875 L 1.9375 0 L 2.71875 0 Z M 2.71875 -4.734375 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.34375 0.09375 1.59375 -0.15625 1.59375 -0.484375 C 1.59375 -0.8125 1.34375 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.640625 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 Z M 1.640625 -5.796875 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.125 -4.296875 2.734375 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.171875 3.4375 -0.609375 L 3.5 0 L 4.1875 0 L 4.1875 -6.21875 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.859375 -4.53125 C 2.28125 -4.53125 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.109375 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.59375 -3.828125 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.515625 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.328125 0.609375 -6.03125 C 0.609375 -5.734375 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.703125 -5.734375 1.703125 -6.03125 C 1.703125 -6.328125 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.3125 -6.296875 C 1.25 -6.296875 0.796875 -5.765625 0.796875 -5.015625 L 0.796875 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.796875 -3.828125 L 0.796875 0 L 1.5625 0 L 1.5625 -3.828125 L 3.265625 -3.828125 L 3.265625 0 L 4.03125 0 L 4.03125 -4.4375 L 1.5625 -4.4375 L 1.5625 -5.015625 C 1.5625 -5.4375 1.71875 -5.671875 2.34375 -5.671875 C 2.6875 -5.671875 3 -5.59375 3.28125 -5.46875 L 3.546875 -6 C 3.1875 -6.1875 2.8125 -6.296875 2.3125 -6.296875 Z M 2.3125 -6.296875 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.40625 -4.53125 C 1.203125 -4.53125 0.484375 -3.59375 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.5625 2.453125 -0.5625 C 1.75 -0.5625 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.453125 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.359375 -4.390625 2.9375 -4.53125 2.40625 -4.53125 Z M 2.40625 -4.53125 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 2.46875 -4.53125 C 1.203125 -4.53125 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.71875 -4.53125 2.46875 -4.53125 Z M 2.46875 -3.90625 C 3.1875 -3.90625 3.59375 -3.375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.375 1.71875 -3.90625 2.46875 -3.90625 Z M 2.46875 -3.90625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 4.0625 -4.4375 L 3.28125 -4.4375 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.703125 -0.5 1.5 -0.734375 1.5 -1.34375 L 1.5 -4.4375 L 0.71875 -4.4375 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.59375 0.09375 3 -0.15625 3.34375 -0.6875 L 3.390625 0 L 4.0625 0 Z M 4.0625 -4.4375 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 5.21875 -4.53125 C 4.625 -4.53125 4.21875 -4.21875 3.90625 -3.734375 C 3.734375 -4.234375 3.328125 -4.53125 2.78125 -4.53125 C 2.203125 -4.53125 1.796875 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.59375 -3.921875 C 2.921875 -3.921875 3.21875 -3.734375 3.21875 -3.0625 L 3.21875 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.03125 -3.921875 C 5.359375 -3.921875 5.65625 -3.734375 5.65625 -3.0625 L 5.65625 0 L 6.421875 0 L 6.421875 -3.171875 C 6.421875 -4.015625 5.9375 -4.53125 5.21875 -4.53125 Z M 5.21875 -4.53125 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 1.90625 -7.109375 C 1.078125 -5.9375 0.34375 -4.9375 0.34375 -2.9375 C 0.34375 -0.953125 1.078125 0.046875 1.90625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.75 1.625 -5.65625 2.390625 -6.765625 Z M 1.90625 -7.109375 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.59375 -0.296875 1.59375 -0.484375 C 1.59375 -0.8125 1.34375 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 2 -4.53125 C 1.078125 -4.53125 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.03125 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.453125 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.25 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.453125 -2.8125 1.203125 -2.96875 1.203125 -3.34375 C 1.203125 -3.6875 1.515625 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.171875 -3.53125 L 3.5 -4.03125 C 3.078125 -4.34375 2.625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 4.140625 -4.921875 C 3.625 -4.6875 3.21875 -4.5 2.125 -4.53125 C 1.140625 -4.53125 0.40625 -3.890625 0.40625 -2.984375 C 0.40625 -2.40625 0.640625 -2.03125 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.265625 0.671875 -0.96875 C 0.671875 -0.53125 1.03125 -0.140625 1.8125 -0.140625 L 2.515625 -0.140625 C 3.0625 -0.140625 3.40625 0.078125 3.40625 0.5 C 3.40625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.140625 1.1875 0.90625 0.953125 0.90625 0.453125 L 0.203125 0.453125 C 0.203125 1.34375 0.671875 1.796875 2.109375 1.796875 C 3.484375 1.796875 4.1875 1.296875 4.1875 0.453125 C 4.1875 -0.265625 3.578125 -0.78125 2.671875 -0.78125 L 1.96875 -0.78125 C 1.515625 -0.78125 1.390625 -0.9375 1.390625 -1.140625 C 1.390625 -1.296875 1.484375 -1.46875 1.609375 -1.5625 C 1.796875 -1.5 1.96875 -1.46875 2.171875 -1.46875 C 3.234375 -1.46875 3.859375 -2.09375 3.859375 -2.96875 C 3.859375 -3.484375 3.59375 -3.859375 3.078125 -4.09375 C 3.578125 -4.09375 4 -4.109375 4.375 -4.234375 Z M 2.125 -3.96875 C 2.75 -3.96875 3.0625 -3.640625 3.0625 -3 C 3.0625 -2.359375 2.734375 -1.984375 2.140625 -1.984375 C 1.53125 -1.984375 1.203125 -2.390625 1.203125 -2.984375 C 1.203125 -3.5625 1.515625 -3.96875 2.125 -3.96875 Z M 2.125 -3.96875 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 4.046875 -4.4375 L 3.25 -4.4375 L 2.09375 -0.5625 L 0.90625 -4.4375 L 0.078125 -4.4375 L 1.578125 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.1875 L 0.515625 1.796875 C 1.734375 1.65625 2.265625 0.96875 2.578125 0.03125 Z M 4.046875 -4.4375 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 2.8125 -4.53125 C 2.296875 -4.53125 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 1.796875 L 1.546875 1.703125 L 1.546875 -0.40625 C 1.828125 -0.0625 2.234375 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.453125 -0.875 4.453125 -2.21875 C 4.453125 -3.609375 3.984375 -4.53125 2.8125 -4.53125 Z M 2.515625 -0.53125 C 2.125 -0.53125 1.78125 -0.71875 1.546875 -1.0625 L 1.546875 -3.234375 C 1.78125 -3.578125 2.140625 -3.921875 2.609375 -3.921875 C 3.28125 -3.921875 3.609375 -3.375 3.609375 -2.21875 C 3.609375 -1.0625 3.234375 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 4.046875 -4.4375 L 3.234375 -4.4375 L 2.078125 -0.6875 L 0.921875 -4.4375 L 0.078125 -4.4375 L 1.609375 0 L 2.546875 0 Z M 4.046875 -4.4375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 2.703125 -4.53125 C 2.15625 -4.53125 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.78125 2.609375 -3.78125 C 2.765625 -3.78125 2.859375 -3.75 3 -3.71875 L 3.140625 -4.484375 C 3 -4.515625 2.84375 -4.53125 2.703125 -4.53125 Z M 2.703125 -4.53125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 4.609375 -5.6875 C 4.84375 -5.6875 5.109375 -5.640625 5.390625 -5.515625 L 5.625 -6.078125 C 5.28125 -6.234375 5 -6.296875 4.578125 -6.296875 C 4.109375 -6.296875 3.75 -6.15625 3.515625 -5.921875 C 3.046875 -6.140625 2.71875 -6.21875 2.25 -6.21875 C 1.265625 -6.21875 0.796875 -5.6875 0.796875 -4.953125 L 0.796875 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.796875 -3.828125 L 0.796875 0 L 1.5625 0 L 1.5625 -3.828125 L 3.1875 -3.828125 L 3.1875 0 L 3.953125 0 L 3.953125 -3.828125 L 4.953125 -3.828125 L 5.03125 -4.4375 L 3.953125 -4.4375 L 3.953125 -5.046875 C 3.953125 -5.46875 4.125 -5.6875 4.609375 -5.6875 Z M 3.1875 -4.4375 L 1.5625 -4.4375 L 1.5625 -4.953125 C 1.5625 -5.390625 1.734375 -5.59375 2.296875 -5.59375 C 2.640625 -5.59375 2.90625 -5.546875 3.234375 -5.421875 C 3.203125 -5.296875 3.1875 -5.171875 3.1875 -5.03125 Z M 3.1875 -4.4375 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 0.828125 -7.109375 L 0.34375 -6.765625 C 1.09375 -5.65625 1.578125 -4.75 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.34375 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.9375 1.640625 -5.9375 0.828125 -7.109375 Z M 0.828125 -7.109375 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 1.875 -4.828125 C 1.140625 -4.828125 0.59375 -4.515625 0.125 -3.9375 L 0.625 -3.53125 C 1.03125 -4.015625 1.390625 -4.1875 1.859375 -4.1875 C 2.40625 -4.1875 2.8125 -3.84375 2.8125 -3.3125 C 2.8125 -2.640625 2.546875 -2.265625 0.25 -0.609375 L 0.25 0 L 3.609375 0 L 3.703125 -0.640625 L 1.25 -0.640625 C 3.40625 -2.03125 3.625 -2.578125 3.625 -3.34375 C 3.625 -4.1875 2.9375 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 2.359375 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 L 1.640625 -2.125 L 2.375 -2.125 C 3.640625 -2.125 4.609375 -2.671875 4.609375 -4 C 4.609375 -5.21875 3.75 -5.796875 2.359375 -5.796875 Z M 2.34375 -2.75 L 1.640625 -2.75 L 1.640625 -5.171875 L 2.359375 -5.171875 C 3.21875 -5.171875 3.765625 -4.859375 3.765625 -4 C 3.765625 -3.015625 3.1875 -2.75 2.34375 -2.75 Z M 2.34375 -2.75 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 3.359375 -6.09375 L 3.015625 -6.734375 L 1.34375 -5.78125 L 1.578125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 1.875 -4.828125 C 1.25 -4.828125 0.71875 -4.609375 0.25 -4.15625 L 0.640625 -3.703125 C 1.03125 -4.046875 1.359375 -4.203125 1.8125 -4.203125 C 2.40625 -4.203125 2.78125 -3.890625 2.78125 -3.359375 C 2.78125 -2.75 2.3125 -2.40625 1.71875 -2.40625 L 1.4375 -2.40625 L 1.34375 -1.8125 L 1.765625 -1.8125 C 2.515625 -1.8125 2.921875 -1.515625 2.921875 -0.765625 C 2.921875 -0.078125 2.484375 0.359375 1.75 0.359375 C 1.296875 0.359375 0.921875 0.1875 0.546875 -0.203125 L 0.078125 0.234375 C 0.515625 0.734375 1.09375 0.984375 1.78125 0.984375 C 2.96875 0.984375 3.71875 0.25 3.71875 -0.734375 C 3.71875 -1.625 3.1875 -2.0625 2.4375 -2.15625 C 3.078125 -2.296875 3.546875 -2.75 3.546875 -3.421875 C 3.546875 -4.15625 2.953125 -4.828125 1.875 -4.828125 Z M 1.875 -4.828125 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 3.921875 0 L 4.765625 0 L 2.921875 -5.796875 L 1.90625 -5.796875 L 0.046875 0 L 0.859375 0 L 1.296875 -1.453125 L 3.484375 -1.453125 Z M 1.484375 -2.09375 L 2.390625 -5.125 L 3.296875 -2.09375 Z M 1.484375 -2.09375 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-0-30"> | |
| 96 | +<path d="M 2.859375 -4.53125 C 2.296875 -4.53125 1.859375 -4.25 1.546875 -3.8125 L 1.546875 -6.28125 L 0.765625 -6.203125 L 0.765625 0 L 1.546875 0 L 1.546875 -3.15625 C 1.84375 -3.609375 2.1875 -3.921875 2.671875 -3.921875 C 3.078125 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-0-31"> | |
| 99 | +<path d="M 4.171875 -0.9375 L 3.46875 -0.9375 L 3.46875 -2.46875 L 2.8125 -2.46875 L 2.734375 -0.9375 L 0.984375 -0.9375 L 2.5 -4.5625 L 1.859375 -4.828125 L 0.171875 -0.875 L 0.171875 -0.34375 L 2.734375 -0.34375 L 2.734375 0.90625 L 3.46875 0.90625 L 3.46875 -0.34375 L 4.171875 -0.34375 Z M 4.171875 -0.9375 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-0-32"> | |
| 102 | +<path d="M 1 -6.328125 C 0.703125 -6.328125 0.453125 -6.09375 0.453125 -5.796875 C 0.453125 -5.625 0.53125 -5.484375 0.671875 -5.375 L 0.34375 -4.125 L 0.84375 -4.125 L 1.40625 -5.3125 C 1.515625 -5.546875 1.546875 -5.671875 1.546875 -5.796875 C 1.546875 -6.09375 1.296875 -6.328125 1 -6.328125 Z M 1 -6.328125 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-0-33"> | |
| 105 | +<path d="M 3.59375 -4.734375 L 0.546875 -4.734375 L 0.546875 -1.90625 L 1.15625 -1.90625 C 1.390625 -2.03125 1.65625 -2.09375 1.953125 -2.09375 C 2.53125 -2.09375 2.96875 -1.796875 2.96875 -0.9375 C 2.96875 -0.109375 2.53125 0.359375 1.828125 0.359375 C 1.34375 0.359375 0.96875 0.171875 0.625 -0.171875 L 0.171875 0.265625 C 0.609375 0.71875 1.125 0.984375 1.828125 0.984375 C 3 0.984375 3.78125 0.203125 3.78125 -0.921875 C 3.78125 -2.03125 3.140625 -2.703125 2.1875 -2.703125 C 1.875 -2.703125 1.59375 -2.640625 1.28125 -2.484375 L 1.28125 -4.140625 L 3.484375 -4.140625 Z M 3.59375 -4.734375 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-0-34"> | |
| 108 | +<path d="M 2.625 -3.703125 C 2.0625 -3.703125 1.609375 -3.46875 1.234375 -2.9375 C 1.265625 -4.234375 1.765625 -5.09375 2.625 -5.09375 C 2.953125 -5.09375 3.234375 -5.015625 3.5 -4.84375 L 3.8125 -5.359375 C 3.484375 -5.578125 3.109375 -5.703125 2.625 -5.703125 C 1.265625 -5.703125 0.46875 -4.484375 0.46875 -2.640625 C 0.46875 -1.03125 0.984375 0.09375 2.390625 0.09375 C 3.390625 0.09375 4.203125 -0.6875 4.203125 -1.90625 C 4.203125 -3.109375 3.453125 -3.703125 2.625 -3.703125 Z M 2.390625 -0.515625 C 1.609375 -0.515625 1.28125 -1.078125 1.25 -2.296875 C 1.53125 -2.765625 1.953125 -3.078125 2.484375 -3.078125 C 3.03125 -3.078125 3.421875 -2.78125 3.421875 -1.890625 C 3.421875 -1.0625 3.0625 -0.515625 2.390625 -0.515625 Z M 2.390625 -0.515625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-0-35"> | |
| 111 | +<path d="M 3.921875 0 L 4.875 0 L 3.3125 -2.59375 C 4.140625 -2.84375 4.5625 -3.34375 4.5625 -4.15625 C 4.5625 -5.234375 3.8125 -5.796875 2.359375 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 L 1.640625 -2.453125 L 2.53125 -2.453125 Z M 1.640625 -3.0625 L 1.640625 -5.171875 L 2.359375 -5.171875 C 3.296875 -5.171875 3.71875 -4.875 3.71875 -4.15625 C 3.71875 -3.375 3.25 -3.0625 2.453125 -3.0625 Z M 1.640625 -3.0625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-0-36"> | |
| 114 | +<path d="M 3.484375 -4.734375 L 0.125 -4.734375 L 0.125 -4.109375 L 2.703125 -4.109375 L 0.71875 0.765625 L 1.421875 1 L 3.484375 -4.15625 Z M 3.484375 -4.734375 "/> | |
| 115 | +</g> | |
| 116 | +</g> | |
| 117 | +<clipPath id="clip-0"> | |
| 118 | +<path clip-rule="nonzero" d="M 0 0.136719 L 313.484375 0.136719 L 313.484375 28 L 0 28 Z M 0 0.136719 "/> | |
| 119 | +</clipPath> | |
| 120 | +<clipPath id="clip-1"> | |
| 121 | +<path clip-rule="nonzero" d="M 0 25 L 313.484375 25 L 313.484375 54 L 0 54 Z M 0 25 "/> | |
| 122 | +</clipPath> | |
| 123 | +<clipPath id="clip-2"> | |
| 124 | +<path clip-rule="nonzero" d="M 0 51 L 313.484375 51 L 313.484375 80 L 0 80 Z M 0 51 "/> | |
| 125 | +</clipPath> | |
| 126 | +<clipPath id="clip-3"> | |
| 127 | +<path clip-rule="nonzero" d="M 0 77 L 313.484375 77 L 313.484375 106 L 0 106 Z M 0 77 "/> | |
| 128 | +</clipPath> | |
| 129 | +<clipPath id="clip-4"> | |
| 130 | +<path clip-rule="nonzero" d="M 0 103 L 313.484375 103 L 313.484375 132 L 0 132 Z M 0 103 "/> | |
| 131 | +</clipPath> | |
| 132 | +<clipPath id="clip-5"> | |
| 133 | +<path clip-rule="nonzero" d="M 0 128 L 313.484375 128 L 313.484375 158 L 0 158 Z M 0 128 "/> | |
| 134 | +</clipPath> | |
| 135 | +<clipPath id="clip-6"> | |
| 136 | +<path clip-rule="nonzero" d="M 0 154 L 313.484375 154 L 313.484375 182.527344 L 0 182.527344 Z M 0 154 "/> | |
| 137 | +</clipPath> | |
| 138 | +</defs> | |
| 139 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 5.304688 L 9.140625 5.304688 C 6.945312 5.304688 5.167969 7.082031 5.167969 9.277344 L 5.167969 18.296875 C 5.167969 20.492188 6.945312 22.269531 9.140625 22.269531 L 304.34375 22.269531 C 306.539062 22.269531 308.320312 20.492188 308.320312 18.296875 L 308.320312 9.277344 C 308.320312 7.082031 306.539062 5.304688 304.34375 5.304688 Z M 304.34375 5.304688 "/> | |
| 140 | +<g clip-path="url(#clip-0)"> | |
| 141 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 8.503026 L -147.958326 8.503026 C -150.158934 8.503026 -151.940565 6.721395 -151.940565 4.520787 L -151.940565 -4.5205 C -151.940565 -6.721108 -150.158934 -8.502739 -147.958326 -8.502739 L 147.956874 -8.502739 C 150.157482 -8.502739 151.943028 -6.721108 151.943028 -4.5205 L 151.943028 4.520787 C 151.943028 6.721395 150.157482 8.503026 147.956874 8.503026 Z M 147.956874 8.503026 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 142 | +</g> | |
| 143 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 144 | +<use xlink:href="#glyph-0-0" x="18.492394" y="16.431873"/> | |
| 145 | +<use xlink:href="#glyph-0-1" x="22.049028" y="16.431873"/> | |
| 146 | +</g> | |
| 147 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 148 | +<use xlink:href="#glyph-0-2" x="26.866879" y="16.431873"/> | |
| 149 | +<use xlink:href="#glyph-0-3" x="29.347274" y="16.431873"/> | |
| 150 | +<use xlink:href="#glyph-0-4" x="34.308064" y="16.431873"/> | |
| 151 | +<use xlink:href="#glyph-0-5" x="38.88208" y="16.431873"/> | |
| 152 | +<use xlink:href="#glyph-0-6" x="43.750381" y="16.431873"/> | |
| 153 | +<use xlink:href="#glyph-0-7" x="46.785712" y="16.431873"/> | |
| 154 | +<use xlink:href="#glyph-0-8" x="49.106352" y="16.431873"/> | |
| 155 | +<use xlink:href="#glyph-0-9" x="53.915796" y="16.431873"/> | |
| 156 | +</g> | |
| 157 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 158 | +<use xlink:href="#glyph-0-10" x="57.892836" y="16.431873"/> | |
| 159 | +<use xlink:href="#glyph-0-6" x="62.424812" y="16.431873"/> | |
| 160 | +<use xlink:href="#glyph-0-7" x="65.460142" y="16.431873"/> | |
| 161 | +<use xlink:href="#glyph-0-11" x="67.780783" y="16.431873"/> | |
| 162 | +<use xlink:href="#glyph-0-5" x="72.691124" y="16.431873"/> | |
| 163 | +</g> | |
| 164 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 165 | +<use xlink:href="#glyph-0-3" x="80.367736" y="16.431873"/> | |
| 166 | +<use xlink:href="#glyph-0-12" x="85.328526" y="16.431873"/> | |
| 167 | +</g> | |
| 168 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 169 | +<use xlink:href="#glyph-0-13" x="92.963098" y="16.431873"/> | |
| 170 | +<use xlink:href="#glyph-0-10" x="100.109998" y="16.431873"/> | |
| 171 | +<use xlink:href="#glyph-0-5" x="104.641974" y="16.431873"/> | |
| 172 | +<use xlink:href="#glyph-0-3" x="109.510274" y="16.431873"/> | |
| 173 | +<use xlink:href="#glyph-0-10" x="114.471064" y="16.431873"/> | |
| 174 | +<use xlink:href="#glyph-0-6" x="119.00304" y="16.431873"/> | |
| 175 | +</g> | |
| 176 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 177 | +<use xlink:href="#glyph-0-14" x="124.838274" y="16.431873"/> | |
| 178 | +<use xlink:href="#glyph-0-9" x="127.562504" y="16.431873"/> | |
| 179 | +<use xlink:href="#glyph-0-15" x="131.581585" y="16.431873"/> | |
| 180 | +<use xlink:href="#glyph-0-7" x="134.053572" y="16.431873"/> | |
| 181 | +<use xlink:href="#glyph-0-4" x="136.374212" y="16.431873"/> | |
| 182 | +<use xlink:href="#glyph-0-5" x="140.948229" y="16.431873"/> | |
| 183 | +<use xlink:href="#glyph-0-6" x="145.816529" y="16.431873"/> | |
| 184 | +</g> | |
| 185 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 186 | +<use xlink:href="#glyph-0-16" x="148.885493" y="16.431873"/> | |
| 187 | +</g> | |
| 188 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 189 | +<use xlink:href="#glyph-0-12" x="153.703344" y="16.431873"/> | |
| 190 | +<use xlink:href="#glyph-0-17" x="158.538012" y="16.431873"/> | |
| 191 | +<use xlink:href="#glyph-0-10" x="162.464604" y="16.431873"/> | |
| 192 | +<use xlink:href="#glyph-0-18" x="166.996579" y="16.431873"/> | |
| 193 | +<use xlink:href="#glyph-0-4" x="171.368801" y="16.431873"/> | |
| 194 | +</g> | |
| 195 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 196 | +<use xlink:href="#glyph-0-16" x="175.858736" y="16.431873"/> | |
| 197 | +</g> | |
| 198 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 199 | +<use xlink:href="#glyph-0-6" x="180.684996" y="16.431873"/> | |
| 200 | +</g> | |
| 201 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 202 | +<use xlink:href="#glyph-0-19" x="183.678286" y="16.431873"/> | |
| 203 | +<use xlink:href="#glyph-0-20" x="187.81508" y="16.431873"/> | |
| 204 | +<use xlink:href="#glyph-0-4" x="192.742238" y="16.431873"/> | |
| 205 | +</g> | |
| 206 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 207 | +<use xlink:href="#glyph-0-3" x="200.116157" y="16.431873"/> | |
| 208 | +<use xlink:href="#glyph-0-4" x="205.076947" y="16.431873"/> | |
| 209 | +</g> | |
| 210 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 211 | +<use xlink:href="#glyph-0-21" x="212.450867" y="16.431873"/> | |
| 212 | +</g> | |
| 213 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 214 | +<use xlink:href="#glyph-0-10" x="216.545621" y="16.431873"/> | |
| 215 | +</g> | |
| 216 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 217 | +<use xlink:href="#glyph-0-15" x="221.035556" y="16.431873"/> | |
| 218 | +</g> | |
| 219 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 220 | +<use xlink:href="#glyph-0-4" x="223.465502" y="16.431873"/> | |
| 221 | +<use xlink:href="#glyph-0-12" x="228.039518" y="16.431873"/> | |
| 222 | +<use xlink:href="#glyph-0-22" x="232.874186" y="16.431873"/> | |
| 223 | +</g> | |
| 224 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 225 | +<use xlink:href="#glyph-0-16" x="235.421846" y="16.431873"/> | |
| 226 | +</g> | |
| 227 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 228 | +<use xlink:href="#glyph-0-3" x="240.248106" y="16.431873"/> | |
| 229 | +<use xlink:href="#glyph-0-10" x="245.208896" y="16.431873"/> | |
| 230 | +<use xlink:href="#glyph-0-6" x="249.740872" y="16.431873"/> | |
| 231 | +</g> | |
| 232 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 233 | +<use xlink:href="#glyph-0-4" x="252.650081" y="16.431873"/> | |
| 234 | +</g> | |
| 235 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 236 | +<use xlink:href="#glyph-0-4" x="260.024001" y="16.431873"/> | |
| 237 | +<use xlink:href="#glyph-0-23" x="264.598017" y="16.431873"/> | |
| 238 | +</g> | |
| 239 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 240 | +<use xlink:href="#glyph-0-4" x="269.642888" y="16.431873"/> | |
| 241 | +<use xlink:href="#glyph-0-9" x="274.216904" y="16.431873"/> | |
| 242 | +<use xlink:href="#glyph-0-6" x="278.235985" y="16.431873"/> | |
| 243 | +<use xlink:href="#glyph-0-7" x="281.271316" y="16.431873"/> | |
| 244 | +<use xlink:href="#glyph-0-21" x="283.591956" y="16.431873"/> | |
| 245 | +</g> | |
| 246 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 247 | +<use xlink:href="#glyph-0-4" x="287.695118" y="16.431873"/> | |
| 248 | +<use xlink:href="#glyph-0-24" x="292.269134" y="16.431873"/> | |
| 249 | +</g> | |
| 250 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 31.152344 L 9.140625 31.152344 C 6.945312 31.152344 5.167969 32.933594 5.167969 35.128906 L 5.167969 44.144531 C 5.167969 46.339844 6.945312 48.121094 9.140625 48.121094 L 304.34375 48.121094 C 306.539062 48.121094 308.320312 46.339844 308.320312 44.144531 L 308.320312 35.128906 C 308.320312 32.933594 306.539062 31.152344 304.34375 31.152344 Z M 304.34375 31.152344 "/> | |
| 251 | +<g clip-path="url(#clip-1)"> | |
| 252 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -17.406979 L -147.958326 -17.406979 C -150.158934 -17.406979 -151.940565 -19.192525 -151.940565 -21.393133 L -151.940565 -30.430505 C -151.940565 -32.631113 -150.158934 -34.41666 -147.958326 -34.41666 L 147.956874 -34.41666 C 150.157482 -34.41666 151.943028 -32.631113 151.943028 -30.430505 L 151.943028 -21.393133 C 151.943028 -19.192525 150.157482 -17.406979 147.956874 -17.406979 Z M 147.956874 -17.406979 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 253 | +</g> | |
| 254 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 255 | +<use xlink:href="#glyph-0-25" x="81.1722" y="42.896038"/> | |
| 256 | +<use xlink:href="#glyph-0-1" x="85.342627" y="42.896038"/> | |
| 257 | +</g> | |
| 258 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 259 | +<use xlink:href="#glyph-0-26" x="90.160479" y="42.896038"/> | |
| 260 | +</g> | |
| 261 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 262 | +<use xlink:href="#glyph-0-15" x="94.961514" y="42.896038"/> | |
| 263 | +</g> | |
| 264 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 265 | +<use xlink:href="#glyph-0-10" x="97.39146" y="42.896038"/> | |
| 266 | +<use xlink:href="#glyph-0-5" x="101.923436" y="42.896038"/> | |
| 267 | +<use xlink:href="#glyph-0-7" x="106.791737" y="42.896038"/> | |
| 268 | +<use xlink:href="#glyph-0-8" x="109.112377" y="42.896038"/> | |
| 269 | +<use xlink:href="#glyph-0-9" x="113.921821" y="42.896038"/> | |
| 270 | +</g> | |
| 271 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 272 | +<use xlink:href="#glyph-0-10" x="117.898861" y="42.896038"/> | |
| 273 | +<use xlink:href="#glyph-0-6" x="122.430837" y="42.896038"/> | |
| 274 | +<use xlink:href="#glyph-0-7" x="125.466168" y="42.896038"/> | |
| 275 | +<use xlink:href="#glyph-0-11" x="127.786808" y="42.896038"/> | |
| 276 | +<use xlink:href="#glyph-0-5" x="132.697149" y="42.896038"/> | |
| 277 | +</g> | |
| 278 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 279 | +<use xlink:href="#glyph-0-4" x="140.373761" y="42.896038"/> | |
| 280 | +<use xlink:href="#glyph-0-6" x="144.947778" y="42.896038"/> | |
| 281 | +</g> | |
| 282 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 283 | +<use xlink:href="#glyph-0-9" x="150.783012" y="42.896038"/> | |
| 284 | +</g> | |
| 285 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 286 | +<use xlink:href="#glyph-0-11" x="154.675971" y="42.896038"/> | |
| 287 | +<use xlink:href="#glyph-0-15" x="159.586312" y="42.896038"/> | |
| 288 | +<use xlink:href="#glyph-0-15" x="162.058298" y="42.896038"/> | |
| 289 | +</g> | |
| 290 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 291 | +<use xlink:href="#glyph-0-4" x="164.488245" y="42.896038"/> | |
| 292 | +<use xlink:href="#glyph-0-9" x="169.062261" y="42.896038"/> | |
| 293 | +<use xlink:href="#glyph-0-6" x="173.081342" y="42.896038"/> | |
| 294 | +</g> | |
| 295 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 296 | +<use xlink:href="#glyph-0-4" x="175.990551" y="42.896038"/> | |
| 297 | +</g> | |
| 298 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 299 | +<use xlink:href="#glyph-0-3" x="183.36447" y="42.896038"/> | |
| 300 | +<use xlink:href="#glyph-0-4" x="188.32526" y="42.896038"/> | |
| 301 | +<use xlink:href="#glyph-0-17" x="192.899276" y="42.896038"/> | |
| 302 | +</g> | |
| 303 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 304 | +<use xlink:href="#glyph-0-3" x="199.634179" y="42.896038"/> | |
| 305 | +<use xlink:href="#glyph-0-11" x="204.594969" y="42.896038"/> | |
| 306 | +<use xlink:href="#glyph-0-5" x="209.50531" y="42.896038"/> | |
| 307 | +<use xlink:href="#glyph-0-5" x="214.373611" y="42.896038"/> | |
| 308 | +<use xlink:href="#glyph-0-27" x="219.241911" y="42.896038"/> | |
| 309 | +<use xlink:href="#glyph-0-4" x="223.815928" y="42.896038"/> | |
| 310 | +<use xlink:href="#glyph-0-17" x="228.389944" y="42.896038"/> | |
| 311 | +</g> | |
| 312 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 57 L 9.140625 57 C 6.945312 57 5.167969 58.78125 5.167969 60.976562 L 5.167969 69.992188 C 5.167969 72.1875 6.945312 73.96875 9.140625 73.96875 L 304.34375 73.96875 C 306.539062 73.96875 308.320312 72.1875 308.320312 69.992188 L 308.320312 60.976562 C 308.320312 58.78125 306.539062 57 304.34375 57 Z M 304.34375 57 "/> | |
| 313 | +<g clip-path="url(#clip-2)"> | |
| 314 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -43.316983 L -147.958326 -43.316983 C -150.158934 -43.316983 -151.940565 -45.10253 -151.940565 -47.303138 L -151.940565 -56.34051 C -151.940565 -58.541118 -150.158934 -60.326665 -147.958326 -60.326665 L 147.956874 -60.326665 C 150.157482 -60.326665 151.943028 -58.541118 151.943028 -56.34051 L 151.943028 -47.303138 C 151.943028 -45.10253 150.157482 -43.316983 147.956874 -43.316983 Z M 147.956874 -43.316983 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 315 | +</g> | |
| 316 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 317 | +<use xlink:href="#glyph-0-28" x="85.043861" y="67.896732"/> | |
| 318 | +<use xlink:href="#glyph-0-1" x="89.147023" y="67.896732"/> | |
| 319 | +</g> | |
| 320 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 321 | +<use xlink:href="#glyph-0-29" x="93.964875" y="67.896732"/> | |
| 322 | +<use xlink:href="#glyph-0-5" x="98.782726" y="67.896732"/> | |
| 323 | +<use xlink:href="#glyph-0-10" x="103.651027" y="67.896732"/> | |
| 324 | +</g> | |
| 325 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 326 | +<use xlink:href="#glyph-0-15" x="108.140962" y="67.896732"/> | |
| 327 | +</g> | |
| 328 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 329 | +<use xlink:href="#glyph-0-19" x="110.528868" y="67.896732"/> | |
| 330 | +</g> | |
| 331 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 332 | +<use xlink:href="#glyph-0-17" x="114.606805" y="67.896732"/> | |
| 333 | +<use xlink:href="#glyph-0-4" x="118.533396" y="67.896732"/> | |
| 334 | +</g> | |
| 335 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 336 | +<use xlink:href="#glyph-0-3" x="125.915724" y="67.896732"/> | |
| 337 | +<use xlink:href="#glyph-0-12" x="130.876514" y="67.896732"/> | |
| 338 | +</g> | |
| 339 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 340 | +<use xlink:href="#glyph-0-13" x="138.511086" y="67.896732"/> | |
| 341 | +<use xlink:href="#glyph-0-10" x="145.657986" y="67.896732"/> | |
| 342 | +<use xlink:href="#glyph-0-22" x="150.189962" y="67.896732"/> | |
| 343 | +</g> | |
| 344 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 345 | +<use xlink:href="#glyph-0-9" x="153.242109" y="67.896732"/> | |
| 346 | +<use xlink:href="#glyph-0-30" x="157.261189" y="67.896732"/> | |
| 347 | +<use xlink:href="#glyph-0-27" x="162.12949" y="67.896732"/> | |
| 348 | +</g> | |
| 349 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 350 | +<use xlink:href="#glyph-0-4" x="169.50341" y="67.896732"/> | |
| 351 | +<use xlink:href="#glyph-0-6" x="174.077426" y="67.896732"/> | |
| 352 | +</g> | |
| 353 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 354 | +<use xlink:href="#glyph-0-3" x="179.91266" y="67.896732"/> | |
| 355 | +<use xlink:href="#glyph-0-12" x="184.87345" y="67.896732"/> | |
| 356 | +</g> | |
| 357 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 358 | +<use xlink:href="#glyph-0-21" x="192.51643" y="67.896732"/> | |
| 359 | +</g> | |
| 360 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 361 | +<use xlink:href="#glyph-0-11" x="196.619591" y="67.896732"/> | |
| 362 | +<use xlink:href="#glyph-0-7" x="201.529932" y="67.896732"/> | |
| 363 | +<use xlink:href="#glyph-0-17" x="203.850573" y="67.896732"/> | |
| 364 | +<use xlink:href="#glyph-0-7" x="207.777164" y="67.896732"/> | |
| 365 | +<use xlink:href="#glyph-0-5" x="210.097805" y="67.896732"/> | |
| 366 | +<use xlink:href="#glyph-0-10" x="214.966106" y="67.896732"/> | |
| 367 | +<use xlink:href="#glyph-0-18" x="219.498081" y="67.896732"/> | |
| 368 | +<use xlink:href="#glyph-0-4" x="223.870303" y="67.896732"/> | |
| 369 | +</g> | |
| 370 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 82.847656 L 9.140625 82.847656 C 6.945312 82.847656 5.167969 84.628906 5.167969 86.824219 L 5.167969 95.839844 C 5.167969 98.035156 6.945312 99.816406 9.140625 99.816406 L 304.34375 99.816406 C 306.539062 99.816406 308.320312 98.035156 308.320312 95.839844 L 308.320312 86.824219 C 308.320312 84.628906 306.539062 82.847656 304.34375 82.847656 Z M 304.34375 82.847656 "/> | |
| 371 | +<g clip-path="url(#clip-3)"> | |
| 372 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -69.226988 L -147.958326 -69.226988 C -150.158934 -69.226988 -151.940565 -71.012535 -151.940565 -73.213143 L -151.940565 -82.250515 C -151.940565 -84.451123 -150.158934 -86.236669 -147.958326 -86.236669 L 147.956874 -86.236669 C 150.157482 -86.236669 151.943028 -84.451123 151.943028 -82.250515 L 151.943028 -73.213143 C 151.943028 -71.012535 150.157482 -69.226988 147.956874 -69.226988 Z M 147.956874 -69.226988 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 373 | +</g> | |
| 374 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 375 | +<use xlink:href="#glyph-0-31" x="90.322129" y="93.745381"/> | |
| 376 | +</g> | |
| 377 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 378 | +<use xlink:href="#glyph-0-1" x="94.585045" y="93.745381"/> | |
| 379 | +</g> | |
| 380 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 381 | +<use xlink:href="#glyph-0-29" x="99.402897" y="93.745381"/> | |
| 382 | +<use xlink:href="#glyph-0-5" x="104.220749" y="93.745381"/> | |
| 383 | +<use xlink:href="#glyph-0-10" x="109.089049" y="93.745381"/> | |
| 384 | +</g> | |
| 385 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 386 | +<use xlink:href="#glyph-0-15" x="113.578984" y="93.745381"/> | |
| 387 | +</g> | |
| 388 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 389 | +<use xlink:href="#glyph-0-19" x="115.96689" y="93.745381"/> | |
| 390 | +</g> | |
| 391 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 392 | +<use xlink:href="#glyph-0-17" x="120.044827" y="93.745381"/> | |
| 393 | +<use xlink:href="#glyph-0-4" x="123.971419" y="93.745381"/> | |
| 394 | +</g> | |
| 395 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 396 | +<use xlink:href="#glyph-0-3" x="131.353747" y="93.745381"/> | |
| 397 | +<use xlink:href="#glyph-0-4" x="136.314536" y="93.745381"/> | |
| 398 | +</g> | |
| 399 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 400 | +<use xlink:href="#glyph-0-15" x="143.688456" y="93.745381"/> | |
| 401 | +</g> | |
| 402 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 403 | +<use xlink:href="#glyph-0-32" x="146.034321" y="93.745381"/> | |
| 404 | +<use xlink:href="#glyph-0-12" x="147.951372" y="93.745381"/> | |
| 405 | +<use xlink:href="#glyph-0-6" x="152.78604" y="93.745381"/> | |
| 406 | +<use xlink:href="#glyph-0-7" x="155.821371" y="93.745381"/> | |
| 407 | +<use xlink:href="#glyph-0-15" x="158.142012" y="93.745381"/> | |
| 408 | +<use xlink:href="#glyph-0-7" x="160.613998" y="93.745381"/> | |
| 409 | +<use xlink:href="#glyph-0-17" x="162.934639" y="93.745381"/> | |
| 410 | +<use xlink:href="#glyph-0-10" x="166.86123" y="93.745381"/> | |
| 411 | +<use xlink:href="#glyph-0-6" x="171.393206" y="93.745381"/> | |
| 412 | +<use xlink:href="#glyph-0-7" x="174.428537" y="93.745381"/> | |
| 413 | +<use xlink:href="#glyph-0-11" x="176.749177" y="93.745381"/> | |
| 414 | +<use xlink:href="#glyph-0-5" x="181.659519" y="93.745381"/> | |
| 415 | +</g> | |
| 416 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 417 | +<use xlink:href="#glyph-0-11" x="189.327722" y="93.745381"/> | |
| 418 | +<use xlink:href="#glyph-0-20" x="194.238064" y="93.745381"/> | |
| 419 | +<use xlink:href="#glyph-0-6" x="199.165221" y="93.745381"/> | |
| 420 | +<use xlink:href="#glyph-0-7" x="202.200552" y="93.745381"/> | |
| 421 | +<use xlink:href="#glyph-0-13" x="204.521192" y="93.745381"/> | |
| 422 | +<use xlink:href="#glyph-0-10" x="211.668093" y="93.745381"/> | |
| 423 | +</g> | |
| 424 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 425 | +<use xlink:href="#glyph-0-15" x="216.158028" y="93.745381"/> | |
| 426 | +</g> | |
| 427 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 428 | +<use xlink:href="#glyph-0-4" x="218.587974" y="93.745381"/> | |
| 429 | +</g> | |
| 430 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 108.699219 L 9.140625 108.699219 C 6.945312 108.699219 5.167969 110.476562 5.167969 112.671875 L 5.167969 121.691406 C 5.167969 123.886719 6.945312 125.664062 9.140625 125.664062 L 304.34375 125.664062 C 306.539062 125.664062 308.320312 123.886719 308.320312 121.691406 L 308.320312 112.671875 C 308.320312 110.476562 306.539062 108.699219 304.34375 108.699219 Z M 304.34375 108.699219 "/> | |
| 431 | +<g clip-path="url(#clip-4)"> | |
| 432 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -95.140909 L -147.958326 -95.140909 C -150.158934 -95.140909 -151.940565 -96.92254 -151.940565 -99.123147 L -151.940565 -108.164435 C -151.940565 -110.365043 -150.158934 -112.146674 -147.958326 -112.146674 L 147.956874 -112.146674 C 150.157482 -112.146674 151.943028 -110.365043 151.943028 -108.164435 L 151.943028 -99.123147 C 151.943028 -96.92254 150.157482 -95.140909 147.956874 -95.140909 Z M 147.956874 -95.140909 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 433 | +</g> | |
| 434 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 435 | +<use xlink:href="#glyph-0-33" x="77.344433" y="119.593033"/> | |
| 436 | +<use xlink:href="#glyph-0-1" x="81.464411" y="119.593033"/> | |
| 437 | +</g> | |
| 438 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 439 | +<use xlink:href="#glyph-0-29" x="86.282263" y="119.593033"/> | |
| 440 | +<use xlink:href="#glyph-0-20" x="91.100115" y="119.593033"/> | |
| 441 | +<use xlink:href="#glyph-0-20" x="96.027272" y="119.593033"/> | |
| 442 | +<use xlink:href="#glyph-0-15" x="100.95443" y="119.593033"/> | |
| 443 | +<use xlink:href="#glyph-0-7" x="103.426416" y="119.593033"/> | |
| 444 | +<use xlink:href="#glyph-0-9" x="105.747057" y="119.593033"/> | |
| 445 | +</g> | |
| 446 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 447 | +<use xlink:href="#glyph-0-10" x="109.724097" y="119.593033"/> | |
| 448 | +<use xlink:href="#glyph-0-6" x="114.256073" y="119.593033"/> | |
| 449 | +<use xlink:href="#glyph-0-7" x="117.291404" y="119.593033"/> | |
| 450 | +<use xlink:href="#glyph-0-11" x="119.612044" y="119.593033"/> | |
| 451 | +<use xlink:href="#glyph-0-5" x="124.522385" y="119.593033"/> | |
| 452 | +</g> | |
| 453 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 454 | +<use xlink:href="#glyph-0-3" x="132.198997" y="119.593033"/> | |
| 455 | +<use xlink:href="#glyph-0-4" x="137.159787" y="119.593033"/> | |
| 456 | +<use xlink:href="#glyph-0-17" x="141.733803" y="119.593033"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-0-13" x="148.460298" y="119.593033"/> | |
| 460 | +<use xlink:href="#glyph-0-27" x="155.607199" y="119.593033"/> | |
| 461 | +<use xlink:href="#glyph-0-6" x="160.181215" y="119.593033"/> | |
| 462 | +<use xlink:href="#glyph-0-30" x="163.216546" y="119.593033"/> | |
| 463 | +<use xlink:href="#glyph-0-11" x="168.084846" y="119.593033"/> | |
| 464 | +<use xlink:href="#glyph-0-3" x="172.995187" y="119.593033"/> | |
| 465 | +<use xlink:href="#glyph-0-4" x="177.955977" y="119.593033"/> | |
| 466 | +<use xlink:href="#glyph-0-17" x="182.529994" y="119.593033"/> | |
| 467 | +</g> | |
| 468 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 469 | +<use xlink:href="#glyph-0-3" x="189.256488" y="119.593033"/> | |
| 470 | +<use xlink:href="#glyph-0-32" x="194.217278" y="119.593033"/> | |
| 471 | +</g> | |
| 472 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 473 | +<use xlink:href="#glyph-0-27" x="196.050248" y="119.593033"/> | |
| 474 | +</g> | |
| 475 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 476 | +<use xlink:href="#glyph-0-21" x="200.582224" y="119.593033"/> | |
| 477 | +</g> | |
| 478 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 479 | +<use xlink:href="#glyph-0-10" x="204.676977" y="119.593033"/> | |
| 480 | +</g> | |
| 481 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 482 | +<use xlink:href="#glyph-0-15" x="209.166912" y="119.593033"/> | |
| 483 | +<use xlink:href="#glyph-0-12" x="211.638899" y="119.593033"/> | |
| 484 | +<use xlink:href="#glyph-0-10" x="216.473567" y="119.593033"/> | |
| 485 | +<use xlink:href="#glyph-0-6" x="221.005543" y="119.593033"/> | |
| 486 | +<use xlink:href="#glyph-0-7" x="224.040874" y="119.593033"/> | |
| 487 | +<use xlink:href="#glyph-0-11" x="226.361514" y="119.593033"/> | |
| 488 | +<use xlink:href="#glyph-0-5" x="231.271856" y="119.593033"/> | |
| 489 | +</g> | |
| 490 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 134.546875 L 9.140625 134.546875 C 6.945312 134.546875 5.167969 136.324219 5.167969 138.523438 L 5.167969 147.539062 C 5.167969 149.734375 6.945312 151.511719 9.140625 151.511719 L 304.34375 151.511719 C 306.539062 151.511719 308.320312 149.734375 308.320312 147.539062 L 308.320312 138.523438 C 308.320312 136.324219 306.539062 134.546875 304.34375 134.546875 Z M 304.34375 134.546875 "/> | |
| 491 | +<g clip-path="url(#clip-5)"> | |
| 492 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -121.050913 L -147.958326 -121.050913 C -150.158934 -121.050913 -151.940565 -122.832544 -151.940565 -125.037068 L -151.940565 -134.07444 C -151.940565 -136.275048 -150.158934 -138.056679 -147.958326 -138.056679 L 147.956874 -138.056679 C 150.157482 -138.056679 151.943028 -136.275048 151.943028 -134.07444 L 151.943028 -125.037068 C 151.943028 -122.832544 150.157482 -121.050913 147.956874 -121.050913 Z M 147.956874 -121.050913 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 493 | +</g> | |
| 494 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 495 | +<use xlink:href="#glyph-0-34" x="78.528577" y="146.288639"/> | |
| 496 | +</g> | |
| 497 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 498 | +<use xlink:href="#glyph-0-1" x="83.02692" y="146.288639"/> | |
| 499 | +</g> | |
| 500 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 501 | +<use xlink:href="#glyph-0-35" x="87.844772" y="146.288639"/> | |
| 502 | +</g> | |
| 503 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 504 | +<use xlink:href="#glyph-0-27" x="92.889643" y="146.288639"/> | |
| 505 | +<use xlink:href="#glyph-0-9" x="97.463659" y="146.288639"/> | |
| 506 | +</g> | |
| 507 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 508 | +<use xlink:href="#glyph-0-11" x="101.356618" y="146.288639"/> | |
| 509 | +<use xlink:href="#glyph-0-5" x="106.266959" y="146.288639"/> | |
| 510 | +<use xlink:href="#glyph-0-9" x="111.13526" y="146.288639"/> | |
| 511 | +<use xlink:href="#glyph-0-7" x="115.15434" y="146.288639"/> | |
| 512 | +<use xlink:href="#glyph-0-15" x="117.474981" y="146.288639"/> | |
| 513 | +<use xlink:href="#glyph-0-7" x="119.946968" y="146.288639"/> | |
| 514 | +<use xlink:href="#glyph-0-10" x="122.267609" y="146.288639"/> | |
| 515 | +<use xlink:href="#glyph-0-6" x="126.799584" y="146.288639"/> | |
| 516 | +<use xlink:href="#glyph-0-7" x="129.834915" y="146.288639"/> | |
| 517 | +<use xlink:href="#glyph-0-11" x="132.155556" y="146.288639"/> | |
| 518 | +<use xlink:href="#glyph-0-5" x="137.065897" y="146.288639"/> | |
| 519 | +</g> | |
| 520 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 521 | +<use xlink:href="#glyph-0-4" x="144.742509" y="146.288639"/> | |
| 522 | +<use xlink:href="#glyph-0-6" x="149.316525" y="146.288639"/> | |
| 523 | +</g> | |
| 524 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 525 | +<use xlink:href="#glyph-0-9" x="155.151759" y="146.288639"/> | |
| 526 | +</g> | |
| 527 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 528 | +<use xlink:href="#glyph-0-11" x="159.044718" y="146.288639"/> | |
| 529 | +<use xlink:href="#glyph-0-5" x="163.955059" y="146.288639"/> | |
| 530 | +<use xlink:href="#glyph-0-9" x="168.82336" y="146.288639"/> | |
| 531 | +<use xlink:href="#glyph-0-15" x="172.84244" y="146.288639"/> | |
| 532 | +<use xlink:href="#glyph-0-12" x="175.314427" y="146.288639"/> | |
| 533 | +<use xlink:href="#glyph-0-17" x="180.149095" y="146.288639"/> | |
| 534 | +<use xlink:href="#glyph-0-7" x="184.075686" y="146.288639"/> | |
| 535 | +<use xlink:href="#glyph-0-11" x="186.396327" y="146.288639"/> | |
| 536 | +<use xlink:href="#glyph-0-5" x="191.306668" y="146.288639"/> | |
| 537 | +</g> | |
| 538 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 539 | +<use xlink:href="#glyph-0-3" x="198.974872" y="146.288639"/> | |
| 540 | +<use xlink:href="#glyph-0-4" x="203.935662" y="146.288639"/> | |
| 541 | +</g> | |
| 542 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 543 | +<use xlink:href="#glyph-0-21" x="211.309582" y="146.288639"/> | |
| 544 | +</g> | |
| 545 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 546 | +<use xlink:href="#glyph-0-10" x="215.404335" y="146.288639"/> | |
| 547 | +</g> | |
| 548 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 549 | +<use xlink:href="#glyph-0-15" x="219.89427" y="146.288639"/> | |
| 550 | +</g> | |
| 551 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 552 | +<use xlink:href="#glyph-0-4" x="222.324217" y="146.288639"/> | |
| 553 | +<use xlink:href="#glyph-0-12" x="226.898233" y="146.288639"/> | |
| 554 | +<use xlink:href="#glyph-0-22" x="231.732901" y="146.288639"/> | |
| 555 | +</g> | |
| 556 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.34375 160.394531 L 9.140625 160.394531 C 6.945312 160.394531 5.167969 162.175781 5.167969 164.371094 L 5.167969 173.386719 C 5.167969 175.582031 6.945312 177.363281 9.140625 177.363281 L 304.34375 177.363281 C 306.539062 177.363281 308.320312 175.582031 308.320312 173.386719 L 308.320312 164.371094 C 308.320312 162.175781 306.539062 160.394531 304.34375 160.394531 Z M 304.34375 160.394531 "/> | |
| 557 | +<g clip-path="url(#clip-6)"> | |
| 558 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.956874 -146.960918 L -147.958326 -146.960918 C -150.158934 -146.960918 -151.940565 -148.746465 -151.940565 -150.947073 L -151.940565 -159.984445 C -151.940565 -162.185053 -150.158934 -163.970599 -147.958326 -163.970599 L 147.956874 -163.970599 C 150.157482 -163.970599 151.943028 -162.185053 151.943028 -159.984445 L 151.943028 -150.947073 C 151.943028 -148.746465 150.157482 -146.960918 147.956874 -146.960918 Z M 147.956874 -146.960918 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 559 | +</g> | |
| 560 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 561 | +<use xlink:href="#glyph-0-36" x="86.718821" y="171.289333"/> | |
| 562 | +</g> | |
| 563 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 564 | +<use xlink:href="#glyph-0-1" x="89.989579" y="171.289333"/> | |
| 565 | +</g> | |
| 566 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 567 | +<use xlink:href="#glyph-0-35" x="94.807431" y="171.289333"/> | |
| 568 | +</g> | |
| 569 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 570 | +<use xlink:href="#glyph-0-27" x="99.852302" y="171.289333"/> | |
| 571 | +<use xlink:href="#glyph-0-3" x="104.426318" y="171.289333"/> | |
| 572 | +<use xlink:href="#glyph-0-10" x="109.387108" y="171.289333"/> | |
| 573 | +<use xlink:href="#glyph-0-9" x="113.919084" y="171.289333"/> | |
| 574 | +<use xlink:href="#glyph-0-6" x="117.938164" y="171.289333"/> | |
| 575 | +<use xlink:href="#glyph-0-7" x="120.973495" y="171.289333"/> | |
| 576 | +<use xlink:href="#glyph-0-11" x="123.294136" y="171.289333"/> | |
| 577 | +<use xlink:href="#glyph-0-5" x="128.204477" y="171.289333"/> | |
| 578 | +</g> | |
| 579 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 580 | +<use xlink:href="#glyph-0-3" x="135.881089" y="171.289333"/> | |
| 581 | +<use xlink:href="#glyph-0-12" x="140.841879" y="171.289333"/> | |
| 582 | +</g> | |
| 583 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 584 | +<use xlink:href="#glyph-0-22" x="148.47645" y="171.289333"/> | |
| 585 | +</g> | |
| 586 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 587 | +<use xlink:href="#glyph-0-10" x="151.528597" y="171.289333"/> | |
| 588 | +<use xlink:href="#glyph-0-20" x="156.060573" y="171.289333"/> | |
| 589 | +<use xlink:href="#glyph-0-20" x="160.98773" y="171.289333"/> | |
| 590 | +<use xlink:href="#glyph-0-11" x="165.914887" y="171.289333"/> | |
| 591 | +<use xlink:href="#glyph-0-22" x="170.825228" y="171.289333"/> | |
| 592 | +<use xlink:href="#glyph-0-6" x="174.045538" y="171.289333"/> | |
| 593 | +</g> | |
| 594 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 595 | +<use xlink:href="#glyph-0-3" x="179.880772" y="171.289333"/> | |
| 596 | +<use xlink:href="#glyph-0-32" x="184.841562" y="171.289333"/> | |
| 597 | +</g> | |
| 598 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 599 | +<use xlink:href="#glyph-0-27" x="186.674532" y="171.289333"/> | |
| 600 | +</g> | |
| 601 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 602 | +<use xlink:href="#glyph-0-21" x="191.206507" y="171.289333"/> | |
| 603 | +</g> | |
| 604 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 605 | +<use xlink:href="#glyph-0-10" x="195.301261" y="171.289333"/> | |
| 606 | +</g> | |
| 607 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 608 | +<use xlink:href="#glyph-0-15" x="199.791196" y="171.289333"/> | |
| 609 | +<use xlink:href="#glyph-0-12" x="202.263183" y="171.289333"/> | |
| 610 | +<use xlink:href="#glyph-0-10" x="207.097851" y="171.289333"/> | |
| 611 | +<use xlink:href="#glyph-0-6" x="211.629827" y="171.289333"/> | |
| 612 | +<use xlink:href="#glyph-0-7" x="214.665157" y="171.289333"/> | |
| 613 | +<use xlink:href="#glyph-0-11" x="216.985798" y="171.289333"/> | |
| 614 | +<use xlink:href="#glyph-0-5" x="221.896139" y="171.289333"/> | |
| 615 | +</g> | |
| 616 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -8.702439 L -0.000726254 -16.412398 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 617 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550212 3.112233 C -2.084247 1.244458 -1.046594 0.363431 -0.00110934 -0.000726254 C -1.046594 -0.364884 -2.084247 -1.24591 -2.550212 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 30.555794)"/> | |
| 618 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -34.612443 L -0.000726254 -42.322403 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 619 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551077 3.112233 C -2.085112 1.244458 -1.047459 0.363431 0.0019411 -0.000726254 C -1.047459 -0.364884 -2.085112 -1.24591 -2.551077 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 56.404314)"/> | |
| 620 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -60.526364 L -0.000726254 -68.232407 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 621 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551953 3.112233 C -2.085988 1.244458 -1.044419 0.363431 0.00106587 -0.000726254 C -1.044419 -0.364884 -2.085988 -1.24591 -2.551953 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 82.252843)"/> | |
| 622 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -86.436369 L -0.000726254 -94.142412 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 623 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548902 3.112233 C -2.082937 1.244458 -1.045284 0.363431 0.000200641 -0.000726254 C -1.045284 -0.364884 -2.082937 -1.24591 -2.548902 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 108.101362)"/> | |
| 624 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -112.346373 L -0.000726254 -120.052417 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 625 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549767 3.112233 C -2.083802 1.244458 -1.046149 0.363431 -0.000664589 -0.000726254 C -1.046149 -0.364884 -2.083802 -1.24591 -2.549767 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 133.949882)"/> | |
| 626 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000726254 -138.256378 L -0.000726254 -145.966337 " transform="matrix(0.997594, 0, 0, -0.997594, 156.742912, 13.787252)"/> | |
| 627 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550643 3.112233 C -2.084678 1.244458 -1.047024 0.363431 -0.00153982 -0.000726254 C -1.047024 -0.364884 -2.084678 -1.24591 -2.550643 -3.10977 " transform="matrix(0, 0.997594, 0.997594, 0, 156.742912, 159.798411)"/> | |
| 628 | +</svg> | |
added
dist/assets/fig/a66445bc73b67ae3.svg
+471 −0
@@ -0,0 +1,471 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="349.229pt" height="97.216pt" viewBox="0 0 349.229 97.216"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.421875 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 1.921875 0 L 1.921875 -1.9375 L 2.546875 -1.9375 C 3.875 -1.9375 4.828125 -2.5625 4.828125 -3.90625 C 4.828125 -5.171875 3.90625 -5.796875 2.421875 -5.796875 Z M 2.421875 -2.921875 L 1.921875 -2.921875 L 1.921875 -4.8125 L 2.40625 -4.8125 C 3.078125 -4.8125 3.421875 -4.515625 3.421875 -3.90625 C 3.421875 -3.171875 3.046875 -2.921875 2.421875 -2.921875 Z M 2.421875 -2.921875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.015625 -7.984375 L 1.15625 -6.953125 L 1.5 -6.28125 L 3.5 -7 Z M 4.09375 -5.796875 L 0.546875 -5.796875 L 0.546875 0 L 4.09375 0 L 4.09375 -0.984375 L 1.921875 -0.984375 L 1.921875 -2.46875 L 3.6875 -2.46875 L 3.6875 -3.421875 L 1.921875 -3.421875 L 1.921875 -4.8125 L 3.953125 -4.8125 Z M 4.09375 -5.796875 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 3.046875 -5.9375 C 1.5 -5.9375 0.28125 -4.859375 0.28125 -2.90625 C 0.28125 -0.921875 1.15625 0.140625 2.9375 0.140625 C 3.65625 0.140625 4.40625 -0.078125 5.015625 -0.46875 L 5.015625 -3.328125 L 2.796875 -3.328125 L 2.9375 -2.359375 L 3.6875 -2.359375 L 3.6875 -1.046875 C 3.4375 -0.921875 3.1875 -0.859375 2.90625 -0.859375 C 2.09375 -0.859375 1.703125 -1.375 1.703125 -2.90625 C 1.703125 -4.34375 2.296875 -4.9375 3.109375 -4.9375 C 3.578125 -4.9375 3.890625 -4.796875 4.28125 -4.5 L 4.984375 -5.21875 C 4.5 -5.640625 3.890625 -5.9375 3.046875 -5.9375 Z M 3.046875 -5.9375 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 2.40625 -5.9375 C 1.203125 -5.9375 0.3125 -5.28125 0.3125 -4.265625 C 0.3125 -3.40625 0.796875 -2.875 2.09375 -2.46875 C 2.9375 -2.203125 3.15625 -2.015625 3.15625 -1.59375 C 3.15625 -1.140625 2.796875 -0.875 2.234375 -0.875 C 1.65625 -0.875 1.203125 -1.09375 0.765625 -1.453125 L 0.078125 -0.6875 C 0.546875 -0.21875 1.265625 0.140625 2.28125 0.140625 C 3.71875 0.140625 4.578125 -0.609375 4.578125 -1.6875 C 4.578125 -2.765625 3.953125 -3.203125 2.84375 -3.5625 C 1.953125 -3.84375 1.734375 -4 1.734375 -4.359375 C 1.734375 -4.734375 2.03125 -4.9375 2.515625 -4.9375 C 2.96875 -4.9375 3.375 -4.765625 3.78125 -4.453125 L 4.40625 -5.1875 C 3.90625 -5.671875 3.296875 -5.9375 2.40625 -5.9375 Z M 2.40625 -5.9375 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-1-0"> | |
| 18 | +<path d="M 2.84375 -4.5 C 2.296875 -4.5 1.859375 -4.234375 1.53125 -3.796875 L 1.53125 -6.25 L 0.765625 -6.171875 L 0.765625 0 L 1.53125 0 L 1.53125 -3.140625 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.0625 -3.90625 3.359375 -3.71875 3.359375 -3.046875 L 3.359375 0 L 4.125 0 L 4.125 -3.15625 C 4.125 -3.984375 3.640625 -4.5 2.84375 -4.5 Z M 2.84375 -4.5 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-1-1"> | |
| 21 | +<path d="M 4.03125 -4.40625 L 3.234375 -4.40625 L 2.078125 -0.5625 L 0.90625 -4.40625 L 0.078125 -4.40625 L 1.5625 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.171875 L 0.515625 1.78125 C 1.734375 1.640625 2.25 0.96875 2.5625 0.03125 Z M 4.03125 -4.40625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-1-2"> | |
| 24 | +<path d="M 1.984375 -4.5 C 1.078125 -4.5 0.40625 -4 0.40625 -3.296875 C 0.40625 -2.671875 0.78125 -2.265625 1.734375 -2.015625 C 2.578125 -1.78125 2.796875 -1.625 2.796875 -1.1875 C 2.796875 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.375 -0.515625 0.96875 -0.671875 0.625 -0.9375 L 0.203125 -0.46875 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.765625 0.09375 3.609375 -0.3125 3.609375 -1.234375 C 3.609375 -2 3.078125 -2.375 2.140625 -2.609375 C 1.4375 -2.796875 1.203125 -2.953125 1.203125 -3.3125 C 1.203125 -3.671875 1.515625 -3.890625 2.015625 -3.890625 C 2.421875 -3.890625 2.765625 -3.765625 3.15625 -3.515625 L 3.484375 -4 C 3.0625 -4.328125 2.609375 -4.5 1.984375 -4.5 Z M 1.984375 -4.5 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-1-3"> | |
| 27 | +<path d="M 1.140625 -6.515625 C 0.828125 -6.515625 0.609375 -6.296875 0.609375 -6 C 0.609375 -5.703125 0.828125 -5.46875 1.140625 -5.46875 C 1.46875 -5.46875 1.6875 -5.703125 1.6875 -6 C 1.6875 -6.296875 1.46875 -6.515625 1.140625 -6.515625 Z M 1.53125 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 Z M 1.53125 -4.40625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-1-4"> | |
| 30 | +<path d="M 3.5 -4.40625 L 3.4375 -3.90625 C 3.140625 -4.25 2.75 -4.5 2.203125 -4.5 C 1.125 -4.5 0.46875 -3.53125 0.46875 -2.1875 C 0.46875 -0.8125 1.0625 0.09375 2.140625 0.09375 C 2.671875 0.09375 3.109375 -0.15625 3.390625 -0.578125 L 3.390625 1.6875 L 4.15625 1.78125 L 4.15625 -4.40625 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.296875 -1.03125 1.296875 -2.203125 C 1.296875 -3.34375 1.71875 -3.890625 2.375 -3.890625 C 2.8125 -3.890625 3.125 -3.671875 3.390625 -3.3125 L 3.390625 -1.15625 C 3.09375 -0.75 2.796875 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-1-5"> | |
| 33 | +<path d="M 4.03125 -4.40625 L 3.265625 -4.40625 L 3.265625 -1.265625 C 3 -0.8125 2.640625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.484375 -0.734375 1.484375 -1.328125 L 1.484375 -4.40625 L 0.71875 -4.40625 L 0.71875 -1.25 C 0.71875 -0.390625 1.171875 0.09375 1.953125 0.09375 C 2.578125 0.09375 2.984375 -0.15625 3.3125 -0.6875 L 3.375 0 L 4.03125 0 Z M 4.03125 -4.40625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-1-6"> | |
| 36 | +<path d="M 4.125 -2.328125 C 4.125 -3.671875 3.5 -4.5 2.3125 -4.5 C 1.171875 -4.5 0.46875 -3.53125 0.46875 -2.15625 C 0.46875 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.03125 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.109375 -2.046875 4.125 -2.1875 4.125 -2.328125 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.484375 1.734375 -3.890625 2.328125 -3.890625 C 3.015625 -3.890625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-1-7"> | |
| 39 | +<path d="M 2.8125 -6.75 L 0.875 0.703125 L 1.53125 0.875 L 3.46875 -6.59375 Z M 2.8125 -6.75 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-1-8"> | |
| 42 | +<path d="M 2.84375 -4.5 C 2.265625 -4.5 1.796875 -4.203125 1.5 -3.75 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -3.125 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.078125 -3.90625 3.359375 -3.71875 3.359375 -3.046875 L 3.359375 0 L 4.125 0 L 4.125 -3.15625 C 4.125 -4 3.65625 -4.5 2.84375 -4.5 Z M 2.84375 -4.5 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-1-9"> | |
| 45 | +<path d="M 4.03125 -4.40625 L 3.21875 -4.40625 L 2.078125 -0.6875 L 0.921875 -4.40625 L 0.078125 -4.40625 L 1.609375 0 L 2.53125 0 Z M 4.03125 -4.40625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-1-10"> | |
| 48 | +<path d="M 2.6875 -4.5 C 2.140625 -4.5 1.734375 -4.171875 1.5 -3.515625 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -2.515625 C 1.71875 -3.359375 2.046875 -3.75 2.59375 -3.75 C 2.75 -3.75 2.84375 -3.734375 2.96875 -3.703125 L 3.125 -4.453125 C 2.984375 -4.484375 2.828125 -4.5 2.6875 -4.5 Z M 2.6875 -4.5 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-1-11"> | |
| 51 | +<path d="M 2.453125 -4.5 C 1.203125 -4.5 0.46875 -3.5625 0.46875 -2.203125 C 0.46875 -0.796875 1.1875 0.09375 2.4375 0.09375 C 3.6875 0.09375 4.40625 -0.84375 4.40625 -2.203125 C 4.40625 -3.609375 3.703125 -4.5 2.453125 -4.5 Z M 2.453125 -3.890625 C 3.171875 -3.890625 3.578125 -3.359375 3.578125 -2.203125 C 3.578125 -1.046875 3.171875 -0.515625 2.4375 -0.515625 C 1.703125 -0.515625 1.296875 -1.046875 1.296875 -2.203125 C 1.296875 -3.359375 1.71875 -3.890625 2.453125 -3.890625 Z M 2.453125 -3.890625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-1-12"> | |
| 54 | +<path d="M 5.1875 -4.5 C 4.59375 -4.5 4.203125 -4.1875 3.875 -3.71875 C 3.71875 -4.21875 3.3125 -4.5 2.765625 -4.5 C 2.1875 -4.5 1.78125 -4.203125 1.5 -3.765625 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -3.125 C 1.828125 -3.59375 2.09375 -3.90625 2.578125 -3.90625 C 2.90625 -3.90625 3.1875 -3.71875 3.1875 -3.046875 L 3.1875 0 L 3.96875 0 L 3.96875 -3.125 C 4.265625 -3.59375 4.515625 -3.90625 5 -3.90625 C 5.328125 -3.90625 5.625 -3.71875 5.625 -3.046875 L 5.625 0 L 6.390625 0 L 6.390625 -3.15625 C 6.390625 -3.984375 5.90625 -4.5 5.1875 -4.5 Z M 5.1875 -4.5 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-1-13"> | |
| 57 | +<path d="M 2.71875 -0.703125 C 2.515625 -0.59375 2.328125 -0.53125 2.140625 -0.53125 C 1.75 -0.53125 1.609375 -0.75 1.609375 -1.1875 L 1.609375 -3.8125 L 2.578125 -3.8125 L 2.65625 -4.40625 L 1.609375 -4.40625 L 1.609375 -5.484375 L 0.84375 -5.40625 L 0.84375 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.84375 -3.8125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.28125 0.09375 2.03125 0.09375 C 2.40625 0.09375 2.71875 0 3.015625 -0.203125 Z M 2.71875 -0.703125 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-14"> | |
| 60 | +<path d="M 3.71875 -1.03125 L 3.71875 -3.046875 C 3.71875 -3.96875 3.234375 -4.5 2.171875 -4.5 C 1.6875 -4.5 1.203125 -4.40625 0.65625 -4.203125 L 0.84375 -3.640625 C 1.296875 -3.796875 1.703125 -3.875 2.03125 -3.875 C 2.640625 -3.875 2.953125 -3.640625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.734375 -0.09375 3.046875 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.90625 0.09375 L 4.09375 -0.4375 C 3.859375 -0.515625 3.71875 -0.640625 3.71875 -1.03125 Z M 1.921875 -0.46875 C 1.40625 -0.46875 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.15625 C 2.703125 -0.703125 2.359375 -0.46875 1.921875 -0.46875 Z M 1.921875 -0.46875 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-15"> | |
| 63 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.40625 L 2.96875 -4.40625 L 2.046875 -2.796875 L 1.125 -4.40625 L 0.21875 -4.40625 L 1.578125 -2.328125 L 0.046875 0 L 0.90625 0 L 2 -1.859375 L 3.078125 0 L 4.015625 0 Z M 2.484375 -2.359375 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-16"> | |
| 66 | +<path d="M 2.40625 -4.5 C 1.203125 -4.5 0.46875 -3.5625 0.46875 -2.171875 C 0.46875 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.90625 0.09375 3.359375 -0.0625 3.75 -0.390625 L 3.390625 -0.890625 C 3.0625 -0.671875 2.796875 -0.546875 2.4375 -0.546875 C 1.734375 -0.546875 1.296875 -1.03125 1.296875 -2.1875 C 1.296875 -3.328125 1.734375 -3.875 2.4375 -3.875 C 2.796875 -3.875 3.078125 -3.765625 3.375 -3.546875 L 3.75 -4.03125 C 3.328125 -4.375 2.921875 -4.5 2.40625 -4.5 Z M 2.40625 -4.5 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-17"> | |
| 69 | +<path d="M 2.3125 -6.265625 C 1.234375 -6.265625 0.78125 -5.71875 0.78125 -4.984375 L 0.78125 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.78125 -3.8125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.8125 L 3.25 -3.8125 L 3.25 0 L 4.015625 0 L 4.015625 -4.40625 L 1.5625 -4.40625 L 1.5625 -4.984375 C 1.5625 -5.40625 1.71875 -5.640625 2.328125 -5.640625 C 2.671875 -5.640625 2.984375 -5.5625 3.265625 -5.4375 L 3.53125 -5.96875 C 3.171875 -6.15625 2.796875 -6.265625 2.3125 -6.265625 Z M 2.3125 -6.265625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-18"> | |
| 72 | +<path d="M 3.328125 -6.046875 L 3 -6.703125 L 1.328125 -5.75 L 1.5625 -5.328125 Z M 4.125 -2.328125 C 4.125 -3.671875 3.5 -4.5 2.3125 -4.5 C 1.171875 -4.5 0.46875 -3.53125 0.46875 -2.15625 C 0.46875 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.03125 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.109375 -2.046875 4.125 -2.1875 4.125 -2.328125 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.484375 1.734375 -3.890625 2.328125 -3.890625 C 3.015625 -3.890625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-19"> | |
| 75 | +<path d="M 4.125 -4.90625 C 3.609375 -4.671875 3.203125 -4.484375 2.109375 -4.5 C 1.140625 -4.5 0.40625 -3.875 0.40625 -2.96875 C 0.40625 -2.40625 0.640625 -2.015625 1.15625 -1.75 C 0.84375 -1.53125 0.671875 -1.25 0.671875 -0.96875 C 0.671875 -0.53125 1.015625 -0.140625 1.8125 -0.140625 L 2.5 -0.140625 C 3.046875 -0.140625 3.390625 0.078125 3.390625 0.5 C 3.390625 0.9375 3.046875 1.171875 2.09375 1.171875 C 1.125 1.171875 0.90625 0.9375 0.90625 0.4375 L 0.203125 0.4375 C 0.203125 1.34375 0.65625 1.78125 2.09375 1.78125 C 3.453125 1.78125 4.15625 1.296875 4.15625 0.4375 C 4.15625 -0.265625 3.5625 -0.78125 2.65625 -0.78125 L 1.953125 -0.78125 C 1.5 -0.78125 1.375 -0.9375 1.375 -1.140625 C 1.375 -1.296875 1.46875 -1.453125 1.59375 -1.546875 C 1.78125 -1.484375 1.953125 -1.46875 2.15625 -1.46875 C 3.203125 -1.46875 3.84375 -2.09375 3.84375 -2.953125 C 3.84375 -3.46875 3.578125 -3.84375 3.0625 -4.078125 C 3.5625 -4.078125 3.984375 -4.09375 4.34375 -4.203125 Z M 2.109375 -3.953125 C 2.734375 -3.953125 3.046875 -3.625 3.046875 -2.96875 C 3.046875 -2.34375 2.71875 -1.96875 2.125 -1.96875 C 1.515625 -1.96875 1.203125 -2.375 1.203125 -2.96875 C 1.203125 -3.546875 1.515625 -3.953125 2.109375 -3.953125 Z M 2.109375 -3.953125 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-20"> | |
| 78 | +<path d="M 1.640625 0.09375 C 1.859375 0.09375 2.078125 0.046875 2.25 -0.046875 L 2.046875 -0.578125 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.484375 -0.65625 1.484375 -0.890625 L 1.484375 -6.265625 L 0.71875 -6.171875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-21"> | |
| 81 | +<path d="M 3.390625 -6.265625 L 3.390625 -3.96875 C 3.09375 -4.265625 2.71875 -4.5 2.203125 -4.5 C 1.125 -4.5 0.46875 -3.53125 0.46875 -2.1875 C 0.46875 -0.8125 1.0625 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.171875 3.40625 -0.609375 L 3.484375 0 L 4.15625 0 L 4.15625 -6.171875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.296875 -1.03125 1.296875 -2.203125 C 1.296875 -3.34375 1.71875 -3.890625 2.375 -3.890625 C 2.8125 -3.890625 3.125 -3.671875 3.390625 -3.3125 L 3.390625 -1.15625 C 3.09375 -0.75 2.796875 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-22"> | |
| 84 | +<path d="M 2.796875 -4.5 C 2.296875 -4.5 1.8125 -4.265625 1.484375 -3.8125 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 1.78125 L 1.53125 1.6875 L 1.53125 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.6875 0.09375 C 3.828125 0.09375 4.421875 -0.875 4.421875 -2.203125 C 4.421875 -3.59375 3.96875 -4.5 2.796875 -4.5 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.53125 -1.0625 L 1.53125 -3.203125 C 1.765625 -3.5625 2.125 -3.890625 2.59375 -3.890625 C 3.265625 -3.890625 3.59375 -3.359375 3.59375 -2.203125 C 3.59375 -1.046875 3.203125 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-2-0"> | |
| 87 | +<path d="M 1.765625 -4.015625 C 0.953125 -4.015625 0.359375 -3.5625 0.359375 -2.9375 C 0.359375 -2.375 0.6875 -2.015625 1.546875 -1.796875 C 2.296875 -1.59375 2.484375 -1.4375 2.484375 -1.0625 C 2.484375 -0.6875 2.171875 -0.46875 1.65625 -0.46875 C 1.234375 -0.46875 0.859375 -0.609375 0.546875 -0.84375 L 0.1875 -0.421875 C 0.53125 -0.125 1 0.09375 1.671875 0.09375 C 2.46875 0.09375 3.21875 -0.28125 3.21875 -1.09375 C 3.21875 -1.78125 2.734375 -2.109375 1.90625 -2.328125 C 1.28125 -2.484375 1.078125 -2.640625 1.078125 -2.953125 C 1.078125 -3.265625 1.34375 -3.46875 1.796875 -3.46875 C 2.15625 -3.46875 2.46875 -3.359375 2.8125 -3.125 L 3.09375 -3.5625 C 2.734375 -3.84375 2.328125 -4.015625 1.765625 -4.015625 Z M 1.765625 -4.015625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-2-1"> | |
| 90 | +<path d="M 1.015625 -5.796875 C 0.734375 -5.796875 0.546875 -5.59375 0.546875 -5.328125 C 0.546875 -5.078125 0.734375 -4.875 1.015625 -4.875 C 1.3125 -4.875 1.5 -5.078125 1.5 -5.328125 C 1.5 -5.59375 1.3125 -5.796875 1.015625 -5.796875 Z M 1.375 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 Z M 1.375 -3.921875 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-2-2"> | |
| 93 | +<path d="M 2.421875 -0.625 C 2.234375 -0.53125 2.078125 -0.46875 1.90625 -0.46875 C 1.5625 -0.46875 1.4375 -0.65625 1.4375 -1.0625 L 1.4375 -3.390625 L 2.296875 -3.390625 L 2.359375 -3.921875 L 1.4375 -3.921875 L 1.4375 -4.890625 L 0.75 -4.796875 L 0.75 -3.921875 L 0.0625 -3.921875 L 0.0625 -3.390625 L 0.75 -3.390625 L 0.75 -1.03125 C 0.75 -0.296875 1.140625 0.09375 1.8125 0.09375 C 2.140625 0.09375 2.421875 0 2.6875 -0.171875 Z M 2.421875 -0.625 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-2-3"> | |
| 96 | +<path d="M 3.671875 -2.078125 C 3.671875 -3.265625 3.109375 -4.015625 2.046875 -4.015625 C 1.046875 -4.015625 0.421875 -3.140625 0.421875 -1.921875 C 0.421875 -0.671875 1.0625 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.09375 3.53125 -0.40625 L 3.234375 -0.8125 C 2.890625 -0.578125 2.59375 -0.46875 2.203125 -0.46875 C 1.640625 -0.46875 1.21875 -0.8125 1.15625 -1.71875 L 3.65625 -1.71875 C 3.65625 -1.8125 3.671875 -1.9375 3.671875 -2.078125 Z M 2.984375 -2.234375 L 1.15625 -2.234375 C 1.203125 -3.09375 1.546875 -3.46875 2.0625 -3.46875 C 2.6875 -3.46875 2.984375 -3.046875 2.984375 -2.28125 Z M 2.984375 -2.234375 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-2-4"> | |
| 99 | +<path d="M 0.890625 -0.9375 C 0.59375 -0.9375 0.375 -0.71875 0.375 -0.4375 C 0.375 -0.25 0.453125 -0.09375 0.578125 0 L 0.28125 1.234375 L 0.78125 1.234375 L 1.265625 0.09375 C 1.375 -0.125 1.40625 -0.265625 1.40625 -0.4375 C 1.40625 -0.71875 1.1875 -0.9375 0.890625 -0.9375 Z M 0.890625 -0.9375 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-2-5"> | |
| 102 | +<path d="M 2.484375 -4.015625 C 2 -4.015625 1.640625 -3.796875 1.375 -3.421875 L 1.375 -5.578125 L 0.6875 -5.5 L 0.6875 0 L 1.28125 0 L 1.359375 -0.4375 C 1.625 -0.109375 1.96875 0.09375 2.390625 0.09375 C 3.34375 0.09375 3.9375 -0.734375 3.9375 -1.96875 C 3.9375 -3.265625 3.359375 -4.015625 2.484375 -4.015625 Z M 2.234375 -0.453125 C 1.875 -0.453125 1.5625 -0.671875 1.375 -0.984375 L 1.375 -2.859375 C 1.5625 -3.171875 1.859375 -3.46875 2.28125 -3.46875 C 2.828125 -3.46875 3.203125 -3.078125 3.203125 -1.96875 C 3.203125 -0.890625 2.796875 -0.453125 2.234375 -0.453125 Z M 2.234375 -0.453125 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-2-6"> | |
| 105 | +<path d="M 1.90625 -5.34375 L 2.84375 -4.71875 L 3.140625 -5.046875 L 2.125 -5.890625 L 1.671875 -5.890625 L 0.671875 -5.046875 L 0.953125 -4.71875 Z M 3.3125 -0.921875 L 3.3125 -2.703125 C 3.3125 -3.53125 2.875 -4.015625 1.9375 -4.015625 C 1.5 -4.015625 1.0625 -3.921875 0.578125 -3.734375 L 0.75 -3.25 C 1.15625 -3.375 1.515625 -3.453125 1.8125 -3.453125 C 2.34375 -3.453125 2.625 -3.25 2.625 -2.671875 L 2.625 -2.390625 L 2.015625 -2.390625 C 0.921875 -2.390625 0.296875 -1.9375 0.296875 -1.09375 C 0.296875 -0.390625 0.765625 0.09375 1.546875 0.09375 C 2.015625 0.09375 2.4375 -0.09375 2.71875 -0.5 C 2.828125 -0.109375 3.09375 0.046875 3.484375 0.09375 L 3.640625 -0.390625 C 3.4375 -0.46875 3.3125 -0.578125 3.3125 -0.921875 Z M 1.703125 -0.421875 C 1.25 -0.421875 1.03125 -0.671875 1.03125 -1.125 C 1.03125 -1.671875 1.390625 -1.9375 2.109375 -1.9375 L 2.625 -1.9375 L 2.625 -1.03125 C 2.40625 -0.625 2.109375 -0.421875 1.703125 -0.421875 Z M 1.703125 -0.421875 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-2-7"> | |
| 108 | +<path d="M 4.625 -4.015625 C 4.09375 -4.015625 3.734375 -3.71875 3.453125 -3.296875 C 3.296875 -3.75 2.9375 -4.015625 2.46875 -4.015625 C 1.953125 -4.015625 1.59375 -3.734375 1.328125 -3.34375 L 1.265625 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.78125 C 1.625 -3.203125 1.859375 -3.46875 2.296875 -3.46875 C 2.59375 -3.46875 2.84375 -3.296875 2.84375 -2.71875 L 2.84375 0 L 3.53125 0 L 3.53125 -2.78125 C 3.796875 -3.203125 4.03125 -3.46875 4.453125 -3.46875 C 4.75 -3.46875 5 -3.296875 5 -2.71875 L 5 0 L 5.6875 0 L 5.6875 -2.8125 C 5.6875 -3.546875 5.265625 -4.015625 4.625 -4.015625 Z M 4.625 -4.015625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-2-8"> | |
| 111 | +<path d="M 2.53125 -4.015625 C 2.015625 -4.015625 1.59375 -3.734375 1.328125 -3.34375 L 1.265625 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.78125 C 1.625 -3.203125 1.921875 -3.46875 2.359375 -3.46875 C 2.75 -3.46875 2.984375 -3.296875 2.984375 -2.71875 L 2.984375 0 L 3.671875 0 L 3.671875 -2.8125 C 3.671875 -3.5625 3.25 -4.015625 2.53125 -4.015625 Z M 2.53125 -4.015625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-2-9"> | |
| 114 | +<path d="M 1.453125 0.09375 C 1.65625 0.09375 1.859375 0.03125 2 -0.046875 L 1.828125 -0.515625 C 1.75 -0.484375 1.671875 -0.46875 1.5625 -0.46875 C 1.390625 -0.46875 1.328125 -0.578125 1.328125 -0.78125 L 1.328125 -5.578125 L 0.640625 -5.5 L 0.640625 -0.78125 C 0.640625 -0.21875 0.953125 0.09375 1.453125 0.09375 Z M 1.453125 0.09375 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-2-10"> | |
| 117 | +<path d="M 3.59375 -3.921875 L 2.90625 -3.921875 L 2.90625 -1.125 C 2.671875 -0.734375 2.34375 -0.453125 1.921875 -0.453125 C 1.5 -0.453125 1.328125 -0.640625 1.328125 -1.1875 L 1.328125 -3.921875 L 0.640625 -3.921875 L 0.640625 -1.109375 C 0.640625 -0.34375 1.046875 0.09375 1.734375 0.09375 C 2.296875 0.09375 2.65625 -0.140625 2.953125 -0.609375 L 3 0 L 3.59375 0 Z M 3.59375 -3.921875 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-2-11"> | |
| 120 | +<path d="M 3.3125 -0.921875 L 3.3125 -2.703125 C 3.3125 -3.53125 2.875 -4.015625 1.9375 -4.015625 C 1.5 -4.015625 1.0625 -3.921875 0.578125 -3.734375 L 0.75 -3.25 C 1.15625 -3.375 1.515625 -3.453125 1.8125 -3.453125 C 2.34375 -3.453125 2.625 -3.25 2.625 -2.671875 L 2.625 -2.390625 L 2.015625 -2.390625 C 0.921875 -2.390625 0.296875 -1.9375 0.296875 -1.09375 C 0.296875 -0.390625 0.765625 0.09375 1.546875 0.09375 C 2.015625 0.09375 2.4375 -0.09375 2.71875 -0.5 C 2.828125 -0.109375 3.09375 0.046875 3.484375 0.09375 L 3.640625 -0.390625 C 3.4375 -0.46875 3.3125 -0.578125 3.3125 -0.921875 Z M 1.703125 -0.421875 C 1.25 -0.421875 1.03125 -0.671875 1.03125 -1.125 C 1.03125 -1.671875 1.390625 -1.9375 2.109375 -1.9375 L 2.625 -1.9375 L 2.625 -1.03125 C 2.40625 -0.625 2.109375 -0.421875 1.703125 -0.421875 Z M 1.703125 -0.421875 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-2-12"> | |
| 123 | +<path d="M 2.203125 -2.09375 L 3.40625 -3.921875 L 2.640625 -3.921875 L 1.8125 -2.484375 L 1 -3.921875 L 0.1875 -3.921875 L 1.40625 -2.0625 L 0.03125 0 L 0.8125 0 L 1.78125 -1.65625 L 2.75 0 L 3.5625 0 Z M 2.203125 -2.09375 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-2-13"> | |
| 126 | +<path d="M 2.484375 -4.015625 C 2.03125 -4.015625 1.609375 -3.796875 1.328125 -3.390625 L 1.265625 -3.921875 L 0.6875 -3.921875 L 0.6875 1.578125 L 1.375 1.5 L 1.375 -0.359375 C 1.625 -0.046875 1.96875 0.09375 2.390625 0.09375 C 3.40625 0.09375 3.9375 -0.78125 3.9375 -1.96875 C 3.9375 -3.203125 3.53125 -4.015625 2.484375 -4.015625 Z M 2.234375 -0.46875 C 1.875 -0.46875 1.5625 -0.640625 1.375 -0.9375 L 1.375 -2.859375 C 1.578125 -3.171875 1.890625 -3.46875 2.3125 -3.46875 C 2.90625 -3.46875 3.203125 -2.984375 3.203125 -1.96875 C 3.203125 -0.9375 2.859375 -0.46875 2.234375 -0.46875 Z M 2.234375 -0.46875 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-2-14"> | |
| 129 | +<path d="M 2.171875 -4.015625 C 1.0625 -4.015625 0.421875 -3.171875 0.421875 -1.953125 C 0.421875 -0.71875 1.0625 0.09375 2.171875 0.09375 C 3.28125 0.09375 3.921875 -0.75 3.921875 -1.96875 C 3.921875 -3.203125 3.296875 -4.015625 2.171875 -4.015625 Z M 2.171875 -3.453125 C 2.828125 -3.453125 3.1875 -2.984375 3.1875 -1.96875 C 3.1875 -0.9375 2.828125 -0.46875 2.171875 -0.46875 C 1.515625 -0.46875 1.15625 -0.9375 1.15625 -1.953125 C 1.15625 -2.984375 1.53125 -3.453125 2.171875 -3.453125 Z M 2.171875 -3.453125 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-2-15"> | |
| 132 | +<path d="M 2.390625 -4.015625 C 1.90625 -4.015625 1.546875 -3.71875 1.34375 -3.125 L 1.265625 -3.921875 L 0.6875 -3.921875 L 0.6875 0 L 1.375 0 L 1.375 -2.234375 C 1.53125 -2.984375 1.8125 -3.34375 2.3125 -3.34375 C 2.453125 -3.34375 2.53125 -3.328125 2.640625 -3.296875 L 2.78125 -3.96875 C 2.65625 -4 2.515625 -4.015625 2.390625 -4.015625 Z M 2.390625 -4.015625 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-2-16"> | |
| 135 | +<path d="M 3.578125 -3.921875 L 2.859375 -3.921875 L 1.84375 -0.609375 L 0.8125 -3.921875 L 0.078125 -3.921875 L 1.421875 0 L 2.25 0 Z M 3.578125 -3.921875 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-2-17"> | |
| 138 | +<path d="M 3 -3.921875 L 0.359375 -3.921875 L 0.359375 -3.34375 L 2.21875 -3.34375 L 0.1875 -0.515625 L 0.1875 0 L 2.9375 0 L 3.03125 -0.578125 L 0.953125 -0.578125 L 3 -3.40625 Z M 3 -3.921875 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-2-18"> | |
| 141 | +<path d="M 3.671875 -4.359375 C 3.203125 -4.15625 2.84375 -3.984375 1.875 -4.015625 C 1.015625 -4.015625 0.359375 -3.4375 0.359375 -2.640625 C 0.359375 -2.140625 0.578125 -1.796875 1.03125 -1.546875 C 0.75 -1.375 0.59375 -1.109375 0.59375 -0.859375 C 0.59375 -0.46875 0.90625 -0.125 1.609375 -0.125 L 2.21875 -0.125 C 2.71875 -0.125 3.015625 0.0625 3.015625 0.4375 C 3.015625 0.828125 2.71875 1.046875 1.859375 1.046875 C 1 1.046875 0.796875 0.84375 0.796875 0.390625 L 0.1875 0.390625 C 0.1875 1.1875 0.59375 1.578125 1.859375 1.578125 C 3.078125 1.578125 3.703125 1.15625 3.703125 0.390625 C 3.703125 -0.234375 3.171875 -0.6875 2.359375 -0.6875 L 1.734375 -0.6875 C 1.34375 -0.6875 1.234375 -0.828125 1.234375 -1.015625 C 1.234375 -1.15625 1.3125 -1.296875 1.421875 -1.375 C 1.578125 -1.328125 1.734375 -1.296875 1.921875 -1.296875 C 2.859375 -1.296875 3.40625 -1.859375 3.40625 -2.640625 C 3.40625 -3.09375 3.1875 -3.40625 2.71875 -3.625 C 3.171875 -3.625 3.546875 -3.640625 3.875 -3.734375 Z M 1.875 -3.515625 C 2.4375 -3.515625 2.71875 -3.21875 2.71875 -2.640625 C 2.71875 -2.078125 2.421875 -1.75 1.890625 -1.75 C 1.359375 -1.75 1.0625 -2.125 1.0625 -2.640625 C 1.0625 -3.15625 1.34375 -3.515625 1.875 -3.515625 Z M 1.875 -3.515625 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-2-19"> | |
| 144 | +<path d="M 2.96875 -5.390625 L 2.65625 -5.953125 L 1.1875 -5.109375 L 1.390625 -4.75 Z M 3.671875 -2.078125 C 3.671875 -3.265625 3.109375 -4.015625 2.046875 -4.015625 C 1.046875 -4.015625 0.421875 -3.140625 0.421875 -1.921875 C 0.421875 -0.671875 1.0625 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.09375 3.53125 -0.40625 L 3.234375 -0.8125 C 2.890625 -0.578125 2.59375 -0.46875 2.203125 -0.46875 C 1.640625 -0.46875 1.21875 -0.8125 1.15625 -1.71875 L 3.65625 -1.71875 C 3.65625 -1.8125 3.671875 -1.9375 3.671875 -2.078125 Z M 2.984375 -2.234375 L 1.15625 -2.234375 C 1.203125 -3.09375 1.546875 -3.46875 2.0625 -3.46875 C 2.6875 -3.46875 2.984375 -3.046875 2.984375 -2.28125 Z M 2.984375 -2.234375 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-2-20"> | |
| 147 | +<path d="M 2.03125 -5.03125 C 2.234375 -5.03125 2.46875 -4.984375 2.71875 -4.875 L 2.9375 -5.375 C 2.625 -5.515625 2.375 -5.578125 2 -5.578125 C 1.203125 -5.578125 0.78125 -5.109375 0.78125 -4.453125 L 0.78125 -3.921875 L 0.078125 -3.921875 L 0.078125 -3.390625 L 0.78125 -3.390625 L 0.78125 0 L 1.453125 0 L 1.453125 -3.390625 L 2.328125 -3.390625 L 2.40625 -3.921875 L 1.453125 -3.921875 L 1.453125 -4.46875 C 1.453125 -4.84375 1.609375 -5.03125 2.03125 -5.03125 Z M 2.03125 -5.03125 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-2-21"> | |
| 150 | +<path d="M 2.140625 -4.015625 C 1.078125 -4.015625 0.421875 -3.171875 0.421875 -1.921875 C 0.421875 -0.65625 1.078125 0.09375 2.140625 0.09375 C 2.59375 0.09375 2.984375 -0.0625 3.328125 -0.34375 L 3.015625 -0.78125 C 2.71875 -0.59375 2.484375 -0.484375 2.171875 -0.484375 C 1.546875 -0.484375 1.15625 -0.921875 1.15625 -1.9375 C 1.15625 -2.953125 1.546875 -3.4375 2.171875 -3.4375 C 2.484375 -3.4375 2.734375 -3.34375 3 -3.15625 L 3.328125 -3.578125 C 2.96875 -3.890625 2.59375 -4.015625 2.140625 -4.015625 Z M 2.140625 -4.015625 "/> | |
| 151 | +</g> | |
| 152 | +</g> | |
| 153 | +<clipPath id="clip-0"> | |
| 154 | +<path clip-rule="nonzero" d="M 1.015625 0 L 173 0 L 173 48 L 1.015625 48 Z M 1.015625 0 "/> | |
| 155 | +</clipPath> | |
| 156 | +<clipPath id="clip-1"> | |
| 157 | +<path clip-rule="nonzero" d="M 175 0 L 347.449219 0 L 347.449219 48 L 175 48 Z M 175 0 "/> | |
| 158 | +</clipPath> | |
| 159 | +<clipPath id="clip-2"> | |
| 160 | +<path clip-rule="nonzero" d="M 1.015625 49 L 173 49 L 173 96.4375 L 1.015625 96.4375 Z M 1.015625 49 "/> | |
| 161 | +</clipPath> | |
| 162 | +<clipPath id="clip-3"> | |
| 163 | +<path clip-rule="nonzero" d="M 175 49 L 347.449219 49 L 347.449219 96.4375 L 175 96.4375 Z M 175 49 "/> | |
| 164 | +</clipPath> | |
| 165 | +</defs> | |
| 166 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 161.074219 5.136719 L 12.082031 5.136719 C 8.808594 5.136719 6.152344 7.792969 6.152344 11.066406 L 6.152344 35.765625 C 6.152344 39.039062 8.808594 41.695312 12.082031 41.695312 L 161.074219 41.695312 C 164.351562 41.695312 167.007812 39.039062 167.007812 35.765625 L 167.007812 11.066406 C 167.007812 7.792969 164.351562 5.136719 161.074219 5.136719 Z M 161.074219 5.136719 "/> | |
| 167 | +<g clip-path="url(#clip-0)"> | |
| 168 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 75.095523 18.426856 L -75.098214 18.426856 C -78.398051 18.426856 -81.075722 15.749185 -81.075722 12.449349 L -81.075722 -12.449057 C -81.075722 -15.748894 -78.398051 -18.426565 -75.098214 -18.426565 L 75.095523 -18.426565 C 78.399297 -18.426565 81.076968 -15.748894 81.076968 -12.449057 L 81.076968 12.449349 C 81.076968 15.749185 78.399297 18.426856 75.095523 18.426856 Z M 75.095523 18.426856 " transform="matrix(0.992, 0, 0, -0.992, 86.57946, 23.41616)"/> | |
| 169 | +</g> | |
| 170 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 171 | +<use xlink:href="#glyph-0-0" x="27.096164" y="20.798272"/> | |
| 172 | +</g> | |
| 173 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 174 | +<use xlink:href="#glyph-1-0" x="32.112748" y="20.798272"/> | |
| 175 | +</g> | |
| 176 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 177 | +<use xlink:href="#glyph-1-1" x="36.895224" y="20.798272"/> | |
| 178 | +</g> | |
| 179 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 180 | +<use xlink:href="#glyph-1-2" x="40.950296" y="20.798272"/> | |
| 181 | +<use xlink:href="#glyph-1-3" x="44.85487" y="20.798272"/> | |
| 182 | +<use xlink:href="#glyph-1-4" x="47.162499" y="20.798272"/> | |
| 183 | +<use xlink:href="#glyph-1-5" x="52.095473" y="20.798272"/> | |
| 184 | +<use xlink:href="#glyph-1-6" x="56.903032" y="20.798272"/> | |
| 185 | +<use xlink:href="#glyph-1-2" x="61.451401" y="20.798272"/> | |
| 186 | +</g> | |
| 187 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 188 | +<use xlink:href="#glyph-1-7" x="68.140179" y="20.798272"/> | |
| 189 | +</g> | |
| 190 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 191 | +<use xlink:href="#glyph-1-6" x="75.28045" y="20.798272"/> | |
| 192 | +<use xlink:href="#glyph-1-8" x="79.828819" y="20.798272"/> | |
| 193 | +</g> | |
| 194 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 195 | +<use xlink:href="#glyph-1-9" x="84.611296" y="20.798272"/> | |
| 196 | +<use xlink:href="#glyph-1-3" x="88.724895" y="20.798272"/> | |
| 197 | +<use xlink:href="#glyph-1-10" x="91.032523" y="20.798272"/> | |
| 198 | +</g> | |
| 199 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 200 | +<use xlink:href="#glyph-1-11" x="94.067556" y="20.798272"/> | |
| 201 | +<use xlink:href="#glyph-1-8" x="98.950364" y="20.798272"/> | |
| 202 | +<use xlink:href="#glyph-1-8" x="103.791367" y="20.798272"/> | |
| 203 | +<use xlink:href="#glyph-1-6" x="108.632371" y="20.798272"/> | |
| 204 | +<use xlink:href="#glyph-1-12" x="113.18074" y="20.798272"/> | |
| 205 | +<use xlink:href="#glyph-1-6" x="120.287567" y="20.798272"/> | |
| 206 | +<use xlink:href="#glyph-1-8" x="124.835936" y="20.798272"/> | |
| 207 | +<use xlink:href="#glyph-1-13" x="129.676939" y="20.798272"/> | |
| 208 | +<use xlink:href="#glyph-1-14" x="132.69525" y="20.798272"/> | |
| 209 | +<use xlink:href="#glyph-1-5" x="137.201815" y="20.798272"/> | |
| 210 | +<use xlink:href="#glyph-1-15" x="142.009374" y="20.798272"/> | |
| 211 | +</g> | |
| 212 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 213 | +<use xlink:href="#glyph-2-0" x="50.300036" y="31.6696"/> | |
| 214 | +<use xlink:href="#glyph-2-1" x="53.770764" y="31.6696"/> | |
| 215 | +<use xlink:href="#glyph-2-2" x="55.821986" y="31.6696"/> | |
| 216 | +</g> | |
| 217 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 218 | +<use xlink:href="#glyph-2-3" x="58.393446" y="31.6696"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-2-4" x="62.362115" y="31.6696"/> | |
| 222 | +</g> | |
| 223 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 224 | +<use xlink:href="#glyph-2-5" x="66.932773" y="31.6696"/> | |
| 225 | +</g> | |
| 226 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 227 | +<use xlink:href="#glyph-2-6" x="71.250745" y="31.6696"/> | |
| 228 | +<use xlink:href="#glyph-2-2" x="75.256574" y="31.6696"/> | |
| 229 | +<use xlink:href="#glyph-2-1" x="77.939513" y="31.6696"/> | |
| 230 | +<use xlink:href="#glyph-2-7" x="79.990735" y="31.6696"/> | |
| 231 | +<use xlink:href="#glyph-2-3" x="86.307905" y="31.6696"/> | |
| 232 | +<use xlink:href="#glyph-2-8" x="90.350894" y="31.6696"/> | |
| 233 | +<use xlink:href="#glyph-2-2" x="94.654002" y="31.6696"/> | |
| 234 | +</g> | |
| 235 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 236 | +<use xlink:href="#glyph-2-4" x="97.366669" y="31.6696"/> | |
| 237 | +</g> | |
| 238 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 239 | +<use xlink:href="#glyph-2-7" x="101.937327" y="31.6696"/> | |
| 240 | +<use xlink:href="#glyph-2-1" x="108.254498" y="31.6696"/> | |
| 241 | +<use xlink:href="#glyph-2-9" x="110.30572" y="31.6696"/> | |
| 242 | +<use xlink:href="#glyph-2-1" x="112.490717" y="31.6696"/> | |
| 243 | +<use xlink:href="#glyph-2-3" x="114.54194" y="31.6696"/> | |
| 244 | +<use xlink:href="#glyph-2-10" x="118.584929" y="31.6696"/> | |
| 245 | +</g> | |
| 246 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 336.382812 5.136719 L 187.390625 5.136719 C 184.117188 5.136719 181.460938 7.792969 181.460938 11.066406 L 181.460938 35.765625 C 181.460938 39.039062 184.117188 41.695312 187.390625 41.695312 L 336.382812 41.695312 C 339.660156 41.695312 342.3125 39.039062 342.3125 35.765625 L 342.3125 11.066406 C 342.3125 7.792969 339.660156 5.136719 336.382812 5.136719 Z M 336.382812 5.136719 "/> | |
| 247 | +<g clip-path="url(#clip-1)"> | |
| 248 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 251.817896 18.426856 L 101.624158 18.426856 C 98.324322 18.426856 95.646651 15.749185 95.646651 12.449349 L 95.646651 -12.449057 C 95.646651 -15.748894 98.324322 -18.426565 101.624158 -18.426565 L 251.817896 -18.426565 C 255.12167 -18.426565 257.795403 -15.748894 257.795403 -12.449057 L 257.795403 12.449349 C 257.795403 15.749185 255.12167 18.426856 251.817896 18.426856 Z M 251.817896 18.426856 " transform="matrix(0.992, 0, 0, -0.992, 86.57946, 23.41616)"/> | |
| 249 | +</g> | |
| 250 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 251 | +<use xlink:href="#glyph-0-1" x="213.280676" y="21.18416"/> | |
| 252 | +</g> | |
| 253 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 254 | +<use xlink:href="#glyph-1-16" x="217.678548" y="21.18416"/> | |
| 255 | +</g> | |
| 256 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 257 | +<use xlink:href="#glyph-1-11" x="221.549678" y="21.18416"/> | |
| 258 | +<use xlink:href="#glyph-1-8" x="226.432486" y="21.18416"/> | |
| 259 | +<use xlink:href="#glyph-1-11" x="231.273489" y="21.18416"/> | |
| 260 | +<use xlink:href="#glyph-1-12" x="236.156298" y="21.18416"/> | |
| 261 | +<use xlink:href="#glyph-1-3" x="243.263124" y="21.18416"/> | |
| 262 | +<use xlink:href="#glyph-1-4" x="245.570753" y="21.18416"/> | |
| 263 | +<use xlink:href="#glyph-1-5" x="250.503727" y="21.18416"/> | |
| 264 | +<use xlink:href="#glyph-1-6" x="255.311286" y="21.18416"/> | |
| 265 | +<use xlink:href="#glyph-1-2" x="259.859655" y="21.18416"/> | |
| 266 | +</g> | |
| 267 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 268 | +<use xlink:href="#glyph-1-7" x="266.548434" y="21.18416"/> | |
| 269 | +</g> | |
| 270 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 271 | +<use xlink:href="#glyph-1-17" x="273.688704" y="21.18416"/> | |
| 272 | +<use xlink:href="#glyph-1-8" x="278.471181" y="21.18416"/> | |
| 273 | +<use xlink:href="#glyph-1-14" x="283.312184" y="21.18416"/> | |
| 274 | +<use xlink:href="#glyph-1-8" x="287.818749" y="21.18416"/> | |
| 275 | +<use xlink:href="#glyph-1-16" x="292.659752" y="21.18416"/> | |
| 276 | +<use xlink:href="#glyph-1-3" x="296.656297" y="21.18416"/> | |
| 277 | +<use xlink:href="#glyph-1-6" x="298.963925" y="21.18416"/> | |
| 278 | +<use xlink:href="#glyph-1-10" x="303.512294" y="21.18416"/> | |
| 279 | +</g> | |
| 280 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 281 | +<use xlink:href="#glyph-1-2" x="306.589132" y="21.18416"/> | |
| 282 | +</g> | |
| 283 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 284 | +<use xlink:href="#glyph-2-2" x="225.178724" y="32.055488"/> | |
| 285 | +<use xlink:href="#glyph-2-11" x="227.861663" y="32.055488"/> | |
| 286 | +<use xlink:href="#glyph-2-10" x="231.867492" y="32.055488"/> | |
| 287 | +<use xlink:href="#glyph-2-12" x="236.140872" y="32.055488"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-2-4" x="239.775103" y="32.055488"/> | |
| 291 | +</g> | |
| 292 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 293 | +<use xlink:href="#glyph-2-3" x="244.345761" y="32.055488"/> | |
| 294 | +<use xlink:href="#glyph-2-7" x="248.38875" y="32.055488"/> | |
| 295 | +<use xlink:href="#glyph-2-13" x="254.70592" y="32.055488"/> | |
| 296 | +<use xlink:href="#glyph-2-9" x="259.061052" y="32.055488"/> | |
| 297 | +</g> | |
| 298 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 299 | +<use xlink:href="#glyph-2-14" x="261.208889" y="32.055488"/> | |
| 300 | +<use xlink:href="#glyph-2-1" x="265.549157" y="32.055488"/> | |
| 301 | +<use xlink:href="#glyph-2-4" x="267.600379" y="32.055488"/> | |
| 302 | +</g> | |
| 303 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 304 | +<use xlink:href="#glyph-2-15" x="272.171037" y="32.055488"/> | |
| 305 | +</g> | |
| 306 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 307 | +<use xlink:href="#glyph-2-3" x="274.868841" y="32.055488"/> | |
| 308 | +</g> | |
| 309 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 310 | +<use xlink:href="#glyph-2-16" x="278.87467" y="32.055488"/> | |
| 311 | +</g> | |
| 312 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 313 | +<use xlink:href="#glyph-2-3" x="282.501469" y="32.055488"/> | |
| 314 | +<use xlink:href="#glyph-2-8" x="286.544457" y="32.055488"/> | |
| 315 | +<use xlink:href="#glyph-2-10" x="290.847565" y="32.055488"/> | |
| 316 | +<use xlink:href="#glyph-2-0" x="295.120945" y="32.055488"/> | |
| 317 | +</g> | |
| 318 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 161.074219 54.742188 L 12.082031 54.742188 C 8.808594 54.742188 6.152344 57.398438 6.152344 60.671875 L 6.152344 85.371094 C 6.152344 88.644531 8.808594 91.300781 12.082031 91.300781 L 161.074219 91.300781 C 164.351562 91.300781 167.007812 88.644531 167.007812 85.371094 L 167.007812 60.671875 C 167.007812 57.398438 164.351562 54.742188 161.074219 54.742188 Z M 161.074219 54.742188 "/> | |
| 319 | +<g clip-path="url(#clip-2)"> | |
| 320 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 75.095523 -31.578657 L -75.098214 -31.578657 C -78.398051 -31.578657 -81.075722 -34.256328 -81.075722 -37.556164 L -81.075722 -62.45457 C -81.075722 -65.754407 -78.398051 -68.432078 -75.098214 -68.432078 L 75.095523 -68.432078 C 78.399297 -68.432078 81.076968 -65.754407 81.076968 -62.45457 L 81.076968 -37.556164 C 81.076968 -34.256328 78.399297 -31.578657 75.095523 -31.578657 Z M 75.095523 -31.578657 " transform="matrix(0.992, 0, 0, -0.992, 86.57946, 23.41616)"/> | |
| 321 | +</g> | |
| 322 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 323 | +<use xlink:href="#glyph-0-2" x="18.669124" y="70.226656"/> | |
| 324 | +</g> | |
| 325 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 326 | +<use xlink:href="#glyph-1-11" x="24.061951" y="70.226656"/> | |
| 327 | +<use xlink:href="#glyph-1-5" x="28.94476" y="70.226656"/> | |
| 328 | +<use xlink:href="#glyph-1-9" x="33.752319" y="70.226656"/> | |
| 329 | +</g> | |
| 330 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 331 | +<use xlink:href="#glyph-1-6" x="37.832474" y="70.226656"/> | |
| 332 | +<use xlink:href="#glyph-1-10" x="42.380843" y="70.226656"/> | |
| 333 | +<use xlink:href="#glyph-1-8" x="45.583095" y="70.226656"/> | |
| 334 | +<use xlink:href="#glyph-1-6" x="50.424099" y="70.226656"/> | |
| 335 | +<use xlink:href="#glyph-1-12" x="54.972468" y="70.226656"/> | |
| 336 | +<use xlink:href="#glyph-1-6" x="62.079295" y="70.226656"/> | |
| 337 | +<use xlink:href="#glyph-1-8" x="66.627664" y="70.226656"/> | |
| 338 | +<use xlink:href="#glyph-1-13" x="71.468667" y="70.226656"/> | |
| 339 | +<use xlink:href="#glyph-1-14" x="74.486978" y="70.226656"/> | |
| 340 | +<use xlink:href="#glyph-1-5" x="78.993543" y="70.226656"/> | |
| 341 | +<use xlink:href="#glyph-1-15" x="83.801102" y="70.226656"/> | |
| 342 | +</g> | |
| 343 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 344 | +<use xlink:href="#glyph-1-7" x="90.640378" y="70.226656"/> | |
| 345 | +</g> | |
| 346 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 347 | +<use xlink:href="#glyph-1-10" x="97.780649" y="70.226656"/> | |
| 348 | +</g> | |
| 349 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 350 | +<use xlink:href="#glyph-1-18" x="100.815682" y="70.226656"/> | |
| 351 | +<use xlink:href="#glyph-1-19" x="105.364051" y="70.226656"/> | |
| 352 | +<use xlink:href="#glyph-1-20" x="109.711757" y="70.226656"/> | |
| 353 | +</g> | |
| 354 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-1-6" x="112.128078" y="70.226656"/> | |
| 356 | +<use xlink:href="#glyph-1-12" x="116.676447" y="70.226656"/> | |
| 357 | +<use xlink:href="#glyph-1-6" x="123.783274" y="70.226656"/> | |
| 358 | +<use xlink:href="#glyph-1-8" x="128.331643" y="70.226656"/> | |
| 359 | +<use xlink:href="#glyph-1-13" x="133.172646" y="70.226656"/> | |
| 360 | +<use xlink:href="#glyph-1-14" x="136.190958" y="70.226656"/> | |
| 361 | +<use xlink:href="#glyph-1-3" x="140.697522" y="70.226656"/> | |
| 362 | +<use xlink:href="#glyph-1-10" x="143.005151" y="70.226656"/> | |
| 363 | +</g> | |
| 364 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 365 | +<use xlink:href="#glyph-1-6" x="146.040184" y="70.226656"/> | |
| 366 | +<use xlink:href="#glyph-1-2" x="150.588553" y="70.226656"/> | |
| 367 | +</g> | |
| 368 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 369 | +<use xlink:href="#glyph-2-17" x="55.290788" y="81.097984"/> | |
| 370 | +</g> | |
| 371 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 372 | +<use xlink:href="#glyph-2-14" x="58.464237" y="81.097984"/> | |
| 373 | +<use xlink:href="#glyph-2-8" x="62.804504" y="81.097984"/> | |
| 374 | +<use xlink:href="#glyph-2-11" x="67.107612" y="81.097984"/> | |
| 375 | +<use xlink:href="#glyph-2-18" x="71.113441" y="81.097984"/> | |
| 376 | +<use xlink:href="#glyph-2-3" x="74.978063" y="81.097984"/> | |
| 377 | +</g> | |
| 378 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 379 | +<use xlink:href="#glyph-2-4" x="78.946732" y="81.097984"/> | |
| 380 | +</g> | |
| 381 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 382 | +<use xlink:href="#glyph-2-2" x="83.51739" y="81.097984"/> | |
| 383 | +<use xlink:href="#glyph-2-11" x="86.20033" y="81.097984"/> | |
| 384 | +<use xlink:href="#glyph-2-12" x="90.206159" y="81.097984"/> | |
| 385 | +</g> | |
| 386 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 387 | +<use xlink:href="#glyph-2-3" x="93.773502" y="81.097984"/> | |
| 388 | +<use xlink:href="#glyph-2-0" x="97.816491" y="81.097984"/> | |
| 389 | +<use xlink:href="#glyph-2-4" x="101.287218" y="81.097984"/> | |
| 390 | +</g> | |
| 391 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 392 | +<use xlink:href="#glyph-2-9" x="105.857876" y="81.097984"/> | |
| 393 | +</g> | |
| 394 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 395 | +<use xlink:href="#glyph-2-14" x="108.005714" y="81.097984"/> | |
| 396 | +<use xlink:href="#glyph-2-1" x="112.345982" y="81.097984"/> | |
| 397 | +<use xlink:href="#glyph-2-0" x="114.397204" y="81.097984"/> | |
| 398 | +</g> | |
| 399 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 336.382812 54.742188 L 187.390625 54.742188 C 184.117188 54.742188 181.460938 57.398438 181.460938 60.671875 L 181.460938 85.371094 C 181.460938 88.644531 184.117188 91.300781 187.390625 91.300781 L 336.382812 91.300781 C 339.660156 91.300781 342.3125 88.644531 342.3125 85.371094 L 342.3125 60.671875 C 342.3125 57.398438 339.660156 54.742188 336.382812 54.742188 Z M 336.382812 54.742188 "/> | |
| 400 | +<g clip-path="url(#clip-3)"> | |
| 401 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 251.817896 -31.578657 L 101.624158 -31.578657 C 98.324322 -31.578657 95.646651 -34.256328 95.646651 -37.556164 L 95.646651 -62.45457 C 95.646651 -65.754407 98.324322 -68.432078 101.624158 -68.432078 L 251.817896 -68.432078 C 255.12167 -68.432078 257.795403 -65.754407 257.795403 -62.45457 L 257.795403 -37.556164 C 257.795403 -34.256328 255.12167 -31.578657 251.817896 -31.578657 Z M 251.817896 -31.578657 " transform="matrix(0.992, 0, 0, -0.992, 86.57946, 23.41616)"/> | |
| 402 | +</g> | |
| 403 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 404 | +<use xlink:href="#glyph-0-3" x="210.454468" y="70.226656"/> | |
| 405 | +</g> | |
| 406 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 407 | +<use xlink:href="#glyph-1-11" x="215.236944" y="70.226656"/> | |
| 408 | +<use xlink:href="#glyph-1-16" x="220.119753" y="70.226656"/> | |
| 409 | +<use xlink:href="#glyph-1-3" x="224.116298" y="70.226656"/> | |
| 410 | +<use xlink:href="#glyph-1-14" x="226.423926" y="70.226656"/> | |
| 411 | +<use xlink:href="#glyph-1-5" x="230.93049" y="70.226656"/> | |
| 412 | +<use xlink:href="#glyph-1-15" x="235.73805" y="70.226656"/> | |
| 413 | +</g> | |
| 414 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 415 | +<use xlink:href="#glyph-1-7" x="242.577325" y="70.226656"/> | |
| 416 | +</g> | |
| 417 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 418 | +<use xlink:href="#glyph-1-21" x="249.717596" y="70.226656"/> | |
| 419 | +<use xlink:href="#glyph-1-18" x="254.65057" y="70.226656"/> | |
| 420 | +<use xlink:href="#glyph-1-12" x="259.198939" y="70.226656"/> | |
| 421 | +<use xlink:href="#glyph-1-11" x="266.305766" y="70.226656"/> | |
| 422 | +<use xlink:href="#glyph-1-19" x="271.188574" y="70.226656"/> | |
| 423 | +<use xlink:href="#glyph-1-10" x="275.53628" y="70.226656"/> | |
| 424 | +</g> | |
| 425 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 426 | +<use xlink:href="#glyph-1-14" x="278.571313" y="70.226656"/> | |
| 427 | +<use xlink:href="#glyph-1-22" x="283.077878" y="70.226656"/> | |
| 428 | +<use xlink:href="#glyph-1-0" x="287.977408" y="70.226656"/> | |
| 429 | +<use xlink:href="#glyph-1-3" x="292.818411" y="70.226656"/> | |
| 430 | +<use xlink:href="#glyph-1-4" x="295.12604" y="70.226656"/> | |
| 431 | +<use xlink:href="#glyph-1-5" x="300.059013" y="70.226656"/> | |
| 432 | +<use xlink:href="#glyph-1-6" x="304.866573" y="70.226656"/> | |
| 433 | +<use xlink:href="#glyph-1-2" x="309.414942" y="70.226656"/> | |
| 434 | +</g> | |
| 435 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 436 | +<use xlink:href="#glyph-2-13" x="221.396228" y="81.097984"/> | |
| 437 | +<use xlink:href="#glyph-2-14" x="225.751359" y="81.097984"/> | |
| 438 | +<use xlink:href="#glyph-2-13" x="230.091627" y="81.097984"/> | |
| 439 | +<use xlink:href="#glyph-2-10" x="234.446758" y="81.097984"/> | |
| 440 | +<use xlink:href="#glyph-2-9" x="238.720138" y="81.097984"/> | |
| 441 | +</g> | |
| 442 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 443 | +<use xlink:href="#glyph-2-11" x="240.867976" y="81.097984"/> | |
| 444 | +<use xlink:href="#glyph-2-2" x="244.873805" y="81.097984"/> | |
| 445 | +<use xlink:href="#glyph-2-1" x="247.556744" y="81.097984"/> | |
| 446 | +<use xlink:href="#glyph-2-14" x="249.607966" y="81.097984"/> | |
| 447 | +<use xlink:href="#glyph-2-8" x="253.948234" y="81.097984"/> | |
| 448 | +<use xlink:href="#glyph-2-4" x="258.251341" y="81.097984"/> | |
| 449 | +</g> | |
| 450 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 451 | +<use xlink:href="#glyph-2-13" x="262.822" y="81.097984"/> | |
| 452 | +<use xlink:href="#glyph-2-15" x="267.177131" y="81.097984"/> | |
| 453 | +</g> | |
| 454 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 455 | +<use xlink:href="#glyph-2-19" x="269.874934" y="81.097984"/> | |
| 456 | +<use xlink:href="#glyph-2-20" x="273.917923" y="81.097984"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-2-19" x="276.333312" y="81.097984"/> | |
| 460 | +<use xlink:href="#glyph-2-15" x="280.376301" y="81.097984"/> | |
| 461 | +</g> | |
| 462 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 463 | +<use xlink:href="#glyph-2-3" x="283.074104" y="81.097984"/> | |
| 464 | +<use xlink:href="#glyph-2-8" x="287.117093" y="81.097984"/> | |
| 465 | +<use xlink:href="#glyph-2-21" x="291.4202" y="81.097984"/> | |
| 466 | +</g> | |
| 467 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 468 | +<use xlink:href="#glyph-2-3" x="294.8612" y="81.097984"/> | |
| 469 | +<use xlink:href="#glyph-2-0" x="298.904189" y="81.097984"/> | |
| 470 | +</g> | |
| 471 | +</svg> | |
added
dist/assets/fig/ae19d240a5287ebd.svg
+275 −0
@@ -0,0 +1,275 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="374.355pt" height="124.76pt" viewBox="0 0 374.355 124.76"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.59375 -2.21875 C 3.59375 -2.984375 3.5 -3.53125 3.171875 -4.015625 C 2.96875 -4.34375 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.59375 0.140625 3.59375 -1.71875 3.59375 -2.21875 Z M 2.953125 -2.3125 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 1 -1.21875 1 -1.796875 1 -2.3125 C 1 -2.8125 1 -3.34375 1.09375 -3.734375 C 1.25 -4.28125 1.6875 -4.421875 1.96875 -4.421875 C 2.34375 -4.421875 2.71875 -4.1875 2.84375 -3.796875 C 2.953125 -3.40625 2.953125 -2.90625 2.953125 -2.3125 Z M 2.953125 -2.3125 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.515625 -1.390625 C 3.515625 -2.1875 2.90625 -2.90625 2.046875 -2.90625 C 1.75 -2.90625 1.390625 -2.828125 1.078125 -2.5625 L 1.078125 -3.875 C 1.4375 -3.796875 1.640625 -3.796875 1.75 -3.796875 C 2.671875 -3.796875 3.21875 -4.421875 3.21875 -4.515625 C 3.21875 -4.59375 3.15625 -4.609375 3.125 -4.609375 C 3.125 -4.609375 3.09375 -4.609375 3.078125 -4.59375 C 2.90625 -4.53125 2.53125 -4.390625 2.015625 -4.390625 C 1.828125 -4.390625 1.453125 -4.40625 1.015625 -4.578125 C 0.9375 -4.609375 0.921875 -4.609375 0.921875 -4.609375 C 0.828125 -4.609375 0.828125 -4.546875 0.828125 -4.421875 L 0.828125 -2.375 C 0.828125 -2.265625 0.828125 -2.171875 0.9375 -2.171875 C 1 -2.171875 1.015625 -2.1875 1.078125 -2.28125 C 1.375 -2.65625 1.796875 -2.71875 2.046875 -2.71875 C 2.46875 -2.71875 2.65625 -2.375 2.6875 -2.328125 C 2.8125 -2.09375 2.84375 -1.828125 2.84375 -1.421875 C 2.84375 -1.21875 2.84375 -0.8125 2.640625 -0.5 C 2.46875 -0.25 2.171875 -0.078125 1.828125 -0.078125 C 1.375 -0.078125 0.90625 -0.328125 0.734375 -0.796875 C 1 -0.765625 1.140625 -0.953125 1.140625 -1.140625 C 1.140625 -1.4375 0.875 -1.484375 0.78125 -1.484375 C 0.78125 -1.484375 0.4375 -1.484375 0.4375 -1.109375 C 0.4375 -0.484375 1.015625 0.140625 1.84375 0.140625 C 2.734375 0.140625 3.515625 -0.515625 3.515625 -1.390625 Z M 3.515625 -1.390625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 3.796875 -4.484375 L 1.96875 -4.484375 C 1.6875 -4.484375 1.609375 -4.484375 1.359375 -4.5 C 1 -4.53125 0.984375 -4.578125 0.96875 -4.703125 L 0.734375 -4.703125 L 0.484375 -3.21875 L 0.71875 -3.21875 C 0.734375 -3.3125 0.8125 -3.78125 0.921875 -3.84375 C 0.96875 -3.890625 1.53125 -3.890625 1.640625 -3.890625 L 3.15625 -3.890625 L 2.4375 -2.96875 C 1.515625 -1.765625 1.4375 -0.671875 1.4375 -0.25 C 1.4375 -0.1875 1.4375 0.140625 1.765625 0.140625 C 2.09375 0.140625 2.09375 -0.171875 2.09375 -0.265625 L 2.09375 -0.546875 C 2.09375 -1.890625 2.375 -2.515625 2.671875 -2.890625 L 3.71875 -4.203125 C 3.796875 -4.28125 3.796875 -4.296875 3.796875 -4.484375 Z M 3.796875 -4.484375 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 3.578125 -2.28125 C 3.578125 -4.015625 2.8125 -4.609375 2 -4.609375 C 1.765625 -4.609375 1.28125 -4.578125 0.890625 -4.1875 C 0.65625 -3.96875 0.375 -3.6875 0.375 -3.0625 C 0.375 -2.1875 1.078125 -1.53125 1.890625 -1.53125 C 2.453125 -1.53125 2.75 -1.890625 2.90625 -2.21875 L 2.90625 -2.078125 C 2.90625 -0.34375 2.046875 -0.078125 1.640625 -0.078125 C 1.484375 -0.078125 1.109375 -0.09375 0.921875 -0.3125 C 1.203125 -0.34375 1.234375 -0.578125 1.234375 -0.640625 C 1.234375 -0.8125 1.109375 -0.96875 0.90625 -0.96875 C 0.703125 -0.96875 0.5625 -0.828125 0.5625 -0.625 C 0.5625 -0.15625 0.96875 0.140625 1.640625 0.140625 C 2.640625 0.140625 3.578125 -0.796875 3.578125 -2.28125 Z M 2.890625 -2.984375 C 2.890625 -2.09375 2.359375 -1.71875 1.921875 -1.71875 C 1.65625 -1.71875 1.390625 -1.8125 1.203125 -2.140625 C 1.046875 -2.390625 1.046875 -2.6875 1.046875 -3.0625 C 1.046875 -3.46875 1.046875 -3.75 1.25 -4.03125 C 1.40625 -4.265625 1.640625 -4.421875 2 -4.421875 C 2.359375 -4.421875 2.5625 -4.1875 2.671875 -4.015625 C 2.859375 -3.71875 2.890625 -3.234375 2.890625 -2.984375 Z M 2.890625 -2.984375 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 3.671875 -1.140625 L 3.671875 -1.390625 L 2.90625 -1.390625 L 2.90625 -4.484375 C 2.90625 -4.640625 2.90625 -4.6875 2.75 -4.6875 C 2.671875 -4.6875 2.640625 -4.6875 2.578125 -4.59375 L 0.265625 -1.390625 L 0.265625 -1.140625 L 2.3125 -1.140625 L 2.3125 -0.5625 C 2.3125 -0.328125 2.3125 -0.25 1.75 -0.25 L 1.5625 -0.25 L 1.5625 0 L 2.609375 -0.03125 L 3.65625 0 L 3.65625 -0.25 L 3.46875 -0.25 C 2.90625 -0.25 2.90625 -0.328125 2.90625 -0.5625 L 2.90625 -1.140625 Z M 2.359375 -1.390625 L 0.53125 -1.390625 L 2.359375 -3.9375 Z M 2.359375 -1.390625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.578125 -1.421875 C 3.578125 -2.296875 2.875 -2.953125 2.0625 -2.953125 C 1.5 -2.953125 1.203125 -2.59375 1.046875 -2.28125 C 1.046875 -2.84375 1.09375 -3.359375 1.359375 -3.78125 C 1.59375 -4.15625 1.96875 -4.421875 2.40625 -4.421875 C 2.625 -4.421875 2.90625 -4.359375 3.03125 -4.171875 C 2.859375 -4.15625 2.71875 -4.046875 2.71875 -3.84375 C 2.71875 -3.671875 2.84375 -3.515625 3.046875 -3.515625 C 3.25 -3.515625 3.375 -3.65625 3.375 -3.859375 C 3.375 -4.25 3.09375 -4.609375 2.40625 -4.609375 C 1.390625 -4.609375 0.375 -3.703125 0.375 -2.203125 C 0.375 -0.40625 1.21875 0.140625 1.984375 0.140625 C 2.84375 0.140625 3.578125 -0.5 3.578125 -1.421875 Z M 2.90625 -1.421875 C 2.90625 -1.015625 2.90625 -0.734375 2.71875 -0.453125 C 2.546875 -0.21875 2.328125 -0.078125 1.984375 -0.078125 C 1.640625 -0.078125 1.375 -0.28125 1.21875 -0.59375 C 1.125 -0.796875 1.0625 -1.140625 1.0625 -1.5625 C 1.0625 -2.234375 1.46875 -2.765625 2.015625 -2.765625 C 2.34375 -2.765625 2.5625 -2.640625 2.734375 -2.375 C 2.90625 -2.109375 2.90625 -1.828125 2.90625 -1.421875 Z M 2.90625 -1.421875 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-1-0"> | |
| 33 | +<path d="M -5.796875 -2.359375 L -5.796875 -0.84375 L 0 -0.84375 L 0 -1.640625 L -2.125 -1.640625 L -2.125 -2.375 C -2.125 -3.640625 -2.671875 -4.609375 -4 -4.609375 C -5.21875 -4.609375 -5.796875 -3.75 -5.796875 -2.359375 Z M -2.75 -2.34375 L -2.75 -1.640625 L -5.171875 -1.640625 L -5.171875 -2.359375 C -5.171875 -3.21875 -4.859375 -3.765625 -4 -3.765625 C -3.015625 -3.765625 -2.75 -3.1875 -2.75 -2.34375 Z M -2.75 -2.34375 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-1-1"> | |
| 36 | +<path d="M -4.53125 -2.703125 C -4.53125 -2.15625 -4.1875 -1.75 -3.53125 -1.515625 L -4.4375 -1.4375 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 L -2.53125 -1.546875 C -3.375 -1.734375 -3.78125 -2.046875 -3.78125 -2.609375 C -3.78125 -2.765625 -3.75 -2.859375 -3.71875 -3 L -4.484375 -3.140625 C -4.515625 -3 -4.53125 -2.84375 -4.53125 -2.703125 Z M -4.53125 -2.703125 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-1-2"> | |
| 39 | +<path d="M -6.5625 -1.15625 C -6.5625 -0.828125 -6.328125 -0.609375 -6.03125 -0.609375 C -5.734375 -0.609375 -5.5 -0.828125 -5.5 -1.15625 C -5.5 -1.484375 -5.734375 -1.703125 -6.03125 -1.703125 C -6.328125 -1.703125 -6.5625 -1.484375 -6.5625 -1.15625 Z M -4.4375 -1.546875 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 Z M -4.4375 -1.546875 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-1-3"> | |
| 42 | +<path d="M -2.375 -2.5 L -4.4375 -3.859375 L -4.4375 -2.984375 L -2.8125 -2.046875 L -4.4375 -1.125 L -4.4375 -0.21875 L -2.34375 -1.59375 L 0 -0.046875 L 0 -0.921875 L -1.875 -2.015625 L 0 -3.109375 L 0 -4.03125 Z M -2.375 -2.5 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-1-4"> | |
| 45 | +<path d="M -4.53125 -5.21875 C -4.53125 -4.625 -4.21875 -4.21875 -3.734375 -3.90625 C -4.234375 -3.734375 -4.53125 -3.328125 -4.53125 -2.78125 C -4.53125 -2.203125 -4.234375 -1.796875 -3.78125 -1.5 L -4.4375 -1.4375 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 L -3.140625 -1.546875 C -3.609375 -1.84375 -3.921875 -2.109375 -3.921875 -2.59375 C -3.921875 -2.921875 -3.734375 -3.21875 -3.0625 -3.21875 L 0 -3.21875 L 0 -3.984375 L -3.140625 -3.984375 C -3.609375 -4.28125 -3.921875 -4.546875 -3.921875 -5.03125 C -3.921875 -5.359375 -3.734375 -5.65625 -3.0625 -5.65625 L 0 -5.65625 L 0 -6.421875 L -3.171875 -6.421875 C -4.015625 -6.421875 -4.53125 -5.9375 -4.53125 -5.21875 Z M -4.53125 -5.21875 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-1-5"> | |
| 48 | +<path d="M -6.09375 -3.359375 L -6.734375 -3.015625 L -5.78125 -1.34375 L -5.359375 -1.578125 Z M -2.34375 -4.140625 C -3.703125 -4.140625 -4.53125 -3.515625 -4.53125 -2.3125 C -4.53125 -1.171875 -3.546875 -0.484375 -2.171875 -0.484375 C -0.765625 -0.484375 0.09375 -1.203125 0.09375 -2.4375 C 0.09375 -3.046875 -0.109375 -3.546875 -0.453125 -3.984375 L -0.921875 -3.640625 C -0.640625 -3.265625 -0.53125 -2.9375 -0.53125 -2.5 C -0.53125 -1.859375 -0.921875 -1.375 -1.953125 -1.296875 L -1.953125 -4.125 C -2.046875 -4.140625 -2.1875 -4.140625 -2.34375 -4.140625 Z M -2.515625 -3.375 L -2.515625 -1.296875 C -3.5 -1.359375 -3.921875 -1.75 -3.921875 -2.34375 C -3.921875 -3.03125 -3.4375 -3.375 -2.578125 -3.375 Z M -2.515625 -3.375 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-1-6"> | |
| 51 | +<path d="M -6.296875 -3.40625 L -3.984375 -3.40625 C -4.296875 -3.125 -4.53125 -2.734375 -4.53125 -2.21875 C -4.53125 -1.140625 -3.546875 -0.484375 -2.1875 -0.484375 C -0.8125 -0.484375 0.09375 -1.078125 0.09375 -2.15625 C 0.09375 -2.703125 -0.171875 -3.140625 -0.609375 -3.4375 L 0 -3.5 L 0 -4.1875 L -6.21875 -4.1875 Z M -0.515625 -2.3125 C -0.515625 -1.6875 -1.046875 -1.3125 -2.203125 -1.3125 C -3.359375 -1.3125 -3.921875 -1.71875 -3.921875 -2.390625 C -3.921875 -2.828125 -3.6875 -3.140625 -3.34375 -3.40625 L -1.171875 -3.40625 C -0.75 -3.125 -0.515625 -2.8125 -0.515625 -2.3125 Z M -0.515625 -2.3125 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-1-7"> | |
| 54 | +<path d="M -1.03125 -3.734375 L -3.0625 -3.734375 C -3.984375 -3.734375 -4.53125 -3.25 -4.53125 -2.1875 C -4.53125 -1.6875 -4.4375 -1.203125 -4.234375 -0.65625 L -3.671875 -0.84375 C -3.8125 -1.296875 -3.90625 -1.71875 -3.90625 -2.046875 C -3.90625 -2.65625 -3.671875 -2.96875 -3.03125 -2.96875 L -2.703125 -2.96875 L -2.703125 -2.28125 C -2.703125 -1.046875 -2.1875 -0.34375 -1.234375 -0.34375 C -0.453125 -0.34375 0.09375 -0.859375 0.09375 -1.75 C 0.09375 -2.28125 -0.09375 -2.75 -0.5625 -3.0625 C -0.125 -3.203125 0.046875 -3.484375 0.09375 -3.9375 L -0.4375 -4.109375 C -0.515625 -3.890625 -0.640625 -3.734375 -1.03125 -3.734375 Z M -0.484375 -1.921875 C -0.484375 -1.421875 -0.75 -1.15625 -1.28125 -1.15625 C -1.890625 -1.15625 -2.1875 -1.578125 -2.1875 -2.390625 L -2.1875 -2.96875 L -1.171875 -2.96875 C -0.703125 -2.71875 -0.484375 -2.375 -0.484375 -1.921875 Z M -0.484375 -1.921875 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-1-8"> | |
| 57 | +<path d="M -4.53125 -2.859375 C -4.53125 -2.28125 -4.234375 -1.8125 -3.78125 -1.5 L -4.4375 -1.4375 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 L -3.140625 -1.546875 C -3.609375 -1.84375 -3.921875 -2.171875 -3.921875 -2.671875 C -3.921875 -3.109375 -3.734375 -3.375 -3.0625 -3.375 L 0 -3.375 L 0 -4.140625 L -3.171875 -4.140625 C -4.015625 -4.140625 -4.53125 -3.671875 -4.53125 -2.859375 Z M -4.53125 -2.859375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-9"> | |
| 60 | +<path d="M -7.109375 -1.90625 C -5.9375 -1.078125 -4.9375 -0.34375 -2.9375 -0.34375 C -0.953125 -0.34375 0.046875 -1.078125 1.21875 -1.90625 L 0.875 -2.390625 C -0.234375 -1.625 -1.140625 -1.140625 -2.9375 -1.140625 C -4.75 -1.140625 -5.65625 -1.625 -6.765625 -2.390625 Z M -7.109375 -1.90625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-10"> | |
| 63 | +<path d="M 0.09375 -1.640625 C 0.09375 -1.875 0.046875 -2.09375 -0.046875 -2.265625 L -0.59375 -2.0625 C -0.5625 -1.96875 -0.53125 -1.890625 -0.53125 -1.78125 C -0.53125 -1.578125 -0.65625 -1.5 -0.890625 -1.5 L -6.296875 -1.5 L -6.21875 -0.71875 L -0.875 -0.71875 C -0.25 -0.71875 0.09375 -1.078125 0.09375 -1.640625 Z M 0.09375 -1.640625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-11"> | |
| 66 | +<path d="M -2.34375 -4.140625 C -3.703125 -4.140625 -4.53125 -3.515625 -4.53125 -2.3125 C -4.53125 -1.171875 -3.546875 -0.484375 -2.171875 -0.484375 C -0.765625 -0.484375 0.09375 -1.203125 0.09375 -2.4375 C 0.09375 -3.046875 -0.109375 -3.546875 -0.453125 -3.984375 L -0.921875 -3.640625 C -0.640625 -3.265625 -0.53125 -2.9375 -0.53125 -2.5 C -0.53125 -1.859375 -0.921875 -1.375 -1.953125 -1.296875 L -1.953125 -4.125 C -2.046875 -4.140625 -2.1875 -4.140625 -2.34375 -4.140625 Z M -2.515625 -3.375 L -2.515625 -1.296875 C -3.5 -1.359375 -3.921875 -1.75 -3.921875 -2.34375 C -3.921875 -3.03125 -3.4375 -3.375 -2.578125 -3.375 Z M -2.515625 -3.375 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-12"> | |
| 69 | +<path d="M -4.53125 -2 C -4.53125 -1.078125 -4.015625 -0.40625 -3.3125 -0.40625 C -2.6875 -0.40625 -2.28125 -0.78125 -2.03125 -1.734375 C -1.796875 -2.59375 -1.625 -2.8125 -1.1875 -2.8125 C -0.765625 -2.8125 -0.515625 -2.453125 -0.515625 -1.859375 C -0.515625 -1.390625 -0.6875 -0.96875 -0.953125 -0.625 L -0.484375 -0.203125 C -0.140625 -0.59375 0.09375 -1.140625 0.09375 -1.890625 C 0.09375 -2.78125 -0.3125 -3.625 -1.25 -3.625 C -2.015625 -3.625 -2.390625 -3.09375 -2.625 -2.15625 C -2.8125 -1.453125 -2.96875 -1.203125 -3.34375 -1.203125 C -3.6875 -1.203125 -3.921875 -1.515625 -3.921875 -2.03125 C -3.921875 -2.4375 -3.796875 -2.78125 -3.53125 -3.171875 L -4.03125 -3.5 C -4.34375 -3.078125 -4.53125 -2.625 -4.53125 -2 Z M -4.53125 -2 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-13"> | |
| 72 | +<path d="M -1.5625 -4.125 C -2.640625 -4.125 -3 -3.359375 -3.265625 -2.46875 C -3.578125 -1.453125 -3.8125 -1.234375 -4.28125 -1.234375 C -4.8125 -1.234375 -5.078125 -1.6875 -5.078125 -2.25 C -5.078125 -2.71875 -4.9375 -3.125 -4.578125 -3.5 L -5.0625 -3.953125 C -5.40625 -3.578125 -5.625 -3.171875 -5.6875 -2.609375 L -6.921875 -2.609375 L -6.921875 -1.9375 L -5.703125 -1.9375 C -5.59375 -1.046875 -5.03125 -0.4375 -4.25 -0.4375 C -3.375 -0.4375 -2.953125 -1.015625 -2.625 -2.09375 C -2.328125 -3.0625 -2.078125 -3.328125 -1.53125 -3.328125 C -0.859375 -3.328125 -0.53125 -2.78125 -0.53125 -2.109375 C -0.53125 -1.5 -0.75 -1.046875 -1.125 -0.671875 L -0.625 -0.203125 C -0.203125 -0.640625 0.0625 -1.203125 0.09375 -1.9375 L 1.296875 -1.9375 L 1.296875 -2.609375 L 0.0625 -2.609375 C -0.09375 -3.578125 -0.71875 -4.125 -1.5625 -4.125 Z M -1.5625 -4.125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-14"> | |
| 75 | +<path d="M -7.109375 -0.828125 L -6.765625 -0.34375 C -5.65625 -1.09375 -4.75 -1.578125 -2.9375 -1.578125 C -1.140625 -1.578125 -0.234375 -1.09375 0.875 -0.34375 L 1.21875 -0.828125 C 0.046875 -1.640625 -0.953125 -2.390625 -2.9375 -2.390625 C -4.9375 -2.390625 -5.9375 -1.640625 -7.109375 -0.828125 Z M -7.109375 -0.828125 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-2-0"> | |
| 78 | +<path d="M 2.3125 -4.59375 C 1.28125 -4.59375 0.359375 -3.78125 0.359375 -2.265625 C 0.359375 -0.703125 1.09375 0.078125 2.25 0.078125 C 2.828125 0.078125 3.296875 -0.078125 3.71875 -0.328125 L 3.71875 -2.5 L 2.234375 -2.5 L 2.3125 -2 L 3.109375 -2 L 3.109375 -0.640625 C 2.859375 -0.484375 2.546875 -0.4375 2.25 -0.4375 C 1.453125 -0.4375 1.015625 -0.96875 1.015625 -2.265625 C 1.015625 -3.59375 1.671875 -4.078125 2.3125 -4.078125 C 2.71875 -4.078125 2.984375 -3.96875 3.3125 -3.71875 L 3.671875 -4.09375 C 3.28125 -4.40625 2.90625 -4.59375 2.3125 -4.59375 Z M 2.3125 -4.59375 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-2-1"> | |
| 81 | +<path d="M 2.90625 -0.8125 L 2.90625 -2.390625 C 2.90625 -3.109375 2.53125 -3.53125 1.703125 -3.53125 C 1.3125 -3.53125 0.9375 -3.453125 0.515625 -3.296875 L 0.65625 -2.859375 C 1.015625 -2.96875 1.328125 -3.03125 1.59375 -3.03125 C 2.0625 -3.03125 2.3125 -2.859375 2.3125 -2.359375 L 2.3125 -2.109375 L 1.78125 -2.109375 C 0.8125 -2.109375 0.265625 -1.703125 0.265625 -0.96875 C 0.265625 -0.34375 0.671875 0.078125 1.359375 0.078125 C 1.78125 0.078125 2.140625 -0.078125 2.390625 -0.4375 C 2.5 -0.09375 2.71875 0.046875 3.0625 0.078125 L 3.203125 -0.34375 C 3.03125 -0.40625 2.90625 -0.5 2.90625 -0.8125 Z M 1.5 -0.375 C 1.109375 -0.375 0.90625 -0.59375 0.90625 -1 C 0.90625 -1.46875 1.21875 -1.703125 1.859375 -1.703125 L 2.3125 -1.703125 L 2.3125 -0.90625 C 2.109375 -0.546875 1.859375 -0.375 1.5 -0.375 Z M 1.5 -0.375 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-2-2"> | |
| 84 | +<path d="M 2.140625 -0.5625 C 1.96875 -0.46875 1.828125 -0.421875 1.671875 -0.421875 C 1.375 -0.421875 1.265625 -0.578125 1.265625 -0.921875 L 1.265625 -2.984375 L 2.015625 -2.984375 L 2.078125 -3.453125 L 1.265625 -3.453125 L 1.265625 -4.296875 L 0.65625 -4.234375 L 0.65625 -3.453125 L 0.0625 -3.453125 L 0.0625 -2.984375 L 0.65625 -2.984375 L 0.65625 -0.90625 C 0.65625 -0.265625 1.015625 0.078125 1.59375 0.078125 C 1.890625 0.078125 2.140625 0 2.359375 -0.15625 Z M 2.140625 -0.5625 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-2-3"> | |
| 87 | +<path d="M 0.890625 -5.109375 C 0.640625 -5.109375 0.484375 -4.9375 0.484375 -4.6875 C 0.484375 -4.46875 0.640625 -4.28125 0.890625 -4.28125 C 1.15625 -4.28125 1.328125 -4.46875 1.328125 -4.6875 C 1.328125 -4.9375 1.15625 -5.109375 0.890625 -5.109375 Z M 1.203125 -3.453125 L 0.609375 -3.453125 L 0.609375 0 L 1.203125 0 Z M 1.203125 -3.453125 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-2-4"> | |
| 90 | +<path d="M 2.21875 -3.53125 C 1.78125 -3.53125 1.40625 -3.296875 1.171875 -2.9375 L 1.125 -3.453125 L 0.609375 -3.453125 L 0.609375 0 L 1.203125 0 L 1.203125 -2.453125 C 1.4375 -2.8125 1.703125 -3.0625 2.078125 -3.0625 C 2.421875 -3.0625 2.625 -2.90625 2.625 -2.390625 L 2.625 0 L 3.234375 0 L 3.234375 -2.46875 C 3.234375 -3.125 2.859375 -3.53125 2.21875 -3.53125 Z M 2.21875 -3.53125 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-2-5"> | |
| 93 | +<path d="M 3.234375 -1.828125 C 3.234375 -2.875 2.734375 -3.53125 1.8125 -3.53125 C 0.921875 -3.53125 0.375 -2.765625 0.375 -1.6875 C 0.375 -0.59375 0.9375 0.078125 1.90625 0.078125 C 2.375 0.078125 2.765625 -0.078125 3.109375 -0.359375 L 2.84375 -0.71875 C 2.546875 -0.5 2.28125 -0.40625 1.9375 -0.40625 C 1.453125 -0.40625 1.078125 -0.71875 1.015625 -1.515625 L 3.21875 -1.515625 C 3.21875 -1.59375 3.234375 -1.703125 3.234375 -1.828125 Z M 2.625 -1.96875 L 1.015625 -1.96875 C 1.0625 -2.734375 1.359375 -3.046875 1.8125 -3.046875 C 2.359375 -3.046875 2.625 -2.671875 2.625 -2 Z M 2.625 -1.96875 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-2-6"> | |
| 96 | +<path d="M 3.15625 -3.453125 L 2.5625 -3.453125 L 2.5625 -0.984375 C 2.34375 -0.640625 2.0625 -0.390625 1.703125 -0.390625 C 1.328125 -0.390625 1.171875 -0.5625 1.171875 -1.046875 L 1.171875 -3.453125 L 0.5625 -3.453125 L 0.5625 -0.96875 C 0.5625 -0.296875 0.921875 0.078125 1.53125 0.078125 C 2.015625 0.078125 2.34375 -0.125 2.59375 -0.53125 L 2.640625 0 L 3.15625 0 Z M 3.15625 -3.453125 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-2-7"> | |
| 99 | +<path d="M 2.265625 -4.59375 C 1.140625 -4.59375 0.359375 -3.734375 0.359375 -2.25 C 0.359375 -0.734375 1.140625 0.078125 2.265625 0.078125 C 3.390625 0.078125 4.171875 -0.765625 4.171875 -2.25 C 4.171875 -3.765625 3.390625 -4.59375 2.265625 -4.59375 Z M 2.265625 -4.078125 C 3.03125 -4.078125 3.515625 -3.546875 3.515625 -2.25 C 3.515625 -0.9375 3.03125 -0.4375 2.265625 -0.4375 C 1.53125 -0.4375 1.015625 -0.9375 1.015625 -2.25 C 1.015625 -3.546875 1.515625 -4.078125 2.265625 -4.078125 Z M 2.265625 -4.078125 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-2-8"> | |
| 102 | +<path d="M 4.5625 -3.453125 L 3.984375 -3.453125 L 3.359375 -0.421875 L 2.703125 -3.453125 L 2.03125 -3.453125 L 1.359375 -0.421875 L 0.734375 -3.453125 L 0.125 -3.453125 L 0.9375 0 L 1.734375 0 L 2.359375 -2.90625 L 2.953125 0 L 3.78125 0 Z M 4.5625 -3.453125 "/> | |
| 103 | +</g> | |
| 104 | +</g> | |
| 105 | +<clipPath id="clip-0"> | |
| 106 | +<path clip-rule="nonzero" d="M 39.25 30 L 367.960938 30 L 367.960938 108.085938 L 39.25 108.085938 Z M 39.25 30 "/> | |
| 107 | +</clipPath> | |
| 108 | +<clipPath id="clip-1"> | |
| 109 | +<path clip-rule="nonzero" d="M 39.25 5.714844 L 367.960938 5.714844 L 367.960938 95 L 39.25 95 Z M 39.25 5.714844 "/> | |
| 110 | +</clipPath> | |
| 111 | +<clipPath id="clip-2"> | |
| 112 | +<path clip-rule="nonzero" d="M 330 28 L 373.671875 28 L 373.671875 75 L 330 75 Z M 330 28 "/> | |
| 113 | +</clipPath> | |
| 114 | +</defs> | |
| 115 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(84.999084%, 84.999084%, 84.999084%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 0.00193283 0.00113829 L 0.00193283 102.569163 M 57.275961 0.00113829 L 57.275961 102.569163 M 114.553904 0.00113829 L 114.553904 102.569163 M 171.831846 0.00113829 L 171.831846 102.569163 M 229.109789 0.00113829 L 229.109789 102.569163 M 286.387731 0.00113829 L 286.387731 102.569163 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 116 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(84.999084%, 84.999084%, 84.999084%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 0.00193283 0.00113829 L 329.345209 0.00113829 M 0.00193283 41.025217 L 329.345209 41.025217 M 0.00193283 82.05321 L 329.345209 82.05321 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 117 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00193283 0.00113829 L 0.00193283 4.251486 M 57.275961 0.00113829 L 57.275961 4.251486 M 114.553904 0.00113829 L 114.553904 4.251486 M 171.831846 0.00113829 L 171.831846 4.251486 M 229.109789 0.00113829 L 229.109789 4.251486 M 286.387731 0.00113829 L 286.387731 4.251486 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 118 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00193283 0.00113829 L 4.24054 0.00113829 M 0.00193283 41.025217 L 4.24054 41.025217 M 0.00193283 82.05321 L 4.24054 82.05321 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 119 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00193283 0.00113829 L 329.345209 0.00113829 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 120 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00193283 0.00113829 L 0.00193283 102.569163 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 121 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 122 | +<use xlink:href="#glyph-0-0" x="30.641627" y="116.433019"/> | |
| 123 | +</g> | |
| 124 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 125 | +<use xlink:href="#glyph-0-1" x="35.962165" y="116.433019"/> | |
| 126 | +<use xlink:href="#glyph-0-2" x="39.925422" y="116.433019"/> | |
| 127 | +<use xlink:href="#glyph-0-3" x="43.88868" y="116.433019"/> | |
| 128 | +</g> | |
| 129 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 130 | +<use xlink:href="#glyph-0-0" x="87.808655" y="116.433019"/> | |
| 131 | +</g> | |
| 132 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 133 | +<use xlink:href="#glyph-0-1" x="93.129193" y="116.433019"/> | |
| 134 | +<use xlink:href="#glyph-0-2" x="97.09245" y="116.433019"/> | |
| 135 | +<use xlink:href="#glyph-0-4" x="101.055708" y="116.433019"/> | |
| 136 | +</g> | |
| 137 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 138 | +<use xlink:href="#glyph-0-0" x="144.974685" y="116.433019"/> | |
| 139 | +</g> | |
| 140 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 141 | +<use xlink:href="#glyph-0-1" x="150.295223" y="116.433019"/> | |
| 142 | +<use xlink:href="#glyph-0-2" x="154.258481" y="116.433019"/> | |
| 143 | +<use xlink:href="#glyph-0-5" x="158.221738" y="116.433019"/> | |
| 144 | +</g> | |
| 145 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 146 | +<use xlink:href="#glyph-0-0" x="202.141713" y="116.433019"/> | |
| 147 | +</g> | |
| 148 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 149 | +<use xlink:href="#glyph-0-1" x="207.462251" y="116.433019"/> | |
| 150 | +<use xlink:href="#glyph-0-0" x="211.425509" y="116.433019"/> | |
| 151 | +<use xlink:href="#glyph-0-2" x="215.388766" y="116.433019"/> | |
| 152 | +</g> | |
| 153 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 154 | +<use xlink:href="#glyph-0-0" x="259.308742" y="116.433019"/> | |
| 155 | +</g> | |
| 156 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 157 | +<use xlink:href="#glyph-0-1" x="264.629279" y="116.433019"/> | |
| 158 | +<use xlink:href="#glyph-0-0" x="268.592537" y="116.433019"/> | |
| 159 | +<use xlink:href="#glyph-0-6" x="272.555794" y="116.433019"/> | |
| 160 | +</g> | |
| 161 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 162 | +<use xlink:href="#glyph-0-0" x="316.474772" y="116.433019"/> | |
| 163 | +</g> | |
| 164 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 165 | +<use xlink:href="#glyph-0-1" x="321.795309" y="116.433019"/> | |
| 166 | +<use xlink:href="#glyph-0-0" x="325.758567" y="116.433019"/> | |
| 167 | +<use xlink:href="#glyph-0-3" x="329.721825" y="116.433019"/> | |
| 168 | +</g> | |
| 169 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 170 | +<use xlink:href="#glyph-0-0" x="23.496372" y="110.329759"/> | |
| 171 | +<use xlink:href="#glyph-0-1" x="27.45963" y="110.329759"/> | |
| 172 | +<use xlink:href="#glyph-0-1" x="31.422888" y="110.329759"/> | |
| 173 | +</g> | |
| 174 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 175 | +<use xlink:href="#glyph-0-7" x="23.496372" y="69.381531"/> | |
| 176 | +<use xlink:href="#glyph-0-1" x="27.45963" y="69.381531"/> | |
| 177 | +<use xlink:href="#glyph-0-1" x="31.422888" y="69.381531"/> | |
| 178 | +</g> | |
| 179 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 180 | +<use xlink:href="#glyph-0-8" x="23.496372" y="28.434301"/> | |
| 181 | +<use xlink:href="#glyph-0-1" x="27.45963" y="28.434301"/> | |
| 182 | +<use xlink:href="#glyph-0-1" x="31.422888" y="28.434301"/> | |
| 183 | +</g> | |
| 184 | +<g clip-path="url(#clip-0)"> | |
| 185 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00193283 8.204389 L 28.638947 10.255201 L 57.275961 12.716959 L 85.91689 16.411553 L 114.553904 20.102232 L 143.194832 27.694935 L 171.831846 41.025217 L 200.468861 49.232381 L 229.109789 44.10535 L 257.746803 49.232381 L 286.387731 53.334006 L 315.024745 56.82117 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 186 | +</g> | |
| 187 | +<g clip-path="url(#clip-1)"> | |
| 188 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00193283 34.872779 L 28.638947 36.512647 L 57.275961 38.974404 L 85.91689 43.079943 L 114.553904 46.156162 L 143.194832 57.439545 L 171.831846 73.849959 L 200.468861 84.104022 L 229.109789 76.926178 L 257.746803 80.002397 L 286.387731 83.078616 L 315.024745 86.158748 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 189 | +</g> | |
| 190 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 1.794437 8.204389 C 1.794437 9.194571 0.992115 9.996893 0.00193283 9.996893 C -0.992163 9.996893 -1.794485 9.194571 -1.794485 8.204389 C -1.794485 7.214206 -0.992163 6.411884 0.00193283 6.411884 C 0.992115 6.411884 1.794437 7.214206 1.794437 8.204389 Z M 1.794437 8.204389 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 191 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 30.431451 10.255201 C 30.431451 11.245383 29.62913 12.051619 28.638947 12.051619 C 27.648765 12.051619 26.846443 11.245383 26.846443 10.255201 C 26.846443 9.265019 27.648765 8.462697 28.638947 8.462697 C 29.62913 8.462697 30.431451 9.265019 30.431451 10.255201 Z M 30.431451 10.255201 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 192 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 59.072379 12.716959 C 59.072379 13.707141 58.266144 14.513377 57.275961 14.513377 C 56.285779 14.513377 55.483457 13.707141 55.483457 12.716959 C 55.483457 11.726777 56.285779 10.924455 57.275961 10.924455 C 58.266144 10.924455 59.072379 11.726777 59.072379 12.716959 Z M 59.072379 12.716959 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 193 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 87.709394 16.411553 C 87.709394 17.401735 86.907072 18.204057 85.91689 18.204057 C 84.926707 18.204057 84.124385 17.401735 84.124385 16.411553 C 84.124385 15.42137 84.926707 14.619048 85.91689 14.619048 C 86.907072 14.619048 87.709394 15.42137 87.709394 16.411553 Z M 87.709394 16.411553 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 194 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 116.346408 20.102232 C 116.346408 21.092415 115.544086 21.894736 114.553904 21.894736 C 113.563721 21.894736 112.7614 21.092415 112.7614 20.102232 C 112.7614 19.11205 113.563721 18.309728 114.553904 18.309728 C 115.544086 18.309728 116.346408 19.11205 116.346408 20.102232 Z M 116.346408 20.102232 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 195 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 144.987336 27.694935 C 144.987336 28.685118 144.185014 29.487439 143.194832 29.487439 C 142.20465 29.487439 141.398414 28.685118 141.398414 27.694935 C 141.398414 26.704753 142.20465 25.898518 143.194832 25.898518 C 144.185014 25.898518 144.987336 26.704753 144.987336 27.694935 Z M 144.987336 27.694935 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 196 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 173.62435 41.025217 C 173.62435 42.019313 172.822029 42.821635 171.831846 42.821635 C 170.841664 42.821635 170.039342 42.019313 170.039342 41.025217 C 170.039342 40.035035 170.841664 39.232713 171.831846 39.232713 C 172.822029 39.232713 173.62435 40.035035 173.62435 41.025217 Z M 173.62435 41.025217 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 197 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 202.265278 49.232381 C 202.265278 50.222563 201.462957 51.024885 200.468861 51.024885 C 199.478678 51.024885 198.676356 50.222563 198.676356 49.232381 C 198.676356 48.242199 199.478678 47.439877 200.468861 47.439877 C 201.462957 47.439877 202.265278 48.242199 202.265278 49.232381 Z M 202.265278 49.232381 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 198 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 230.902293 44.10535 C 230.902293 45.095532 230.099971 45.897854 229.109789 45.897854 C 228.119606 45.897854 227.317285 45.095532 227.317285 44.10535 C 227.317285 43.115167 228.119606 42.308932 229.109789 42.308932 C 230.099971 42.308932 230.902293 43.115167 230.902293 44.10535 Z M 230.902293 44.10535 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 199 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 259.543221 49.232381 C 259.543221 50.222563 258.736985 51.024885 257.746803 51.024885 C 256.756621 51.024885 255.954299 50.222563 255.954299 49.232381 C 255.954299 48.242199 256.756621 47.439877 257.746803 47.439877 C 258.736985 47.439877 259.543221 48.242199 259.543221 49.232381 Z M 259.543221 49.232381 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 200 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 288.180235 53.334006 C 288.180235 54.324189 287.377913 55.130424 286.387731 55.130424 C 285.397549 55.130424 284.595227 54.324189 284.595227 53.334006 C 284.595227 52.343824 285.397549 51.541502 286.387731 51.541502 C 287.377913 51.541502 288.180235 52.343824 288.180235 53.334006 Z M 288.180235 53.334006 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 201 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" d="M 355.457031 51.375 C 355.457031 50.386719 354.65625 49.582031 353.667969 49.582031 C 352.679688 49.582031 351.878906 50.386719 351.878906 51.375 C 351.878906 52.363281 352.679688 53.164062 353.667969 53.164062 C 354.65625 53.164062 355.457031 52.363281 355.457031 51.375 Z M 355.457031 51.375 "/> | |
| 202 | +<g clip-path="url(#clip-2)"> | |
| 203 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 316.817249 56.82117 C 316.817249 57.811353 316.014928 58.617588 315.024745 58.617588 C 314.034563 58.617588 313.232241 57.811353 313.232241 56.82117 C 313.232241 55.830988 314.034563 55.028666 315.024745 55.028666 C 316.014928 55.028666 316.817249 55.830988 316.817249 56.82117 Z M 316.817249 56.82117 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 204 | +</g> | |
| 205 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M -1.794485 33.080275 L 1.794437 33.080275 L 1.794437 36.665283 L -1.794485 36.665283 Z M -1.794485 33.080275 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 206 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26.846443 34.720143 L 30.431451 34.720143 L 30.431451 38.309065 L 26.846443 38.309065 Z M 26.846443 34.720143 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 207 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 55.483457 37.1819 L 59.072379 37.1819 L 59.072379 40.770822 L 55.483457 40.770822 Z M 55.483457 37.1819 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 208 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 84.124385 41.283525 L 87.709394 41.283525 L 87.709394 44.872447 L 84.124385 44.872447 Z M 84.124385 41.283525 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 209 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 112.7614 44.363658 L 116.346408 44.363658 L 116.346408 47.948666 L 112.7614 47.948666 Z M 112.7614 44.363658 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 210 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 141.398414 55.643127 L 144.987336 55.643127 L 144.987336 59.232049 L 141.398414 59.232049 Z M 141.398414 55.643127 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 211 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 170.039342 72.053541 L 173.62435 72.053541 L 173.62435 75.642463 L 170.039342 75.642463 Z M 170.039342 72.053541 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 212 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 198.676356 82.311518 L 202.265278 82.311518 L 202.265278 85.90044 L 198.676356 85.90044 Z M 198.676356 82.311518 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 213 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 227.317285 75.133674 L 230.902293 75.133674 L 230.902293 78.718682 L 227.317285 78.718682 Z M 227.317285 75.133674 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 214 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 255.954299 78.209893 L 259.543221 78.209893 L 259.543221 81.794901 L 255.954299 81.794901 Z M 255.954299 78.209893 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 215 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 284.595227 81.286112 L 288.180235 81.286112 L 288.180235 84.875034 L 284.595227 84.875034 Z M 284.595227 81.286112 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 216 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 313.232241 84.362331 L 316.817249 84.362331 L 316.817249 87.951253 L 313.232241 87.951253 Z M 313.232241 84.362331 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 217 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 218 | +<use xlink:href="#glyph-1-0" x="15.212308" y="100.755178"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-1-1" x="15.212308" y="96.035924"/> | |
| 222 | +<use xlink:href="#glyph-1-2" x="15.212308" y="92.814045"/> | |
| 223 | +<use xlink:href="#glyph-1-3" x="15.212308" y="90.492273"/> | |
| 224 | +</g> | |
| 225 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 226 | +<use xlink:href="#glyph-1-4" x="15.212308" y="84.18311"/> | |
| 227 | +<use xlink:href="#glyph-1-5" x="15.212308" y="77.032725"/> | |
| 228 | +<use xlink:href="#glyph-1-6" x="15.212308" y="72.456478"/> | |
| 229 | +<use xlink:href="#glyph-1-2" x="15.212308" y="67.49327"/> | |
| 230 | +<use xlink:href="#glyph-1-7" x="15.212308" y="65.171498"/> | |
| 231 | +<use xlink:href="#glyph-1-8" x="15.212308" y="60.637313"/> | |
| 232 | +</g> | |
| 233 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 234 | +<use xlink:href="#glyph-1-9" x="15.212308" y="53.537401"/> | |
| 235 | +<use xlink:href="#glyph-1-4" x="15.212308" y="50.811843"/> | |
| 236 | +<use xlink:href="#glyph-1-2" x="15.212308" y="43.661458"/> | |
| 237 | +<use xlink:href="#glyph-1-10" x="15.212308" y="41.339686"/> | |
| 238 | +<use xlink:href="#glyph-1-10" x="15.212308" y="38.866494"/> | |
| 239 | +<use xlink:href="#glyph-1-2" x="15.212308" y="36.393302"/> | |
| 240 | +<use xlink:href="#glyph-1-11" x="15.212308" y="34.07153"/> | |
| 241 | +<use xlink:href="#glyph-1-1" x="15.212308" y="29.495284"/> | |
| 242 | +</g> | |
| 243 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 244 | +<use xlink:href="#glyph-1-12" x="15.212308" y="26.399588"/> | |
| 245 | +</g> | |
| 246 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 247 | +<use xlink:href="#glyph-1-13" x="15.212308" y="20.241844"/> | |
| 248 | +<use xlink:href="#glyph-1-14" x="15.212308" y="15.774957"/> | |
| 249 | +</g> | |
| 250 | +<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="0.9" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(81.568909%, 83.529663%, 86.274719%)" stroke-opacity="1" stroke-miterlimit="10" d="M 7.336327 75.251087 L 62.277752 75.251087 L 62.277752 99.766907 L 7.336327 99.766907 Z M 7.336327 75.251087 " transform="matrix(0.99808, 0, 0, -0.99808, 39.248071, 108.087074)"/> | |
| 251 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000941367 0.0000467698 L 17.008279 0.0000467698 " transform="matrix(0.99808, 0, 0, -0.99808, 50.297815, 15.765672)"/> | |
| 252 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="0.9" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 10.296173 0.0000467698 C 10.296173 0.990229 9.493851 1.792551 8.503669 1.792551 C 7.513486 1.792551 6.711165 0.990229 6.711165 0.0000467698 C 6.711165 -0.990136 7.513486 -1.792457 8.503669 -1.792457 C 9.493851 -1.792457 10.296173 -0.990136 10.296173 0.0000467698 Z M 10.296173 0.0000467698 " transform="matrix(0.99808, 0, 0, -0.99808, 50.297815, 15.765672)"/> | |
| 253 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 254 | +<use xlink:href="#glyph-2-0" x="70.007898" y="17.641064"/> | |
| 255 | +<use xlink:href="#glyph-2-1" x="74.136414" y="17.641064"/> | |
| 256 | +<use xlink:href="#glyph-2-2" x="77.66299" y="17.641064"/> | |
| 257 | +<use xlink:href="#glyph-2-3" x="80.024946" y="17.641064"/> | |
| 258 | +<use xlink:href="#glyph-2-4" x="81.830763" y="17.641064"/> | |
| 259 | +<use xlink:href="#glyph-2-5" x="85.619052" y="17.641064"/> | |
| 260 | +</g> | |
| 261 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 262 | +<use xlink:href="#glyph-2-1" x="89.145628" y="17.641064"/> | |
| 263 | +<use xlink:href="#glyph-2-6" x="92.672205" y="17.641064"/> | |
| 264 | +</g> | |
| 265 | +<path fill="none" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000941367 -0.000757324 L 17.008279 -0.000757324 " transform="matrix(0.99808, 0, 0, -0.99808, 50.297815, 26.010963)"/> | |
| 266 | +<path fill-rule="nonzero" fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="0.9" stroke-width="1.49442" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.711165 -1.793261 L 10.296173 -1.793261 L 10.296173 1.791747 L 6.711165 1.791747 Z M 6.711165 -1.793261 " transform="matrix(0.99808, 0, 0, -0.99808, 50.297815, 26.010963)"/> | |
| 267 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="0.9"> | |
| 268 | +<use xlink:href="#glyph-2-7" x="72.722676" y="27.599906"/> | |
| 269 | +<use xlink:href="#glyph-2-2" x="77.250303" y="27.599906"/> | |
| 270 | +<use xlink:href="#glyph-2-2" x="79.612259" y="27.599906"/> | |
| 271 | +<use xlink:href="#glyph-2-1" x="81.974214" y="27.599906"/> | |
| 272 | +<use xlink:href="#glyph-2-8" x="85.500791" y="27.599906"/> | |
| 273 | +<use xlink:href="#glyph-2-1" x="90.191988" y="27.599906"/> | |
| 274 | +</g> | |
| 275 | +</svg> | |
added
dist/assets/fig/b92aa7fcb131b386.svg
+657 −0
@@ -0,0 +1,657 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="398.39pt" height="92.566pt" viewBox="0 0 398.39 92.566"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.65625 0 L 5.203125 0 L 3.71875 -2.46875 C 4.484375 -2.8125 4.84375 -3.28125 4.84375 -4.046875 C 4.84375 -5.25 4.03125 -5.8125 2.453125 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 1.921875 0 L 1.921875 -2.21875 L 2.453125 -2.21875 Z M 1.921875 -4.84375 L 2.421875 -4.84375 C 3.09375 -4.84375 3.421875 -4.609375 3.421875 -4.046875 C 3.421875 -3.4375 3.109375 -3.171875 2.5 -3.171875 L 1.921875 -3.171875 Z M 1.921875 -4.84375 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 2.09375 -4.59375 C 0.96875 -4.59375 0.265625 -4 0.265625 -3.234375 C 0.265625 -2.546875 0.703125 -2.09375 1.578125 -1.84375 C 2.390625 -1.625 2.53125 -1.53125 2.53125 -1.21875 C 2.53125 -0.953125 2.28125 -0.8125 1.875 -0.8125 C 1.4375 -0.8125 1.03125 -0.984375 0.703125 -1.234375 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.90625 0.140625 C 3.015625 0.140625 3.890625 -0.40625 3.890625 -1.328125 C 3.890625 -2.125 3.390625 -2.484375 2.515625 -2.75 C 1.71875 -2.984375 1.609375 -3.078125 1.609375 -3.3125 C 1.609375 -3.515625 1.78125 -3.65625 2.140625 -3.65625 C 2.53125 -3.65625 2.890625 -3.53125 3.234375 -3.3125 L 3.71875 -4.046875 C 3.3125 -4.390625 2.734375 -4.59375 2.09375 -4.59375 Z M 2.09375 -4.59375 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.03125 -4.59375 C 2.578125 -4.59375 2.109375 -4.421875 1.75 -3.953125 L 1.671875 -4.453125 L 0.515625 -4.453125 L 0.515625 1.859375 L 1.84375 1.71875 L 1.84375 -0.3125 C 2.109375 -0.015625 2.484375 0.140625 2.921875 0.140625 C 4.015625 0.140625 4.6875 -0.859375 4.6875 -2.234375 C 4.6875 -3.6875 4.171875 -4.59375 3.03125 -4.59375 Z M 2.515625 -0.828125 C 2.234375 -0.828125 2.015625 -0.953125 1.84375 -1.21875 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.59375 -3.625 C 3.046875 -3.625 3.3125 -3.328125 3.3125 -2.21875 C 3.3125 -1.21875 3 -0.828125 2.515625 -0.828125 Z M 2.515625 -0.828125 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 2.453125 -4.59375 C 1.09375 -4.59375 0.265625 -3.65625 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.625 -0.796875 4.625 -2.21875 C 4.625 -3.71875 3.8125 -4.59375 2.453125 -4.59375 Z M 2.453125 -3.625 C 2.984375 -3.625 3.25 -3.21875 3.25 -2.21875 C 3.25 -1.265625 2.984375 -0.828125 2.453125 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.234375 C 1.640625 -3.203125 1.90625 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 3.125 -4.59375 C 2.5625 -4.59375 2.125 -4.359375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.25 C 4.359375 -4.109375 3.890625 -4.59375 3.125 -4.59375 Z M 3.125 -4.59375 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 4.046875 -1.296875 L 4.046875 -3.015625 C 4.046875 -4.046875 3.484375 -4.59375 2.203125 -4.59375 C 1.6875 -4.59375 1.078125 -4.484375 0.515625 -4.265625 L 0.828125 -3.390625 C 1.265625 -3.546875 1.703125 -3.640625 1.984375 -3.640625 C 2.53125 -3.640625 2.75 -3.46875 2.75 -2.9375 L 2.75 -2.75 L 2.296875 -2.75 C 0.953125 -2.75 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.1875 0.140625 2.671875 -0.03125 3 -0.515625 C 3.203125 -0.078125 3.546875 0.078125 4.0625 0.125 L 4.34375 -0.75 C 4.140625 -0.828125 4.046875 -0.953125 4.046875 -1.296875 Z M 2.03125 -0.8125 C 1.71875 -0.8125 1.53125 -1.015625 1.53125 -1.375 C 1.53125 -1.8125 1.8125 -2.015625 2.421875 -2.015625 L 2.75 -2.015625 L 2.75 -1.21875 C 2.578125 -0.96875 2.34375 -0.8125 2.03125 -0.8125 Z M 2.03125 -0.8125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 3.03125 -4.59375 C 2.546875 -4.59375 2.109375 -4.375 1.84375 -4 L 1.84375 -6.375 L 0.515625 -6.21875 L 0.515625 0 L 1.6875 0 L 1.75 -0.421875 C 2.015625 -0.078125 2.421875 0.140625 2.921875 0.140625 C 4.03125 0.140625 4.6875 -0.84375 4.6875 -2.21875 C 4.6875 -3.71875 4.109375 -4.59375 3.03125 -4.59375 Z M 2.53125 -0.828125 C 2.25 -0.828125 2 -0.984375 1.84375 -1.25 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.59375 -3.625 C 3.015625 -3.625 3.3125 -3.359375 3.3125 -2.21875 C 3.3125 -1.1875 3 -0.828125 2.53125 -0.828125 Z M 2.53125 -0.828125 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.046875 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.046875 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.453125 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.296875 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.859375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.375 L 0.453125 -6.21875 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.875 -1.046875 C 2.6875 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.109375 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.453125 L 1.96875 -4.453125 L 1.96875 -5.578125 L 0.640625 -5.421875 L 0.640625 -4.453125 L 0.015625 -4.453125 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.3125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 3.5 -6.015625 L 2.984375 -7 L 1.15625 -5.90625 L 1.515625 -5.21875 Z M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.671875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.453125 -4.59375 C 1.109375 -4.59375 0.265625 -3.609375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.09375 0.140625 3.5625 -0.0625 3.984375 -0.390625 L 3.390625 -1.203125 C 3.078125 -1 2.859375 -0.90625 2.546875 -0.90625 C 2.015625 -0.90625 1.65625 -1.203125 1.65625 -2.203125 C 1.65625 -3.203125 1.984375 -3.578125 2.5625 -3.578125 C 2.859375 -3.578125 3.125 -3.484375 3.40625 -3.265625 L 3.984375 -4.046875 C 3.546875 -4.40625 3.078125 -4.59375 2.453125 -4.59375 Z M 2.453125 -4.59375 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 4.359375 -4.453125 L 3 -4.453125 L 2.1875 -1 L 1.390625 -4.453125 L -0.046875 -4.453125 L 1.390625 0 L 2.953125 0 Z M 4.359375 -4.453125 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 3.140625 -6.375 L 3.140625 -4.171875 C 2.890625 -4.4375 2.53125 -4.59375 2.09375 -4.59375 C 0.984375 -4.59375 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.5625 0.140625 2.96875 -0.15625 3.234375 -0.515625 L 3.296875 0 L 4.46875 0 L 4.46875 -6.21875 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.453125 -3.640625 C 2.75 -3.640625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.9375 -1 2.6875 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.921875 -4.578125 C 2.421875 -4.578125 1.984375 -4.21875 1.78125 -3.59375 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -2.234375 C 1.984375 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.015625 -3.265625 3.15625 -3.234375 L 3.375 -4.515625 C 3.21875 -4.5625 3.09375 -4.578125 2.921875 -4.578125 Z M 2.921875 -4.578125 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-1-0"> | |
| 54 | +<path d="M 3.921875 0 L 4.859375 0 L 3.3125 -2.59375 C 4.140625 -2.84375 4.5625 -3.328125 4.5625 -4.140625 C 4.5625 -5.234375 3.796875 -5.78125 2.359375 -5.78125 L 0.84375 -5.78125 L 0.84375 0 L 1.640625 0 L 1.640625 -2.453125 L 2.53125 -2.453125 Z M 1.640625 -3.0625 L 1.640625 -5.15625 L 2.34375 -5.15625 C 3.296875 -5.15625 3.703125 -4.859375 3.703125 -4.140625 C 3.703125 -3.359375 3.25 -3.0625 2.4375 -3.0625 Z M 1.640625 -3.0625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-1-1"> | |
| 57 | +<path d="M 3.34375 -6.078125 L 3 -6.71875 L 1.328125 -5.765625 L 1.5625 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-2"> | |
| 60 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.609375 3.984375 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.578125 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.609375 -3.359375 3.609375 -2.21875 C 3.609375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-3"> | |
| 63 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-4"> | |
| 66 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.765625 2.59375 -3.765625 C 2.765625 -3.765625 2.859375 -3.75 2.984375 -3.71875 L 3.125 -4.46875 C 3 -4.5 2.84375 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-5"> | |
| 69 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-6"> | |
| 72 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.25 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.203125 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-7"> | |
| 75 | +<path d="M 1.171875 -6.546875 C 0.84375 -6.546875 0.625 -6.3125 0.625 -6.015625 C 0.625 -5.71875 0.84375 -5.5 1.171875 -5.5 C 1.5 -5.5 1.71875 -5.71875 1.71875 -6.015625 C 1.71875 -6.3125 1.5 -6.546875 1.171875 -6.546875 Z M 1.546875 -4.421875 L 0.78125 -4.421875 L 0.78125 -0.21875 C 0.78125 0.734375 0.5 0.953125 -0.078125 1.21875 L 0.15625 1.78125 C 1.09375 1.359375 1.546875 0.984375 1.546875 -0.265625 Z M 1.546875 -4.421875 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-8"> | |
| 78 | +<path d="M 4.046875 -4.421875 L 3.28125 -4.421875 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.5 -0.734375 1.5 -1.328125 L 1.5 -4.421875 L 0.71875 -4.421875 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 3 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.421875 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-9"> | |
| 81 | +<path d="M 0.5 -2.296875 L 2.875 -2.296875 L 2.875 -2.953125 L 0.5 -2.953125 Z M 0.5 -2.296875 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-10"> | |
| 84 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.109375 -4.28125 2.734375 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.140625 -0.171875 3.421875 -0.609375 L 3.5 0 L 4.171875 0 L 4.171875 -6.203125 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.390625 -3.90625 C 2.8125 -3.90625 3.125 -3.6875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-11"> | |
| 87 | +<path d="M 1.15625 -6.546875 C 0.828125 -6.546875 0.609375 -6.3125 0.609375 -6.015625 C 0.609375 -5.71875 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.6875 -5.71875 1.6875 -6.015625 C 1.6875 -6.3125 1.484375 -6.546875 1.15625 -6.546875 Z M 1.546875 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.421875 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-12"> | |
| 90 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.75 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.4375 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.34375 -4.390625 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-13"> | |
| 93 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.6875 1.515625 -3.90625 2.015625 -3.90625 C 2.4375 -3.90625 2.78125 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.34375 2.625 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-14"> | |
| 96 | +<path d="M 2.859375 -4.515625 C 2.28125 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.09375 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-15"> | |
| 99 | +<path d="M 2.296875 -5.671875 C 2.53125 -5.671875 2.78125 -5.625 3.078125 -5.5 L 3.3125 -6.0625 C 2.96875 -6.21875 2.671875 -6.296875 2.25 -6.296875 C 1.359375 -6.296875 0.875 -5.765625 0.875 -5.03125 L 0.875 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.875 -3.828125 L 0.875 0 L 1.640625 0 L 1.640625 -3.828125 L 2.640625 -3.828125 L 2.71875 -4.421875 L 1.640625 -4.421875 L 1.640625 -5.03125 C 1.640625 -5.46875 1.8125 -5.671875 2.296875 -5.671875 Z M 2.296875 -5.671875 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-16"> | |
| 102 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.578125 -3.828125 L 2.671875 -4.421875 L 1.625 -4.421875 L 1.625 -5.515625 L 0.84375 -5.421875 L 0.84375 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-17"> | |
| 105 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.421875 -0.84375 4.421875 -2.21875 C 4.421875 -3.609375 3.71875 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.90625 C 3.1875 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.453125 -3.90625 Z M 2.453125 -3.90625 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-18"> | |
| 108 | +<path d="M 2.265625 -5.875 C 1.203125 -5.875 0.4375 -5.265625 0.4375 -4.375 C 0.4375 -3.46875 1.03125 -3.046875 2.15625 -2.703125 C 3.140625 -2.40625 3.40625 -2.140625 3.40625 -1.578125 C 3.40625 -0.890625 2.84375 -0.546875 2.171875 -0.546875 C 1.53125 -0.546875 1.078125 -0.78125 0.640625 -1.125 L 0.203125 -0.640625 C 0.6875 -0.171875 1.34375 0.09375 2.171875 0.09375 C 3.46875 0.09375 4.234375 -0.609375 4.234375 -1.609375 C 4.234375 -2.71875 3.453125 -3.078125 2.53125 -3.359375 C 1.484375 -3.6875 1.265625 -3.921875 1.265625 -4.40625 C 1.265625 -4.953125 1.71875 -5.234375 2.296875 -5.234375 C 2.78125 -5.234375 3.1875 -5.078125 3.609375 -4.71875 L 4.046875 -5.203125 C 3.5625 -5.640625 3.0625 -5.875 2.265625 -5.875 Z M 2.265625 -5.875 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-19"> | |
| 111 | +<path d="M 1 -6.3125 C 0.703125 -6.3125 0.453125 -6.078125 0.453125 -5.796875 C 0.453125 -5.625 0.53125 -5.484375 0.671875 -5.375 L 0.328125 -4.109375 L 0.84375 -4.109375 L 1.40625 -5.296875 C 1.515625 -5.53125 1.546875 -5.65625 1.546875 -5.796875 C 1.546875 -6.078125 1.296875 -6.3125 1 -6.3125 Z M 1 -6.3125 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-20"> | |
| 114 | +<path d="M 2.90625 -5.875 C 1.453125 -5.875 0.46875 -4.78125 0.46875 -2.875 C 0.46875 -0.9375 1.453125 0.09375 2.90625 0.09375 C 4.359375 0.09375 5.34375 -0.96875 5.34375 -2.890625 C 5.34375 -4.828125 4.359375 -5.875 2.90625 -5.875 Z M 2.90625 -5.234375 C 3.890625 -5.234375 4.5 -4.546875 4.5 -2.890625 C 4.5 -1.203125 3.875 -0.546875 2.90625 -0.546875 C 1.96875 -0.546875 1.3125 -1.203125 1.3125 -2.875 C 1.3125 -4.546875 1.9375 -5.234375 2.90625 -5.234375 Z M 2.90625 -5.234375 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-21"> | |
| 117 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.21875 -4.203125 3.890625 -3.71875 C 3.71875 -4.234375 3.328125 -4.515625 2.78125 -4.515625 C 2.203125 -4.515625 1.796875 -4.21875 1.5 -3.78125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.578125 -3.921875 C 2.921875 -3.921875 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.015625 -3.921875 C 5.359375 -3.921875 5.640625 -3.71875 5.640625 -3.0625 L 5.640625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.9375 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-22"> | |
| 120 | +<path d="M 3.515625 -4.421875 L 3.453125 -3.921875 C 3.15625 -4.265625 2.765625 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.15625 3.40625 -0.59375 L 3.40625 1.6875 L 4.171875 1.78125 L 4.171875 -4.421875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.390625 -3.90625 C 2.8125 -3.90625 3.125 -3.6875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-23"> | |
| 123 | +<path d="M 2.859375 -5.875 C 1.546875 -5.875 0.46875 -4.84375 0.46875 -2.890625 C 0.46875 -0.953125 1.484375 0.09375 2.875 0.09375 C 3.65625 0.09375 4.21875 -0.21875 4.53125 -0.546875 L 4.140625 -1.046875 C 3.8125 -0.8125 3.453125 -0.578125 2.90625 -0.578125 C 2 -0.578125 1.3125 -1.21875 1.3125 -2.890625 C 1.3125 -4.640625 2.03125 -5.234375 2.90625 -5.234375 C 3.3125 -5.234375 3.671875 -5.09375 4.03125 -4.796875 L 4.46875 -5.3125 C 4 -5.6875 3.59375 -5.875 2.859375 -5.875 Z M 2.859375 -5.875 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-24"> | |
| 126 | +<path d="M 4.140625 -4.921875 C 3.609375 -4.6875 3.21875 -4.5 2.109375 -4.515625 C 1.140625 -4.515625 0.40625 -3.890625 0.40625 -2.984375 C 0.40625 -2.40625 0.640625 -2.015625 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.265625 0.671875 -0.96875 C 0.671875 -0.53125 1.03125 -0.140625 1.8125 -0.140625 L 2.515625 -0.140625 C 3.0625 -0.140625 3.390625 0.078125 3.390625 0.5 C 3.390625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.125 1.1875 0.90625 0.953125 0.90625 0.4375 L 0.203125 0.4375 C 0.203125 1.34375 0.65625 1.78125 2.109375 1.78125 C 3.46875 1.78125 4.171875 1.296875 4.171875 0.4375 C 4.171875 -0.265625 3.578125 -0.78125 2.671875 -0.78125 L 1.96875 -0.78125 C 1.515625 -0.78125 1.390625 -0.9375 1.390625 -1.140625 C 1.390625 -1.296875 1.484375 -1.453125 1.609375 -1.546875 C 1.78125 -1.5 1.96875 -1.46875 2.171875 -1.46875 C 3.21875 -1.46875 3.84375 -2.09375 3.84375 -2.96875 C 3.84375 -3.484375 3.59375 -3.84375 3.078125 -4.09375 C 3.578125 -4.09375 4 -4.109375 4.359375 -4.21875 Z M 2.109375 -3.96875 C 2.75 -3.96875 3.0625 -3.640625 3.0625 -2.984375 C 3.0625 -2.34375 2.734375 -1.984375 2.125 -1.984375 C 1.53125 -1.984375 1.203125 -2.390625 1.203125 -2.984375 C 1.203125 -3.5625 1.515625 -3.96875 2.109375 -3.96875 Z M 2.109375 -3.96875 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-25"> | |
| 129 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.421875 L 2.984375 -4.421875 L 2.046875 -2.796875 L 1.125 -4.421875 L 0.21875 -4.421875 L 1.578125 -2.328125 L 0.046875 0 L 0.921875 0 L 2.015625 -1.875 L 3.09375 0 L 4.03125 0 Z M 2.484375 -2.359375 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-2-0"> | |
| 132 | +<path d="M 3.578125 0 L 4.390625 0 L 3.375 -5.78125 L 2.390625 -5.78125 L -0.265625 0 L 0.546875 0 L 1.1875 -1.453125 L 3.359375 -1.453125 Z M 1.453125 -2.09375 L 2.78125 -5.125 L 3.25 -2.09375 Z M 1.453125 -2.09375 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-2-1"> | |
| 135 | +<path d="M 2.984375 -4.515625 C 2.5 -4.515625 2.03125 -4.203125 1.703125 -3.515625 L 1.75 -4.421875 L 1.09375 -4.421875 L 0.484375 0 L 1.234375 0 L 1.578125 -2.34375 C 1.890625 -3.234375 2.28125 -3.765625 2.84375 -3.765625 C 2.984375 -3.765625 3.078125 -3.75 3.203125 -3.71875 L 3.4375 -4.46875 C 3.296875 -4.5 3.140625 -4.515625 2.984375 -4.515625 Z M 2.984375 -4.515625 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-2-2"> | |
| 138 | +<path d="M 1.828125 -3.828125 L 2.78125 -3.828125 L 2.9375 -4.421875 L 1.90625 -4.421875 L 2.0625 -5.515625 L 1.453125 -5.453125 L 1.171875 -4.421875 L 0.375 -4.421875 L 0.296875 -3.828125 L 1.0625 -3.828125 L 0.6875 -1.1875 C 0.578125 -0.359375 0.96875 0.09375 1.734375 0.09375 C 2.078125 0.09375 2.40625 0.015625 2.71875 -0.1875 L 2.46875 -0.734375 C 2.234375 -0.609375 2.046875 -0.546875 1.828125 -0.546875 C 1.5 -0.546875 1.390625 -0.71875 1.453125 -1.171875 Z M 1.828125 -3.828125 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-2-3"> | |
| 141 | +<path d="M 0.71875 0.09375 C 1.0625 0.09375 1.34375 -0.1875 1.34375 -0.53125 C 1.34375 -0.828125 1.125 -1.0625 0.8125 -1.0625 C 0.46875 -1.0625 0.1875 -0.78125 0.1875 -0.421875 C 0.1875 -0.140625 0.40625 0.09375 0.71875 0.09375 Z M 0.71875 0.09375 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-2-4"> | |
| 144 | +<path d="M 3.03125 -4.734375 L 2.34375 -4.734375 L 0.484375 -3.65625 L 0.765625 -3.046875 L 2.140625 -3.828125 L 1.59375 0 L 2.359375 0 Z M 3.03125 -4.734375 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-2-5"> | |
| 147 | +<path d="M 3.9375 -0.9375 L 3.234375 -0.9375 L 3.453125 -2.453125 L 2.796875 -2.453125 L 2.515625 -0.9375 L 0.8125 -0.9375 L 2.828125 -4.546875 L 2.1875 -4.8125 L -0.03125 -0.875 L -0.09375 -0.328125 L 2.421875 -0.328125 L 2.25 0.890625 L 2.984375 0.890625 L 3.15625 -0.328125 L 3.859375 -0.328125 Z M 3.9375 -0.9375 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-2-6"> | |
| 150 | +<path d="M 1.40625 0.984375 C 2.984375 0.984375 3.578125 -0.28125 3.578125 -1.21875 C 3.578125 -2.140625 3.03125 -2.6875 2.1875 -2.6875 C 1.890625 -2.6875 1.609375 -2.640625 1.3125 -2.484375 L 1.53125 -4.125 L 3.703125 -4.125 L 3.890625 -4.734375 L 0.890625 -4.734375 L 0.5 -1.90625 L 1.109375 -1.890625 C 1.375 -2.015625 1.625 -2.09375 1.953125 -2.09375 C 2.421875 -2.09375 2.78125 -1.875 2.78125 -1.21875 C 2.78125 -0.609375 2.484375 0.359375 1.40625 0.359375 C 0.953125 0.359375 0.625 0.171875 0.328125 -0.1875 L -0.171875 0.25 C 0.1875 0.703125 0.6875 0.984375 1.40625 0.984375 Z M 1.40625 0.984375 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-2-7"> | |
| 153 | +<path d="M 3.78125 -4.734375 L 0.46875 -4.734375 L 0.390625 -4.109375 L 2.921875 -4.109375 L 0.28125 0.765625 L 0.953125 1 L 3.71875 -4.15625 Z M 3.78125 -4.734375 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-2-8"> | |
| 156 | +<path d="M 0.265625 -2.296875 L 4.0625 -2.296875 L 4.15625 -2.953125 L 0.359375 -2.953125 Z M 0.265625 -2.296875 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-2-9"> | |
| 159 | +<path d="M 3.140625 -3 C 3.921875 -3.34375 4.28125 -3.75 4.28125 -4.40625 C 4.28125 -5.265625 3.53125 -5.703125 2.75 -5.703125 C 1.84375 -5.703125 0.875 -5.203125 0.875 -4.140625 C 0.875 -3.65625 1.09375 -3.234375 1.5625 -2.96875 C 0.546875 -2.546875 0.265625 -1.984375 0.265625 -1.359375 C 0.265625 -0.5 0.921875 0.09375 1.984375 0.09375 C 3.1875 0.09375 4.109375 -0.640625 4.109375 -1.6875 C 4.109375 -2.28125 3.765625 -2.703125 3.140625 -3 Z M 2.734375 -5.125 C 3.265625 -5.125 3.53125 -4.84375 3.53125 -4.390625 C 3.53125 -4 3.390625 -3.609375 2.625 -3.203125 L 2.515625 -3.234375 C 1.953125 -3.4375 1.625 -3.59375 1.625 -4.140625 C 1.625 -4.5625 1.875 -5.125 2.734375 -5.125 Z M 2.015625 -0.515625 C 1.40625 -0.515625 1.046875 -0.828125 1.046875 -1.375 C 1.046875 -1.84375 1.234375 -2.375 2.09375 -2.75 L 2.28125 -2.6875 C 3.03125 -2.40625 3.328125 -2.1875 3.328125 -1.734375 C 3.328125 -1.03125 2.796875 -0.515625 2.015625 -0.515625 Z M 2.015625 -0.515625 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-2-10"> | |
| 162 | +<path d="M 3.3125 -5.875 C 1.296875 -5.875 0.515625 -3.796875 0.515625 -2.25 C 0.515625 -0.71875 1.328125 0.09375 2.5625 0.09375 C 3.328125 0.09375 3.890625 -0.203125 4.265625 -0.53125 L 3.921875 -1.0625 C 3.5625 -0.8125 3.1875 -0.578125 2.625 -0.578125 C 1.875 -0.578125 1.34375 -1.03125 1.34375 -2.1875 C 1.34375 -3.484375 1.84375 -5.234375 3.34375 -5.234375 C 3.734375 -5.234375 4.0625 -5.109375 4.40625 -4.84375 L 4.859375 -5.28125 C 4.453125 -5.65625 3.984375 -5.875 3.3125 -5.875 Z M 3.3125 -5.875 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-2-11"> | |
| 165 | +<path d="M 2.671875 -4.515625 C 1.046875 -4.515625 0.4375 -2.859375 0.4375 -1.703125 C 0.4375 -0.578125 1.046875 0.09375 2.09375 0.09375 C 2.578125 0.09375 3.03125 -0.046875 3.46875 -0.359375 L 3.15625 -0.890625 C 2.8125 -0.671875 2.53125 -0.546875 2.140625 -0.546875 C 1.578125 -0.546875 1.234375 -0.875 1.234375 -1.640625 C 1.234375 -2.5625 1.5625 -3.890625 2.6875 -3.890625 C 3.03125 -3.890625 3.28125 -3.796875 3.546875 -3.5625 L 3.953125 -4.03125 C 3.59375 -4.375 3.171875 -4.515625 2.671875 -4.515625 Z M 2.671875 -4.515625 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-2-12"> | |
| 168 | +<path d="M 5.4375 -3.53125 C 5.4375 -5.0625 4.625 -5.875 3.375 -5.875 C 1.234375 -5.875 0.515625 -3.703125 0.515625 -2.21875 C 0.515625 -0.71875 1.328125 0.09375 2.578125 0.09375 C 3.625 0.09375 4.0625 0.28125 4.625 0.859375 L 5.21875 0.21875 C 4.84375 -0.0625 4.40625 -0.296875 3.796875 -0.3125 C 5.015625 -0.84375 5.4375 -2.359375 5.4375 -3.53125 Z M 1.328125 -2.140625 C 1.328125 -3.375 1.765625 -5.234375 3.34375 -5.234375 C 4.140625 -5.234375 4.609375 -4.75 4.609375 -3.671875 C 4.609375 -2.421875 4.203125 -0.546875 2.609375 -0.546875 C 1.84375 -0.546875 1.328125 -1 1.328125 -2.140625 Z M 1.328125 -2.140625 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-2-13"> | |
| 171 | +<path d="M 2.125 0.09375 C 3.875 0.09375 4.40625 -1.625 4.40625 -2.6875 C 4.40625 -3.8125 3.828125 -4.515625 2.734375 -4.515625 C 1 -4.515625 0.4375 -2.8125 0.4375 -1.734375 C 0.4375 -0.609375 1.03125 0.09375 2.125 0.09375 Z M 2.15625 -0.515625 C 1.5625 -0.515625 1.234375 -0.875 1.234375 -1.640625 C 1.234375 -2.484375 1.546875 -3.90625 2.703125 -3.90625 C 3.296875 -3.90625 3.609375 -3.546875 3.609375 -2.78125 C 3.609375 -1.9375 3.3125 -0.515625 2.15625 -0.515625 Z M 2.15625 -0.515625 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-2-14"> | |
| 174 | +<path d="M 3.9375 -6.28125 L 3.609375 -3.96875 C 3.375 -4.28125 3 -4.515625 2.484375 -4.515625 C 0.96875 -4.515625 0.421875 -2.796875 0.421875 -1.65625 C 0.421875 -0.59375 0.921875 0.09375 1.828125 0.09375 C 2.40625 0.09375 2.859375 -0.21875 3.15625 -0.734375 L 3.15625 0 L 3.828125 0 L 4.703125 -6.1875 Z M 2.625 -3.90625 C 3.03125 -3.90625 3.3125 -3.71875 3.546875 -3.375 L 3.28125 -1.53125 C 2.890625 -0.921875 2.53125 -0.515625 1.984375 -0.515625 C 1.515625 -0.515625 1.234375 -0.84375 1.234375 -1.59375 C 1.234375 -2.46875 1.546875 -3.90625 2.625 -3.90625 Z M 2.625 -3.90625 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-2-15"> | |
| 177 | +<path d="M 4.109375 -3.390625 C 4.109375 -3.984375 3.65625 -4.515625 2.703125 -4.515625 C 1.03125 -4.515625 0.4375 -2.90625 0.4375 -1.6875 C 0.4375 -0.578125 1.046875 0.09375 2.125 0.09375 C 2.703125 0.09375 3.234375 -0.09375 3.703125 -0.4375 L 3.375 -0.953125 C 2.984375 -0.671875 2.609375 -0.546875 2.203125 -0.546875 C 1.640625 -0.546875 1.265625 -0.84375 1.234375 -1.640625 C 2.78125 -1.8125 4.109375 -2.15625 4.109375 -3.390625 Z M 1.28125 -2.234375 C 1.390625 -3.03125 1.78125 -3.90625 2.703125 -3.90625 C 3.1875 -3.90625 3.3125 -3.578125 3.3125 -3.375 C 3.3125 -2.625 2.546875 -2.375 1.28125 -2.234375 Z M 1.28125 -2.234375 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-2-16"> | |
| 180 | +<path d="M 2.203125 -4.515625 C 1.0625 -4.515625 0.53125 -3.84375 0.53125 -3.265625 C 0.53125 -2.65625 0.875 -2.3125 1.71875 -2.0625 C 2.421875 -1.84375 2.65625 -1.6875 2.65625 -1.234375 C 2.65625 -0.953125 2.4375 -0.515625 1.65625 -0.515625 C 1.15625 -0.515625 0.75 -0.703125 0.421875 -0.984375 L -0.015625 -0.53125 C 0.328125 -0.203125 0.84375 0.09375 1.625 0.09375 C 2.546875 0.09375 3.453125 -0.328125 3.453125 -1.3125 C 3.453125 -2.015625 3.03125 -2.390625 2.203125 -2.640625 C 1.609375 -2.828125 1.3125 -2.96875 1.3125 -3.3125 C 1.3125 -3.6875 1.65625 -3.90625 2.203125 -3.90625 C 2.578125 -3.90625 2.953125 -3.78125 3.28125 -3.515625 L 3.65625 -3.984375 C 3.28125 -4.3125 2.8125 -4.515625 2.203125 -4.515625 Z M 2.203125 -4.515625 "/> | |
| 181 | +</g> | |
| 182 | +<g id="glyph-2-17"> | |
| 183 | +<path d="M 0.21875 1.8125 L 0.984375 1.71875 L 1.234375 -0.046875 C 1.515625 0.046875 1.78125 0.09375 2.078125 0.09375 C 3.8125 0.09375 4.4375 -1.546875 4.4375 -2.78125 C 4.4375 -3.90625 3.90625 -4.515625 3.078125 -4.515625 C 2.625 -4.515625 2.203125 -4.375 1.734375 -3.875 L 1.75 -4.421875 L 1.09375 -4.421875 Z M 2.125 -0.515625 C 1.8125 -0.515625 1.625 -0.546875 1.34375 -0.640625 L 1.703125 -3.265625 C 2.015625 -3.609375 2.390625 -3.90625 2.859375 -3.90625 C 3.3125 -3.90625 3.640625 -3.640625 3.640625 -2.84375 C 3.640625 -1.859375 3.21875 -0.515625 2.125 -0.515625 Z M 2.125 -0.515625 "/> | |
| 184 | +</g> | |
| 185 | +<g id="glyph-2-18"> | |
| 186 | +<path d="M 2.78125 -5.671875 C 3 -5.671875 3.25 -5.640625 3.5 -5.46875 L 3.796875 -5.96875 C 3.46875 -6.171875 3.1875 -6.296875 2.765625 -6.296875 C 1.890625 -6.296875 1.34375 -5.796875 1.25 -5.046875 L 1.171875 -4.421875 L 0.390625 -4.421875 L 0.296875 -3.828125 L 1.078125 -3.828125 L 0.578125 -0.25 C 0.4375 0.703125 0.078125 0.9375 -0.53125 1.203125 L -0.3125 1.78125 C 0.671875 1.375 1.171875 1 1.34375 -0.25 L 1.84375 -3.828125 L 2.828125 -3.828125 L 3 -4.421875 L 1.9375 -4.421875 L 2.015625 -5.015625 C 2.078125 -5.4375 2.296875 -5.671875 2.78125 -5.671875 Z M 2.78125 -5.671875 "/> | |
| 187 | +</g> | |
| 188 | +<g id="glyph-2-19"> | |
| 189 | +<path d="M 1.65625 -5.5 C 1.984375 -5.5 2.234375 -5.734375 2.234375 -6.0625 C 2.234375 -6.328125 2.046875 -6.546875 1.75 -6.546875 C 1.421875 -6.546875 1.171875 -6.296875 1.171875 -5.96875 C 1.171875 -5.703125 1.359375 -5.5 1.65625 -5.5 Z M 1.859375 -4.421875 L 1.09375 -4.421875 L 0.484375 0 L 1.234375 0 Z M 1.859375 -4.421875 "/> | |
| 190 | +</g> | |
| 191 | +<g id="glyph-2-20"> | |
| 192 | +<path d="M 3.21875 -4.515625 C 2.578125 -4.515625 2.09375 -4.140625 1.6875 -3.5625 L 1.75 -4.421875 L 1.09375 -4.421875 L 0.484375 0 L 1.234375 0 L 1.609375 -2.65625 C 1.96875 -3.28125 2.453125 -3.875 3.015625 -3.875 C 3.34375 -3.875 3.5625 -3.703125 3.484375 -3.09375 L 3.046875 0 L 3.8125 0 L 4.25 -3.109375 C 4.375 -3.984375 3.953125 -4.515625 3.21875 -4.515625 Z M 3.21875 -4.515625 "/> | |
| 193 | +</g> | |
| 194 | +<g id="glyph-2-21"> | |
| 195 | +<path d="M 5.546875 -4.515625 C 5 -4.515625 4.53125 -4.203125 4.09375 -3.625 C 4.015625 -4.21875 3.609375 -4.515625 3.125 -4.515625 C 2.546875 -4.515625 2.09375 -4.140625 1.6875 -3.578125 L 1.75 -4.421875 L 1.09375 -4.421875 L 0.484375 0 L 1.234375 0 L 1.609375 -2.65625 C 1.953125 -3.28125 2.40625 -3.875 2.890625 -3.875 C 3.15625 -3.875 3.40625 -3.75 3.3125 -3.09375 L 2.875 0 L 3.640625 0 L 4.015625 -2.65625 C 4.375 -3.296875 4.8125 -3.875 5.296875 -3.875 C 5.578125 -3.875 5.828125 -3.75 5.734375 -3.09375 L 5.296875 0 L 6.0625 0 L 6.5 -3.140625 C 6.625 -3.984375 6.203125 -4.515625 5.546875 -4.515625 Z M 5.546875 -4.515625 "/> | |
| 196 | +</g> | |
| 197 | +<g id="glyph-2-22"> | |
| 198 | +<path d="M 2.09375 -6.296875 L 1.3125 -6.203125 L 0.578125 -0.984375 C 0.484375 -0.265625 0.78125 0.09375 1.375 0.09375 C 1.5625 0.09375 1.765625 0.0625 1.984375 -0.046875 L 1.828125 -0.59375 C 1.734375 -0.5625 1.625 -0.53125 1.53125 -0.53125 C 1.34375 -0.53125 1.296875 -0.625 1.328125 -0.859375 Z M 2.09375 -6.296875 "/> | |
| 199 | +</g> | |
| 200 | +</g> | |
| 201 | +<clipPath id="clip-0"> | |
| 202 | +<path clip-rule="nonzero" d="M 0.625 0 L 131 0 L 131 92.132812 L 0.625 92.132812 Z M 0.625 0 "/> | |
| 203 | +</clipPath> | |
| 204 | +<clipPath id="clip-1"> | |
| 205 | +<path clip-rule="nonzero" d="M 133 0 L 265 0 L 265 92.132812 L 133 92.132812 Z M 133 0 "/> | |
| 206 | +</clipPath> | |
| 207 | +<clipPath id="clip-2"> | |
| 208 | +<path clip-rule="nonzero" d="M 267 0 L 397.15625 0 L 397.15625 92.132812 L 267 92.132812 Z M 267 0 "/> | |
| 209 | +</clipPath> | |
| 210 | +</defs> | |
| 211 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 118.902344 5.15625 L 11.730469 5.15625 C 8.445312 5.15625 5.78125 7.820312 5.78125 11.105469 L 5.78125 81.027344 C 5.78125 84.3125 8.445312 86.976562 11.730469 86.976562 L 118.902344 86.976562 C 122.191406 86.976562 124.851562 84.3125 124.851562 81.027344 L 124.851562 11.105469 C 124.851562 7.820312 122.191406 5.15625 118.902344 5.15625 Z M 118.902344 5.15625 "/> | |
| 212 | +<g clip-path="url(#clip-0)"> | |
| 213 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 53.835888 41.102575 L -53.838467 41.102575 C -57.139026 41.102575 -59.815579 38.426022 -59.815579 35.125463 L -59.815579 -35.124244 C -59.815579 -38.424803 -57.139026 -41.101356 -53.838467 -41.101356 L 53.835888 -41.101356 C 57.140371 -41.101356 59.813 -38.424803 59.813 -35.124244 L 59.813 35.125463 C 59.813 38.426022 57.140371 41.102575 53.835888 41.102575 Z M 53.835888 41.102575 " transform="matrix(0.995333, 0, 0, -0.995333, 65.31769, 46.067013)"/> | |
| 214 | +</g> | |
| 215 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 216 | +<use xlink:href="#glyph-0-0" x="25.37994" y="23.332604"/> | |
| 217 | +</g> | |
| 218 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 219 | +<use xlink:href="#glyph-0-1" x="30.463715" y="23.332604"/> | |
| 220 | +<use xlink:href="#glyph-0-2" x="35.111258" y="23.332604"/> | |
| 221 | +<use xlink:href="#glyph-0-3" x="39.138011" y="23.332604"/> | |
| 222 | +<use xlink:href="#glyph-0-4" x="44.09595" y="23.332604"/> | |
| 223 | +<use xlink:href="#glyph-0-5" x="48.995165" y="23.332604"/> | |
| 224 | +<use xlink:href="#glyph-0-2" x="53.802101" y="23.332604"/> | |
| 225 | +<use xlink:href="#glyph-0-6" x="57.828853" y="23.332604"/> | |
| 226 | +<use xlink:href="#glyph-0-7" x="62.409284" y="23.332604"/> | |
| 227 | +<use xlink:href="#glyph-0-8" x="67.367223" y="23.332604"/> | |
| 228 | +<use xlink:href="#glyph-0-9" x="69.716162" y="23.332604"/> | |
| 229 | +<use xlink:href="#glyph-0-8" x="72.232882" y="23.332604"/> | |
| 230 | +<use xlink:href="#glyph-0-10" x="74.581821" y="23.332604"/> | |
| 231 | +</g> | |
| 232 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 233 | +<use xlink:href="#glyph-0-11" x="77.668998" y="23.332604"/> | |
| 234 | +</g> | |
| 235 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 236 | +<use xlink:href="#glyph-0-12" x="85.1101" y="23.332604"/> | |
| 237 | +<use xlink:href="#glyph-0-8" x="89.128464" y="23.332604"/> | |
| 238 | +<use xlink:href="#glyph-0-13" x="91.477403" y="23.332604"/> | |
| 239 | +<use xlink:href="#glyph-0-8" x="95.780994" y="23.332604"/> | |
| 240 | +<use xlink:href="#glyph-0-9" x="98.129933" y="23.332604"/> | |
| 241 | +</g> | |
| 242 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 243 | +<use xlink:href="#glyph-0-1" x="100.604708" y="23.332604"/> | |
| 244 | +</g> | |
| 245 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 246 | +<use xlink:href="#glyph-1-0" x="32.593121" y="38.206865"/> | |
| 247 | +</g> | |
| 248 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 249 | +<use xlink:href="#glyph-1-1" x="37.626561" y="38.206865"/> | |
| 250 | +<use xlink:href="#glyph-1-2" x="42.190214" y="38.206865"/> | |
| 251 | +</g> | |
| 252 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 253 | +<use xlink:href="#glyph-1-3" x="47.064262" y="38.206865"/> | |
| 254 | +<use xlink:href="#glyph-1-4" x="51.585969" y="38.206865"/> | |
| 255 | +</g> | |
| 256 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 257 | +<use xlink:href="#glyph-1-5" x="54.631201" y="38.206865"/> | |
| 258 | +<use xlink:href="#glyph-1-4" x="59.194854" y="38.206865"/> | |
| 259 | +</g> | |
| 260 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 261 | +<use xlink:href="#glyph-1-6" x="65.201426" y="38.206865"/> | |
| 262 | +</g> | |
| 263 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 264 | +<use xlink:href="#glyph-1-5" x="67.625866" y="38.206865"/> | |
| 265 | +</g> | |
| 266 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 267 | +<use xlink:href="#glyph-1-2" x="74.991468" y="38.206865"/> | |
| 268 | +<use xlink:href="#glyph-1-4" x="79.907461" y="38.206865"/> | |
| 269 | +</g> | |
| 270 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 271 | +<use xlink:href="#glyph-1-1" x="82.952693" y="38.206865"/> | |
| 272 | +<use xlink:href="#glyph-1-7" x="87.516345" y="38.206865"/> | |
| 273 | +<use xlink:href="#glyph-1-8" x="89.840117" y="38.206865"/> | |
| 274 | +<use xlink:href="#glyph-1-9" x="94.663831" y="38.206865"/> | |
| 275 | +</g> | |
| 276 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 277 | +<use xlink:href="#glyph-1-10" x="28.943233" y="49.114723"/> | |
| 278 | +<use xlink:href="#glyph-1-11" x="33.892783" y="49.114723"/> | |
| 279 | +<use xlink:href="#glyph-1-12" x="36.208166" y="49.114723"/> | |
| 280 | +</g> | |
| 281 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 282 | +<use xlink:href="#glyph-1-5" x="40.092304" y="49.114723"/> | |
| 283 | +</g> | |
| 284 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 285 | +<use xlink:href="#glyph-1-12" x="47.449516" y="49.114723"/> | |
| 286 | +</g> | |
| 287 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 288 | +<use xlink:href="#glyph-1-3" x="51.417545" y="49.114723"/> | |
| 289 | +<use xlink:href="#glyph-1-8" x="55.939252" y="49.114723"/> | |
| 290 | +<use xlink:href="#glyph-1-13" x="60.762966" y="49.114723"/> | |
| 291 | +<use xlink:href="#glyph-1-1" x="64.680661" y="49.114723"/> | |
| 292 | +</g> | |
| 293 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 294 | +<use xlink:href="#glyph-1-2" x="72.046262" y="49.114723"/> | |
| 295 | +</g> | |
| 296 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 297 | +<use xlink:href="#glyph-1-3" x="76.92031" y="49.114723"/> | |
| 298 | +<use xlink:href="#glyph-1-4" x="81.442018" y="49.114723"/> | |
| 299 | +</g> | |
| 300 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 301 | +<use xlink:href="#glyph-1-8" x="87.44859" y="49.114723"/> | |
| 302 | +<use xlink:href="#glyph-1-14" x="92.272304" y="49.114723"/> | |
| 303 | +<use xlink:href="#glyph-1-5" x="97.129574" y="49.114723"/> | |
| 304 | +</g> | |
| 305 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 306 | +<use xlink:href="#glyph-1-15" x="24.726006" y="60.022581"/> | |
| 307 | +</g> | |
| 308 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 309 | +<use xlink:href="#glyph-1-3" x="27.452453" y="60.022581"/> | |
| 310 | +<use xlink:href="#glyph-1-8" x="31.97416" y="60.022581"/> | |
| 311 | +<use xlink:href="#glyph-1-16" x="36.797874" y="60.022581"/> | |
| 312 | +</g> | |
| 313 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 314 | +<use xlink:href="#glyph-1-5" x="39.700491" y="60.022581"/> | |
| 315 | +</g> | |
| 316 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 317 | +<use xlink:href="#glyph-1-2" x="47.057704" y="60.022581"/> | |
| 318 | +<use xlink:href="#glyph-1-4" x="51.973697" y="60.022581"/> | |
| 319 | +</g> | |
| 320 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 321 | +<use xlink:href="#glyph-1-17" x="55.018929" y="60.022581"/> | |
| 322 | +<use xlink:href="#glyph-1-15" x="59.918144" y="60.022581"/> | |
| 323 | +</g> | |
| 324 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 325 | +<use xlink:href="#glyph-1-5" x="62.644591" y="60.022581"/> | |
| 326 | +<use xlink:href="#glyph-1-13" x="67.208244" y="60.022581"/> | |
| 327 | +</g> | |
| 328 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 329 | +<use xlink:href="#glyph-1-13" x="71.042047" y="60.022581"/> | |
| 330 | +<use xlink:href="#glyph-1-11" x="74.959742" y="60.022581"/> | |
| 331 | +<use xlink:href="#glyph-1-17" x="77.275125" y="60.022581"/> | |
| 332 | +<use xlink:href="#glyph-1-14" x="82.17434" y="60.022581"/> | |
| 333 | +<use xlink:href="#glyph-1-14" x="87.03161" y="60.022581"/> | |
| 334 | +<use xlink:href="#glyph-1-5" x="91.88888" y="60.022581"/> | |
| 335 | +<use xlink:href="#glyph-1-6" x="96.452533" y="60.022581"/> | |
| 336 | +<use xlink:href="#glyph-1-6" x="98.918919" y="60.022581"/> | |
| 337 | +</g> | |
| 338 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 339 | +<use xlink:href="#glyph-1-5" x="101.343359" y="60.022581"/> | |
| 340 | +</g> | |
| 341 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 342 | +<use xlink:href="#glyph-2-0" x="28.360963" y="74.896843"/> | |
| 343 | +<use xlink:href="#glyph-2-1" x="33.117565" y="74.896843"/> | |
| 344 | +<use xlink:href="#glyph-2-2" x="36.313799" y="74.896843"/> | |
| 345 | +</g> | |
| 346 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 347 | +<use xlink:href="#glyph-2-3" x="39.375809" y="74.896843"/> | |
| 348 | +</g> | |
| 349 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 350 | +<use xlink:href="#glyph-2-4" x="44.182745" y="74.896843"/> | |
| 351 | +<use xlink:href="#glyph-2-5" x="47.680986" y="74.896843"/> | |
| 352 | +<use xlink:href="#glyph-2-6" x="51.758072" y="74.896843"/> | |
| 353 | +</g> | |
| 354 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-2-7" x="55.633822" y="74.896843"/> | |
| 356 | +</g> | |
| 357 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 358 | +<use xlink:href="#glyph-2-8" x="59.224343" y="74.896843"/> | |
| 359 | +</g> | |
| 360 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 361 | +<use xlink:href="#glyph-2-4" x="63.259484" y="74.896843"/> | |
| 362 | +<use xlink:href="#glyph-2-5" x="66.757725" y="74.896843"/> | |
| 363 | +<use xlink:href="#glyph-2-6" x="70.834812" y="74.896843"/> | |
| 364 | +</g> | |
| 365 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 366 | +<use xlink:href="#glyph-2-9" x="74.853175" y="74.896843"/> | |
| 367 | +</g> | |
| 368 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 369 | +<use xlink:href="#glyph-2-10" x="82.227166" y="74.896843"/> | |
| 370 | +<use xlink:href="#glyph-2-3" x="86.883098" y="74.896843"/> | |
| 371 | +</g> | |
| 372 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 373 | +<use xlink:href="#glyph-2-11" x="88.812583" y="74.896843"/> | |
| 374 | +</g> | |
| 375 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 376 | +<use xlink:href="#glyph-2-3" x="92.856114" y="74.896843"/> | |
| 377 | +</g> | |
| 378 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 379 | +<use xlink:href="#glyph-2-12" x="94.701709" y="74.896843"/> | |
| 380 | +</g> | |
| 381 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 382 | +<use xlink:href="#glyph-2-3" x="100.263661" y="74.896843"/> | |
| 383 | +</g> | |
| 384 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 252.480469 5.15625 L 145.308594 5.15625 C 142.019531 5.15625 139.355469 7.820312 139.355469 11.105469 L 139.355469 81.027344 C 139.355469 84.3125 142.019531 86.976562 145.308594 86.976562 L 252.480469 86.976562 C 255.765625 86.976562 258.429688 84.3125 258.429688 81.027344 L 258.429688 11.105469 C 258.429688 7.820312 255.765625 5.15625 252.480469 5.15625 Z M 252.480469 5.15625 "/> | |
| 385 | +<g clip-path="url(#clip-1)"> | |
| 386 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 188.0403 41.102575 L 80.365945 41.102575 C 77.061461 41.102575 74.384908 38.426022 74.384908 35.125463 L 74.384908 -35.124244 C 74.384908 -38.424803 77.061461 -41.101356 80.365945 -41.101356 L 188.0403 -41.101356 C 191.340859 -41.101356 194.017412 -38.424803 194.017412 -35.124244 L 194.017412 35.125463 C 194.017412 38.426022 191.340859 41.102575 188.0403 41.102575 Z M 188.0403 41.102575 " transform="matrix(0.995333, 0, 0, -0.995333, 65.31769, 46.067013)"/> | |
| 387 | +</g> | |
| 388 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 389 | +<use xlink:href="#glyph-0-0" x="145.463921" y="22.925513"/> | |
| 390 | +</g> | |
| 391 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 392 | +<use xlink:href="#glyph-0-1" x="150.547696" y="22.925513"/> | |
| 393 | +<use xlink:href="#glyph-0-2" x="155.195239" y="22.925513"/> | |
| 394 | +<use xlink:href="#glyph-0-3" x="159.221991" y="22.925513"/> | |
| 395 | +<use xlink:href="#glyph-0-4" x="164.17993" y="22.925513"/> | |
| 396 | +<use xlink:href="#glyph-0-5" x="169.079146" y="22.925513"/> | |
| 397 | +<use xlink:href="#glyph-0-2" x="173.886081" y="22.925513"/> | |
| 398 | +<use xlink:href="#glyph-0-6" x="177.912834" y="22.925513"/> | |
| 399 | +<use xlink:href="#glyph-0-7" x="182.493264" y="22.925513"/> | |
| 400 | +<use xlink:href="#glyph-0-8" x="187.451203" y="22.925513"/> | |
| 401 | +<use xlink:href="#glyph-0-9" x="189.800142" y="22.925513"/> | |
| 402 | +<use xlink:href="#glyph-0-8" x="192.316862" y="22.925513"/> | |
| 403 | +<use xlink:href="#glyph-0-10" x="194.665801" y="22.925513"/> | |
| 404 | +</g> | |
| 405 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 406 | +<use xlink:href="#glyph-0-11" x="197.752978" y="22.925513"/> | |
| 407 | +</g> | |
| 408 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 409 | +<use xlink:href="#glyph-0-14" x="205.194081" y="22.925513"/> | |
| 410 | +<use xlink:href="#glyph-0-8" x="210.177187" y="22.925513"/> | |
| 411 | +<use xlink:href="#glyph-0-2" x="212.526126" y="22.925513"/> | |
| 412 | +<use xlink:href="#glyph-0-12" x="216.552878" y="22.925513"/> | |
| 413 | +<use xlink:href="#glyph-0-8" x="220.571242" y="22.925513"/> | |
| 414 | +<use xlink:href="#glyph-0-3" x="222.920181" y="22.925513"/> | |
| 415 | +<use xlink:href="#glyph-0-9" x="227.878119" y="22.925513"/> | |
| 416 | +<use xlink:href="#glyph-0-8" x="230.39484" y="22.925513"/> | |
| 417 | +<use xlink:href="#glyph-0-5" x="232.743779" y="22.925513"/> | |
| 418 | +<use xlink:href="#glyph-0-6" x="237.550714" y="22.925513"/> | |
| 419 | +<use xlink:href="#glyph-0-8" x="242.131145" y="22.925513"/> | |
| 420 | +<use xlink:href="#glyph-0-15" x="244.480084" y="22.925513"/> | |
| 421 | +</g> | |
| 422 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 423 | +<use xlink:href="#glyph-0-1" x="247.66793" y="22.925513"/> | |
| 424 | +</g> | |
| 425 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 426 | +<use xlink:href="#glyph-1-18" x="160.017685" y="37.799774"/> | |
| 427 | +<use xlink:href="#glyph-1-3" x="164.589726" y="37.799774"/> | |
| 428 | +<use xlink:href="#glyph-1-14" x="169.111434" y="37.799774"/> | |
| 429 | +<use xlink:href="#glyph-1-12" x="173.968704" y="37.799774"/> | |
| 430 | +<use xlink:href="#glyph-1-16" x="177.978678" y="37.799774"/> | |
| 431 | +<use xlink:href="#glyph-1-11" x="181.007131" y="37.799774"/> | |
| 432 | +<use xlink:href="#glyph-1-17" x="183.322514" y="37.799774"/> | |
| 433 | +<use xlink:href="#glyph-1-14" x="188.221729" y="37.799774"/> | |
| 434 | +<use xlink:href="#glyph-1-13" x="193.079" y="37.799774"/> | |
| 435 | +</g> | |
| 436 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 437 | +<use xlink:href="#glyph-1-10" x="199.790254" y="37.799774"/> | |
| 438 | +<use xlink:href="#glyph-1-5" x="204.739803" y="37.799774"/> | |
| 439 | +</g> | |
| 440 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 441 | +<use xlink:href="#glyph-1-6" x="212.105405" y="37.799774"/> | |
| 442 | +</g> | |
| 443 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 444 | +<use xlink:href="#glyph-1-19" x="214.445954" y="37.799774"/> | |
| 445 | +<use xlink:href="#glyph-1-20" x="216.358662" y="37.799774"/> | |
| 446 | +<use xlink:href="#glyph-1-4" x="222.163896" y="37.799774"/> | |
| 447 | +</g> | |
| 448 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 449 | +<use xlink:href="#glyph-1-10" x="225.209128" y="37.799774"/> | |
| 450 | +<use xlink:href="#glyph-1-4" x="230.158678" y="37.799774"/> | |
| 451 | +</g> | |
| 452 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 453 | +<use xlink:href="#glyph-1-5" x="233.203909" y="37.799774"/> | |
| 454 | +</g> | |
| 455 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 456 | +<use xlink:href="#glyph-1-2" x="157.283504" y="48.707632"/> | |
| 457 | +<use xlink:href="#glyph-1-17" x="162.199498" y="48.707632"/> | |
| 458 | +<use xlink:href="#glyph-1-8" x="167.098713" y="48.707632"/> | |
| 459 | +<use xlink:href="#glyph-1-4" x="171.922427" y="48.707632"/> | |
| 460 | +</g> | |
| 461 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 462 | +<use xlink:href="#glyph-1-21" x="177.928999" y="48.707632"/> | |
| 463 | +<use xlink:href="#glyph-1-3" x="185.059706" y="48.707632"/> | |
| 464 | +<use xlink:href="#glyph-1-14" x="189.581414" y="48.707632"/> | |
| 465 | +<use xlink:href="#glyph-1-22" x="194.438684" y="48.707632"/> | |
| 466 | +<use xlink:href="#glyph-1-8" x="199.388234" y="48.707632"/> | |
| 467 | +<use xlink:href="#glyph-1-5" x="204.211947" y="48.707632"/> | |
| 468 | +<use xlink:href="#glyph-1-21" x="208.7756" y="48.707632"/> | |
| 469 | +<use xlink:href="#glyph-1-5" x="215.906307" y="48.707632"/> | |
| 470 | +<use xlink:href="#glyph-1-14" x="220.46996" y="48.707632"/> | |
| 471 | +<use xlink:href="#glyph-1-16" x="225.32723" y="48.707632"/> | |
| 472 | +</g> | |
| 473 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 474 | +<use xlink:href="#glyph-1-3" x="231.157632" y="48.707632"/> | |
| 475 | +<use xlink:href="#glyph-1-8" x="235.679339" y="48.707632"/> | |
| 476 | +</g> | |
| 477 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 478 | +<use xlink:href="#glyph-1-23" x="159.049225" y="59.61549"/> | |
| 479 | +</g> | |
| 480 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 481 | +<use xlink:href="#glyph-1-17" x="163.579322" y="59.61549"/> | |
| 482 | +<use xlink:href="#glyph-1-10" x="168.478537" y="59.61549"/> | |
| 483 | +<use xlink:href="#glyph-1-5" x="173.428087" y="59.61549"/> | |
| 484 | +</g> | |
| 485 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 486 | +<use xlink:href="#glyph-1-10" x="180.785299" y="59.61549"/> | |
| 487 | +<use xlink:href="#glyph-1-5" x="185.734849" y="59.61549"/> | |
| 488 | +</g> | |
| 489 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 490 | +<use xlink:href="#glyph-1-10" x="193.10045" y="59.61549"/> | |
| 491 | +<use xlink:href="#glyph-1-1" x="198.05" y="59.61549"/> | |
| 492 | +<use xlink:href="#glyph-1-17" x="202.613653" y="59.61549"/> | |
| 493 | +<use xlink:href="#glyph-1-14" x="207.512868" y="59.61549"/> | |
| 494 | +<use xlink:href="#glyph-1-16" x="212.370138" y="59.61549"/> | |
| 495 | +</g> | |
| 496 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 497 | +<use xlink:href="#glyph-1-17" x="215.272755" y="59.61549"/> | |
| 498 | +<use xlink:href="#glyph-1-6" x="220.171971" y="59.61549"/> | |
| 499 | +</g> | |
| 500 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 501 | +<use xlink:href="#glyph-1-17" x="222.596411" y="59.61549"/> | |
| 502 | +<use xlink:href="#glyph-1-24" x="227.495627" y="59.61549"/> | |
| 503 | +<use xlink:href="#glyph-1-11" x="231.857942" y="59.61549"/> | |
| 504 | +<use xlink:href="#glyph-1-5" x="234.173324" y="59.61549"/> | |
| 505 | +</g> | |
| 506 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 507 | +<use xlink:href="#glyph-2-10" x="158.571465" y="74.489751"/> | |
| 508 | +</g> | |
| 509 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 510 | +<use xlink:href="#glyph-2-13" x="163.059616" y="74.489751"/> | |
| 511 | +<use xlink:href="#glyph-2-14" x="167.908497" y="74.489751"/> | |
| 512 | +<use xlink:href="#glyph-2-15" x="172.83288" y="74.489751"/> | |
| 513 | +</g> | |
| 514 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 515 | +<use xlink:href="#glyph-2-14" x="179.963587" y="74.489751"/> | |
| 516 | +<use xlink:href="#glyph-2-15" x="184.88797" y="74.489751"/> | |
| 517 | +<use xlink:href="#glyph-2-16" x="189.225118" y="74.489751"/> | |
| 518 | +</g> | |
| 519 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 520 | +<use xlink:href="#glyph-2-17" x="195.894426" y="74.489751"/> | |
| 521 | +<use xlink:href="#glyph-2-1" x="200.751697" y="74.489751"/> | |
| 522 | +</g> | |
| 523 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 524 | +<use xlink:href="#glyph-2-13" x="203.78015" y="74.489751"/> | |
| 525 | +<use xlink:href="#glyph-2-18" x="208.629031" y="74.489751"/> | |
| 526 | +</g> | |
| 527 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 528 | +<use xlink:href="#glyph-2-15" x="211.305143" y="74.489751"/> | |
| 529 | +<use xlink:href="#glyph-2-16" x="215.642291" y="74.489751"/> | |
| 530 | +</g> | |
| 531 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 532 | +<use xlink:href="#glyph-2-16" x="219.425761" y="74.489751"/> | |
| 533 | +<use xlink:href="#glyph-2-19" x="223.293121" y="74.489751"/> | |
| 534 | +<use xlink:href="#glyph-2-13" x="225.633671" y="74.489751"/> | |
| 535 | +<use xlink:href="#glyph-2-20" x="230.482552" y="74.489751"/> | |
| 536 | +<use xlink:href="#glyph-2-16" x="235.348211" y="74.489751"/> | |
| 537 | +</g> | |
| 538 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 386.054688 5.15625 L 278.882812 5.15625 C 275.597656 5.15625 272.933594 7.820312 272.933594 11.105469 L 272.933594 81.027344 C 272.933594 84.3125 275.597656 86.976562 278.882812 86.976562 L 386.054688 86.976562 C 389.339844 86.976562 392.003906 84.3125 392.003906 81.027344 L 392.003906 11.105469 C 392.003906 7.820312 389.339844 5.15625 386.054688 5.15625 Z M 386.054688 5.15625 "/> | |
| 539 | +<g clip-path="url(#clip-2)"> | |
| 540 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 322.240788 41.102575 L 214.566433 41.102575 C 211.265874 41.102575 208.589321 38.426022 208.589321 35.125463 L 208.589321 -35.124244 C 208.589321 -38.424803 211.265874 -41.101356 214.566433 -41.101356 L 322.240788 -41.101356 C 325.541347 -41.101356 328.2179 -38.424803 328.2179 -35.124244 L 328.2179 35.125463 C 328.2179 38.426022 325.541347 41.102575 322.240788 41.102575 Z M 322.240788 41.102575 " transform="matrix(0.995333, 0, 0, -0.995333, 65.31769, 46.067013)"/> | |
| 541 | +</g> | |
| 542 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 543 | +<use xlink:href="#glyph-0-0" x="289.575248" y="29.230949"/> | |
| 544 | +</g> | |
| 545 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 546 | +<use xlink:href="#glyph-0-1" x="294.659023" y="29.230949"/> | |
| 547 | +<use xlink:href="#glyph-0-2" x="299.306566" y="29.230949"/> | |
| 548 | +<use xlink:href="#glyph-0-3" x="303.333319" y="29.230949"/> | |
| 549 | +<use xlink:href="#glyph-0-4" x="308.291258" y="29.230949"/> | |
| 550 | +<use xlink:href="#glyph-0-5" x="313.190473" y="29.230949"/> | |
| 551 | +<use xlink:href="#glyph-0-2" x="317.997409" y="29.230949"/> | |
| 552 | +<use xlink:href="#glyph-0-6" x="322.024161" y="29.230949"/> | |
| 553 | +<use xlink:href="#glyph-0-7" x="326.604592" y="29.230949"/> | |
| 554 | +<use xlink:href="#glyph-0-8" x="331.562531" y="29.230949"/> | |
| 555 | +<use xlink:href="#glyph-0-9" x="333.91147" y="29.230949"/> | |
| 556 | +<use xlink:href="#glyph-0-8" x="336.42819" y="29.230949"/> | |
| 557 | +<use xlink:href="#glyph-0-10" x="338.777129" y="29.230949"/> | |
| 558 | +</g> | |
| 559 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 560 | +<use xlink:href="#glyph-0-11" x="341.864306" y="29.230949"/> | |
| 561 | +</g> | |
| 562 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 563 | +<use xlink:href="#glyph-0-3" x="349.305408" y="29.230949"/> | |
| 564 | +<use xlink:href="#glyph-0-11" x="354.263347" y="29.230949"/> | |
| 565 | +<use xlink:href="#glyph-0-5" x="358.910891" y="29.230949"/> | |
| 566 | +<use xlink:href="#glyph-0-6" x="363.717826" y="29.230949"/> | |
| 567 | +</g> | |
| 568 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 569 | +<use xlink:href="#glyph-0-9" x="368.231145" y="29.230949"/> | |
| 570 | +</g> | |
| 571 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 572 | +<use xlink:href="#glyph-0-1" x="370.705919" y="29.230949"/> | |
| 573 | +</g> | |
| 574 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 575 | +<use xlink:href="#glyph-1-18" x="292.539351" y="44.105211"/> | |
| 576 | +<use xlink:href="#glyph-1-3" x="297.111392" y="44.105211"/> | |
| 577 | +<use xlink:href="#glyph-1-14" x="301.6331" y="44.105211"/> | |
| 578 | +<use xlink:href="#glyph-1-12" x="306.49037" y="44.105211"/> | |
| 579 | +<use xlink:href="#glyph-1-16" x="310.500344" y="44.105211"/> | |
| 580 | +<use xlink:href="#glyph-1-11" x="313.528797" y="44.105211"/> | |
| 581 | +<use xlink:href="#glyph-1-17" x="315.84418" y="44.105211"/> | |
| 582 | +<use xlink:href="#glyph-1-14" x="320.743395" y="44.105211"/> | |
| 583 | +<use xlink:href="#glyph-1-13" x="325.600666" y="44.105211"/> | |
| 584 | +</g> | |
| 585 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 586 | +<use xlink:href="#glyph-1-2" x="332.31192" y="44.105211"/> | |
| 587 | +<use xlink:href="#glyph-1-17" x="337.227913" y="44.105211"/> | |
| 588 | +<use xlink:href="#glyph-1-8" x="342.127128" y="44.105211"/> | |
| 589 | +<use xlink:href="#glyph-1-4" x="346.950842" y="44.105211"/> | |
| 590 | +</g> | |
| 591 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 592 | +<use xlink:href="#glyph-1-5" x="352.965804" y="44.105211"/> | |
| 593 | +</g> | |
| 594 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 595 | +<use xlink:href="#glyph-1-25" x="357.487511" y="44.105211"/> | |
| 596 | +</g> | |
| 597 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 598 | +<use xlink:href="#glyph-1-5" x="361.514263" y="44.105211"/> | |
| 599 | +<use xlink:href="#glyph-1-4" x="366.077916" y="44.105211"/> | |
| 600 | +</g> | |
| 601 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 602 | +<use xlink:href="#glyph-1-9" x="369.01409" y="44.105211"/> | |
| 603 | +</g> | |
| 604 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 605 | +<use xlink:href="#glyph-1-12" x="292.126287" y="55.013069"/> | |
| 606 | +<use xlink:href="#glyph-1-11" x="296.136262" y="55.013069"/> | |
| 607 | +<use xlink:href="#glyph-1-12" x="298.451644" y="55.013069"/> | |
| 608 | +</g> | |
| 609 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 610 | +<use xlink:href="#glyph-1-5" x="302.335782" y="55.013069"/> | |
| 611 | +</g> | |
| 612 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 613 | +<use xlink:href="#glyph-1-11" x="309.692995" y="55.013069"/> | |
| 614 | +<use xlink:href="#glyph-1-6" x="312.008377" y="55.013069"/> | |
| 615 | +<use xlink:href="#glyph-1-6" x="314.474763" y="55.013069"/> | |
| 616 | +</g> | |
| 617 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 618 | +<use xlink:href="#glyph-1-1" x="316.899204" y="55.013069"/> | |
| 619 | +<use xlink:href="#glyph-1-24" x="321.462856" y="55.013069"/> | |
| 620 | +<use xlink:href="#glyph-1-3" x="325.825171" y="55.013069"/> | |
| 621 | +</g> | |
| 622 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 623 | +<use xlink:href="#glyph-1-6" x="330.304933" y="55.013069"/> | |
| 624 | +</g> | |
| 625 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 626 | +<use xlink:href="#glyph-1-17" x="335.573268" y="55.013069"/> | |
| 627 | +<use xlink:href="#glyph-1-8" x="340.472483" y="55.013069"/> | |
| 628 | +</g> | |
| 629 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 630 | +<use xlink:href="#glyph-1-15" x="348.089756" y="55.013069"/> | |
| 631 | +<use xlink:href="#glyph-1-4" x="350.900094" y="55.013069"/> | |
| 632 | +</g> | |
| 633 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 634 | +<use xlink:href="#glyph-1-3" x="353.945325" y="55.013069"/> | |
| 635 | +<use xlink:href="#glyph-1-8" x="358.467033" y="55.013069"/> | |
| 636 | +<use xlink:href="#glyph-1-10" x="363.290747" y="55.013069"/> | |
| 637 | +<use xlink:href="#glyph-1-5" x="368.240296" y="55.013069"/> | |
| 638 | +</g> | |
| 639 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 640 | +<use xlink:href="#glyph-2-10" x="306.482975" y="69.88733"/> | |
| 641 | +</g> | |
| 642 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 643 | +<use xlink:href="#glyph-2-13" x="310.971126" y="69.88733"/> | |
| 644 | +<use xlink:href="#glyph-2-14" x="315.820007" y="69.88733"/> | |
| 645 | +<use xlink:href="#glyph-2-15" x="320.74439" y="69.88733"/> | |
| 646 | +</g> | |
| 647 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 648 | +<use xlink:href="#glyph-2-11" x="327.875097" y="69.88733"/> | |
| 649 | +<use xlink:href="#glyph-2-1" x="331.834737" y="69.88733"/> | |
| 650 | +<use xlink:href="#glyph-2-19" x="335.030972" y="69.88733"/> | |
| 651 | +<use xlink:href="#glyph-2-21" x="337.371522" y="69.88733"/> | |
| 652 | +<use xlink:href="#glyph-2-19" x="344.485451" y="69.88733"/> | |
| 653 | +<use xlink:href="#glyph-2-20" x="346.826001" y="69.88733"/> | |
| 654 | +<use xlink:href="#glyph-2-15" x="351.69166" y="69.88733"/> | |
| 655 | +<use xlink:href="#glyph-2-22" x="356.028808" y="69.88733"/> | |
| 656 | +</g> | |
| 657 | +</svg> | |
added
dist/assets/fig/ba4345b7767575bb.svg
+396 −0
@@ -0,0 +1,396 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="341.696pt" height="116.039pt" viewBox="0 0 341.696 116.039"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 4.875 -5.796875 L 3.484375 -5.796875 L 2.4375 -1.0625 L 1.34375 -5.796875 L -0.109375 -5.796875 L 1.5625 0 L 3.265625 0 Z M 4.875 -5.796875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 4.03125 -1.28125 L 4.03125 -3.015625 C 4.03125 -4.03125 3.484375 -4.578125 2.1875 -4.578125 C 1.6875 -4.578125 1.078125 -4.46875 0.515625 -4.25 L 0.8125 -3.390625 C 1.265625 -3.53125 1.703125 -3.625 1.984375 -3.625 C 2.53125 -3.625 2.734375 -3.453125 2.734375 -2.9375 L 2.734375 -2.734375 L 2.28125 -2.734375 C 0.9375 -2.734375 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.640625 0.140625 C 2.171875 0.140625 2.671875 -0.03125 2.984375 -0.515625 C 3.1875 -0.078125 3.53125 0.078125 4.046875 0.109375 L 4.328125 -0.75 C 4.125 -0.8125 4.03125 -0.9375 4.03125 -1.28125 Z M 2.03125 -0.796875 C 1.703125 -0.796875 1.515625 -1.015625 1.515625 -1.359375 C 1.515625 -1.8125 1.8125 -2.015625 2.40625 -2.015625 L 2.734375 -2.015625 L 2.734375 -1.21875 C 2.578125 -0.96875 2.328125 -0.796875 2.03125 -0.796875 Z M 2.03125 -0.796875 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.28125 0.078125 2.46875 -0.015625 L 2.21875 -0.9375 C 2.171875 -0.921875 2.09375 -0.90625 2 -0.90625 C 1.84375 -0.90625 1.765625 -1 1.765625 -1.171875 L 1.765625 -6.34375 L 0.453125 -6.203125 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 4.390625 -2.3125 C 4.390625 -3.75 3.609375 -4.578125 2.34375 -4.578125 C 1 -4.578125 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.78125 -0.125 4.234375 -0.46875 L 3.6875 -1.21875 C 3.296875 -0.9375 2.984375 -0.8125 2.625 -0.8125 C 2.078125 -0.8125 1.703125 -1.03125 1.625 -1.828125 L 4.359375 -1.828125 C 4.375 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.6875 -3.421875 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.078125 -3.28125 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.234375 -4.4375 L 2.921875 -4.4375 L 2.921875 -1.359375 C 2.71875 -1.015625 2.46875 -0.84375 2.203125 -0.84375 C 1.921875 -0.84375 1.765625 -0.96875 1.765625 -1.421875 L 1.765625 -4.4375 L 0.453125 -4.4375 L 0.453125 -1.25 C 0.453125 -0.390625 0.859375 0.140625 1.6875 0.140625 C 2.28125 0.140625 2.71875 -0.09375 3.03125 -0.5625 L 3.09375 0 L 4.234375 0 Z M 4.234375 -4.4375 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.921875 -4.5625 C 2.40625 -4.5625 1.96875 -4.203125 1.765625 -3.578125 L 1.65625 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 L 1.828125 -2.234375 C 1.984375 -2.890625 2.203125 -3.28125 2.75 -3.28125 C 2.890625 -3.28125 3.015625 -3.265625 3.15625 -3.234375 L 3.359375 -4.5 C 3.203125 -4.546875 3.078125 -4.5625 2.921875 -4.5625 Z M 2.921875 -4.5625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 5.421875 -4.578125 C 4.84375 -4.578125 4.4375 -4.34375 4.09375 -3.875 C 3.90625 -4.328125 3.53125 -4.578125 3.046875 -4.578125 C 2.5 -4.578125 2.09375 -4.359375 1.75 -3.90625 L 1.65625 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 L 1.828125 -3.03125 C 2.015625 -3.40625 2.234375 -3.609375 2.515625 -3.609375 C 2.703125 -3.609375 2.890625 -3.484375 2.890625 -3.015625 L 2.890625 0 L 4.203125 0 L 4.203125 -3.03125 C 4.390625 -3.40625 4.59375 -3.609375 4.875 -3.609375 C 5.078125 -3.609375 5.25 -3.484375 5.25 -3.015625 L 5.25 0 L 6.578125 0 L 6.578125 -3.25 C 6.578125 -4.09375 6.109375 -4.578125 5.421875 -4.578125 Z M 5.421875 -4.578125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.4375 -4.578125 C 1.109375 -4.578125 0.265625 -3.59375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.078125 0.140625 3.546875 -0.0625 3.96875 -0.390625 L 3.390625 -1.203125 C 3.0625 -1 2.84375 -0.90625 2.53125 -0.90625 C 2 -0.90625 1.65625 -1.203125 1.65625 -2.1875 C 1.65625 -3.1875 1.984375 -3.5625 2.546875 -3.5625 C 2.84375 -3.5625 3.109375 -3.46875 3.390625 -3.25 L 3.96875 -4.03125 C 3.53125 -4.390625 3.0625 -4.578125 2.4375 -4.578125 Z M 2.4375 -4.578125 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.109375 -4.578125 C 2.578125 -4.578125 2.1875 -4.375 1.828125 -3.96875 L 1.828125 -6.34375 L 0.515625 -6.203125 L 0.515625 0 L 1.828125 0 L 1.828125 -3.046875 C 2.0625 -3.40625 2.3125 -3.609375 2.59375 -3.609375 C 2.84375 -3.609375 3.015625 -3.484375 3.015625 -3.015625 L 3.015625 0 L 4.34375 0 L 4.34375 -3.25 C 4.34375 -4.09375 3.875 -4.578125 3.109375 -4.578125 Z M 3.109375 -4.578125 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 3.109375 -4.578125 C 2.546875 -4.578125 2.125 -4.34375 1.75 -3.90625 L 1.65625 -4.4375 L 0.515625 -4.4375 L 0.515625 0 L 1.828125 0 L 1.828125 -3.03125 C 2.0625 -3.40625 2.3125 -3.609375 2.59375 -3.609375 C 2.859375 -3.609375 3.015625 -3.484375 3.015625 -3.015625 L 3.015625 0 L 4.34375 0 L 4.34375 -3.25 C 4.34375 -4.09375 3.875 -4.578125 3.109375 -4.578125 Z M 3.109375 -4.578125 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.140625 -6.34375 L 3.140625 -4.15625 C 2.875 -4.421875 2.515625 -4.578125 2.078125 -4.578125 C 0.984375 -4.578125 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.953125 0.140625 C 2.5625 0.140625 2.953125 -0.15625 3.21875 -0.515625 L 3.28125 0 L 4.453125 0 L 4.453125 -6.203125 Z M 2.359375 -0.828125 C 1.9375 -0.828125 1.640625 -1.125 1.640625 -2.21875 C 1.640625 -3.21875 1.96875 -3.625 2.4375 -3.625 C 2.734375 -3.625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.921875 -1 2.6875 -0.828125 2.359375 -0.828125 Z M 2.359375 -0.828125 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 1.765625 -7.1875 C 0.921875 -6.015625 0.15625 -4.921875 0.15625 -2.921875 C 0.15625 -0.921875 0.921875 0.171875 1.765625 1.328125 L 2.609375 0.765625 C 1.84375 -0.34375 1.484375 -1.375 1.484375 -2.921875 C 1.484375 -4.46875 1.84375 -5.5 2.609375 -6.609375 Z M 1.765625 -7.1875 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 3.484375 -6 L 2.96875 -6.984375 L 1.140625 -5.875 L 1.515625 -5.203125 Z M 4.390625 -2.3125 C 4.390625 -3.75 3.609375 -4.578125 2.34375 -4.578125 C 1 -4.578125 0.265625 -3.53125 0.265625 -2.203125 C 0.265625 -0.8125 1.015625 0.140625 2.5 0.140625 C 3.21875 0.140625 3.78125 -0.125 4.234375 -0.46875 L 3.6875 -1.21875 C 3.296875 -0.9375 2.984375 -0.8125 2.625 -0.8125 C 2.078125 -0.8125 1.703125 -1.03125 1.609375 -1.828125 L 4.359375 -1.828125 C 4.375 -1.96875 4.390625 -2.171875 4.390625 -2.3125 Z M 3.09375 -2.625 L 1.609375 -2.625 C 1.671875 -3.421875 1.9375 -3.703125 2.375 -3.703125 C 2.90625 -3.703125 3.078125 -3.28125 3.09375 -2.6875 Z M 3.09375 -2.625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.546875 -5.359375 C 2.734375 -5.359375 3 -5.328125 3.25 -5.203125 L 3.609375 -6.0625 C 3.28125 -6.234375 2.84375 -6.34375 2.390625 -6.34375 C 1.25 -6.34375 0.6875 -5.6875 0.6875 -4.828125 L 0.6875 -4.4375 L 0.03125 -4.4375 L 0.03125 -3.515625 L 0.6875 -3.515625 L 0.6875 0 L 2.015625 0 L 2.015625 -3.515625 L 2.921875 -3.515625 L 3.0625 -4.4375 L 2.015625 -4.4375 L 2.015625 -4.78125 C 2.015625 -5.203125 2.171875 -5.359375 2.546875 -5.359375 Z M 2.546875 -5.359375 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 0.9375 -7.1875 L 0.09375 -6.609375 C 0.875 -5.5 1.234375 -4.46875 1.234375 -2.921875 C 1.234375 -1.375 0.875 -0.34375 0.09375 0.765625 L 0.9375 1.328125 C 1.78125 0.171875 2.5625 -0.921875 2.5625 -2.921875 C 2.5625 -4.921875 1.78125 -6.015625 0.9375 -7.1875 Z M 0.9375 -7.1875 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-1-0"> | |
| 51 | +<path d="M 4.59375 -5.765625 L 3.796875 -5.765625 L 2.34375 -0.859375 L 0.90625 -5.765625 L 0.046875 -5.765625 L 1.90625 0 L 2.765625 0 Z M 4.59375 -5.765625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-1-1"> | |
| 54 | +<path d="M 3.71875 -1.03125 L 3.71875 -3.046875 C 3.71875 -3.96875 3.234375 -4.5 2.171875 -4.5 C 1.6875 -4.5 1.203125 -4.40625 0.65625 -4.203125 L 0.84375 -3.640625 C 1.296875 -3.796875 1.703125 -3.875 2.03125 -3.875 C 2.640625 -3.875 2.953125 -3.640625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.734375 -0.09375 3.046875 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.90625 0.09375 L 4.09375 -0.4375 C 3.859375 -0.515625 3.71875 -0.640625 3.71875 -1.03125 Z M 1.921875 -0.46875 C 1.40625 -0.46875 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.15625 C 2.703125 -0.703125 2.359375 -0.46875 1.921875 -0.46875 Z M 1.921875 -0.46875 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-1-2"> | |
| 57 | +<path d="M 1.640625 0.09375 C 1.859375 0.09375 2.078125 0.046875 2.25 -0.046875 L 2.046875 -0.578125 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.484375 -0.65625 1.484375 -0.890625 L 1.484375 -6.265625 L 0.71875 -6.171875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-3"> | |
| 60 | +<path d="M 4.125 -2.328125 C 4.125 -3.671875 3.5 -4.5 2.3125 -4.5 C 1.171875 -4.5 0.46875 -3.53125 0.46875 -2.15625 C 0.46875 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.03125 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.109375 -2.046875 4.125 -2.1875 4.125 -2.328125 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.484375 1.734375 -3.890625 2.328125 -3.890625 C 3.015625 -3.890625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-4"> | |
| 63 | +<path d="M 4.03125 -4.40625 L 3.265625 -4.40625 L 3.265625 -1.265625 C 3 -0.8125 2.640625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.484375 -0.734375 1.484375 -1.328125 L 1.484375 -4.40625 L 0.71875 -4.40625 L 0.71875 -1.25 C 0.71875 -0.390625 1.171875 0.09375 1.953125 0.09375 C 2.578125 0.09375 2.984375 -0.15625 3.3125 -0.6875 L 3.375 0 L 4.03125 0 Z M 4.03125 -4.40625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-5"> | |
| 66 | +<path d="M 2.6875 -4.5 C 2.140625 -4.5 1.734375 -4.171875 1.5 -3.515625 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -2.515625 C 1.71875 -3.359375 2.046875 -3.75 2.59375 -3.75 C 2.75 -3.75 2.84375 -3.734375 2.96875 -3.703125 L 3.125 -4.453125 C 2.984375 -4.484375 2.828125 -4.5 2.6875 -4.5 Z M 2.6875 -4.5 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-6"> | |
| 69 | +<path d="M 2.3125 -6.265625 C 1.234375 -6.265625 0.78125 -5.71875 0.78125 -4.984375 L 0.78125 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.78125 -3.8125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.8125 L 3.25 -3.8125 L 3.25 0 L 4.015625 0 L 4.015625 -4.40625 L 1.5625 -4.40625 L 1.5625 -4.984375 C 1.5625 -5.40625 1.71875 -5.640625 2.328125 -5.640625 C 2.671875 -5.640625 2.984375 -5.5625 3.265625 -5.4375 L 3.53125 -5.96875 C 3.171875 -6.15625 2.796875 -6.265625 2.3125 -6.265625 Z M 2.3125 -6.265625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-7"> | |
| 72 | +<path d="M 1.984375 -4.5 C 1.078125 -4.5 0.40625 -4 0.40625 -3.296875 C 0.40625 -2.671875 0.78125 -2.265625 1.734375 -2.015625 C 2.578125 -1.78125 2.796875 -1.625 2.796875 -1.1875 C 2.796875 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.375 -0.515625 0.96875 -0.671875 0.625 -0.9375 L 0.203125 -0.46875 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.765625 0.09375 3.609375 -0.3125 3.609375 -1.234375 C 3.609375 -2 3.078125 -2.375 2.140625 -2.609375 C 1.4375 -2.796875 1.203125 -2.953125 1.203125 -3.3125 C 1.203125 -3.671875 1.515625 -3.890625 2.015625 -3.890625 C 2.421875 -3.890625 2.765625 -3.765625 3.15625 -3.515625 L 3.484375 -4 C 3.0625 -4.328125 2.609375 -4.5 1.984375 -4.5 Z M 1.984375 -4.5 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-8"> | |
| 75 | +<path d="M 2.40625 -4.5 C 1.203125 -4.5 0.46875 -3.5625 0.46875 -2.171875 C 0.46875 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.90625 0.09375 3.359375 -0.0625 3.75 -0.390625 L 3.390625 -0.890625 C 3.0625 -0.671875 2.796875 -0.546875 2.4375 -0.546875 C 1.734375 -0.546875 1.296875 -1.03125 1.296875 -2.1875 C 1.296875 -3.328125 1.734375 -3.875 2.4375 -3.875 C 2.796875 -3.875 3.078125 -3.765625 3.375 -3.546875 L 3.75 -4.03125 C 3.328125 -4.375 2.921875 -4.5 2.40625 -4.5 Z M 2.40625 -4.5 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-9"> | |
| 78 | +<path d="M 3.390625 -6.265625 L 3.390625 -3.96875 C 3.09375 -4.265625 2.71875 -4.5 2.203125 -4.5 C 1.125 -4.5 0.46875 -3.53125 0.46875 -2.1875 C 0.46875 -0.8125 1.0625 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.171875 3.40625 -0.609375 L 3.484375 0 L 4.15625 0 L 4.15625 -6.171875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.296875 -1.03125 1.296875 -2.203125 C 1.296875 -3.34375 1.71875 -3.890625 2.375 -3.890625 C 2.8125 -3.890625 3.125 -3.671875 3.390625 -3.3125 L 3.390625 -1.15625 C 3.09375 -0.75 2.796875 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-10"> | |
| 81 | +<path d="M 1 -6.296875 C 0.703125 -6.296875 0.453125 -6.0625 0.453125 -5.765625 C 0.453125 -5.59375 0.53125 -5.453125 0.671875 -5.34375 L 0.328125 -4.09375 L 0.84375 -4.09375 L 1.390625 -5.28125 C 1.5 -5.515625 1.53125 -5.640625 1.53125 -5.765625 C 1.53125 -6.0625 1.296875 -6.296875 1 -6.296875 Z M 1 -6.296875 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-11"> | |
| 84 | +<path d="M 2.84375 -4.5 C 2.265625 -4.5 1.796875 -4.203125 1.5 -3.75 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -3.125 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.078125 -3.90625 3.359375 -3.71875 3.359375 -3.046875 L 3.359375 0 L 4.125 0 L 4.125 -3.15625 C 4.125 -4 3.65625 -4.5 2.84375 -4.5 Z M 2.84375 -4.5 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-12"> | |
| 87 | +<path d="M 1.140625 -6.515625 C 0.828125 -6.515625 0.609375 -6.296875 0.609375 -6 C 0.609375 -5.703125 0.828125 -5.46875 1.140625 -5.46875 C 1.46875 -5.46875 1.6875 -5.703125 1.6875 -6 C 1.6875 -6.296875 1.46875 -6.515625 1.140625 -6.515625 Z M 1.53125 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 Z M 1.53125 -4.40625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-13"> | |
| 90 | +<path d="M 3.5 -4.40625 L 3.4375 -3.90625 C 3.140625 -4.25 2.75 -4.5 2.203125 -4.5 C 1.125 -4.5 0.46875 -3.53125 0.46875 -2.1875 C 0.46875 -0.8125 1.0625 0.09375 2.140625 0.09375 C 2.671875 0.09375 3.109375 -0.15625 3.390625 -0.578125 L 3.390625 1.6875 L 4.15625 1.78125 L 4.15625 -4.40625 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.296875 -1.03125 1.296875 -2.203125 C 1.296875 -3.34375 1.71875 -3.890625 2.375 -3.890625 C 2.8125 -3.890625 3.125 -3.671875 3.390625 -3.3125 L 3.390625 -1.15625 C 3.09375 -0.75 2.796875 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-14"> | |
| 93 | +<path d="M 2.71875 -0.703125 C 2.515625 -0.59375 2.328125 -0.53125 2.140625 -0.53125 C 1.75 -0.53125 1.609375 -0.75 1.609375 -1.1875 L 1.609375 -3.8125 L 2.578125 -3.8125 L 2.65625 -4.40625 L 1.609375 -4.40625 L 1.609375 -5.484375 L 0.84375 -5.40625 L 0.84375 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.84375 -3.8125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.28125 0.09375 2.03125 0.09375 C 2.40625 0.09375 2.71875 0 3.015625 -0.203125 Z M 2.71875 -0.703125 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-15"> | |
| 96 | +<path d="M 4.03125 -4.40625 L 3.21875 -4.40625 L 2.078125 -0.6875 L 0.921875 -4.40625 L 0.078125 -4.40625 L 1.609375 0 L 2.53125 0 Z M 4.03125 -4.40625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-16"> | |
| 99 | +<path d="M 2.453125 -4.5 C 1.203125 -4.5 0.46875 -3.5625 0.46875 -2.203125 C 0.46875 -0.796875 1.1875 0.09375 2.4375 0.09375 C 3.6875 0.09375 4.40625 -0.84375 4.40625 -2.203125 C 4.40625 -3.609375 3.703125 -4.5 2.453125 -4.5 Z M 2.453125 -3.890625 C 3.171875 -3.890625 3.578125 -3.359375 3.578125 -2.203125 C 3.578125 -1.046875 3.171875 -0.515625 2.4375 -0.515625 C 1.703125 -0.515625 1.296875 -1.046875 1.296875 -2.203125 C 1.296875 -3.359375 1.71875 -3.890625 2.453125 -3.890625 Z M 2.453125 -3.890625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-17"> | |
| 102 | +<path d="M 5.1875 -4.5 C 4.59375 -4.5 4.203125 -4.1875 3.875 -3.71875 C 3.71875 -4.21875 3.3125 -4.5 2.765625 -4.5 C 2.1875 -4.5 1.78125 -4.203125 1.5 -3.765625 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.53125 0 L 1.53125 -3.125 C 1.828125 -3.59375 2.09375 -3.90625 2.578125 -3.90625 C 2.90625 -3.90625 3.1875 -3.71875 3.1875 -3.046875 L 3.1875 0 L 3.96875 0 L 3.96875 -3.125 C 4.265625 -3.59375 4.515625 -3.90625 5 -3.90625 C 5.328125 -3.90625 5.625 -3.71875 5.625 -3.046875 L 5.625 0 L 6.390625 0 L 6.390625 -3.15625 C 6.390625 -3.984375 5.90625 -4.5 5.1875 -4.5 Z M 5.1875 -4.5 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-18"> | |
| 105 | +<path d="M 2.84375 -4.5 C 2.296875 -4.5 1.859375 -4.234375 1.53125 -3.796875 L 1.53125 -6.25 L 0.765625 -6.171875 L 0.765625 0 L 1.53125 0 L 1.53125 -3.140625 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.0625 -3.90625 3.359375 -3.71875 3.359375 -3.046875 L 3.359375 0 L 4.125 0 L 4.125 -3.15625 C 4.125 -3.984375 3.640625 -4.5 2.84375 -4.5 Z M 2.84375 -4.5 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-19"> | |
| 108 | +<path d="M 4.03125 -4.40625 L 3.234375 -4.40625 L 2.078125 -0.5625 L 0.90625 -4.40625 L 0.078125 -4.40625 L 1.5625 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.171875 L 0.515625 1.78125 C 1.734375 1.640625 2.25 0.96875 2.5625 0.03125 Z M 4.03125 -4.40625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-20"> | |
| 111 | +<path d="M 2.796875 -4.5 C 2.296875 -4.5 1.8125 -4.265625 1.484375 -3.8125 L 1.421875 -4.40625 L 0.765625 -4.40625 L 0.765625 1.78125 L 1.53125 1.6875 L 1.53125 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.6875 0.09375 C 3.828125 0.09375 4.421875 -0.875 4.421875 -2.203125 C 4.421875 -3.59375 3.96875 -4.5 2.796875 -4.5 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.53125 -1.0625 L 1.53125 -3.203125 C 1.765625 -3.5625 2.125 -3.890625 2.59375 -3.890625 C 3.265625 -3.890625 3.59375 -3.359375 3.59375 -2.203125 C 3.59375 -1.046875 3.203125 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-21"> | |
| 114 | +<path d="M 3.328125 -6.046875 L 3 -6.703125 L 1.328125 -5.75 L 1.5625 -5.328125 Z M 4.125 -2.328125 C 4.125 -3.671875 3.5 -4.5 2.3125 -4.5 C 1.171875 -4.5 0.46875 -3.53125 0.46875 -2.15625 C 0.46875 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.03125 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.109375 -2.046875 4.125 -2.1875 4.125 -2.328125 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.484375 1.734375 -3.890625 2.328125 -3.890625 C 3.015625 -3.890625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 115 | +</g> | |
| 116 | +</g> | |
| 117 | +<clipPath id="clip-0"> | |
| 118 | +<path clip-rule="nonzero" d="M 1.253906 42 L 114 42 L 114 79 L 1.253906 79 Z M 1.253906 42 "/> | |
| 119 | +</clipPath> | |
| 120 | +<clipPath id="clip-1"> | |
| 121 | +<path clip-rule="nonzero" d="M 227 42 L 340.140625 42 L 340.140625 79 L 227 79 Z M 227 42 "/> | |
| 122 | +</clipPath> | |
| 123 | +<clipPath id="clip-2"> | |
| 124 | +<path clip-rule="nonzero" d="M 114 79 L 228 79 L 228 115.085938 L 114 115.085938 Z M 114 79 "/> | |
| 125 | +</clipPath> | |
| 126 | +<clipPath id="clip-3"> | |
| 127 | +<path clip-rule="nonzero" d="M 1.253906 79 L 114 79 L 114 115.085938 L 1.253906 115.085938 Z M 1.253906 79 "/> | |
| 128 | +</clipPath> | |
| 129 | +<clipPath id="clip-4"> | |
| 130 | +<path clip-rule="nonzero" d="M 227 79 L 340.140625 79 L 340.140625 115.085938 L 227 115.085938 Z M 227 79 "/> | |
| 131 | +</clipPath> | |
| 132 | +</defs> | |
| 133 | +<path fill-rule="nonzero" fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 82.184822 13.46574 L -82.184788 13.46574 C -85.485335 13.46574 -88.163583 10.787492 -88.163583 7.486945 L -88.163583 -7.487614 C -88.163583 -10.788161 -85.485335 -13.466409 -82.184788 -13.466409 L 82.184822 -13.466409 C 85.485369 -13.466409 88.163618 -10.788161 88.163618 -7.487614 L 88.163618 7.486945 C 88.163618 10.787492 85.485369 13.46574 82.184822 13.46574 Z M 82.184822 13.46574 " transform="matrix(0.991786, 0, 0, -0.991786, 170.697248, 18.491856)"/> | |
| 134 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 135 | +<use xlink:href="#glyph-0-0" x="113.643748" y="21.348201"/> | |
| 136 | +</g> | |
| 137 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 138 | +<use xlink:href="#glyph-0-1" x="118.107546" y="21.348201"/> | |
| 139 | +</g> | |
| 140 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 141 | +<use xlink:href="#glyph-0-2" x="122.604781" y="21.348201"/> | |
| 142 | +</g> | |
| 143 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 144 | +<use xlink:href="#glyph-0-3" x="125.070736" y="21.348201"/> | |
| 145 | +<use xlink:href="#glyph-0-4" x="129.701718" y="21.348201"/> | |
| 146 | +<use xlink:href="#glyph-0-5" x="134.449727" y="21.348201"/> | |
| 147 | +</g> | |
| 148 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 149 | +<use xlink:href="#glyph-0-6" x="140.577" y="21.348201"/> | |
| 150 | +<use xlink:href="#glyph-0-1" x="147.607064" y="21.348201"/> | |
| 151 | +<use xlink:href="#glyph-0-5" x="152.171171" y="21.348201"/> | |
| 152 | +</g> | |
| 153 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 154 | +<use xlink:href="#glyph-0-7" x="155.347657" y="21.348201"/> | |
| 155 | +<use xlink:href="#glyph-0-8" x="159.3517" y="21.348201"/> | |
| 156 | +<use xlink:href="#glyph-0-1" x="164.141506" y="21.348201"/> | |
| 157 | +<use xlink:href="#glyph-0-9" x="168.705613" y="21.348201"/> | |
| 158 | +<use xlink:href="#glyph-0-10" x="173.495419" y="21.348201"/> | |
| 159 | +<use xlink:href="#glyph-0-3" x="178.460767" y="21.348201"/> | |
| 160 | +</g> | |
| 161 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 162 | +<use xlink:href="#glyph-0-11" x="185.883712" y="21.348201"/> | |
| 163 | +<use xlink:href="#glyph-0-5" x="188.600442" y="21.348201"/> | |
| 164 | +</g> | |
| 165 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 166 | +<use xlink:href="#glyph-0-12" x="191.776928" y="21.348201"/> | |
| 167 | +<use xlink:href="#glyph-0-13" x="196.407909" y="21.348201"/> | |
| 168 | +</g> | |
| 169 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 170 | +<use xlink:href="#glyph-0-12" x="199.300182" y="21.348201"/> | |
| 171 | +<use xlink:href="#glyph-0-5" x="203.931164" y="21.348201"/> | |
| 172 | +</g> | |
| 173 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 174 | +<use xlink:href="#glyph-0-3" x="207.107649" y="21.348201"/> | |
| 175 | +<use xlink:href="#glyph-0-9" x="211.73863" y="21.348201"/> | |
| 176 | +<use xlink:href="#glyph-0-7" x="216.528436" y="21.348201"/> | |
| 177 | +</g> | |
| 178 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 179 | +<use xlink:href="#glyph-0-3" x="220.407091" y="21.348201"/> | |
| 180 | +<use xlink:href="#glyph-0-14" x="225.038073" y="21.348201"/> | |
| 181 | +</g> | |
| 182 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.331338 -29.453188 L -45.331304 -29.453188 C -48.63579 -29.453188 -51.310099 -32.131436 -51.310099 -35.431983 L -51.310099 -48.988646 C -51.310099 -52.289193 -48.63579 -54.967441 -45.331304 -54.967441 L 45.331338 -54.967441 C 48.635824 -54.967441 51.310134 -52.289193 51.310134 -48.988646 L 51.310134 -35.431983 C 51.310134 -32.131436 48.635824 -29.453188 45.331338 -29.453188 Z M 45.331338 -29.453188 " transform="matrix(0.991786, 0, 0, -0.991786, 170.697248, 18.491856)"/> | |
| 183 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 184 | +<use xlink:href="#glyph-1-0" x="145.355124" y="63.447547"/> | |
| 185 | +</g> | |
| 186 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 187 | +<use xlink:href="#glyph-1-1" x="149.752049" y="63.447547"/> | |
| 188 | +</g> | |
| 189 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 190 | +<use xlink:href="#glyph-1-2" x="154.215846" y="63.447547"/> | |
| 191 | +</g> | |
| 192 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 193 | +<use xlink:href="#glyph-1-3" x="156.631647" y="63.447547"/> | |
| 194 | +<use xlink:href="#glyph-1-4" x="161.179037" y="63.447547"/> | |
| 195 | +<use xlink:href="#glyph-1-5" x="165.98556" y="63.447547"/> | |
| 196 | +</g> | |
| 197 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 198 | +<use xlink:href="#glyph-1-6" x="171.970728" y="63.447547"/> | |
| 199 | +<use xlink:href="#glyph-1-7" x="176.752174" y="63.447547"/> | |
| 200 | +<use xlink:href="#glyph-1-8" x="180.655907" y="63.447547"/> | |
| 201 | +</g> | |
| 202 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 203 | +<use xlink:href="#glyph-1-1" x="184.609795" y="63.447547"/> | |
| 204 | +</g> | |
| 205 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 206 | +<use xlink:href="#glyph-1-2" x="189.073593" y="63.447547"/> | |
| 207 | +</g> | |
| 208 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 209 | +<use xlink:href="#glyph-1-3" x="191.489394" y="63.447547"/> | |
| 210 | +</g> | |
| 211 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 102.238281 47.703125 L 12.316406 47.703125 C 9.042969 47.703125 6.386719 50.359375 6.386719 53.632812 L 6.386719 67.078125 C 6.386719 70.351562 9.042969 73.007812 12.316406 73.007812 L 102.238281 73.007812 C 105.511719 73.007812 108.167969 70.351562 108.167969 67.078125 L 108.167969 53.632812 C 108.167969 50.359375 105.511719 47.703125 102.238281 47.703125 Z M 102.238281 47.703125 "/> | |
| 212 | +<g clip-path="url(#clip-0)"> | |
| 213 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -69.025924 -29.453188 L -159.692505 -29.453188 C -162.993052 -29.453188 -165.6713 -32.131436 -165.6713 -35.431983 L -165.6713 -48.988646 C -165.6713 -52.289193 -162.993052 -54.967441 -159.692505 -54.967441 L -69.025924 -54.967441 C -65.725377 -54.967441 -63.047128 -52.289193 -63.047128 -48.988646 L -63.047128 -35.431983 C -63.047128 -32.131436 -65.725377 -29.453188 -69.025924 -29.453188 Z M -69.025924 -29.453188 " transform="matrix(0.991786, 0, 0, -0.991786, 170.697248, 18.491856)"/> | |
| 214 | +</g> | |
| 215 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 216 | +<use xlink:href="#glyph-1-0" x="21.697222" y="63.447547"/> | |
| 217 | +</g> | |
| 218 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 219 | +<use xlink:href="#glyph-1-1" x="26.094146" y="63.447547"/> | |
| 220 | +</g> | |
| 221 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 222 | +<use xlink:href="#glyph-1-2" x="30.557944" y="63.447547"/> | |
| 223 | +</g> | |
| 224 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 225 | +<use xlink:href="#glyph-1-3" x="32.973745" y="63.447547"/> | |
| 226 | +<use xlink:href="#glyph-1-4" x="37.521134" y="63.447547"/> | |
| 227 | +<use xlink:href="#glyph-1-5" x="42.327658" y="63.447547"/> | |
| 228 | +</g> | |
| 229 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 230 | +<use xlink:href="#glyph-1-9" x="48.312825" y="63.447547"/> | |
| 231 | +<use xlink:href="#glyph-1-10" x="53.244736" y="63.447547"/> | |
| 232 | +</g> | |
| 233 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 234 | +<use xlink:href="#glyph-1-1" x="55.02524" y="63.447547"/> | |
| 235 | +<use xlink:href="#glyph-1-7" x="59.530834" y="63.447547"/> | |
| 236 | +</g> | |
| 237 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 238 | +<use xlink:href="#glyph-1-7" x="63.350975" y="63.447547"/> | |
| 239 | +<use xlink:href="#glyph-1-4" x="67.254708" y="63.447547"/> | |
| 240 | +<use xlink:href="#glyph-1-5" x="72.061232" y="63.447547"/> | |
| 241 | +</g> | |
| 242 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 243 | +<use xlink:href="#glyph-1-1" x="75.095612" y="63.447547"/> | |
| 244 | +<use xlink:href="#glyph-1-11" x="79.601205" y="63.447547"/> | |
| 245 | +<use xlink:href="#glyph-1-8" x="84.441166" y="63.447547"/> | |
| 246 | +</g> | |
| 247 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 248 | +<use xlink:href="#glyph-1-3" x="88.311462" y="63.447547"/> | |
| 249 | +</g> | |
| 250 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 329.078125 47.703125 L 239.15625 47.703125 C 235.882812 47.703125 233.226562 50.359375 233.226562 53.632812 L 233.226562 67.078125 C 233.226562 70.351562 235.882812 73.007812 239.15625 73.007812 L 329.078125 73.007812 C 332.351562 73.007812 335.007812 70.351562 335.007812 67.078125 L 335.007812 53.632812 C 335.007812 50.359375 332.351562 47.703125 329.078125 47.703125 Z M 329.078125 47.703125 "/> | |
| 251 | +<g clip-path="url(#clip-1)"> | |
| 252 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 159.692539 -29.453188 L 69.025958 -29.453188 C 65.725411 -29.453188 63.047163 -32.131436 63.047163 -35.431983 L 63.047163 -48.988646 C 63.047163 -52.289193 65.725411 -54.967441 69.025958 -54.967441 L 159.692539 -54.967441 C 162.993086 -54.967441 165.671335 -52.289193 165.671335 -48.988646 L 165.671335 -35.431983 C 165.671335 -32.131436 162.993086 -29.453188 159.692539 -29.453188 Z M 159.692539 -29.453188 " transform="matrix(0.991786, 0, 0, -0.991786, 170.697248, 18.491856)"/> | |
| 253 | +</g> | |
| 254 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 255 | +<use xlink:href="#glyph-1-0" x="250.706635" y="62.753296"/> | |
| 256 | +</g> | |
| 257 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 258 | +<use xlink:href="#glyph-1-1" x="255.103559" y="62.753296"/> | |
| 259 | +</g> | |
| 260 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 261 | +<use xlink:href="#glyph-1-2" x="259.567357" y="62.753296"/> | |
| 262 | +</g> | |
| 263 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 264 | +<use xlink:href="#glyph-1-3" x="261.983158" y="62.753296"/> | |
| 265 | +<use xlink:href="#glyph-1-4" x="266.530547" y="62.753296"/> | |
| 266 | +<use xlink:href="#glyph-1-5" x="271.337071" y="62.753296"/> | |
| 267 | +</g> | |
| 268 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 269 | +<use xlink:href="#glyph-1-2" x="277.322238" y="62.753296"/> | |
| 270 | +<use xlink:href="#glyph-1-12" x="279.779835" y="62.753296"/> | |
| 271 | +<use xlink:href="#glyph-1-13" x="282.086966" y="62.753296"/> | |
| 272 | +<use xlink:href="#glyph-1-4" x="287.018877" y="62.753296"/> | |
| 273 | +<use xlink:href="#glyph-1-12" x="291.825401" y="62.753296"/> | |
| 274 | +<use xlink:href="#glyph-1-9" x="294.132533" y="62.753296"/> | |
| 275 | +<use xlink:href="#glyph-1-1" x="299.064444" y="62.753296"/> | |
| 276 | +<use xlink:href="#glyph-1-14" x="303.570038" y="62.753296"/> | |
| 277 | +<use xlink:href="#glyph-1-12" x="306.587699" y="62.753296"/> | |
| 278 | +<use xlink:href="#glyph-1-15" x="308.89483" y="62.753296"/> | |
| 279 | +</g> | |
| 280 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 281 | +<use xlink:href="#glyph-1-3" x="312.974106" y="62.753296"/> | |
| 282 | +</g> | |
| 283 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 215.65625 84.648438 L 125.738281 84.648438 C 122.460938 84.648438 119.808594 87.300781 119.808594 90.574219 L 119.808594 104.019531 C 119.808594 107.296875 122.460938 109.949219 125.738281 109.949219 L 215.65625 109.949219 C 218.933594 109.949219 221.585938 107.296875 221.585938 104.019531 L 221.585938 90.574219 C 221.585938 87.300781 218.933594 84.648438 215.65625 84.648438 Z M 215.65625 84.648438 "/> | |
| 284 | +<g clip-path="url(#clip-2)"> | |
| 285 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 45.331338 -66.70447 L -45.331304 -66.70447 C -48.63579 -66.70447 -51.310099 -69.37878 -51.310099 -72.679327 L -51.310099 -86.23599 C -51.310099 -89.540475 -48.63579 -92.214785 -45.331304 -92.214785 L 45.331338 -92.214785 C 48.635824 -92.214785 51.310134 -89.540475 51.310134 -86.23599 L 51.310134 -72.679327 C 51.310134 -69.37878 48.635824 -66.70447 45.331338 -66.70447 Z M 45.331338 -66.70447 " transform="matrix(0.991786, 0, 0, -0.991786, 170.697248, 18.491856)"/> | |
| 286 | +</g> | |
| 287 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 288 | +<use xlink:href="#glyph-1-0" x="134.793592" y="100.538372"/> | |
| 289 | +</g> | |
| 290 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 291 | +<use xlink:href="#glyph-1-1" x="139.190516" y="100.538372"/> | |
| 292 | +</g> | |
| 293 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 294 | +<use xlink:href="#glyph-1-2" x="143.654314" y="100.538372"/> | |
| 295 | +</g> | |
| 296 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 297 | +<use xlink:href="#glyph-1-3" x="146.070115" y="100.538372"/> | |
| 298 | +<use xlink:href="#glyph-1-4" x="150.617504" y="100.538372"/> | |
| 299 | +<use xlink:href="#glyph-1-5" x="155.424028" y="100.538372"/> | |
| 300 | +</g> | |
| 301 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 302 | +<use xlink:href="#glyph-1-9" x="161.409195" y="100.538372"/> | |
| 303 | +<use xlink:href="#glyph-1-10" x="166.341106" y="100.538372"/> | |
| 304 | +<use xlink:href="#glyph-1-4" x="168.246998" y="100.538372"/> | |
| 305 | +<use xlink:href="#glyph-1-14" x="173.053521" y="100.538372"/> | |
| 306 | +<use xlink:href="#glyph-1-12" x="176.071182" y="100.538372"/> | |
| 307 | +<use xlink:href="#glyph-1-2" x="178.378314" y="100.538372"/> | |
| 308 | +<use xlink:href="#glyph-1-12" x="180.83591" y="100.538372"/> | |
| 309 | +<use xlink:href="#glyph-1-7" x="183.143042" y="100.538372"/> | |
| 310 | +<use xlink:href="#glyph-1-1" x="187.046775" y="100.538372"/> | |
| 311 | +<use xlink:href="#glyph-1-14" x="191.552369" y="100.538372"/> | |
| 312 | +<use xlink:href="#glyph-1-12" x="194.57003" y="100.538372"/> | |
| 313 | +<use xlink:href="#glyph-1-16" x="196.877161" y="100.538372"/> | |
| 314 | +<use xlink:href="#glyph-1-11" x="201.758918" y="100.538372"/> | |
| 315 | +</g> | |
| 316 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 102.238281 84.648438 L 12.316406 84.648438 C 9.042969 84.648438 6.386719 87.300781 6.386719 90.574219 L 6.386719 104.019531 C 6.386719 107.296875 9.042969 109.949219 12.316406 109.949219 L 102.238281 109.949219 C 105.511719 109.949219 108.167969 107.296875 108.167969 104.019531 L 108.167969 90.574219 C 108.167969 87.300781 105.511719 84.648438 102.238281 84.648438 Z M 102.238281 84.648438 "/> | |
| 317 | +<g clip-path="url(#clip-3)"> | |
| 318 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -69.025924 -66.70447 L -159.692505 -66.70447 C -162.993052 -66.70447 -165.6713 -69.37878 -165.6713 -72.679327 L -165.6713 -86.23599 C -165.6713 -89.540475 -162.993052 -92.214785 -159.692505 -92.214785 L -69.025924 -92.214785 C -65.725377 -92.214785 -63.047128 -89.540475 -63.047128 -86.23599 L -63.047128 -72.679327 C -63.047128 -69.37878 -65.725377 -66.70447 -69.025924 -66.70447 Z M -69.025924 -66.70447 " transform="matrix(0.991786, 0, 0, -0.991786, 170.697248, 18.491856)"/> | |
| 319 | +</g> | |
| 320 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 321 | +<use xlink:href="#glyph-1-0" x="12.188966" y="100.538372"/> | |
| 322 | +</g> | |
| 323 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 324 | +<use xlink:href="#glyph-1-1" x="16.585891" y="100.538372"/> | |
| 325 | +</g> | |
| 326 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 327 | +<use xlink:href="#glyph-1-2" x="21.049688" y="100.538372"/> | |
| 328 | +</g> | |
| 329 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 330 | +<use xlink:href="#glyph-1-3" x="23.465489" y="100.538372"/> | |
| 331 | +<use xlink:href="#glyph-1-4" x="28.012879" y="100.538372"/> | |
| 332 | +<use xlink:href="#glyph-1-5" x="32.819402" y="100.538372"/> | |
| 333 | +</g> | |
| 334 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 335 | +<use xlink:href="#glyph-1-9" x="38.804569" y="100.538372"/> | |
| 336 | +<use xlink:href="#glyph-1-10" x="43.736481" y="100.538372"/> | |
| 337 | +<use xlink:href="#glyph-1-12" x="45.642372" y="100.538372"/> | |
| 338 | +<use xlink:href="#glyph-1-11" x="47.949503" y="100.538372"/> | |
| 339 | +</g> | |
| 340 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 341 | +<use xlink:href="#glyph-1-15" x="52.73095" y="100.538372"/> | |
| 342 | +</g> | |
| 343 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 344 | +<use xlink:href="#glyph-1-3" x="56.810226" y="100.538372"/> | |
| 345 | +<use xlink:href="#glyph-1-7" x="61.357615" y="100.538372"/> | |
| 346 | +<use xlink:href="#glyph-1-14" x="65.261348" y="100.538372"/> | |
| 347 | +<use xlink:href="#glyph-1-12" x="68.279009" y="100.538372"/> | |
| 348 | +<use xlink:href="#glyph-1-7" x="70.586141" y="100.538372"/> | |
| 349 | +</g> | |
| 350 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 351 | +<use xlink:href="#glyph-1-7" x="74.406282" y="100.538372"/> | |
| 352 | +<use xlink:href="#glyph-1-3" x="78.310016" y="100.538372"/> | |
| 353 | +<use xlink:href="#glyph-1-17" x="82.857405" y="100.538372"/> | |
| 354 | +<use xlink:href="#glyph-1-3" x="89.962701" y="100.538372"/> | |
| 355 | +<use xlink:href="#glyph-1-11" x="94.510091" y="100.538372"/> | |
| 356 | +<use xlink:href="#glyph-1-14" x="99.350051" y="100.538372"/> | |
| 357 | +</g> | |
| 358 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 329.078125 84.648438 L 239.15625 84.648438 C 235.882812 84.648438 233.226562 87.300781 233.226562 90.574219 L 233.226562 104.019531 C 233.226562 107.296875 235.882812 109.949219 239.15625 109.949219 L 329.078125 109.949219 C 332.351562 109.949219 335.007812 107.296875 335.007812 104.019531 L 335.007812 90.574219 C 335.007812 87.300781 332.351562 84.648438 329.078125 84.648438 Z M 329.078125 84.648438 "/> | |
| 359 | +<g clip-path="url(#clip-4)"> | |
| 360 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 159.692539 -66.70447 L 69.025958 -66.70447 C 65.725411 -66.70447 63.047163 -69.37878 63.047163 -72.679327 L 63.047163 -86.23599 C 63.047163 -89.540475 65.725411 -92.214785 69.025958 -92.214785 L 159.692539 -92.214785 C 162.993086 -92.214785 165.671335 -89.540475 165.671335 -86.23599 L 165.671335 -72.679327 C 165.671335 -69.37878 162.993086 -66.70447 159.692539 -66.70447 Z M 159.692539 -66.70447 " transform="matrix(0.991786, 0, 0, -0.991786, 170.697248, 18.491856)"/> | |
| 361 | +</g> | |
| 362 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 363 | +<use xlink:href="#glyph-1-0" x="246.091853" y="99.696345"/> | |
| 364 | +</g> | |
| 365 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 366 | +<use xlink:href="#glyph-1-1" x="250.488778" y="99.696345"/> | |
| 367 | +</g> | |
| 368 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 369 | +<use xlink:href="#glyph-1-2" x="254.952575" y="99.696345"/> | |
| 370 | +</g> | |
| 371 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 372 | +<use xlink:href="#glyph-1-3" x="257.368376" y="99.696345"/> | |
| 373 | +<use xlink:href="#glyph-1-4" x="261.915765" y="99.696345"/> | |
| 374 | +<use xlink:href="#glyph-1-5" x="266.722289" y="99.696345"/> | |
| 375 | +</g> | |
| 376 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 377 | +<use xlink:href="#glyph-1-18" x="272.707456" y="99.696345"/> | |
| 378 | +</g> | |
| 379 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 380 | +<use xlink:href="#glyph-1-19" x="277.488903" y="99.696345"/> | |
| 381 | +<use xlink:href="#glyph-1-20" x="281.601615" y="99.696345"/> | |
| 382 | +<use xlink:href="#glyph-1-16" x="286.50009" y="99.696345"/> | |
| 383 | +<use xlink:href="#glyph-1-14" x="291.381846" y="99.696345"/> | |
| 384 | +<use xlink:href="#glyph-1-18" x="294.399507" y="99.696345"/> | |
| 385 | +<use xlink:href="#glyph-1-21" x="299.239468" y="99.696345"/> | |
| 386 | +<use xlink:href="#glyph-1-8" x="303.786857" y="99.696345"/> | |
| 387 | +</g> | |
| 388 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 389 | +<use xlink:href="#glyph-1-1" x="307.740746" y="99.696345"/> | |
| 390 | +<use xlink:href="#glyph-1-12" x="312.246339" y="99.696345"/> | |
| 391 | +<use xlink:href="#glyph-1-5" x="314.553471" y="99.696345"/> | |
| 392 | +</g> | |
| 393 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 394 | +<use xlink:href="#glyph-1-3" x="317.58785" y="99.696345"/> | |
| 395 | +</g> | |
| 396 | +</svg> | |
added
dist/assets/fig/d015489bf41185b5.svg
+205 −0
@@ -0,0 +1,205 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="292.438pt" height="156.053pt" viewBox="0 0 292.438 156.053"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 7.96875 -4.265625 C 7.96875 -5.65625 7.125 -6.765625 5.640625 -6.765625 L 2.3125 -6.765625 C 2.125 -6.765625 2.015625 -6.765625 2.015625 -6.578125 C 2.015625 -6.453125 2.09375 -6.453125 2.296875 -6.453125 C 2.421875 -6.453125 2.609375 -6.453125 2.71875 -6.4375 C 2.875 -6.421875 2.9375 -6.390625 2.9375 -6.28125 C 2.9375 -6.234375 2.9375 -6.21875 2.90625 -6.09375 L 1.578125 -0.765625 C 1.46875 -0.390625 1.453125 -0.3125 0.671875 -0.3125 C 0.5 -0.3125 0.390625 -0.3125 0.390625 -0.125 C 0.390625 0 0.484375 0 0.671875 0 L 3.953125 0 C 6.015625 0 7.96875 -2.09375 7.96875 -4.265625 Z M 7.109375 -4.625 C 7.109375 -4.140625 6.90625 -2.515625 6.0625 -1.421875 C 5.78125 -1.0625 5 -0.3125 3.78125 -0.3125 L 2.65625 -0.3125 C 2.515625 -0.3125 2.5 -0.3125 2.4375 -0.3125 C 2.34375 -0.328125 2.3125 -0.34375 2.3125 -0.421875 C 2.3125 -0.453125 2.3125 -0.46875 2.359375 -0.640625 L 3.71875 -6.078125 C 3.796875 -6.421875 3.828125 -6.453125 4.25 -6.453125 L 5.3125 -6.453125 C 6.28125 -6.453125 7.109375 -5.9375 7.109375 -4.625 Z M 7.109375 -4.625 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 7.328125 -4.3125 C 7.328125 -5.90625 6.28125 -6.984375 4.796875 -6.984375 C 2.671875 -6.984375 0.484375 -4.734375 0.484375 -2.421875 C 0.484375 -0.78125 1.59375 0.21875 3.015625 0.21875 C 5.125 0.21875 7.328125 -1.953125 7.328125 -4.3125 Z M 6.453125 -4.703125 C 6.453125 -4 6.1875 -2.453125 5.203125 -1.234375 C 4.71875 -0.625 3.90625 -0.046875 3.078125 -0.046875 C 2.09375 -0.046875 1.40625 -0.84375 1.40625 -2.15625 C 1.40625 -2.578125 1.546875 -4.03125 2.3125 -5.1875 C 2.984375 -6.21875 3.96875 -6.734375 4.75 -6.734375 C 5.5625 -6.734375 6.453125 -6.1875 6.453125 -4.703125 Z M 6.453125 -4.703125 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 7.0625 -2.453125 C 7.0625 -2.453125 7.0625 -2.5625 6.9375 -2.5625 C 6.859375 -2.5625 6.828125 -2.5 6.8125 -2.4375 C 6.171875 -0.96875 5.8125 -0.3125 4.109375 -0.3125 L 2.671875 -0.3125 C 2.53125 -0.3125 2.5 -0.3125 2.453125 -0.3125 C 2.34375 -0.328125 2.3125 -0.34375 2.3125 -0.421875 C 2.3125 -0.453125 2.3125 -0.46875 2.375 -0.640625 L 3.046875 -3.34375 L 4.015625 -3.34375 C 4.859375 -3.34375 4.859375 -3.140625 4.859375 -2.890625 C 4.859375 -2.828125 4.859375 -2.703125 4.796875 -2.40625 C 4.78125 -2.359375 4.765625 -2.328125 4.765625 -2.296875 C 4.765625 -2.25 4.796875 -2.1875 4.890625 -2.1875 C 4.96875 -2.1875 5 -2.234375 5.046875 -2.390625 L 5.609375 -4.703125 C 5.609375 -4.765625 5.5625 -4.8125 5.484375 -4.8125 C 5.40625 -4.8125 5.375 -4.75 5.34375 -4.640625 C 5.140625 -3.890625 4.96875 -3.65625 4.046875 -3.65625 L 3.125 -3.65625 L 3.71875 -6.046875 C 3.796875 -6.390625 3.8125 -6.421875 4.25 -6.421875 L 5.640625 -6.421875 C 6.859375 -6.421875 7.15625 -6.140625 7.15625 -5.328125 C 7.15625 -5.09375 7.15625 -5.078125 7.109375 -4.796875 C 7.109375 -4.75 7.109375 -4.671875 7.109375 -4.625 C 7.109375 -4.578125 7.125 -4.5 7.21875 -4.5 C 7.328125 -4.5 7.34375 -4.5625 7.359375 -4.75 L 7.5625 -6.46875 C 7.59375 -6.734375 7.53125 -6.734375 7.296875 -6.734375 L 2.28125 -6.734375 C 2.09375 -6.734375 1.984375 -6.734375 1.984375 -6.53125 C 1.984375 -6.421875 2.078125 -6.421875 2.265625 -6.421875 C 2.640625 -6.421875 2.90625 -6.421875 2.90625 -6.25 C 2.90625 -6.21875 2.90625 -6.1875 2.859375 -6.015625 L 1.5625 -0.765625 C 1.453125 -0.390625 1.4375 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.375 -0.3125 0.375 -0.125 C 0.375 0 0.46875 0 0.65625 0 L 5.796875 0 C 6.015625 0 6.03125 -0.015625 6.109375 -0.171875 L 7.015625 -2.3125 C 7.03125 -2.359375 7.0625 -2.453125 7.0625 -2.453125 Z M 7.0625 -2.453125 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-1-0"> | |
| 15 | +<path d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.40625 C 2.328125 -4.59375 2.3125 -4.609375 2.109375 -4.609375 C 1.671875 -4.171875 1.046875 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-1-1"> | |
| 18 | +<path d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.25 -1.109375 3.171875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.421875 2.515625 -1.75 C 3.03125 -2.171875 3.5 -2.59375 3.5 -3.25 C 3.5 -4.09375 2.765625 -4.609375 1.875 -4.609375 C 1.015625 -4.609375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3.015625 0.734375 -2.96875 0.8125 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.46875 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.203125 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.65625 2.40625 -2.171875 2.171875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.5 -1.265625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-2-0"> | |
| 21 | +<path d="M 4.515625 0 L 5.40625 0 L 5.40625 -6.421875 L 4.515625 -6.421875 L 4.515625 -3.734375 L 1.8125 -3.734375 L 1.8125 -6.421875 L 0.9375 -6.421875 L 0.9375 0 L 1.8125 0 L 1.8125 -3.015625 L 4.515625 -3.015625 Z M 4.515625 0 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-2-1"> | |
| 24 | +<path d="M 4.140625 -1.140625 L 4.140625 -3.390625 C 4.140625 -4.421875 3.609375 -5.015625 2.421875 -5.015625 C 1.875 -5.015625 1.328125 -4.90625 0.71875 -4.6875 L 0.9375 -4.0625 C 1.4375 -4.234375 1.90625 -4.328125 2.265625 -4.328125 C 2.9375 -4.328125 3.28125 -4.0625 3.28125 -3.359375 L 3.28125 -2.984375 L 2.53125 -2.984375 C 1.15625 -2.984375 0.375 -2.421875 0.375 -1.375 C 0.375 -0.5 0.953125 0.109375 1.9375 0.109375 C 2.53125 0.109375 3.046875 -0.109375 3.40625 -0.625 C 3.546875 -0.140625 3.859375 0.0625 4.359375 0.109375 L 4.546875 -0.484375 C 4.296875 -0.578125 4.140625 -0.71875 4.140625 -1.140625 Z M 2.125 -0.53125 C 1.578125 -0.53125 1.28125 -0.84375 1.28125 -1.421875 C 1.28125 -2.09375 1.734375 -2.421875 2.640625 -2.421875 L 3.28125 -2.421875 L 3.28125 -1.296875 C 3.015625 -0.78125 2.640625 -0.53125 2.125 -0.53125 Z M 2.125 -0.53125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-2-2"> | |
| 27 | +<path d="M 4.5 -4.90625 L 3.640625 -4.90625 L 3.640625 -1.40625 C 3.34375 -0.90625 2.9375 -0.5625 2.40625 -0.5625 C 1.875 -0.5625 1.65625 -0.8125 1.65625 -1.484375 L 1.65625 -4.90625 L 0.796875 -4.90625 L 0.796875 -1.390625 C 0.796875 -0.421875 1.3125 0.109375 2.171875 0.109375 C 2.875 0.109375 3.328125 -0.171875 3.703125 -0.765625 L 3.765625 0 L 4.5 0 Z M 4.5 -4.90625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-2-3"> | |
| 30 | +<path d="M 2.21875 -5.015625 C 1.203125 -5.015625 0.453125 -4.453125 0.453125 -3.671875 C 0.453125 -2.984375 0.859375 -2.53125 1.921875 -2.25 C 2.875 -2 3.125 -1.8125 3.125 -1.328125 C 3.125 -0.859375 2.703125 -0.578125 2.0625 -0.578125 C 1.53125 -0.578125 1.078125 -0.75 0.6875 -1.046875 L 0.234375 -0.53125 C 0.65625 -0.15625 1.25 0.109375 2.09375 0.109375 C 3.078125 0.109375 4.015625 -0.359375 4.015625 -1.375 C 4.015625 -2.234375 3.421875 -2.640625 2.390625 -2.90625 C 1.609375 -3.109375 1.34375 -3.296875 1.34375 -3.703125 C 1.34375 -4.09375 1.6875 -4.34375 2.25 -4.34375 C 2.703125 -4.34375 3.078125 -4.203125 3.515625 -3.921875 L 3.890625 -4.453125 C 3.421875 -4.8125 2.90625 -5.015625 2.21875 -5.015625 Z M 2.21875 -5.015625 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-2-4"> | |
| 33 | +<path d="M 4.59375 -2.59375 C 4.59375 -4.09375 3.890625 -5.015625 2.5625 -5.015625 C 1.296875 -5.015625 0.53125 -3.9375 0.53125 -2.40625 C 0.53125 -0.84375 1.328125 0.109375 2.703125 0.109375 C 3.375 0.109375 3.9375 -0.125 4.421875 -0.5 L 4.046875 -1.015625 C 3.609375 -0.71875 3.25 -0.59375 2.765625 -0.59375 C 2.0625 -0.59375 1.53125 -1.03125 1.4375 -2.15625 L 4.578125 -2.15625 C 4.578125 -2.265625 4.59375 -2.4375 4.59375 -2.59375 Z M 3.75 -2.796875 L 1.4375 -2.796875 C 1.515625 -3.890625 1.9375 -4.34375 2.59375 -4.34375 C 3.359375 -4.34375 3.75 -3.8125 3.75 -2.84375 Z M 3.75 -2.796875 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-2-5"> | |
| 36 | +<path d="M 3.78125 -6.984375 L 3.78125 -4.421875 C 3.453125 -4.765625 3.03125 -5.015625 2.453125 -5.015625 C 1.25 -5.015625 0.53125 -3.9375 0.53125 -2.4375 C 0.53125 -0.90625 1.1875 0.109375 2.390625 0.109375 C 2.984375 0.109375 3.484375 -0.1875 3.796875 -0.6875 L 3.890625 0 L 4.640625 0 L 4.640625 -6.875 Z M 2.5625 -0.5625 C 1.859375 -0.5625 1.453125 -1.15625 1.453125 -2.453125 C 1.453125 -3.71875 1.90625 -4.34375 2.640625 -4.34375 C 3.125 -4.34375 3.46875 -4.09375 3.78125 -3.703125 L 3.78125 -1.296875 C 3.453125 -0.84375 3.125 -0.5625 2.5625 -0.5625 Z M 2.5625 -0.5625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-2-6"> | |
| 39 | +<path d="M 1.828125 0.109375 C 2.078125 0.109375 2.3125 0.046875 2.5 -0.0625 L 2.28125 -0.65625 C 2.1875 -0.609375 2.09375 -0.59375 1.96875 -0.59375 C 1.734375 -0.59375 1.65625 -0.71875 1.65625 -0.984375 L 1.65625 -6.984375 L 0.796875 -6.875 L 0.796875 -0.96875 C 0.796875 -0.265625 1.203125 0.109375 1.828125 0.109375 Z M 1.828125 0.109375 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-2-7"> | |
| 42 | +<path d="M 5.78125 -5.015625 C 5.125 -5.015625 4.671875 -4.671875 4.328125 -4.140625 C 4.140625 -4.6875 3.6875 -5.015625 3.078125 -5.015625 C 2.4375 -5.015625 2 -4.6875 1.671875 -4.1875 L 1.59375 -4.90625 L 0.859375 -4.90625 L 0.859375 0 L 1.71875 0 L 1.71875 -3.484375 C 2.046875 -4 2.34375 -4.34375 2.875 -4.34375 C 3.234375 -4.34375 3.5625 -4.140625 3.5625 -3.40625 L 3.5625 0 L 4.421875 0 L 4.421875 -3.484375 C 4.75 -4 5.03125 -4.34375 5.5625 -4.34375 C 5.9375 -4.34375 6.265625 -4.140625 6.265625 -3.40625 L 6.265625 0 L 7.109375 0 L 7.109375 -3.515625 C 7.109375 -4.4375 6.578125 -5.015625 5.78125 -5.015625 Z M 5.78125 -5.015625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-2-8"> | |
| 45 | +<path d="M 3.171875 -5.015625 C 2.53125 -5.015625 2 -4.6875 1.671875 -4.1875 L 1.59375 -4.90625 L 0.859375 -4.90625 L 0.859375 0 L 1.71875 0 L 1.71875 -3.484375 C 2.046875 -4 2.40625 -4.34375 2.96875 -4.34375 C 3.4375 -4.34375 3.734375 -4.140625 3.734375 -3.40625 L 3.734375 0 L 4.59375 0 L 4.59375 -3.515625 C 4.59375 -4.453125 4.0625 -5.015625 3.171875 -5.015625 Z M 3.171875 -5.015625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-3-0"> | |
| 48 | +<path d="M 4.015625 -0.328125 C 4.828125 -0.75 5.328125 -1.46875 5.328125 -2.875 C 5.328125 -4.828125 4.34375 -5.875 2.890625 -5.875 C 1.453125 -5.875 0.453125 -4.78125 0.453125 -2.875 C 0.453125 -0.9375 1.453125 0.078125 2.875 0.078125 C 3.921875 0.078125 4.40625 0.28125 5.0625 0.859375 L 5.578125 0.1875 C 5.171875 -0.09375 4.671875 -0.328125 4.015625 -0.328125 Z M 1.3125 -2.875 C 1.3125 -4.546875 1.9375 -5.21875 2.890625 -5.21875 C 3.890625 -5.21875 4.484375 -4.546875 4.484375 -2.875 C 4.484375 -1.203125 3.875 -0.546875 2.890625 -0.546875 C 1.953125 -0.546875 1.3125 -1.203125 1.3125 -2.875 Z M 1.3125 -2.875 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-3-1"> | |
| 51 | +<path d="M 4.046875 -4.40625 L 3.28125 -4.40625 L 3.28125 -1.265625 C 3 -0.828125 2.640625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.484375 -0.734375 1.484375 -1.328125 L 1.484375 -4.40625 L 0.71875 -4.40625 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 2.984375 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.40625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-3-2"> | |
| 54 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.96875 3.234375 -4.515625 2.171875 -4.515625 C 1.6875 -4.515625 1.203125 -4.40625 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.796875 1.703125 -3.890625 2.03125 -3.890625 C 2.640625 -3.890625 2.953125 -3.65625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.921875 0.09375 L 4.09375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-3-3"> | |
| 57 | +<path d="M 2.84375 -4.515625 C 2.265625 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -3.125 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.09375 -3.90625 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.125 0 L 4.125 -3.171875 C 4.125 -4 3.65625 -4.515625 2.84375 -4.515625 Z M 2.84375 -4.515625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-3-4"> | |
| 60 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.609375 -0.75 1.609375 -1.1875 L 1.609375 -3.8125 L 2.578125 -3.8125 L 2.65625 -4.40625 L 1.609375 -4.40625 L 1.609375 -5.5 L 0.84375 -5.40625 L 0.84375 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.84375 -3.8125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.40625 0.09375 2.734375 0 3.015625 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-3-5"> | |
| 63 | +<path d="M 1.140625 -6.53125 C 0.828125 -6.53125 0.609375 -6.3125 0.609375 -6 C 0.609375 -5.71875 0.828125 -5.484375 1.140625 -5.484375 C 1.46875 -5.484375 1.6875 -5.71875 1.6875 -6 C 1.6875 -6.3125 1.46875 -6.53125 1.140625 -6.53125 Z M 1.546875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.40625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-3-6"> | |
| 66 | +<path d="M 3.34375 -6.0625 L 3 -6.703125 L 1.328125 -5.75 L 1.5625 -5.34375 Z M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-3-7"> | |
| 69 | +<path d="M 1.890625 -7.078125 C 1.078125 -5.90625 0.328125 -4.921875 0.328125 -2.9375 C 0.328125 -0.953125 1.078125 0.046875 1.890625 1.21875 L 2.375 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.734375 1.625 -5.625 2.375 -6.734375 Z M 1.890625 -7.078125 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-3-8"> | |
| 72 | +<path d="M 0.828125 -7.078125 L 0.328125 -6.734375 C 1.09375 -5.625 1.578125 -4.734375 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.328125 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.375 -0.953125 2.375 -2.9375 C 2.375 -4.921875 1.640625 -5.90625 0.828125 -7.078125 Z M 0.828125 -7.078125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-4-0"> | |
| 75 | +<path d="M 5.9375 0 C 5.9375 -0.046875 5.890625 -0.109375 5.828125 -0.109375 C 5.75 -0.109375 5.734375 -0.046875 5.703125 0.015625 C 5.5 0.625 4.984375 0.84375 4.65625 0.84375 C 4.25 0.84375 4.109375 0.59375 4.03125 -0.046875 C 5.96875 -0.875 6.75 -2.640625 6.75 -3.859375 C 6.75 -5.265625 5.8125 -6.28125 4.40625 -6.28125 C 2.40625 -6.28125 0.453125 -4.234375 0.453125 -2.203125 C 0.453125 -0.734375 1.453125 0.203125 2.796875 0.203125 C 3.15625 0.203125 3.53125 0.109375 3.671875 0.078125 L 3.671875 0.359375 C 3.65625 0.46875 3.65625 0.59375 3.65625 0.6875 C 3.65625 1.125 3.71875 1.734375 4.421875 1.734375 C 5.484375 1.734375 5.9375 0.140625 5.9375 0 Z M 5.9375 -4.125 C 5.9375 -3.234375 5.5 -1.234375 3.96875 -0.375 C 3.890625 -0.859375 3.71875 -1.328125 3.15625 -1.328125 C 2.65625 -1.328125 2.21875 -0.875 2.21875 -0.421875 C 2.21875 -0.34375 2.234375 -0.21875 2.265625 -0.15625 C 1.859375 -0.328125 1.25 -0.78125 1.25 -1.9375 C 1.25 -2.40625 1.40625 -3.84375 2.375 -4.984375 C 2.828125 -5.53125 3.578125 -6.03125 4.34375 -6.03125 C 5.234375 -6.03125 5.9375 -5.375 5.9375 -4.125 Z M 3.703125 -0.234375 C 3.578125 -0.171875 3.21875 -0.046875 2.859375 -0.046875 C 2.75 -0.046875 2.4375 -0.046875 2.4375 -0.421875 C 2.4375 -0.75 2.765625 -1.109375 3.15625 -1.109375 C 3.6875 -1.109375 3.703125 -0.625 3.703125 -0.234375 Z M 3.703125 -0.234375 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-5-0"> | |
| 78 | +<path d="M -5.765625 -2.359375 L -5.765625 -0.84375 L 0 -0.84375 L 0 -1.640625 L -2.125 -1.640625 L -2.125 -2.359375 C -2.125 -3.640625 -2.65625 -4.59375 -3.984375 -4.59375 C -5.203125 -4.59375 -5.765625 -3.75 -5.765625 -2.359375 Z M -2.75 -2.328125 L -2.75 -1.640625 L -5.15625 -1.640625 L -5.15625 -2.34375 C -5.15625 -3.203125 -4.84375 -3.75 -3.984375 -3.75 C -3 -3.75 -2.75 -3.1875 -2.75 -2.328125 Z M -2.75 -2.328125 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-5-1"> | |
| 81 | +<path d="M -4.515625 -2.6875 C -4.515625 -2.15625 -4.171875 -1.734375 -3.515625 -1.5 L -4.40625 -1.4375 L -4.40625 -0.765625 L 0 -0.765625 L 0 -1.546875 L -2.515625 -1.546875 C -3.359375 -1.71875 -3.765625 -2.046875 -3.765625 -2.59375 C -3.765625 -2.75 -3.75 -2.84375 -3.703125 -2.984375 L -4.46875 -3.125 C -4.5 -2.984375 -4.515625 -2.828125 -4.515625 -2.6875 Z M -4.515625 -2.6875 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-5-2"> | |
| 84 | +<path d="M -6.53125 -1.140625 C -6.53125 -0.828125 -6.3125 -0.609375 -6 -0.609375 C -5.71875 -0.609375 -5.484375 -0.828125 -5.484375 -1.140625 C -5.484375 -1.46875 -5.71875 -1.6875 -6 -1.6875 C -6.3125 -1.6875 -6.53125 -1.46875 -6.53125 -1.140625 Z M -4.40625 -1.546875 L -4.40625 -0.765625 L 0 -0.765625 L 0 -1.546875 Z M -4.40625 -1.546875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-5-3"> | |
| 87 | +<path d="M -2.359375 -2.484375 L -4.40625 -3.84375 L -4.40625 -2.96875 L -2.796875 -2.046875 L -4.40625 -1.125 L -4.40625 -0.21875 L -2.328125 -1.578125 L 0 -0.046875 L 0 -0.90625 L -1.875 -2.015625 L 0 -3.09375 L 0 -4.015625 Z M -2.359375 -2.484375 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-5-4"> | |
| 90 | +<path d="M -7.078125 -1.890625 C -5.90625 -1.078125 -4.921875 -0.328125 -2.9375 -0.328125 C -0.953125 -0.328125 0.046875 -1.078125 1.21875 -1.890625 L 0.875 -2.375 C -0.234375 -1.625 -1.140625 -1.140625 -2.9375 -1.140625 C -4.734375 -1.140625 -5.625 -1.625 -6.734375 -2.375 Z M -7.078125 -1.890625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-5-5"> | |
| 93 | +<path d="M -7.078125 -0.828125 L -6.734375 -0.328125 C -5.625 -1.09375 -4.734375 -1.578125 -2.9375 -1.578125 C -1.140625 -1.578125 -0.234375 -1.09375 0.875 -0.328125 L 1.21875 -0.828125 C 0.046875 -1.640625 -0.953125 -2.375 -2.9375 -2.375 C -4.921875 -2.375 -5.90625 -1.640625 -7.078125 -0.828125 Z M -7.078125 -0.828125 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-6-0"> | |
| 96 | +<path d="M -4.734375 -6.859375 C -5.4375 -6.859375 -6.078125 -6.21875 -6.078125 -5.0625 L -6.078125 -2.125 C -6.078125 -1.953125 -6.078125 -1.859375 -5.921875 -1.859375 C -5.8125 -1.859375 -5.8125 -1.9375 -5.8125 -2.125 C -5.8125 -2.15625 -5.8125 -2.3125 -5.796875 -2.453125 C -5.765625 -2.609375 -5.75 -2.671875 -5.65625 -2.671875 C -5.609375 -2.671875 -5.578125 -2.65625 -5.484375 -2.640625 L -0.671875 -1.4375 C -0.359375 -1.359375 -0.28125 -1.34375 -0.28125 -0.671875 C -0.28125 -0.5 -0.28125 -0.40625 -0.109375 -0.40625 C -0.015625 -0.40625 0 -0.46875 0 -0.53125 L -0.015625 -1.09375 L -0.03125 -1.671875 L -0.015625 -2.234375 L 0 -2.8125 C 0 -2.875 0 -3 -0.15625 -3 C -0.28125 -3 -0.28125 -2.90625 -0.28125 -2.71875 C -0.28125 -2.6875 -0.28125 -2.515625 -0.296875 -2.375 C -0.328125 -2.1875 -0.359375 -2.171875 -0.4375 -2.171875 C -0.46875 -2.171875 -0.484375 -2.171875 -0.640625 -2.21875 L -2.796875 -2.75 L -2.796875 -4.234375 C -2.796875 -5.6875 -3.78125 -6.859375 -4.734375 -6.859375 Z M -4.9375 -6.015625 C -4.75 -6.015625 -3.921875 -5.90625 -3.484375 -5.453125 C -3.3125 -5.25 -3.046875 -4.84375 -3.046875 -4.078125 L -3.046875 -2.78125 L -5.453125 -3.390625 C -5.78125 -3.46875 -5.8125 -3.484375 -5.8125 -3.859375 L -5.8125 -4.765625 C -5.8125 -5.453125 -5.59375 -6.015625 -4.9375 -6.015625 Z M -4.9375 -6.015625 "/> | |
| 97 | +</g> | |
| 98 | +</g> | |
| 99 | +</defs> | |
| 100 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000331123 -0.00169567 L 259.321672 -0.00169567 " transform="matrix(0.993968, 0, 0, -0.993968, 22.36361, 132.853783)"/> | |
| 101 | +<path fill-rule="nonzero" fill="rgb(65.705872%, 66.999817%, 69.155884%)" fill-opacity="1" d="M 282.101562 132.855469 L 278.929688 131.269531 L 280.121094 132.855469 L 278.929688 134.4375 "/> | |
| 102 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000331123 -0.00169567 L -0.000331123 126.090907 " transform="matrix(0.993968, 0, 0, -0.993968, 22.36361, 132.853783)"/> | |
| 103 | +<path fill-rule="nonzero" fill="rgb(65.705872%, 66.999817%, 69.155884%)" fill-opacity="1" d="M 22.363281 5.542969 L 20.777344 8.710938 L 22.363281 7.523438 L 23.949219 8.710938 "/> | |
| 104 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26.129939 102.467948 L 33.754051 98.730561 L 41.374234 94.993174 L 48.994416 91.259717 L 56.618529 87.52233 L 64.238711 83.788872 L 71.862824 80.051485 L 79.483006 76.314098 L 87.103189 72.580641 L 94.727301 68.843254 L 102.347484 65.109797 L 109.967667 61.37241 L 117.591779 57.638953 L 132.832144 50.164178 L 140.456257 46.430721 L 148.076439 42.693334 L 155.696622 38.959877 L 163.320734 35.22249 L 170.940917 31.489033 L 178.565029 27.751646 L 186.185212 24.014259 L 193.805394 20.280802 L 201.429507 16.543414 L 209.049689 12.809957 " transform="matrix(0.993968, 0, 0, -0.993968, 22.36361, 132.853783)"/> | |
| 105 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 106 | +<use xlink:href="#glyph-0-0" x="236.816215" y="116.397647"/> | |
| 107 | +</g> | |
| 108 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 109 | +<use xlink:href="#glyph-1-0" x="245.015459" y="117.882635"/> | |
| 110 | +</g> | |
| 111 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 65.327309 115.275671 L 72.951421 111.538284 L 80.571604 107.804827 L 88.191786 104.06744 L 95.815899 100.330053 L 103.436082 96.596595 L 111.056264 92.859208 L 118.680377 89.125751 L 133.920742 81.650977 L 141.544854 77.91752 L 149.165037 74.180133 L 156.789149 70.446676 L 164.409332 66.709289 L 172.029514 62.975831 L 179.653627 59.238444 L 187.273809 55.501057 L 194.893992 51.7676 L 202.518104 48.030213 L 210.138287 44.296756 L 217.758469 40.559369 L 225.382582 36.825912 L 233.002764 33.088524 L 240.626877 29.351137 L 248.247059 25.61768 " transform="matrix(0.993968, 0, 0, -0.993968, 22.36361, 132.853783)"/> | |
| 112 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 113 | +<use xlink:href="#glyph-0-0" x="270.582307" y="107.485728"/> | |
| 114 | +</g> | |
| 115 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 116 | +<use xlink:href="#glyph-1-1" x="278.780557" y="108.971711"/> | |
| 117 | +</g> | |
| 118 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(69.802856%, 16.471863%, 12.548828%)" stroke-opacity="1" stroke-miterlimit="10" d="M 26.129939 25.61768 L 34.842649 29.885611 L 43.551429 34.153542 L 52.264139 38.425403 L 60.972919 42.693334 L 69.681699 46.965195 L 78.394409 51.233126 L 87.103189 55.501057 L 95.815899 59.772918 L 104.524679 64.040849 L 113.237389 68.30878 L 121.946169 72.580641 L 130.654949 76.848572 L 139.367659 81.120433 L 148.076439 85.388364 L 156.789149 89.656295 L 165.497929 93.928156 L 174.206709 98.196087 L 182.919419 102.467948 L 191.628199 106.735879 L 200.340909 111.00381 L 209.049689 115.275671 L 217.762399 119.543602 L 226.471179 123.811533 L 235.179959 128.083394 " transform="matrix(0.993968, 0, 0, -0.993968, 22.36361, 132.853783)"/> | |
| 119 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 120 | +<use xlink:href="#glyph-0-1" x="260.001516" y="15.293194"/> | |
| 121 | +</g> | |
| 122 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 123 | +<use xlink:href="#glyph-0-2" x="111.204484" y="79.265978"/> | |
| 124 | +</g> | |
| 125 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 126 | +<use xlink:href="#glyph-1-0" x="118.514126" y="80.751961"/> | |
| 127 | +</g> | |
| 128 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 129 | +<use xlink:href="#glyph-0-2" x="162.024088" y="48.499682"/> | |
| 130 | +</g> | |
| 131 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 132 | +<use xlink:href="#glyph-1-1" x="169.334723" y="49.98467"/> | |
| 133 | +</g> | |
| 134 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 156.789149 44.8273 L 194.787883 44.8273 " transform="matrix(0.993968, 0, 0, -0.993968, 22.36361, 132.853783)"/> | |
| 135 | +<path fill="none" stroke-width="1.19553" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M -3.027729 3.830056 C -2.473606 1.531032 -1.24353 0.446365 -0.001664 -0.00165027 C -1.24353 -0.445735 -2.473606 -1.530403 -3.027729 -3.829426 " transform="matrix(0.993968, 0, 0, -0.993968, 216.571966, 88.295235)"/> | |
| 136 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 137 | +<use xlink:href="#glyph-2-0" x="149.955326" y="84.100639"/> | |
| 138 | +<use xlink:href="#glyph-2-1" x="156.285047" y="84.100639"/> | |
| 139 | +<use xlink:href="#glyph-2-2" x="161.302281" y="84.100639"/> | |
| 140 | +<use xlink:href="#glyph-2-3" x="166.654618" y="84.100639"/> | |
| 141 | +</g> | |
| 142 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 143 | +<use xlink:href="#glyph-2-3" x="170.908562" y="84.100639"/> | |
| 144 | +<use xlink:href="#glyph-2-4" x="175.255591" y="84.100639"/> | |
| 145 | +</g> | |
| 146 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 147 | +<use xlink:href="#glyph-2-5" x="182.786097" y="84.100639"/> | |
| 148 | +<use xlink:href="#glyph-2-4" x="188.27806" y="84.100639"/> | |
| 149 | +</g> | |
| 150 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 151 | +<use xlink:href="#glyph-2-6" x="195.808566" y="84.100639"/> | |
| 152 | +</g> | |
| 153 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 154 | +<use xlink:href="#glyph-2-1" x="198.498697" y="84.100639"/> | |
| 155 | +</g> | |
| 156 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 157 | +<use xlink:href="#glyph-2-5" x="205.98266" y="84.100639"/> | |
| 158 | +<use xlink:href="#glyph-2-4" x="211.474624" y="84.100639"/> | |
| 159 | +<use xlink:href="#glyph-2-7" x="216.5384" y="84.100639"/> | |
| 160 | +<use xlink:href="#glyph-2-1" x="224.45055" y="84.100639"/> | |
| 161 | +<use xlink:href="#glyph-2-8" x="229.467785" y="84.100639"/> | |
| 162 | +<use xlink:href="#glyph-2-5" x="234.857355" y="84.100639"/> | |
| 163 | +<use xlink:href="#glyph-2-4" x="240.349319" y="84.100639"/> | |
| 164 | +</g> | |
| 165 | +<path fill-rule="nonzero" fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(37.644958%, 39.99939%, 43.920898%)" stroke-opacity="1" stroke-miterlimit="10" d="M 107.515375 64.040849 C 107.515375 65.69143 106.17526 67.031545 104.524679 67.031545 C 102.874098 67.031545 101.537913 65.69143 101.537913 64.040849 C 101.537913 62.390268 102.874098 61.054083 104.524679 61.054083 C 106.17526 61.054083 107.515375 62.390268 107.515375 64.040849 Z M 107.515375 64.040849 " transform="matrix(0.993968, 0, 0, -0.993968, 22.36361, 132.853783)"/> | |
| 166 | +<path fill-rule="nonzero" fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 140.17723 80.051485 C 140.17723 81.702066 138.841045 83.042181 137.190464 83.042181 C 135.539883 83.042181 134.199768 81.702066 134.199768 80.051485 C 134.199768 78.400904 135.539883 77.06472 137.190464 77.06472 C 138.841045 77.06472 140.17723 78.400904 140.17723 80.051485 Z M 140.17723 80.051485 " transform="matrix(0.993968, 0, 0, -0.993968, 22.36361, 132.853783)"/> | |
| 167 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 168 | +<use xlink:href="#glyph-3-0" x="128.411067" y="145.325102"/> | |
| 169 | +<use xlink:href="#glyph-3-1" x="134.199961" y="145.325102"/> | |
| 170 | +<use xlink:href="#glyph-3-2" x="139.017059" y="145.325102"/> | |
| 171 | +<use xlink:href="#glyph-3-3" x="143.532565" y="145.325102"/> | |
| 172 | +<use xlink:href="#glyph-3-4" x="148.383172" y="145.325102"/> | |
| 173 | +<use xlink:href="#glyph-3-5" x="151.407472" y="145.325102"/> | |
| 174 | +<use xlink:href="#glyph-3-4" x="153.719679" y="145.325102"/> | |
| 175 | +</g> | |
| 176 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 177 | +<use xlink:href="#glyph-3-6" x="156.618315" y="145.325102"/> | |
| 178 | +</g> | |
| 179 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 180 | +<use xlink:href="#glyph-3-7" x="163.395762" y="145.325102"/> | |
| 181 | +</g> | |
| 182 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 183 | +<use xlink:href="#glyph-4-0" x="166.110092" y="145.325102"/> | |
| 184 | +</g> | |
| 185 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 186 | +<use xlink:href="#glyph-3-8" x="173.334415" y="145.325102"/> | |
| 187 | +</g> | |
| 188 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 189 | +<use xlink:href="#glyph-5-0" x="15.714957" y="83.725913"/> | |
| 190 | +</g> | |
| 191 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 192 | +<use xlink:href="#glyph-5-1" x="15.714957" y="79.026102"/> | |
| 193 | +<use xlink:href="#glyph-5-2" x="15.714957" y="75.817496"/> | |
| 194 | +<use xlink:href="#glyph-5-3" x="15.714957" y="73.505289"/> | |
| 195 | +</g> | |
| 196 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 197 | +<use xlink:href="#glyph-5-4" x="15.714957" y="67.222118"/> | |
| 198 | +</g> | |
| 199 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 200 | +<use xlink:href="#glyph-6-0" x="15.714957" y="64.507788"/> | |
| 201 | +</g> | |
| 202 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 203 | +<use xlink:href="#glyph-5-5" x="15.714957" y="57.386137"/> | |
| 204 | +</g> | |
| 205 | +</svg> | |
added
dist/assets/fig/d3ce84425d311d24.svg
+359 −0
@@ -0,0 +1,359 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="312.379pt" height="127.378pt" viewBox="0 0 312.379 127.378"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 4.796875 -5.78125 L 4 -5.78125 L 4 -1.90625 C 4 -1.015625 3.59375 -0.578125 2.765625 -0.578125 C 1.953125 -0.578125 1.546875 -1.015625 1.546875 -1.90625 L 1.546875 -5.78125 L 0.75 -5.78125 L 0.75 -1.859375 C 0.75 -0.703125 1.453125 0.09375 2.765625 0.09375 C 4.0625 0.09375 4.796875 -0.703125 4.796875 -1.859375 Z M 4.796875 -5.78125 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.6875 1.515625 -3.90625 2.015625 -3.90625 C 2.4375 -3.90625 2.78125 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.34375 2.625 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 4.140625 -4.921875 C 3.609375 -4.6875 3.21875 -4.5 2.109375 -4.515625 C 1.140625 -4.515625 0.40625 -3.890625 0.40625 -2.984375 C 0.40625 -2.40625 0.640625 -2.015625 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.265625 0.671875 -0.96875 C 0.671875 -0.53125 1.03125 -0.140625 1.8125 -0.140625 L 2.515625 -0.140625 C 3.0625 -0.140625 3.390625 0.078125 3.390625 0.5 C 3.390625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.125 1.1875 0.90625 0.953125 0.90625 0.4375 L 0.203125 0.4375 C 0.203125 1.34375 0.65625 1.78125 2.109375 1.78125 C 3.46875 1.78125 4.171875 1.296875 4.171875 0.4375 C 4.171875 -0.265625 3.578125 -0.78125 2.671875 -0.78125 L 1.96875 -0.78125 C 1.515625 -0.78125 1.390625 -0.9375 1.390625 -1.140625 C 1.390625 -1.296875 1.484375 -1.453125 1.609375 -1.546875 C 1.78125 -1.5 1.96875 -1.46875 2.171875 -1.46875 C 3.21875 -1.46875 3.84375 -2.09375 3.84375 -2.96875 C 3.84375 -3.484375 3.59375 -3.84375 3.078125 -4.09375 C 3.578125 -4.09375 4 -4.109375 4.359375 -4.21875 Z M 2.109375 -3.96875 C 2.75 -3.96875 3.0625 -3.640625 3.0625 -2.984375 C 3.0625 -2.34375 2.734375 -1.984375 2.125 -1.984375 C 1.53125 -1.984375 1.203125 -2.390625 1.203125 -2.984375 C 1.203125 -3.5625 1.515625 -3.96875 2.109375 -3.96875 Z M 2.109375 -3.96875 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.859375 -4.515625 C 2.28125 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.09375 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.25 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.203125 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 1.15625 -6.546875 C 0.828125 -6.546875 0.609375 -6.3125 0.609375 -6.015625 C 0.609375 -5.71875 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.6875 -5.71875 1.6875 -6.015625 C 1.6875 -6.3125 1.484375 -6.546875 1.15625 -6.546875 Z M 1.546875 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.421875 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.578125 -3.828125 L 2.671875 -4.421875 L 1.625 -4.421875 L 1.625 -5.515625 L 0.84375 -5.421875 L 0.84375 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.421875 -0.84375 4.421875 -2.21875 C 4.421875 -3.609375 3.71875 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.90625 C 3.1875 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.453125 -3.90625 Z M 2.453125 -3.90625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 4.046875 -4.421875 L 3.28125 -4.421875 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.5 -0.734375 1.5 -1.328125 L 1.5 -4.421875 L 0.71875 -4.421875 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 3 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.421875 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.421875 L 2.984375 -4.421875 L 2.046875 -2.796875 L 1.125 -4.421875 L 0.21875 -4.421875 L 1.578125 -2.328125 L 0.046875 0 L 0.921875 0 L 2.015625 -1.875 L 3.09375 0 L 4.03125 0 Z M 2.484375 -2.359375 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.609375 3.984375 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.578125 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.609375 -3.359375 3.609375 -2.21875 C 3.609375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.765625 2.59375 -3.765625 C 2.765625 -3.765625 2.859375 -3.75 2.984375 -3.71875 L 3.125 -4.46875 C 3 -4.5 2.84375 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 2 -5.875 C 1.296875 -5.875 0.734375 -5.609375 0.25 -5.046875 L 0.78125 -4.640625 C 1.125 -5.0625 1.53125 -5.25 1.953125 -5.25 C 2.46875 -5.25 2.796875 -4.984375 2.796875 -4.515625 C 2.796875 -3.609375 1.3125 -3.765625 1.3125 -2.34375 L 1.3125 -1.9375 L 2.078125 -1.9375 L 2.078125 -2.3125 C 2.078125 -3.40625 3.59375 -3.234375 3.59375 -4.578125 C 3.59375 -5.25 3.046875 -5.875 2 -5.875 Z M 1.71875 -1.0625 C 1.390625 -1.0625 1.140625 -0.8125 1.140625 -0.484375 C 1.140625 -0.15625 1.390625 0.09375 1.71875 0.09375 C 2.0625 0.09375 2.3125 -0.15625 2.3125 -0.484375 C 2.3125 -0.8125 2.0625 -1.0625 1.71875 -1.0625 Z M 1.71875 -1.0625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 0.84375 0 L 1.640625 0 L 1.640625 -2.546875 L 3.53125 -2.546875 L 3.53125 -3.171875 L 1.640625 -3.171875 L 1.640625 -5.140625 L 3.8125 -5.140625 L 3.90625 -5.78125 L 0.84375 -5.78125 Z M 0.84375 0 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.75 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.4375 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.34375 -4.390625 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.21875 -4.203125 3.890625 -3.71875 C 3.71875 -4.234375 3.328125 -4.515625 2.78125 -4.515625 C 2.203125 -4.515625 1.796875 -4.21875 1.5 -3.78125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.578125 -3.921875 C 2.921875 -3.921875 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.015625 -3.921875 C 5.359375 -3.921875 5.640625 -3.71875 5.640625 -3.0625 L 5.640625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.9375 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 2.859375 -4.515625 C 2.296875 -4.515625 1.859375 -4.25 1.546875 -3.8125 L 1.546875 -6.28125 L 0.765625 -6.1875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.1875 -3.921875 2.65625 -3.921875 C 3.078125 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4 3.65625 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 4.046875 -4.421875 L 3.25 -4.421875 L 2.09375 -0.5625 L 0.90625 -4.421875 L 0.078125 -4.421875 L 1.5625 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.1875 L 0.515625 1.78125 C 1.734375 1.65625 2.25 0.96875 2.5625 0.03125 Z M 4.046875 -4.421875 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 3.34375 -6.078125 L 3 -6.71875 L 1.328125 -5.765625 L 1.5625 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-0"> | |
| 69 | +<path d="M 3.65625 0 L 5.203125 0 L 3.71875 -2.46875 C 4.484375 -2.8125 4.84375 -3.28125 4.84375 -4.046875 C 4.84375 -5.25 4.03125 -5.8125 2.453125 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 1.921875 0 L 1.921875 -2.21875 L 2.453125 -2.21875 Z M 1.921875 -4.84375 L 2.421875 -4.84375 C 3.09375 -4.84375 3.421875 -4.609375 3.421875 -4.046875 C 3.421875 -3.4375 3.109375 -3.171875 2.5 -3.171875 L 1.921875 -3.171875 Z M 1.921875 -4.84375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-1"> | |
| 72 | +<path d="M 4.046875 -1.296875 L 4.046875 -3.015625 C 4.046875 -4.046875 3.484375 -4.59375 2.203125 -4.59375 C 1.6875 -4.59375 1.078125 -4.484375 0.515625 -4.265625 L 0.828125 -3.390625 C 1.265625 -3.546875 1.703125 -3.640625 1.984375 -3.640625 C 2.53125 -3.640625 2.75 -3.46875 2.75 -2.9375 L 2.75 -2.75 L 2.296875 -2.75 C 0.953125 -2.75 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.1875 0.140625 2.671875 -0.03125 3 -0.515625 C 3.203125 -0.078125 3.546875 0.078125 4.0625 0.125 L 4.34375 -0.75 C 4.140625 -0.828125 4.046875 -0.953125 4.046875 -1.296875 Z M 2.03125 -0.8125 C 1.71875 -0.8125 1.53125 -1.015625 1.53125 -1.375 C 1.53125 -1.8125 1.8125 -2.015625 2.421875 -2.015625 L 2.75 -2.015625 L 2.75 -1.21875 C 2.578125 -0.96875 2.34375 -0.8125 2.03125 -0.8125 Z M 2.03125 -0.8125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-2"> | |
| 75 | +<path d="M 3.03125 -4.59375 C 2.578125 -4.59375 2.109375 -4.421875 1.75 -3.953125 L 1.671875 -4.453125 L 0.515625 -4.453125 L 0.515625 1.859375 L 1.84375 1.71875 L 1.84375 -0.3125 C 2.109375 -0.015625 2.484375 0.140625 2.921875 0.140625 C 4.015625 0.140625 4.6875 -0.859375 4.6875 -2.234375 C 4.6875 -3.6875 4.171875 -4.59375 3.03125 -4.59375 Z M 2.515625 -0.828125 C 2.234375 -0.828125 2.015625 -0.953125 1.84375 -1.21875 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.59375 -3.625 C 3.046875 -3.625 3.3125 -3.328125 3.3125 -2.21875 C 3.3125 -1.21875 3 -0.828125 2.515625 -0.828125 Z M 2.515625 -0.828125 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-3"> | |
| 78 | +<path d="M 2.453125 -4.59375 C 1.09375 -4.59375 0.265625 -3.65625 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.625 -0.796875 4.625 -2.21875 C 4.625 -3.71875 3.8125 -4.59375 2.453125 -4.59375 Z M 2.453125 -3.625 C 2.984375 -3.625 3.25 -3.21875 3.25 -2.21875 C 3.25 -1.265625 2.984375 -0.828125 2.453125 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.234375 C 1.640625 -3.203125 1.90625 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-4"> | |
| 81 | +<path d="M 2.921875 -4.578125 C 2.421875 -4.578125 1.984375 -4.21875 1.78125 -3.59375 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -2.234375 C 1.984375 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.015625 -3.265625 3.15625 -3.234375 L 3.375 -4.515625 C 3.21875 -4.5625 3.09375 -4.578125 2.921875 -4.578125 Z M 2.921875 -4.578125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-5"> | |
| 84 | +<path d="M 2.875 -1.046875 C 2.6875 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.109375 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.453125 L 1.96875 -4.453125 L 1.96875 -5.578125 L 0.640625 -5.421875 L 0.640625 -4.453125 L 0.015625 -4.453125 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.3125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-6"> | |
| 87 | +<path d="M 2.453125 -4.59375 C 1.109375 -4.59375 0.265625 -3.609375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.09375 0.140625 3.5625 -0.0625 3.984375 -0.390625 L 3.390625 -1.203125 C 3.078125 -1 2.859375 -0.90625 2.546875 -0.90625 C 2.015625 -0.90625 1.65625 -1.203125 1.65625 -2.203125 C 1.65625 -3.203125 1.984375 -3.578125 2.5625 -3.578125 C 2.859375 -3.578125 3.125 -3.484375 3.40625 -3.265625 L 3.984375 -4.046875 C 3.546875 -4.40625 3.078125 -4.59375 2.453125 -4.59375 Z M 2.453125 -4.59375 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-7"> | |
| 90 | +<path d="M 5.4375 -4.59375 C 4.859375 -4.59375 4.453125 -4.359375 4.109375 -3.890625 C 3.921875 -4.34375 3.546875 -4.59375 3.046875 -4.59375 C 2.515625 -4.59375 2.09375 -4.375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.03125 -3.421875 2.234375 -3.625 2.515625 -3.625 C 2.71875 -3.625 2.890625 -3.5 2.890625 -3.03125 L 2.890625 0 L 4.21875 0 L 4.21875 -3.046875 C 4.40625 -3.421875 4.609375 -3.625 4.90625 -3.625 C 5.09375 -3.625 5.265625 -3.5 5.265625 -3.03125 L 5.265625 0 L 6.59375 0 L 6.59375 -3.25 C 6.59375 -4.109375 6.125 -4.59375 5.4375 -4.59375 Z M 5.4375 -4.59375 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-8"> | |
| 93 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.296875 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.859375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.375 L 0.453125 -6.21875 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-9"> | |
| 96 | +<path d="M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-10"> | |
| 99 | +<path d="M 3.03125 -4.59375 C 2.546875 -4.59375 2.109375 -4.375 1.84375 -4 L 1.84375 -6.375 L 0.515625 -6.21875 L 0.515625 0 L 1.6875 0 L 1.75 -0.421875 C 2.015625 -0.078125 2.421875 0.140625 2.921875 0.140625 C 4.03125 0.140625 4.6875 -0.84375 4.6875 -2.21875 C 4.6875 -3.71875 4.109375 -4.59375 3.03125 -4.59375 Z M 2.53125 -0.828125 C 2.25 -0.828125 2 -0.984375 1.84375 -1.25 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.59375 -3.625 C 3.015625 -3.625 3.3125 -3.359375 3.3125 -2.21875 C 3.3125 -1.1875 3 -0.828125 2.53125 -0.828125 Z M 2.53125 -0.828125 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-11"> | |
| 102 | +<path d="M 3.5 -6.015625 L 2.984375 -7 L 1.15625 -5.90625 L 1.515625 -5.21875 Z M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.671875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-12"> | |
| 105 | +<path d="M 4.3125 -5.171875 C 3.78125 -4.859375 3.203125 -4.578125 2.21875 -4.59375 C 1.046875 -4.59375 0.265625 -3.984375 0.265625 -2.96875 C 0.265625 -2.390625 0.484375 -2 1.0625 -1.6875 C 0.734375 -1.5 0.53125 -1.171875 0.53125 -0.84375 C 0.53125 -0.359375 0.921875 0.046875 1.890625 0.046875 L 2.546875 0.046875 C 2.984375 0.046875 3.1875 0.21875 3.1875 0.484375 C 3.1875 0.765625 3 0.984375 2.21875 0.984375 C 1.40625 0.984375 1.234375 0.8125 1.234375 0.421875 L 0.046875 0.421875 C 0.046875 1.3125 0.5 1.859375 2.1875 1.859375 C 3.703125 1.859375 4.515625 1.296875 4.515625 0.390625 C 4.515625 -0.359375 3.84375 -0.90625 2.8125 -0.90625 L 2.140625 -0.90625 C 1.71875 -0.90625 1.65625 -1.046875 1.65625 -1.171875 C 1.65625 -1.28125 1.703125 -1.375 1.796875 -1.421875 C 1.953125 -1.390625 2.125 -1.375 2.3125 -1.375 C 3.46875 -1.375 4.171875 -2 4.171875 -2.875 C 4.171875 -3.453125 3.90625 -3.78125 3.34375 -4.015625 C 3.90625 -4.015625 4.3125 -4.0625 4.625 -4.203125 Z M 2.25 -3.71875 C 2.6875 -3.71875 2.921875 -3.5 2.921875 -3 C 2.921875 -2.484375 2.6875 -2.234375 2.25 -2.234375 C 1.84375 -2.234375 1.578125 -2.5 1.578125 -2.984375 C 1.578125 -3.453125 1.84375 -3.71875 2.25 -3.71875 Z M 2.25 -3.71875 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-13"> | |
| 108 | +<path d="M 2.09375 -4.59375 C 0.96875 -4.59375 0.265625 -4 0.265625 -3.234375 C 0.265625 -2.546875 0.703125 -2.09375 1.578125 -1.84375 C 2.390625 -1.625 2.53125 -1.53125 2.53125 -1.21875 C 2.53125 -0.953125 2.28125 -0.8125 1.875 -0.8125 C 1.4375 -0.8125 1.03125 -0.984375 0.703125 -1.234375 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.90625 0.140625 C 3.015625 0.140625 3.890625 -0.40625 3.890625 -1.328125 C 3.890625 -2.125 3.390625 -2.484375 2.515625 -2.75 C 1.71875 -2.984375 1.609375 -3.078125 1.609375 -3.3125 C 1.609375 -3.515625 1.78125 -3.65625 2.140625 -3.65625 C 2.53125 -3.65625 2.890625 -3.53125 3.234375 -3.3125 L 3.71875 -4.046875 C 3.3125 -4.390625 2.734375 -4.59375 2.09375 -4.59375 Z M 2.09375 -4.59375 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-14"> | |
| 111 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.046875 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.046875 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.453125 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-15"> | |
| 114 | +<path d="M 3.125 -4.59375 C 2.5625 -4.59375 2.125 -4.359375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.25 C 4.359375 -4.109375 3.890625 -4.59375 3.125 -4.59375 Z M 3.125 -4.59375 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-2-0"> | |
| 117 | +<path d="M 2.625 -4.578125 C 0.953125 -4.578125 0.390625 -2.875 0.390625 -1.734375 C 0.390625 -0.5625 1.03125 0.078125 2.015625 0.078125 C 3.671875 0.078125 4.234375 -1.5625 4.234375 -2.75 C 4.234375 -3.9375 3.609375 -4.578125 2.625 -4.578125 Z M 2.59375 -4.0625 C 3.21875 -4.0625 3.59375 -3.703125 3.59375 -2.796875 C 3.59375 -1.875 3.265625 -0.4375 2.03125 -0.4375 C 1.4375 -0.4375 1.03125 -0.78125 1.03125 -1.71875 C 1.03125 -2.625 1.375 -4.0625 2.59375 -4.0625 Z M 2.59375 -4.0625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-2-1"> | |
| 120 | +<path d="M 1.3125 0.078125 C 1.78125 0.078125 2.125 -0.203125 2.4375 -0.640625 L 2.390625 0 L 2.90625 0 L 3.390625 -3.4375 L 2.796875 -3.4375 L 2.484375 -1.203125 C 2.21875 -0.796875 1.875 -0.390625 1.4375 -0.390625 C 1.140625 -0.390625 1.015625 -0.5625 1.078125 -1.03125 L 1.421875 -3.4375 L 0.828125 -3.4375 L 0.484375 -1 C 0.375 -0.328125 0.703125 0.078125 1.3125 0.078125 Z M 1.3125 0.078125 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-2-2"> | |
| 123 | +<path d="M 1.296875 -4.28125 C 1.546875 -4.28125 1.75 -4.46875 1.75 -4.71875 C 1.75 -4.9375 1.59375 -5.09375 1.359375 -5.09375 C 1.109375 -5.09375 0.90625 -4.90625 0.90625 -4.65625 C 0.90625 -4.4375 1.0625 -4.28125 1.296875 -4.28125 Z M 1.453125 -3.4375 L 0.859375 -3.4375 L 0.375 0 L 0.96875 0 Z M 1.453125 -3.4375 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-2-3"> | |
| 126 | +<path d="M 4.171875 -4.5 L 3.578125 -4.5 L 3.234375 -2.0625 C 3.171875 -1.515625 3.140625 -1.125 3.140625 -0.53125 L 1.84375 -4.5 L 1.03125 -4.5 L 0.40625 0 L 0.984375 0 L 1.28125 -2.046875 C 1.390625 -2.875 1.4375 -3.421875 1.4375 -3.96875 L 2.734375 0 L 3.53125 0 Z M 4.171875 -4.5 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-2-4"> | |
| 129 | +<path d="M 1.65625 0.078125 C 3.015625 0.078125 3.4375 -1.265625 3.4375 -2.09375 C 3.4375 -2.96875 2.984375 -3.515625 2.125 -3.515625 C 0.78125 -3.515625 0.34375 -2.1875 0.34375 -1.34375 C 0.34375 -0.46875 0.796875 0.078125 1.65625 0.078125 Z M 1.671875 -0.40625 C 1.21875 -0.40625 0.96875 -0.671875 0.96875 -1.28125 C 0.96875 -1.9375 1.203125 -3.03125 2.109375 -3.03125 C 2.5625 -3.03125 2.8125 -2.765625 2.8125 -2.15625 C 2.8125 -1.5 2.578125 -0.40625 1.671875 -0.40625 Z M 1.671875 -0.40625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-2-5"> | |
| 132 | +<path d="M 2.515625 -3.515625 C 2.015625 -3.515625 1.625 -3.21875 1.3125 -2.765625 L 1.359375 -3.4375 L 0.859375 -3.4375 L 0.375 0 L 0.96875 0 L 1.25 -2.0625 C 1.53125 -2.546875 1.90625 -3.015625 2.34375 -3.015625 C 2.609375 -3.015625 2.78125 -2.890625 2.703125 -2.40625 L 2.375 0 L 2.96875 0 L 3.3125 -2.421875 C 3.40625 -3.109375 3.078125 -3.515625 2.515625 -3.515625 Z M 2.515625 -3.515625 "/> | |
| 133 | +</g> | |
| 134 | +</g> | |
| 135 | +<clipPath id="clip-0"> | |
| 136 | +<path clip-rule="nonzero" d="M 0.449219 0 L 153 0 L 153 37 L 0.449219 37 Z M 0.449219 0 "/> | |
| 137 | +</clipPath> | |
| 138 | +<clipPath id="clip-1"> | |
| 139 | +<path clip-rule="nonzero" d="M 209 0 L 311.3125 0 L 311.3125 37 L 209 37 Z M 209 0 "/> | |
| 140 | +</clipPath> | |
| 141 | +<clipPath id="clip-2"> | |
| 142 | +<path clip-rule="nonzero" d="M 0.449219 45 L 153 45 L 153 82 L 0.449219 82 Z M 0.449219 45 "/> | |
| 143 | +</clipPath> | |
| 144 | +<clipPath id="clip-3"> | |
| 145 | +<path clip-rule="nonzero" d="M 209 45 L 311.3125 45 L 311.3125 82 L 209 82 Z M 209 45 "/> | |
| 146 | +</clipPath> | |
| 147 | +<clipPath id="clip-4"> | |
| 148 | +<path clip-rule="nonzero" d="M 25 90 L 128 90 L 128 126.757812 L 25 126.757812 Z M 25 90 "/> | |
| 149 | +</clipPath> | |
| 150 | +</defs> | |
| 151 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 143.253906 5.15625 L 9.570312 5.15625 C 7.378906 5.15625 5.605469 6.929688 5.605469 9.121094 L 5.605469 26.578125 C 5.605469 28.765625 7.378906 30.542969 9.570312 30.542969 L 143.253906 30.542969 C 145.445312 30.542969 147.21875 28.765625 147.21875 26.578125 L 147.21875 9.121094 C 147.21875 6.929688 145.445312 5.15625 143.253906 5.15625 Z M 143.253906 5.15625 "/> | |
| 152 | +<g clip-path="url(#clip-0)"> | |
| 153 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 67.16824 12.754571 L -67.168144 12.754571 C -69.370251 12.754571 -71.152349 10.972474 -71.152349 8.770367 L -71.152349 -8.771909 C -71.152349 -10.970091 -69.370251 -12.756113 -67.168144 -12.756113 L 67.16824 -12.756113 C 69.370348 -12.756113 71.152445 -10.970091 71.152445 -8.771909 L 71.152445 8.770367 C 71.152445 10.972474 69.370348 12.754571 67.16824 12.754571 Z M 67.16824 12.754571 " transform="matrix(0.995141, 0, 0, -0.995141, 76.412062, 17.848842)"/> | |
| 154 | +</g> | |
| 155 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 156 | +<use xlink:href="#glyph-0-0" x="12.057312" y="20.256087"/> | |
| 157 | +</g> | |
| 158 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 159 | +<use xlink:href="#glyph-0-1" x="17.567863" y="20.256087"/> | |
| 160 | +<use xlink:href="#glyph-0-2" x="21.484799" y="20.256087"/> | |
| 161 | +<use xlink:href="#glyph-0-3" x="26.005631" y="20.256087"/> | |
| 162 | +<use xlink:href="#glyph-0-4" x="30.367101" y="20.256087"/> | |
| 163 | +</g> | |
| 164 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 165 | +<use xlink:href="#glyph-0-4" x="37.722889" y="20.256087"/> | |
| 166 | +<use xlink:href="#glyph-0-5" x="42.285658" y="20.256087"/> | |
| 167 | +</g> | |
| 168 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 169 | +<use xlink:href="#glyph-0-6" x="49.943394" y="20.256087"/> | |
| 170 | +<use xlink:href="#glyph-0-7" x="52.409302" y="20.256087"/> | |
| 171 | +<use xlink:href="#glyph-0-8" x="54.724236" y="20.256087"/> | |
| 172 | +<use xlink:href="#glyph-0-7" x="57.752103" y="20.256087"/> | |
| 173 | +<use xlink:href="#glyph-0-3" x="60.067038" y="20.256087"/> | |
| 174 | +<use xlink:href="#glyph-0-4" x="64.428508" y="20.256087"/> | |
| 175 | +</g> | |
| 176 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 177 | +<use xlink:href="#glyph-0-9" x="71.784296" y="20.256087"/> | |
| 178 | +<use xlink:href="#glyph-0-10" x="76.682563" y="20.256087"/> | |
| 179 | +</g> | |
| 180 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 181 | +<use xlink:href="#glyph-0-4" x="84.298361" y="20.256087"/> | |
| 182 | +</g> | |
| 183 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 184 | +<use xlink:href="#glyph-0-11" x="88.819193" y="20.256087"/> | |
| 185 | +<use xlink:href="#glyph-0-12" x="92.887103" y="20.256087"/> | |
| 186 | +<use xlink:href="#glyph-0-13" x="97.802145" y="20.256087"/> | |
| 187 | +</g> | |
| 188 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 189 | +<use xlink:href="#glyph-0-9" x="100.846787" y="20.256087"/> | |
| 190 | +<use xlink:href="#glyph-0-12" x="105.745053" y="20.256087"/> | |
| 191 | +<use xlink:href="#glyph-0-13" x="110.660095" y="20.256087"/> | |
| 192 | +<use xlink:href="#glyph-0-7" x="113.872486" y="20.256087"/> | |
| 193 | +<use xlink:href="#glyph-0-2" x="116.18742" y="20.256087"/> | |
| 194 | +<use xlink:href="#glyph-0-8" x="120.708252" y="20.256087"/> | |
| 195 | +<use xlink:href="#glyph-0-7" x="123.736119" y="20.256087"/> | |
| 196 | +<use xlink:href="#glyph-0-9" x="126.051054" y="20.256087"/> | |
| 197 | +<use xlink:href="#glyph-0-5" x="130.94932" y="20.256087"/> | |
| 198 | +</g> | |
| 199 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 200 | +<use xlink:href="#glyph-0-14" x="136.92118" y="20.256087"/> | |
| 201 | +</g> | |
| 202 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 300.210938 5.15625 L 221.265625 5.15625 C 217.980469 5.15625 215.316406 7.816406 215.316406 11.101562 L 215.316406 24.59375 C 215.316406 27.878906 217.980469 30.542969 221.265625 30.542969 L 300.210938 30.542969 C 303.496094 30.542969 306.15625 27.878906 306.15625 24.59375 L 306.15625 11.101562 C 306.15625 7.816406 303.496094 5.15625 300.210938 5.15625 Z M 300.210938 5.15625 "/> | |
| 203 | +<g clip-path="url(#clip-1)"> | |
| 204 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 224.891709 12.754571 L 145.560898 12.754571 C 142.2597 12.754571 139.582629 10.081425 139.582629 6.780227 L 139.582629 -6.777844 C 139.582629 -10.079042 142.2597 -12.756113 145.560898 -12.756113 L 224.891709 -12.756113 C 228.192907 -12.756113 230.866053 -10.079042 230.866053 -6.777844 L 230.866053 6.780227 C 230.866053 10.081425 228.192907 12.754571 224.891709 12.754571 Z M 224.891709 12.754571 " transform="matrix(0.995141, 0, 0, -0.995141, 76.412062, 17.848842)"/> | |
| 205 | +</g> | |
| 206 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 207 | +<use xlink:href="#glyph-1-0" x="228.212803" y="20.100845"/> | |
| 208 | +</g> | |
| 209 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 210 | +<use xlink:href="#glyph-1-1" x="233.320756" y="20.100845"/> | |
| 211 | +<use xlink:href="#glyph-1-2" x="237.9003" y="20.100845"/> | |
| 212 | +<use xlink:href="#glyph-1-2" x="242.857279" y="20.100845"/> | |
| 213 | +<use xlink:href="#glyph-1-3" x="247.814258" y="20.100845"/> | |
| 214 | +<use xlink:href="#glyph-1-4" x="252.712524" y="20.100845"/> | |
| 215 | +<use xlink:href="#glyph-1-5" x="256.067502" y="20.100845"/> | |
| 216 | +</g> | |
| 217 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 218 | +<use xlink:href="#glyph-1-6" x="262.098073" y="20.100845"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-1-3" x="265.989847" y="20.100845"/> | |
| 222 | +<use xlink:href="#glyph-1-7" x="270.888114" y="20.100845"/> | |
| 223 | +<use xlink:href="#glyph-1-2" x="277.941954" y="20.100845"/> | |
| 224 | +<use xlink:href="#glyph-1-8" x="282.898933" y="20.100845"/> | |
| 225 | +</g> | |
| 226 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 227 | +<use xlink:href="#glyph-1-9" x="285.373228" y="20.100845"/> | |
| 228 | +<use xlink:href="#glyph-1-5" x="290.019872" y="20.100845"/> | |
| 229 | +</g> | |
| 230 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 143.253906 50.6875 L 9.570312 50.6875 C 7.378906 50.6875 5.605469 52.460938 5.605469 54.652344 L 5.605469 72.109375 C 5.605469 74.296875 7.378906 76.074219 9.570312 76.074219 L 143.253906 76.074219 C 145.445312 76.074219 147.21875 74.296875 147.21875 72.109375 L 147.21875 54.652344 C 147.21875 52.460938 145.445312 50.6875 143.253906 50.6875 Z M 143.253906 50.6875 "/> | |
| 231 | +<g clip-path="url(#clip-2)"> | |
| 232 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 67.16824 -32.999012 L -67.168144 -32.999012 C -69.370251 -32.999012 -71.152349 -34.78111 -71.152349 -36.983217 L -71.152349 -54.525493 C -71.152349 -56.723674 -69.370251 -58.509697 -67.168144 -58.509697 L 67.16824 -58.509697 C 69.370348 -58.509697 71.152445 -56.723674 71.152445 -54.525493 L 71.152445 -36.983217 C 71.152445 -34.78111 69.370348 -32.999012 67.16824 -32.999012 Z M 67.16824 -32.999012 " transform="matrix(0.995141, 0, 0, -0.995141, 76.412062, 17.848842)"/> | |
| 233 | +</g> | |
| 234 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 235 | +<use xlink:href="#glyph-0-15" x="23.539245" y="65.786756"/> | |
| 236 | +</g> | |
| 237 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 238 | +<use xlink:href="#glyph-0-7" x="27.363919" y="65.786756"/> | |
| 239 | +<use xlink:href="#glyph-0-5" x="29.678853" y="65.786756"/> | |
| 240 | +<use xlink:href="#glyph-0-2" x="34.535183" y="65.786756"/> | |
| 241 | +<use xlink:href="#glyph-0-5" x="39.056015" y="65.786756"/> | |
| 242 | +<use xlink:href="#glyph-0-16" x="43.912345" y="65.786756"/> | |
| 243 | +</g> | |
| 244 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 245 | +<use xlink:href="#glyph-0-4" x="47.795731" y="65.786756"/> | |
| 246 | +<use xlink:href="#glyph-0-17" x="52.3585" y="65.786756"/> | |
| 247 | +<use xlink:href="#glyph-0-4" x="59.487827" y="65.786756"/> | |
| 248 | +<use xlink:href="#glyph-0-5" x="64.050596" y="65.786756"/> | |
| 249 | +<use xlink:href="#glyph-0-8" x="68.906925" y="65.786756"/> | |
| 250 | +</g> | |
| 251 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 252 | +<use xlink:href="#glyph-0-18" x="74.727811" y="65.786756"/> | |
| 253 | +</g> | |
| 254 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 255 | +<use xlink:href="#glyph-0-19" x="79.525429" y="65.786756"/> | |
| 256 | +<use xlink:href="#glyph-0-12" x="83.652051" y="65.786756"/> | |
| 257 | +<use xlink:href="#glyph-0-9" x="88.567092" y="65.786756"/> | |
| 258 | +<use xlink:href="#glyph-0-8" x="93.465359" y="65.786756"/> | |
| 259 | +<use xlink:href="#glyph-0-18" x="96.493226" y="65.786756"/> | |
| 260 | +<use xlink:href="#glyph-0-20" x="101.349556" y="65.786756"/> | |
| 261 | +<use xlink:href="#glyph-0-16" x="105.912325" y="65.786756"/> | |
| 262 | +</g> | |
| 263 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 264 | +<use xlink:href="#glyph-0-2" x="109.879586" y="65.786756"/> | |
| 265 | +<use xlink:href="#glyph-0-7" x="114.400418" y="65.786756"/> | |
| 266 | +<use xlink:href="#glyph-0-13" x="116.715352" y="65.786756"/> | |
| 267 | +</g> | |
| 268 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 269 | +<use xlink:href="#glyph-0-4" x="119.759994" y="65.786756"/> | |
| 270 | +</g> | |
| 271 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 272 | +<use xlink:href="#glyph-0-14" x="125.438293" y="65.786756"/> | |
| 273 | +</g> | |
| 274 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 300.210938 50.6875 L 221.265625 50.6875 C 217.980469 50.6875 215.316406 53.347656 215.316406 56.632812 L 215.316406 70.125 C 215.316406 73.410156 217.980469 76.074219 221.265625 76.074219 L 300.210938 76.074219 C 303.496094 76.074219 306.15625 73.410156 306.15625 70.125 L 306.15625 56.632812 C 306.15625 53.347656 303.496094 50.6875 300.210938 50.6875 Z M 300.210938 50.6875 "/> | |
| 275 | +<g clip-path="url(#clip-3)"> | |
| 276 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 224.891709 -32.999012 L 145.560898 -32.999012 C 142.2597 -32.999012 139.582629 -35.672158 139.582629 -38.973356 L 139.582629 -52.531428 C 139.582629 -55.832626 142.2597 -58.509697 145.560898 -58.509697 L 224.891709 -58.509697 C 228.192907 -58.509697 230.866053 -55.832626 230.866053 -52.531428 L 230.866053 -38.973356 C 230.866053 -35.672158 228.192907 -32.999012 224.891709 -32.999012 Z M 224.891709 -32.999012 " transform="matrix(0.995141, 0, 0, -0.995141, 76.412062, 17.848842)"/> | |
| 277 | +</g> | |
| 278 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 279 | +<use xlink:href="#glyph-1-0" x="230.510582" y="65.991755"/> | |
| 280 | +</g> | |
| 281 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 282 | +<use xlink:href="#glyph-1-1" x="235.618535" y="65.991755"/> | |
| 283 | +<use xlink:href="#glyph-1-2" x="240.198079" y="65.991755"/> | |
| 284 | +<use xlink:href="#glyph-1-2" x="245.155058" y="65.991755"/> | |
| 285 | +<use xlink:href="#glyph-1-3" x="250.112037" y="65.991755"/> | |
| 286 | +<use xlink:href="#glyph-1-4" x="255.010304" y="65.991755"/> | |
| 287 | +<use xlink:href="#glyph-1-5" x="258.365281" y="65.991755"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-1-1" x="264.395853" y="65.991755"/> | |
| 291 | +<use xlink:href="#glyph-1-10" x="268.975397" y="65.991755"/> | |
| 292 | +<use xlink:href="#glyph-1-4" x="273.932376" y="65.991755"/> | |
| 293 | +</g> | |
| 294 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 295 | +<use xlink:href="#glyph-1-11" x="277.119605" y="65.991755"/> | |
| 296 | +<use xlink:href="#glyph-1-12" x="281.766248" y="65.991755"/> | |
| 297 | +</g> | |
| 298 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 299 | +<use xlink:href="#glyph-1-11" x="286.312242" y="65.991755"/> | |
| 300 | +</g> | |
| 301 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 115.882812 96.214844 L 36.941406 96.214844 C 33.65625 96.214844 30.992188 98.878906 30.992188 102.164062 L 30.992188 115.65625 C 30.992188 118.941406 33.65625 121.605469 36.941406 121.605469 L 115.882812 121.605469 C 119.167969 121.605469 121.832031 118.941406 121.832031 115.65625 L 121.832031 102.164062 C 121.832031 98.878906 119.167969 96.214844 115.882812 96.214844 Z M 115.882812 96.214844 "/> | |
| 302 | +<g clip-path="url(#clip-4)"> | |
| 303 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-miterlimit="10" d="M 39.663491 -78.748671 L -39.663395 -78.748671 C -42.964593 -78.748671 -45.641664 -81.425742 -45.641664 -84.72694 L -45.641664 -98.285011 C -45.641664 -101.586209 -42.964593 -104.263281 -39.663395 -104.263281 L 39.663491 -104.263281 C 42.964689 -104.263281 45.64176 -101.586209 45.64176 -98.285011 L 45.64176 -84.72694 C 45.64176 -81.425742 42.964689 -78.748671 39.663491 -78.748671 Z M 39.663491 -78.748671 " transform="matrix(0.995141, 0, 0, -0.995141, 76.412062, 17.848842)"/> | |
| 304 | +</g> | |
| 305 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 306 | +<use xlink:href="#glyph-1-0" x="42.807158" y="111.378129"/> | |
| 307 | +</g> | |
| 308 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 309 | +<use xlink:href="#glyph-1-1" x="47.915111" y="111.378129"/> | |
| 310 | +<use xlink:href="#glyph-1-2" x="52.494655" y="111.378129"/> | |
| 311 | +<use xlink:href="#glyph-1-2" x="57.451634" y="111.378129"/> | |
| 312 | +<use xlink:href="#glyph-1-3" x="62.408613" y="111.378129"/> | |
| 313 | +<use xlink:href="#glyph-1-4" x="67.306879" y="111.378129"/> | |
| 314 | +<use xlink:href="#glyph-1-5" x="70.661857" y="111.378129"/> | |
| 315 | +</g> | |
| 316 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 317 | +<use xlink:href="#glyph-1-4" x="76.692428" y="111.378129"/> | |
| 318 | +</g> | |
| 319 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 320 | +<use xlink:href="#glyph-1-9" x="79.879657" y="111.378129"/> | |
| 321 | +<use xlink:href="#glyph-1-13" x="84.5263" y="111.378129"/> | |
| 322 | +<use xlink:href="#glyph-1-5" x="88.552273" y="111.378129"/> | |
| 323 | +<use xlink:href="#glyph-1-4" x="91.789826" y="111.378129"/> | |
| 324 | +</g> | |
| 325 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 326 | +<use xlink:href="#glyph-1-9" x="94.977055" y="111.378129"/> | |
| 327 | +<use xlink:href="#glyph-1-14" x="99.623698" y="111.378129"/> | |
| 328 | +<use xlink:href="#glyph-1-15" x="101.972182" y="111.378129"/> | |
| 329 | +<use xlink:href="#glyph-1-5" x="106.778187" y="111.378129"/> | |
| 330 | +</g> | |
| 331 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 71.352636 0.00119179 L 138.589522 0.00119179 " transform="matrix(0.995141, 0, 0, -0.995141, 76.412062, 17.848842)"/> | |
| 332 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552161 3.110049 C -2.085048 1.24552 -1.044837 0.362322 -0.00070027 0.00119179 C -1.044837 -0.363863 -2.085048 -1.243136 -2.552161 -3.111591 " transform="matrix(0.995141, 0, 0, -0.995141, 214.723353, 17.848842)"/> | |
| 333 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 334 | +<use xlink:href="#glyph-2-0" x="176.241584" y="14.268326"/> | |
| 335 | +<use xlink:href="#glyph-2-1" x="180.716735" y="14.268326"/> | |
| 336 | +<use xlink:href="#glyph-2-2" x="184.474297" y="14.268326"/> | |
| 337 | +</g> | |
| 338 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00191457 -12.956305 L -0.00191457 -32.00198 " transform="matrix(0.995141, 0, 0, -0.995141, 76.412062, 17.848842)"/> | |
| 339 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548498 3.110868 C -2.08531 1.242413 -1.045099 0.363141 -0.000962342 -0.00191457 C -1.045099 -0.363044 -2.08531 -1.246242 -2.548498 -3.110772 " transform="matrix(0, 0.995141, 0.995141, 0, 76.412062, 50.090801)"/> | |
| 340 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 341 | +<use xlink:href="#glyph-2-3" x="79.914957" y="42.858716"/> | |
| 342 | +<use xlink:href="#glyph-2-4" x="84.331396" y="42.858716"/> | |
| 343 | +<use xlink:href="#glyph-2-5" x="88.102005" y="42.858716"/> | |
| 344 | +</g> | |
| 345 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 71.352636 -45.752392 L 138.589522 -45.752392 " transform="matrix(0.995141, 0, 0, -0.995141, 76.412062, 17.848842)"/> | |
| 346 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552161 3.109605 C -2.085048 1.245076 -1.044837 0.361878 -0.00070027 0.00074797 C -1.044837 -0.364307 -2.085048 -1.24358 -2.552161 -3.112034 " transform="matrix(0.995141, 0, 0, -0.995141, 214.723353, 63.379651)"/> | |
| 347 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 348 | +<use xlink:href="#glyph-2-0" x="176.241584" y="59.798995"/> | |
| 349 | +<use xlink:href="#glyph-2-1" x="180.716735" y="59.798995"/> | |
| 350 | +<use xlink:href="#glyph-2-2" x="184.474297" y="59.798995"/> | |
| 351 | +</g> | |
| 352 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00191457 -58.709889 L -0.00191457 -77.755564 " transform="matrix(0.995141, 0, 0, -0.995141, 76.412062, 17.848842)"/> | |
| 353 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552 3.110868 C -2.084886 1.242413 -1.044675 0.363141 -0.000538521 -0.00191457 C -1.044675 -0.363044 -2.084886 -1.246242 -2.552 -3.110772 " transform="matrix(0, 0.995141, 0.995141, 0, 76.412062, 95.62163)"/> | |
| 354 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-2-3" x="79.914957" y="88.38839"/> | |
| 356 | +<use xlink:href="#glyph-2-4" x="84.331396" y="88.38839"/> | |
| 357 | +<use xlink:href="#glyph-2-5" x="88.102005" y="88.38839"/> | |
| 358 | +</g> | |
| 359 | +</svg> | |
added
dist/assets/fig/d4bce0787cd872dd.svg
+831 −0
@@ -0,0 +1,831 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="151.251pt" viewBox="0 0 314.242 151.251"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.1875 -4.765625 L 2.015625 -4.765625 L 0.078125 -3.609375 L 0.65625 -2.734375 L 1.890625 -3.484375 L 1.890625 0 L 3.1875 0 Z M 3.1875 -4.765625 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.375 C 0.578125 -1.375 0.25 -1.03125 0.25 -0.625 C 0.25 -0.203125 0.578125 0.140625 1 0.140625 C 1.421875 0.140625 1.765625 -0.203125 1.765625 -0.625 C 1.765625 -1.03125 1.421875 -1.375 1 -1.375 Z M 1 -1.375 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 2.171875 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 2.296875 0 C 3.78125 0 5.1875 -0.59375 5.1875 -2.9375 C 5.1875 -5.34375 3.71875 -5.8125 2.171875 -5.8125 Z M 2.359375 -4.8125 C 3.15625 -4.8125 3.765625 -4.5 3.765625 -2.9375 C 3.765625 -1.390625 3.203125 -1 2.375 -1 L 1.921875 -1 L 1.921875 -4.8125 Z M 2.359375 -4.8125 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 2.921875 -4.578125 C 2.421875 -4.578125 1.984375 -4.21875 1.78125 -3.59375 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -2.234375 C 1.984375 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.015625 -3.265625 3.15625 -3.234375 L 3.375 -4.515625 C 3.21875 -4.5625 3.09375 -4.578125 2.921875 -4.578125 Z M 2.921875 -4.578125 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 2.453125 -4.59375 C 1.09375 -4.59375 0.265625 -3.65625 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.625 -0.796875 4.625 -2.21875 C 4.625 -3.71875 3.8125 -4.59375 2.453125 -4.59375 Z M 2.453125 -3.625 C 2.984375 -3.625 3.25 -3.21875 3.25 -2.21875 C 3.25 -1.265625 2.984375 -0.828125 2.453125 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.234375 C 1.640625 -3.203125 1.90625 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.046875 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.046875 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.453125 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.875 -1.046875 C 2.6875 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.109375 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.453125 L 1.96875 -4.453125 L 1.96875 -5.578125 L 0.640625 -5.421875 L 0.640625 -4.453125 L 0.015625 -4.453125 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.3125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.09375 -4.59375 C 0.96875 -4.59375 0.265625 -4 0.265625 -3.234375 C 0.265625 -2.546875 0.703125 -2.09375 1.578125 -1.84375 C 2.390625 -1.625 2.53125 -1.53125 2.53125 -1.21875 C 2.53125 -0.953125 2.28125 -0.8125 1.875 -0.8125 C 1.4375 -0.8125 1.03125 -0.984375 0.703125 -1.234375 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.90625 0.140625 C 3.015625 0.140625 3.890625 -0.40625 3.890625 -1.328125 C 3.890625 -2.125 3.390625 -2.484375 2.515625 -2.75 C 1.71875 -2.984375 1.609375 -3.078125 1.609375 -3.3125 C 1.609375 -3.515625 1.78125 -3.65625 2.140625 -3.65625 C 2.53125 -3.65625 2.890625 -3.53125 3.234375 -3.3125 L 3.71875 -4.046875 C 3.3125 -4.390625 2.734375 -4.59375 2.09375 -4.59375 Z M 2.09375 -4.59375 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.140625 -6.375 L 3.140625 -4.171875 C 2.890625 -4.4375 2.53125 -4.59375 2.09375 -4.59375 C 0.984375 -4.59375 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.5625 0.140625 2.96875 -0.15625 3.234375 -0.515625 L 3.296875 0 L 4.46875 0 L 4.46875 -6.21875 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.453125 -3.640625 C 2.75 -3.640625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.9375 -1 2.6875 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.03125 -4.59375 C 2.578125 -4.59375 2.109375 -4.421875 1.75 -3.953125 L 1.671875 -4.453125 L 0.515625 -4.453125 L 0.515625 1.859375 L 1.84375 1.71875 L 1.84375 -0.3125 C 2.109375 -0.015625 2.484375 0.140625 2.921875 0.140625 C 4.015625 0.140625 4.6875 -0.859375 4.6875 -2.234375 C 4.6875 -3.6875 4.171875 -4.59375 3.03125 -4.59375 Z M 2.515625 -0.828125 C 2.234375 -0.828125 2.015625 -0.953125 1.84375 -1.21875 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.59375 -3.625 C 3.046875 -3.625 3.3125 -3.328125 3.3125 -2.21875 C 3.3125 -1.21875 3 -0.828125 2.515625 -0.828125 Z M 2.515625 -0.828125 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 3.5 -6.015625 L 2.984375 -7 L 1.15625 -5.90625 L 1.515625 -5.21875 Z M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.671875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.015625 -4.890625 C 1.1875 -4.890625 0.546875 -4.5625 0.046875 -3.9375 L 0.8125 -3.328125 C 1.15625 -3.71875 1.484375 -3.890625 1.875 -3.890625 C 2.296875 -3.890625 2.578125 -3.625 2.578125 -3.234375 C 2.578125 -2.6875 2.265625 -2.359375 0.203125 -0.9375 L 0.203125 0 L 3.890625 0 L 4.03125 -1 L 1.8125 -1 C 3.609375 -2.078125 3.921875 -2.546875 3.921875 -3.34375 C 3.921875 -4.1875 3.203125 -4.890625 2.015625 -4.890625 Z M 2.015625 -4.890625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.921875 -5.953125 C 1.40625 -5.953125 0.28125 -4.859375 0.28125 -2.921875 C 0.28125 -0.9375 1.34375 0.140625 2.9375 0.140625 C 3.75 0.140625 4.375 -0.21875 4.75 -0.609375 L 4.140625 -1.390625 C 3.796875 -1.125 3.46875 -0.921875 3 -0.921875 C 2.234375 -0.921875 1.71875 -1.515625 1.71875 -2.921875 C 1.71875 -4.34375 2.234375 -4.9375 2.984375 -4.9375 C 3.375 -4.9375 3.703125 -4.796875 4.03125 -4.546875 L 4.6875 -5.3125 C 4.203125 -5.734375 3.671875 -5.953125 2.921875 -5.953125 Z M 2.921875 -5.953125 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 3.125 -4.59375 C 2.5625 -4.59375 2.125 -4.359375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.25 C 4.359375 -4.109375 3.890625 -4.59375 3.125 -4.59375 Z M 3.125 -4.59375 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.5625 -6.375 C 1.234375 -6.375 0.703125 -5.703125 0.703125 -4.84375 L 0.703125 -4.453125 L 0.03125 -4.453125 L 0.03125 -3.53125 L 0.703125 -3.53125 L 0.703125 0 L 2.03125 0 L 2.03125 -3.53125 L 3.1875 -3.53125 L 3.1875 0 L 4.5 0 L 4.5 -4.453125 L 2.03125 -4.453125 L 2.03125 -4.796875 C 2.03125 -5.21875 2.1875 -5.390625 2.703125 -5.390625 C 3.0625 -5.390625 3.390625 -5.296875 3.671875 -5.1875 L 4.03125 -6.03125 C 3.671875 -6.203125 3.1875 -6.375 2.5625 -6.375 Z M 2.5625 -6.375 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 4.046875 -1.296875 L 4.046875 -3.015625 C 4.046875 -4.046875 3.484375 -4.59375 2.203125 -4.59375 C 1.6875 -4.59375 1.078125 -4.484375 0.515625 -4.265625 L 0.828125 -3.390625 C 1.265625 -3.546875 1.703125 -3.640625 1.984375 -3.640625 C 2.53125 -3.640625 2.75 -3.46875 2.75 -2.9375 L 2.75 -2.75 L 2.296875 -2.75 C 0.953125 -2.75 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.1875 0.140625 2.671875 -0.03125 3 -0.515625 C 3.203125 -0.078125 3.546875 0.078125 4.0625 0.125 L 4.34375 -0.75 C 4.140625 -0.828125 4.046875 -0.953125 4.046875 -1.296875 Z M 2.03125 -0.8125 C 1.71875 -0.8125 1.53125 -1.015625 1.53125 -1.375 C 1.53125 -1.8125 1.8125 -2.015625 2.421875 -2.015625 L 2.75 -2.015625 L 2.75 -1.21875 C 2.578125 -0.96875 2.34375 -0.8125 2.03125 -0.8125 Z M 2.03125 -0.8125 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 2.453125 -4.59375 C 1.109375 -4.59375 0.265625 -3.609375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.09375 0.140625 3.5625 -0.0625 3.984375 -0.390625 L 3.390625 -1.203125 C 3.078125 -1 2.859375 -0.90625 2.546875 -0.90625 C 2.015625 -0.90625 1.65625 -1.203125 1.65625 -2.203125 C 1.65625 -3.203125 1.984375 -3.578125 2.5625 -3.578125 C 2.859375 -3.578125 3.125 -3.484375 3.40625 -3.265625 L 3.984375 -4.046875 C 3.546875 -4.40625 3.078125 -4.59375 2.453125 -4.59375 Z M 2.453125 -4.59375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 5.4375 -4.59375 C 4.859375 -4.59375 4.453125 -4.359375 4.109375 -3.890625 C 3.921875 -4.34375 3.546875 -4.59375 3.046875 -4.59375 C 2.515625 -4.59375 2.09375 -4.375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.03125 -3.421875 2.234375 -3.625 2.515625 -3.625 C 2.71875 -3.625 2.890625 -3.5 2.890625 -3.03125 L 2.890625 0 L 4.21875 0 L 4.21875 -3.046875 C 4.40625 -3.421875 4.609375 -3.625 4.90625 -3.625 C 5.09375 -3.625 5.265625 -3.5 5.265625 -3.03125 L 5.265625 0 L 6.59375 0 L 6.59375 -3.25 C 6.59375 -4.109375 6.125 -4.59375 5.4375 -4.59375 Z M 5.4375 -4.59375 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 2 -4.890625 C 1.234375 -4.890625 0.609375 -4.625 0.078125 -4.125 L 0.734375 -3.421875 C 1.078125 -3.734375 1.421875 -3.90625 1.84375 -3.90625 C 2.3125 -3.90625 2.609375 -3.671875 2.609375 -3.25 C 2.609375 -2.8125 2.296875 -2.546875 1.78125 -2.546875 L 1.453125 -2.546875 L 1.3125 -1.640625 L 1.78125 -1.640625 C 2.40625 -1.640625 2.71875 -1.390625 2.71875 -0.8125 C 2.71875 -0.265625 2.34375 0.03125 1.828125 0.03125 C 1.390625 0.03125 1.046875 -0.140625 0.65625 -0.515625 L -0.046875 0.171875 C 0.390625 0.71875 1.046875 1.046875 1.90625 1.046875 C 3.3125 1.046875 4.078125 0.25 4.078125 -0.734375 C 4.078125 -1.65625 3.5 -2.046875 2.765625 -2.125 C 3.46875 -2.328125 3.890625 -2.796875 3.890625 -3.453125 C 3.890625 -4.234375 3.234375 -4.890625 2 -4.890625 Z M 2 -4.890625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 4.359375 -4.453125 L 3 -4.453125 L 2.1875 -1 L 1.390625 -4.453125 L -0.046875 -4.453125 L 1.390625 0 L 2.953125 0 Z M 4.359375 -4.453125 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 4.515625 -1.21875 L 3.890625 -1.21875 L 3.890625 -2.578125 L 2.78125 -2.578125 L 2.640625 -1.21875 L 1.484375 -1.21875 L 2.859375 -4.46875 L 1.734375 -4.890625 L 0.125 -1.09375 L 0.125 -0.25 L 2.625 -0.25 L 2.625 0.921875 L 3.890625 0.921875 L 3.890625 -0.25 L 4.515625 -0.25 Z M 4.515625 -1.21875 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 4.25 -4.453125 L 2.921875 -4.453125 L 2.921875 -1.359375 C 2.734375 -1.03125 2.484375 -0.84375 2.203125 -0.84375 C 1.9375 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.453125 L 0.453125 -4.453125 L 0.453125 -1.265625 C 0.453125 -0.390625 0.859375 0.140625 1.6875 0.140625 C 2.296875 0.140625 2.734375 -0.09375 3.046875 -0.5625 L 3.109375 0 L 4.25 0 Z M 4.25 -4.453125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 3.125 -4.59375 C 2.59375 -4.59375 2.203125 -4.390625 1.84375 -3.984375 L 1.84375 -6.359375 L 0.515625 -6.21875 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.859375 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.25 C 4.359375 -4.109375 3.890625 -4.59375 3.125 -4.59375 Z M 3.125 -4.59375 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 3.921875 -4.765625 L 0.4375 -4.765625 L 0.4375 -1.71875 L 1.34375 -1.71875 C 1.5625 -1.84375 1.78125 -1.90625 2.015625 -1.90625 C 2.484375 -1.90625 2.828125 -1.671875 2.828125 -0.96875 C 2.828125 -0.3125 2.484375 0.046875 1.890625 0.046875 C 1.4375 0.046875 1.09375 -0.15625 0.8125 -0.5 L 0.0625 0.171875 C 0.5 0.671875 1.09375 1.046875 1.953125 1.046875 C 3.3125 1.046875 4.171875 0.21875 4.171875 -0.96875 C 4.171875 -2.140625 3.484375 -2.8125 2.546875 -2.8125 C 2.25 -2.8125 1.984375 -2.765625 1.6875 -2.625 L 1.6875 -3.8125 L 3.765625 -3.8125 Z M 3.921875 -4.765625 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 1.921875 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 4.046875 0 L 4.1875 -1.09375 L 1.921875 -1.09375 Z M 1.921875 -5.8125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.296875 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.859375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.375 L 0.453125 -6.21875 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 2.90625 -3.8125 C 2.46875 -3.8125 2.0625 -3.65625 1.6875 -3.296875 C 1.765625 -4.28125 2.1875 -4.84375 2.84375 -4.84375 C 3.140625 -4.84375 3.375 -4.75 3.609375 -4.625 L 4.09375 -5.40625 C 3.78125 -5.625 3.34375 -5.796875 2.796875 -5.796875 C 1.25 -5.796875 0.3125 -4.515625 0.3125 -2.59375 C 0.3125 -0.96875 0.96875 0.140625 2.484375 0.140625 C 3.75 0.140625 4.546875 -0.78125 4.546875 -1.9375 C 4.546875 -3.140625 3.84375 -3.8125 2.90625 -3.8125 Z M 2.484375 -0.8125 C 1.90625 -0.8125 1.71875 -1.28125 1.6875 -2.453125 C 1.9375 -2.75 2.234375 -2.90625 2.53125 -2.90625 C 2.96875 -2.90625 3.21875 -2.65625 3.21875 -1.921875 C 3.21875 -1.25 2.984375 -0.8125 2.484375 -0.8125 Z M 2.484375 -0.8125 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 3.3125 -4.453125 L 3.25 -4.0625 C 2.9375 -4.421875 2.5625 -4.59375 2.09375 -4.59375 C 0.984375 -4.59375 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.515625 0.140625 2.890625 -0.09375 3.140625 -0.421875 L 3.140625 1.71875 L 4.46875 1.859375 L 4.46875 -4.453125 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.453125 -3.640625 C 2.75 -3.640625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.9375 -1 2.6875 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 4.390625 -4.453125 L 3.03125 -4.453125 L 2.15625 -0.84375 L 1.359375 -4.453125 L -0.046875 -4.453125 L 1.3125 0 L 1.765625 0 C 1.515625 0.578125 1.203125 0.828125 0.328125 0.9375 L 0.46875 1.859375 C 1.875 1.78125 2.625 1.125 2.984375 0.015625 Z M 4.390625 -4.453125 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-0"> | |
| 96 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.578125 -3.828125 L 2.671875 -4.421875 L 1.625 -4.421875 L 1.625 -5.515625 L 0.84375 -5.421875 L 0.84375 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-1"> | |
| 99 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.765625 2.59375 -3.765625 C 2.765625 -3.765625 2.859375 -3.75 2.984375 -3.71875 L 3.125 -4.46875 C 3 -4.5 2.84375 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-2"> | |
| 102 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-3"> | |
| 105 | +<path d="M 2.859375 -4.515625 C 2.28125 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.09375 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-4"> | |
| 108 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.6875 1.515625 -3.90625 2.015625 -3.90625 C 2.4375 -3.90625 2.78125 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.34375 2.625 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-5"> | |
| 111 | +<path d="M 2.296875 -5.671875 C 2.53125 -5.671875 2.78125 -5.625 3.078125 -5.5 L 3.3125 -6.0625 C 2.96875 -6.21875 2.671875 -6.296875 2.25 -6.296875 C 1.359375 -6.296875 0.875 -5.765625 0.875 -5.03125 L 0.875 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.875 -3.828125 L 0.875 0 L 1.640625 0 L 1.640625 -3.828125 L 2.640625 -3.828125 L 2.71875 -4.421875 L 1.640625 -4.421875 L 1.640625 -5.03125 C 1.640625 -5.46875 1.8125 -5.671875 2.296875 -5.671875 Z M 2.296875 -5.671875 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-6"> | |
| 114 | +<path d="M 3.34375 -6.078125 L 3 -6.71875 L 1.328125 -5.765625 L 1.5625 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-7"> | |
| 117 | +<path d="M 1.890625 -7.09375 C 1.078125 -5.921875 0.328125 -4.921875 0.328125 -2.9375 C 0.328125 -0.953125 1.078125 0.046875 1.890625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.734375 1.625 -5.640625 2.390625 -6.75 Z M 1.890625 -7.09375 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-8"> | |
| 120 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.609375 3.984375 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.578125 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.609375 -3.359375 3.609375 -2.21875 C 3.609375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-9"> | |
| 123 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.25 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.203125 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-10"> | |
| 126 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-11"> | |
| 129 | +<path d="M 1.15625 -6.546875 C 0.828125 -6.546875 0.609375 -6.3125 0.609375 -6.015625 C 0.609375 -5.71875 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.6875 -5.71875 1.6875 -6.015625 C 1.6875 -6.3125 1.484375 -6.546875 1.15625 -6.546875 Z M 1.546875 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.421875 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-1-12"> | |
| 132 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.421875 -0.84375 4.421875 -2.21875 C 4.421875 -3.609375 3.71875 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.90625 C 3.1875 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.453125 -3.90625 Z M 2.453125 -3.90625 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-1-13"> | |
| 135 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.578125 -0.296875 1.578125 -0.484375 C 1.578125 -0.8125 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-1-14"> | |
| 138 | +<path d="M 2.796875 -4.515625 C 2.25 -4.515625 1.84375 -4.28125 1.546875 -3.875 L 1.546875 -6.296875 L 0.765625 -6.203125 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.78125 0.09375 4.4375 -0.828125 4.4375 -2.21875 C 4.4375 -3.6875 3.796875 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.765625 -0.75 1.546875 -1.109375 L 1.546875 -3.21875 C 1.765625 -3.578125 2.09375 -3.90625 2.578125 -3.90625 C 3.203125 -3.90625 3.609375 -3.46875 3.609375 -2.21875 C 3.609375 -1 3.15625 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-1-15"> | |
| 141 | +<path d="M 4.046875 -4.421875 L 3.234375 -4.421875 L 2.078125 -0.6875 L 0.921875 -4.421875 L 0.078125 -4.421875 L 1.609375 0 L 2.546875 0 Z M 4.046875 -4.421875 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-1-16"> | |
| 144 | +<path d="M 4.046875 -4.421875 L 3.28125 -4.421875 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.5 -0.734375 1.5 -1.328125 L 1.5 -4.421875 L 0.71875 -4.421875 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 3 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.421875 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-1-17"> | |
| 147 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.109375 -4.28125 2.734375 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.140625 -0.171875 3.421875 -0.609375 L 3.5 0 L 4.171875 0 L 4.171875 -6.203125 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.390625 -3.90625 C 2.8125 -3.90625 3.125 -3.6875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-1-18"> | |
| 150 | +<path d="M 0.828125 -7.09375 L 0.328125 -6.75 C 1.09375 -5.640625 1.578125 -4.734375 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.328125 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.921875 1.640625 -5.921875 0.828125 -7.09375 Z M 0.828125 -7.09375 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-1-19"> | |
| 153 | +<path d="M 2.859375 -4.515625 C 2.296875 -4.515625 1.859375 -4.25 1.546875 -3.8125 L 1.546875 -6.28125 L 0.765625 -6.1875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.1875 -3.921875 2.65625 -3.921875 C 3.078125 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4 3.65625 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-1-20"> | |
| 156 | +<path d="M 4.046875 -4.421875 L 3.25 -4.421875 L 2.09375 -0.5625 L 0.90625 -4.421875 L 0.078125 -4.421875 L 1.5625 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.1875 L 0.515625 1.78125 C 1.734375 1.65625 2.25 0.96875 2.5625 0.03125 Z M 4.046875 -4.421875 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-1-21"> | |
| 159 | +<path d="M 3.4375 -5.765625 L 1.765625 -6.71875 L 1.421875 -6.078125 L 3.203125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-1-22"> | |
| 162 | +<path d="M 3.515625 -4.421875 L 3.453125 -3.921875 C 3.15625 -4.265625 2.765625 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.15625 3.40625 -0.59375 L 3.40625 1.6875 L 4.171875 1.78125 L 4.171875 -4.421875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.390625 -3.90625 C 2.8125 -3.90625 3.125 -3.6875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-1-23"> | |
| 165 | +<path d="M 4.140625 -4.921875 C 3.609375 -4.6875 3.21875 -4.5 2.109375 -4.515625 C 1.140625 -4.515625 0.40625 -3.890625 0.40625 -2.984375 C 0.40625 -2.40625 0.640625 -2.015625 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.265625 0.671875 -0.96875 C 0.671875 -0.53125 1.03125 -0.140625 1.8125 -0.140625 L 2.515625 -0.140625 C 3.0625 -0.140625 3.390625 0.078125 3.390625 0.5 C 3.390625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.125 1.1875 0.90625 0.953125 0.90625 0.4375 L 0.203125 0.4375 C 0.203125 1.34375 0.65625 1.78125 2.109375 1.78125 C 3.46875 1.78125 4.171875 1.296875 4.171875 0.4375 C 4.171875 -0.265625 3.578125 -0.78125 2.671875 -0.78125 L 1.96875 -0.78125 C 1.515625 -0.78125 1.390625 -0.9375 1.390625 -1.140625 C 1.390625 -1.296875 1.484375 -1.453125 1.609375 -1.546875 C 1.78125 -1.5 1.96875 -1.46875 2.171875 -1.46875 C 3.21875 -1.46875 3.84375 -2.09375 3.84375 -2.96875 C 3.84375 -3.484375 3.59375 -3.84375 3.078125 -4.09375 C 3.578125 -4.09375 4 -4.109375 4.359375 -4.21875 Z M 2.109375 -3.96875 C 2.75 -3.96875 3.0625 -3.640625 3.0625 -2.984375 C 3.0625 -2.34375 2.734375 -1.984375 2.125 -1.984375 C 1.53125 -1.984375 1.203125 -2.390625 1.203125 -2.984375 C 1.203125 -3.5625 1.515625 -3.96875 2.109375 -3.96875 Z M 2.109375 -3.96875 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-1-24"> | |
| 168 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.75 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.4375 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.34375 -4.390625 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-1-25"> | |
| 171 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.21875 -4.203125 3.890625 -3.71875 C 3.71875 -4.234375 3.328125 -4.515625 2.78125 -4.515625 C 2.203125 -4.515625 1.796875 -4.21875 1.5 -3.78125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.578125 -3.921875 C 2.921875 -3.921875 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.015625 -3.921875 C 5.359375 -3.921875 5.640625 -3.71875 5.640625 -3.0625 L 5.640625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.9375 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-1-26"> | |
| 174 | +<path d="M 0.265625 -2.296875 L 6.359375 -2.296875 L 6.359375 -2.953125 L 0.265625 -2.953125 Z M 0.265625 -2.296875 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-1-27"> | |
| 177 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.421875 L 2.984375 -4.421875 L 2.046875 -2.796875 L 1.125 -4.421875 L 0.21875 -4.421875 L 1.578125 -2.328125 L 0.046875 0 L 0.921875 0 L 2.015625 -1.875 L 3.09375 0 L 4.03125 0 Z M 2.484375 -2.359375 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-1-28"> | |
| 180 | +<path d="M 2.3125 -6.296875 C 1.234375 -6.296875 0.78125 -5.75 0.78125 -5 L 0.78125 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.78125 -3.828125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.828125 L 3.25 -3.828125 L 3.25 0 L 4.03125 0 L 4.03125 -4.421875 L 1.5625 -4.421875 L 1.5625 -5.015625 C 1.5625 -5.421875 1.71875 -5.65625 2.34375 -5.65625 C 2.6875 -5.65625 3 -5.59375 3.265625 -5.453125 L 3.546875 -5.984375 C 3.1875 -6.171875 2.8125 -6.296875 2.3125 -6.296875 Z M 2.3125 -6.296875 "/> | |
| 181 | +</g> | |
| 182 | +<g id="glyph-1-29"> | |
| 183 | +<path d="M 2.140625 -6.03125 L 3.203125 -5.3125 L 3.546875 -5.703125 L 2.40625 -6.640625 L 1.890625 -6.640625 L 0.75 -5.703125 L 1.078125 -5.3125 Z M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 184 | +</g> | |
| 185 | +</g> | |
| 186 | +<clipPath id="clip-0"> | |
| 187 | +<path clip-rule="nonzero" d="M 0.398438 0 L 313.089844 0 L 313.089844 28 L 0.398438 28 Z M 0.398438 0 "/> | |
| 188 | +</clipPath> | |
| 189 | +<clipPath id="clip-1"> | |
| 190 | +<path clip-rule="nonzero" d="M 0.398438 24 L 313.089844 24 L 313.089844 53 L 0.398438 53 Z M 0.398438 24 "/> | |
| 191 | +</clipPath> | |
| 192 | +<clipPath id="clip-2"> | |
| 193 | +<path clip-rule="nonzero" d="M 0.398438 48 L 313.089844 48 L 313.089844 77 L 0.398438 77 Z M 0.398438 48 "/> | |
| 194 | +</clipPath> | |
| 195 | +<clipPath id="clip-3"> | |
| 196 | +<path clip-rule="nonzero" d="M 0.398438 73 L 313.089844 73 L 313.089844 102 L 0.398438 102 Z M 0.398438 73 "/> | |
| 197 | +</clipPath> | |
| 198 | +<clipPath id="clip-4"> | |
| 199 | +<path clip-rule="nonzero" d="M 0.398438 98 L 313.089844 98 L 313.089844 127 L 0.398438 127 Z M 0.398438 98 "/> | |
| 200 | +</clipPath> | |
| 201 | +<clipPath id="clip-5"> | |
| 202 | +<path clip-rule="nonzero" d="M 0.398438 122 L 313.089844 122 L 313.089844 150.503906 L 0.398438 150.503906 Z M 0.398438 122 "/> | |
| 203 | +</clipPath> | |
| 204 | +</defs> | |
| 205 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 5.15625 L 9.515625 5.15625 C 7.324219 5.15625 5.550781 6.929688 5.550781 9.121094 L 5.550781 18.113281 C 5.550781 20.304688 7.324219 22.078125 9.515625 22.078125 L 303.972656 22.078125 C 306.160156 22.078125 307.9375 20.304688 307.9375 18.113281 L 307.9375 9.121094 C 307.9375 6.929688 306.160156 5.15625 303.972656 5.15625 Z M 303.972656 5.15625 "/> | |
| 206 | +<g clip-path="url(#clip-0)"> | |
| 207 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 8.502216 L -147.957322 8.502216 C -150.15958 8.502216 -151.9418 6.719996 -151.9418 4.517738 L -151.9418 -4.518979 C -151.9418 -6.721237 -150.15958 -8.503457 -147.957322 -8.503457 L 147.957871 -8.503457 C 150.156203 -8.503457 151.942348 -6.721237 151.942348 -4.518979 L 151.942348 4.517738 C 151.942348 6.719996 150.156203 8.502216 147.957871 8.502216 Z M 147.957871 8.502216 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 208 | +</g> | |
| 209 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 210 | +<use xlink:href="#glyph-0-0" x="28.162606" y="16.22963"/> | |
| 211 | +<use xlink:href="#glyph-0-1" x="31.953471" y="16.22963"/> | |
| 212 | +</g> | |
| 213 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 214 | +<use xlink:href="#glyph-0-2" x="36.759146" y="16.22963"/> | |
| 215 | +<use xlink:href="#glyph-0-3" x="42.218997" y="16.22963"/> | |
| 216 | +</g> | |
| 217 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 218 | +<use xlink:href="#glyph-0-4" x="45.406007" y="16.22963"/> | |
| 219 | +<use xlink:href="#glyph-0-5" x="50.303938" y="16.22963"/> | |
| 220 | +<use xlink:href="#glyph-0-6" x="52.652261" y="16.22963"/> | |
| 221 | +<use xlink:href="#glyph-0-7" x="55.889592" y="16.22963"/> | |
| 222 | +</g> | |
| 223 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 224 | +<use xlink:href="#glyph-0-8" x="62.716502" y="16.22963"/> | |
| 225 | +<use xlink:href="#glyph-0-9" x="67.698302" y="16.22963"/> | |
| 226 | +</g> | |
| 227 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 228 | +<use xlink:href="#glyph-0-10" x="75.137454" y="16.22963"/> | |
| 229 | +<use xlink:href="#glyph-0-3" x="80.094093" y="16.22963"/> | |
| 230 | +</g> | |
| 231 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 232 | +<use xlink:href="#glyph-0-4" x="83.281102" y="16.22963"/> | |
| 233 | +<use xlink:href="#glyph-0-10" x="88.179033" y="16.22963"/> | |
| 234 | +<use xlink:href="#glyph-0-3" x="93.135672" y="16.22963"/> | |
| 235 | +<use xlink:href="#glyph-0-5" x="96.490419" y="16.22963"/> | |
| 236 | +<use xlink:href="#glyph-0-11" x="98.838742" y="16.22963"/> | |
| 237 | +<use xlink:href="#glyph-0-6" x="103.485067" y="16.22963"/> | |
| 238 | +</g> | |
| 239 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 240 | +<use xlink:href="#glyph-0-11" x="106.571435" y="16.22963"/> | |
| 241 | +</g> | |
| 242 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 243 | +<use xlink:href="#glyph-1-0" x="114.010587" y="16.22963"/> | |
| 244 | +<use xlink:href="#glyph-1-1" x="117.038246" y="16.22963"/> | |
| 245 | +</g> | |
| 246 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 247 | +<use xlink:href="#glyph-1-2" x="120.082679" y="16.22963"/> | |
| 248 | +<use xlink:href="#glyph-1-3" x="124.603201" y="16.22963"/> | |
| 249 | +<use xlink:href="#glyph-1-4" x="129.459197" y="16.22963"/> | |
| 250 | +<use xlink:href="#glyph-1-5" x="133.375865" y="16.22963"/> | |
| 251 | +</g> | |
| 252 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 253 | +<use xlink:href="#glyph-1-6" x="136.101597" y="16.22963"/> | |
| 254 | +<use xlink:href="#glyph-1-1" x="140.664053" y="16.22963"/> | |
| 255 | +</g> | |
| 256 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 257 | +<use xlink:href="#glyph-1-6" x="143.708486" y="16.22963"/> | |
| 258 | +<use xlink:href="#glyph-1-4" x="148.270942" y="16.22963"/> | |
| 259 | +</g> | |
| 260 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 261 | +<use xlink:href="#glyph-1-7" x="154.988823" y="16.22963"/> | |
| 262 | +<use xlink:href="#glyph-1-8" x="157.706169" y="16.22963"/> | |
| 263 | +<use xlink:href="#glyph-1-9" x="162.620873" y="16.22963"/> | |
| 264 | +</g> | |
| 265 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 266 | +<use xlink:href="#glyph-1-10" x="165.044678" y="16.22963"/> | |
| 267 | +<use xlink:href="#glyph-1-11" x="169.607134" y="16.22963"/> | |
| 268 | +<use xlink:href="#glyph-1-3" x="171.92191" y="16.22963"/> | |
| 269 | +<use xlink:href="#glyph-1-10" x="176.777906" y="16.22963"/> | |
| 270 | +</g> | |
| 271 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 272 | +<use xlink:href="#glyph-1-8" x="184.13319" y="16.22963"/> | |
| 273 | +<use xlink:href="#glyph-1-1" x="189.047894" y="16.22963"/> | |
| 274 | +</g> | |
| 275 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 276 | +<use xlink:href="#glyph-1-12" x="192.092327" y="16.22963"/> | |
| 277 | +<use xlink:href="#glyph-1-8" x="196.990258" y="16.22963"/> | |
| 278 | +<use xlink:href="#glyph-1-1" x="201.904963" y="16.22963"/> | |
| 279 | +<use xlink:href="#glyph-1-11" x="205.117133" y="16.22963"/> | |
| 280 | +<use xlink:href="#glyph-1-6" x="207.431909" y="16.22963"/> | |
| 281 | +<use xlink:href="#glyph-1-0" x="211.994365" y="16.22963"/> | |
| 282 | +</g> | |
| 283 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 284 | +<use xlink:href="#glyph-1-6" x="214.896221" y="16.22963"/> | |
| 285 | +</g> | |
| 286 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 287 | +<use xlink:href="#glyph-1-13" x="219.374809" y="16.22963"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-1-14" x="224.180484" y="16.22963"/> | |
| 291 | +</g> | |
| 292 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 293 | +<use xlink:href="#glyph-1-2" x="229.053254" y="16.22963"/> | |
| 294 | +<use xlink:href="#glyph-1-11" x="233.573776" y="16.22963"/> | |
| 295 | +<use xlink:href="#glyph-1-9" x="235.888552" y="16.22963"/> | |
| 296 | +</g> | |
| 297 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 298 | +<use xlink:href="#glyph-1-13" x="238.387838" y="16.22963"/> | |
| 299 | +</g> | |
| 300 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 301 | +<use xlink:href="#glyph-1-4" x="243.193514" y="16.22963"/> | |
| 302 | +<use xlink:href="#glyph-1-10" x="247.110181" y="16.22963"/> | |
| 303 | +<use xlink:href="#glyph-1-1" x="251.672637" y="16.22963"/> | |
| 304 | +<use xlink:href="#glyph-1-15" x="254.884808" y="16.22963"/> | |
| 305 | +<use xlink:href="#glyph-1-11" x="259.011147" y="16.22963"/> | |
| 306 | +<use xlink:href="#glyph-1-0" x="261.325922" y="16.22963"/> | |
| 307 | +<use xlink:href="#glyph-1-16" x="264.353581" y="16.22963"/> | |
| 308 | +<use xlink:href="#glyph-1-17" x="269.176031" y="16.22963"/> | |
| 309 | +<use xlink:href="#glyph-1-10" x="274.124283" y="16.22963"/> | |
| 310 | +<use xlink:href="#glyph-1-4" x="278.686739" y="16.22963"/> | |
| 311 | +<use xlink:href="#glyph-1-18" x="282.603406" y="16.22963"/> | |
| 312 | +</g> | |
| 313 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 29.808594 L 9.515625 29.808594 C 7.324219 29.808594 5.550781 31.585938 5.550781 33.773438 L 5.550781 42.769531 C 5.550781 44.957031 7.324219 46.734375 9.515625 46.734375 L 303.972656 46.734375 C 306.160156 46.734375 307.9375 44.957031 307.9375 42.769531 L 307.9375 33.773438 C 307.9375 31.585938 306.160156 29.808594 303.972656 29.808594 Z M 303.972656 29.808594 "/> | |
| 314 | +<g clip-path="url(#clip-1)"> | |
| 315 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 -16.272207 L -147.957322 -16.272207 C -150.15958 -16.272207 -151.9418 -18.058352 -151.9418 -20.256685 L -151.9418 -29.297327 C -151.9418 -31.49566 -150.15958 -33.281805 -147.957322 -33.281805 L 147.957871 -33.281805 C 150.156203 -33.281805 151.942348 -31.49566 151.942348 -29.297327 L 151.942348 -20.256685 C 151.942348 -18.058352 150.156203 -16.272207 147.957871 -16.272207 Z M 147.957871 -16.272207 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 316 | +</g> | |
| 317 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 318 | +<use xlink:href="#glyph-0-12" x="12.95392" y="40.90842"/> | |
| 319 | +<use xlink:href="#glyph-0-1" x="17.289931" y="40.90842"/> | |
| 320 | +</g> | |
| 321 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 322 | +<use xlink:href="#glyph-0-13" x="22.095606" y="40.90842"/> | |
| 323 | +</g> | |
| 324 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 325 | +<use xlink:href="#glyph-0-4" x="26.750318" y="40.90842"/> | |
| 326 | +<use xlink:href="#glyph-0-14" x="31.648249" y="40.90842"/> | |
| 327 | +<use xlink:href="#glyph-0-8" x="36.453924" y="40.90842"/> | |
| 328 | +<use xlink:href="#glyph-0-5" x="41.435724" y="40.90842"/> | |
| 329 | +<use xlink:href="#glyph-0-6" x="43.784047" y="40.90842"/> | |
| 330 | +<use xlink:href="#glyph-0-5" x="47.021378" y="40.90842"/> | |
| 331 | +<use xlink:href="#glyph-0-4" x="49.369701" y="40.90842"/> | |
| 332 | +<use xlink:href="#glyph-0-14" x="54.267632" y="40.90842"/> | |
| 333 | +<use xlink:href="#glyph-0-7" x="59.073307" y="40.90842"/> | |
| 334 | +</g> | |
| 335 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 336 | +<use xlink:href="#glyph-0-8" x="65.900218" y="40.90842"/> | |
| 337 | +<use xlink:href="#glyph-0-9" x="70.882017" y="40.90842"/> | |
| 338 | +</g> | |
| 339 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 340 | +<use xlink:href="#glyph-0-15" x="78.321169" y="40.90842"/> | |
| 341 | +<use xlink:href="#glyph-0-14" x="83.336516" y="40.90842"/> | |
| 342 | +<use xlink:href="#glyph-0-16" x="88.142191" y="40.90842"/> | |
| 343 | +<use xlink:href="#glyph-0-14" x="92.721421" y="40.90842"/> | |
| 344 | +<use xlink:href="#glyph-0-17" x="97.527097" y="40.90842"/> | |
| 345 | +</g> | |
| 346 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 347 | +<use xlink:href="#glyph-0-9" x="101.418603" y="40.90842"/> | |
| 348 | +<use xlink:href="#glyph-0-18" x="106.064928" y="40.90842"/> | |
| 349 | +<use xlink:href="#glyph-0-9" x="113.118284" y="40.90842"/> | |
| 350 | +<use xlink:href="#glyph-0-14" x="117.764609" y="40.90842"/> | |
| 351 | +<use xlink:href="#glyph-0-6" x="122.570284" y="40.90842"/> | |
| 352 | +</g> | |
| 353 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 354 | +<use xlink:href="#glyph-1-7" x="128.675924" y="40.90842"/> | |
| 355 | +<use xlink:href="#glyph-1-19" x="131.393269" y="40.90842"/> | |
| 356 | +</g> | |
| 357 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 358 | +<use xlink:href="#glyph-1-20" x="136.190558" y="40.90842"/> | |
| 359 | +<use xlink:href="#glyph-1-8" x="140.316897" y="40.90842"/> | |
| 360 | +<use xlink:href="#glyph-1-12" x="145.231601" y="40.90842"/> | |
| 361 | +<use xlink:href="#glyph-1-0" x="150.129532" y="40.90842"/> | |
| 362 | +<use xlink:href="#glyph-1-19" x="153.157192" y="40.90842"/> | |
| 363 | +<use xlink:href="#glyph-1-21" x="158.013188" y="40.90842"/> | |
| 364 | +<use xlink:href="#glyph-1-22" x="162.575644" y="40.90842"/> | |
| 365 | +<use xlink:href="#glyph-1-16" x="167.523897" y="40.90842"/> | |
| 366 | +<use xlink:href="#glyph-1-10" x="172.346346" y="40.90842"/> | |
| 367 | +</g> | |
| 368 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 369 | +<use xlink:href="#glyph-1-2" x="179.701629" y="40.90842"/> | |
| 370 | +</g> | |
| 371 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 372 | +<use xlink:href="#glyph-1-15" x="184.180216" y="40.90842"/> | |
| 373 | +</g> | |
| 374 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 375 | +<use xlink:href="#glyph-1-2" x="188.264621" y="40.90842"/> | |
| 376 | +<use xlink:href="#glyph-1-3" x="192.785143" y="40.90842"/> | |
| 377 | +<use xlink:href="#glyph-1-0" x="197.641139" y="40.90842"/> | |
| 378 | +<use xlink:href="#glyph-1-2" x="200.668799" y="40.90842"/> | |
| 379 | +<use xlink:href="#glyph-1-23" x="205.18932" y="40.90842"/> | |
| 380 | +<use xlink:href="#glyph-1-10" x="209.550492" y="40.90842"/> | |
| 381 | +<use xlink:href="#glyph-1-16" x="214.112948" y="40.90842"/> | |
| 382 | +<use xlink:href="#glyph-1-4" x="218.935397" y="40.90842"/> | |
| 383 | +<use xlink:href="#glyph-1-10" x="222.852064" y="40.90842"/> | |
| 384 | +</g> | |
| 385 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 386 | +<use xlink:href="#glyph-1-13" x="227.330652" y="40.90842"/> | |
| 387 | +</g> | |
| 388 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 389 | +<use xlink:href="#glyph-1-14" x="232.144714" y="40.90842"/> | |
| 390 | +</g> | |
| 391 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 392 | +<use xlink:href="#glyph-1-2" x="237.017484" y="40.90842"/> | |
| 393 | +</g> | |
| 394 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 395 | +<use xlink:href="#glyph-1-9" x="241.496072" y="40.90842"/> | |
| 396 | +</g> | |
| 397 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 398 | +<use xlink:href="#glyph-1-2" x="243.919877" y="40.90842"/> | |
| 399 | +<use xlink:href="#glyph-1-3" x="248.440398" y="40.90842"/> | |
| 400 | +<use xlink:href="#glyph-1-24" x="253.296395" y="40.90842"/> | |
| 401 | +</g> | |
| 402 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 403 | +<use xlink:href="#glyph-1-10" x="257.179515" y="40.90842"/> | |
| 404 | +</g> | |
| 405 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 406 | +<use xlink:href="#glyph-1-17" x="264.534798" y="40.90842"/> | |
| 407 | +<use xlink:href="#glyph-1-10" x="269.48305" y="40.90842"/> | |
| 408 | +</g> | |
| 409 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 410 | +<use xlink:href="#glyph-1-15" x="276.838333" y="40.90842"/> | |
| 411 | +</g> | |
| 412 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 413 | +<use xlink:href="#glyph-1-10" x="280.931125" y="40.90842"/> | |
| 414 | +<use xlink:href="#glyph-1-3" x="285.493581" y="40.90842"/> | |
| 415 | +<use xlink:href="#glyph-1-0" x="290.349578" y="40.90842"/> | |
| 416 | +</g> | |
| 417 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 418 | +<use xlink:href="#glyph-1-10" x="293.251434" y="40.90842"/> | |
| 419 | +<use xlink:href="#glyph-1-18" x="297.81389" y="40.90842"/> | |
| 420 | +</g> | |
| 421 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 54.464844 L 9.515625 54.464844 C 7.324219 54.464844 5.550781 56.238281 5.550781 58.429688 L 5.550781 67.421875 C 5.550781 69.613281 7.324219 71.386719 9.515625 71.386719 L 303.972656 71.386719 C 306.160156 71.386719 307.9375 69.613281 307.9375 67.421875 L 307.9375 58.429688 C 307.9375 56.238281 306.160156 54.464844 303.972656 54.464844 Z M 303.972656 54.464844 "/> | |
| 422 | +<g clip-path="url(#clip-2)"> | |
| 423 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 -41.050555 L -147.957322 -41.050555 C -150.15958 -41.050555 -151.9418 -42.832775 -151.9418 -45.035033 L -151.9418 -54.07175 C -151.9418 -56.274009 -150.15958 -58.056228 -147.957322 -58.056228 L 147.957871 -58.056228 C 150.156203 -58.056228 151.942348 -56.274009 151.942348 -54.07175 L 151.942348 -45.035033 C 151.942348 -42.832775 150.156203 -41.050555 147.957871 -41.050555 Z M 147.957871 -41.050555 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 424 | +</g> | |
| 425 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 426 | +<use xlink:href="#glyph-0-19" x="22.261827" y="65.563328"/> | |
| 427 | +<use xlink:href="#glyph-0-1" x="26.581064" y="65.563328"/> | |
| 428 | +</g> | |
| 429 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 430 | +<use xlink:href="#glyph-0-13" x="31.386739" y="65.563328"/> | |
| 431 | +</g> | |
| 432 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 433 | +<use xlink:href="#glyph-0-4" x="36.041451" y="65.563328"/> | |
| 434 | +<use xlink:href="#glyph-0-14" x="40.939382" y="65.563328"/> | |
| 435 | +<use xlink:href="#glyph-0-8" x="45.745057" y="65.563328"/> | |
| 436 | +<use xlink:href="#glyph-0-5" x="50.726857" y="65.563328"/> | |
| 437 | +<use xlink:href="#glyph-0-6" x="53.07518" y="65.563328"/> | |
| 438 | +<use xlink:href="#glyph-0-5" x="56.312511" y="65.563328"/> | |
| 439 | +<use xlink:href="#glyph-0-4" x="58.660834" y="65.563328"/> | |
| 440 | +<use xlink:href="#glyph-0-14" x="63.558765" y="65.563328"/> | |
| 441 | +<use xlink:href="#glyph-0-7" x="68.36444" y="65.563328"/> | |
| 442 | +</g> | |
| 443 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 444 | +<use xlink:href="#glyph-0-8" x="75.191351" y="65.563328"/> | |
| 445 | +<use xlink:href="#glyph-0-9" x="80.17315" y="65.563328"/> | |
| 446 | +</g> | |
| 447 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 448 | +<use xlink:href="#glyph-0-20" x="87.612302" y="65.563328"/> | |
| 449 | +</g> | |
| 450 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 451 | +<use xlink:href="#glyph-0-9" x="91.847671" y="65.563328"/> | |
| 452 | +<use xlink:href="#glyph-0-14" x="96.493995" y="65.563328"/> | |
| 453 | +<use xlink:href="#glyph-0-6" x="101.299671" y="65.563328"/> | |
| 454 | +</g> | |
| 455 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 456 | +<use xlink:href="#glyph-0-9" x="104.386038" y="65.563328"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-1-7" x="111.82519" y="65.563328"/> | |
| 460 | +<use xlink:href="#glyph-1-25" x="114.542535" y="65.563328"/> | |
| 461 | +<use xlink:href="#glyph-1-12" x="121.671373" y="65.563328"/> | |
| 462 | +<use xlink:href="#glyph-1-0" x="126.569304" y="65.563328"/> | |
| 463 | +<use xlink:href="#glyph-1-11" x="129.596963" y="65.563328"/> | |
| 464 | +<use xlink:href="#glyph-1-15" x="131.911739" y="65.563328"/> | |
| 465 | +</g> | |
| 466 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 467 | +<use xlink:href="#glyph-1-2" x="135.996143" y="65.563328"/> | |
| 468 | +<use xlink:href="#glyph-1-0" x="140.516665" y="65.563328"/> | |
| 469 | +<use xlink:href="#glyph-1-11" x="143.544325" y="65.563328"/> | |
| 470 | +<use xlink:href="#glyph-1-12" x="145.8591" y="65.563328"/> | |
| 471 | +<use xlink:href="#glyph-1-3" x="150.757031" y="65.563328"/> | |
| 472 | +<use xlink:href="#glyph-1-13" x="155.613028" y="65.563328"/> | |
| 473 | +</g> | |
| 474 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 475 | +<use xlink:href="#glyph-1-9" x="160.418703" y="65.563328"/> | |
| 476 | +<use xlink:href="#glyph-1-11" x="162.884442" y="65.563328"/> | |
| 477 | +<use xlink:href="#glyph-1-10" x="165.199218" y="65.563328"/> | |
| 478 | +<use xlink:href="#glyph-1-3" x="169.761674" y="65.563328"/> | |
| 479 | +</g> | |
| 480 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 481 | +<use xlink:href="#glyph-1-17" x="177.418884" y="65.563328"/> | |
| 482 | +<use xlink:href="#glyph-1-10" x="182.367136" y="65.563328"/> | |
| 483 | +</g> | |
| 484 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 485 | +<use xlink:href="#glyph-1-17" x="189.722419" y="65.563328"/> | |
| 486 | +<use xlink:href="#glyph-1-6" x="194.670672" y="65.563328"/> | |
| 487 | +<use xlink:href="#glyph-1-8" x="199.233128" y="65.563328"/> | |
| 488 | +<use xlink:href="#glyph-1-10" x="204.147832" y="65.563328"/> | |
| 489 | +<use xlink:href="#glyph-1-3" x="208.710289" y="65.563328"/> | |
| 490 | +<use xlink:href="#glyph-1-17" x="213.566285" y="65.563328"/> | |
| 491 | +<use xlink:href="#glyph-1-2" x="218.514537" y="65.563328"/> | |
| 492 | +<use xlink:href="#glyph-1-3" x="223.035059" y="65.563328"/> | |
| 493 | +<use xlink:href="#glyph-1-24" x="227.891056" y="65.563328"/> | |
| 494 | +</g> | |
| 495 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 496 | +<use xlink:href="#glyph-1-10" x="231.774175" y="65.563328"/> | |
| 497 | +</g> | |
| 498 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 499 | +<use xlink:href="#glyph-1-13" x="236.252763" y="65.563328"/> | |
| 500 | +</g> | |
| 501 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 502 | +<use xlink:href="#glyph-1-15" x="241.058438" y="65.563328"/> | |
| 503 | +</g> | |
| 504 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 505 | +<use xlink:href="#glyph-1-10" x="245.15123" y="65.563328"/> | |
| 506 | +<use xlink:href="#glyph-1-3" x="249.713686" y="65.563328"/> | |
| 507 | +<use xlink:href="#glyph-1-0" x="254.569682" y="65.563328"/> | |
| 508 | +</g> | |
| 509 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 510 | +<use xlink:href="#glyph-1-10" x="257.471539" y="65.563328"/> | |
| 511 | +</g> | |
| 512 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 513 | +<use xlink:href="#glyph-1-5" x="264.835209" y="65.563328"/> | |
| 514 | +</g> | |
| 515 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 516 | +<use xlink:href="#glyph-1-12" x="267.560941" y="65.563328"/> | |
| 517 | +<use xlink:href="#glyph-1-1" x="272.458872" y="65.563328"/> | |
| 518 | +</g> | |
| 519 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 520 | +<use xlink:href="#glyph-1-24" x="275.503305" y="65.563328"/> | |
| 521 | +</g> | |
| 522 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 523 | +<use xlink:href="#glyph-1-6" x="279.386425" y="65.563328"/> | |
| 524 | +<use xlink:href="#glyph-1-10" x="283.948881" y="65.563328"/> | |
| 525 | +<use xlink:href="#glyph-1-18" x="288.511337" y="65.563328"/> | |
| 526 | +</g> | |
| 527 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 79.117188 L 9.515625 79.117188 C 7.324219 79.117188 5.550781 80.894531 5.550781 83.082031 L 5.550781 92.078125 C 5.550781 94.265625 7.324219 96.042969 9.515625 96.042969 L 303.972656 96.042969 C 306.160156 96.042969 307.9375 94.265625 307.9375 92.078125 L 307.9375 83.082031 C 307.9375 80.894531 306.160156 79.117188 303.972656 79.117188 Z M 303.972656 79.117188 "/> | |
| 528 | +<g clip-path="url(#clip-3)"> | |
| 529 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 -65.824978 L -147.957322 -65.824978 C -150.15958 -65.824978 -151.9418 -67.611124 -151.9418 -69.809456 L -151.9418 -78.850099 C -151.9418 -81.048432 -150.15958 -82.834577 -147.957322 -82.834577 L 147.957871 -82.834577 C 150.156203 -82.834577 151.942348 -81.048432 151.942348 -78.850099 L 151.942348 -69.809456 C 151.942348 -67.611124 150.156203 -65.824978 147.957871 -65.824978 Z M 147.957871 -65.824978 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 530 | +</g> | |
| 531 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 532 | +<use xlink:href="#glyph-0-21" x="22.171276" y="90.226197"/> | |
| 533 | +</g> | |
| 534 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 535 | +<use xlink:href="#glyph-0-1" x="26.800827" y="90.226197"/> | |
| 536 | +</g> | |
| 537 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 538 | +<use xlink:href="#glyph-0-13" x="31.606502" y="90.226197"/> | |
| 539 | +</g> | |
| 540 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 541 | +<use xlink:href="#glyph-0-4" x="36.261214" y="90.226197"/> | |
| 542 | +<use xlink:href="#glyph-0-14" x="41.159145" y="90.226197"/> | |
| 543 | +<use xlink:href="#glyph-0-8" x="45.96482" y="90.226197"/> | |
| 544 | +<use xlink:href="#glyph-0-5" x="50.946619" y="90.226197"/> | |
| 545 | +<use xlink:href="#glyph-0-6" x="53.294943" y="90.226197"/> | |
| 546 | +<use xlink:href="#glyph-0-5" x="56.532274" y="90.226197"/> | |
| 547 | +<use xlink:href="#glyph-0-4" x="58.880597" y="90.226197"/> | |
| 548 | +<use xlink:href="#glyph-0-14" x="63.778527" y="90.226197"/> | |
| 549 | +<use xlink:href="#glyph-0-7" x="68.584203" y="90.226197"/> | |
| 550 | +</g> | |
| 551 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 552 | +<use xlink:href="#glyph-0-8" x="75.411113" y="90.226197"/> | |
| 553 | +<use xlink:href="#glyph-0-22" x="80.392913" y="90.226197"/> | |
| 554 | +</g> | |
| 555 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 556 | +<use xlink:href="#glyph-0-18" x="87.949481" y="90.226197"/> | |
| 557 | +<use xlink:href="#glyph-0-16" x="95.002837" y="90.226197"/> | |
| 558 | +<use xlink:href="#glyph-0-3" x="99.582067" y="90.226197"/> | |
| 559 | +</g> | |
| 560 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 561 | +<use xlink:href="#glyph-0-17" x="102.769077" y="90.226197"/> | |
| 562 | +<use xlink:href="#glyph-0-23" x="106.786386" y="90.226197"/> | |
| 563 | +<use xlink:href="#glyph-0-11" x="111.592062" y="90.226197"/> | |
| 564 | +</g> | |
| 565 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 566 | +<use xlink:href="#glyph-1-7" x="119.031213" y="90.226197"/> | |
| 567 | +<use xlink:href="#glyph-1-0" x="121.748559" y="90.226197"/> | |
| 568 | +</g> | |
| 569 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 570 | +<use xlink:href="#glyph-1-10" x="124.650415" y="90.226197"/> | |
| 571 | +<use xlink:href="#glyph-1-25" x="129.212871" y="90.226197"/> | |
| 572 | +<use xlink:href="#glyph-1-8" x="136.341709" y="90.226197"/> | |
| 573 | +<use xlink:href="#glyph-1-4" x="141.256414" y="90.226197"/> | |
| 574 | +</g> | |
| 575 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 576 | +<use xlink:href="#glyph-1-26" x="147.965908" y="90.226197"/> | |
| 577 | +</g> | |
| 578 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 579 | +<use xlink:href="#glyph-1-6" x="157.392747" y="90.226197"/> | |
| 580 | +</g> | |
| 581 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 582 | +<use xlink:href="#glyph-1-15" x="161.913269" y="90.226197"/> | |
| 583 | +</g> | |
| 584 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 585 | +<use xlink:href="#glyph-1-12" x="166.006061" y="90.226197"/> | |
| 586 | +<use xlink:href="#glyph-1-9" x="170.903992" y="90.226197"/> | |
| 587 | +<use xlink:href="#glyph-1-16" x="173.369731" y="90.226197"/> | |
| 588 | +<use xlink:href="#glyph-1-0" x="178.19218" y="90.226197"/> | |
| 589 | +<use xlink:href="#glyph-1-11" x="181.219839" y="90.226197"/> | |
| 590 | +<use xlink:href="#glyph-1-12" x="183.534615" y="90.226197"/> | |
| 591 | +<use xlink:href="#glyph-1-3" x="188.432546" y="90.226197"/> | |
| 592 | +</g> | |
| 593 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 594 | +<use xlink:href="#glyph-1-17" x="196.081369" y="90.226197"/> | |
| 595 | +<use xlink:href="#glyph-1-10" x="201.029621" y="90.226197"/> | |
| 596 | +<use xlink:href="#glyph-1-4" x="205.592078" y="90.226197"/> | |
| 597 | +</g> | |
| 598 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 599 | +<use xlink:href="#glyph-1-8" x="212.301572" y="90.226197"/> | |
| 600 | +<use xlink:href="#glyph-1-1" x="217.216277" y="90.226197"/> | |
| 601 | +<use xlink:href="#glyph-1-11" x="220.428447" y="90.226197"/> | |
| 602 | +<use xlink:href="#glyph-1-27" x="222.743223" y="90.226197"/> | |
| 603 | +</g> | |
| 604 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 605 | +<use xlink:href="#glyph-1-17" x="229.612067" y="90.226197"/> | |
| 606 | +<use xlink:href="#glyph-1-10" x="234.56032" y="90.226197"/> | |
| 607 | +<use xlink:href="#glyph-1-8" x="239.122776" y="90.226197"/> | |
| 608 | +<use xlink:href="#glyph-1-16" x="244.03748" y="90.226197"/> | |
| 609 | +<use xlink:href="#glyph-1-11" x="248.859929" y="90.226197"/> | |
| 610 | +<use xlink:href="#glyph-1-4" x="251.174705" y="90.226197"/> | |
| 611 | +</g> | |
| 612 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 613 | +<use xlink:href="#glyph-1-9" x="257.884199" y="90.226197"/> | |
| 614 | +</g> | |
| 615 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 616 | +<use xlink:href="#glyph-1-2" x="260.308004" y="90.226197"/> | |
| 617 | +</g> | |
| 618 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 619 | +<use xlink:href="#glyph-1-15" x="267.621353" y="90.226197"/> | |
| 620 | +</g> | |
| 621 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 622 | +<use xlink:href="#glyph-1-10" x="271.714145" y="90.226197"/> | |
| 623 | +<use xlink:href="#glyph-1-3" x="276.276601" y="90.226197"/> | |
| 624 | +<use xlink:href="#glyph-1-0" x="281.132597" y="90.226197"/> | |
| 625 | +</g> | |
| 626 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 627 | +<use xlink:href="#glyph-1-10" x="284.034454" y="90.226197"/> | |
| 628 | +<use xlink:href="#glyph-1-18" x="288.59691" y="90.226197"/> | |
| 629 | +</g> | |
| 630 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 103.773438 L 9.515625 103.773438 C 7.324219 103.773438 5.550781 105.546875 5.550781 107.738281 L 5.550781 116.730469 C 5.550781 118.921875 7.324219 120.699219 9.515625 120.699219 L 303.972656 120.699219 C 306.160156 120.699219 307.9375 118.921875 307.9375 116.730469 L 307.9375 107.738281 C 307.9375 105.546875 306.160156 103.773438 303.972656 103.773438 Z M 303.972656 103.773438 "/> | |
| 631 | +<g clip-path="url(#clip-4)"> | |
| 632 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 -90.603327 L -147.957322 -90.603327 C -150.15958 -90.603327 -151.9418 -92.385547 -151.9418 -94.587805 L -151.9418 -103.624522 C -151.9418 -105.82678 -150.15958 -107.612925 -147.957322 -107.612925 L 147.957871 -107.612925 C 150.156203 -107.612925 151.942348 -105.82678 151.942348 -103.624522 L 151.942348 -94.587805 C 151.942348 -92.385547 150.156203 -90.603327 147.957871 -90.603327 Z M 147.957871 -90.603327 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 633 | +</g> | |
| 634 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 635 | +<use xlink:href="#glyph-0-24" x="61.713461" y="114.872149"/> | |
| 636 | +<use xlink:href="#glyph-0-1" x="66.116567" y="114.872149"/> | |
| 637 | +</g> | |
| 638 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 639 | +<use xlink:href="#glyph-0-25" x="70.922242" y="114.872149"/> | |
| 640 | +</g> | |
| 641 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 642 | +<use xlink:href="#glyph-0-4" x="75.015034" y="114.872149"/> | |
| 643 | +<use xlink:href="#glyph-0-17" x="79.912965" y="114.872149"/> | |
| 644 | +</g> | |
| 645 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 646 | +<use xlink:href="#glyph-0-16" x="83.88834" y="114.872149"/> | |
| 647 | +</g> | |
| 648 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 649 | +<use xlink:href="#glyph-0-26" x="88.400475" y="114.872149"/> | |
| 650 | +<use xlink:href="#glyph-0-5" x="90.916536" y="114.872149"/> | |
| 651 | +<use xlink:href="#glyph-0-7" x="93.264859" y="114.872149"/> | |
| 652 | +<use xlink:href="#glyph-0-16" x="97.290555" y="114.872149"/> | |
| 653 | +<use xlink:href="#glyph-0-6" x="101.869785" y="114.872149"/> | |
| 654 | +<use xlink:href="#glyph-0-5" x="105.107116" y="114.872149"/> | |
| 655 | +<use xlink:href="#glyph-0-4" x="107.455439" y="114.872149"/> | |
| 656 | +<use xlink:href="#glyph-0-14" x="112.35337" y="114.872149"/> | |
| 657 | +</g> | |
| 658 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 659 | +<use xlink:href="#glyph-1-7" x="119.960259" y="114.872149"/> | |
| 660 | +<use xlink:href="#glyph-1-22" x="122.677604" y="114.872149"/> | |
| 661 | +<use xlink:href="#glyph-1-16" x="127.625857" y="114.872149"/> | |
| 662 | +<use xlink:href="#glyph-1-2" x="132.448306" y="114.872149"/> | |
| 663 | +<use xlink:href="#glyph-1-1" x="136.968827" y="114.872149"/> | |
| 664 | +<use xlink:href="#glyph-1-0" x="140.180998" y="114.872149"/> | |
| 665 | +<use xlink:href="#glyph-1-11" x="143.208657" y="114.872149"/> | |
| 666 | +<use xlink:href="#glyph-1-10" x="145.523433" y="114.872149"/> | |
| 667 | +<use xlink:href="#glyph-1-1" x="150.085889" y="114.872149"/> | |
| 668 | +</g> | |
| 669 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 670 | +<use xlink:href="#glyph-1-13" x="152.62711" y="114.872149"/> | |
| 671 | +</g> | |
| 672 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 673 | +<use xlink:href="#glyph-1-1" x="157.432785" y="114.872149"/> | |
| 674 | +<use xlink:href="#glyph-1-16" x="160.644956" y="114.872149"/> | |
| 675 | +<use xlink:href="#glyph-1-10" x="165.467405" y="114.872149"/> | |
| 676 | +</g> | |
| 677 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 678 | +<use xlink:href="#glyph-1-13" x="169.945992" y="114.872149"/> | |
| 679 | +</g> | |
| 680 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 681 | +<use xlink:href="#glyph-1-15" x="174.751668" y="114.872149"/> | |
| 682 | +<use xlink:href="#glyph-1-16" x="178.878007" y="114.872149"/> | |
| 683 | +<use xlink:href="#glyph-1-10" x="183.700456" y="114.872149"/> | |
| 684 | +</g> | |
| 685 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 686 | +<use xlink:href="#glyph-1-13" x="188.179043" y="114.872149"/> | |
| 687 | +</g> | |
| 688 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 689 | +<use xlink:href="#glyph-1-2" x="192.984718" y="114.872149"/> | |
| 690 | +<use xlink:href="#glyph-1-24" x="197.50524" y="114.872149"/> | |
| 691 | +</g> | |
| 692 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 693 | +<use xlink:href="#glyph-1-24" x="201.38836" y="114.872149"/> | |
| 694 | +</g> | |
| 695 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 696 | +<use xlink:href="#glyph-1-21" x="205.27148" y="114.872149"/> | |
| 697 | +<use xlink:href="#glyph-1-4" x="209.833936" y="114.872149"/> | |
| 698 | +<use xlink:href="#glyph-1-13" x="213.750604" y="114.872149"/> | |
| 699 | +</g> | |
| 700 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 701 | +<use xlink:href="#glyph-1-4" x="218.564666" y="114.872149"/> | |
| 702 | +<use xlink:href="#glyph-1-10" x="222.481333" y="114.872149"/> | |
| 703 | +<use xlink:href="#glyph-1-1" x="227.043789" y="114.872149"/> | |
| 704 | +<use xlink:href="#glyph-1-15" x="230.25596" y="114.872149"/> | |
| 705 | +<use xlink:href="#glyph-1-11" x="234.382299" y="114.872149"/> | |
| 706 | +<use xlink:href="#glyph-1-24" x="236.697074" y="114.872149"/> | |
| 707 | +</g> | |
| 708 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 709 | +<use xlink:href="#glyph-1-10" x="240.580194" y="114.872149"/> | |
| 710 | +<use xlink:href="#glyph-1-4" x="245.14265" y="114.872149"/> | |
| 711 | +<use xlink:href="#glyph-1-18" x="249.059318" y="114.872149"/> | |
| 712 | +</g> | |
| 713 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 303.972656 128.425781 L 9.515625 128.425781 C 7.324219 128.425781 5.550781 130.203125 5.550781 132.394531 L 5.550781 141.386719 C 5.550781 143.578125 7.324219 145.351562 9.515625 145.351562 L 303.972656 145.351562 C 306.160156 145.351562 307.9375 143.578125 307.9375 141.386719 L 307.9375 132.394531 C 307.9375 130.203125 306.160156 128.425781 303.972656 128.425781 Z M 303.972656 128.425781 "/> | |
| 714 | +<g clip-path="url(#clip-5)"> | |
| 715 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.957871 -115.37775 L -147.957322 -115.37775 C -150.15958 -115.37775 -151.9418 -117.163895 -151.9418 -119.366153 L -151.9418 -128.402871 C -151.9418 -130.605129 -150.15958 -132.387348 -147.957322 -132.387348 L 147.957871 -132.387348 C 150.156203 -132.387348 151.942348 -130.605129 151.942348 -128.402871 L 151.942348 -119.366153 C 151.942348 -117.163895 150.156203 -115.37775 147.957871 -115.37775 Z M 147.957871 -115.37775 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 716 | +</g> | |
| 717 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 718 | +<use xlink:href="#glyph-0-27" x="29.17957" y="139.501185"/> | |
| 719 | +</g> | |
| 720 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 721 | +<use xlink:href="#glyph-0-1" x="33.884603" y="139.501185"/> | |
| 722 | +</g> | |
| 723 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 724 | +<use xlink:href="#glyph-0-13" x="38.690278" y="139.501185"/> | |
| 725 | +</g> | |
| 726 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 727 | +<use xlink:href="#glyph-0-16" x="43.428859" y="139.501185"/> | |
| 728 | +<use xlink:href="#glyph-0-3" x="48.008089" y="139.501185"/> | |
| 729 | +</g> | |
| 730 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 731 | +<use xlink:href="#glyph-0-16" x="51.144777" y="139.501185"/> | |
| 732 | +<use xlink:href="#glyph-0-17" x="55.724007" y="139.501185"/> | |
| 733 | +<use xlink:href="#glyph-0-6" x="59.741317" y="139.501185"/> | |
| 734 | +</g> | |
| 735 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 736 | +<use xlink:href="#glyph-0-11" x="62.827684" y="139.501185"/> | |
| 737 | +<use xlink:href="#glyph-0-3" x="67.474009" y="139.501185"/> | |
| 738 | +<use xlink:href="#glyph-0-5" x="70.828756" y="139.501185"/> | |
| 739 | +<use xlink:href="#glyph-0-7" x="73.177079" y="139.501185"/> | |
| 740 | +<use xlink:href="#glyph-0-6" x="77.202776" y="139.501185"/> | |
| 741 | +<use xlink:href="#glyph-0-5" x="80.440107" y="139.501185"/> | |
| 742 | +<use xlink:href="#glyph-0-28" x="82.78843" y="139.501185"/> | |
| 743 | +<use xlink:href="#glyph-0-22" x="87.77023" y="139.501185"/> | |
| 744 | +<use xlink:href="#glyph-0-9" x="92.533971" y="139.501185"/> | |
| 745 | +<use xlink:href="#glyph-0-7" x="97.180296" y="139.501185"/> | |
| 746 | +</g> | |
| 747 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 748 | +<use xlink:href="#glyph-0-10" x="104.007206" y="139.501185"/> | |
| 749 | +<use xlink:href="#glyph-0-23" x="108.963845" y="139.501185"/> | |
| 750 | +</g> | |
| 751 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 752 | +<use xlink:href="#glyph-0-29" x="113.719199" y="139.501185"/> | |
| 753 | +</g> | |
| 754 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 755 | +<use xlink:href="#glyph-0-7" x="117.988115" y="139.501185"/> | |
| 756 | +<use xlink:href="#glyph-0-5" x="122.013812" y="139.501185"/> | |
| 757 | +<use xlink:href="#glyph-0-28" x="124.362135" y="139.501185"/> | |
| 758 | +<use xlink:href="#glyph-0-22" x="129.343934" y="139.501185"/> | |
| 759 | +<use xlink:href="#glyph-0-9" x="134.107675" y="139.501185"/> | |
| 760 | +<use xlink:href="#glyph-0-7" x="138.754" y="139.501185"/> | |
| 761 | +</g> | |
| 762 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 763 | +<use xlink:href="#glyph-1-7" x="145.572524" y="139.501185"/> | |
| 764 | +<use xlink:href="#glyph-1-4" x="148.289869" y="139.501185"/> | |
| 765 | +<use xlink:href="#glyph-1-16" x="152.206536" y="139.501185"/> | |
| 766 | +<use xlink:href="#glyph-1-8" x="157.028985" y="139.501185"/> | |
| 767 | +<use xlink:href="#glyph-1-10" x="161.94369" y="139.501185"/> | |
| 768 | +<use xlink:href="#glyph-1-1" x="166.506146" y="139.501185"/> | |
| 769 | +<use xlink:href="#glyph-1-28" x="169.718316" y="139.501185"/> | |
| 770 | +<use xlink:href="#glyph-1-24" x="174.515605" y="139.501185"/> | |
| 771 | +<use xlink:href="#glyph-1-11" x="178.524528" y="139.501185"/> | |
| 772 | +<use xlink:href="#glyph-1-10" x="180.839303" y="139.501185"/> | |
| 773 | +</g> | |
| 774 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 775 | +<use xlink:href="#glyph-1-13" x="185.317891" y="139.501185"/> | |
| 776 | +</g> | |
| 777 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 778 | +<use xlink:href="#glyph-1-29" x="190.123566" y="139.501185"/> | |
| 779 | +<use xlink:href="#glyph-1-23" x="194.644088" y="139.501185"/> | |
| 780 | +<use xlink:href="#glyph-1-10" x="199.005259" y="139.501185"/> | |
| 781 | +</g> | |
| 782 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 783 | +<use xlink:href="#glyph-1-13" x="203.483847" y="139.501185"/> | |
| 784 | +</g> | |
| 785 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 786 | +<use xlink:href="#glyph-1-6" x="208.289522" y="139.501185"/> | |
| 787 | +<use xlink:href="#glyph-1-0" x="212.851978" y="139.501185"/> | |
| 788 | +<use xlink:href="#glyph-1-2" x="215.879638" y="139.501185"/> | |
| 789 | +<use xlink:href="#glyph-1-0" x="220.400159" y="139.501185"/> | |
| 790 | +</g> | |
| 791 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 792 | +<use xlink:href="#glyph-1-13" x="223.461366" y="139.501185"/> | |
| 793 | +</g> | |
| 794 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 795 | +<use xlink:href="#glyph-1-0" x="228.275428" y="139.501185"/> | |
| 796 | +</g> | |
| 797 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 798 | +<use xlink:href="#glyph-1-10" x="231.177285" y="139.501185"/> | |
| 799 | +<use xlink:href="#glyph-1-1" x="235.739741" y="139.501185"/> | |
| 800 | +<use xlink:href="#glyph-1-1" x="238.951911" y="139.501185"/> | |
| 801 | +</g> | |
| 802 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 803 | +<use xlink:href="#glyph-1-2" x="241.996344" y="139.501185"/> | |
| 804 | +<use xlink:href="#glyph-1-11" x="246.516866" y="139.501185"/> | |
| 805 | +<use xlink:href="#glyph-1-3" x="248.831642" y="139.501185"/> | |
| 806 | +<use xlink:href="#glyph-1-13" x="253.687638" y="139.501185"/> | |
| 807 | +</g> | |
| 808 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 809 | +<use xlink:href="#glyph-1-10" x="258.493314" y="139.501185"/> | |
| 810 | +</g> | |
| 811 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 812 | +<use xlink:href="#glyph-1-27" x="263.013836" y="139.501185"/> | |
| 813 | +<use xlink:href="#glyph-1-0" x="267.081466" y="139.501185"/> | |
| 814 | +<use xlink:href="#glyph-1-1" x="270.109126" y="139.501185"/> | |
| 815 | +</g> | |
| 816 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 817 | +<use xlink:href="#glyph-1-2" x="273.153559" y="139.501185"/> | |
| 818 | +<use xlink:href="#glyph-1-4" x="277.674081" y="139.501185"/> | |
| 819 | +<use xlink:href="#glyph-1-18" x="281.590748" y="139.501185"/> | |
| 820 | +</g> | |
| 821 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00168839 -8.703662 L -0.00168839 -15.275106 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 822 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550999 3.111308 C -2.083854 1.242725 -1.047497 0.363392 0.000636631 -0.00168839 C -1.047497 -0.362843 -2.083854 -1.246102 -2.550999 -3.110759 " transform="matrix(0, 0.995072, 0.995072, 0, 156.743868, 29.21421)"/> | |
| 823 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00168839 -33.48201 L -0.00168839 -40.053455 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 824 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549401 3.111308 C -2.086181 1.242725 -1.045898 0.363392 -0.00169039 -0.00168839 C -1.045898 -0.362843 -2.086181 -1.246102 -2.549401 -3.110759 " transform="matrix(0, 0.995072, 0.995072, 0, 156.743868, 53.86887)"/> | |
| 825 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00168839 -58.256433 L -0.00168839 -64.831803 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 826 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551748 3.111308 C -2.084602 1.242725 -1.04432 0.363392 -0.000111817 -0.00168839 C -1.04432 -0.362843 -2.084602 -1.246102 -2.551748 -3.110759 " transform="matrix(0, 0.995072, 0.995072, 0, 156.743868, 78.523549)"/> | |
| 827 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00168839 -83.034782 L -0.00168839 -89.606226 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 828 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550159 3.111308 C -2.083014 1.242725 -1.046657 0.363392 0.00147676 -0.00168839 C -1.046657 -0.362843 -2.083014 -1.246102 -2.550159 -3.110759 " transform="matrix(0, 0.995072, 0.995072, 0, 156.743868, 103.178218)"/> | |
| 829 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00168839 -107.809205 L -0.00168839 -114.384575 " transform="matrix(0.995072, 0, 0, -0.995072, 156.743868, 13.61657)"/> | |
| 830 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548571 3.111308 C -2.085351 1.242725 -1.045068 0.363392 -0.000860265 -0.00168839 C -1.045068 -0.362843 -2.085351 -1.246102 -2.548571 -3.110759 " transform="matrix(0, 0.995072, 0.995072, 0, 156.743868, 127.832887)"/> | |
| 831 | +</svg> | |
added
dist/assets/fig/d939dd935cc84036.svg
+465 −0
@@ -0,0 +1,465 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="329.786pt" height="127.999pt" viewBox="0 0 329.786 127.999"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 4.375 -5.1875 L 3.109375 -5.1875 L 2.1875 -0.953125 L 1.203125 -5.1875 L -0.09375 -5.1875 L 1.40625 0 L 2.921875 0 Z M 4.375 -5.1875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.609375 -1.15625 L 3.609375 -2.6875 C 3.609375 -3.609375 3.109375 -4.09375 1.953125 -4.09375 C 1.515625 -4.09375 0.96875 -4 0.46875 -3.8125 L 0.734375 -3.03125 C 1.125 -3.171875 1.515625 -3.234375 1.78125 -3.234375 C 2.265625 -3.234375 2.453125 -3.09375 2.453125 -2.625 L 2.453125 -2.453125 L 2.046875 -2.453125 C 0.84375 -2.453125 0.171875 -1.984375 0.171875 -1.109375 C 0.171875 -0.390625 0.6875 0.125 1.46875 0.125 C 1.953125 0.125 2.390625 -0.03125 2.671875 -0.46875 C 2.859375 -0.078125 3.171875 0.0625 3.625 0.109375 L 3.875 -0.671875 C 3.6875 -0.734375 3.609375 -0.84375 3.609375 -1.15625 Z M 1.8125 -0.71875 C 1.53125 -0.71875 1.359375 -0.90625 1.359375 -1.21875 C 1.359375 -1.609375 1.609375 -1.796875 2.15625 -1.796875 L 2.453125 -1.796875 L 2.453125 -1.09375 C 2.3125 -0.859375 2.09375 -0.71875 1.8125 -0.71875 Z M 1.8125 -0.71875 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.5 0.125 C 1.78125 0.125 2.046875 0.0625 2.21875 0 L 1.984375 -0.84375 C 1.9375 -0.828125 1.875 -0.8125 1.796875 -0.8125 C 1.65625 -0.8125 1.59375 -0.890625 1.59375 -1.0625 L 1.59375 -5.6875 L 0.40625 -5.546875 L 0.40625 -1.015625 C 0.40625 -0.28125 0.8125 0.125 1.5 0.125 Z M 1.5 0.125 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.921875 -2.0625 C 3.921875 -3.359375 3.234375 -4.09375 2.09375 -4.09375 C 0.890625 -4.09375 0.234375 -3.15625 0.234375 -1.96875 C 0.234375 -0.71875 0.90625 0.125 2.234375 0.125 C 2.875 0.125 3.390625 -0.109375 3.78125 -0.421875 L 3.296875 -1.078125 C 2.953125 -0.84375 2.671875 -0.734375 2.34375 -0.734375 C 1.859375 -0.734375 1.53125 -0.921875 1.453125 -1.640625 L 3.90625 -1.640625 C 3.921875 -1.765625 3.921875 -1.9375 3.921875 -2.0625 Z M 2.765625 -2.34375 L 1.4375 -2.34375 C 1.5 -3.0625 1.734375 -3.3125 2.125 -3.3125 C 2.59375 -3.3125 2.765625 -2.9375 2.765625 -2.40625 Z M 2.765625 -2.34375 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 3.796875 -3.96875 L 2.609375 -3.96875 L 2.609375 -1.21875 C 2.4375 -0.90625 2.21875 -0.75 1.96875 -0.75 C 1.71875 -0.75 1.59375 -0.875 1.59375 -1.265625 L 1.59375 -3.96875 L 0.40625 -3.96875 L 0.40625 -1.125 C 0.40625 -0.359375 0.765625 0.125 1.515625 0.125 C 2.046875 0.125 2.4375 -0.078125 2.71875 -0.5 L 2.765625 0 L 3.796875 0 Z M 3.796875 -3.96875 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.609375 -4.09375 C 2.15625 -4.09375 1.765625 -3.75 1.59375 -3.203125 L 1.484375 -3.96875 L 0.453125 -3.96875 L 0.453125 0 L 1.640625 0 L 1.640625 -2 C 1.78125 -2.59375 1.96875 -2.9375 2.46875 -2.9375 C 2.59375 -2.9375 2.6875 -2.921875 2.828125 -2.890625 L 3.015625 -4.03125 C 2.875 -4.078125 2.765625 -4.09375 2.609375 -4.09375 Z M 2.609375 -4.09375 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 1.59375 -6.421875 C 0.828125 -5.390625 0.140625 -4.40625 0.140625 -2.625 C 0.140625 -0.828125 0.828125 0.15625 1.59375 1.1875 L 2.34375 0.6875 C 1.640625 -0.3125 1.328125 -1.234375 1.328125 -2.625 C 1.328125 -4 1.640625 -4.921875 2.34375 -5.921875 Z M 1.59375 -6.421875 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 0.84375 -6.421875 L 0.09375 -5.921875 C 0.78125 -4.921875 1.09375 -4 1.09375 -2.625 C 1.09375 -1.234375 0.78125 -0.3125 0.09375 0.6875 L 0.84375 1.1875 C 1.59375 0.15625 2.296875 -0.828125 2.296875 -2.625 C 2.296875 -4.40625 1.59375 -5.390625 0.84375 -6.421875 Z M 0.84375 -6.421875 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.25 0 L 4.640625 0 L 3.328125 -2.203125 C 4 -2.515625 4.3125 -2.921875 4.3125 -3.609375 C 4.3125 -4.6875 3.59375 -5.1875 2.1875 -5.1875 L 0.484375 -5.1875 L 0.484375 0 L 1.71875 0 L 1.71875 -1.984375 L 2.1875 -1.984375 Z M 1.71875 -4.328125 L 2.15625 -4.328125 C 2.765625 -4.328125 3.046875 -4.109375 3.046875 -3.609375 C 3.046875 -3.0625 2.765625 -2.828125 2.234375 -2.828125 L 1.71875 -2.828125 Z M 1.71875 -4.328125 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 4.484375 -5.1875 L 3.390625 -5.1875 L 3.390625 -3.09375 C 3.390625 -2.265625 3.484375 -1.578125 3.546875 -1.15625 L 2.015625 -5.1875 L 0.484375 -5.1875 L 0.484375 0 L 1.578125 0 L 1.578125 -1.90625 C 1.578125 -2.859375 1.484375 -3.546875 1.421875 -4.015625 L 2.921875 0 L 4.484375 0 Z M 4.484375 -5.1875 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.671875 -5.1875 L 0.484375 -5.1875 L 0.484375 0 L 3.671875 0 L 3.671875 -0.890625 L 1.71875 -0.890625 L 1.71875 -2.203125 L 3.3125 -2.203125 L 3.3125 -3.0625 L 1.71875 -3.0625 L 1.71875 -4.3125 L 3.546875 -4.3125 Z M 3.671875 -5.1875 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 4.03125 -5.1875 L 0.0625 -5.1875 L 0.0625 -4.25 L 1.40625 -4.25 L 1.40625 0 L 2.640625 0 L 2.640625 -4.25 L 3.921875 -4.25 Z M 4.03125 -5.1875 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.734375 -5.3125 C 1.34375 -5.3125 0.25 -4.359375 0.25 -2.59375 C 0.25 -0.828125 1.046875 0.125 2.625 0.125 C 3.28125 0.125 3.953125 -0.078125 4.484375 -0.421875 L 4.484375 -2.984375 L 2.5 -2.984375 L 2.625 -2.125 L 3.296875 -2.125 L 3.296875 -0.9375 C 3.078125 -0.828125 2.859375 -0.765625 2.59375 -0.765625 C 1.875 -0.765625 1.515625 -1.234375 1.515625 -2.59375 C 1.515625 -3.890625 2.0625 -4.421875 2.78125 -4.421875 C 3.203125 -4.421875 3.484375 -4.296875 3.84375 -4.03125 L 4.453125 -4.671875 C 4.03125 -5.046875 3.484375 -5.3125 2.734375 -5.3125 Z M 2.734375 -5.3125 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 3.21875 0 L 4.515625 0 L 2.953125 -5.1875 L 1.46875 -5.1875 L -0.09375 0 L 1.171875 0 L 1.4375 -1.109375 L 2.953125 -1.109375 Z M 1.640625 -2 L 2.1875 -4.296875 L 2.734375 -2 Z M 1.640625 -2 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-1-0"> | |
| 48 | +<path d="M 6.484375 -5.328125 C 6.484375 -5.359375 6.46875 -5.4375 6.359375 -5.4375 C 6.265625 -5.4375 6.296875 -5.421875 5.71875 -5.421875 C 5.21875 -5.421875 5 -5.4375 4.96875 -5.4375 C 4.921875 -5.4375 4.8125 -5.4375 4.8125 -5.296875 C 4.8125 -5.1875 4.90625 -5.171875 4.953125 -5.171875 C 5.15625 -5.15625 5.265625 -5.078125 5.265625 -4.9375 C 5.265625 -4.8125 5.203125 -4.703125 5.15625 -4.640625 L 2.5625 -0.71875 L 1.90625 -4.828125 C 1.890625 -4.890625 1.890625 -4.9375 1.890625 -4.953125 C 1.890625 -5.0625 2.015625 -5.171875 2.421875 -5.171875 C 2.515625 -5.171875 2.609375 -5.171875 2.609375 -5.328125 C 2.609375 -5.359375 2.59375 -5.4375 2.484375 -5.4375 C 2.421875 -5.4375 2.09375 -5.421875 2.03125 -5.421875 L 1.53125 -5.421875 C 0.8125 -5.421875 0.703125 -5.4375 0.640625 -5.4375 C 0.609375 -5.4375 0.484375 -5.4375 0.484375 -5.296875 C 0.484375 -5.171875 0.59375 -5.171875 0.703125 -5.171875 C 1.109375 -5.171875 1.125 -5.109375 1.15625 -4.90625 L 1.9375 -0.0625 C 1.953125 0.109375 1.96875 0.171875 2.125 0.171875 C 2.25 0.171875 2.296875 0.09375 2.359375 0.015625 L 5.34375 -4.5 C 5.734375 -5.09375 6.046875 -5.15625 6.359375 -5.171875 C 6.453125 -5.1875 6.484375 -5.265625 6.484375 -5.328125 Z M 6.484375 -5.328125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-2-0"> | |
| 51 | +<path d="M 2.140625 -4.03125 C 1.078125 -4.03125 0.421875 -3.203125 0.421875 -1.9375 C 0.421875 -0.671875 1.078125 0.09375 2.140625 0.09375 C 2.609375 0.09375 3 -0.0625 3.359375 -0.34375 L 3.03125 -0.796875 C 2.734375 -0.59375 2.5 -0.5 2.171875 -0.5 C 1.5625 -0.5 1.171875 -0.921875 1.171875 -1.953125 C 1.171875 -2.984375 1.5625 -3.46875 2.171875 -3.46875 C 2.5 -3.46875 2.75 -3.375 3.03125 -3.171875 L 3.359375 -3.609375 C 2.984375 -3.921875 2.609375 -4.03125 2.140625 -4.03125 Z M 2.140625 -4.03125 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-2-1"> | |
| 54 | +<path d="M 3.6875 -2.09375 C 3.6875 -3.296875 3.125 -4.03125 2.0625 -4.03125 C 1.046875 -4.03125 0.421875 -3.15625 0.421875 -1.9375 C 0.421875 -0.6875 1.0625 0.09375 2.171875 0.09375 C 2.71875 0.09375 3.15625 -0.09375 3.546875 -0.40625 L 3.25 -0.8125 C 2.90625 -0.578125 2.609375 -0.46875 2.21875 -0.46875 C 1.65625 -0.46875 1.234375 -0.828125 1.15625 -1.734375 L 3.671875 -1.734375 C 3.6875 -1.828125 3.6875 -1.953125 3.6875 -2.09375 Z M 3.015625 -2.25 L 1.15625 -2.25 C 1.21875 -3.125 1.5625 -3.484375 2.078125 -3.484375 C 2.703125 -3.484375 3.015625 -3.0625 3.015625 -2.296875 Z M 3.015625 -2.25 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-2-2"> | |
| 57 | +<path d="M 3.140625 -3.9375 L 3.078125 -3.5 C 2.8125 -3.796875 2.46875 -4.03125 1.96875 -4.03125 C 1.015625 -4.03125 0.421875 -3.15625 0.421875 -1.953125 C 0.421875 -0.71875 0.953125 0.09375 1.921875 0.09375 C 2.390625 0.09375 2.78125 -0.140625 3.03125 -0.53125 L 3.03125 1.515625 L 3.734375 1.59375 L 3.734375 -3.9375 Z M 2.0625 -0.453125 C 1.5 -0.453125 1.171875 -0.921875 1.171875 -1.96875 C 1.171875 -3 1.53125 -3.484375 2.125 -3.484375 C 2.515625 -3.484375 2.796875 -3.28125 3.03125 -2.96875 L 3.03125 -1.046875 C 2.78125 -0.671875 2.5 -0.453125 2.0625 -0.453125 Z M 2.0625 -0.453125 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-2-3"> | |
| 60 | +<path d="M 3.609375 -3.9375 L 2.921875 -3.9375 L 2.921875 -1.125 C 2.6875 -0.734375 2.359375 -0.453125 1.9375 -0.453125 C 1.515625 -0.453125 1.328125 -0.65625 1.328125 -1.1875 L 1.328125 -3.9375 L 0.640625 -3.9375 L 0.640625 -1.109375 C 0.640625 -0.34375 1.0625 0.09375 1.75 0.09375 C 2.3125 0.09375 2.671875 -0.140625 2.96875 -0.609375 L 3.03125 0 L 3.609375 0 Z M 3.609375 -3.9375 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-2-4"> | |
| 63 | +<path d="M 1.46875 0.09375 C 1.671875 0.09375 1.859375 0.03125 2.015625 -0.046875 L 1.828125 -0.53125 C 1.765625 -0.5 1.671875 -0.484375 1.578125 -0.484375 C 1.40625 -0.484375 1.328125 -0.578125 1.328125 -0.796875 L 1.328125 -5.609375 L 0.640625 -5.53125 L 0.640625 -0.78125 C 0.640625 -0.21875 0.96875 0.09375 1.46875 0.09375 Z M 1.46875 0.09375 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-2-5"> | |
| 66 | +<path d="M 0.890625 -5.640625 C 0.625 -5.640625 0.40625 -5.421875 0.40625 -5.171875 C 0.40625 -5.015625 0.46875 -4.890625 0.59375 -4.796875 L 0.296875 -3.671875 L 0.75 -3.671875 L 1.25 -4.734375 C 1.34375 -4.9375 1.375 -5.046875 1.375 -5.171875 C 1.375 -5.421875 1.15625 -5.640625 0.890625 -5.640625 Z M 0.890625 -5.640625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-2-6"> | |
| 69 | +<path d="M 1.03125 -5.84375 C 0.734375 -5.84375 0.546875 -5.640625 0.546875 -5.359375 C 0.546875 -5.109375 0.734375 -4.90625 1.03125 -4.90625 C 1.3125 -4.90625 1.515625 -5.109375 1.515625 -5.359375 C 1.515625 -5.640625 1.3125 -5.84375 1.03125 -5.84375 Z M 1.375 -3.9375 L 0.6875 -3.9375 L 0.6875 0 L 1.375 0 Z M 1.375 -3.9375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-2-7"> | |
| 72 | +<path d="M 2.546875 -4.03125 C 2.03125 -4.03125 1.609375 -3.765625 1.34375 -3.359375 L 1.28125 -3.9375 L 0.6875 -3.9375 L 0.6875 0 L 1.375 0 L 1.375 -2.796875 C 1.640625 -3.21875 1.9375 -3.5 2.375 -3.5 C 2.765625 -3.5 3 -3.328125 3 -2.734375 L 3 0 L 3.6875 0 L 3.6875 -2.828125 C 3.6875 -3.578125 3.265625 -4.03125 2.546875 -4.03125 Z M 2.546875 -4.03125 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-2-8"> | |
| 75 | +<path d="M 3.609375 -3.9375 L 2.875 -3.9375 L 1.859375 -0.609375 L 0.828125 -3.9375 L 0.078125 -3.9375 L 1.4375 0 L 2.265625 0 Z M 3.609375 -3.9375 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-2-9"> | |
| 78 | +<path d="M 1.78125 -4.03125 C 0.96875 -4.03125 0.359375 -3.578125 0.359375 -2.953125 C 0.359375 -2.390625 0.703125 -2.03125 1.546875 -1.796875 C 2.3125 -1.609375 2.5 -1.453125 2.5 -1.0625 C 2.5 -0.6875 2.171875 -0.46875 1.65625 -0.46875 C 1.234375 -0.46875 0.875 -0.609375 0.546875 -0.84375 L 0.1875 -0.421875 C 0.53125 -0.125 1.015625 0.09375 1.671875 0.09375 C 2.484375 0.09375 3.234375 -0.28125 3.234375 -1.109375 C 3.234375 -1.796875 2.75 -2.125 1.921875 -2.328125 C 1.28125 -2.5 1.078125 -2.65625 1.078125 -2.96875 C 1.078125 -3.28125 1.359375 -3.484375 1.796875 -3.484375 C 2.171875 -3.484375 2.484375 -3.375 2.828125 -3.15625 L 3.125 -3.578125 C 2.75 -3.875 2.328125 -4.03125 1.78125 -4.03125 Z M 1.78125 -4.03125 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-2-10"> | |
| 81 | +<path d="M 2.4375 -0.640625 C 2.25 -0.53125 2.09375 -0.484375 1.921875 -0.484375 C 1.578125 -0.484375 1.4375 -0.671875 1.4375 -1.0625 L 1.4375 -3.40625 L 2.3125 -3.40625 L 2.375 -3.9375 L 1.4375 -3.9375 L 1.4375 -4.921875 L 0.75 -4.828125 L 0.75 -3.9375 L 0.0625 -3.9375 L 0.0625 -3.40625 L 0.75 -3.40625 L 0.75 -1.03125 C 0.75 -0.296875 1.15625 0.09375 1.8125 0.09375 C 2.15625 0.09375 2.4375 0 2.703125 -0.171875 Z M 2.4375 -0.640625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-2-11"> | |
| 84 | +<path d="M 0.453125 -2.046875 L 2.5625 -2.046875 L 2.5625 -2.640625 L 0.453125 -2.640625 Z M 0.453125 -2.046875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-2-12"> | |
| 87 | +<path d="M 2.40625 -4.03125 C 1.921875 -4.03125 1.5625 -3.734375 1.34375 -3.140625 L 1.28125 -3.9375 L 0.6875 -3.9375 L 0.6875 0 L 1.375 0 L 1.375 -2.25 C 1.546875 -3.015625 1.828125 -3.359375 2.3125 -3.359375 C 2.46875 -3.359375 2.546875 -3.34375 2.671875 -3.3125 L 2.796875 -3.984375 C 2.671875 -4.015625 2.53125 -4.03125 2.40625 -4.03125 Z M 2.40625 -4.03125 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-2-13"> | |
| 90 | +<path d="M 2.5 -4.03125 C 2.046875 -4.03125 1.625 -3.8125 1.328125 -3.40625 L 1.28125 -3.9375 L 0.6875 -3.9375 L 0.6875 1.59375 L 1.375 1.515625 L 1.375 -0.359375 C 1.625 -0.046875 1.984375 0.09375 2.40625 0.09375 C 3.421875 0.09375 3.953125 -0.78125 3.953125 -1.96875 C 3.953125 -3.21875 3.546875 -4.03125 2.5 -4.03125 Z M 2.25 -0.46875 C 1.890625 -0.46875 1.578125 -0.640625 1.375 -0.953125 L 1.375 -2.875 C 1.59375 -3.1875 1.90625 -3.484375 2.328125 -3.484375 C 2.921875 -3.484375 3.21875 -3 3.21875 -1.96875 C 3.21875 -0.9375 2.875 -0.46875 2.25 -0.46875 Z M 2.25 -0.46875 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-2-14"> | |
| 93 | +<path d="M 2.09375 -5.375 L 3.03125 -4.75 L 3.328125 -5.078125 L 2.3125 -5.921875 L 1.859375 -5.921875 L 0.84375 -5.078125 L 1.140625 -4.75 Z M 3.6875 -2.09375 C 3.6875 -3.296875 3.125 -4.03125 2.0625 -4.03125 C 1.046875 -4.03125 0.421875 -3.15625 0.421875 -1.9375 C 0.421875 -0.6875 1.0625 0.09375 2.171875 0.09375 C 2.71875 0.09375 3.15625 -0.09375 3.546875 -0.40625 L 3.25 -0.8125 C 2.90625 -0.578125 2.609375 -0.46875 2.21875 -0.46875 C 1.65625 -0.46875 1.234375 -0.828125 1.15625 -1.734375 L 3.671875 -1.734375 C 3.6875 -1.828125 3.6875 -1.953125 3.6875 -2.09375 Z M 3.015625 -2.25 L 1.15625 -2.25 C 1.21875 -3.125 1.5625 -3.484375 2.078125 -3.484375 C 2.703125 -3.484375 3.015625 -3.0625 3.015625 -2.296875 Z M 3.015625 -2.25 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-2-15"> | |
| 96 | +<path d="M 2.890625 -5.140625 L 1.40625 -6 L 1.09375 -5.421875 L 2.671875 -4.78125 Z M 3.328125 -0.921875 L 3.328125 -2.71875 C 3.328125 -3.546875 2.890625 -4.03125 1.953125 -4.03125 C 1.5 -4.03125 1.0625 -3.9375 0.578125 -3.765625 L 0.75 -3.265625 C 1.15625 -3.390625 1.53125 -3.46875 1.8125 -3.46875 C 2.359375 -3.46875 2.640625 -3.265625 2.640625 -2.6875 L 2.640625 -2.40625 L 2.03125 -2.40625 C 0.9375 -2.40625 0.296875 -1.953125 0.296875 -1.09375 C 0.296875 -0.390625 0.765625 0.09375 1.5625 0.09375 C 2.03125 0.09375 2.453125 -0.09375 2.734375 -0.5 C 2.859375 -0.109375 3.109375 0.046875 3.5 0.09375 L 3.65625 -0.390625 C 3.453125 -0.46875 3.328125 -0.578125 3.328125 -0.921875 Z M 1.71875 -0.421875 C 1.265625 -0.421875 1.03125 -0.671875 1.03125 -1.140625 C 1.03125 -1.671875 1.40625 -1.953125 2.125 -1.953125 L 2.640625 -1.953125 L 2.640625 -1.046875 C 2.421875 -0.625 2.125 -0.421875 1.71875 -0.421875 Z M 1.71875 -0.421875 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-2-16"> | |
| 99 | +<path d="M 3.328125 -0.921875 L 3.328125 -2.71875 C 3.328125 -3.546875 2.890625 -4.03125 1.953125 -4.03125 C 1.5 -4.03125 1.0625 -3.9375 0.578125 -3.765625 L 0.75 -3.265625 C 1.15625 -3.390625 1.53125 -3.46875 1.8125 -3.46875 C 2.359375 -3.46875 2.640625 -3.265625 2.640625 -2.6875 L 2.640625 -2.40625 L 2.03125 -2.40625 C 0.9375 -2.40625 0.296875 -1.953125 0.296875 -1.09375 C 0.296875 -0.390625 0.765625 0.09375 1.5625 0.09375 C 2.03125 0.09375 2.453125 -0.09375 2.734375 -0.5 C 2.859375 -0.109375 3.109375 0.046875 3.5 0.09375 L 3.65625 -0.390625 C 3.453125 -0.46875 3.328125 -0.578125 3.328125 -0.921875 Z M 1.71875 -0.421875 C 1.265625 -0.421875 1.03125 -0.671875 1.03125 -1.140625 C 1.03125 -1.671875 1.40625 -1.953125 2.125 -1.953125 L 2.640625 -1.953125 L 2.640625 -1.046875 C 2.421875 -0.625 2.125 -0.421875 1.71875 -0.421875 Z M 1.71875 -0.421875 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-2-17"> | |
| 102 | +<path d="M 3.609375 -3.9375 L 2.890625 -3.9375 L 1.859375 -0.5 L 0.8125 -3.9375 L 0.078125 -3.9375 L 1.40625 0 L 1.625 0 C 1.40625 0.609375 1.1875 0.921875 0.375 1.0625 L 0.453125 1.59375 C 1.546875 1.46875 2.015625 0.859375 2.296875 0.015625 Z M 3.609375 -3.9375 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-2-18"> | |
| 105 | +<path d="M 3.03125 -5.609375 L 3.03125 -3.546875 C 2.78125 -3.828125 2.4375 -4.03125 1.96875 -4.03125 C 1.015625 -4.03125 0.421875 -3.15625 0.421875 -1.953125 C 0.421875 -0.71875 0.953125 0.09375 1.921875 0.09375 C 2.40625 0.09375 2.796875 -0.15625 3.046875 -0.546875 L 3.125 0 L 3.734375 0 L 3.734375 -5.53125 Z M 2.0625 -0.453125 C 1.5 -0.453125 1.171875 -0.921875 1.171875 -1.96875 C 1.171875 -3 1.53125 -3.484375 2.125 -3.484375 C 2.515625 -3.484375 2.796875 -3.28125 3.03125 -2.96875 L 3.03125 -1.046875 C 2.78125 -0.671875 2.5 -0.453125 2.0625 -0.453125 Z M 2.0625 -0.453125 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-2-19"> | |
| 108 | +<path d="M 2.21875 -2.109375 L 3.4375 -3.9375 L 2.65625 -3.9375 L 1.828125 -2.5 L 1 -3.9375 L 0.1875 -3.9375 L 1.421875 -2.078125 L 0.03125 0 L 0.8125 0 L 1.796875 -1.671875 L 2.765625 0 L 3.59375 0 Z M 2.21875 -2.109375 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-2-20"> | |
| 111 | +<path d="M 2.1875 -4.03125 C 1.0625 -4.03125 0.421875 -3.1875 0.421875 -1.96875 C 0.421875 -0.71875 1.0625 0.09375 2.1875 0.09375 C 3.296875 0.09375 3.9375 -0.75 3.9375 -1.96875 C 3.9375 -3.21875 3.3125 -4.03125 2.1875 -4.03125 Z M 2.1875 -3.484375 C 2.84375 -3.484375 3.203125 -3 3.203125 -1.96875 C 3.203125 -0.9375 2.84375 -0.46875 2.1875 -0.46875 C 1.53125 -0.46875 1.171875 -0.9375 1.171875 -1.96875 C 1.171875 -3 1.53125 -3.484375 2.1875 -3.484375 Z M 2.1875 -3.484375 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-2-21"> | |
| 114 | +<path d="M 3.6875 -4.390625 C 3.21875 -4.171875 2.859375 -4.015625 1.890625 -4.03125 C 1.015625 -4.03125 0.359375 -3.46875 0.359375 -2.65625 C 0.359375 -2.140625 0.578125 -1.796875 1.03125 -1.5625 C 0.75 -1.375 0.59375 -1.125 0.59375 -0.875 C 0.59375 -0.46875 0.90625 -0.125 1.609375 -0.125 L 2.234375 -0.125 C 2.734375 -0.125 3.03125 0.0625 3.03125 0.4375 C 3.03125 0.84375 2.734375 1.0625 1.875 1.0625 C 1.015625 1.0625 0.8125 0.84375 0.8125 0.390625 L 0.1875 0.390625 C 0.1875 1.203125 0.59375 1.59375 1.875 1.59375 C 3.09375 1.59375 3.734375 1.15625 3.734375 0.390625 C 3.734375 -0.234375 3.1875 -0.703125 2.375 -0.703125 L 1.75 -0.703125 C 1.34375 -0.703125 1.234375 -0.84375 1.234375 -1.015625 C 1.234375 -1.15625 1.3125 -1.296875 1.421875 -1.390625 C 1.59375 -1.328125 1.75 -1.3125 1.9375 -1.3125 C 2.875 -1.3125 3.4375 -1.875 3.4375 -2.65625 C 3.4375 -3.109375 3.203125 -3.4375 2.734375 -3.640625 C 3.1875 -3.640625 3.5625 -3.65625 3.890625 -3.765625 Z M 1.890625 -3.546875 C 2.453125 -3.546875 2.734375 -3.234375 2.734375 -2.671875 C 2.734375 -2.09375 2.4375 -1.765625 1.90625 -1.765625 C 1.359375 -1.765625 1.0625 -2.140625 1.0625 -2.65625 C 1.0625 -3.171875 1.359375 -3.546875 1.890625 -3.546875 Z M 1.890625 -3.546875 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-2-22"> | |
| 117 | +<path d="M 2.5 -4.03125 C 2.015625 -4.03125 1.640625 -3.8125 1.375 -3.453125 L 1.375 -5.609375 L 0.6875 -5.53125 L 0.6875 0 L 1.296875 0 L 1.359375 -0.4375 C 1.625 -0.109375 1.96875 0.09375 2.40625 0.09375 C 3.375 0.09375 3.953125 -0.734375 3.953125 -1.96875 C 3.953125 -3.296875 3.390625 -4.03125 2.5 -4.03125 Z M 2.25 -0.453125 C 1.890625 -0.453125 1.578125 -0.671875 1.375 -0.984375 L 1.375 -2.875 C 1.578125 -3.1875 1.859375 -3.484375 2.296875 -3.484375 C 2.859375 -3.484375 3.21875 -3.09375 3.21875 -1.96875 C 3.21875 -0.890625 2.828125 -0.453125 2.25 -0.453125 Z M 2.25 -0.453125 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-2-23"> | |
| 120 | +<path d="M 3.5 0 L 4.34375 0 L 2.953125 -2.3125 C 3.6875 -2.53125 4.0625 -2.96875 4.0625 -3.703125 C 4.0625 -4.65625 3.390625 -5.15625 2.109375 -5.15625 L 0.75 -5.15625 L 0.75 0 L 1.453125 0 L 1.453125 -2.1875 L 2.265625 -2.1875 Z M 1.453125 -2.734375 L 1.453125 -4.609375 L 2.09375 -4.609375 C 2.9375 -4.609375 3.3125 -4.34375 3.3125 -3.703125 C 3.3125 -3 2.890625 -2.734375 2.171875 -2.734375 Z M 1.453125 -2.734375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-2-24"> | |
| 123 | +<path d="M 4.359375 -5.15625 L 3.703125 -5.15625 L 3.703125 -2.34375 C 3.703125 -1.71875 3.78125 -0.890625 3.796875 -0.765625 L 1.671875 -5.15625 L 0.75 -5.15625 L 0.75 0 L 1.421875 0 L 1.421875 -2.359375 C 1.421875 -3.328125 1.359375 -3.953125 1.3125 -4.375 L 3.40625 0 L 4.359375 0 Z M 4.359375 -5.15625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-2-25"> | |
| 126 | +<path d="M 3.546875 -5.15625 L 0.75 -5.15625 L 0.75 0 L 3.59375 0 L 3.59375 -0.5625 L 1.453125 -0.5625 L 1.453125 -2.328125 L 3.203125 -2.328125 L 3.203125 -2.90625 L 1.453125 -2.90625 L 1.453125 -4.59375 L 3.453125 -4.59375 Z M 3.546875 -5.15625 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-2-26"> | |
| 129 | +<path d="M 3.796875 -5.15625 L 0.109375 -5.15625 L 0.109375 -4.546875 L 1.578125 -4.546875 L 1.578125 0 L 2.296875 0 L 2.296875 -4.546875 L 3.71875 -4.546875 Z M 3.796875 -5.15625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-2-27"> | |
| 132 | +<path d="M 2.65625 -5.25 C 1.453125 -5.25 0.40625 -4.3125 0.40625 -2.578125 C 0.40625 -0.796875 1.25 0.09375 2.578125 0.09375 C 3.234375 0.09375 3.765625 -0.09375 4.265625 -0.359375 L 4.265625 -2.859375 L 2.5625 -2.859375 L 2.640625 -2.28125 L 3.5625 -2.28125 L 3.5625 -0.71875 C 3.265625 -0.5625 2.921875 -0.5 2.578125 -0.5 C 1.671875 -0.5 1.171875 -1.09375 1.171875 -2.578125 C 1.171875 -4.09375 1.90625 -4.65625 2.65625 -4.65625 C 3.109375 -4.65625 3.421875 -4.53125 3.78125 -4.25 L 4.203125 -4.671875 C 3.75 -5.046875 3.328125 -5.25 2.65625 -5.25 Z M 2.65625 -5.25 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-2-28"> | |
| 135 | +<path d="M 3.5 0 L 4.25 0 L 2.59375 -5.15625 L 1.703125 -5.15625 L 0.046875 0 L 0.765625 0 L 1.15625 -1.296875 L 3.109375 -1.296875 Z M 1.328125 -1.875 L 2.140625 -4.5625 L 2.9375 -1.875 Z M 1.328125 -1.875 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-3-0"> | |
| 138 | +<path d="M 5.3125 -6.5 C 5.296875 -6.53125 5.265625 -6.609375 5.15625 -6.578125 C 5.0625 -6.5625 5.09375 -6.5625 4.53125 -6.4375 C 4.03125 -6.34375 3.828125 -6.3125 3.796875 -6.3125 C 3.75 -6.296875 3.640625 -6.28125 3.671875 -6.140625 C 3.6875 -6.03125 3.796875 -6.03125 3.84375 -6.046875 C 4.03125 -6.0625 4.15625 -6.03125 4.1875 -5.890625 C 4.203125 -5.765625 4.171875 -5.640625 4.125 -5.5625 L 2.375 -1.203125 L 0.921875 -5.109375 C 0.890625 -5.171875 0.890625 -5.21875 0.875 -5.234375 C 0.859375 -5.34375 0.953125 -5.453125 1.359375 -5.546875 C 1.453125 -5.5625 1.546875 -5.578125 1.515625 -5.734375 C 1.5 -5.765625 1.46875 -5.84375 1.359375 -5.8125 C 1.296875 -5.8125 0.96875 -5.71875 0.90625 -5.71875 L 0.421875 -5.609375 C -0.28125 -5.46875 -0.390625 -5.46875 -0.453125 -5.453125 C -0.484375 -5.453125 -0.609375 -5.421875 -0.578125 -5.28125 C -0.546875 -5.15625 -0.4375 -5.1875 -0.328125 -5.203125 C 0.078125 -5.28125 0.09375 -5.234375 0.171875 -5.046875 L 1.890625 -0.453125 C 1.9375 -0.28125 1.96875 -0.21875 2.109375 -0.25 C 2.234375 -0.265625 2.265625 -0.359375 2.3125 -0.453125 L 4.34375 -5.46875 C 4.625 -6.140625 4.90625 -6.234375 5.21875 -6.3125 C 5.296875 -6.359375 5.3125 -6.4375 5.3125 -6.5 Z M 5.3125 -6.5 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-3-1"> | |
| 141 | +<path d="M 2.53125 -6.421875 C 2.515625 -6.515625 2.421875 -6.5625 2.328125 -6.546875 C 2.203125 -6.515625 2.1875 -6.4375 2.171875 -6.359375 L 0.828125 1.515625 C 0.796875 1.640625 0.8125 1.65625 0.8125 1.6875 C 0.828125 1.78125 0.921875 1.828125 1.03125 1.8125 C 1.15625 1.78125 1.171875 1.703125 1.1875 1.609375 L 2.515625 -6.265625 C 2.53125 -6.375 2.53125 -6.390625 2.53125 -6.421875 Z M 2.53125 -6.421875 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-4-0"> | |
| 144 | +<path d="M 5.421875 -3.984375 C 5.390625 -4.15625 5.203125 -4.125 5.09375 -4.09375 L 0.171875 -3.109375 C 0.046875 -3.078125 -0.140625 -3.046875 -0.109375 -2.875 C -0.078125 -2.703125 0.078125 -2.734375 0.203125 -2.75 L 5.1875 -3.765625 C 5.296875 -3.78125 5.453125 -3.8125 5.421875 -3.984375 Z M 5.765625 -2.328125 C 5.71875 -2.5 5.5625 -2.46875 5.453125 -2.453125 L 0.46875 -1.4375 C 0.34375 -1.421875 0.1875 -1.390625 0.234375 -1.21875 C 0.265625 -1.046875 0.453125 -1.078125 0.578125 -1.109375 L 5.5 -2.09375 C 5.609375 -2.125 5.796875 -2.15625 5.765625 -2.328125 Z M 5.765625 -2.328125 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-5-0"> | |
| 147 | +<path d="M 3.4375 -0.6875 L 4.265625 -0.859375 L 2.4375 -2.84375 C 3.109375 -3.21875 3.390625 -3.703125 3.25 -4.421875 C 3.0625 -5.359375 2.3125 -5.71875 1.046875 -5.46875 L -0.28125 -5.1875 L 0.734375 -0.140625 L 1.421875 -0.28125 L 0.984375 -2.421875 L 1.78125 -2.59375 Z M 0.875 -2.96875 L 0.515625 -4.796875 L 1.140625 -4.921875 C 1.96875 -5.09375 2.390625 -4.921875 2.515625 -4.28125 C 2.65625 -3.59375 2.28125 -3.265625 1.578125 -3.109375 Z M 0.875 -2.96875 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-5-1"> | |
| 150 | +<path d="M 3.25 -5.90625 L 2.609375 -5.78125 L 3.15625 -3.03125 C 3.28125 -2.421875 3.53125 -1.625 3.5625 -1.5 L 0.625 -5.375 L -0.28125 -5.1875 L 0.734375 -0.140625 L 1.390625 -0.28125 L 0.921875 -2.59375 C 0.734375 -3.546875 0.546875 -4.140625 0.421875 -4.546875 L 3.34375 -0.671875 L 4.265625 -0.859375 Z M 3.25 -5.90625 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-5-2"> | |
| 153 | +<path d="M 2.46875 -5.75 L -0.28125 -5.1875 L 0.734375 -0.140625 L 3.515625 -0.703125 L 3.40625 -1.25 L 1.3125 -0.828125 L 0.96875 -2.5625 L 2.6875 -2.921875 L 2.5625 -3.484375 L 0.84375 -3.125 L 0.515625 -4.78125 L 2.484375 -5.1875 Z M 2.46875 -5.75 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-5-3"> | |
| 156 | +<path d="M 2.703125 -5.796875 L -0.90625 -5.0625 L -0.796875 -4.46875 L 0.640625 -4.765625 L 1.546875 -0.3125 L 2.25 -0.453125 L 1.34375 -4.90625 L 2.734375 -5.1875 Z M 2.703125 -5.796875 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-5-4"> | |
| 159 | +<path d="M 1.578125 -5.671875 C 0.390625 -5.421875 -0.46875 -4.3125 -0.125 -2.609375 C 0.234375 -0.859375 1.234375 -0.15625 2.546875 -0.421875 C 3.1875 -0.546875 3.671875 -0.84375 4.109375 -1.203125 L 3.625 -3.640625 L 1.953125 -3.296875 L 2.140625 -2.75 L 3.046875 -2.9375 L 3.359375 -1.40625 C 3.09375 -1.1875 2.765625 -1.0625 2.4375 -1 C 1.546875 -0.8125 0.9375 -1.3125 0.640625 -2.765625 C 0.34375 -4.25 0.953125 -4.9375 1.6875 -5.09375 C 2.125 -5.171875 2.46875 -5.109375 2.859375 -4.921875 L 3.203125 -5.40625 C 2.671875 -5.6875 2.234375 -5.796875 1.578125 -5.671875 Z M 1.578125 -5.671875 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-5-5"> | |
| 162 | +<path d="M 3.4375 -0.6875 L 4.171875 -0.84375 L 1.53125 -5.5625 L 0.65625 -5.390625 L 0.046875 -0.015625 L 0.75 -0.15625 L 0.890625 -1.5 L 2.796875 -1.875 Z M 0.921875 -2.109375 L 1.1875 -4.890625 L 2.5 -2.421875 Z M 0.921875 -2.109375 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-6-0"> | |
| 165 | +<path d="M 4.734375 -4.296875 L 1.125 -5.03125 L 1.015625 -4.4375 L 2.453125 -4.140625 L 1.546875 0.3125 L 2.25 0.453125 L 3.15625 -4 L 4.546875 -3.71875 Z M 4.734375 -4.296875 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-6-1"> | |
| 168 | +<path d="M 3.640625 -4.609375 C 2.453125 -4.859375 1.25 -4.15625 0.90625 -2.453125 C 0.546875 -0.703125 1.203125 0.34375 2.515625 0.609375 C 3.15625 0.734375 3.703125 0.65625 4.265625 0.484375 L 4.75 -1.953125 L 3.078125 -2.296875 L 3.046875 -1.71875 L 3.953125 -1.53125 L 3.640625 0 C 3.3125 0.09375 2.953125 0.09375 2.625 0.03125 C 1.734375 -0.15625 1.375 -0.84375 1.671875 -2.296875 C 1.96875 -3.78125 2.796875 -4.1875 3.53125 -4.03125 C 3.96875 -3.953125 4.25 -3.765625 4.546875 -3.421875 L 5.046875 -3.75 C 4.671875 -4.21875 4.296875 -4.484375 3.640625 -4.609375 Z M 3.640625 -4.609375 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-6-2"> | |
| 171 | +<path d="M 3.4375 0.6875 L 4.171875 0.84375 L 3.5625 -4.53125 L 2.6875 -4.703125 L 0.046875 0.015625 L 0.75 0.15625 L 1.390625 -1.03125 L 3.296875 -0.65625 Z M 1.671875 -1.578125 L 3 -4.046875 L 3.25 -1.265625 Z M 1.671875 -1.578125 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-6-3"> | |
| 174 | +<path d="M 3.4375 0.6875 L 4.265625 0.859375 L 3.34375 -1.6875 C 4.109375 -1.75 4.578125 -2.109375 4.71875 -2.828125 C 4.90625 -3.765625 4.34375 -4.375 3.078125 -4.625 L 1.75 -4.90625 L 0.734375 0.140625 L 1.421875 0.28125 L 1.859375 -1.859375 L 2.65625 -1.6875 Z M 1.96875 -2.40625 L 2.328125 -4.234375 L 2.953125 -4.109375 C 3.78125 -3.9375 4.109375 -3.609375 3.984375 -2.96875 C 3.84375 -2.28125 3.375 -2.109375 2.671875 -2.265625 Z M 1.96875 -2.40625 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-6-4"> | |
| 177 | +<path d="M 5.28125 -4.1875 L 4.640625 -4.3125 L 4.09375 -1.5625 C 3.96875 -0.953125 3.875 -0.125 3.875 0 L 2.65625 -4.71875 L 1.75 -4.90625 L 0.734375 0.140625 L 1.390625 0.28125 L 1.859375 -2.03125 C 2.046875 -2.984375 2.109375 -3.609375 2.140625 -4.015625 L 3.34375 0.671875 L 4.265625 0.859375 Z M 5.28125 -4.1875 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-6-5"> | |
| 180 | +<path d="M 4.5 -4.34375 L 1.75 -4.90625 L 0.734375 0.140625 L 3.515625 0.703125 L 3.625 0.15625 L 1.53125 -0.265625 L 1.875 -2 L 3.59375 -1.640625 L 3.71875 -2.203125 L 2 -2.5625 L 2.328125 -4.21875 L 4.296875 -3.8125 Z M 4.5 -4.34375 "/> | |
| 181 | +</g> | |
| 182 | +<g id="glyph-7-0"> | |
| 183 | +<path d="M 6.546875 -1.578125 C 6.578125 -1.75 6.390625 -1.78125 6.28125 -1.8125 L 1.359375 -2.796875 C 1.234375 -2.828125 1.046875 -2.859375 1.015625 -2.6875 C 0.984375 -2.515625 1.140625 -2.484375 1.265625 -2.46875 L 6.25 -1.453125 C 6.359375 -1.4375 6.515625 -1.40625 6.546875 -1.578125 Z M 6.203125 0.078125 C 6.25 -0.09375 6.09375 -0.125 5.984375 -0.140625 L 1 -1.15625 C 0.875 -1.171875 0.71875 -1.203125 0.671875 -1.03125 C 0.640625 -0.859375 0.828125 -0.828125 0.953125 -0.796875 L 5.875 0.1875 C 5.984375 0.21875 6.171875 0.25 6.203125 0.078125 Z M 6.203125 0.078125 "/> | |
| 184 | +</g> | |
| 185 | +<g id="glyph-8-0"> | |
| 186 | +<path d="M 4.8125 -4.953125 C 4.828125 -5.046875 4.765625 -5.125 4.671875 -5.140625 C 4.546875 -5.171875 4.5 -5.09375 4.453125 -5.015625 L 0.171875 1.734375 C 0.109375 1.828125 0.09375 1.84375 0.09375 1.875 C 0.078125 1.96875 0.140625 2.046875 0.25 2.0625 C 0.375 2.09375 0.421875 2.015625 0.46875 1.953125 L 4.734375 -4.796875 C 4.8125 -4.90625 4.8125 -4.921875 4.8125 -4.953125 Z M 4.8125 -4.953125 "/> | |
| 187 | +</g> | |
| 188 | +<g id="glyph-8-1"> | |
| 189 | +<path d="M 7.40625 -3.9375 C 7.421875 -3.96875 7.421875 -4.046875 7.3125 -4.078125 C 7.21875 -4.09375 7.25 -4.0625 6.6875 -4.1875 C 6.1875 -4.28125 5.984375 -4.34375 5.953125 -4.34375 C 5.90625 -4.359375 5.796875 -4.375 5.765625 -4.234375 C 5.75 -4.125 5.828125 -4.09375 5.875 -4.078125 C 6.0625 -4.03125 6.15625 -3.9375 6.125 -3.796875 C 6.109375 -3.671875 6.015625 -3.578125 5.96875 -3.53125 L 2.65625 -0.203125 L 2.828125 -4.359375 C 2.828125 -4.421875 2.828125 -4.46875 2.84375 -4.484375 C 2.859375 -4.59375 2.984375 -4.671875 3.390625 -4.578125 C 3.484375 -4.5625 3.578125 -4.546875 3.609375 -4.703125 C 3.625 -4.734375 3.625 -4.8125 3.515625 -4.84375 C 3.453125 -4.84375 3.125 -4.90625 3.0625 -4.90625 L 2.578125 -5.015625 C 1.875 -5.15625 1.765625 -5.1875 1.703125 -5.203125 C 1.671875 -5.203125 1.546875 -5.234375 1.515625 -5.09375 C 1.484375 -4.96875 1.59375 -4.9375 1.703125 -4.921875 C 2.109375 -4.84375 2.125 -4.796875 2.109375 -4.578125 L 1.921875 0.328125 C 1.90625 0.5 1.90625 0.5625 2.046875 0.59375 C 2.171875 0.609375 2.234375 0.546875 2.3125 0.484375 L 6.125 -3.34375 C 6.625 -3.859375 6.9375 -3.859375 7.25 -3.8125 C 7.359375 -3.796875 7.40625 -3.875 7.40625 -3.9375 Z M 7.40625 -3.9375 "/> | |
| 190 | +</g> | |
| 191 | +<g id="glyph-9-0"> | |
| 192 | +<path d="M 6.109375 -2.84375 C 6.109375 -3.015625 5.90625 -3.015625 5.796875 -3.015625 L 0.78125 -3.015625 C 0.65625 -3.015625 0.46875 -3.015625 0.46875 -2.84375 C 0.46875 -2.65625 0.625 -2.65625 0.75 -2.65625 L 5.828125 -2.65625 C 5.9375 -2.65625 6.109375 -2.65625 6.109375 -2.84375 Z M 6.109375 -1.140625 C 6.109375 -1.328125 5.9375 -1.328125 5.828125 -1.328125 L 0.75 -1.328125 C 0.625 -1.328125 0.46875 -1.328125 0.46875 -1.140625 C 0.46875 -0.96875 0.65625 -0.96875 0.78125 -0.96875 L 5.796875 -0.96875 C 5.90625 -0.96875 6.109375 -0.96875 6.109375 -1.140625 Z M 6.109375 -1.140625 "/> | |
| 193 | +</g> | |
| 194 | +<g id="glyph-10-0"> | |
| 195 | +<path d="M 5.328125 -0.125 C 5.328125 -0.1875 5.3125 -0.21875 5.234375 -0.3125 L 3.546875 -1.984375 L 5.234375 -3.671875 C 5.3125 -3.765625 5.328125 -3.796875 5.328125 -3.859375 C 5.328125 -3.953125 5.25 -4.046875 5.140625 -4.046875 C 5.078125 -4.046875 5.046875 -4.015625 4.96875 -3.9375 L 3.296875 -2.25 L 1.609375 -3.9375 C 1.515625 -4.03125 1.484375 -4.046875 1.421875 -4.046875 C 1.328125 -4.046875 1.25 -3.953125 1.25 -3.859375 C 1.25 -3.78125 1.28125 -3.75 1.34375 -3.6875 L 3.03125 -1.984375 L 1.34375 -0.3125 C 1.265625 -0.21875 1.25 -0.171875 1.25 -0.125 C 1.25 -0.03125 1.328125 0.0625 1.421875 0.0625 C 1.484375 0.0625 1.515625 0.046875 1.609375 -0.046875 L 3.28125 -1.734375 L 4.96875 -0.046875 C 5.046875 0.046875 5.09375 0.0625 5.140625 0.0625 C 5.25 0.0625 5.328125 -0.03125 5.328125 -0.125 Z M 5.328125 -0.125 "/> | |
| 196 | +</g> | |
| 197 | +</g> | |
| 198 | +<clipPath id="clip-0"> | |
| 199 | +<path clip-rule="nonzero" d="M 203 0.0390625 L 323 0.0390625 L 323 47 L 203 47 Z M 203 0.0390625 "/> | |
| 200 | +</clipPath> | |
| 201 | +<clipPath id="clip-1"> | |
| 202 | +<path clip-rule="nonzero" d="M 203 81 L 323 81 L 323 127.957031 L 203 127.957031 Z M 203 81 "/> | |
| 203 | +</clipPath> | |
| 204 | +</defs> | |
| 205 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 48.16949 17.718021 L -48.166419 17.718021 C -51.469343 17.718021 -54.14686 15.040504 -54.14686 11.73758 L -54.14686 -11.738581 C -54.14686 -15.041504 -51.469343 -17.715113 -48.166419 -17.715113 L 48.16949 -17.715113 C 51.468505 -17.715113 54.146022 -15.041504 54.146022 -11.738581 L 54.146022 11.73758 C 54.146022 15.040504 51.468505 17.718021 48.16949 17.718021 Z M 48.16949 17.718021 " transform="matrix(0.999352, 0, 0, -0.999352, 59.287528, 63.9995)"/> | |
| 206 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 207 | +<use xlink:href="#glyph-0-0" x="41.386144" y="55.907751"/> | |
| 208 | +</g> | |
| 209 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 210 | +<use xlink:href="#glyph-0-1" x="45.384225" y="55.907751"/> | |
| 211 | +</g> | |
| 212 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 213 | +<use xlink:href="#glyph-0-2" x="49.412253" y="55.907751"/> | |
| 214 | +</g> | |
| 215 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 216 | +<use xlink:href="#glyph-0-3" x="51.62093" y="55.907751"/> | |
| 217 | +<use xlink:href="#glyph-0-4" x="55.768751" y="55.907751"/> | |
| 218 | +<use xlink:href="#glyph-0-5" x="60.021391" y="55.907751"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-0-6" x="65.509392" y="55.907751"/> | |
| 222 | +</g> | |
| 223 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 224 | +<use xlink:href="#glyph-1-0" x="67.942681" y="55.907751"/> | |
| 225 | +</g> | |
| 226 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 227 | +<use xlink:href="#glyph-0-7" x="74.750628" y="55.907751"/> | |
| 228 | +</g> | |
| 229 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 230 | +<use xlink:href="#glyph-2-0" x="30.336315" y="67.357321"/> | |
| 231 | +</g> | |
| 232 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 233 | +<use xlink:href="#glyph-2-1" x="33.802815" y="67.357321"/> | |
| 234 | +</g> | |
| 235 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 236 | +<use xlink:href="#glyph-2-2" x="40.36895" y="67.357321"/> | |
| 237 | +<use xlink:href="#glyph-2-3" x="44.786305" y="67.357321"/> | |
| 238 | +<use xlink:href="#glyph-2-1" x="49.091354" y="67.357321"/> | |
| 239 | +</g> | |
| 240 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 241 | +<use xlink:href="#glyph-2-4" x="55.664976" y="67.357321"/> | |
| 242 | +</g> | |
| 243 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 244 | +<use xlink:href="#glyph-2-5" x="57.753861" y="67.357321"/> | |
| 245 | +<use xlink:href="#glyph-2-6" x="59.460906" y="67.357321"/> | |
| 246 | +<use xlink:href="#glyph-2-7" x="61.52733" y="67.357321"/> | |
| 247 | +</g> | |
| 248 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 249 | +<use xlink:href="#glyph-2-8" x="65.809918" y="67.357321"/> | |
| 250 | +</g> | |
| 251 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 252 | +<use xlink:href="#glyph-2-1" x="69.463594" y="67.357321"/> | |
| 253 | +<use xlink:href="#glyph-2-9" x="73.536545" y="67.357321"/> | |
| 254 | +<use xlink:href="#glyph-2-10" x="77.032993" y="67.357321"/> | |
| 255 | +<use xlink:href="#glyph-2-6" x="79.735815" y="67.357321"/> | |
| 256 | +<use xlink:href="#glyph-2-9" x="81.802239" y="67.357321"/> | |
| 257 | +</g> | |
| 258 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 259 | +<use xlink:href="#glyph-2-11" x="85.223817" y="67.357321"/> | |
| 260 | +</g> | |
| 261 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 262 | +<use xlink:href="#glyph-2-9" x="23.359842" y="76.815184"/> | |
| 263 | +<use xlink:href="#glyph-2-1" x="26.85629" y="76.815184"/> | |
| 264 | +<use xlink:href="#glyph-2-3" x="30.929241" y="76.815184"/> | |
| 265 | +<use xlink:href="#glyph-2-12" x="35.23429" y="76.815184"/> | |
| 266 | +</g> | |
| 267 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 268 | +<use xlink:href="#glyph-2-1" x="40.595011" y="76.815184"/> | |
| 269 | +<use xlink:href="#glyph-2-9" x="44.667962" y="76.815184"/> | |
| 270 | +<use xlink:href="#glyph-2-10" x="48.164411" y="76.815184"/> | |
| 271 | +</g> | |
| 272 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 273 | +<use xlink:href="#glyph-2-13" x="53.367904" y="76.815184"/> | |
| 274 | +<use xlink:href="#glyph-2-12" x="57.755311" y="76.815184"/> | |
| 275 | +</g> | |
| 276 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 277 | +<use xlink:href="#glyph-2-14" x="60.473107" y="76.815184"/> | |
| 278 | +<use xlink:href="#glyph-2-10" x="64.546058" y="76.815184"/> | |
| 279 | +</g> | |
| 280 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 281 | +<use xlink:href="#glyph-2-15" x="69.742064" y="76.815184"/> | |
| 282 | +</g> | |
| 283 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 284 | +<use xlink:href="#glyph-2-13" x="76.270765" y="76.815184"/> | |
| 285 | +</g> | |
| 286 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 287 | +<use xlink:href="#glyph-2-16" x="80.620736" y="76.815184"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-2-17" x="84.618816" y="76.815184"/> | |
| 291 | +</g> | |
| 292 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 293 | +<use xlink:href="#glyph-2-1" x="88.272492" y="76.815184"/> | |
| 294 | +<use xlink:href="#glyph-2-12" x="92.345443" y="76.815184"/> | |
| 295 | +</g> | |
| 296 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 311.390625 5.21875 L 215.117188 5.21875 C 211.816406 5.21875 209.140625 7.894531 209.140625 11.191406 L 209.140625 34.65625 C 209.140625 37.953125 211.816406 40.628906 215.117188 40.628906 L 311.390625 40.628906 C 314.6875 40.628906 317.363281 37.953125 317.363281 34.65625 L 317.363281 11.191406 C 317.363281 7.894531 314.6875 5.21875 311.390625 5.21875 Z M 311.390625 5.21875 "/> | |
| 297 | +<g clip-path="url(#clip-0)"> | |
| 298 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 252.266688 58.818893 L 155.930778 58.818893 C 152.627855 58.818893 149.950338 56.141376 149.950338 52.842361 L 149.950338 29.362291 C 149.950338 26.063277 152.627855 23.385759 155.930778 23.385759 L 252.266688 23.385759 C 255.565702 23.385759 258.24322 26.063277 258.24322 29.362291 L 258.24322 52.842361 C 258.24322 56.141376 255.565702 58.818893 252.266688 58.818893 Z M 252.266688 58.818893 " transform="matrix(0.999352, 0, 0, -0.999352, 59.287528, 63.9995)"/> | |
| 299 | +</g> | |
| 300 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 301 | +<use xlink:href="#glyph-0-8" x="256.488563" y="18.93974"/> | |
| 302 | +<use xlink:href="#glyph-0-9" x="261.108068" y="18.93974"/> | |
| 303 | +<use xlink:href="#glyph-0-10" x="266.071976" y="18.93974"/> | |
| 304 | +</g> | |
| 305 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 306 | +<use xlink:href="#glyph-2-12" x="220.177126" y="30.38931"/> | |
| 307 | +</g> | |
| 308 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 309 | +<use xlink:href="#glyph-2-1" x="222.894922" y="30.38931"/> | |
| 310 | +</g> | |
| 311 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 312 | +<use xlink:href="#glyph-2-8" x="226.930437" y="30.38931"/> | |
| 313 | +</g> | |
| 314 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 315 | +<use xlink:href="#glyph-2-1" x="230.584114" y="30.38931"/> | |
| 316 | +<use xlink:href="#glyph-2-7" x="234.657064" y="30.38931"/> | |
| 317 | +<use xlink:href="#glyph-2-3" x="238.992061" y="30.38931"/> | |
| 318 | +</g> | |
| 319 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 320 | +<use xlink:href="#glyph-2-7" x="245.790295" y="30.38931"/> | |
| 321 | +<use xlink:href="#glyph-2-1" x="250.125292" y="30.38931"/> | |
| 322 | +<use xlink:href="#glyph-2-10" x="254.198243" y="30.38931"/> | |
| 323 | +</g> | |
| 324 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 325 | +<use xlink:href="#glyph-2-18" x="259.401737" y="30.38931"/> | |
| 326 | +<use xlink:href="#glyph-2-5" x="263.819091" y="30.38931"/> | |
| 327 | +</g> | |
| 328 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 329 | +<use xlink:href="#glyph-2-1" x="265.451266" y="30.38931"/> | |
| 330 | +</g> | |
| 331 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 332 | +<use xlink:href="#glyph-2-19" x="269.486782" y="30.38931"/> | |
| 333 | +<use xlink:href="#glyph-2-13" x="273.117997" y="30.38931"/> | |
| 334 | +<use xlink:href="#glyph-2-4" x="277.505403" y="30.38931"/> | |
| 335 | +</g> | |
| 336 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 337 | +<use xlink:href="#glyph-2-20" x="279.669159" y="30.38931"/> | |
| 338 | +<use xlink:href="#glyph-2-6" x="284.041591" y="30.38931"/> | |
| 339 | +<use xlink:href="#glyph-2-10" x="286.108014" y="30.38931"/> | |
| 340 | +<use xlink:href="#glyph-2-16" x="288.810836" y="30.38931"/> | |
| 341 | +<use xlink:href="#glyph-2-10" x="292.846352" y="30.38931"/> | |
| 342 | +<use xlink:href="#glyph-2-6" x="295.549174" y="30.38931"/> | |
| 343 | +<use xlink:href="#glyph-2-20" x="297.615597" y="30.38931"/> | |
| 344 | +<use xlink:href="#glyph-2-7" x="301.98803" y="30.38931"/> | |
| 345 | +</g> | |
| 346 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 311.390625 87.371094 L 215.117188 87.371094 C 211.816406 87.371094 209.140625 90.042969 209.140625 93.34375 L 209.140625 116.808594 C 209.140625 120.105469 211.816406 122.78125 215.117188 122.78125 L 311.390625 122.78125 C 314.6875 122.78125 317.363281 120.105469 317.363281 116.808594 L 317.363281 93.34375 C 317.363281 90.042969 314.6875 87.371094 311.390625 87.371094 Z M 311.390625 87.371094 "/> | |
| 347 | +<g clip-path="url(#clip-1)"> | |
| 348 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 252.266688 -23.38676 L 155.930778 -23.38676 C 152.627855 -23.38676 149.950338 -26.060369 149.950338 -29.363292 L 149.950338 -52.843362 C 149.950338 -56.142376 152.627855 -58.819894 155.930778 -58.819894 L 252.266688 -58.819894 C 255.565702 -58.819894 258.24322 -56.142376 258.24322 -52.843362 L 258.24322 -29.363292 C 258.24322 -26.060369 255.565702 -23.38676 252.266688 -23.38676 Z M 252.266688 -23.38676 " transform="matrix(0.999352, 0, 0, -0.999352, 59.287528, 63.9995)"/> | |
| 349 | +</g> | |
| 350 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 351 | +<use xlink:href="#glyph-0-11" x="256.682437" y="101.268316"/> | |
| 352 | +</g> | |
| 353 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 354 | +<use xlink:href="#glyph-0-12" x="260.463393" y="101.268316"/> | |
| 355 | +<use xlink:href="#glyph-0-13" x="265.292535" y="101.268316"/> | |
| 356 | +</g> | |
| 357 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 358 | +<use xlink:href="#glyph-2-10" x="217.972556" y="112.717886"/> | |
| 359 | +<use xlink:href="#glyph-2-16" x="220.675378" y="112.717886"/> | |
| 360 | +<use xlink:href="#glyph-2-3" x="224.710894" y="112.717886"/> | |
| 361 | +<use xlink:href="#glyph-2-19" x="229.015943" y="112.717886"/> | |
| 362 | +</g> | |
| 363 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 364 | +<use xlink:href="#glyph-2-21" x="235.140343" y="112.717886"/> | |
| 365 | +<use xlink:href="#glyph-2-4" x="239.033604" y="112.717886"/> | |
| 366 | +</g> | |
| 367 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 368 | +<use xlink:href="#glyph-2-20" x="241.197359" y="112.717886"/> | |
| 369 | +<use xlink:href="#glyph-2-22" x="245.569792" y="112.717886"/> | |
| 370 | +</g> | |
| 371 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 372 | +<use xlink:href="#glyph-2-16" x="249.919763" y="112.717886"/> | |
| 373 | +</g> | |
| 374 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 375 | +<use xlink:href="#glyph-2-4" x="253.917843" y="112.717886"/> | |
| 376 | +</g> | |
| 377 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 378 | +<use xlink:href="#glyph-2-18" x="258.619705" y="112.717886"/> | |
| 379 | +<use xlink:href="#glyph-2-5" x="263.03706" y="112.717886"/> | |
| 380 | +</g> | |
| 381 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 382 | +<use xlink:href="#glyph-2-16" x="264.6318" y="112.717886"/> | |
| 383 | +<use xlink:href="#glyph-2-0" x="268.667315" y="112.717886"/> | |
| 384 | +<use xlink:href="#glyph-2-10" x="272.246121" y="112.717886"/> | |
| 385 | +<use xlink:href="#glyph-2-3" x="274.948943" y="112.717886"/> | |
| 386 | +<use xlink:href="#glyph-2-16" x="279.253992" y="112.717886"/> | |
| 387 | +</g> | |
| 388 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 389 | +<use xlink:href="#glyph-2-4" x="283.252072" y="112.717886"/> | |
| 390 | +<use xlink:href="#glyph-2-6" x="285.453262" y="112.717886"/> | |
| 391 | +<use xlink:href="#glyph-2-9" x="287.519686" y="112.717886"/> | |
| 392 | +<use xlink:href="#glyph-2-16" x="291.016134" y="112.717886"/> | |
| 393 | +<use xlink:href="#glyph-2-10" x="295.05165" y="112.717886"/> | |
| 394 | +<use xlink:href="#glyph-2-6" x="297.754472" y="112.717886"/> | |
| 395 | +<use xlink:href="#glyph-2-20" x="299.820895" y="112.717886"/> | |
| 396 | +<use xlink:href="#glyph-2-7" x="304.193328" y="112.717886"/> | |
| 397 | +</g> | |
| 398 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 149.75099 30.147957 L 55.127127 11.069178 " transform="matrix(0.999352, 0, 0, -0.999352, 59.287528, 63.9995)"/> | |
| 399 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551703 3.110823 C -2.082311 1.245716 -1.047965 0.363308 -0.000563264 0.000641478 C -1.046771 -0.362672 -2.086103 -1.245757 -2.549672 -3.11021 " transform="matrix(-0.979604, 0.197472, 0.197472, 0.979604, 113.987603, 53.015108)"/> | |
| 400 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 401 | +<use xlink:href="#glyph-3-0" x="136.361514" y="42.884202"/> | |
| 402 | +</g> | |
| 403 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 404 | +<use xlink:href="#glyph-4-0" x="145.338629" y="41.074566"/> | |
| 405 | +</g> | |
| 406 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 407 | +<use xlink:href="#glyph-5-0" x="154.09526" y="39.309375"/> | |
| 408 | +<use xlink:href="#glyph-5-1" x="158.535414" y="38.414314"/> | |
| 409 | +<use xlink:href="#glyph-5-2" x="163.548018" y="37.403857"/> | |
| 410 | +</g> | |
| 411 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 412 | +<use xlink:href="#glyph-3-1" x="167.474435" y="36.612357"/> | |
| 413 | +</g> | |
| 414 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 415 | +<use xlink:href="#glyph-5-3" x="171.622584" y="35.77616"/> | |
| 416 | +</g> | |
| 417 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 418 | +<use xlink:href="#glyph-5-4" x="175.160029" y="35.06307"/> | |
| 419 | +<use xlink:href="#glyph-5-5" x="179.790999" y="34.129544"/> | |
| 420 | +</g> | |
| 421 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 54.34537 -10.956824 L 148.969233 -30.031694 " transform="matrix(0.999352, 0, 0, -0.999352, 59.287528, 63.9995)"/> | |
| 422 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550606 3.111958 C -2.086264 1.243673 -1.047704 0.36442 -0.00149719 0.00110647 C -1.045068 -0.360788 -2.083245 -1.243968 -2.551865 -3.112907 " transform="matrix(0.979604, 0.197472, 0.197472, -0.979604, 208.552029, 94.091223)"/> | |
| 423 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 424 | +<use xlink:href="#glyph-6-0" x="135.575025" y="89.061237"/> | |
| 425 | +</g> | |
| 426 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 427 | +<use xlink:href="#glyph-6-1" x="139.11247" y="89.774327"/> | |
| 428 | +<use xlink:href="#glyph-6-2" x="143.74344" y="90.707853"/> | |
| 429 | +</g> | |
| 430 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 431 | +<use xlink:href="#glyph-7-0" x="150.251969" y="92.019864"/> | |
| 432 | +</g> | |
| 433 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 434 | +<use xlink:href="#glyph-6-3" x="159.0086" y="93.785054"/> | |
| 435 | +<use xlink:href="#glyph-6-4" x="163.448754" y="94.680115"/> | |
| 436 | +<use xlink:href="#glyph-6-5" x="168.461358" y="95.690572"/> | |
| 437 | +</g> | |
| 438 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 439 | +<use xlink:href="#glyph-8-0" x="172.387775" y="96.482073"/> | |
| 440 | +<use xlink:href="#glyph-8-1" x="176.535924" y="97.31827"/> | |
| 441 | +</g> | |
| 442 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 204.098733 -23.187412 L 204.098733 22.389019 " transform="matrix(0.999352, 0, 0, -0.999352, 59.287528, 63.9995)"/> | |
| 443 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549063 3.109599 C -2.083917 1.245109 -1.048089 0.361724 -0.000535012 -0.0017932 C -1.048089 -0.361401 -2.083917 -1.244787 -2.549063 -3.109277 " transform="matrix(0, -0.999352, -0.999352, 0, 263.252114, 41.226028)"/> | |
| 444 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 445 | +<use xlink:href="#glyph-2-23" x="266.766893" y="66.306003"/> | |
| 446 | +<use xlink:href="#glyph-2-24" x="271.296554" y="66.306003"/> | |
| 447 | +<use xlink:href="#glyph-2-25" x="276.410203" y="66.306003"/> | |
| 448 | +</g> | |
| 449 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 450 | +<use xlink:href="#glyph-9-0" x="282.765425" y="66.306003"/> | |
| 451 | +</g> | |
| 452 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 453 | +<use xlink:href="#glyph-1-0" x="291.697299" y="66.306003"/> | |
| 454 | +</g> | |
| 455 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 456 | +<use xlink:href="#glyph-10-0" x="300.385447" y="66.306003"/> | |
| 457 | +</g> | |
| 458 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 459 | +<use xlink:href="#glyph-2-26" x="308.8544" y="66.306003"/> | |
| 460 | +</g> | |
| 461 | +<g fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1"> | |
| 462 | +<use xlink:href="#glyph-2-27" x="312.463155" y="66.306003"/> | |
| 463 | +<use xlink:href="#glyph-2-28" x="317.187478" y="66.306003"/> | |
| 464 | +</g> | |
| 465 | +</svg> | |
added
dist/assets/fig/d9ad6a1a507c6ab1.svg
+367 −0
@@ -0,0 +1,367 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="385.189pt" height="134.639pt" viewBox="0 0 385.189 134.639"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.859375 -5.890625 C 1.5625 -5.890625 0.46875 -4.859375 0.46875 -2.90625 C 0.46875 -0.953125 1.484375 0.09375 2.890625 0.09375 C 3.671875 0.09375 4.21875 -0.21875 4.546875 -0.546875 L 4.140625 -1.046875 C 3.8125 -0.8125 3.453125 -0.578125 2.90625 -0.578125 C 2.015625 -0.578125 1.3125 -1.234375 1.3125 -2.90625 C 1.3125 -4.65625 2.046875 -5.234375 2.921875 -5.234375 C 3.328125 -5.234375 3.671875 -5.109375 4.03125 -4.8125 L 4.46875 -5.328125 C 4.015625 -5.6875 3.59375 -5.890625 2.859375 -5.890625 Z M 2.859375 -5.890625 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 2.46875 -4.53125 C 1.203125 -4.53125 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.71875 -4.53125 2.46875 -4.53125 Z M 2.46875 -3.90625 C 3.1875 -3.90625 3.59375 -3.375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.375 1.71875 -3.90625 2.46875 -3.90625 Z M 2.46875 -3.90625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 2.859375 -4.53125 C 2.28125 -4.53125 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.109375 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 2 -4.53125 C 1.078125 -4.53125 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.03125 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.453125 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.25 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.453125 -2.8125 1.203125 -2.96875 1.203125 -3.34375 C 1.203125 -3.6875 1.515625 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.171875 -3.53125 L 3.5 -4.03125 C 3.078125 -4.34375 2.625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.328125 0.609375 -6.03125 C 0.609375 -5.734375 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.703125 -5.734375 1.703125 -6.03125 C 1.703125 -6.328125 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.125 -4.296875 2.734375 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.171875 3.4375 -0.609375 L 3.5 0 L 4.1875 0 L 4.1875 -6.21875 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 1 -6.328125 C 0.703125 -6.328125 0.453125 -6.09375 0.453125 -5.796875 C 0.453125 -5.625 0.53125 -5.484375 0.671875 -5.375 L 0.34375 -4.125 L 0.84375 -4.125 L 1.40625 -5.3125 C 1.515625 -5.546875 1.546875 -5.671875 1.546875 -5.796875 C 1.546875 -6.09375 1.296875 -6.328125 1 -6.328125 Z M 1 -6.328125 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 5.21875 -4.53125 C 4.625 -4.53125 4.21875 -4.21875 3.90625 -3.734375 C 3.734375 -4.234375 3.328125 -4.53125 2.78125 -4.53125 C 2.203125 -4.53125 1.796875 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.59375 -3.921875 C 2.921875 -3.921875 3.21875 -3.734375 3.21875 -3.0625 L 3.21875 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.03125 -3.921875 C 5.359375 -3.921875 5.65625 -3.734375 5.65625 -3.0625 L 5.65625 0 L 6.421875 0 L 6.421875 -3.171875 C 6.421875 -4.015625 5.9375 -4.53125 5.21875 -4.53125 Z M 5.21875 -4.53125 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.59375 -3.828125 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.515625 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.703125 -4.53125 C 2.15625 -4.53125 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.78125 2.609375 -3.78125 C 2.765625 -3.78125 2.859375 -3.75 3 -3.71875 L 3.140625 -4.484375 C 3 -4.515625 2.84375 -4.53125 2.703125 -4.53125 Z M 2.703125 -4.53125 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.359375 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 L 1.640625 -2.125 L 2.375 -2.125 C 3.640625 -2.125 4.609375 -2.671875 4.609375 -4 C 4.609375 -5.21875 3.75 -5.796875 2.359375 -5.796875 Z M 2.34375 -2.75 L 1.640625 -2.75 L 1.640625 -5.171875 L 2.359375 -5.171875 C 3.21875 -5.171875 3.765625 -4.859375 3.765625 -4 C 3.765625 -3.015625 3.1875 -2.75 2.34375 -2.75 Z M 2.34375 -2.75 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 3.359375 -6.09375 L 3.015625 -6.734375 L 1.34375 -5.78125 L 1.578125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.40625 -4.53125 C 1.203125 -4.53125 0.484375 -3.59375 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.5625 2.453125 -0.5625 C 1.75 -0.5625 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.453125 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.359375 -4.390625 2.9375 -4.53125 2.40625 -4.53125 Z M 2.40625 -4.53125 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 2.046875 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 2.234375 0 C 3.484375 0 4.953125 -0.5625 4.953125 -2.921875 C 4.953125 -5.328125 3.53125 -5.796875 2.046875 -5.796875 Z M 2.234375 -5.15625 C 3.15625 -5.15625 4.109375 -4.890625 4.109375 -2.921875 C 4.109375 -1.015625 3.1875 -0.625 2.28125 -0.625 L 1.640625 -0.625 L 1.640625 -5.15625 Z M 2.234375 -5.15625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 4.140625 -4.921875 C 3.625 -4.6875 3.21875 -4.5 2.125 -4.53125 C 1.140625 -4.53125 0.40625 -3.890625 0.40625 -2.984375 C 0.40625 -2.40625 0.640625 -2.03125 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.265625 0.671875 -0.96875 C 0.671875 -0.53125 1.03125 -0.140625 1.8125 -0.140625 L 2.515625 -0.140625 C 3.0625 -0.140625 3.40625 0.078125 3.40625 0.5 C 3.40625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.140625 1.1875 0.90625 0.953125 0.90625 0.453125 L 0.203125 0.453125 C 0.203125 1.34375 0.671875 1.796875 2.109375 1.796875 C 3.484375 1.796875 4.1875 1.296875 4.1875 0.453125 C 4.1875 -0.265625 3.578125 -0.78125 2.671875 -0.78125 L 1.96875 -0.78125 C 1.515625 -0.78125 1.390625 -0.9375 1.390625 -1.140625 C 1.390625 -1.296875 1.484375 -1.46875 1.609375 -1.5625 C 1.796875 -1.5 1.96875 -1.46875 2.171875 -1.46875 C 3.234375 -1.46875 3.859375 -2.09375 3.859375 -2.96875 C 3.859375 -3.484375 3.59375 -3.859375 3.078125 -4.09375 C 3.578125 -4.09375 4 -4.109375 4.375 -4.234375 Z M 2.125 -3.96875 C 2.75 -3.96875 3.0625 -3.640625 3.0625 -3 C 3.0625 -2.359375 2.734375 -1.984375 2.140625 -1.984375 C 1.53125 -1.984375 1.203125 -2.390625 1.203125 -2.984375 C 1.203125 -3.5625 1.515625 -3.96875 2.125 -3.96875 Z M 2.125 -3.96875 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-0"> | |
| 60 | +<path d="M 1.828125 -6.4375 L 0.9375 -6.4375 L 0.9375 0 L 1.828125 0 Z M 1.828125 -6.4375 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-1"> | |
| 63 | +<path d="M 3.171875 -5.03125 C 2.53125 -5.03125 2.015625 -4.703125 1.671875 -4.203125 L 1.59375 -4.921875 L 0.859375 -4.921875 L 0.859375 0 L 1.71875 0 L 1.71875 -3.5 C 2.046875 -4.015625 2.421875 -4.359375 2.96875 -4.359375 C 3.453125 -4.359375 3.75 -4.15625 3.75 -3.40625 L 3.75 0 L 4.609375 0 L 4.609375 -3.53125 C 4.609375 -4.46875 4.078125 -5.03125 3.171875 -5.03125 Z M 3.171875 -5.03125 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-2"> | |
| 66 | +<path d="M 2.21875 -5.03125 C 1.203125 -5.03125 0.453125 -4.46875 0.453125 -3.6875 C 0.453125 -2.984375 0.875 -2.53125 1.9375 -2.25 C 2.890625 -2 3.125 -1.8125 3.125 -1.328125 C 3.125 -0.859375 2.71875 -0.578125 2.078125 -0.578125 C 1.546875 -0.578125 1.078125 -0.75 0.6875 -1.0625 L 0.234375 -0.53125 C 0.65625 -0.15625 1.265625 0.109375 2.09375 0.109375 C 3.09375 0.109375 4.03125 -0.359375 4.03125 -1.390625 C 4.03125 -2.25 3.4375 -2.65625 2.40625 -2.921875 C 1.609375 -3.125 1.34375 -3.3125 1.34375 -3.703125 C 1.34375 -4.109375 1.6875 -4.359375 2.25 -4.359375 C 2.703125 -4.359375 3.09375 -4.21875 3.53125 -3.9375 L 3.890625 -4.46875 C 3.421875 -4.828125 2.921875 -5.03125 2.21875 -5.03125 Z M 2.21875 -5.03125 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-3"> | |
| 69 | +<path d="M 3.125 -5.03125 C 2.5625 -5.03125 2.03125 -4.765625 1.65625 -4.265625 L 1.59375 -4.921875 L 0.859375 -4.921875 L 0.859375 1.984375 L 1.71875 1.890625 L 1.71875 -0.453125 C 2.03125 -0.0625 2.46875 0.109375 3.015625 0.109375 C 4.28125 0.109375 4.9375 -0.96875 4.9375 -2.46875 C 4.9375 -4.015625 4.421875 -5.03125 3.125 -5.03125 Z M 2.796875 -0.59375 C 2.359375 -0.59375 1.96875 -0.796875 1.71875 -1.1875 L 1.71875 -3.59375 C 1.984375 -3.984375 2.375 -4.359375 2.90625 -4.359375 C 3.640625 -4.359375 4.015625 -3.75 4.015625 -2.46875 C 4.015625 -1.171875 3.59375 -0.59375 2.796875 -0.59375 Z M 2.796875 -0.59375 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-4"> | |
| 72 | +<path d="M 4.609375 -2.609375 C 4.609375 -4.109375 3.90625 -5.03125 2.578125 -5.03125 C 1.3125 -5.03125 0.53125 -3.9375 0.53125 -2.40625 C 0.53125 -0.84375 1.34375 0.109375 2.703125 0.109375 C 3.390625 0.109375 3.9375 -0.125 4.421875 -0.5 L 4.0625 -1.015625 C 3.625 -0.71875 3.265625 -0.59375 2.78125 -0.59375 C 2.0625 -0.59375 1.53125 -1.03125 1.453125 -2.171875 L 4.59375 -2.171875 C 4.59375 -2.28125 4.609375 -2.4375 4.609375 -2.609375 Z M 3.75 -2.796875 L 1.453125 -2.796875 C 1.515625 -3.890625 1.9375 -4.359375 2.59375 -4.359375 C 3.375 -4.359375 3.75 -3.828125 3.75 -2.859375 Z M 3.75 -2.796875 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-5"> | |
| 75 | +<path d="M 2.6875 -5.03125 C 1.34375 -5.03125 0.53125 -3.984375 0.53125 -2.421875 C 0.53125 -0.828125 1.359375 0.109375 2.6875 0.109375 C 3.25 0.109375 3.75 -0.078125 4.1875 -0.4375 L 3.796875 -0.984375 C 3.421875 -0.75 3.125 -0.609375 2.71875 -0.609375 C 1.9375 -0.609375 1.453125 -1.15625 1.453125 -2.4375 C 1.453125 -3.71875 1.9375 -4.328125 2.71875 -4.328125 C 3.125 -4.328125 3.4375 -4.203125 3.78125 -3.96875 L 4.1875 -4.5 C 3.734375 -4.890625 3.265625 -5.03125 2.6875 -5.03125 Z M 2.6875 -5.03125 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-6"> | |
| 78 | +<path d="M 3.046875 -0.796875 C 2.796875 -0.65625 2.609375 -0.59375 2.390625 -0.59375 C 1.96875 -0.59375 1.796875 -0.828125 1.796875 -1.328125 L 1.796875 -4.265625 L 2.875 -4.265625 L 2.96875 -4.921875 L 1.796875 -4.921875 L 1.796875 -6.140625 L 0.9375 -6.03125 L 0.9375 -4.921875 L 0.078125 -4.921875 L 0.078125 -4.265625 L 0.9375 -4.265625 L 0.9375 -1.296875 C 0.9375 -0.375 1.4375 0.109375 2.265625 0.109375 C 2.6875 0.109375 3.046875 0 3.375 -0.21875 Z M 3.046875 -0.796875 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-7"> | |
| 81 | +<path d="M 1.28125 -7.28125 C 0.921875 -7.28125 0.6875 -7.03125 0.6875 -6.703125 C 0.6875 -6.375 0.921875 -6.125 1.28125 -6.125 C 1.640625 -6.125 1.890625 -6.375 1.890625 -6.703125 C 1.890625 -7.03125 1.640625 -7.28125 1.28125 -7.28125 Z M 1.71875 -4.921875 L 0.859375 -4.921875 L 0.859375 0 L 1.71875 0 Z M 1.71875 -4.921875 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-8"> | |
| 84 | +<path d="M 2.734375 -5.03125 C 1.34375 -5.03125 0.53125 -3.984375 0.53125 -2.453125 C 0.53125 -0.890625 1.328125 0.109375 2.734375 0.109375 C 4.125 0.109375 4.921875 -0.9375 4.921875 -2.46875 C 4.921875 -4.03125 4.140625 -5.03125 2.734375 -5.03125 Z M 2.734375 -4.34375 C 3.546875 -4.34375 4 -3.75 4 -2.46875 C 4 -1.171875 3.546875 -0.578125 2.734375 -0.578125 C 1.90625 -0.578125 1.453125 -1.171875 1.453125 -2.453125 C 1.453125 -3.75 1.921875 -4.34375 2.734375 -4.34375 Z M 2.734375 -4.34375 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-9"> | |
| 87 | +<path d="M 3 -5.03125 C 2.40625 -5.03125 1.9375 -4.65625 1.6875 -3.921875 L 1.59375 -4.921875 L 0.859375 -4.921875 L 0.859375 0 L 1.71875 0 L 1.71875 -2.8125 C 1.921875 -3.75 2.28125 -4.203125 2.890625 -4.203125 C 3.078125 -4.203125 3.171875 -4.171875 3.328125 -4.140625 L 3.484375 -4.984375 C 3.328125 -5.015625 3.15625 -5.03125 3 -5.03125 Z M 3 -5.03125 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-10"> | |
| 90 | +<path d="M 0.5625 -2.5625 L 3.203125 -2.5625 L 3.203125 -3.28125 L 0.5625 -3.28125 Z M 0.5625 -2.5625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-11"> | |
| 93 | +<path d="M 2.5625 -6.3125 C 2.8125 -6.3125 3.109375 -6.265625 3.421875 -6.125 L 3.6875 -6.75 C 3.296875 -6.921875 2.984375 -7.015625 2.515625 -7.015625 C 1.515625 -7.015625 0.96875 -6.421875 0.96875 -5.59375 L 0.96875 -4.921875 L 0.09375 -4.921875 L 0.09375 -4.265625 L 0.96875 -4.265625 L 0.96875 0 L 1.828125 0 L 1.828125 -4.265625 L 2.9375 -4.265625 L 3.03125 -4.921875 L 1.828125 -4.921875 L 1.828125 -5.609375 C 1.828125 -6.078125 2.015625 -6.3125 2.5625 -6.3125 Z M 2.5625 -6.3125 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-12"> | |
| 96 | +<path d="M 1.828125 0.109375 C 2.078125 0.109375 2.328125 0.046875 2.515625 -0.0625 L 2.296875 -0.65625 C 2.203125 -0.609375 2.09375 -0.59375 1.96875 -0.59375 C 1.75 -0.59375 1.65625 -0.734375 1.65625 -0.984375 L 1.65625 -7.015625 L 0.796875 -6.90625 L 0.796875 -0.96875 C 0.796875 -0.265625 1.203125 0.109375 1.828125 0.109375 Z M 1.828125 0.109375 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-13"> | |
| 99 | +<path d="M 3.78125 -3.40625 C 4.40625 -3.53125 4.984375 -4.015625 4.984375 -4.8125 C 4.984375 -5.9375 4.046875 -6.4375 2.453125 -6.4375 L 0.9375 -6.4375 L 0.9375 0 L 2.703125 0 C 4.203125 0 5.265625 -0.46875 5.265625 -1.828125 C 5.265625 -2.921875 4.515625 -3.265625 3.78125 -3.40625 Z M 2.546875 -5.734375 C 3.5 -5.734375 4.078125 -5.546875 4.078125 -4.75 C 4.078125 -4.0625 3.515625 -3.703125 2.796875 -3.703125 L 1.828125 -3.703125 L 1.828125 -5.734375 Z M 2.703125 -0.703125 L 1.828125 -0.703125 L 1.828125 -3.03125 L 2.875 -3.03125 C 3.65625 -3.03125 4.328125 -2.734375 4.328125 -1.828125 C 4.328125 -0.890625 3.640625 -0.703125 2.703125 -0.703125 Z M 2.703125 -0.703125 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-14"> | |
| 102 | +<path d="M 4.515625 -4.921875 L 3.65625 -4.921875 L 3.65625 -1.40625 C 3.359375 -0.921875 2.953125 -0.5625 2.421875 -0.5625 C 1.890625 -0.5625 1.65625 -0.8125 1.65625 -1.484375 L 1.65625 -4.921875 L 0.796875 -4.921875 L 0.796875 -1.390625 C 0.796875 -0.4375 1.3125 0.109375 2.171875 0.109375 C 2.875 0.109375 3.328125 -0.171875 3.703125 -0.765625 L 3.78125 0 L 4.515625 0 Z M 4.515625 -4.921875 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-15"> | |
| 105 | +<path d="M 4.15625 -1.15625 L 4.15625 -3.40625 C 4.15625 -4.421875 3.609375 -5.03125 2.421875 -5.03125 C 1.875 -5.03125 1.34375 -4.921875 0.734375 -4.703125 L 0.9375 -4.078125 C 1.453125 -4.234375 1.90625 -4.328125 2.265625 -4.328125 C 2.953125 -4.328125 3.296875 -4.078125 3.296875 -3.359375 L 3.296875 -3 L 2.546875 -3 C 1.171875 -3 0.375 -2.421875 0.375 -1.375 C 0.375 -0.5 0.96875 0.109375 1.9375 0.109375 C 2.546875 0.109375 3.0625 -0.109375 3.40625 -0.625 C 3.5625 -0.140625 3.875 0.0625 4.375 0.109375 L 4.5625 -0.484375 C 4.3125 -0.578125 4.15625 -0.71875 4.15625 -1.15625 Z M 2.140625 -0.53125 C 1.578125 -0.53125 1.296875 -0.84375 1.296875 -1.421875 C 1.296875 -2.09375 1.75 -2.421875 2.65625 -2.421875 L 3.296875 -2.421875 L 3.296875 -1.296875 C 3.015625 -0.78125 2.640625 -0.53125 2.140625 -0.53125 Z M 2.140625 -0.53125 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-16"> | |
| 108 | +<path d="M 3.796875 -7.015625 L 3.796875 -4.421875 C 3.46875 -4.78125 3.046875 -5.03125 2.46875 -5.03125 C 1.265625 -5.03125 0.53125 -3.9375 0.53125 -2.4375 C 0.53125 -0.90625 1.203125 0.109375 2.390625 0.109375 C 3 0.109375 3.5 -0.1875 3.8125 -0.6875 L 3.890625 0 L 4.65625 0 L 4.65625 -6.90625 Z M 2.578125 -0.5625 C 1.875 -0.5625 1.453125 -1.15625 1.453125 -2.453125 C 1.453125 -3.734375 1.921875 -4.359375 2.65625 -4.359375 C 3.140625 -4.359375 3.484375 -4.109375 3.796875 -3.703125 L 3.796875 -1.296875 C 3.46875 -0.84375 3.125 -0.5625 2.578125 -0.5625 Z M 2.578125 -0.5625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-1-17"> | |
| 111 | +<path d="M 4.5 -4.921875 L 3.609375 -4.921875 L 2.328125 -0.625 L 1.015625 -4.921875 L 0.09375 -4.921875 L 1.75 0 L 2.03125 0 C 1.75 0.765625 1.46875 1.15625 0.46875 1.3125 L 0.5625 1.984375 C 1.9375 1.84375 2.515625 1.078125 2.859375 0.03125 Z M 4.5 -4.921875 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-1-18"> | |
| 114 | +<path d="M 0.9375 0 L 1.828125 0 L 1.828125 -2.828125 L 3.921875 -2.828125 L 3.921875 -3.53125 L 1.828125 -3.53125 L 1.828125 -5.734375 L 4.25 -5.734375 L 4.359375 -6.4375 L 0.9375 -6.4375 Z M 0.9375 0 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-1-19"> | |
| 117 | +<path d="M 5.796875 -5.03125 C 5.140625 -5.03125 4.6875 -4.6875 4.328125 -4.15625 C 4.15625 -4.703125 3.703125 -5.03125 3.09375 -5.03125 C 2.453125 -5.03125 2 -4.703125 1.671875 -4.203125 L 1.59375 -4.921875 L 0.859375 -4.921875 L 0.859375 0 L 1.71875 0 L 1.71875 -3.5 C 2.046875 -4.015625 2.34375 -4.359375 2.875 -4.359375 C 3.25 -4.359375 3.5625 -4.15625 3.5625 -3.40625 L 3.5625 0 L 4.421875 0 L 4.421875 -3.5 C 4.765625 -4.015625 5.0625 -4.359375 5.59375 -4.359375 C 5.96875 -4.359375 6.28125 -4.15625 6.28125 -3.40625 L 6.28125 0 L 7.140625 0 L 7.140625 -3.53125 C 7.140625 -4.453125 6.609375 -5.03125 5.796875 -5.03125 Z M 5.796875 -5.03125 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-1-20"> | |
| 120 | +<path d="M 3.1875 -6.546875 C 1.734375 -6.546875 0.515625 -5.40625 0.515625 -3.21875 C 0.515625 -1.0625 1.640625 0.109375 3.203125 0.109375 C 4.078125 0.109375 4.6875 -0.25 5.046875 -0.609375 L 4.609375 -1.171875 C 4.234375 -0.890625 3.84375 -0.640625 3.234375 -0.640625 C 2.234375 -0.640625 1.453125 -1.359375 1.453125 -3.21875 C 1.453125 -5.171875 2.265625 -5.828125 3.25 -5.828125 C 3.6875 -5.828125 4.078125 -5.671875 4.484375 -5.34375 L 4.96875 -5.921875 C 4.453125 -6.328125 4 -6.546875 3.1875 -6.546875 Z M 3.1875 -6.546875 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-1-21"> | |
| 123 | +<path d="M 3.734375 -6.765625 L 3.34375 -7.484375 L 1.484375 -6.421875 L 1.75 -5.96875 Z M 4.609375 -2.609375 C 4.609375 -4.109375 3.90625 -5.03125 2.578125 -5.03125 C 1.3125 -5.03125 0.53125 -3.9375 0.53125 -2.40625 C 0.53125 -0.84375 1.34375 0.109375 2.703125 0.109375 C 3.390625 0.109375 3.9375 -0.125 4.421875 -0.5 L 4.0625 -1.015625 C 3.625 -0.71875 3.265625 -0.59375 2.78125 -0.59375 C 2.0625 -0.59375 1.53125 -1.03125 1.453125 -2.171875 L 4.59375 -2.171875 C 4.59375 -2.28125 4.609375 -2.4375 4.609375 -2.609375 Z M 3.75 -2.796875 L 1.453125 -2.796875 C 1.515625 -3.890625 1.9375 -4.359375 2.59375 -4.359375 C 3.375 -4.359375 3.75 -3.828125 3.75 -2.859375 Z M 3.75 -2.796875 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-22"> | |
| 126 | +<path d="M 1.109375 -7.03125 C 0.78125 -7.03125 0.5 -6.78125 0.5 -6.453125 C 0.5 -6.265625 0.59375 -6.09375 0.75 -5.984375 L 0.375 -4.578125 L 0.9375 -4.578125 L 1.5625 -5.90625 C 1.6875 -6.171875 1.71875 -6.296875 1.71875 -6.453125 C 1.71875 -6.78125 1.453125 -7.03125 1.109375 -7.03125 Z M 1.109375 -7.03125 "/> | |
| 127 | +</g> | |
| 128 | +</g> | |
| 129 | +<clipPath id="clip-0"> | |
| 130 | +<path clip-rule="nonzero" d="M 0.109375 52 L 105 52 L 105 87 L 0.109375 87 Z M 0.109375 52 "/> | |
| 131 | +</clipPath> | |
| 132 | +<clipPath id="clip-1"> | |
| 133 | +<path clip-rule="nonzero" d="M 125 97 L 228 97 L 228 134.277344 L 125 134.277344 Z M 125 97 "/> | |
| 134 | +</clipPath> | |
| 135 | +<clipPath id="clip-2"> | |
| 136 | +<path clip-rule="nonzero" d="M 282 97 L 384.269531 97 L 384.269531 129 L 282 129 Z M 282 97 "/> | |
| 137 | +</clipPath> | |
| 138 | +</defs> | |
| 139 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 59.505627 12.046175 L -59.507936 12.046175 C -62.809734 12.046175 -65.484857 9.371052 -65.484857 6.069254 L -65.484857 -6.068672 C -65.484857 -9.37047 -62.809734 -12.045592 -59.507936 -12.045592 L 59.505627 -12.045592 C 62.807425 -12.045592 65.482547 -9.37047 65.482547 -6.068672 L 65.482547 6.069254 C 65.482547 9.371052 62.807425 12.046175 59.505627 12.046175 Z M 59.505627 12.046175 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 140 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 141 | +<use xlink:href="#glyph-0-0" x="107.054853" y="20.441192"/> | |
| 142 | +</g> | |
| 143 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 144 | +<use xlink:href="#glyph-0-1" x="111.594018" y="20.441192"/> | |
| 145 | +<use xlink:href="#glyph-0-2" x="116.503041" y="20.441192"/> | |
| 146 | +<use xlink:href="#glyph-0-3" x="121.370035" y="20.441192"/> | |
| 147 | +<use xlink:href="#glyph-0-4" x="125.295573" y="20.441192"/> | |
| 148 | +<use xlink:href="#glyph-0-5" x="129.868362" y="20.441192"/> | |
| 149 | +<use xlink:href="#glyph-0-6" x="132.18838" y="20.441192"/> | |
| 150 | +</g> | |
| 151 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 152 | +<use xlink:href="#glyph-0-7" x="137.458855" y="20.441192"/> | |
| 153 | +<use xlink:href="#glyph-0-8" x="142.418313" y="20.441192"/> | |
| 154 | +</g> | |
| 155 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 156 | +<use xlink:href="#glyph-0-9" x="144.208762" y="20.441192"/> | |
| 157 | +<use xlink:href="#glyph-0-7" x="148.739521" y="20.441192"/> | |
| 158 | +<use xlink:href="#glyph-0-10" x="153.69898" y="20.441192"/> | |
| 159 | +<use xlink:href="#glyph-0-5" x="160.843963" y="20.441192"/> | |
| 160 | +<use xlink:href="#glyph-0-2" x="163.16398" y="20.441192"/> | |
| 161 | +<use xlink:href="#glyph-0-5" x="168.030974" y="20.441192"/> | |
| 162 | +<use xlink:href="#glyph-0-3" x="170.350992" y="20.441192"/> | |
| 163 | +<use xlink:href="#glyph-0-11" x="174.27653" y="20.441192"/> | |
| 164 | +<use xlink:href="#glyph-0-12" x="177.311046" y="20.441192"/> | |
| 165 | +</g> | |
| 166 | +<g fill="rgb(100%, 100%, 100%)" fill-opacity="1"> | |
| 167 | +<use xlink:href="#glyph-0-9" x="180.362374" y="20.441192"/> | |
| 168 | +<use xlink:href="#glyph-0-11" x="184.893133" y="20.441192"/> | |
| 169 | +<use xlink:href="#glyph-0-5" x="187.927649" y="20.441192"/> | |
| 170 | +<use xlink:href="#glyph-0-1" x="190.247667" y="20.441192"/> | |
| 171 | +<use xlink:href="#glyph-0-2" x="195.156691" y="20.441192"/> | |
| 172 | +</g> | |
| 173 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 93.179688 57.867188 L 11.238281 57.867188 C 7.945312 57.867188 5.277344 60.535156 5.277344 63.828125 L 5.277344 74.519531 C 5.277344 77.8125 7.945312 80.484375 11.238281 80.484375 L 93.179688 80.484375 C 96.472656 80.484375 99.140625 77.8125 99.140625 74.519531 L 99.140625 63.828125 C 99.140625 60.535156 96.472656 57.867188 93.179688 57.867188 Z M 93.179688 57.867188 "/> | |
| 174 | +<g clip-path="url(#clip-0)"> | |
| 175 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -60.522368 -40.794344 L -142.683479 -40.794344 C -145.985277 -40.794344 -148.660399 -43.469466 -148.660399 -46.771264 L -148.660399 -57.491336 C -148.660399 -60.793134 -145.985277 -63.472173 -142.683479 -63.472173 L -60.522368 -63.472173 C -57.22057 -63.472173 -54.545448 -60.793134 -54.545448 -57.491336 L -54.545448 -46.771264 C -54.545448 -43.469466 -57.22057 -40.794344 -60.522368 -40.794344 Z M -60.522368 -40.794344 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 176 | +</g> | |
| 177 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 178 | +<use xlink:href="#glyph-0-13" x="31.485473" y="72.43279"/> | |
| 179 | +</g> | |
| 180 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 181 | +<use xlink:href="#glyph-0-12" x="36.201161" y="72.43279"/> | |
| 182 | +</g> | |
| 183 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 184 | +<use xlink:href="#glyph-0-14" x="39.252489" y="72.43279"/> | |
| 185 | +<use xlink:href="#glyph-0-3" x="43.825278" y="72.43279"/> | |
| 186 | +<use xlink:href="#glyph-0-5" x="47.750815" y="72.43279"/> | |
| 187 | +<use xlink:href="#glyph-0-7" x="50.070833" y="72.43279"/> | |
| 188 | +<use xlink:href="#glyph-0-4" x="55.030292" y="72.43279"/> | |
| 189 | +<use xlink:href="#glyph-0-2" x="59.60308" y="72.43279"/> | |
| 190 | +<use xlink:href="#glyph-0-15" x="64.470074" y="72.43279"/> | |
| 191 | +</g> | |
| 192 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 193 | +<use xlink:href="#glyph-0-4" x="68.361988" y="72.43279"/> | |
| 194 | +</g> | |
| 195 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 142.685086 -40.794344 L 60.520059 -40.794344 C 57.222177 -40.794344 54.543138 -43.469466 54.543138 -46.771264 L 54.543138 -57.491336 C 54.543138 -60.793134 57.222177 -63.472173 60.520059 -63.472173 L 142.685086 -63.472173 C 145.986884 -63.472173 148.662007 -60.793134 148.662007 -57.491336 L 148.662007 -46.771264 C 148.662007 -43.469466 145.986884 -40.794344 142.685086 -40.794344 Z M 142.685086 -40.794344 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 196 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 197 | +<use xlink:href="#glyph-0-16" x="219.75368" y="71.58606"/> | |
| 198 | +<use xlink:href="#glyph-0-5" x="225.167055" y="71.58606"/> | |
| 199 | +<use xlink:href="#glyph-0-12" x="227.487073" y="71.58606"/> | |
| 200 | +</g> | |
| 201 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 202 | +<use xlink:href="#glyph-0-4" x="230.5384" y="71.58606"/> | |
| 203 | +<use xlink:href="#glyph-0-15" x="235.111189" y="71.58606"/> | |
| 204 | +<use xlink:href="#glyph-0-11" x="239.129191" y="71.58606"/> | |
| 205 | +<use xlink:href="#glyph-0-5" x="242.163707" y="71.58606"/> | |
| 206 | +<use xlink:href="#glyph-0-1" x="244.483725" y="71.58606"/> | |
| 207 | +<use xlink:href="#glyph-0-2" x="249.392748" y="71.58606"/> | |
| 208 | +</g> | |
| 209 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 210 | +<use xlink:href="#glyph-0-17" x="257.058894" y="71.58606"/> | |
| 211 | +<use xlink:href="#glyph-0-14" x="261.429943" y="71.58606"/> | |
| 212 | +<use xlink:href="#glyph-0-2" x="266.002731" y="71.58606"/> | |
| 213 | +<use xlink:href="#glyph-0-14" x="270.869725" y="71.58606"/> | |
| 214 | +<use xlink:href="#glyph-0-12" x="275.442514" y="71.58606"/> | |
| 215 | +</g> | |
| 216 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 217 | +<use xlink:href="#glyph-0-9" x="278.493842" y="71.58606"/> | |
| 218 | +</g> | |
| 219 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 220 | +<use xlink:href="#glyph-0-6" x="282.982572" y="71.58606"/> | |
| 221 | +</g> | |
| 222 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 223 | +<use xlink:href="#glyph-0-4" x="285.411866" y="71.58606"/> | |
| 224 | +</g> | |
| 225 | +<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 215.714844 103.496094 L 136.597656 103.496094 C 133.308594 103.496094 130.636719 106.164062 130.636719 109.457031 L 130.636719 123.152344 C 130.636719 126.445312 133.308594 129.113281 136.597656 129.113281 L 215.714844 129.113281 C 219.007812 129.113281 221.675781 126.445312 221.675781 123.152344 L 221.675781 109.457031 C 221.675781 106.164062 219.007812 103.496094 215.714844 103.496094 Z M 215.714844 103.496094 "/> | |
| 226 | +<g clip-path="url(#clip-1)"> | |
| 227 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 62.341335 -86.545592 L -16.987985 -86.545592 C -20.285866 -86.545592 -22.964905 -89.220714 -22.964905 -92.522512 L -22.964905 -106.254545 C -22.964905 -109.556343 -20.285866 -112.231465 -16.987985 -112.231465 L 62.341335 -112.231465 C 65.643133 -112.231465 68.318255 -109.556343 68.318255 -106.254545 L 68.318255 -92.522512 C 68.318255 -89.220714 65.643133 -86.545592 62.341335 -86.545592 Z M 62.341335 -86.545592 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 228 | +</g> | |
| 229 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 230 | +<use xlink:href="#glyph-1-0" x="143.381452" y="113.964434"/> | |
| 231 | +<use xlink:href="#glyph-1-1" x="146.13671" y="113.964434"/> | |
| 232 | +<use xlink:href="#glyph-1-2" x="151.544488" y="113.964434"/> | |
| 233 | +<use xlink:href="#glyph-1-3" x="155.906201" y="113.964434"/> | |
| 234 | +<use xlink:href="#glyph-1-4" x="161.379358" y="113.964434"/> | |
| 235 | +<use xlink:href="#glyph-1-5" x="166.46024" y="113.964434"/> | |
| 236 | +<use xlink:href="#glyph-1-6" x="170.924692" y="113.964434"/> | |
| 237 | +<use xlink:href="#glyph-1-7" x="174.296381" y="113.964434"/> | |
| 238 | +<use xlink:href="#glyph-1-8" x="176.874181" y="113.964434"/> | |
| 239 | +<use xlink:href="#glyph-1-1" x="182.328658" y="113.964434"/> | |
| 240 | +</g> | |
| 241 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 242 | +<use xlink:href="#glyph-1-3" x="190.846608" y="113.964434"/> | |
| 243 | +<use xlink:href="#glyph-1-9" x="196.319765" y="113.964434"/> | |
| 244 | +</g> | |
| 245 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 246 | +<use xlink:href="#glyph-1-8" x="199.710133" y="113.964434"/> | |
| 247 | +<use xlink:href="#glyph-1-10" x="205.16461" y="113.964434"/> | |
| 248 | +</g> | |
| 249 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 250 | +<use xlink:href="#glyph-1-11" x="150.556215" y="125.887465"/> | |
| 251 | +</g> | |
| 252 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 253 | +<use xlink:href="#glyph-1-4" x="153.591669" y="125.887465"/> | |
| 254 | +<use xlink:href="#glyph-1-2" x="158.672551" y="125.887465"/> | |
| 255 | +</g> | |
| 256 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 257 | +<use xlink:href="#glyph-1-2" x="162.940866" y="125.887465"/> | |
| 258 | +<use xlink:href="#glyph-1-7" x="167.30258" y="125.887465"/> | |
| 259 | +<use xlink:href="#glyph-1-8" x="169.88038" y="125.887465"/> | |
| 260 | +<use xlink:href="#glyph-1-1" x="175.334857" y="125.887465"/> | |
| 261 | +<use xlink:href="#glyph-1-1" x="180.742635" y="125.887465"/> | |
| 262 | +<use xlink:href="#glyph-1-4" x="186.150412" y="125.887465"/> | |
| 263 | +<use xlink:href="#glyph-1-12" x="191.231295" y="125.887465"/> | |
| 264 | +<use xlink:href="#glyph-1-12" x="193.977213" y="125.887465"/> | |
| 265 | +</g> | |
| 266 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 267 | +<use xlink:href="#glyph-1-4" x="196.676432" y="125.887465"/> | |
| 268 | +</g> | |
| 269 | +<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 141.267232 -86.545592 L 61.937912 -86.545592 C 58.636114 -86.545592 55.960992 -89.220714 55.960992 -92.522512 L 55.960992 -100.410794 C 55.960992 -103.712592 58.636114 -106.387714 61.937912 -106.387714 L 141.267232 -106.387714 C 144.56903 -106.387714 147.244153 -103.712592 147.244153 -100.410794 L 147.244153 -92.522512 C 147.244153 -89.220714 144.56903 -86.545592 141.267232 -86.545592 Z M 141.267232 -86.545592 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 270 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 271 | +<use xlink:href="#glyph-1-13" x="217.942536" y="116.070786"/> | |
| 272 | +<use xlink:href="#glyph-1-14" x="223.621169" y="116.070786"/> | |
| 273 | +<use xlink:href="#glyph-1-9" x="228.991587" y="116.070786"/> | |
| 274 | +</g> | |
| 275 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 276 | +<use xlink:href="#glyph-1-4" x="232.381956" y="116.070786"/> | |
| 277 | +</g> | |
| 278 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 279 | +<use xlink:href="#glyph-1-15" x="237.416139" y="116.070786"/> | |
| 280 | +<use xlink:href="#glyph-1-14" x="242.450322" y="116.070786"/> | |
| 281 | +</g> | |
| 282 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 283 | +<use xlink:href="#glyph-1-16" x="250.930913" y="116.070786"/> | |
| 284 | +<use xlink:href="#glyph-1-14" x="256.441429" y="116.070786"/> | |
| 285 | +</g> | |
| 286 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 287 | +<use xlink:href="#glyph-1-2" x="264.931359" y="116.070786"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-1-17" x="269.246373" y="116.070786"/> | |
| 291 | +<use xlink:href="#glyph-1-1" x="273.841583" y="116.070786"/> | |
| 292 | +<use xlink:href="#glyph-1-16" x="279.249361" y="116.070786"/> | |
| 293 | +<use xlink:href="#glyph-1-7" x="284.759877" y="116.070786"/> | |
| 294 | +<use xlink:href="#glyph-1-5" x="287.337677" y="116.070786"/> | |
| 295 | +</g> | |
| 296 | +<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" d="M 373.144531 103.496094 L 294.027344 103.496094 C 290.734375 103.496094 288.066406 106.164062 288.066406 109.457031 L 288.066406 117.324219 C 288.066406 120.617188 290.734375 123.285156 294.027344 123.285156 L 373.144531 123.285156 C 376.4375 123.285156 379.105469 120.617188 379.105469 117.324219 L 379.105469 109.457031 C 379.105469 106.164062 376.4375 103.496094 373.144531 103.496094 Z M 373.144531 103.496094 "/> | |
| 297 | +<g clip-path="url(#clip-2)"> | |
| 298 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 220.19313 -86.545592 L 140.86381 -86.545592 C 137.562012 -86.545592 134.88689 -89.220714 134.88689 -92.522512 L 134.88689 -100.410794 C 134.88689 -103.712592 137.562012 -106.387714 140.86381 -106.387714 L 220.19313 -106.387714 C 223.494928 -106.387714 226.17005 -103.712592 226.17005 -100.410794 L 226.17005 -92.522512 C 226.17005 -89.220714 223.494928 -86.545592 220.19313 -86.545592 Z M 220.19313 -86.545592 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 299 | +</g> | |
| 300 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 301 | +<use xlink:href="#glyph-1-18" x="291.991991" y="117.012262"/> | |
| 302 | +</g> | |
| 303 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 304 | +<use xlink:href="#glyph-1-8" x="296.250966" y="117.012262"/> | |
| 305 | +<use xlink:href="#glyph-1-9" x="301.705443" y="117.012262"/> | |
| 306 | +<use xlink:href="#glyph-1-19" x="305.282608" y="117.012262"/> | |
| 307 | +<use xlink:href="#glyph-1-15" x="313.221487" y="117.012262"/> | |
| 308 | +<use xlink:href="#glyph-1-6" x="318.255671" y="117.012262"/> | |
| 309 | +<use xlink:href="#glyph-1-7" x="321.627359" y="117.012262"/> | |
| 310 | +<use xlink:href="#glyph-1-8" x="324.20516" y="117.012262"/> | |
| 311 | +<use xlink:href="#glyph-1-1" x="329.659637" y="117.012262"/> | |
| 312 | +</g> | |
| 313 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 314 | +<use xlink:href="#glyph-1-5" x="338.177587" y="117.012262"/> | |
| 315 | +</g> | |
| 316 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 317 | +<use xlink:href="#glyph-1-8" x="342.501941" y="117.012262"/> | |
| 318 | +<use xlink:href="#glyph-1-1" x="347.956418" y="117.012262"/> | |
| 319 | +<use xlink:href="#glyph-1-6" x="353.364195" y="117.012262"/> | |
| 320 | +<use xlink:href="#glyph-1-7" x="356.735884" y="117.012262"/> | |
| 321 | +<use xlink:href="#glyph-1-1" x="359.313684" y="117.012262"/> | |
| 322 | +<use xlink:href="#glyph-1-14" x="364.721462" y="117.012262"/> | |
| 323 | +<use xlink:href="#glyph-1-4" x="370.09188" y="117.012262"/> | |
| 324 | +</g> | |
| 325 | +<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M -61.940222 -86.545592 L -141.265625 -86.545592 C -144.567423 -86.545592 -147.246462 -89.220714 -147.246462 -92.522512 L -147.246462 -100.410794 C -147.246462 -103.712592 -144.567423 -106.387714 -141.265625 -106.387714 L -61.940222 -106.387714 C -58.638424 -106.387714 -55.963302 -103.712592 -55.963302 -100.410794 L -55.963302 -92.522512 C -55.963302 -89.220714 -58.638424 -86.545592 -61.940222 -86.545592 Z M -61.940222 -86.545592 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 326 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 327 | +<use xlink:href="#glyph-1-20" x="10.674273" y="117.012262"/> | |
| 328 | +</g> | |
| 329 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 330 | +<use xlink:href="#glyph-1-8" x="15.717796" y="117.012262"/> | |
| 331 | +<use xlink:href="#glyph-1-19" x="21.172272" y="117.012262"/> | |
| 332 | +<use xlink:href="#glyph-1-7" x="29.111151" y="117.012262"/> | |
| 333 | +<use xlink:href="#glyph-1-6" x="31.688952" y="117.012262"/> | |
| 334 | +</g> | |
| 335 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 336 | +<use xlink:href="#glyph-1-21" x="34.920543" y="117.012262"/> | |
| 337 | +</g> | |
| 338 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 339 | +<use xlink:href="#glyph-1-16" x="43.111598" y="117.012262"/> | |
| 340 | +<use xlink:href="#glyph-1-22" x="48.622114" y="117.012262"/> | |
| 341 | +</g> | |
| 342 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 343 | +<use xlink:href="#glyph-1-15" x="50.611503" y="117.012262"/> | |
| 344 | +<use xlink:href="#glyph-1-16" x="55.645687" y="117.012262"/> | |
| 345 | +<use xlink:href="#glyph-1-19" x="61.156203" y="117.012262"/> | |
| 346 | +<use xlink:href="#glyph-1-7" x="69.095082" y="117.012262"/> | |
| 347 | +<use xlink:href="#glyph-1-2" x="71.672882" y="117.012262"/> | |
| 348 | +</g> | |
| 349 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 350 | +<use xlink:href="#glyph-1-2" x="75.941197" y="117.012262"/> | |
| 351 | +<use xlink:href="#glyph-1-7" x="80.302911" y="117.012262"/> | |
| 352 | +<use xlink:href="#glyph-1-8" x="82.880711" y="117.012262"/> | |
| 353 | +<use xlink:href="#glyph-1-1" x="88.335188" y="117.012262"/> | |
| 354 | +</g> | |
| 355 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -23.865752 -12.245345 L -78.413961 -40.230335 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 356 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549689 3.111529 C -2.085466 1.244583 -1.045242 0.363205 0.000316429 -0.00144966 C -1.047473 -0.362013 -2.084868 -1.242966 -2.550874 -3.112571 " transform="matrix(-0.887341, 0.45518, 0.45518, 0.887341, 74.981409, 57.485517)"/> | |
| 357 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 23.863442 -12.245345 L 78.415569 -40.230335 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 358 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552929 3.111517 C -2.083437 1.2437 -1.046043 0.362747 -0.00173841 0.000395584 C -1.047297 -0.364259 -2.084036 -1.243849 -2.551743 -3.112583 " transform="matrix(0.887341, 0.45518, 0.45518, -0.887341, 232.099019, 57.485517)"/> | |
| 359 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 82.332292 -63.668009 L 45.131251 -85.9385 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 360 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551386 3.111085 C -2.085323 1.243471 -1.047273 0.361868 0.000325615 -0.000475237 C -1.04788 -0.363603 -2.086156 -1.243955 -2.551114 -3.111171 " transform="matrix(-0.855696, 0.512237, 0.512237, 0.855696, 198.21146, 103.09399)"/> | |
| 361 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 101.602572 -63.668009 L 101.602572 -85.550744 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 362 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552054 3.109271 C -2.085964 1.244911 -1.048032 0.363648 0.00165003 -0.000607512 C -1.048032 -0.364863 -2.085964 -1.246126 -2.552054 -3.110486 " transform="matrix(0, 0.997326, 0.997326, 0, 254.8717, 102.900698)"/> | |
| 363 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 122.141871 -63.668009 L 161.826115 -85.958083 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 364 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.550132 3.111785 C -2.084937 1.243671 -1.046419 0.362427 0.000334771 0.00243272 C -1.046469 -0.365366 -2.084432 -1.244823 -2.550579 -3.110407 " transform="matrix(0.869529, 0.488361, 0.488361, -0.869529, 315.279771, 103.103514)"/> | |
| 365 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -101.604882 -63.668009 L -101.604882 -85.550744 " transform="matrix(0.997326, 0, 0, -0.997326, 153.540214, 17.181931)"/> | |
| 366 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552054 3.112093 C -2.085964 1.243816 -1.048032 0.362553 0.00165003 -0.0017018 C -1.048032 -0.36204 -2.085964 -1.243303 -2.552054 -3.11158 " transform="matrix(0, 0.997326, 0.997326, 0, 52.208728, 102.900698)"/> | |
| 367 | +</svg> | |
added
dist/assets/fig/d9fd9916b0fdc514.svg
+436 −0
@@ -0,0 +1,436 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="259.275pt" height="145.238pt" viewBox="0 0 259.275 145.238"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.40625 C 2.328125 -4.59375 2.3125 -4.609375 2.109375 -4.609375 C 1.671875 -4.171875 1.046875 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 3.578125 -2.21875 C 3.578125 -2.96875 3.484375 -3.53125 3.171875 -4.015625 C 2.953125 -4.328125 2.53125 -4.609375 1.96875 -4.609375 C 0.359375 -4.609375 0.359375 -2.71875 0.359375 -2.21875 C 0.359375 -1.71875 0.359375 0.140625 1.96875 0.140625 C 3.578125 0.140625 3.578125 -1.71875 3.578125 -2.21875 Z M 2.953125 -2.296875 C 2.953125 -1.796875 2.953125 -1.28125 2.859375 -0.84375 C 2.71875 -0.203125 2.25 -0.0625 1.96875 -0.0625 C 1.65625 -0.0625 1.234375 -0.25 1.09375 -0.8125 C 0.984375 -1.21875 0.984375 -1.796875 0.984375 -2.296875 C 0.984375 -2.8125 0.984375 -3.34375 1.09375 -3.71875 C 1.234375 -4.265625 1.6875 -4.40625 1.96875 -4.40625 C 2.34375 -4.40625 2.703125 -4.1875 2.828125 -3.78125 C 2.9375 -3.40625 2.953125 -2.90625 2.953125 -2.296875 Z M 2.953125 -2.296875 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.25 -1.109375 3.171875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.421875 2.515625 -1.75 C 3.03125 -2.171875 3.5 -2.59375 3.5 -3.25 C 3.5 -4.09375 2.765625 -4.609375 1.875 -4.609375 C 1.015625 -4.609375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3.015625 0.734375 -2.96875 0.8125 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.46875 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.203125 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.65625 2.40625 -2.171875 2.171875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.5 -1.265625 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.5625 -1.203125 C 3.5625 -1.734375 3.125 -2.28125 2.359375 -2.4375 C 3.09375 -2.703125 3.34375 -3.21875 3.34375 -3.65625 C 3.34375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.171875 -4.609375 0.59375 -4.234375 0.59375 -3.671875 C 0.59375 -3.4375 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.296875 -3.46875 1.296875 -3.65625 C 1.296875 -3.859375 1.171875 -4.015625 0.953125 -4.03125 C 1.1875 -4.328125 1.671875 -4.40625 1.921875 -4.40625 C 2.234375 -4.40625 2.671875 -4.25 2.671875 -3.65625 C 2.671875 -3.359375 2.578125 -3.03125 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.625 -2.53125 C 1.453125 -2.515625 1.4375 -2.515625 1.40625 -2.5 C 1.40625 -2.5 1.34375 -2.484375 1.34375 -2.421875 C 1.34375 -2.3125 1.40625 -2.3125 1.515625 -2.3125 L 1.890625 -2.3125 C 2.4375 -2.3125 2.828125 -1.9375 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.0625 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.171875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.5625 -0.5 3.5625 -1.203125 Z M 3.5625 -1.203125 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 3.671875 -1.140625 L 3.671875 -1.390625 L 2.90625 -1.390625 L 2.90625 -4.484375 C 2.90625 -4.625 2.90625 -4.671875 2.75 -4.671875 C 2.65625 -4.671875 2.640625 -4.671875 2.5625 -4.578125 L 0.265625 -1.390625 L 0.265625 -1.140625 L 2.3125 -1.140625 L 2.3125 -0.5625 C 2.3125 -0.328125 2.3125 -0.25 1.75 -0.25 L 1.5625 -0.25 L 1.5625 0 L 2.609375 -0.03125 L 3.65625 0 L 3.65625 -0.25 L 3.46875 -0.25 C 2.90625 -0.25 2.90625 -0.328125 2.90625 -0.5625 L 2.90625 -1.140625 Z M 2.359375 -1.390625 L 0.53125 -1.390625 L 2.359375 -3.921875 Z M 2.359375 -1.390625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 3.5 -1.390625 C 3.5 -2.171875 2.90625 -2.90625 2.046875 -2.90625 C 1.734375 -2.90625 1.375 -2.828125 1.078125 -2.5625 L 1.078125 -3.875 C 1.421875 -3.78125 1.640625 -3.78125 1.75 -3.78125 C 2.65625 -3.78125 3.203125 -4.40625 3.203125 -4.515625 C 3.203125 -4.578125 3.15625 -4.609375 3.125 -4.609375 C 3.125 -4.609375 3.09375 -4.609375 3.0625 -4.578125 C 2.90625 -4.515625 2.53125 -4.390625 2.015625 -4.390625 C 1.828125 -4.390625 1.453125 -4.390625 1 -4.578125 C 0.9375 -4.609375 0.921875 -4.609375 0.921875 -4.609375 C 0.828125 -4.609375 0.828125 -4.53125 0.828125 -4.421875 L 0.828125 -2.375 C 0.828125 -2.25 0.828125 -2.171875 0.9375 -2.171875 C 1 -2.171875 1 -2.1875 1.078125 -2.265625 C 1.375 -2.65625 1.796875 -2.703125 2.046875 -2.703125 C 2.453125 -2.703125 2.640625 -2.375 2.671875 -2.3125 C 2.796875 -2.09375 2.84375 -1.828125 2.84375 -1.421875 C 2.84375 -1.21875 2.84375 -0.8125 2.640625 -0.5 C 2.46875 -0.25 2.171875 -0.078125 1.828125 -0.078125 C 1.375 -0.078125 0.90625 -0.328125 0.734375 -0.796875 C 1 -0.765625 1.125 -0.9375 1.125 -1.125 C 1.125 -1.421875 0.875 -1.484375 0.78125 -1.484375 C 0.78125 -1.484375 0.4375 -1.484375 0.4375 -1.109375 C 0.4375 -0.484375 1 0.140625 1.84375 0.140625 C 2.71875 0.140625 3.5 -0.515625 3.5 -1.390625 Z M 3.5 -1.390625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 3.5625 -1.421875 C 3.5625 -2.296875 2.859375 -2.953125 2.046875 -2.953125 C 1.5 -2.953125 1.1875 -2.578125 1.046875 -2.265625 C 1.046875 -2.84375 1.09375 -3.34375 1.359375 -3.78125 C 1.59375 -4.15625 1.96875 -4.40625 2.40625 -4.40625 C 2.609375 -4.40625 2.890625 -4.34375 3.03125 -4.15625 C 2.859375 -4.15625 2.71875 -4.03125 2.71875 -3.828125 C 2.71875 -3.65625 2.828125 -3.5 3.03125 -3.5 C 3.25 -3.5 3.375 -3.640625 3.375 -3.84375 C 3.375 -4.25 3.078125 -4.609375 2.390625 -4.609375 C 1.390625 -4.609375 0.375 -3.6875 0.375 -2.203125 C 0.375 -0.40625 1.21875 0.140625 1.984375 0.140625 C 2.828125 0.140625 3.5625 -0.5 3.5625 -1.421875 Z M 2.90625 -1.421875 C 2.90625 -1.015625 2.90625 -0.734375 2.71875 -0.453125 C 2.546875 -0.21875 2.328125 -0.078125 1.984375 -0.078125 C 1.640625 -0.078125 1.359375 -0.28125 1.21875 -0.59375 C 1.109375 -0.796875 1.0625 -1.140625 1.0625 -1.5625 C 1.0625 -2.234375 1.46875 -2.75 2.015625 -2.75 C 2.34375 -2.75 2.546875 -2.625 2.71875 -2.375 C 2.890625 -2.109375 2.90625 -1.8125 2.90625 -1.421875 Z M 2.90625 -1.421875 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 3.78125 -4.46875 L 1.96875 -4.46875 C 1.6875 -4.46875 1.609375 -4.46875 1.359375 -4.5 C 1 -4.515625 0.984375 -4.578125 0.96875 -4.6875 L 0.734375 -4.6875 L 0.484375 -3.203125 L 0.71875 -3.203125 C 0.734375 -3.3125 0.8125 -3.765625 0.921875 -3.84375 C 0.96875 -3.875 1.53125 -3.875 1.640625 -3.875 L 3.15625 -3.875 L 2.421875 -2.96875 C 1.515625 -1.765625 1.4375 -0.671875 1.4375 -0.25 C 1.4375 -0.1875 1.4375 0.140625 1.765625 0.140625 C 2.09375 0.140625 2.09375 -0.171875 2.09375 -0.265625 L 2.09375 -0.546875 C 2.09375 -1.890625 2.375 -2.5 2.671875 -2.875 L 3.71875 -4.1875 C 3.78125 -4.28125 3.78125 -4.28125 3.78125 -4.46875 Z M 3.78125 -4.46875 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 3.5625 -1.171875 C 3.5625 -1.625 3.296875 -2.015625 2.890625 -2.25 L 2.46875 -2.5 C 3 -2.765625 3.34375 -3.09375 3.34375 -3.578125 C 3.34375 -4.25 2.65625 -4.609375 1.984375 -4.609375 C 1.21875 -4.609375 0.59375 -4.109375 0.59375 -3.453125 C 0.59375 -3.125 0.75 -2.890625 0.875 -2.75 C 0.984375 -2.609375 1.046875 -2.578125 1.453125 -2.328125 C 1.0625 -2.171875 0.375 -1.796875 0.375 -1.0625 C 0.375 -0.296875 1.171875 0.140625 1.96875 0.140625 C 2.84375 0.140625 3.5625 -0.421875 3.5625 -1.171875 Z M 2.984375 -3.578125 C 2.984375 -2.953125 2.25 -2.640625 2.25 -2.640625 C 2.25 -2.640625 2.21875 -2.65625 2.171875 -2.671875 L 1.328125 -3.15625 C 1.15625 -3.265625 0.953125 -3.453125 0.953125 -3.71875 C 0.953125 -4.15625 1.46875 -4.40625 1.96875 -4.40625 C 2.5 -4.40625 2.984375 -4.0625 2.984375 -3.578125 Z M 3.15625 -0.921875 C 3.15625 -0.40625 2.578125 -0.078125 1.984375 -0.078125 C 1.34375 -0.078125 0.796875 -0.5 0.796875 -1.0625 C 0.796875 -1.578125 1.171875 -1.96875 1.671875 -2.203125 C 2.0625 -1.984375 2.078125 -1.984375 2.625 -1.65625 C 2.796875 -1.546875 3.15625 -1.34375 3.15625 -0.921875 Z M 3.15625 -0.921875 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-1-0"> | |
| 33 | +<path d="M 1.828125 -4.484375 L 0.65625 -4.484375 L 0.65625 0 L 1.265625 0 L 1.265625 -1.65625 L 1.84375 -1.65625 C 2.828125 -1.65625 3.578125 -2.078125 3.578125 -3.09375 C 3.578125 -4.046875 2.90625 -4.484375 1.828125 -4.484375 Z M 1.8125 -2.140625 L 1.265625 -2.140625 L 1.265625 -4 L 1.828125 -4 C 2.484375 -4 2.921875 -3.765625 2.921875 -3.09375 C 2.921875 -2.328125 2.46875 -2.140625 1.8125 -2.140625 Z M 1.8125 -2.140625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-1-1"> | |
| 36 | +<path d="M 3.21875 -1.8125 C 3.21875 -2.859375 2.71875 -3.515625 1.796875 -3.515625 C 0.90625 -3.515625 0.375 -2.75 0.375 -1.6875 C 0.375 -0.59375 0.9375 0.078125 1.890625 0.078125 C 2.359375 0.078125 2.75 -0.078125 3.09375 -0.359375 L 2.828125 -0.703125 C 2.53125 -0.5 2.28125 -0.40625 1.9375 -0.40625 C 1.4375 -0.40625 1.0625 -0.71875 1.015625 -1.515625 L 3.203125 -1.515625 C 3.203125 -1.59375 3.21875 -1.703125 3.21875 -1.8125 Z M 2.625 -1.953125 L 1.015625 -1.953125 C 1.0625 -2.71875 1.359375 -3.03125 1.8125 -3.03125 C 2.359375 -3.03125 2.625 -2.671875 2.625 -2 Z M 2.625 -1.953125 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-1-2"> | |
| 39 | +<path d="M 2.21875 -3.515625 C 1.765625 -3.515625 1.40625 -3.28125 1.171875 -2.921875 L 1.109375 -3.4375 L 0.59375 -3.4375 L 0.59375 0 L 1.203125 0 L 1.203125 -2.4375 C 1.421875 -2.796875 1.6875 -3.046875 2.078125 -3.046875 C 2.40625 -3.046875 2.609375 -2.890625 2.609375 -2.375 L 2.609375 0 L 3.21875 0 L 3.21875 -2.46875 C 3.21875 -3.109375 2.84375 -3.515625 2.21875 -3.515625 Z M 2.21875 -3.515625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-1-3"> | |
| 42 | +<path d="M 2.125 -0.546875 C 1.953125 -0.46875 1.8125 -0.421875 1.671875 -0.421875 C 1.375 -0.421875 1.25 -0.578125 1.25 -0.921875 L 1.25 -2.96875 L 2 -2.96875 L 2.078125 -3.4375 L 1.25 -3.4375 L 1.25 -4.28125 L 0.65625 -4.203125 L 0.65625 -3.4375 L 0.0625 -3.4375 L 0.0625 -2.96875 L 0.65625 -2.96875 L 0.65625 -0.90625 C 0.65625 -0.265625 1 0.078125 1.578125 0.078125 C 1.875 0.078125 2.125 0 2.359375 -0.15625 Z M 2.125 -0.546875 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-1-4"> | |
| 45 | +<path d="M 2.109375 -3.671875 L 1.578125 -3.671875 L 0.234375 -2.84375 L 0.484375 -2.421875 L 1.5 -3.03125 L 1.5 0 L 2.109375 0 Z M 2.109375 -3.671875 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-1-5"> | |
| 48 | +<path d="M 1.96875 -3.734375 C 0.984375 -3.734375 0.265625 -3.046875 0.265625 -1.84375 C 0.265625 -0.625 0.984375 0.078125 1.96875 0.078125 C 2.96875 0.078125 3.6875 -0.625 3.6875 -1.84375 C 3.6875 -3.046875 2.96875 -3.734375 1.96875 -3.734375 Z M 1.96875 -3.265625 C 2.53125 -3.265625 3.078125 -2.890625 3.078125 -1.84375 C 3.078125 -0.78125 2.53125 -0.390625 1.96875 -0.390625 C 1.40625 -0.390625 0.859375 -0.78125 0.859375 -1.84375 C 0.859375 -2.890625 1.40625 -3.265625 1.96875 -3.265625 Z M 1.96875 -3.265625 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-1-6"> | |
| 51 | +<path d="M 0.203125 -1.78125 L 3.171875 -1.78125 L 3.171875 -2.296875 L 0.203125 -2.296875 Z M 0.203125 -1.78125 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-1-7"> | |
| 54 | +<path d="M 1.453125 -3.734375 C 0.96875 -3.734375 0.5625 -3.578125 0.1875 -3.21875 L 0.5 -2.859375 C 0.796875 -3.140625 1.0625 -3.265625 1.40625 -3.265625 C 1.859375 -3.265625 2.15625 -3.015625 2.15625 -2.609375 C 2.15625 -2.125 1.796875 -1.875 1.328125 -1.875 L 1.109375 -1.875 L 1.046875 -1.40625 L 1.375 -1.40625 C 1.953125 -1.40625 2.265625 -1.171875 2.265625 -0.59375 C 2.265625 -0.0625 1.921875 0.28125 1.359375 0.28125 C 1 0.28125 0.703125 0.140625 0.421875 -0.15625 L 0.0625 0.171875 C 0.390625 0.578125 0.859375 0.765625 1.375 0.765625 C 2.3125 0.765625 2.890625 0.203125 2.890625 -0.5625 C 2.890625 -1.25 2.46875 -1.609375 1.890625 -1.671875 C 2.390625 -1.78125 2.75 -2.140625 2.75 -2.65625 C 2.75 -3.21875 2.296875 -3.734375 1.453125 -3.734375 Z M 1.453125 -3.734375 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-1-8"> | |
| 57 | +<path d="M 3.203125 -1.21875 C 3.203125 -2.046875 2.609375 -2.3125 1.90625 -2.53125 C 1.125 -2.78125 0.953125 -2.953125 0.953125 -3.3125 C 0.953125 -3.734375 1.296875 -3.9375 1.734375 -3.9375 C 2.109375 -3.9375 2.421875 -3.828125 2.71875 -3.546875 L 3.0625 -3.921875 C 2.765625 -4.203125 2.453125 -4.359375 2.015625 -4.40625 L 2.015625 -5.375 L 1.5 -5.375 L 1.5 -4.421875 C 0.8125 -4.34375 0.34375 -3.90625 0.34375 -3.296875 C 0.34375 -2.625 0.78125 -2.296875 1.625 -2.03125 C 2.375 -1.8125 2.578125 -1.609375 2.578125 -1.1875 C 2.578125 -0.671875 2.15625 -0.421875 1.640625 -0.421875 C 1.171875 -0.421875 0.8125 -0.59375 0.515625 -0.875 L 0.15625 -0.484375 C 0.5 -0.15625 0.9375 0.046875 1.5 0.078125 L 1.5 1.015625 L 2.015625 1.015625 L 2.015625 0.046875 C 2.765625 -0.078125 3.203125 -0.5625 3.203125 -1.21875 Z M 3.203125 -1.21875 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-1-9"> | |
| 60 | +<path d="M 2.203125 -5.265625 L 0.6875 0.546875 L 1.203125 0.671875 L 2.703125 -5.140625 Z M 2.203125 -5.265625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-1-10"> | |
| 63 | +<path d="M 2.171875 -3.515625 C 1.78125 -3.515625 1.40625 -3.328125 1.15625 -2.96875 L 1.109375 -3.4375 L 0.59375 -3.4375 L 0.59375 1.390625 L 1.203125 1.3125 L 1.203125 -0.3125 C 1.421875 -0.046875 1.734375 0.078125 2.09375 0.078125 C 2.984375 0.078125 3.453125 -0.671875 3.453125 -1.71875 C 3.453125 -2.796875 3.09375 -3.515625 2.171875 -3.515625 Z M 1.953125 -0.40625 C 1.640625 -0.40625 1.375 -0.5625 1.203125 -0.828125 L 1.203125 -2.5 C 1.375 -2.78125 1.65625 -3.03125 2.03125 -3.03125 C 2.546875 -3.03125 2.796875 -2.609375 2.796875 -1.71875 C 2.796875 -0.828125 2.5 -0.40625 1.953125 -0.40625 Z M 1.953125 -0.40625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-11"> | |
| 66 | +<path d="M 0.890625 -5.078125 C 0.640625 -5.078125 0.46875 -4.90625 0.46875 -4.671875 C 0.46875 -4.4375 0.640625 -4.265625 0.890625 -4.265625 C 1.140625 -4.265625 1.3125 -4.4375 1.3125 -4.671875 C 1.3125 -4.90625 1.140625 -5.078125 0.890625 -5.078125 Z M 1.203125 -3.4375 L 0.59375 -3.4375 L 0.59375 0 L 1.203125 0 Z M 1.203125 -3.4375 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-12"> | |
| 69 | +<path d="M 0.78125 -3.21875 C 0.515625 -3.21875 0.328125 -3.015625 0.328125 -2.78125 C 0.328125 -2.515625 0.515625 -2.3125 0.78125 -2.3125 C 1.03125 -2.3125 1.234375 -2.515625 1.234375 -2.78125 C 1.234375 -3.015625 1.03125 -3.21875 0.78125 -3.21875 Z M 0.78125 -0.828125 C 0.515625 -0.828125 0.328125 -0.625 0.328125 -0.375 C 0.328125 -0.125 0.515625 0.078125 0.78125 0.078125 C 1.03125 0.078125 1.234375 -0.125 1.234375 -0.375 C 1.234375 -0.625 1.03125 -0.828125 0.78125 -0.828125 Z M 0.78125 -0.828125 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-13"> | |
| 72 | +<path d="M 2.90625 -0.796875 L 2.90625 -2.375 C 2.90625 -3.09375 2.515625 -3.515625 1.6875 -3.515625 C 1.3125 -3.515625 0.9375 -3.4375 0.515625 -3.28125 L 0.65625 -2.84375 C 1.015625 -2.953125 1.328125 -3.015625 1.578125 -3.015625 C 2.0625 -3.015625 2.296875 -2.84375 2.296875 -2.34375 L 2.296875 -2.09375 L 1.765625 -2.09375 C 0.8125 -2.09375 0.265625 -1.6875 0.265625 -0.953125 C 0.265625 -0.34375 0.671875 0.078125 1.359375 0.078125 C 1.765625 0.078125 2.140625 -0.078125 2.375 -0.4375 C 2.484375 -0.09375 2.703125 0.046875 3.046875 0.078125 L 3.1875 -0.34375 C 3.015625 -0.40625 2.90625 -0.5 2.90625 -0.796875 Z M 1.484375 -0.375 C 1.09375 -0.375 0.90625 -0.59375 0.90625 -0.984375 C 0.90625 -1.453125 1.21875 -1.6875 1.84375 -1.6875 L 2.296875 -1.6875 L 2.296875 -0.90625 C 2.109375 -0.546875 1.84375 -0.375 1.484375 -0.375 Z M 1.484375 -0.375 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-14"> | |
| 75 | +<path d="M 0.90625 -5.078125 C 0.65625 -5.078125 0.484375 -4.90625 0.484375 -4.671875 C 0.484375 -4.4375 0.65625 -4.265625 0.90625 -4.265625 C 1.15625 -4.265625 1.328125 -4.4375 1.328125 -4.671875 C 1.328125 -4.90625 1.15625 -5.078125 0.90625 -5.078125 Z M 1.203125 -3.4375 L 0.609375 -3.4375 L 0.609375 -0.171875 C 0.609375 0.5625 0.390625 0.734375 -0.0625 0.9375 L 0.125 1.375 C 0.84375 1.0625 1.203125 0.765625 1.203125 -0.203125 Z M 1.203125 -3.4375 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-15"> | |
| 78 | +<path d="M 3.140625 -3.4375 L 2.546875 -3.4375 L 2.546875 -0.984375 C 2.34375 -0.640625 2.0625 -0.390625 1.6875 -0.390625 C 1.3125 -0.390625 1.15625 -0.5625 1.15625 -1.03125 L 1.15625 -3.4375 L 0.5625 -3.4375 L 0.5625 -0.96875 C 0.5625 -0.296875 0.921875 0.078125 1.515625 0.078125 C 2 0.078125 2.328125 -0.125 2.59375 -0.53125 L 2.625 0 L 3.140625 0 Z M 3.140625 -3.4375 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-16"> | |
| 81 | +<path d="M 1.546875 -3.515625 C 0.84375 -3.515625 0.3125 -3.109375 0.3125 -2.5625 C 0.3125 -2.078125 0.609375 -1.765625 1.34375 -1.5625 C 2.015625 -1.390625 2.1875 -1.265625 2.1875 -0.921875 C 2.1875 -0.59375 1.890625 -0.40625 1.453125 -0.40625 C 1.078125 -0.40625 0.75 -0.53125 0.484375 -0.734375 L 0.15625 -0.375 C 0.46875 -0.109375 0.875 0.078125 1.453125 0.078125 C 2.15625 0.078125 2.8125 -0.25 2.8125 -0.96875 C 2.8125 -1.5625 2.390625 -1.84375 1.671875 -2.03125 C 1.125 -2.171875 0.9375 -2.3125 0.9375 -2.59375 C 0.9375 -2.859375 1.171875 -3.03125 1.5625 -3.03125 C 1.890625 -3.03125 2.15625 -2.9375 2.46875 -2.75 L 2.71875 -3.125 C 2.390625 -3.375 2.03125 -3.515625 1.546875 -3.515625 Z M 1.546875 -3.515625 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-17"> | |
| 84 | +<path d="M 4.046875 -3.515625 C 3.578125 -3.515625 3.265625 -3.265625 3.015625 -2.890625 C 2.890625 -3.28125 2.578125 -3.515625 2.15625 -3.515625 C 1.703125 -3.515625 1.390625 -3.28125 1.171875 -2.9375 L 1.109375 -3.4375 L 0.59375 -3.4375 L 0.59375 0 L 1.203125 0 L 1.203125 -2.4375 C 1.421875 -2.796875 1.640625 -3.046875 2 -3.046875 C 2.265625 -3.046875 2.484375 -2.890625 2.484375 -2.375 L 2.484375 0 L 3.09375 0 L 3.09375 -2.4375 C 3.328125 -2.796875 3.53125 -3.046875 3.890625 -3.046875 C 4.15625 -3.046875 4.375 -2.890625 4.375 -2.375 L 4.375 0 L 4.984375 0 L 4.984375 -2.46875 C 4.984375 -3.109375 4.609375 -3.515625 4.046875 -3.515625 Z M 4.046875 -3.515625 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-18"> | |
| 87 | +<path d="M 2.09375 -3.515625 C 1.671875 -3.515625 1.359375 -3.25 1.171875 -2.734375 L 1.109375 -3.4375 L 0.59375 -3.4375 L 0.59375 0 L 1.203125 0 L 1.203125 -1.96875 C 1.34375 -2.625 1.59375 -2.921875 2.015625 -2.921875 C 2.140625 -2.921875 2.21875 -2.90625 2.3125 -2.890625 L 2.4375 -3.46875 C 2.328125 -3.5 2.203125 -3.515625 2.09375 -3.515625 Z M 2.09375 -3.515625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-19"> | |
| 90 | +<path d="M 2.640625 -4.890625 L 2.640625 -3.09375 C 2.421875 -3.328125 2.125 -3.515625 1.71875 -3.515625 C 0.875 -3.515625 0.375 -2.75 0.375 -1.703125 C 0.375 -0.625 0.828125 0.078125 1.671875 0.078125 C 2.09375 0.078125 2.4375 -0.125 2.65625 -0.46875 L 2.71875 0 L 3.25 0 L 3.25 -4.8125 Z M 1.796875 -0.390625 C 1.296875 -0.390625 1.015625 -0.8125 1.015625 -1.71875 C 1.015625 -2.609375 1.328125 -3.03125 1.84375 -3.03125 C 2.1875 -3.03125 2.4375 -2.859375 2.640625 -2.59375 L 2.640625 -0.90625 C 2.421875 -0.59375 2.1875 -0.390625 1.796875 -0.390625 Z M 1.796875 -0.390625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-20"> | |
| 93 | +<path d="M 1.796875 -4.890625 C 0.96875 -4.890625 0.609375 -4.46875 0.609375 -3.890625 L 0.609375 -3.4375 L 0.0625 -3.4375 L 0.0625 -2.96875 L 0.609375 -2.96875 L 0.609375 0 L 1.21875 0 L 1.21875 -2.96875 L 2.53125 -2.96875 L 2.53125 0 L 3.125 0 L 3.125 -3.4375 L 1.21875 -3.4375 L 1.21875 -3.890625 C 1.21875 -4.21875 1.328125 -4.390625 1.8125 -4.390625 C 2.078125 -4.390625 2.328125 -4.34375 2.546875 -4.234375 L 2.75 -4.65625 C 2.46875 -4.796875 2.1875 -4.890625 1.796875 -4.890625 Z M 1.796875 -4.890625 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-21"> | |
| 96 | +<path d="M 1.875 -3.515625 C 0.9375 -3.515625 0.375 -2.78125 0.375 -1.6875 C 0.375 -0.578125 0.9375 0.078125 1.875 0.078125 C 2.265625 0.078125 2.609375 -0.046875 2.921875 -0.296875 L 2.640625 -0.6875 C 2.390625 -0.515625 2.1875 -0.4375 1.890625 -0.4375 C 1.359375 -0.4375 1.015625 -0.796875 1.015625 -1.703125 C 1.015625 -2.59375 1.359375 -3.015625 1.890625 -3.015625 C 2.1875 -3.015625 2.390625 -2.9375 2.625 -2.765625 L 2.921875 -3.140625 C 2.59375 -3.40625 2.28125 -3.515625 1.875 -3.515625 Z M 1.875 -3.515625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-2-0"> | |
| 99 | +<path d="M 5.640625 -3.3125 C 5.640625 -3.546875 5.5625 -3.578125 5.53125 -3.578125 C 5.46875 -3.578125 5.421875 -3.5 5.40625 -3.390625 C 5.40625 -3.234375 5.390625 -3 5.078125 -2.765625 C 4.890625 -2.609375 4.640625 -2.53125 4.375 -2.53125 C 3.90625 -2.53125 3.53125 -2.78125 3.140625 -3.03125 C 2.71875 -3.3125 2.3125 -3.578125 1.8125 -3.578125 C 1.125 -3.578125 0.546875 -3.046875 0.546875 -2.3125 C 0.546875 -2.078125 0.640625 -2.0625 0.65625 -2.0625 C 0.765625 -2.0625 0.78125 -2.265625 0.78125 -2.296875 C 0.796875 -2.71875 1.25 -3.09375 1.8125 -3.09375 C 2.28125 -3.09375 2.625 -2.859375 3.046875 -2.59375 C 3.46875 -2.328125 3.875 -2.046875 4.375 -2.046875 C 5.0625 -2.046875 5.640625 -2.59375 5.640625 -3.3125 Z M 5.640625 -1.484375 C 5.640625 -1.734375 5.53125 -1.734375 5.53125 -1.734375 C 5.46875 -1.734375 5.421875 -1.65625 5.40625 -1.546875 C 5.40625 -1.40625 5.390625 -1.171875 5.078125 -0.9375 C 4.890625 -0.78125 4.640625 -0.703125 4.375 -0.703125 C 3.90625 -0.703125 3.53125 -0.9375 3.140625 -1.203125 C 2.71875 -1.484375 2.3125 -1.75 1.8125 -1.75 C 1.125 -1.75 0.546875 -1.21875 0.546875 -0.484375 C 0.546875 -0.25 0.640625 -0.234375 0.65625 -0.234375 C 0.765625 -0.234375 0.78125 -0.4375 0.78125 -0.46875 C 0.796875 -0.875 1.25 -1.265625 1.8125 -1.265625 C 2.28125 -1.265625 2.625 -1.03125 3.046875 -0.765625 C 3.46875 -0.5 3.875 -0.21875 4.375 -0.21875 C 5.0625 -0.21875 5.640625 -0.75 5.640625 -1.484375 Z M 5.640625 -1.484375 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-3-0"> | |
| 102 | +<path d="M 2.921875 -0.953125 L 2.703125 -0.953125 C 2.6875 -0.859375 2.640625 -0.5625 2.5625 -0.5 C 2.53125 -0.46875 2.109375 -0.46875 2.03125 -0.46875 L 1.0625 -0.46875 C 1.390625 -0.71875 1.765625 -1 2.0625 -1.1875 C 2.5 -1.5 2.921875 -1.78125 2.921875 -2.3125 C 2.921875 -2.953125 2.3125 -3.296875 1.609375 -3.296875 C 0.9375 -3.296875 0.453125 -2.90625 0.453125 -2.421875 C 0.453125 -2.171875 0.671875 -2.125 0.734375 -2.125 C 0.875 -2.125 1.03125 -2.21875 1.03125 -2.421875 C 1.03125 -2.59375 0.90625 -2.6875 0.75 -2.703125 C 0.890625 -2.9375 1.171875 -3.078125 1.5 -3.078125 C 1.984375 -3.078125 2.390625 -2.796875 2.390625 -2.3125 C 2.390625 -1.890625 2.09375 -1.578125 1.71875 -1.25 L 0.515625 -0.234375 C 0.453125 -0.1875 0.453125 -0.1875 0.453125 -0.15625 L 0.453125 0 L 2.75 0 Z M 2.921875 -0.953125 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-4-0"> | |
| 105 | +<path d="M 2.265625 -5.875 C 1.203125 -5.875 0.4375 -5.265625 0.4375 -4.375 C 0.4375 -3.46875 1.03125 -3.046875 2.15625 -2.703125 C 3.140625 -2.40625 3.40625 -2.140625 3.40625 -1.578125 C 3.40625 -0.890625 2.84375 -0.546875 2.171875 -0.546875 C 1.53125 -0.546875 1.078125 -0.78125 0.640625 -1.125 L 0.203125 -0.640625 C 0.6875 -0.171875 1.34375 0.09375 2.171875 0.09375 C 3.46875 0.09375 4.234375 -0.609375 4.234375 -1.609375 C 4.234375 -2.71875 3.453125 -3.078125 2.53125 -3.359375 C 1.484375 -3.6875 1.265625 -3.921875 1.265625 -4.40625 C 1.265625 -4.953125 1.71875 -5.234375 2.296875 -5.234375 C 2.78125 -5.234375 3.1875 -5.078125 3.609375 -4.71875 L 4.046875 -5.203125 C 3.5625 -5.640625 3.0625 -5.875 2.265625 -5.875 Z M 2.265625 -5.875 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-4-1"> | |
| 108 | +<path d="M 4.046875 -4.421875 L 3.28125 -4.421875 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.5 -0.734375 1.5 -1.328125 L 1.5 -4.421875 L 0.71875 -4.421875 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 3 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.421875 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-4-2"> | |
| 111 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.609375 3.984375 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.578125 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.609375 -3.359375 3.609375 -2.21875 C 3.609375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-4-3"> | |
| 114 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-4-4"> | |
| 117 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.765625 2.59375 -3.765625 C 2.765625 -3.765625 2.859375 -3.75 2.984375 -3.71875 L 3.125 -4.46875 C 3 -4.5 2.84375 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-4-5"> | |
| 120 | +<path d="M 2.3125 -6.296875 C 1.234375 -6.296875 0.78125 -5.75 0.78125 -5 L 0.78125 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.78125 -3.828125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.828125 L 3.25 -3.828125 L 3.25 0 L 4.03125 0 L 4.03125 -4.421875 L 1.5625 -4.421875 L 1.5625 -5.015625 C 1.5625 -5.421875 1.71875 -5.65625 2.34375 -5.65625 C 2.6875 -5.65625 3 -5.59375 3.265625 -5.453125 L 3.546875 -5.984375 C 3.1875 -6.171875 2.8125 -6.296875 2.3125 -6.296875 Z M 2.3125 -6.296875 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-4-6"> | |
| 123 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.75 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.4375 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.34375 -4.390625 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-4-7"> | |
| 126 | +<path d="M 1.15625 -6.546875 C 0.828125 -6.546875 0.609375 -6.3125 0.609375 -6.015625 C 0.609375 -5.71875 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.6875 -5.71875 1.6875 -6.015625 C 1.6875 -6.3125 1.484375 -6.546875 1.15625 -6.546875 Z M 1.546875 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.421875 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-4-8"> | |
| 129 | +<path d="M 2.859375 -4.515625 C 2.296875 -4.515625 1.859375 -4.25 1.546875 -3.8125 L 1.546875 -6.28125 L 0.765625 -6.1875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.1875 -3.921875 2.65625 -3.921875 C 3.078125 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4 3.65625 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-4-9"> | |
| 132 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-4-10"> | |
| 135 | +<path d="M 2.796875 -4.515625 C 2.25 -4.515625 1.84375 -4.28125 1.546875 -3.875 L 1.546875 -6.296875 L 0.765625 -6.203125 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.78125 0.09375 4.4375 -0.828125 4.4375 -2.21875 C 4.4375 -3.6875 3.796875 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.765625 -0.75 1.546875 -1.109375 L 1.546875 -3.21875 C 1.765625 -3.578125 2.09375 -3.90625 2.578125 -3.90625 C 3.203125 -3.90625 3.609375 -3.46875 3.609375 -2.21875 C 3.609375 -1 3.15625 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-4-11"> | |
| 138 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.578125 -3.828125 L 2.671875 -4.421875 L 1.625 -4.421875 L 1.625 -5.515625 L 0.84375 -5.421875 L 0.84375 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-4-12"> | |
| 141 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.25 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.203125 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-4-13"> | |
| 144 | +<path d="M 1.890625 -7.09375 C 1.078125 -5.921875 0.328125 -4.921875 0.328125 -2.9375 C 0.328125 -0.953125 1.078125 0.046875 1.890625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.734375 1.625 -5.640625 2.390625 -6.75 Z M 1.890625 -7.09375 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-4-14"> | |
| 147 | +<path d="M 0.828125 -7.09375 L 0.328125 -6.75 C 1.09375 -5.640625 1.578125 -4.734375 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.328125 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.921875 1.640625 -5.921875 0.828125 -7.09375 Z M 0.828125 -7.09375 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-5-0"> | |
| 150 | +<path d="M 3.203125 -1.109375 L 2.984375 -1.109375 C 2.96875 -1.03125 2.90625 -0.640625 2.828125 -0.578125 C 2.78125 -0.53125 2.296875 -0.53125 2.21875 -0.53125 L 1.09375 -0.53125 L 1.859375 -1.15625 C 2.0625 -1.3125 2.59375 -1.703125 2.78125 -1.875 C 2.953125 -2.046875 3.203125 -2.359375 3.203125 -2.78125 C 3.203125 -3.53125 2.53125 -3.953125 1.734375 -3.953125 C 0.96875 -3.953125 0.421875 -3.453125 0.421875 -2.890625 C 0.421875 -2.59375 0.6875 -2.546875 0.75 -2.546875 C 0.90625 -2.546875 1.078125 -2.65625 1.078125 -2.875 C 1.078125 -3 1 -3.203125 0.734375 -3.203125 C 0.875 -3.5 1.234375 -3.734375 1.640625 -3.734375 C 2.265625 -3.734375 2.59375 -3.265625 2.59375 -2.78125 C 2.59375 -2.359375 2.328125 -1.921875 1.90625 -1.546875 L 0.5 -0.25 C 0.4375 -0.1875 0.421875 -0.1875 0.421875 0 L 3.015625 0 Z M 3.203125 -1.109375 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-6-0"> | |
| 153 | +<path d="M -5.78125 -2.359375 L -5.78125 -0.84375 L 0 -0.84375 L 0 -1.640625 L -2.125 -1.640625 L -2.125 -2.359375 C -2.125 -3.640625 -2.671875 -4.609375 -4 -4.609375 C -5.203125 -4.609375 -5.78125 -3.75 -5.78125 -2.359375 Z M -2.75 -2.328125 L -2.75 -1.640625 L -5.15625 -1.640625 L -5.15625 -2.34375 C -5.15625 -3.203125 -4.84375 -3.765625 -3.984375 -3.765625 C -3 -3.765625 -2.75 -3.1875 -2.75 -2.328125 Z M -2.75 -2.328125 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-6-1"> | |
| 156 | +<path d="M -4.515625 -2.6875 C -4.515625 -2.15625 -4.1875 -1.75 -3.53125 -1.515625 L -4.421875 -1.4375 L -4.421875 -0.765625 L 0 -0.765625 L 0 -1.546875 L -2.53125 -1.546875 C -3.375 -1.734375 -3.765625 -2.046875 -3.765625 -2.59375 C -3.765625 -2.765625 -3.75 -2.859375 -3.71875 -2.984375 L -4.46875 -3.125 C -4.5 -3 -4.515625 -2.84375 -4.515625 -2.6875 Z M -4.515625 -2.6875 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-6-2"> | |
| 159 | +<path d="M -6.546875 -1.15625 C -6.546875 -0.828125 -6.3125 -0.609375 -6.015625 -0.609375 C -5.71875 -0.609375 -5.5 -0.828125 -5.5 -1.15625 C -5.5 -1.484375 -5.71875 -1.6875 -6.015625 -1.6875 C -6.3125 -1.6875 -6.546875 -1.484375 -6.546875 -1.15625 Z M -4.421875 -1.546875 L -4.421875 -0.765625 L 0 -0.765625 L 0 -1.546875 Z M -4.421875 -1.546875 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-6-3"> | |
| 162 | +<path d="M -2.359375 -2.484375 L -4.421875 -3.84375 L -4.421875 -2.984375 L -2.796875 -2.046875 L -4.421875 -1.125 L -4.421875 -0.21875 L -2.328125 -1.578125 L 0 -0.046875 L 0 -0.921875 L -1.875 -2.015625 L 0 -3.09375 L 0 -4.03125 Z M -2.359375 -2.484375 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-6-4"> | |
| 165 | +<path d="M -6.296875 -3.40625 L -3.984375 -3.40625 C -4.28125 -3.109375 -4.515625 -2.734375 -4.515625 -2.21875 C -4.515625 -1.125 -3.546875 -0.484375 -2.1875 -0.484375 C -0.8125 -0.484375 0.09375 -1.078125 0.09375 -2.140625 C 0.09375 -2.6875 -0.171875 -3.140625 -0.609375 -3.421875 L 0 -3.5 L 0 -4.171875 L -6.203125 -4.171875 Z M -0.515625 -2.3125 C -0.515625 -1.671875 -1.046875 -1.3125 -2.203125 -1.3125 C -3.359375 -1.3125 -3.90625 -1.71875 -3.90625 -2.390625 C -3.90625 -2.8125 -3.6875 -3.125 -3.328125 -3.40625 L -1.171875 -3.40625 C -0.75 -3.109375 -0.515625 -2.8125 -0.515625 -2.3125 Z M -0.515625 -2.3125 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-6-5"> | |
| 168 | +<path d="M -2.34375 -4.140625 C -3.6875 -4.140625 -4.515625 -3.5 -4.515625 -2.3125 C -4.515625 -1.171875 -3.546875 -0.484375 -2.171875 -0.484375 C -0.765625 -0.484375 0.09375 -1.203125 0.09375 -2.4375 C 0.09375 -3.046875 -0.109375 -3.546875 -0.453125 -3.984375 L -0.921875 -3.640625 C -0.640625 -3.25 -0.53125 -2.921875 -0.53125 -2.484375 C -0.53125 -1.859375 -0.921875 -1.375 -1.953125 -1.296875 L -1.953125 -4.125 C -2.046875 -4.125 -2.1875 -4.140625 -2.34375 -4.140625 Z M -2.515625 -3.375 L -2.515625 -1.296875 C -3.5 -1.359375 -3.90625 -1.75 -3.90625 -2.328125 C -3.90625 -3.03125 -3.4375 -3.375 -2.5625 -3.375 Z M -2.515625 -3.375 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-6-6"> | |
| 171 | +<path d="M -4.421875 -4.046875 L -4.421875 -3.234375 L -0.6875 -2.078125 L -4.421875 -0.921875 L -4.421875 -0.078125 L 0 -1.609375 L 0 -2.546875 Z M -4.421875 -4.046875 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-6-7"> | |
| 174 | +<path d="M -4.515625 -2.859375 C -4.515625 -2.28125 -4.21875 -1.796875 -3.765625 -1.5 L -4.421875 -1.4375 L -4.421875 -0.765625 L 0 -0.765625 L 0 -1.546875 L -3.140625 -1.546875 C -3.609375 -1.84375 -3.921875 -2.171875 -3.921875 -2.671875 C -3.921875 -3.09375 -3.71875 -3.359375 -3.0625 -3.359375 L 0 -3.359375 L 0 -4.140625 L -3.171875 -4.140625 C -4.015625 -4.140625 -4.515625 -3.671875 -4.515625 -2.859375 Z M -4.515625 -2.859375 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-6-8"> | |
| 177 | +<path d="M -0.71875 -2.734375 C -0.59375 -2.515625 -0.53125 -2.34375 -0.53125 -2.140625 C -0.53125 -1.765625 -0.75 -1.625 -1.1875 -1.625 L -3.828125 -1.625 L -3.828125 -2.578125 L -4.421875 -2.671875 L -4.421875 -1.625 L -5.515625 -1.625 L -5.421875 -0.84375 L -4.421875 -0.84375 L -4.421875 -0.078125 L -3.828125 -0.078125 L -3.828125 -0.84375 L -1.15625 -0.84375 C -0.328125 -0.84375 0.09375 -1.296875 0.09375 -2.03125 C 0.09375 -2.421875 0 -2.734375 -0.203125 -3.03125 Z M -0.71875 -2.734375 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-6-9"> | |
| 180 | +<path d="M -7.09375 -1.890625 C -5.921875 -1.078125 -4.921875 -0.328125 -2.9375 -0.328125 C -0.953125 -0.328125 0.046875 -1.078125 1.21875 -1.890625 L 0.875 -2.390625 C -0.234375 -1.625 -1.140625 -1.140625 -2.9375 -1.140625 C -4.734375 -1.140625 -5.640625 -1.625 -6.75 -2.390625 Z M -7.09375 -1.890625 "/> | |
| 181 | +</g> | |
| 182 | +<g id="glyph-6-10"> | |
| 183 | +<path d="M -1.5625 -4.125 C -2.640625 -4.125 -2.984375 -3.359375 -3.265625 -2.453125 C -3.578125 -1.453125 -3.796875 -1.234375 -4.265625 -1.234375 C -4.8125 -1.234375 -5.0625 -1.671875 -5.0625 -2.234375 C -5.0625 -2.703125 -4.921875 -3.109375 -4.5625 -3.5 L -5.046875 -3.9375 C -5.40625 -3.5625 -5.625 -3.15625 -5.6875 -2.59375 L -6.90625 -2.59375 L -6.90625 -1.9375 L -5.6875 -1.9375 C -5.59375 -1.046875 -5.03125 -0.4375 -4.234375 -0.4375 C -3.375 -0.4375 -2.953125 -1 -2.625 -2.09375 C -2.328125 -3.046875 -2.078125 -3.3125 -1.53125 -3.3125 C -0.859375 -3.3125 -0.53125 -2.765625 -0.53125 -2.109375 C -0.53125 -1.5 -0.75 -1.046875 -1.125 -0.65625 L -0.625 -0.203125 C -0.203125 -0.640625 0.0625 -1.203125 0.09375 -1.9375 L 1.296875 -1.9375 L 1.296875 -2.59375 L 0.0625 -2.59375 C -0.09375 -3.5625 -0.71875 -4.125 -1.5625 -4.125 Z M -1.5625 -4.125 "/> | |
| 184 | +</g> | |
| 185 | +<g id="glyph-6-11"> | |
| 186 | +<path d="M -7.09375 -0.828125 L -6.75 -0.328125 C -5.640625 -1.09375 -4.734375 -1.578125 -2.9375 -1.578125 C -1.140625 -1.578125 -0.234375 -1.09375 0.875 -0.328125 L 1.21875 -0.828125 C 0.046875 -1.640625 -0.953125 -2.390625 -2.9375 -2.390625 C -4.921875 -2.390625 -5.921875 -1.640625 -7.09375 -0.828125 Z M -7.09375 -0.828125 "/> | |
| 187 | +</g> | |
| 188 | +</g> | |
| 189 | +<clipPath id="clip-0"> | |
| 190 | +<path clip-rule="nonzero" d="M 51.511719 18 L 250 18 L 250 112.824219 L 51.511719 112.824219 Z M 51.511719 18 "/> | |
| 191 | +</clipPath> | |
| 192 | +</defs> | |
| 193 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14.474307 0.00184212 L 14.474307 4.25058 M 43.422266 0.00184212 L 43.422266 4.25058 M 72.370226 0.00184212 L 72.370226 4.25058 M 101.318186 0.00184212 L 101.318186 4.25058 M 130.266145 0.00184212 L 130.266145 4.25058 M 159.210178 0.00184212 L 159.210178 4.25058 M 188.158137 0.00184212 L 188.158137 4.25058 M 14.474307 108.238624 L 14.474307 103.98596 M 43.422266 108.238624 L 43.422266 103.98596 M 72.370226 108.238624 L 72.370226 103.98596 M 101.318186 108.238624 L 101.318186 103.98596 M 130.266145 108.238624 L 130.266145 103.98596 M 159.210178 108.238624 L 159.210178 103.98596 M 188.158137 108.238624 L 188.158137 103.98596 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 194 | +<path fill="none" stroke-width="0.19925" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.000327087 18.041306 L 4.252991 18.041306 M 0.000327087 54.120233 L 4.252991 54.120233 M 0.000327087 90.19916 L 4.252991 90.19916 M 202.632117 18.041306 L 198.379453 18.041306 M 202.632117 54.120233 L 198.379453 54.120233 M 202.632117 90.19916 L 198.379453 90.19916 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 195 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.000327087 0.00184212 L 0.000327087 108.238624 L 202.632117 108.238624 L 202.632117 0.00184212 Z M 0.000327087 0.00184212 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 196 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 197 | +<use xlink:href="#glyph-0-0" x="57.331856" y="120.600263"/> | |
| 198 | +</g> | |
| 199 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 200 | +<use xlink:href="#glyph-0-0" x="62.634806" y="120.600263"/> | |
| 201 | +<use xlink:href="#glyph-0-1" x="66.584963" y="120.600263"/> | |
| 202 | +<use xlink:href="#glyph-0-1" x="70.53512" y="120.600263"/> | |
| 203 | +</g> | |
| 204 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 205 | +<use xlink:href="#glyph-0-0" x="86.127776" y="120.600263"/> | |
| 206 | +</g> | |
| 207 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 208 | +<use xlink:href="#glyph-0-2" x="91.430727" y="120.600263"/> | |
| 209 | +<use xlink:href="#glyph-0-1" x="95.380884" y="120.600263"/> | |
| 210 | +<use xlink:href="#glyph-0-1" x="99.331041" y="120.600263"/> | |
| 211 | +</g> | |
| 212 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 213 | +<use xlink:href="#glyph-0-0" x="114.923697" y="120.600263"/> | |
| 214 | +</g> | |
| 215 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 216 | +<use xlink:href="#glyph-0-3" x="120.226647" y="120.600263"/> | |
| 217 | +<use xlink:href="#glyph-0-1" x="124.176804" y="120.600263"/> | |
| 218 | +<use xlink:href="#glyph-0-1" x="128.126961" y="120.600263"/> | |
| 219 | +</g> | |
| 220 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 221 | +<use xlink:href="#glyph-0-0" x="143.720612" y="120.600263"/> | |
| 222 | +</g> | |
| 223 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 224 | +<use xlink:href="#glyph-0-4" x="149.023563" y="120.600263"/> | |
| 225 | +<use xlink:href="#glyph-0-1" x="152.97372" y="120.600263"/> | |
| 226 | +<use xlink:href="#glyph-0-1" x="156.923877" y="120.600263"/> | |
| 227 | +</g> | |
| 228 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 229 | +<use xlink:href="#glyph-0-0" x="172.516533" y="120.600263"/> | |
| 230 | +</g> | |
| 231 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 232 | +<use xlink:href="#glyph-0-5" x="177.819483" y="120.600263"/> | |
| 233 | +<use xlink:href="#glyph-0-1" x="181.76964" y="120.600263"/> | |
| 234 | +<use xlink:href="#glyph-0-1" x="185.719797" y="120.600263"/> | |
| 235 | +</g> | |
| 236 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 237 | +<use xlink:href="#glyph-0-0" x="201.312453" y="120.600263"/> | |
| 238 | +</g> | |
| 239 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 240 | +<use xlink:href="#glyph-0-6" x="206.615403" y="120.600263"/> | |
| 241 | +<use xlink:href="#glyph-0-1" x="210.56556" y="120.600263"/> | |
| 242 | +<use xlink:href="#glyph-0-1" x="214.515717" y="120.600263"/> | |
| 243 | +</g> | |
| 244 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 245 | +<use xlink:href="#glyph-0-0" x="230.108373" y="120.600263"/> | |
| 246 | +</g> | |
| 247 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 248 | +<use xlink:href="#glyph-0-7" x="235.411324" y="120.600263"/> | |
| 249 | +<use xlink:href="#glyph-0-1" x="239.361481" y="120.600263"/> | |
| 250 | +<use xlink:href="#glyph-0-1" x="243.311638" y="120.600263"/> | |
| 251 | +</g> | |
| 252 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 253 | +<use xlink:href="#glyph-0-4" x="23.152182" y="97.116473"/> | |
| 254 | +<use xlink:href="#glyph-0-1" x="27.102339" y="97.116473"/> | |
| 255 | +<use xlink:href="#glyph-0-1" x="31.052496" y="97.116473"/> | |
| 256 | +</g> | |
| 257 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 258 | +<use xlink:href="#glyph-0-1" x="36.355446" y="97.116473"/> | |
| 259 | +<use xlink:href="#glyph-0-1" x="40.305603" y="97.116473"/> | |
| 260 | +<use xlink:href="#glyph-0-1" x="44.25576" y="97.116473"/> | |
| 261 | +</g> | |
| 262 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 263 | +<use xlink:href="#glyph-0-4" x="23.152182" y="61.22478"/> | |
| 264 | +<use xlink:href="#glyph-0-4" x="27.102339" y="61.22478"/> | |
| 265 | +<use xlink:href="#glyph-0-1" x="31.052496" y="61.22478"/> | |
| 266 | +</g> | |
| 267 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 268 | +<use xlink:href="#glyph-0-1" x="36.355446" y="61.22478"/> | |
| 269 | +<use xlink:href="#glyph-0-1" x="40.305603" y="61.22478"/> | |
| 270 | +<use xlink:href="#glyph-0-1" x="44.25576" y="61.22478"/> | |
| 271 | +</g> | |
| 272 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 273 | +<use xlink:href="#glyph-0-4" x="23.152182" y="25.334083"/> | |
| 274 | +<use xlink:href="#glyph-0-8" x="27.102339" y="25.334083"/> | |
| 275 | +<use xlink:href="#glyph-0-1" x="31.052496" y="25.334083"/> | |
| 276 | +</g> | |
| 277 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 278 | +<use xlink:href="#glyph-0-1" x="36.355446" y="25.334083"/> | |
| 279 | +<use xlink:href="#glyph-0-1" x="40.305603" y="25.334083"/> | |
| 280 | +<use xlink:href="#glyph-0-1" x="44.25576" y="25.334083"/> | |
| 281 | +</g> | |
| 282 | +<g clip-path="url(#clip-0)"> | |
| 283 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(79.998779%, 64.312744%, 14.118958%)" stroke-opacity="1" stroke-miterlimit="10" d="M 8.682359 11.943072 L 16.162807 14.923471 L 23.639328 17.907796 L 31.119776 20.888195 L 38.596298 23.872521 L 46.076746 26.856847 L 53.553267 29.837246 L 61.029788 32.821572 L 68.510236 35.801971 L 75.986758 38.786296 L 83.467206 41.766695 L 98.420248 47.735347 L 105.900696 50.715746 L 113.377218 53.700071 L 120.857666 56.68047 L 128.334187 59.664796 L 135.810708 62.645195 L 143.291156 65.629521 L 150.767677 68.60992 L 158.248126 71.594246 L 165.724647 74.578571 L 173.201168 77.55897 L 180.681616 80.543296 L 188.158137 83.523695 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 284 | +</g> | |
| 285 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 286 | +<use xlink:href="#glyph-1-0" x="69.212523" y="19.054032"/> | |
| 287 | +</g> | |
| 288 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 289 | +<use xlink:href="#glyph-1-1" x="72.805697" y="19.054032"/> | |
| 290 | +<use xlink:href="#glyph-1-2" x="76.353222" y="19.054032"/> | |
| 291 | +<use xlink:href="#glyph-1-3" x="80.128989" y="19.054032"/> | |
| 292 | +</g> | |
| 293 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 294 | +<use xlink:href="#glyph-1-1" x="82.385319" y="19.054032"/> | |
| 295 | +</g> | |
| 296 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 297 | +<use xlink:href="#glyph-2-0" x="87.660258" y="19.054032"/> | |
| 298 | +</g> | |
| 299 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 300 | +<use xlink:href="#glyph-1-4" x="95.582779" y="19.054032"/> | |
| 301 | +<use xlink:href="#glyph-1-5" x="98.341241" y="19.054032"/> | |
| 302 | +<use xlink:href="#glyph-1-5" x="102.29308" y="19.054032"/> | |
| 303 | +<use xlink:href="#glyph-1-6" x="106.244918" y="19.054032"/> | |
| 304 | +</g> | |
| 305 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 306 | +<use xlink:href="#glyph-1-4" x="109.433778" y="19.054032"/> | |
| 307 | +<use xlink:href="#glyph-1-7" x="112.19224" y="19.054032"/> | |
| 308 | +<use xlink:href="#glyph-1-5" x="115.374579" y="19.054032"/> | |
| 309 | +</g> | |
| 310 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 311 | +<use xlink:href="#glyph-1-8" x="121.054532" y="19.054032"/> | |
| 312 | +<use xlink:href="#glyph-1-9" x="124.517282" y="19.054032"/> | |
| 313 | +</g> | |
| 314 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 315 | +<use xlink:href="#glyph-1-10" x="127.712663" y="19.054032"/> | |
| 316 | +<use xlink:href="#glyph-1-11" x="131.534079" y="19.054032"/> | |
| 317 | +</g> | |
| 318 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 319 | +<use xlink:href="#glyph-3-0" x="133.334106" y="16.063721"/> | |
| 320 | +</g> | |
| 321 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 322 | +<use xlink:href="#glyph-1-12" x="138.930742" y="19.054032"/> | |
| 323 | +</g> | |
| 324 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 325 | +<use xlink:href="#glyph-1-13" x="142.223941" y="19.054032"/> | |
| 326 | +<use xlink:href="#glyph-1-14" x="145.738861" y="19.054032"/> | |
| 327 | +<use xlink:href="#glyph-1-15" x="147.545229" y="19.054032"/> | |
| 328 | +<use xlink:href="#glyph-1-16" x="151.294911" y="19.054032"/> | |
| 329 | +<use xlink:href="#glyph-1-3" x="154.340305" y="19.054032"/> | |
| 330 | +</g> | |
| 331 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 332 | +<use xlink:href="#glyph-1-1" x="156.596636" y="19.054032"/> | |
| 333 | +<use xlink:href="#glyph-1-17" x="160.144161" y="19.054032"/> | |
| 334 | +<use xlink:href="#glyph-1-1" x="165.687169" y="19.054032"/> | |
| 335 | +<use xlink:href="#glyph-1-2" x="169.234695" y="19.054032"/> | |
| 336 | +<use xlink:href="#glyph-1-3" x="173.010462" y="19.054032"/> | |
| 337 | +</g> | |
| 338 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 339 | +<use xlink:href="#glyph-1-15" x="177.092724" y="19.054032"/> | |
| 340 | +<use xlink:href="#glyph-1-2" x="180.842406" y="19.054032"/> | |
| 341 | +<use xlink:href="#glyph-1-11" x="184.618173" y="19.054032"/> | |
| 342 | +<use xlink:href="#glyph-1-3" x="186.41802" y="19.054032"/> | |
| 343 | +<use xlink:href="#glyph-1-13" x="188.772169" y="19.054032"/> | |
| 344 | +<use xlink:href="#glyph-1-11" x="192.287088" y="19.054032"/> | |
| 345 | +<use xlink:href="#glyph-1-18" x="194.086935" y="19.054032"/> | |
| 346 | +</g> | |
| 347 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 348 | +<use xlink:href="#glyph-1-1" x="196.454126" y="19.054032"/> | |
| 349 | +</g> | |
| 350 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 351 | +<use xlink:href="#glyph-1-19" x="201.729766" y="19.054032"/> | |
| 352 | +<use xlink:href="#glyph-1-1" x="205.577265" y="19.054032"/> | |
| 353 | +</g> | |
| 354 | +<g fill="rgb(37.644958%, 39.99939%, 43.920898%)" fill-opacity="1"> | |
| 355 | +<use xlink:href="#glyph-1-16" x="210.852905" y="19.054032"/> | |
| 356 | +<use xlink:href="#glyph-1-15" x="213.898299" y="19.054032"/> | |
| 357 | +<use xlink:href="#glyph-1-10" x="217.647981" y="19.054032"/> | |
| 358 | +<use xlink:href="#glyph-1-1" x="221.469396" y="19.054032"/> | |
| 359 | +<use xlink:href="#glyph-1-18" x="225.016921" y="19.054032"/> | |
| 360 | +<use xlink:href="#glyph-1-20" x="227.514536" y="19.054032"/> | |
| 361 | +<use xlink:href="#glyph-1-21" x="231.244654" y="19.054032"/> | |
| 362 | +<use xlink:href="#glyph-1-11" x="234.361781" y="19.054032"/> | |
| 363 | +<use xlink:href="#glyph-1-1" x="236.161629" y="19.054032"/> | |
| 364 | +</g> | |
| 365 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 16.465166 16.235003 C 16.465166 17.334492 15.573795 18.22979 14.474307 18.22979 C 13.374818 18.22979 12.479521 17.334492 12.479521 16.235003 C 12.479521 15.135515 13.374818 14.244144 14.474307 14.244144 C 15.573795 14.244144 16.465166 15.135515 16.465166 16.235003 Z M 16.465166 16.235003 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 366 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 39.625105 27.960262 C 39.625105 29.063677 38.733734 29.955048 37.630318 29.955048 C 36.53083 29.955048 35.639459 29.063677 35.639459 27.960262 C 35.639459 26.860774 36.53083 25.969403 37.630318 25.969403 C 38.733734 25.969403 39.625105 26.860774 39.625105 27.960262 Z M 39.625105 27.960262 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 367 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 59.887106 31.56894 C 59.887106 32.668429 58.995735 33.563726 57.896246 33.563726 C 56.792831 33.563726 55.90146 32.668429 55.90146 31.56894 C 55.90146 30.469452 56.792831 29.578081 57.896246 29.578081 C 58.995735 29.578081 59.887106 30.469452 59.887106 31.56894 Z M 59.887106 31.56894 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 368 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 80.153033 43.294199 C 80.153033 44.397614 79.257736 45.288985 78.158247 45.288985 C 77.058759 45.288985 76.167388 44.397614 76.167388 43.294199 C 76.167388 42.19471 77.058759 41.303339 78.158247 41.303339 C 79.257736 41.303339 80.153033 42.19471 80.153033 43.294199 Z M 80.153033 43.294199 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 369 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 103.309045 50.511555 C 103.309045 51.611043 102.417674 52.502414 101.318186 52.502414 C 100.21477 52.502414 99.323399 51.611043 99.323399 50.511555 C 99.323399 49.412067 100.21477 48.520696 101.318186 48.520696 C 102.417674 48.520696 103.309045 49.412067 103.309045 50.511555 Z M 103.309045 50.511555 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 370 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 126.468983 62.236814 C 126.468983 63.336302 125.573686 64.2316 124.474197 64.2316 C 123.374709 64.2316 122.483338 63.336302 122.483338 62.236814 C 122.483338 61.137325 123.374709 60.245954 124.474197 60.245954 C 125.573686 60.245954 126.468983 61.137325 126.468983 62.236814 Z M 126.468983 62.236814 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 371 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 146.730984 67.647868 C 146.730984 68.751283 145.839613 69.642654 144.736198 69.642654 C 143.63671 69.642654 142.745339 68.751283 142.745339 67.647868 C 142.745339 66.548379 143.63671 65.657008 144.736198 65.657008 C 145.839613 65.657008 146.730984 66.548379 146.730984 67.647868 Z M 146.730984 67.647868 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 372 | +<path fill-rule="nonzero" fill="rgb(0%, 24.31488%, 49.412537%)" fill-opacity="1" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 175.678944 79.377053 C 175.678944 80.476541 174.787573 81.367912 173.684158 81.367912 C 172.584669 81.367912 171.693298 80.476541 171.693298 79.377053 C 171.693298 78.273638 172.584669 77.382267 173.684158 77.382267 C 174.787573 77.382267 175.678944 78.273638 175.678944 79.377053 Z M 175.678944 79.377053 " transform="matrix(0.994781, 0, 0, -0.994781, 51.511393, 112.826051)"/> | |
| 373 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 374 | +<use xlink:href="#glyph-4-0" x="104.780912" y="134.629657"/> | |
| 375 | +<use xlink:href="#glyph-4-1" x="109.350415" y="134.629657"/> | |
| 376 | +<use xlink:href="#glyph-4-2" x="114.171452" y="134.629657"/> | |
| 377 | +<use xlink:href="#glyph-4-3" x="119.084716" y="134.629657"/> | |
| 378 | +<use xlink:href="#glyph-4-4" x="123.645836" y="134.629657"/> | |
| 379 | +<use xlink:href="#glyph-4-5" x="126.857065" y="134.629657"/> | |
| 380 | +<use xlink:href="#glyph-4-6" x="131.652948" y="134.629657"/> | |
| 381 | +<use xlink:href="#glyph-4-7" x="135.660696" y="134.629657"/> | |
| 382 | +<use xlink:href="#glyph-4-3" x="137.974793" y="134.629657"/> | |
| 383 | +</g> | |
| 384 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 385 | +<use xlink:href="#glyph-4-8" x="144.757782" y="134.629657"/> | |
| 386 | +<use xlink:href="#glyph-4-9" x="149.612356" y="134.629657"/> | |
| 387 | +<use xlink:href="#glyph-4-10" x="154.131553" y="134.629657"/> | |
| 388 | +<use xlink:href="#glyph-4-7" x="159.044818" y="134.629657"/> | |
| 389 | +<use xlink:href="#glyph-4-11" x="161.358915" y="134.629657"/> | |
| 390 | +<use xlink:href="#glyph-4-9" x="164.385687" y="134.629657"/> | |
| 391 | +<use xlink:href="#glyph-4-10" x="168.904884" y="134.629657"/> | |
| 392 | +<use xlink:href="#glyph-4-12" x="173.818149" y="134.629657"/> | |
| 393 | +</g> | |
| 394 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 395 | +<use xlink:href="#glyph-4-3" x="176.241244" y="134.629657"/> | |
| 396 | +</g> | |
| 397 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 398 | +<use xlink:href="#glyph-4-13" x="183.024232" y="134.629657"/> | |
| 399 | +<use xlink:href="#glyph-4-2" x="185.740781" y="134.629657"/> | |
| 400 | +<use xlink:href="#glyph-4-7" x="190.654046" y="134.629657"/> | |
| 401 | +</g> | |
| 402 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 403 | +<use xlink:href="#glyph-5-0" x="192.968231" y="130.840537"/> | |
| 404 | +</g> | |
| 405 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 406 | +<use xlink:href="#glyph-4-14" x="197.097567" y="134.629657"/> | |
| 407 | +</g> | |
| 408 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 409 | +<use xlink:href="#glyph-6-0" x="15.440641" y="89.651637"/> | |
| 410 | +</g> | |
| 411 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 412 | +<use xlink:href="#glyph-6-1" x="15.440641" y="84.947983"/> | |
| 413 | +<use xlink:href="#glyph-6-2" x="15.440641" y="81.736754"/> | |
| 414 | +<use xlink:href="#glyph-6-3" x="15.440641" y="79.422656"/> | |
| 415 | +</g> | |
| 416 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 417 | +<use xlink:href="#glyph-6-4" x="15.440641" y="73.134348"/> | |
| 418 | +<use xlink:href="#glyph-6-5" x="15.440641" y="68.187546"/> | |
| 419 | +</g> | |
| 420 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 421 | +<use xlink:href="#glyph-6-6" x="15.440641" y="61.404558"/> | |
| 422 | +</g> | |
| 423 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 424 | +<use xlink:href="#glyph-6-5" x="15.440641" y="57.312965"/> | |
| 425 | +<use xlink:href="#glyph-6-7" x="15.440641" y="52.751846"/> | |
| 426 | +<use xlink:href="#glyph-6-8" x="15.440641" y="47.897272"/> | |
| 427 | +</g> | |
| 428 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 429 | +<use xlink:href="#glyph-6-5" x="15.440641" y="44.996266"/> | |
| 430 | +</g> | |
| 431 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 432 | +<use xlink:href="#glyph-6-9" x="15.440641" y="38.213278"/> | |
| 433 | +<use xlink:href="#glyph-6-10" x="15.440641" y="35.496729"/> | |
| 434 | +<use xlink:href="#glyph-6-11" x="15.440641" y="31.044607"/> | |
| 435 | +</g> | |
| 436 | +</svg> | |
added
dist/assets/fig/da129bede2dcbff0.svg
+348 −0
@@ -0,0 +1,348 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="275.119pt" height="136.925pt" viewBox="0 0 275.119 136.925"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.625 -6.421875 L 0.9375 -6.421875 L 0.9375 0 L 1.8125 0 L 1.8125 -2.359375 L 2.625 -2.359375 C 4.046875 -2.359375 5.125 -2.96875 5.125 -4.4375 C 5.125 -5.796875 4.171875 -6.421875 2.625 -6.421875 Z M 2.59375 -3.0625 L 1.8125 -3.0625 L 1.8125 -5.734375 L 2.609375 -5.734375 C 3.5625 -5.734375 4.171875 -5.390625 4.171875 -4.4375 C 4.171875 -3.34375 3.546875 -3.0625 2.59375 -3.0625 Z M 2.59375 -3.0625 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 2.734375 -5.03125 C 1.328125 -5.03125 0.53125 -3.96875 0.53125 -2.453125 C 0.53125 -0.890625 1.328125 0.109375 2.71875 0.109375 C 4.109375 0.109375 4.921875 -0.9375 4.921875 -2.46875 C 4.921875 -4.015625 4.125 -5.03125 2.734375 -5.03125 Z M 2.734375 -4.34375 C 3.546875 -4.34375 4 -3.734375 4 -2.46875 C 4 -1.171875 3.546875 -0.578125 2.71875 -0.578125 C 1.90625 -0.578125 1.453125 -1.171875 1.453125 -2.453125 C 1.453125 -3.734375 1.90625 -4.34375 2.734375 -4.34375 Z M 2.734375 -4.34375 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.28125 -7.28125 C 0.921875 -7.28125 0.6875 -7.03125 0.6875 -6.6875 C 0.6875 -6.359375 0.921875 -6.109375 1.28125 -6.109375 C 1.640625 -6.109375 1.890625 -6.359375 1.890625 -6.6875 C 1.890625 -7.03125 1.640625 -7.28125 1.28125 -7.28125 Z M 1.71875 -4.921875 L 0.859375 -4.921875 L 0.859375 0 L 1.71875 0 Z M 1.71875 -4.921875 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.171875 -5.03125 C 2.53125 -5.03125 2 -4.6875 1.671875 -4.1875 L 1.59375 -4.921875 L 0.859375 -4.921875 L 0.859375 0 L 1.71875 0 L 1.71875 -3.484375 C 2.046875 -4.015625 2.421875 -4.359375 2.96875 -4.359375 C 3.4375 -4.359375 3.734375 -4.140625 3.734375 -3.40625 L 3.734375 0 L 4.59375 0 L 4.59375 -3.53125 C 4.59375 -4.453125 4.078125 -5.03125 3.171875 -5.03125 Z M 3.171875 -5.03125 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 3.046875 -0.796875 C 2.796875 -0.65625 2.609375 -0.59375 2.390625 -0.59375 C 1.953125 -0.59375 1.796875 -0.828125 1.796875 -1.328125 L 1.796875 -4.25 L 2.875 -4.25 L 2.96875 -4.921875 L 1.796875 -4.921875 L 1.796875 -6.125 L 0.9375 -6.03125 L 0.9375 -4.921875 L 0.078125 -4.921875 L 0.078125 -4.25 L 0.9375 -4.25 L 0.9375 -1.28125 C 0.9375 -0.375 1.4375 0.109375 2.265625 0.109375 C 2.6875 0.109375 3.046875 0 3.375 -0.21875 Z M 3.046875 -0.796875 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 3.109375 -5.03125 C 2.5625 -5.03125 2.03125 -4.75 1.65625 -4.25 L 1.59375 -4.921875 L 0.859375 -4.921875 L 0.859375 1.984375 L 1.71875 1.890625 L 1.71875 -0.453125 C 2.03125 -0.0625 2.46875 0.109375 3 0.109375 C 4.265625 0.109375 4.9375 -0.96875 4.9375 -2.46875 C 4.9375 -4.015625 4.421875 -5.03125 3.109375 -5.03125 Z M 2.796875 -0.59375 C 2.34375 -0.59375 1.96875 -0.796875 1.71875 -1.1875 L 1.71875 -3.578125 C 1.984375 -3.96875 2.375 -4.34375 2.90625 -4.34375 C 3.640625 -4.34375 4.015625 -3.734375 4.015625 -2.46875 C 4.015625 -1.171875 3.578125 -0.59375 2.796875 -0.59375 Z M 2.796875 -0.59375 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 5.796875 -5.03125 C 5.125 -5.03125 4.6875 -4.671875 4.328125 -4.140625 C 4.140625 -4.703125 3.6875 -5.03125 3.09375 -5.03125 C 2.4375 -5.03125 2 -4.6875 1.671875 -4.203125 L 1.59375 -4.921875 L 0.859375 -4.921875 L 0.859375 0 L 1.71875 0 L 1.71875 -3.484375 C 2.046875 -4.015625 2.34375 -4.359375 2.875 -4.359375 C 3.25 -4.359375 3.5625 -4.140625 3.5625 -3.40625 L 3.5625 0 L 4.421875 0 L 4.421875 -3.484375 C 4.75 -4.015625 5.046875 -4.359375 5.578125 -4.359375 C 5.953125 -4.359375 6.265625 -4.140625 6.265625 -3.40625 L 6.265625 0 L 7.125 0 L 7.125 -3.53125 C 7.125 -4.453125 6.59375 -5.03125 5.796875 -5.03125 Z M 5.796875 -5.03125 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 4.15625 -1.140625 L 4.15625 -3.390625 C 4.15625 -4.421875 3.609375 -5.03125 2.421875 -5.03125 C 1.875 -5.03125 1.328125 -4.921875 0.734375 -4.6875 L 0.9375 -4.0625 C 1.453125 -4.234375 1.90625 -4.328125 2.265625 -4.328125 C 2.953125 -4.328125 3.296875 -4.0625 3.296875 -3.359375 L 3.296875 -3 L 2.53125 -3 C 1.171875 -3 0.375 -2.421875 0.375 -1.375 C 0.375 -0.5 0.953125 0.109375 1.9375 0.109375 C 2.53125 0.109375 3.0625 -0.109375 3.40625 -0.625 C 3.546875 -0.140625 3.875 0.0625 4.359375 0.109375 L 4.5625 -0.484375 C 4.3125 -0.578125 4.15625 -0.71875 4.15625 -1.140625 Z M 2.140625 -0.53125 C 1.578125 -0.53125 1.28125 -0.84375 1.28125 -1.421875 C 1.28125 -2.09375 1.75 -2.421875 2.65625 -2.421875 L 3.296875 -2.421875 L 3.296875 -1.296875 C 3.015625 -0.78125 2.640625 -0.53125 2.140625 -0.53125 Z M 2.140625 -0.53125 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 1.828125 0.109375 C 2.078125 0.109375 2.328125 0.046875 2.515625 -0.0625 L 2.28125 -0.65625 C 2.1875 -0.609375 2.09375 -0.59375 1.96875 -0.59375 C 1.75 -0.59375 1.65625 -0.734375 1.65625 -0.984375 L 1.65625 -7 L 0.796875 -6.890625 L 0.796875 -0.96875 C 0.796875 -0.265625 1.203125 0.109375 1.828125 0.109375 Z M 1.828125 0.109375 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 4.359375 0 L 5.40625 0 L 3.671875 -2.875 C 4.59375 -3.15625 5.0625 -3.703125 5.0625 -4.609375 C 5.0625 -5.8125 4.21875 -6.421875 2.625 -6.421875 L 0.9375 -6.421875 L 0.9375 0 L 1.8125 0 L 1.8125 -2.71875 L 2.8125 -2.71875 Z M 1.8125 -3.40625 L 1.8125 -5.734375 L 2.609375 -5.734375 C 3.671875 -5.734375 4.125 -5.40625 4.125 -4.609375 C 4.125 -3.734375 3.609375 -3.40625 2.71875 -3.40625 Z M 1.8125 -3.40625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 4.59375 -2.609375 C 4.59375 -4.109375 3.90625 -5.03125 2.578125 -5.03125 C 1.3125 -5.03125 0.53125 -3.9375 0.53125 -2.40625 C 0.53125 -0.84375 1.328125 0.109375 2.703125 0.109375 C 3.390625 0.109375 3.9375 -0.125 4.421875 -0.5 L 4.046875 -1.015625 C 3.625 -0.71875 3.25 -0.59375 2.765625 -0.59375 C 2.0625 -0.59375 1.53125 -1.03125 1.453125 -2.171875 L 4.578125 -2.171875 C 4.59375 -2.28125 4.59375 -2.4375 4.59375 -2.609375 Z M 3.75 -2.796875 L 1.453125 -2.796875 C 1.515625 -3.890625 1.9375 -4.34375 2.59375 -4.34375 C 3.375 -4.34375 3.75 -3.8125 3.75 -2.859375 Z M 3.75 -2.796875 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 3.78125 -7 L 3.78125 -4.421875 C 3.453125 -4.765625 3.046875 -5.03125 2.46875 -5.03125 C 1.265625 -5.03125 0.53125 -3.9375 0.53125 -2.4375 C 0.53125 -0.90625 1.1875 0.109375 2.390625 0.109375 C 3 0.109375 3.484375 -0.1875 3.8125 -0.6875 L 3.890625 0 L 4.640625 0 L 4.640625 -6.890625 Z M 2.578125 -0.5625 C 1.859375 -0.5625 1.453125 -1.15625 1.453125 -2.453125 C 1.453125 -3.734375 1.90625 -4.34375 2.65625 -4.34375 C 3.140625 -4.34375 3.484375 -4.09375 3.78125 -3.703125 L 3.78125 -1.296875 C 3.453125 -0.84375 3.125 -0.5625 2.578125 -0.5625 Z M 2.578125 -0.5625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 2.21875 -5.03125 C 1.203125 -5.03125 0.453125 -4.453125 0.453125 -3.671875 C 0.453125 -2.984375 0.875 -2.53125 1.9375 -2.25 C 2.875 -2 3.125 -1.8125 3.125 -1.328125 C 3.125 -0.859375 2.71875 -0.578125 2.078125 -0.578125 C 1.546875 -0.578125 1.078125 -0.75 0.6875 -1.046875 L 0.234375 -0.53125 C 0.65625 -0.15625 1.265625 0.109375 2.09375 0.109375 C 3.09375 0.109375 4.03125 -0.359375 4.03125 -1.375 C 4.03125 -2.234375 3.4375 -2.65625 2.390625 -2.90625 C 1.609375 -3.109375 1.34375 -3.296875 1.34375 -3.703125 C 1.34375 -4.09375 1.6875 -4.34375 2.25 -4.34375 C 2.703125 -4.34375 3.09375 -4.203125 3.53125 -3.921875 L 3.890625 -4.46875 C 3.421875 -4.828125 2.90625 -5.03125 2.21875 -5.03125 Z M 2.21875 -5.03125 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2.671875 -5.03125 C 1.34375 -5.03125 0.53125 -3.984375 0.53125 -2.421875 C 0.53125 -0.828125 1.359375 0.109375 2.671875 0.109375 C 3.25 0.109375 3.734375 -0.078125 4.171875 -0.421875 L 3.78125 -0.984375 C 3.421875 -0.75 3.125 -0.609375 2.71875 -0.609375 C 1.9375 -0.609375 1.453125 -1.140625 1.453125 -2.4375 C 1.453125 -3.71875 1.9375 -4.3125 2.71875 -4.3125 C 3.125 -4.3125 3.4375 -4.203125 3.765625 -3.953125 L 4.171875 -4.5 C 3.71875 -4.875 3.25 -5.03125 2.671875 -5.03125 Z M 2.671875 -5.03125 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 3 -5.03125 C 2.390625 -5.03125 1.9375 -4.65625 1.671875 -3.921875 L 1.59375 -4.921875 L 0.859375 -4.921875 L 0.859375 0 L 1.71875 0 L 1.71875 -2.8125 C 1.921875 -3.75 2.28125 -4.1875 2.890625 -4.1875 C 3.0625 -4.1875 3.171875 -4.171875 3.328125 -4.125 L 3.484375 -4.96875 C 3.328125 -5.015625 3.15625 -5.03125 3 -5.03125 Z M 3 -5.03125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 3.71875 -6.75 L 3.34375 -7.46875 L 1.484375 -6.40625 L 1.75 -5.953125 Z M 4.59375 -2.609375 C 4.59375 -4.109375 3.90625 -5.03125 2.578125 -5.03125 C 1.3125 -5.03125 0.53125 -3.9375 0.53125 -2.40625 C 0.53125 -0.84375 1.328125 0.109375 2.703125 0.109375 C 3.390625 0.109375 3.9375 -0.125 4.421875 -0.5 L 4.046875 -1.015625 C 3.625 -0.71875 3.25 -0.59375 2.765625 -0.59375 C 2.0625 -0.59375 1.53125 -1.03125 1.453125 -2.171875 L 4.578125 -2.171875 C 4.59375 -2.28125 4.59375 -2.4375 4.59375 -2.609375 Z M 3.75 -2.796875 L 1.453125 -2.796875 C 1.515625 -3.890625 1.9375 -4.34375 2.59375 -4.34375 C 3.375 -4.34375 3.75 -3.8125 3.75 -2.859375 Z M 3.75 -2.796875 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 2.515625 -6.53125 C 1.328125 -6.53125 0.5 -5.84375 0.5 -4.859375 C 0.5 -3.859375 1.140625 -3.390625 2.390625 -3 C 3.484375 -2.671875 3.78125 -2.390625 3.78125 -1.765625 C 3.78125 -0.984375 3.15625 -0.609375 2.40625 -0.609375 C 1.703125 -0.609375 1.203125 -0.875 0.71875 -1.265625 L 0.234375 -0.71875 C 0.765625 -0.203125 1.5 0.109375 2.421875 0.109375 C 3.859375 0.109375 4.703125 -0.671875 4.703125 -1.796875 C 4.703125 -3.015625 3.828125 -3.421875 2.8125 -3.734375 C 1.65625 -4.09375 1.40625 -4.359375 1.40625 -4.890625 C 1.40625 -5.515625 1.90625 -5.8125 2.5625 -5.8125 C 3.09375 -5.8125 3.53125 -5.640625 4.015625 -5.25 L 4.5 -5.796875 C 3.96875 -6.28125 3.40625 -6.53125 2.515625 -6.53125 Z M 2.515625 -6.53125 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 4.5 -4.921875 L 3.640625 -4.921875 L 3.640625 -1.40625 C 3.34375 -0.921875 2.953125 -0.5625 2.421875 -0.5625 C 1.890625 -0.5625 1.65625 -0.8125 1.65625 -1.484375 L 1.65625 -4.921875 L 0.796875 -4.921875 L 0.796875 -1.390625 C 0.796875 -0.421875 1.3125 0.109375 2.171875 0.109375 C 2.875 0.109375 3.328125 -0.171875 3.703125 -0.765625 L 3.765625 0 L 4.5 0 Z M 4.5 -4.921875 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 0.5625 -2.5625 L 3.203125 -2.5625 L 3.203125 -3.28125 L 0.5625 -3.28125 Z M 0.5625 -2.5625 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 3.90625 -4.921875 L 3.84375 -4.359375 C 3.5 -4.734375 3.0625 -5.03125 2.46875 -5.03125 C 1.265625 -5.03125 0.53125 -3.9375 0.53125 -2.4375 C 0.53125 -0.90625 1.1875 0.109375 2.390625 0.109375 C 2.984375 0.109375 3.46875 -0.171875 3.78125 -0.65625 L 3.78125 1.890625 L 4.640625 1.984375 L 4.640625 -4.921875 Z M 2.578125 -0.5625 C 1.859375 -0.5625 1.453125 -1.15625 1.453125 -2.453125 C 1.453125 -3.734375 1.90625 -4.34375 2.65625 -4.34375 C 3.140625 -4.34375 3.484375 -4.09375 3.78125 -3.703125 L 3.78125 -1.296875 C 3.453125 -0.84375 3.125 -0.5625 2.578125 -0.5625 Z M 2.578125 -0.5625 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-1-0"> | |
| 66 | +<path d="M 1.640625 -5.796875 L 0.84375 -5.796875 L 0.84375 0 L 1.640625 0 Z M 1.640625 -5.796875 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-1-1"> | |
| 69 | +<path d="M 2.859375 -4.53125 C 2.28125 -4.53125 1.8125 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.109375 -3.921875 3.375 -3.734375 3.375 -3.0625 L 3.375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.53125 2.859375 -4.53125 Z M 2.859375 -4.53125 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-1-2"> | |
| 72 | +<path d="M 4.046875 -4.4375 L 3.234375 -4.4375 L 2.078125 -0.6875 L 0.921875 -4.4375 L 0.078125 -4.4375 L 1.609375 0 L 2.546875 0 Z M 4.046875 -4.4375 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-1-3"> | |
| 75 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.703125 3.515625 -4.53125 2.3125 -4.53125 C 1.171875 -4.53125 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.265625 -0.640625 2.9375 -0.53125 2.5 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.140625 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.921875 2.34375 -3.921875 C 3.03125 -3.921875 3.375 -3.4375 3.375 -2.578125 Z M 3.375 -2.515625 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-1-4"> | |
| 78 | +<path d="M 2 -4.53125 C 1.078125 -4.53125 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.03125 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.453125 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.6875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.140625 0.09375 1.890625 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.25 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.453125 -2.8125 1.203125 -2.96875 1.203125 -3.34375 C 1.203125 -3.6875 1.515625 -3.921875 2.03125 -3.921875 C 2.4375 -3.921875 2.78125 -3.796875 3.171875 -3.53125 L 3.5 -4.03125 C 3.078125 -4.34375 2.625 -4.53125 2 -4.53125 Z M 2 -4.53125 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-1-5"> | |
| 81 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.15625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.59375 -3.828125 L 2.671875 -4.4375 L 1.625 -4.4375 L 1.625 -5.515625 L 0.84375 -5.4375 L 0.84375 -4.4375 L 0.078125 -4.4375 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.34375 1.296875 0.09375 2.046875 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-1-6"> | |
| 84 | +<path d="M 1.15625 -6.5625 C 0.828125 -6.5625 0.609375 -6.328125 0.609375 -6.03125 C 0.609375 -5.734375 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.703125 -5.734375 1.703125 -6.03125 C 1.703125 -6.328125 1.484375 -6.5625 1.15625 -6.5625 Z M 1.546875 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.4375 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-1-7"> | |
| 87 | +<path d="M 5.21875 -4.53125 C 4.625 -4.53125 4.21875 -4.21875 3.90625 -3.734375 C 3.734375 -4.234375 3.328125 -4.53125 2.78125 -4.53125 C 2.203125 -4.53125 1.796875 -4.234375 1.5 -3.78125 L 1.4375 -4.4375 L 0.765625 -4.4375 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.59375 -3.921875 C 2.921875 -3.921875 3.21875 -3.734375 3.21875 -3.0625 L 3.21875 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.03125 -3.921875 C 5.359375 -3.921875 5.65625 -3.734375 5.65625 -3.0625 L 5.65625 0 L 6.421875 0 L 6.421875 -3.171875 C 6.421875 -4.015625 5.9375 -4.53125 5.21875 -4.53125 Z M 5.21875 -4.53125 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-1-8"> | |
| 90 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.0625 C 3.734375 -3.984375 3.25 -4.53125 2.1875 -4.53125 C 1.6875 -4.53125 1.203125 -4.4375 0.65625 -4.234375 L 0.84375 -3.671875 C 1.296875 -3.8125 1.71875 -3.90625 2.046875 -3.90625 C 2.65625 -3.90625 2.96875 -3.671875 2.96875 -3.03125 L 2.96875 -2.703125 L 2.28125 -2.703125 C 1.046875 -2.703125 0.34375 -2.1875 0.34375 -1.234375 C 0.34375 -0.453125 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.9375 0.09375 L 4.109375 -0.4375 C 3.890625 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.890625 1.578125 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.71875 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-1-9"> | |
| 93 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.125 -4.296875 2.734375 -4.53125 2.21875 -4.53125 C 1.140625 -4.53125 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.15625 0.09375 C 2.703125 0.09375 3.140625 -0.171875 3.4375 -0.609375 L 3.5 0 L 4.1875 0 L 4.1875 -6.21875 Z M 2.3125 -0.515625 C 1.6875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.921875 2.390625 -3.921875 C 2.828125 -3.921875 3.140625 -3.6875 3.40625 -3.34375 L 3.40625 -1.171875 C 3.125 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-1-10"> | |
| 96 | +<path d="M 2.46875 -4.53125 C 1.203125 -4.53125 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.4375 -0.84375 4.4375 -2.21875 C 4.4375 -3.625 3.71875 -4.53125 2.46875 -4.53125 Z M 2.46875 -3.90625 C 3.1875 -3.90625 3.59375 -3.375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.375 1.71875 -3.90625 2.46875 -3.90625 Z M 2.46875 -3.90625 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-1-11"> | |
| 99 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.265625 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.5625 1.890625 -0.53125 1.78125 -0.53125 C 1.578125 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.21875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-1-12"> | |
| 102 | +<path d="M 1.90625 -7.109375 C 1.078125 -5.9375 0.34375 -4.9375 0.34375 -2.9375 C 0.34375 -0.953125 1.078125 0.046875 1.90625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.75 1.625 -5.65625 2.390625 -6.765625 Z M 1.90625 -7.109375 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-1-13"> | |
| 105 | +<path d="M 4.125 -1.5625 C 4.125 -2.640625 3.359375 -3 2.46875 -3.265625 C 1.453125 -3.578125 1.234375 -3.8125 1.234375 -4.28125 C 1.234375 -4.8125 1.6875 -5.078125 2.25 -5.078125 C 2.71875 -5.078125 3.125 -4.9375 3.5 -4.578125 L 3.953125 -5.0625 C 3.578125 -5.40625 3.171875 -5.625 2.609375 -5.6875 L 2.609375 -6.921875 L 1.9375 -6.921875 L 1.9375 -5.703125 C 1.046875 -5.59375 0.4375 -5.03125 0.4375 -4.25 C 0.4375 -3.375 1.015625 -2.953125 2.09375 -2.625 C 3.0625 -2.328125 3.328125 -2.078125 3.328125 -1.53125 C 3.328125 -0.859375 2.78125 -0.53125 2.109375 -0.53125 C 1.5 -0.53125 1.046875 -0.75 0.671875 -1.125 L 0.203125 -0.625 C 0.640625 -0.203125 1.203125 0.0625 1.9375 0.09375 L 1.9375 1.296875 L 2.609375 1.296875 L 2.609375 0.0625 C 3.578125 -0.09375 4.125 -0.71875 4.125 -1.5625 Z M 4.125 -1.5625 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-1-14"> | |
| 108 | +<path d="M 0.828125 -7.109375 L 0.34375 -6.765625 C 1.09375 -5.65625 1.578125 -4.75 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.34375 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.9375 1.640625 -5.9375 0.828125 -7.109375 Z M 0.828125 -7.109375 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-2-0"> | |
| 111 | +<path d="M -5.796875 -4.625 L -5.796875 -3.8125 L -0.859375 -2.359375 L -5.796875 -0.90625 L -5.796875 -0.046875 L 0 -1.921875 L 0 -2.78125 Z M -5.796875 -4.625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-2-1"> | |
| 114 | +<path d="M -1.03125 -3.734375 L -3.0625 -3.734375 C -3.984375 -3.734375 -4.53125 -3.25 -4.53125 -2.1875 C -4.53125 -1.6875 -4.4375 -1.203125 -4.234375 -0.65625 L -3.671875 -0.84375 C -3.8125 -1.296875 -3.90625 -1.71875 -3.90625 -2.046875 C -3.90625 -2.65625 -3.671875 -2.96875 -3.03125 -2.96875 L -2.703125 -2.96875 L -2.703125 -2.28125 C -2.703125 -1.046875 -2.1875 -0.34375 -1.234375 -0.34375 C -0.453125 -0.34375 0.09375 -0.859375 0.09375 -1.75 C 0.09375 -2.28125 -0.09375 -2.75 -0.5625 -3.0625 C -0.125 -3.203125 0.046875 -3.484375 0.09375 -3.9375 L -0.4375 -4.109375 C -0.515625 -3.890625 -0.640625 -3.734375 -1.03125 -3.734375 Z M -0.484375 -1.921875 C -0.484375 -1.421875 -0.75 -1.15625 -1.28125 -1.15625 C -1.890625 -1.15625 -2.1875 -1.578125 -2.1875 -2.390625 L -2.1875 -2.96875 L -1.171875 -2.96875 C -0.703125 -2.71875 -0.484375 -2.375 -0.484375 -1.921875 Z M -0.484375 -1.921875 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-2-2"> | |
| 117 | +<path d="M 0.09375 -1.640625 C 0.09375 -1.875 0.046875 -2.09375 -0.046875 -2.265625 L -0.59375 -2.0625 C -0.5625 -1.96875 -0.53125 -1.890625 -0.53125 -1.78125 C -0.53125 -1.578125 -0.65625 -1.5 -0.890625 -1.5 L -6.296875 -1.5 L -6.21875 -0.71875 L -0.875 -0.71875 C -0.25 -0.71875 0.09375 -1.078125 0.09375 -1.640625 Z M 0.09375 -1.640625 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-2-3"> | |
| 120 | +<path d="M -2.34375 -4.140625 C -3.703125 -4.140625 -4.53125 -3.515625 -4.53125 -2.3125 C -4.53125 -1.171875 -3.546875 -0.484375 -2.171875 -0.484375 C -0.765625 -0.484375 0.09375 -1.203125 0.09375 -2.4375 C 0.09375 -3.046875 -0.109375 -3.546875 -0.453125 -3.984375 L -0.921875 -3.640625 C -0.640625 -3.265625 -0.53125 -2.9375 -0.53125 -2.5 C -0.53125 -1.859375 -0.921875 -1.375 -1.953125 -1.296875 L -1.953125 -4.125 C -2.046875 -4.140625 -2.1875 -4.140625 -2.34375 -4.140625 Z M -2.515625 -3.375 L -2.515625 -1.296875 C -3.5 -1.359375 -3.921875 -1.75 -3.921875 -2.34375 C -3.921875 -3.03125 -3.4375 -3.375 -2.578125 -3.375 Z M -2.515625 -3.375 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-2-4"> | |
| 123 | +<path d="M -4.4375 -4.0625 L -4.4375 -3.28125 L -1.265625 -3.28125 C -0.828125 -3.015625 -0.5 -2.65625 -0.5 -2.171875 C -0.5 -1.703125 -0.734375 -1.5 -1.34375 -1.5 L -4.4375 -1.5 L -4.4375 -0.71875 L -1.25 -0.71875 C -0.390625 -0.71875 0.09375 -1.1875 0.09375 -1.953125 C 0.09375 -2.59375 -0.15625 -3 -0.6875 -3.34375 L 0 -3.390625 L 0 -4.0625 Z M -4.4375 -4.0625 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-2-5"> | |
| 126 | +<path d="M -4.53125 -2.703125 C -4.53125 -2.15625 -4.1875 -1.75 -3.53125 -1.515625 L -4.4375 -1.4375 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 L -2.53125 -1.546875 C -3.375 -1.734375 -3.78125 -2.046875 -3.78125 -2.609375 C -3.78125 -2.765625 -3.75 -2.859375 -3.71875 -3 L -4.484375 -3.140625 C -4.515625 -3 -4.53125 -2.84375 -4.53125 -2.703125 Z M -4.53125 -2.703125 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-2-6"> | |
| 129 | +<path d="M -0.71875 -2.734375 C -0.59375 -2.515625 -0.53125 -2.34375 -0.53125 -2.15625 C -0.53125 -1.765625 -0.75 -1.625 -1.1875 -1.625 L -3.828125 -1.625 L -3.828125 -2.59375 L -4.4375 -2.671875 L -4.4375 -1.625 L -5.515625 -1.625 L -5.4375 -0.84375 L -4.4375 -0.84375 L -4.4375 -0.078125 L -3.828125 -0.078125 L -3.828125 -0.84375 L -1.15625 -0.84375 C -0.34375 -0.84375 0.09375 -1.296875 0.09375 -2.046875 C 0.09375 -2.421875 0 -2.734375 -0.203125 -3.03125 Z M -0.71875 -2.734375 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-2-7"> | |
| 132 | +<path d="M -4.53125 -2.46875 C -4.53125 -1.203125 -3.578125 -0.484375 -2.203125 -0.484375 C -0.8125 -0.484375 0.09375 -1.1875 0.09375 -2.453125 C 0.09375 -3.703125 -0.84375 -4.4375 -2.21875 -4.4375 C -3.625 -4.4375 -4.53125 -3.71875 -4.53125 -2.46875 Z M -3.90625 -2.46875 C -3.90625 -3.1875 -3.375 -3.59375 -2.21875 -3.59375 C -1.0625 -3.59375 -0.515625 -3.1875 -0.515625 -2.453125 C -0.515625 -1.71875 -1.0625 -1.3125 -2.203125 -1.3125 C -3.375 -1.3125 -3.90625 -1.71875 -3.90625 -2.46875 Z M -3.90625 -2.46875 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-2-8"> | |
| 135 | +<path d="M -6.296875 -3.40625 L -3.984375 -3.40625 C -4.296875 -3.125 -4.53125 -2.734375 -4.53125 -2.21875 C -4.53125 -1.140625 -3.546875 -0.484375 -2.1875 -0.484375 C -0.8125 -0.484375 0.09375 -1.078125 0.09375 -2.15625 C 0.09375 -2.703125 -0.171875 -3.140625 -0.609375 -3.4375 L 0 -3.5 L 0 -4.1875 L -6.21875 -4.1875 Z M -0.515625 -2.3125 C -0.515625 -1.6875 -1.046875 -1.3125 -2.203125 -1.3125 C -3.359375 -1.3125 -3.921875 -1.71875 -3.921875 -2.390625 C -3.921875 -2.828125 -3.6875 -3.140625 -3.34375 -3.40625 L -1.171875 -3.40625 C -0.75 -3.125 -0.515625 -2.8125 -0.515625 -2.3125 Z M -0.515625 -2.3125 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-2-9"> | |
| 138 | +<path d="M -4.53125 -2.796875 C -4.53125 -2.265625 -4.28125 -1.84375 -3.875 -1.546875 L -6.296875 -1.546875 L -6.21875 -0.765625 L 0 -0.765625 L 0 -1.453125 L -0.484375 -1.53125 C -0.125 -1.828125 0.09375 -2.21875 0.09375 -2.703125 C 0.09375 -3.78125 -0.828125 -4.453125 -2.21875 -4.453125 C -3.703125 -4.453125 -4.53125 -3.796875 -4.53125 -2.796875 Z M -0.515625 -2.515625 C -0.515625 -2.125 -0.75 -1.78125 -1.109375 -1.546875 L -3.234375 -1.546875 C -3.578125 -1.78125 -3.921875 -2.09375 -3.921875 -2.578125 C -3.921875 -3.203125 -3.484375 -3.609375 -2.21875 -3.609375 C -1.015625 -3.609375 -0.515625 -3.171875 -0.515625 -2.515625 Z M -0.515625 -2.515625 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-2-10"> | |
| 141 | +<path d="M -6.5625 -1.15625 C -6.5625 -0.828125 -6.328125 -0.609375 -6.03125 -0.609375 C -5.734375 -0.609375 -5.5 -0.828125 -5.5 -1.15625 C -5.5 -1.484375 -5.734375 -1.703125 -6.03125 -1.703125 C -6.328125 -1.703125 -6.5625 -1.484375 -6.5625 -1.15625 Z M -4.4375 -1.546875 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 Z M -4.4375 -1.546875 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-2-11"> | |
| 144 | +<path d="M -4.53125 -2.859375 C -4.53125 -2.28125 -4.234375 -1.8125 -3.78125 -1.5 L -4.4375 -1.4375 L -4.4375 -0.765625 L 0 -0.765625 L 0 -1.546875 L -3.140625 -1.546875 C -3.609375 -1.84375 -3.921875 -2.171875 -3.921875 -2.671875 C -3.921875 -3.109375 -3.734375 -3.375 -3.0625 -3.375 L 0 -3.375 L 0 -4.140625 L -3.171875 -4.140625 C -4.015625 -4.140625 -4.53125 -3.671875 -4.53125 -2.859375 Z M -4.53125 -2.859375 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-2-12"> | |
| 147 | +<path d="M -7.109375 -1.90625 C -5.9375 -1.078125 -4.9375 -0.34375 -2.9375 -0.34375 C -0.953125 -0.34375 0.046875 -1.078125 1.21875 -1.90625 L 0.875 -2.390625 C -0.234375 -1.625 -1.140625 -1.140625 -2.9375 -1.140625 C -4.75 -1.140625 -5.65625 -1.625 -6.765625 -2.390625 Z M -7.109375 -1.90625 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-2-13"> | |
| 150 | +<path d="M -1.5625 -4.125 C -2.640625 -4.125 -3 -3.359375 -3.265625 -2.46875 C -3.578125 -1.453125 -3.8125 -1.234375 -4.28125 -1.234375 C -4.8125 -1.234375 -5.078125 -1.6875 -5.078125 -2.25 C -5.078125 -2.71875 -4.9375 -3.125 -4.578125 -3.5 L -5.0625 -3.953125 C -5.40625 -3.578125 -5.625 -3.171875 -5.6875 -2.609375 L -6.921875 -2.609375 L -6.921875 -1.9375 L -5.703125 -1.9375 C -5.59375 -1.046875 -5.03125 -0.4375 -4.25 -0.4375 C -3.375 -0.4375 -2.953125 -1.015625 -2.625 -2.09375 C -2.328125 -3.0625 -2.078125 -3.328125 -1.53125 -3.328125 C -0.859375 -3.328125 -0.53125 -2.78125 -0.53125 -2.109375 C -0.53125 -1.5 -0.75 -1.046875 -1.125 -0.671875 L -0.625 -0.203125 C -0.203125 -0.640625 0.0625 -1.203125 0.09375 -1.9375 L 1.296875 -1.9375 L 1.296875 -2.609375 L 0.0625 -2.609375 C -0.09375 -3.578125 -0.71875 -4.125 -1.5625 -4.125 Z M -1.5625 -4.125 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-2-14"> | |
| 153 | +<path d="M -7.109375 -0.828125 L -6.765625 -0.34375 C -5.65625 -1.09375 -4.75 -1.578125 -2.9375 -1.578125 C -1.140625 -1.578125 -0.234375 -1.09375 0.875 -0.34375 L 1.21875 -0.828125 C 0.046875 -1.640625 -0.953125 -2.390625 -2.9375 -2.390625 C -4.9375 -2.390625 -5.9375 -1.640625 -7.109375 -0.828125 Z M -7.109375 -0.828125 "/> | |
| 154 | +</g> | |
| 155 | +</g> | |
| 156 | +</defs> | |
| 157 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000275732 0.000844511 L 236.641811 0.000844511 " transform="matrix(0.996808, 0, 0, -0.996808, 21.8909, 114.778186)"/> | |
| 158 | +<path fill-rule="nonzero" fill="rgb(65.705872%, 66.999817%, 69.155884%)" fill-opacity="1" d="M 259.765625 114.777344 L 256.585938 113.1875 L 257.777344 114.777344 L 256.585938 116.367188 "/> | |
| 159 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(65.705872%, 66.999817%, 69.155884%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000275732 0.000844511 L -0.000275732 106.246233 " transform="matrix(0.996808, 0, 0, -0.996808, 21.8909, 114.778186)"/> | |
| 160 | +<path fill-rule="nonzero" fill="rgb(65.705872%, 66.999817%, 69.155884%)" fill-opacity="1" d="M 21.890625 6.882812 L 20.300781 10.0625 L 21.890625 8.871094 L 23.480469 10.0625 "/> | |
| 161 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.000275732 10.824456 L 4.384815 14.559033 L 8.765988 18.203479 L 13.151079 21.761712 L 17.532251 25.233732 L 21.913423 28.615621 L 26.298515 31.911297 L 30.679687 35.116842 L 35.064778 38.240093 L 39.44595 41.269293 L 43.831041 44.2162 L 48.212214 47.072975 L 52.597305 49.843538 L 56.978477 52.523969 L 61.363568 55.118187 L 65.744741 57.626193 L 70.129832 60.044067 L 74.511004 62.375728 L 78.896095 64.617258 L 83.277267 66.776494 L 87.662358 68.84168 L 92.043531 70.824572 L 96.428622 72.717333 L 100.809794 74.52388 L 105.194885 76.240297 L 109.576058 77.8705 L 113.961149 79.414491 L 118.342321 80.868351 L 122.727412 82.235998 L 127.108584 83.513513 L 131.493676 84.708735 L 135.874848 85.809906 L 140.259939 86.828783 L 144.641111 87.757529 L 149.026202 88.600062 L 153.407375 89.352464 L 157.792466 90.018653 L 162.173638 90.598629 L 166.55481 91.088474 L 170.939902 91.492106 L 175.321074 91.805607 L 179.706165 92.036813 L 184.087337 92.177889 L 188.472428 92.228833 L 192.853601 92.193564 L 197.238692 92.072082 L 201.619864 91.860469 L 206.004955 91.562644 L 210.386128 91.178605 L 214.771219 90.704436 " transform="matrix(0.996808, 0, 0, -0.996808, 21.8909, 114.778186)"/> | |
| 162 | +<path fill="none" stroke-width="1.19553" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(6.27594%, 48.626709%, 30.587769%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 188.519453 0.000844511 L 188.519453 92.546252 " transform="matrix(0.996808, 0, 0, -0.996808, 21.8909, 114.778186)"/> | |
| 163 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 164 | +<use xlink:href="#glyph-0-0" x="181.331332" y="15.608751"/> | |
| 165 | +</g> | |
| 166 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 167 | +<use xlink:href="#glyph-0-1" x="186.47492" y="15.608751"/> | |
| 168 | +<use xlink:href="#glyph-0-2" x="191.926565" y="15.608751"/> | |
| 169 | +<use xlink:href="#glyph-0-3" x="194.503026" y="15.608751"/> | |
| 170 | +<use xlink:href="#glyph-0-4" x="199.907995" y="15.608751"/> | |
| 171 | +</g> | |
| 172 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 173 | +<use xlink:href="#glyph-0-1" x="205.75171" y="15.608751"/> | |
| 174 | +<use xlink:href="#glyph-0-5" x="211.203354" y="15.608751"/> | |
| 175 | +<use xlink:href="#glyph-0-4" x="216.673668" y="15.608751"/> | |
| 176 | +<use xlink:href="#glyph-0-2" x="220.043606" y="15.608751"/> | |
| 177 | +<use xlink:href="#glyph-0-6" x="222.620067" y="15.608751"/> | |
| 178 | +<use xlink:href="#glyph-0-7" x="230.554823" y="15.608751"/> | |
| 179 | +</g> | |
| 180 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 181 | +<use xlink:href="#glyph-0-8" x="235.539717" y="15.608751"/> | |
| 182 | +</g> | |
| 183 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 184 | +<use xlink:href="#glyph-0-9" x="66.842952" y="85.30058"/> | |
| 185 | +</g> | |
| 186 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 187 | +<use xlink:href="#glyph-0-10" x="72.443956" y="85.30058"/> | |
| 188 | +<use xlink:href="#glyph-0-3" x="77.5222" y="85.30058"/> | |
| 189 | +<use xlink:href="#glyph-0-11" x="82.927169" y="85.30058"/> | |
| 190 | +<use xlink:href="#glyph-0-10" x="88.434823" y="85.30058"/> | |
| 191 | +<use xlink:href="#glyph-0-6" x="93.513067" y="85.30058"/> | |
| 192 | +<use xlink:href="#glyph-0-10" x="101.447823" y="85.30058"/> | |
| 193 | +<use xlink:href="#glyph-0-3" x="106.526067" y="85.30058"/> | |
| 194 | +<use xlink:href="#glyph-0-4" x="111.931036" y="85.30058"/> | |
| 195 | +<use xlink:href="#glyph-0-12" x="115.300973" y="85.30058"/> | |
| 196 | +</g> | |
| 197 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 198 | +<use xlink:href="#glyph-0-13" x="71.916705" y="97.21742"/> | |
| 199 | +<use xlink:href="#glyph-0-14" x="76.378838" y="97.21742"/> | |
| 200 | +</g> | |
| 201 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 202 | +<use xlink:href="#glyph-0-1" x="79.767446" y="97.21742"/> | |
| 203 | +<use xlink:href="#glyph-0-2" x="85.21909" y="97.21742"/> | |
| 204 | +<use xlink:href="#glyph-0-12" x="87.795552" y="97.21742"/> | |
| 205 | +</g> | |
| 206 | +<g fill="rgb(6.27594%, 48.626709%, 30.587769%)" fill-opacity="1"> | |
| 207 | +<use xlink:href="#glyph-0-12" x="92.06165" y="97.21742"/> | |
| 208 | +<use xlink:href="#glyph-0-7" x="96.421098" y="97.21742"/> | |
| 209 | +<use xlink:href="#glyph-0-3" x="101.452667" y="97.21742"/> | |
| 210 | +<use xlink:href="#glyph-0-4" x="106.857636" y="97.21742"/> | |
| 211 | +<use xlink:href="#glyph-0-12" x="110.227573" y="97.21742"/> | |
| 212 | +</g> | |
| 213 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 214 | +<use xlink:href="#glyph-0-9" x="138.203438" y="69.117403"/> | |
| 215 | +</g> | |
| 216 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 217 | +<use xlink:href="#glyph-0-10" x="143.804442" y="69.117403"/> | |
| 218 | +<use xlink:href="#glyph-0-3" x="148.882686" y="69.117403"/> | |
| 219 | +<use xlink:href="#glyph-0-11" x="154.287655" y="69.117403"/> | |
| 220 | +<use xlink:href="#glyph-0-10" x="159.795309" y="69.117403"/> | |
| 221 | +<use xlink:href="#glyph-0-6" x="164.873553" y="69.117403"/> | |
| 222 | +<use xlink:href="#glyph-0-10" x="172.808309" y="69.117403"/> | |
| 223 | +<use xlink:href="#glyph-0-3" x="177.886553" y="69.117403"/> | |
| 224 | +<use xlink:href="#glyph-0-4" x="183.291522" y="69.117403"/> | |
| 225 | +<use xlink:href="#glyph-0-12" x="186.661459" y="69.117403"/> | |
| 226 | +</g> | |
| 227 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 228 | +<use xlink:href="#glyph-0-11" x="137.98414" y="81.034242"/> | |
| 229 | +<use xlink:href="#glyph-0-15" x="143.491794" y="81.034242"/> | |
| 230 | +<use xlink:href="#glyph-0-13" x="148.570038" y="81.034242"/> | |
| 231 | +<use xlink:href="#glyph-0-14" x="153.032171" y="81.034242"/> | |
| 232 | +</g> | |
| 233 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 234 | +<use xlink:href="#glyph-0-1" x="156.420779" y="81.034242"/> | |
| 235 | +<use xlink:href="#glyph-0-2" x="161.872423" y="81.034242"/> | |
| 236 | +<use xlink:href="#glyph-0-12" x="164.448885" y="81.034242"/> | |
| 237 | +</g> | |
| 238 | +<g fill="rgb(79.998779%, 64.312744%, 14.118958%)" fill-opacity="1"> | |
| 239 | +<use xlink:href="#glyph-0-12" x="168.714983" y="81.034242"/> | |
| 240 | +<use xlink:href="#glyph-0-7" x="173.074431" y="81.034242"/> | |
| 241 | +<use xlink:href="#glyph-0-3" x="178.106" y="81.034242"/> | |
| 242 | +<use xlink:href="#glyph-0-4" x="183.510969" y="81.034242"/> | |
| 243 | +<use xlink:href="#glyph-0-12" x="186.880907" y="81.034242"/> | |
| 244 | +</g> | |
| 245 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 246 | +<use xlink:href="#glyph-0-16" x="231.988116" y="46.355293"/> | |
| 247 | +<use xlink:href="#glyph-0-17" x="237.075695" y="46.355293"/> | |
| 248 | +<use xlink:href="#glyph-0-14" x="242.443324" y="46.355293"/> | |
| 249 | +</g> | |
| 250 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 251 | +<use xlink:href="#glyph-0-18" x="245.710576" y="46.355293"/> | |
| 252 | +</g> | |
| 253 | +<g fill="rgb(69.802856%, 16.471863%, 12.548828%)" fill-opacity="1"> | |
| 254 | +<use xlink:href="#glyph-0-15" x="215.297563" y="58.272132"/> | |
| 255 | +<use xlink:href="#glyph-0-19" x="220.375807" y="58.272132"/> | |
| 256 | +<use xlink:href="#glyph-0-17" x="225.883461" y="58.272132"/> | |
| 257 | +<use xlink:href="#glyph-0-2" x="231.25109" y="58.272132"/> | |
| 258 | +<use xlink:href="#glyph-0-5" x="233.827552" y="58.272132"/> | |
| 259 | +<use xlink:href="#glyph-0-10" x="239.297866" y="58.272132"/> | |
| 260 | +<use xlink:href="#glyph-0-6" x="244.37611" y="58.272132"/> | |
| 261 | +<use xlink:href="#glyph-0-10" x="252.310866" y="58.272132"/> | |
| 262 | +<use xlink:href="#glyph-0-3" x="257.38911" y="58.272132"/> | |
| 263 | +<use xlink:href="#glyph-0-4" x="262.794079" y="58.272132"/> | |
| 264 | +</g> | |
| 265 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 266 | +<use xlink:href="#glyph-1-0" x="83.165683" y="127.286132"/> | |
| 267 | +<use xlink:href="#glyph-1-1" x="85.644124" y="127.286132"/> | |
| 268 | +</g> | |
| 269 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 270 | +<use xlink:href="#glyph-1-2" x="90.44978" y="127.286132"/> | |
| 271 | +</g> | |
| 272 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 273 | +<use xlink:href="#glyph-1-3" x="94.54971" y="127.286132"/> | |
| 274 | +<use xlink:href="#glyph-1-4" x="99.120124" y="127.286132"/> | |
| 275 | +<use xlink:href="#glyph-1-5" x="103.043623" y="127.286132"/> | |
| 276 | +<use xlink:href="#glyph-1-6" x="106.076563" y="127.286132"/> | |
| 277 | +<use xlink:href="#glyph-1-4" x="108.395376" y="127.286132"/> | |
| 278 | +</g> | |
| 279 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 280 | +<use xlink:href="#glyph-1-4" x="112.23486" y="127.286132"/> | |
| 281 | +<use xlink:href="#glyph-1-3" x="116.158359" y="127.286132"/> | |
| 282 | +<use xlink:href="#glyph-1-7" x="120.728773" y="127.286132"/> | |
| 283 | +<use xlink:href="#glyph-1-3" x="127.870044" y="127.286132"/> | |
| 284 | +<use xlink:href="#glyph-1-1" x="132.440458" y="127.286132"/> | |
| 285 | +<use xlink:href="#glyph-1-5" x="137.304925" y="127.286132"/> | |
| 286 | +</g> | |
| 287 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 288 | +<use xlink:href="#glyph-1-8" x="142.564261" y="127.286132"/> | |
| 289 | +<use xlink:href="#glyph-1-9" x="147.092668" y="127.286132"/> | |
| 290 | +<use xlink:href="#glyph-1-9" x="152.049551" y="127.286132"/> | |
| 291 | +<use xlink:href="#glyph-1-6" x="157.006434" y="127.286132"/> | |
| 292 | +<use xlink:href="#glyph-1-5" x="159.325247" y="127.286132"/> | |
| 293 | +<use xlink:href="#glyph-1-6" x="162.358187" y="127.286132"/> | |
| 294 | +<use xlink:href="#glyph-1-10" x="164.677" y="127.286132"/> | |
| 295 | +<use xlink:href="#glyph-1-1" x="169.583474" y="127.286132"/> | |
| 296 | +<use xlink:href="#glyph-1-1" x="174.44794" y="127.286132"/> | |
| 297 | +<use xlink:href="#glyph-1-3" x="179.312406" y="127.286132"/> | |
| 298 | +<use xlink:href="#glyph-1-11" x="183.88282" y="127.286132"/> | |
| 299 | +</g> | |
| 300 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 301 | +<use xlink:href="#glyph-1-12" x="188.579257" y="127.286132"/> | |
| 302 | +<use xlink:href="#glyph-1-13" x="191.301342" y="127.286132"/> | |
| 303 | +<use xlink:href="#glyph-1-14" x="195.762536" y="127.286132"/> | |
| 304 | +</g> | |
| 305 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 306 | +<use xlink:href="#glyph-2-0" x="15.155468" y="106.612335"/> | |
| 307 | +</g> | |
| 308 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 309 | +<use xlink:href="#glyph-2-1" x="15.155468" y="102.193148"/> | |
| 310 | +</g> | |
| 311 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 312 | +<use xlink:href="#glyph-2-2" x="15.155468" y="97.706749"/> | |
| 313 | +</g> | |
| 314 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 315 | +<use xlink:href="#glyph-2-3" x="15.155468" y="95.278716"/> | |
| 316 | +<use xlink:href="#glyph-2-4" x="15.155468" y="90.708302"/> | |
| 317 | +<use xlink:href="#glyph-2-5" x="15.155468" y="85.877442"/> | |
| 318 | +</g> | |
| 319 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 320 | +<use xlink:href="#glyph-2-6" x="15.155468" y="80.433272"/> | |
| 321 | +</g> | |
| 322 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 323 | +<use xlink:href="#glyph-2-7" x="15.155468" y="77.526354"/> | |
| 324 | +<use xlink:href="#glyph-2-6" x="15.155468" y="72.619881"/> | |
| 325 | +<use xlink:href="#glyph-2-1" x="15.155468" y="69.58694"/> | |
| 326 | +</g> | |
| 327 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 328 | +<use xlink:href="#glyph-2-2" x="15.155468" y="65.100541"/> | |
| 329 | +</g> | |
| 330 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 331 | +<use xlink:href="#glyph-2-3" x="15.155468" y="62.672509"/> | |
| 332 | +</g> | |
| 333 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 334 | +<use xlink:href="#glyph-2-8" x="15.155468" y="55.875698"/> | |
| 335 | +<use xlink:href="#glyph-2-4" x="15.155468" y="50.918816"/> | |
| 336 | +</g> | |
| 337 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 338 | +<use xlink:href="#glyph-2-9" x="15.155468" y="43.861559"/> | |
| 339 | +<use xlink:href="#glyph-2-10" x="15.155468" y="38.938282"/> | |
| 340 | +<use xlink:href="#glyph-2-3" x="15.155468" y="36.619469"/> | |
| 341 | +<use xlink:href="#glyph-2-11" x="15.155468" y="32.049055"/> | |
| 342 | +</g> | |
| 343 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 344 | +<use xlink:href="#glyph-2-12" x="15.155468" y="24.958192"/> | |
| 345 | +<use xlink:href="#glyph-2-13" x="15.155468" y="22.236107"/> | |
| 346 | +<use xlink:href="#glyph-2-14" x="15.155468" y="17.774913"/> | |
| 347 | +</g> | |
| 348 | +</svg> | |
added
dist/assets/fig/ddd6330ec205be6c.svg
+854 −0
@@ -0,0 +1,854 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="172.308pt" viewBox="0 0 314.242 172.308"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.703125 -4.734375 L 2.03125 -4.734375 L 0.296875 -3.65625 L 0.625 -3.109375 L 1.9375 -3.90625 L 1.9375 0 L 2.703125 0 Z M 2.703125 -4.734375 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.328125 0.09375 1.578125 -0.15625 1.578125 -0.484375 C 1.578125 -0.8125 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 3.921875 0 L 4.859375 0 L 3.3125 -2.59375 C 4.140625 -2.84375 4.5625 -3.328125 4.5625 -4.140625 C 4.5625 -5.234375 3.796875 -5.78125 2.359375 -5.78125 L 0.84375 -5.78125 L 0.84375 0 L 1.640625 0 L 1.640625 -2.453125 L 2.53125 -2.453125 Z M 1.640625 -3.0625 L 1.640625 -5.15625 L 2.34375 -5.15625 C 3.296875 -5.15625 3.703125 -4.859375 3.703125 -4.140625 C 3.703125 -3.359375 3.25 -3.0625 2.4375 -3.0625 Z M 1.640625 -3.0625 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.765625 -0.390625 L 3.40625 -0.890625 C 3.078125 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.75 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.34375 1.75 -3.890625 2.4375 -3.890625 C 2.8125 -3.890625 3.09375 -3.78125 3.390625 -3.5625 L 3.765625 -4.046875 C 3.34375 -4.390625 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.859375 -4.515625 C 2.296875 -4.515625 1.859375 -4.25 1.546875 -3.8125 L 1.546875 -6.28125 L 0.765625 -6.1875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.1875 -3.921875 2.65625 -3.921875 C 3.078125 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4 3.65625 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.6875 -4.515625 C 2.15625 -4.515625 1.75 -4.1875 1.515625 -3.53125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -2.53125 C 1.734375 -3.375 2.046875 -3.765625 2.59375 -3.765625 C 2.765625 -3.765625 2.859375 -3.75 2.984375 -3.71875 L 3.125 -4.46875 C 3 -4.5 2.84375 -4.515625 2.6875 -4.515625 Z M 2.6875 -4.515625 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.625 -0.75 1.625 -1.1875 L 1.625 -3.828125 L 2.578125 -3.828125 L 2.671875 -4.421875 L 1.625 -4.421875 L 1.625 -5.515625 L 0.84375 -5.421875 L 0.84375 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.84375 -3.828125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.421875 0.09375 2.734375 0 3.03125 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 1.15625 -6.546875 C 0.828125 -6.546875 0.609375 -6.3125 0.609375 -6.015625 C 0.609375 -5.71875 0.828125 -5.5 1.15625 -5.5 C 1.484375 -5.5 1.6875 -5.71875 1.6875 -6.015625 C 1.6875 -6.3125 1.484375 -6.546875 1.15625 -6.546875 Z M 1.546875 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.421875 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 3.40625 -6.296875 L 3.40625 -3.984375 C 3.109375 -4.28125 2.734375 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.140625 -0.171875 3.421875 -0.609375 L 3.5 0 L 4.171875 0 L 4.171875 -6.203125 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.390625 -3.90625 C 2.8125 -3.90625 3.125 -3.6875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 2.859375 -4.515625 C 2.28125 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.171875 -3.921875 2.671875 -3.921875 C 3.09375 -3.921875 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.140625 0 L 4.140625 -3.171875 C 4.140625 -4.015625 3.671875 -4.515625 2.859375 -4.515625 Z M 2.859375 -4.515625 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 2.3125 -6.296875 C 1.234375 -6.296875 0.78125 -5.75 0.78125 -5 L 0.78125 -4.421875 L 0.078125 -4.421875 L 0.078125 -3.828125 L 0.78125 -3.828125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.828125 L 3.25 -3.828125 L 3.25 0 L 4.03125 0 L 4.03125 -4.421875 L 1.5625 -4.421875 L 1.5625 -5.015625 C 1.5625 -5.421875 1.71875 -5.65625 2.34375 -5.65625 C 2.6875 -5.65625 3 -5.59375 3.265625 -5.453125 L 3.546875 -5.984375 C 3.1875 -6.171875 2.8125 -6.296875 2.3125 -6.296875 Z M 2.3125 -6.296875 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.09375 0.046875 2.25 -0.046875 L 2.0625 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.5 -0.65625 1.5 -0.890625 L 1.5 -6.296875 L 0.71875 -6.203125 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4.015625 0.40625 -3.3125 C 0.40625 -2.6875 0.78125 -2.28125 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.390625 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.78125 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.09375 -2.390625 2.15625 -2.625 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.6875 1.515625 -3.90625 2.015625 -3.90625 C 2.4375 -3.90625 2.78125 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.34375 2.625 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 1.875 -4.8125 C 1.125 -4.8125 0.59375 -4.5 0.125 -3.921875 L 0.625 -3.53125 C 1.03125 -4.015625 1.390625 -4.1875 1.859375 -4.1875 C 2.40625 -4.1875 2.796875 -3.84375 2.796875 -3.3125 C 2.796875 -2.640625 2.546875 -2.25 0.25 -0.609375 L 0.25 0 L 3.609375 0 L 3.703125 -0.640625 L 1.234375 -0.640625 C 3.40625 -2.015625 3.609375 -2.5625 3.609375 -3.328125 C 3.609375 -4.171875 2.9375 -4.8125 1.875 -4.8125 Z M 1.875 -4.8125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.203125 C 0.484375 -0.8125 1.1875 0.09375 2.453125 0.09375 C 3.703125 0.09375 4.421875 -0.84375 4.421875 -2.21875 C 4.421875 -3.609375 3.71875 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.90625 C 3.1875 -3.90625 3.59375 -3.359375 3.59375 -2.21875 C 3.59375 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.71875 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.453125 -3.90625 Z M 2.453125 -3.90625 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 3.34375 -6.078125 L 3 -6.71875 L 1.328125 -5.765625 L 1.5625 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 1.890625 -7.09375 C 1.078125 -5.921875 0.328125 -4.921875 0.328125 -2.9375 C 0.328125 -0.953125 1.078125 0.046875 1.890625 1.21875 L 2.390625 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.734375 1.625 -5.640625 2.390625 -6.75 Z M 1.890625 -7.09375 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 2.796875 -4.515625 C 2.296875 -4.515625 1.828125 -4.28125 1.5 -3.828125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 1.78125 L 1.546875 1.6875 L 1.546875 -0.40625 C 1.828125 -0.0625 2.21875 0.09375 2.703125 0.09375 C 3.84375 0.09375 4.4375 -0.875 4.4375 -2.21875 C 4.4375 -3.609375 3.984375 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.53125 C 2.109375 -0.53125 1.765625 -0.71875 1.546875 -1.0625 L 1.546875 -3.21875 C 1.78125 -3.578125 2.140625 -3.90625 2.609375 -3.90625 C 3.265625 -3.90625 3.609375 -3.359375 3.609375 -2.21875 C 3.609375 -1.0625 3.21875 -0.53125 2.515625 -0.53125 Z M 2.515625 -0.53125 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
| 63 | +<path d="M 2.484375 -2.359375 L 3.84375 -4.421875 L 2.984375 -4.421875 L 2.046875 -2.796875 L 1.125 -4.421875 L 0.21875 -4.421875 L 1.578125 -2.328125 L 0.046875 0 L 0.921875 0 L 2.015625 -1.875 L 3.09375 0 L 4.03125 0 Z M 2.484375 -2.359375 "/> | |
| 64 | +</g> | |
| 65 | +<g id="glyph-0-20"> | |
| 66 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.21875 -4.203125 3.890625 -3.71875 C 3.71875 -4.234375 3.328125 -4.515625 2.78125 -4.515625 C 2.203125 -4.515625 1.796875 -4.21875 1.5 -3.78125 L 1.4375 -4.421875 L 0.765625 -4.421875 L 0.765625 0 L 1.546875 0 L 1.546875 -3.140625 C 1.84375 -3.609375 2.109375 -3.921875 2.578125 -3.921875 C 2.921875 -3.921875 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.984375 0 L 3.984375 -3.140625 C 4.28125 -3.609375 4.546875 -3.921875 5.015625 -3.921875 C 5.359375 -3.921875 5.640625 -3.71875 5.640625 -3.0625 L 5.640625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.9375 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 67 | +</g> | |
| 68 | +<g id="glyph-0-21"> | |
| 69 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.8125 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.578125 -0.296875 1.578125 -0.484375 C 1.578125 -0.8125 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 70 | +</g> | |
| 71 | +<g id="glyph-0-22"> | |
| 72 | +<path d="M 4.046875 -4.421875 L 3.234375 -4.421875 L 2.078125 -0.6875 L 0.921875 -4.421875 L 0.078125 -4.421875 L 1.609375 0 L 2.546875 0 Z M 4.046875 -4.421875 "/> | |
| 73 | +</g> | |
| 74 | +<g id="glyph-0-23"> | |
| 75 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.984375 3.25 -4.515625 2.1875 -4.515625 C 1.6875 -4.515625 1.203125 -4.421875 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.8125 1.71875 -3.890625 2.03125 -3.890625 C 2.65625 -3.890625 2.96875 -3.65625 2.96875 -3.015625 L 2.96875 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.1875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.75 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.203125 -0.125 3.484375 0.046875 3.921875 0.09375 L 4.109375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.28125 C 1.15625 -1.875 1.5625 -2.1875 2.390625 -2.1875 L 2.96875 -2.1875 L 2.96875 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 76 | +</g> | |
| 77 | +<g id="glyph-0-24"> | |
| 78 | +<path d="M 0.828125 -7.09375 L 0.328125 -6.75 C 1.09375 -5.640625 1.578125 -4.734375 1.578125 -2.9375 C 1.578125 -1.140625 1.09375 -0.234375 0.328125 0.875 L 0.828125 1.21875 C 1.640625 0.046875 2.390625 -0.953125 2.390625 -2.9375 C 2.390625 -4.921875 1.640625 -5.921875 0.828125 -7.09375 Z M 0.828125 -7.09375 "/> | |
| 79 | +</g> | |
| 80 | +<g id="glyph-0-25"> | |
| 81 | +<path d="M 1.875 -4.8125 C 1.234375 -4.8125 0.71875 -4.59375 0.25 -4.15625 L 0.640625 -3.6875 C 1.03125 -4.046875 1.359375 -4.203125 1.796875 -4.203125 C 2.40625 -4.203125 2.765625 -3.875 2.765625 -3.359375 C 2.765625 -2.75 2.3125 -2.40625 1.71875 -2.40625 L 1.4375 -2.40625 L 1.34375 -1.8125 L 1.765625 -1.8125 C 2.515625 -1.8125 2.90625 -1.515625 2.90625 -0.765625 C 2.90625 -0.078125 2.484375 0.359375 1.75 0.359375 C 1.296875 0.359375 0.921875 0.1875 0.546875 -0.203125 L 0.078125 0.21875 C 0.515625 0.734375 1.09375 0.984375 1.765625 0.984375 C 2.96875 0.984375 3.71875 0.25 3.71875 -0.734375 C 3.71875 -1.625 3.1875 -2.0625 2.4375 -2.140625 C 3.078125 -2.296875 3.546875 -2.75 3.546875 -3.421875 C 3.546875 -4.15625 2.953125 -4.8125 1.875 -4.8125 Z M 1.875 -4.8125 "/> | |
| 82 | +</g> | |
| 83 | +<g id="glyph-0-26"> | |
| 84 | +<path d="M 2.265625 -5.875 C 1.203125 -5.875 0.4375 -5.265625 0.4375 -4.375 C 0.4375 -3.46875 1.03125 -3.046875 2.15625 -2.703125 C 3.140625 -2.40625 3.40625 -2.140625 3.40625 -1.578125 C 3.40625 -0.890625 2.84375 -0.546875 2.171875 -0.546875 C 1.53125 -0.546875 1.078125 -0.78125 0.640625 -1.125 L 0.203125 -0.640625 C 0.6875 -0.171875 1.34375 0.09375 2.171875 0.09375 C 3.46875 0.09375 4.234375 -0.609375 4.234375 -1.609375 C 4.234375 -2.71875 3.453125 -3.078125 2.53125 -3.359375 C 1.484375 -3.6875 1.265625 -3.921875 1.265625 -4.40625 C 1.265625 -4.953125 1.71875 -5.234375 2.296875 -5.234375 C 2.78125 -5.234375 3.1875 -5.078125 3.609375 -4.71875 L 4.046875 -5.203125 C 3.5625 -5.640625 3.0625 -5.875 2.265625 -5.875 Z M 2.265625 -5.875 "/> | |
| 85 | +</g> | |
| 86 | +<g id="glyph-0-27"> | |
| 87 | +<path d="M 4.125 -1.5625 C 4.125 -2.640625 3.359375 -2.984375 2.453125 -3.265625 C 1.453125 -3.578125 1.234375 -3.796875 1.234375 -4.265625 C 1.234375 -4.8125 1.671875 -5.0625 2.234375 -5.0625 C 2.703125 -5.0625 3.109375 -4.921875 3.5 -4.5625 L 3.9375 -5.046875 C 3.5625 -5.40625 3.15625 -5.625 2.59375 -5.6875 L 2.59375 -6.90625 L 1.9375 -6.90625 L 1.9375 -5.6875 C 1.046875 -5.59375 0.4375 -5.03125 0.4375 -4.234375 C 0.4375 -3.375 1 -2.953125 2.09375 -2.625 C 3.046875 -2.328125 3.3125 -2.078125 3.3125 -1.53125 C 3.3125 -0.859375 2.765625 -0.53125 2.109375 -0.53125 C 1.5 -0.53125 1.046875 -0.75 0.65625 -1.125 L 0.203125 -0.625 C 0.640625 -0.203125 1.203125 0.0625 1.9375 0.09375 L 1.9375 1.296875 L 2.59375 1.296875 L 2.59375 0.0625 C 3.5625 -0.09375 4.125 -0.71875 4.125 -1.5625 Z M 4.125 -1.5625 "/> | |
| 88 | +</g> | |
| 89 | +<g id="glyph-0-28"> | |
| 90 | +<path d="M 2.828125 -6.765625 L 0.875 0.71875 L 1.546875 0.875 L 3.484375 -6.625 Z M 2.828125 -6.765625 "/> | |
| 91 | +</g> | |
| 92 | +<g id="glyph-0-29"> | |
| 93 | +<path d="M 4.15625 -0.9375 L 3.453125 -0.9375 L 3.453125 -2.453125 L 2.796875 -2.453125 L 2.734375 -0.9375 L 0.984375 -0.9375 L 2.5 -4.546875 L 1.859375 -4.8125 L 0.171875 -0.875 L 0.171875 -0.328125 L 2.734375 -0.328125 L 2.734375 0.890625 L 3.453125 0.890625 L 3.453125 -0.328125 L 4.15625 -0.328125 Z M 4.15625 -0.9375 "/> | |
| 94 | +</g> | |
| 95 | +<g id="glyph-0-30"> | |
| 96 | +<path d="M 3.921875 0 L 4.75 0 L 2.90625 -5.78125 L 1.90625 -5.78125 L 0.046875 0 L 0.859375 0 L 1.296875 -1.453125 L 3.484375 -1.453125 Z M 1.484375 -2.09375 L 2.390625 -5.125 L 3.296875 -2.09375 Z M 1.484375 -2.09375 "/> | |
| 97 | +</g> | |
| 98 | +<g id="glyph-0-31"> | |
| 99 | +<path d="M 4.046875 -4.421875 L 3.25 -4.421875 L 2.09375 -0.5625 L 0.90625 -4.421875 L 0.078125 -4.421875 L 1.5625 0 L 1.828125 0 C 1.578125 0.6875 1.328125 1.03125 0.421875 1.1875 L 0.515625 1.78125 C 1.734375 1.65625 2.25 0.96875 2.5625 0.03125 Z M 4.046875 -4.421875 "/> | |
| 100 | +</g> | |
| 101 | +<g id="glyph-0-32"> | |
| 102 | +<path d="M 3.515625 -4.421875 L 3.453125 -3.921875 C 3.15625 -4.265625 2.765625 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.546875 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.15625 3.40625 -0.59375 L 3.40625 1.6875 L 4.171875 1.78125 L 4.171875 -4.421875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.046875 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.90625 2.390625 -3.90625 C 2.8125 -3.90625 3.125 -3.6875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 103 | +</g> | |
| 104 | +<g id="glyph-0-33"> | |
| 105 | +<path d="M 4.046875 -4.421875 L 3.28125 -4.421875 L 3.28125 -1.265625 C 3.015625 -0.828125 2.65625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.5 -0.734375 1.5 -1.328125 L 1.5 -4.421875 L 0.71875 -4.421875 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 3 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.421875 "/> | |
| 106 | +</g> | |
| 107 | +<g id="glyph-0-34"> | |
| 108 | +<path d="M 2.796875 -4.515625 C 2.25 -4.515625 1.84375 -4.28125 1.546875 -3.875 L 1.546875 -6.296875 L 0.765625 -6.203125 L 0.765625 0 L 1.453125 0 L 1.53125 -0.484375 C 1.828125 -0.125 2.21875 0.09375 2.703125 0.09375 C 3.78125 0.09375 4.4375 -0.828125 4.4375 -2.21875 C 4.4375 -3.6875 3.796875 -4.515625 2.796875 -4.515625 Z M 2.515625 -0.515625 C 2.125 -0.515625 1.765625 -0.75 1.546875 -1.109375 L 1.546875 -3.21875 C 1.765625 -3.578125 2.09375 -3.90625 2.578125 -3.90625 C 3.203125 -3.90625 3.609375 -3.46875 3.609375 -2.21875 C 3.609375 -1 3.15625 -0.515625 2.515625 -0.515625 Z M 2.515625 -0.515625 "/> | |
| 109 | +</g> | |
| 110 | +<g id="glyph-0-35"> | |
| 111 | +<path d="M 3.4375 -5.765625 L 1.765625 -6.71875 L 1.421875 -6.078125 L 3.203125 -5.359375 Z M 4.140625 -2.34375 C 4.140625 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.546875 0.484375 -2.171875 C 0.484375 -0.765625 1.203125 0.09375 2.4375 0.09375 C 3.046875 0.09375 3.546875 -0.109375 3.984375 -0.453125 L 3.640625 -0.921875 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.859375 -0.53125 1.375 -0.921875 1.296875 -1.953125 L 4.125 -1.953125 C 4.125 -2.046875 4.140625 -2.1875 4.140625 -2.34375 Z M 3.375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.75 -3.90625 2.328125 -3.90625 C 3.03125 -3.90625 3.375 -3.4375 3.375 -2.5625 Z M 3.375 -2.515625 "/> | |
| 112 | +</g> | |
| 113 | +<g id="glyph-0-36"> | |
| 114 | +<path d="M 3.578125 -4.734375 L 0.546875 -4.734375 L 0.546875 -1.90625 L 1.15625 -1.90625 C 1.390625 -2.015625 1.65625 -2.09375 1.953125 -2.09375 C 2.53125 -2.09375 2.96875 -1.796875 2.96875 -0.9375 C 2.96875 -0.109375 2.53125 0.359375 1.828125 0.359375 C 1.328125 0.359375 0.96875 0.171875 0.625 -0.171875 L 0.171875 0.265625 C 0.609375 0.71875 1.109375 0.984375 1.828125 0.984375 C 3 0.984375 3.78125 0.203125 3.78125 -0.921875 C 3.78125 -2.03125 3.125 -2.6875 2.1875 -2.6875 C 1.875 -2.6875 1.578125 -2.640625 1.28125 -2.46875 L 1.28125 -4.125 L 3.46875 -4.125 Z M 3.578125 -4.734375 "/> | |
| 115 | +</g> | |
| 116 | +<g id="glyph-0-37"> | |
| 117 | +<path d="M 1.171875 -6.546875 C 0.84375 -6.546875 0.625 -6.3125 0.625 -6.015625 C 0.625 -5.71875 0.84375 -5.5 1.171875 -5.5 C 1.5 -5.5 1.71875 -5.71875 1.71875 -6.015625 C 1.71875 -6.3125 1.5 -6.546875 1.171875 -6.546875 Z M 1.546875 -4.421875 L 0.78125 -4.421875 L 0.78125 -0.21875 C 0.78125 0.734375 0.5 0.953125 -0.078125 1.21875 L 0.15625 1.78125 C 1.09375 1.359375 1.546875 0.984375 1.546875 -0.265625 Z M 1.546875 -4.421875 "/> | |
| 118 | +</g> | |
| 119 | +<g id="glyph-0-38"> | |
| 120 | +<path d="M 2.625 -3.6875 C 2.0625 -3.6875 1.609375 -3.46875 1.234375 -2.9375 C 1.265625 -4.234375 1.765625 -5.078125 2.625 -5.078125 C 2.9375 -5.078125 3.21875 -5 3.5 -4.84375 L 3.796875 -5.359375 C 3.46875 -5.578125 3.09375 -5.703125 2.625 -5.703125 C 1.265625 -5.703125 0.46875 -4.46875 0.46875 -2.640625 C 0.46875 -1.03125 0.984375 0.09375 2.390625 0.09375 C 3.375 0.09375 4.203125 -0.671875 4.203125 -1.90625 C 4.203125 -3.109375 3.453125 -3.6875 2.625 -3.6875 Z M 2.390625 -0.515625 C 1.609375 -0.515625 1.28125 -1.078125 1.234375 -2.296875 C 1.53125 -2.765625 1.953125 -3.078125 2.484375 -3.078125 C 3.015625 -3.078125 3.421875 -2.765625 3.421875 -1.875 C 3.421875 -1.0625 3.046875 -0.515625 2.390625 -0.515625 Z M 2.390625 -0.515625 "/> | |
| 121 | +</g> | |
| 122 | +<g id="glyph-0-39"> | |
| 123 | +<path d="M 2.859375 -5.875 C 1.546875 -5.875 0.46875 -4.84375 0.46875 -2.890625 C 0.46875 -0.953125 1.484375 0.09375 2.875 0.09375 C 3.65625 0.09375 4.21875 -0.21875 4.53125 -0.546875 L 4.140625 -1.046875 C 3.8125 -0.8125 3.453125 -0.578125 2.90625 -0.578125 C 2 -0.578125 1.3125 -1.21875 1.3125 -2.890625 C 1.3125 -4.640625 2.03125 -5.234375 2.90625 -5.234375 C 3.3125 -5.234375 3.671875 -5.09375 4.03125 -4.796875 L 4.46875 -5.3125 C 4 -5.6875 3.59375 -5.875 2.859375 -5.875 Z M 2.859375 -5.875 "/> | |
| 124 | +</g> | |
| 125 | +<g id="glyph-1-0"> | |
| 126 | +<path d="M 4.359375 -4.453125 L 3 -4.453125 L 2.1875 -1 L 1.390625 -4.453125 L -0.046875 -4.453125 L 1.390625 0 L 2.953125 0 Z M 4.359375 -4.453125 "/> | |
| 127 | +</g> | |
| 128 | +<g id="glyph-1-1"> | |
| 129 | +<path d="M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.6875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 130 | +</g> | |
| 131 | +<g id="glyph-1-2"> | |
| 132 | +<path d="M 3.125 -4.59375 C 2.5625 -4.59375 2.125 -4.359375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.0625 -3.421875 2.3125 -3.625 2.609375 -3.625 C 2.875 -3.625 3.03125 -3.5 3.03125 -3.03125 L 3.03125 0 L 4.359375 0 L 4.359375 -3.25 C 4.359375 -4.109375 3.890625 -4.59375 3.125 -4.59375 Z M 3.125 -4.59375 "/> | |
| 133 | +</g> | |
| 134 | +<g id="glyph-1-3"> | |
| 135 | +<path d="M 2.875 -1.046875 C 2.6875 -0.953125 2.546875 -0.90625 2.390625 -0.90625 C 2.109375 -0.90625 1.96875 -1.0625 1.96875 -1.484375 L 1.96875 -3.53125 L 2.859375 -3.53125 L 3 -4.453125 L 1.96875 -4.453125 L 1.96875 -5.578125 L 0.640625 -5.421875 L 0.640625 -4.453125 L 0.015625 -4.453125 L 0.015625 -3.53125 L 0.640625 -3.53125 L 0.640625 -1.46875 C 0.640625 -0.421875 1.125 0.140625 2.109375 0.140625 C 2.515625 0.140625 2.984375 0.03125 3.3125 -0.203125 Z M 2.875 -1.046875 "/> | |
| 136 | +</g> | |
| 137 | +<g id="glyph-1-4"> | |
| 138 | +<path d="M 2.09375 -4.59375 C 0.96875 -4.59375 0.265625 -4 0.265625 -3.234375 C 0.265625 -2.546875 0.703125 -2.09375 1.578125 -1.84375 C 2.390625 -1.625 2.53125 -1.53125 2.53125 -1.21875 C 2.53125 -0.953125 2.28125 -0.8125 1.875 -0.8125 C 1.4375 -0.8125 1.03125 -0.984375 0.703125 -1.234375 L 0.046875 -0.515625 C 0.484375 -0.125 1.140625 0.140625 1.90625 0.140625 C 3.015625 0.140625 3.890625 -0.40625 3.890625 -1.328125 C 3.890625 -2.125 3.390625 -2.484375 2.515625 -2.75 C 1.71875 -2.984375 1.609375 -3.078125 1.609375 -3.3125 C 1.609375 -3.515625 1.78125 -3.65625 2.140625 -3.65625 C 2.53125 -3.65625 2.890625 -3.53125 3.234375 -3.3125 L 3.71875 -4.046875 C 3.3125 -4.390625 2.734375 -4.59375 2.09375 -4.59375 Z M 2.09375 -4.59375 "/> | |
| 139 | +</g> | |
| 140 | +<g id="glyph-1-5"> | |
| 141 | +<path d="M 2.453125 -4.59375 C 1.109375 -4.59375 0.265625 -3.609375 0.265625 -2.1875 C 0.265625 -0.78125 1.109375 0.140625 2.46875 0.140625 C 3.09375 0.140625 3.5625 -0.0625 3.984375 -0.390625 L 3.390625 -1.203125 C 3.078125 -1 2.859375 -0.90625 2.546875 -0.90625 C 2.015625 -0.90625 1.65625 -1.203125 1.65625 -2.203125 C 1.65625 -3.203125 1.984375 -3.578125 2.5625 -3.578125 C 2.859375 -3.578125 3.125 -3.484375 3.40625 -3.265625 L 3.984375 -4.046875 C 3.546875 -4.40625 3.078125 -4.59375 2.453125 -4.59375 Z M 2.453125 -4.59375 "/> | |
| 142 | +</g> | |
| 143 | +<g id="glyph-1-6"> | |
| 144 | +<path d="M 2.453125 -4.59375 C 1.09375 -4.59375 0.265625 -3.65625 0.265625 -2.234375 C 0.265625 -0.734375 1.09375 0.140625 2.453125 0.140625 C 3.8125 0.140625 4.625 -0.796875 4.625 -2.21875 C 4.625 -3.71875 3.8125 -4.59375 2.453125 -4.59375 Z M 2.453125 -3.625 C 2.984375 -3.625 3.25 -3.21875 3.25 -2.21875 C 3.25 -1.265625 2.984375 -0.828125 2.453125 -0.828125 C 1.90625 -0.828125 1.640625 -1.234375 1.640625 -2.234375 C 1.640625 -3.203125 1.90625 -3.625 2.453125 -3.625 Z M 2.453125 -3.625 "/> | |
| 145 | +</g> | |
| 146 | +<g id="glyph-1-7"> | |
| 147 | +<path d="M 5.4375 -4.59375 C 4.859375 -4.59375 4.453125 -4.359375 4.109375 -3.890625 C 3.921875 -4.34375 3.546875 -4.59375 3.046875 -4.59375 C 2.515625 -4.59375 2.09375 -4.375 1.765625 -3.921875 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -3.046875 C 2.03125 -3.421875 2.234375 -3.625 2.515625 -3.625 C 2.71875 -3.625 2.890625 -3.5 2.890625 -3.03125 L 2.890625 0 L 4.21875 0 L 4.21875 -3.046875 C 4.40625 -3.421875 4.609375 -3.625 4.90625 -3.625 C 5.09375 -3.625 5.265625 -3.5 5.265625 -3.03125 L 5.265625 0 L 6.59375 0 L 6.59375 -3.25 C 6.59375 -4.109375 6.125 -4.59375 5.4375 -4.59375 Z M 5.4375 -4.59375 "/> | |
| 148 | +</g> | |
| 149 | +<g id="glyph-1-8"> | |
| 150 | +<path d="M 3.03125 -4.59375 C 2.578125 -4.59375 2.109375 -4.421875 1.75 -3.953125 L 1.671875 -4.453125 L 0.515625 -4.453125 L 0.515625 1.859375 L 1.84375 1.71875 L 1.84375 -0.3125 C 2.109375 -0.015625 2.484375 0.140625 2.921875 0.140625 C 4.015625 0.140625 4.6875 -0.859375 4.6875 -2.234375 C 4.6875 -3.6875 4.171875 -4.59375 3.03125 -4.59375 Z M 2.515625 -0.828125 C 2.234375 -0.828125 2.015625 -0.953125 1.84375 -1.21875 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.59375 -3.625 C 3.046875 -3.625 3.3125 -3.328125 3.3125 -2.21875 C 3.3125 -1.21875 3 -0.828125 2.515625 -0.828125 Z M 2.515625 -0.828125 "/> | |
| 151 | +</g> | |
| 152 | +<g id="glyph-1-9"> | |
| 153 | +<path d="M 4.046875 -1.296875 L 4.046875 -3.015625 C 4.046875 -4.046875 3.484375 -4.59375 2.203125 -4.59375 C 1.6875 -4.59375 1.078125 -4.484375 0.515625 -4.265625 L 0.828125 -3.390625 C 1.265625 -3.546875 1.703125 -3.640625 1.984375 -3.640625 C 2.53125 -3.640625 2.75 -3.46875 2.75 -2.9375 L 2.75 -2.75 L 2.296875 -2.75 C 0.953125 -2.75 0.203125 -2.21875 0.203125 -1.25 C 0.203125 -0.4375 0.765625 0.140625 1.65625 0.140625 C 2.1875 0.140625 2.671875 -0.03125 3 -0.515625 C 3.203125 -0.078125 3.546875 0.078125 4.0625 0.125 L 4.34375 -0.75 C 4.140625 -0.828125 4.046875 -0.953125 4.046875 -1.296875 Z M 2.03125 -0.8125 C 1.71875 -0.8125 1.53125 -1.015625 1.53125 -1.375 C 1.53125 -1.8125 1.8125 -2.015625 2.421875 -2.015625 L 2.75 -2.015625 L 2.75 -1.21875 C 2.578125 -0.96875 2.34375 -0.8125 2.03125 -0.8125 Z M 2.03125 -0.8125 "/> | |
| 154 | +</g> | |
| 155 | +<g id="glyph-1-10"> | |
| 156 | +<path d="M 2.921875 -4.578125 C 2.421875 -4.578125 1.984375 -4.21875 1.78125 -3.59375 L 1.65625 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 L 1.84375 -2.234375 C 1.984375 -2.90625 2.21875 -3.296875 2.765625 -3.296875 C 2.90625 -3.296875 3.015625 -3.265625 3.15625 -3.234375 L 3.375 -4.515625 C 3.21875 -4.5625 3.09375 -4.578125 2.921875 -4.578125 Z M 2.921875 -4.578125 "/> | |
| 157 | +</g> | |
| 158 | +<g id="glyph-1-11"> | |
| 159 | +<path d="M 3.03125 -4.59375 C 2.546875 -4.59375 2.109375 -4.375 1.84375 -4 L 1.84375 -6.375 L 0.515625 -6.21875 L 0.515625 0 L 1.6875 0 L 1.75 -0.421875 C 2.015625 -0.078125 2.421875 0.140625 2.921875 0.140625 C 4.03125 0.140625 4.6875 -0.84375 4.6875 -2.21875 C 4.6875 -3.71875 4.109375 -4.59375 3.03125 -4.59375 Z M 2.53125 -0.828125 C 2.25 -0.828125 2 -0.984375 1.84375 -1.25 L 1.84375 -3.109375 C 2.03125 -3.4375 2.296875 -3.625 2.59375 -3.625 C 3.015625 -3.625 3.3125 -3.359375 3.3125 -2.21875 C 3.3125 -1.1875 3 -0.828125 2.53125 -0.828125 Z M 2.53125 -0.828125 "/> | |
| 160 | +</g> | |
| 161 | +<g id="glyph-1-12"> | |
| 162 | +<path d="M 1.671875 0.140625 C 2 0.140625 2.296875 0.078125 2.484375 -0.015625 L 2.234375 -0.953125 C 2.171875 -0.921875 2.09375 -0.90625 2.015625 -0.90625 C 1.859375 -0.90625 1.78125 -1 1.78125 -1.1875 L 1.78125 -6.375 L 0.453125 -6.21875 L 0.453125 -1.125 C 0.453125 -0.3125 0.90625 0.140625 1.671875 0.140625 Z M 1.671875 0.140625 "/> | |
| 163 | +</g> | |
| 164 | +<g id="glyph-1-13"> | |
| 165 | +<path d="M 4.90625 -5.8125 L 3.484375 -5.8125 L 2.453125 -1.078125 L 1.34375 -5.8125 L -0.109375 -5.8125 L 1.5625 0 L 3.28125 0 Z M 4.90625 -5.8125 "/> | |
| 166 | +</g> | |
| 167 | +<g id="glyph-1-14"> | |
| 168 | +<path d="M 3.5 -6.015625 L 2.984375 -7 L 1.15625 -5.90625 L 1.515625 -5.21875 Z M 4.40625 -2.3125 C 4.40625 -3.765625 3.625 -4.59375 2.34375 -4.59375 C 1 -4.59375 0.265625 -3.546875 0.265625 -2.203125 C 0.265625 -0.8125 1.03125 0.140625 2.515625 0.140625 C 3.234375 0.140625 3.796875 -0.125 4.25 -0.484375 L 3.703125 -1.21875 C 3.3125 -0.953125 3 -0.828125 2.640625 -0.828125 C 2.09375 -0.828125 1.71875 -1.046875 1.625 -1.84375 L 4.375 -1.84375 C 4.390625 -1.96875 4.40625 -2.171875 4.40625 -2.3125 Z M 3.109375 -2.640625 L 1.625 -2.640625 C 1.671875 -3.4375 1.9375 -3.71875 2.390625 -3.71875 C 2.90625 -3.71875 3.09375 -3.296875 3.109375 -2.6875 Z M 3.109375 -2.640625 "/> | |
| 169 | +</g> | |
| 170 | +<g id="glyph-1-15"> | |
| 171 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.046875 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.953125 -5.625 1.953125 -6.046875 C 1.953125 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.453125 L 0.515625 -4.453125 L 0.515625 0 L 1.84375 0 Z M 1.84375 -4.453125 "/> | |
| 172 | +</g> | |
| 173 | +<g id="glyph-1-16"> | |
| 174 | +<path d="M 2.5625 -6.375 C 1.234375 -6.375 0.703125 -5.703125 0.703125 -4.84375 L 0.703125 -4.453125 L 0.03125 -4.453125 L 0.03125 -3.53125 L 0.703125 -3.53125 L 0.703125 0 L 2.03125 0 L 2.03125 -3.53125 L 3.1875 -3.53125 L 3.1875 0 L 4.5 0 L 4.5 -4.453125 L 2.03125 -4.453125 L 2.03125 -4.796875 C 2.03125 -5.21875 2.1875 -5.390625 2.703125 -5.390625 C 3.0625 -5.390625 3.390625 -5.296875 3.671875 -5.1875 L 4.03125 -6.03125 C 3.671875 -6.203125 3.1875 -6.375 2.5625 -6.375 Z M 2.5625 -6.375 "/> | |
| 175 | +</g> | |
| 176 | +<g id="glyph-1-17"> | |
| 177 | +<path d="M 4.25 -4.453125 L 2.921875 -4.453125 L 2.921875 -1.359375 C 2.734375 -1.03125 2.484375 -0.84375 2.203125 -0.84375 C 1.9375 -0.84375 1.78125 -0.96875 1.78125 -1.421875 L 1.78125 -4.453125 L 0.453125 -4.453125 L 0.453125 -1.265625 C 0.453125 -0.390625 0.859375 0.140625 1.6875 0.140625 C 2.296875 0.140625 2.734375 -0.09375 3.046875 -0.5625 L 3.109375 0 L 4.25 0 Z M 4.25 -4.453125 "/> | |
| 178 | +</g> | |
| 179 | +<g id="glyph-1-18"> | |
| 180 | +<path d="M 3.140625 -6.375 L 3.140625 -4.171875 C 2.890625 -4.4375 2.53125 -4.59375 2.09375 -4.59375 C 0.984375 -4.59375 0.265625 -3.609375 0.265625 -2.234375 C 0.265625 -0.796875 0.828125 0.140625 1.96875 0.140625 C 2.5625 0.140625 2.96875 -0.15625 3.234375 -0.515625 L 3.296875 0 L 4.46875 0 L 4.46875 -6.21875 Z M 2.375 -0.828125 C 1.953125 -0.828125 1.640625 -1.125 1.640625 -2.234375 C 1.640625 -3.234375 1.984375 -3.640625 2.453125 -3.640625 C 2.75 -3.640625 2.9375 -3.484375 3.140625 -3.25 L 3.140625 -1.328125 C 2.9375 -1 2.6875 -0.828125 2.375 -0.828125 Z M 2.375 -0.828125 "/> | |
| 181 | +</g> | |
| 182 | +<g id="glyph-1-19"> | |
| 183 | +<path d="M 0.375 -2.109375 L 3.046875 -2.109375 L 3.046875 -3.140625 L 0.375 -3.140625 Z M 0.375 -2.109375 "/> | |
| 184 | +</g> | |
| 185 | +<g id="glyph-1-20"> | |
| 186 | +<path d="M 1.171875 -6.8125 C 0.71875 -6.8125 0.390625 -6.484375 0.390625 -6.046875 C 0.390625 -5.625 0.71875 -5.296875 1.171875 -5.296875 C 1.640625 -5.296875 1.96875 -5.625 1.96875 -6.046875 C 1.96875 -6.484375 1.640625 -6.8125 1.171875 -6.8125 Z M 1.84375 -4.453125 L 0.515625 -4.453125 L 0.515625 -0.421875 C 0.515625 0.390625 0.171875 0.625 -0.390625 0.890625 L 0.046875 1.859375 C 1.09375 1.484375 1.84375 0.953125 1.84375 -0.5 Z M 1.84375 -4.453125 "/> | |
| 187 | +</g> | |
| 188 | +<g id="glyph-1-21"> | |
| 189 | +<path d="M 3.65625 0 L 5.203125 0 L 3.71875 -2.46875 C 4.484375 -2.8125 4.84375 -3.28125 4.84375 -4.046875 C 4.84375 -5.25 4.03125 -5.8125 2.453125 -5.8125 L 0.546875 -5.8125 L 0.546875 0 L 1.921875 0 L 1.921875 -2.21875 L 2.453125 -2.21875 Z M 1.921875 -4.84375 L 2.421875 -4.84375 C 3.09375 -4.84375 3.421875 -4.609375 3.421875 -4.046875 C 3.421875 -3.4375 3.109375 -3.171875 2.5 -3.171875 L 1.921875 -3.171875 Z M 1.921875 -4.84375 "/> | |
| 190 | +</g> | |
| 191 | +<g id="glyph-2-0"> | |
| 192 | +<path d="M 3.203125 -1.109375 L 2.984375 -1.109375 C 2.96875 -1.03125 2.90625 -0.640625 2.828125 -0.578125 C 2.78125 -0.53125 2.296875 -0.53125 2.21875 -0.53125 L 1.09375 -0.53125 L 1.859375 -1.15625 C 2.0625 -1.3125 2.59375 -1.703125 2.78125 -1.875 C 2.953125 -2.046875 3.203125 -2.359375 3.203125 -2.78125 C 3.203125 -3.53125 2.53125 -3.953125 1.734375 -3.953125 C 0.96875 -3.953125 0.421875 -3.453125 0.421875 -2.890625 C 0.421875 -2.59375 0.6875 -2.546875 0.75 -2.546875 C 0.90625 -2.546875 1.078125 -2.65625 1.078125 -2.875 C 1.078125 -3 1 -3.203125 0.734375 -3.203125 C 0.875 -3.5 1.234375 -3.734375 1.640625 -3.734375 C 2.265625 -3.734375 2.59375 -3.265625 2.59375 -2.78125 C 2.59375 -2.359375 2.328125 -1.921875 1.90625 -1.546875 L 0.5 -0.25 C 0.4375 -0.1875 0.421875 -0.1875 0.421875 0 L 3.015625 0 Z M 3.203125 -1.109375 "/> | |
| 193 | +</g> | |
| 194 | +</g> | |
| 195 | +<clipPath id="clip-0"> | |
| 196 | +<path clip-rule="nonzero" d="M 0.25 0 L 313.234375 0 L 313.234375 28 L 0.25 28 Z M 0.25 0 "/> | |
| 197 | +</clipPath> | |
| 198 | +<clipPath id="clip-1"> | |
| 199 | +<path clip-rule="nonzero" d="M 0.25 24 L 313.234375 24 L 313.234375 63 L 0.25 63 Z M 0.25 24 "/> | |
| 200 | +</clipPath> | |
| 201 | +<clipPath id="clip-2"> | |
| 202 | +<path clip-rule="nonzero" d="M 0.25 59 L 313.234375 59 L 313.234375 97 L 0.25 97 Z M 0.25 59 "/> | |
| 203 | +</clipPath> | |
| 204 | +<clipPath id="clip-3"> | |
| 205 | +<path clip-rule="nonzero" d="M 0.25 93 L 313.234375 93 L 313.234375 122 L 0.25 122 Z M 0.25 93 "/> | |
| 206 | +</clipPath> | |
| 207 | +<clipPath id="clip-4"> | |
| 208 | +<path clip-rule="nonzero" d="M 0.25 118 L 313.234375 118 L 313.234375 147 L 0.25 147 Z M 0.25 118 "/> | |
| 209 | +</clipPath> | |
| 210 | +<clipPath id="clip-5"> | |
| 211 | +<path clip-rule="nonzero" d="M 0.25 143 L 313.234375 143 L 313.234375 171.617188 L 0.25 171.617188 Z M 0.25 143 "/> | |
| 212 | +</clipPath> | |
| 213 | +</defs> | |
| 214 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.109375 5.160156 L 9.378906 5.160156 C 7.1875 5.160156 5.410156 6.9375 5.410156 9.128906 L 5.410156 18.132812 C 5.410156 20.324219 7.1875 22.101562 9.378906 22.101562 L 304.109375 22.101562 C 306.300781 22.101562 308.078125 20.324219 308.078125 18.132812 L 308.078125 9.128906 C 308.078125 6.9375 306.300781 5.160156 304.109375 5.160156 Z M 304.109375 5.160156 "/> | |
| 215 | +<g clip-path="url(#clip-0)"> | |
| 216 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.95769 8.50412 L -147.956435 8.50412 C -150.156643 8.50412 -151.941124 6.719639 -151.941124 4.519431 L -151.941124 -4.520635 C -151.941124 -6.720842 -150.156643 -8.505324 -147.956435 -8.505324 L 147.95769 -8.505324 C 150.157897 -8.505324 151.942379 -6.720842 151.942379 -4.520635 L 151.942379 4.519431 C 151.942379 6.719639 150.157897 8.50412 147.95769 8.50412 Z M 147.95769 8.50412 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 217 | +</g> | |
| 218 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 219 | +<use xlink:href="#glyph-0-0" x="60.301832" y="16.00572"/> | |
| 220 | +<use xlink:href="#glyph-0-1" x="63.852784" y="16.00572"/> | |
| 221 | +</g> | |
| 222 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 223 | +<use xlink:href="#glyph-0-2" x="68.66294" y="16.00572"/> | |
| 224 | +</g> | |
| 225 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 226 | +<use xlink:href="#glyph-0-3" x="73.699751" y="16.00572"/> | |
| 227 | +<use xlink:href="#glyph-0-4" x="78.266461" y="16.00572"/> | |
| 228 | +<use xlink:href="#glyph-0-5" x="82.279121" y="16.00572"/> | |
| 229 | +<use xlink:href="#glyph-0-3" x="87.139644" y="16.00572"/> | |
| 230 | +<use xlink:href="#glyph-0-6" x="91.706354" y="16.00572"/> | |
| 231 | +</g> | |
| 232 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 233 | +<use xlink:href="#glyph-0-4" x="94.753625" y="16.00572"/> | |
| 234 | +<use xlink:href="#glyph-0-5" x="98.766285" y="16.00572"/> | |
| 235 | +<use xlink:href="#glyph-0-3" x="103.626809" y="16.00572"/> | |
| 236 | +<use xlink:href="#glyph-0-6" x="108.193518" y="16.00572"/> | |
| 237 | +</g> | |
| 238 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 239 | +<use xlink:href="#glyph-0-3" x="114.212508" y="16.00572"/> | |
| 240 | +<use xlink:href="#glyph-0-7" x="118.779217" y="16.00572"/> | |
| 241 | +</g> | |
| 242 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 243 | +<use xlink:href="#glyph-0-8" x="124.60513" y="16.00572"/> | |
| 244 | +<use xlink:href="#glyph-0-9" x="126.922063" y="16.00572"/> | |
| 245 | +<use xlink:href="#glyph-0-3" x="131.874928" y="16.00572"/> | |
| 246 | +<use xlink:href="#glyph-0-10" x="136.441638" y="16.00572"/> | |
| 247 | +<use xlink:href="#glyph-0-7" x="141.302161" y="16.00572"/> | |
| 248 | +<use xlink:href="#glyph-0-8" x="144.332643" y="16.00572"/> | |
| 249 | +<use xlink:href="#glyph-0-11" x="146.649576" y="16.00572"/> | |
| 250 | +<use xlink:href="#glyph-0-3" x="151.451337" y="16.00572"/> | |
| 251 | +<use xlink:href="#glyph-0-6" x="156.018046" y="16.00572"/> | |
| 252 | +</g> | |
| 253 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 254 | +<use xlink:href="#glyph-0-12" x="162.028642" y="16.00572"/> | |
| 255 | +</g> | |
| 256 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 257 | +<use xlink:href="#glyph-0-3" x="164.454706" y="16.00572"/> | |
| 258 | +<use xlink:href="#glyph-0-13" x="169.021416" y="16.00572"/> | |
| 259 | +</g> | |
| 260 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 261 | +<use xlink:href="#glyph-1-0" x="175.737165" y="16.00572"/> | |
| 262 | +</g> | |
| 263 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 264 | +<use xlink:href="#glyph-1-1" x="179.976481" y="16.00572"/> | |
| 265 | +<use xlink:href="#glyph-1-2" x="184.627138" y="16.00572"/> | |
| 266 | +<use xlink:href="#glyph-1-3" x="189.437293" y="16.00572"/> | |
| 267 | +</g> | |
| 268 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 269 | +<use xlink:href="#glyph-1-1" x="192.526537" y="16.00572"/> | |
| 270 | +<use xlink:href="#glyph-1-4" x="197.177194" y="16.00572"/> | |
| 271 | +</g> | |
| 272 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 273 | +<use xlink:href="#glyph-1-5" x="204.010468" y="16.00572"/> | |
| 274 | +</g> | |
| 275 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 276 | +<use xlink:href="#glyph-1-6" x="207.905603" y="16.00572"/> | |
| 277 | +<use xlink:href="#glyph-1-7" x="212.8081" y="16.00572"/> | |
| 278 | +<use xlink:href="#glyph-1-8" x="219.868031" y="16.00572"/> | |
| 279 | +</g> | |
| 280 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 281 | +<use xlink:href="#glyph-1-9" x="224.762133" y="16.00572"/> | |
| 282 | +<use xlink:href="#glyph-1-10" x="229.345632" y="16.00572"/> | |
| 283 | +</g> | |
| 284 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 285 | +<use xlink:href="#glyph-1-9" x="232.485245" y="16.00572"/> | |
| 286 | +<use xlink:href="#glyph-1-11" x="237.068744" y="16.00572"/> | |
| 287 | +<use xlink:href="#glyph-1-12" x="242.030003" y="16.00572"/> | |
| 288 | +</g> | |
| 289 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 290 | +<use xlink:href="#glyph-1-1" x="244.506436" y="16.00572"/> | |
| 291 | +<use xlink:href="#glyph-1-4" x="249.157092" y="16.00572"/> | |
| 292 | +</g> | |
| 293 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.109375 30.402344 L 9.378906 30.402344 C 7.1875 30.402344 5.410156 32.179688 5.410156 34.371094 L 5.410156 52.449219 C 5.410156 54.640625 7.1875 56.417969 9.378906 56.417969 L 304.109375 56.417969 C 306.300781 56.417969 308.078125 54.640625 308.078125 52.449219 L 308.078125 34.371094 C 308.078125 32.179688 306.300781 30.402344 304.109375 30.402344 Z M 304.109375 30.402344 "/> | |
| 294 | +<g clip-path="url(#clip-1)"> | |
| 295 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.95769 -16.839442 L -147.956435 -16.839442 C -150.156643 -16.839442 -151.941124 -18.623923 -151.941124 -20.82413 L -151.941124 -38.974858 C -151.941124 -41.175065 -150.156643 -42.959547 -147.956435 -42.959547 L 147.95769 -42.959547 C 150.157897 -42.959547 151.942379 -41.175065 151.942379 -38.974858 L 151.942379 -20.82413 C 151.942379 -18.623923 150.157897 -16.839442 147.95769 -16.839442 Z M 147.95769 -16.839442 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 296 | +</g> | |
| 297 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 298 | +<use xlink:href="#glyph-0-14" x="84.62714" y="40.599948"/> | |
| 299 | +<use xlink:href="#glyph-0-1" x="88.790904" y="40.599948"/> | |
| 300 | +</g> | |
| 301 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 302 | +<use xlink:href="#glyph-1-13" x="93.60106" y="40.599948"/> | |
| 303 | +</g> | |
| 304 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 305 | +<use xlink:href="#glyph-1-14" x="98.176164" y="40.599948"/> | |
| 306 | +<use xlink:href="#glyph-1-10" x="102.82682" y="40.599948"/> | |
| 307 | +<use xlink:href="#glyph-1-15" x="106.184695" y="40.599948"/> | |
| 308 | +<use xlink:href="#glyph-1-16" x="108.535207" y="40.599948"/> | |
| 309 | +<use xlink:href="#glyph-1-1" x="113.555229" y="40.599948"/> | |
| 310 | +<use xlink:href="#glyph-1-10" x="118.205886" y="40.599948"/> | |
| 311 | +</g> | |
| 312 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 313 | +<use xlink:href="#glyph-0-12" x="124.384375" y="40.599948"/> | |
| 314 | +</g> | |
| 315 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 316 | +<use xlink:href="#glyph-0-3" x="126.810439" y="40.599948"/> | |
| 317 | +<use xlink:href="#glyph-0-13" x="131.377149" y="40.599948"/> | |
| 318 | +</g> | |
| 319 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 320 | +<use xlink:href="#glyph-0-9" x="138.092898" y="40.599948"/> | |
| 321 | +<use xlink:href="#glyph-0-15" x="143.045763" y="40.599948"/> | |
| 322 | +<use xlink:href="#glyph-0-10" x="147.94826" y="40.599948"/> | |
| 323 | +<use xlink:href="#glyph-0-10" x="152.808783" y="40.599948"/> | |
| 324 | +<use xlink:href="#glyph-0-16" x="157.669306" y="40.599948"/> | |
| 325 | +<use xlink:href="#glyph-0-3" x="162.236016" y="40.599948"/> | |
| 326 | +<use xlink:href="#glyph-0-13" x="166.802725" y="40.599948"/> | |
| 327 | +</g> | |
| 328 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 329 | +<use xlink:href="#glyph-0-17" x="173.518474" y="40.599948"/> | |
| 330 | +<use xlink:href="#glyph-0-18" x="176.238353" y="40.599948"/> | |
| 331 | +<use xlink:href="#glyph-0-6" x="181.157639" y="40.599948"/> | |
| 332 | +<use xlink:href="#glyph-0-8" x="184.372804" y="40.599948"/> | |
| 333 | +<use xlink:href="#glyph-0-19" x="186.689737" y="40.599948"/> | |
| 334 | +</g> | |
| 335 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 336 | +<use xlink:href="#glyph-0-4" x="193.556591" y="40.599948"/> | |
| 337 | +</g> | |
| 338 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 339 | +<use xlink:href="#glyph-0-15" x="197.443331" y="40.599948"/> | |
| 340 | +<use xlink:href="#glyph-0-10" x="202.345827" y="40.599948"/> | |
| 341 | +<use xlink:href="#glyph-0-11" x="207.206351" y="40.599948"/> | |
| 342 | +<use xlink:href="#glyph-0-6" x="212.008111" y="40.599948"/> | |
| 343 | +<use xlink:href="#glyph-0-20" x="215.223276" y="40.599948"/> | |
| 344 | +<use xlink:href="#glyph-0-16" x="222.35876" y="40.599948"/> | |
| 345 | +</g> | |
| 346 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 347 | +<use xlink:href="#glyph-0-21" x="226.841522" y="40.599948"/> | |
| 348 | +</g> | |
| 349 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 350 | +<use xlink:href="#glyph-0-4" x="76.995788" y="51.515112"/> | |
| 351 | +</g> | |
| 352 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 353 | +<use xlink:href="#glyph-0-15" x="80.882528" y="51.515112"/> | |
| 354 | +<use xlink:href="#glyph-0-10" x="85.785025" y="51.515112"/> | |
| 355 | +<use xlink:href="#glyph-0-9" x="90.645548" y="51.515112"/> | |
| 356 | +<use xlink:href="#glyph-0-8" x="95.598413" y="51.515112"/> | |
| 357 | +<use xlink:href="#glyph-0-7" x="97.915347" y="51.515112"/> | |
| 358 | +<use xlink:href="#glyph-0-8" x="100.945828" y="51.515112"/> | |
| 359 | +<use xlink:href="#glyph-0-15" x="103.262762" y="51.515112"/> | |
| 360 | +<use xlink:href="#glyph-0-10" x="108.165259" y="51.515112"/> | |
| 361 | +<use xlink:href="#glyph-0-13" x="113.025782" y="51.515112"/> | |
| 362 | +</g> | |
| 363 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 364 | +<use xlink:href="#glyph-0-9" x="119.741531" y="51.515112"/> | |
| 365 | +<use xlink:href="#glyph-0-3" x="124.694396" y="51.515112"/> | |
| 366 | +</g> | |
| 367 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 368 | +<use xlink:href="#glyph-0-22" x="132.064931" y="51.515112"/> | |
| 369 | +</g> | |
| 370 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 371 | +<use xlink:href="#glyph-0-3" x="136.161538" y="51.515112"/> | |
| 372 | +<use xlink:href="#glyph-0-10" x="140.728247" y="51.515112"/> | |
| 373 | +<use xlink:href="#glyph-0-7" x="145.588771" y="51.515112"/> | |
| 374 | +</g> | |
| 375 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 376 | +<use xlink:href="#glyph-0-3" x="148.493332" y="51.515112"/> | |
| 377 | +</g> | |
| 378 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 379 | +<use xlink:href="#glyph-0-21" x="152.976095" y="51.515112"/> | |
| 380 | +</g> | |
| 381 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 382 | +<use xlink:href="#glyph-0-12" x="157.78625" y="51.515112"/> | |
| 383 | +<use xlink:href="#glyph-0-8" x="160.254288" y="51.515112"/> | |
| 384 | +<use xlink:href="#glyph-0-3" x="162.571221" y="51.515112"/> | |
| 385 | +<use xlink:href="#glyph-0-10" x="167.137931" y="51.515112"/> | |
| 386 | +</g> | |
| 387 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 388 | +<use xlink:href="#glyph-0-9" x="174.793885" y="51.515112"/> | |
| 389 | +<use xlink:href="#glyph-0-3" x="179.74675" y="51.515112"/> | |
| 390 | +</g> | |
| 391 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 392 | +<use xlink:href="#glyph-0-9" x="187.117284" y="51.515112"/> | |
| 393 | +<use xlink:href="#glyph-0-16" x="192.070149" y="51.515112"/> | |
| 394 | +<use xlink:href="#glyph-0-18" x="196.636859" y="51.515112"/> | |
| 395 | +<use xlink:href="#glyph-0-3" x="201.556145" y="51.515112"/> | |
| 396 | +<use xlink:href="#glyph-0-10" x="206.122854" y="51.515112"/> | |
| 397 | +<use xlink:href="#glyph-0-9" x="210.983378" y="51.515112"/> | |
| 398 | +<use xlink:href="#glyph-0-23" x="215.936243" y="51.515112"/> | |
| 399 | +<use xlink:href="#glyph-0-10" x="220.460979" y="51.515112"/> | |
| 400 | +<use xlink:href="#glyph-0-4" x="225.321502" y="51.515112"/> | |
| 401 | +</g> | |
| 402 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 403 | +<use xlink:href="#glyph-0-3" x="229.208242" y="51.515112"/> | |
| 404 | +<use xlink:href="#glyph-0-24" x="233.774951" y="51.515112"/> | |
| 405 | +</g> | |
| 406 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.109375 64.71875 L 9.378906 64.71875 C 7.1875 64.71875 5.410156 66.496094 5.410156 68.6875 L 5.410156 86.765625 C 5.410156 88.957031 7.1875 90.734375 9.378906 90.734375 L 304.109375 90.734375 C 306.300781 90.734375 308.078125 88.957031 308.078125 86.765625 L 308.078125 68.6875 C 308.078125 66.496094 306.300781 64.71875 304.109375 64.71875 Z M 304.109375 64.71875 "/> | |
| 407 | +<g clip-path="url(#clip-2)"> | |
| 408 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.95769 -51.293665 L -147.956435 -51.293665 C -150.156643 -51.293665 -151.941124 -53.078146 -151.941124 -55.278353 L -151.941124 -73.429081 C -151.941124 -75.629288 -150.156643 -77.41377 -147.956435 -77.41377 L 147.95769 -77.41377 C 150.157897 -77.41377 151.942379 -75.629288 151.942379 -73.429081 L 151.942379 -55.278353 C 151.942379 -53.078146 150.157897 -51.293665 147.95769 -51.293665 Z M 147.95769 -51.293665 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 409 | +</g> | |
| 410 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 411 | +<use xlink:href="#glyph-0-25" x="81.20588" y="74.916132"/> | |
| 412 | +<use xlink:href="#glyph-0-1" x="85.302487" y="74.916132"/> | |
| 413 | +</g> | |
| 414 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 415 | +<use xlink:href="#glyph-0-26" x="90.112642" y="74.916132"/> | |
| 416 | +<use xlink:href="#glyph-0-16" x="94.687746" y="74.916132"/> | |
| 417 | +<use xlink:href="#glyph-0-12" x="99.254456" y="74.916132"/> | |
| 418 | +</g> | |
| 419 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 420 | +<use xlink:href="#glyph-0-3" x="101.68052" y="74.916132"/> | |
| 421 | +<use xlink:href="#glyph-0-4" x="106.24723" y="74.916132"/> | |
| 422 | +<use xlink:href="#glyph-0-7" x="110.25989" y="74.916132"/> | |
| 423 | +<use xlink:href="#glyph-0-8" x="113.290371" y="74.916132"/> | |
| 424 | +<use xlink:href="#glyph-0-15" x="115.607305" y="74.916132"/> | |
| 425 | +<use xlink:href="#glyph-0-10" x="120.509802" y="74.916132"/> | |
| 426 | +<use xlink:href="#glyph-0-10" x="125.370325" y="74.916132"/> | |
| 427 | +<use xlink:href="#glyph-0-3" x="130.230849" y="74.916132"/> | |
| 428 | +<use xlink:href="#glyph-0-6" x="134.797558" y="74.916132"/> | |
| 429 | +</g> | |
| 430 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 431 | +<use xlink:href="#glyph-0-12" x="140.816548" y="74.916132"/> | |
| 432 | +</g> | |
| 433 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 434 | +<use xlink:href="#glyph-0-3" x="143.242612" y="74.916132"/> | |
| 435 | +<use xlink:href="#glyph-0-13" x="147.809322" y="74.916132"/> | |
| 436 | +</g> | |
| 437 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 438 | +<use xlink:href="#glyph-1-17" x="154.525071" y="74.916132"/> | |
| 439 | +<use xlink:href="#glyph-1-2" x="159.293253" y="74.916132"/> | |
| 440 | +<use xlink:href="#glyph-1-15" x="164.103408" y="74.916132"/> | |
| 441 | +<use xlink:href="#glyph-1-3" x="166.45392" y="74.916132"/> | |
| 442 | +</g> | |
| 443 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 444 | +<use xlink:href="#glyph-1-14" x="169.543165" y="74.916132"/> | |
| 445 | +<use xlink:href="#glyph-1-4" x="174.193821" y="74.916132"/> | |
| 446 | +</g> | |
| 447 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 448 | +<use xlink:href="#glyph-1-18" x="181.018701" y="74.916132"/> | |
| 449 | +<use xlink:href="#glyph-1-1" x="186.005145" y="74.916132"/> | |
| 450 | +</g> | |
| 451 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 452 | +<use xlink:href="#glyph-1-5" x="193.451232" y="74.916132"/> | |
| 453 | +</g> | |
| 454 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 455 | +<use xlink:href="#glyph-1-6" x="197.346366" y="74.916132"/> | |
| 456 | +<use xlink:href="#glyph-1-7" x="202.248863" y="74.916132"/> | |
| 457 | +<use xlink:href="#glyph-1-8" x="209.308794" y="74.916132"/> | |
| 458 | +</g> | |
| 459 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 460 | +<use xlink:href="#glyph-1-9" x="214.202897" y="74.916132"/> | |
| 461 | +<use xlink:href="#glyph-1-10" x="218.786395" y="74.916132"/> | |
| 462 | +</g> | |
| 463 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 464 | +<use xlink:href="#glyph-1-9" x="221.926008" y="74.916132"/> | |
| 465 | +<use xlink:href="#glyph-1-15" x="226.509507" y="74.916132"/> | |
| 466 | +<use xlink:href="#glyph-1-19" x="228.860019" y="74.916132"/> | |
| 467 | +</g> | |
| 468 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 469 | +<use xlink:href="#glyph-1-4" x="82.299488" y="85.831296"/> | |
| 470 | +<use xlink:href="#glyph-1-6" x="86.328937" y="85.831296"/> | |
| 471 | +<use xlink:href="#glyph-1-2" x="91.231434" y="85.831296"/> | |
| 472 | +</g> | |
| 473 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 474 | +<use xlink:href="#glyph-0-23" x="98.83702" y="85.831296"/> | |
| 475 | +<use xlink:href="#glyph-0-18" x="103.361756" y="85.831296"/> | |
| 476 | +<use xlink:href="#glyph-0-18" x="108.281042" y="85.831296"/> | |
| 477 | +<use xlink:href="#glyph-0-6" x="113.200329" y="85.831296"/> | |
| 478 | +</g> | |
| 479 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 480 | +<use xlink:href="#glyph-0-15" x="116.2476" y="85.831296"/> | |
| 481 | +<use xlink:href="#glyph-0-18" x="121.150097" y="85.831296"/> | |
| 482 | +<use xlink:href="#glyph-0-6" x="126.069383" y="85.831296"/> | |
| 483 | +<use xlink:href="#glyph-0-8" x="129.284548" y="85.831296"/> | |
| 484 | +<use xlink:href="#glyph-0-16" x="131.601481" y="85.831296"/> | |
| 485 | +<use xlink:href="#glyph-0-3" x="136.168191" y="85.831296"/> | |
| 486 | +<use xlink:href="#glyph-0-13" x="140.7349" y="85.831296"/> | |
| 487 | +</g> | |
| 488 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 489 | +<use xlink:href="#glyph-0-17" x="147.459044" y="85.831296"/> | |
| 490 | +<use xlink:href="#glyph-0-18" x="150.178922" y="85.831296"/> | |
| 491 | +<use xlink:href="#glyph-0-6" x="155.098208" y="85.831296"/> | |
| 492 | +<use xlink:href="#glyph-0-8" x="158.313373" y="85.831296"/> | |
| 493 | +<use xlink:href="#glyph-0-19" x="160.630307" y="85.831296"/> | |
| 494 | +</g> | |
| 495 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 496 | +<use xlink:href="#glyph-0-7" x="167.49716" y="85.831296"/> | |
| 497 | +</g> | |
| 498 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 499 | +<use xlink:href="#glyph-0-15" x="170.401722" y="85.831296"/> | |
| 500 | +<use xlink:href="#glyph-0-7" x="175.304219" y="85.831296"/> | |
| 501 | +<use xlink:href="#glyph-0-23" x="178.3347" y="85.831296"/> | |
| 502 | +</g> | |
| 503 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 504 | +<use xlink:href="#glyph-0-12" x="182.817463" y="85.831296"/> | |
| 505 | +</g> | |
| 506 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 507 | +<use xlink:href="#glyph-0-21" x="185.31908" y="85.831296"/> | |
| 508 | +</g> | |
| 509 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 510 | +<use xlink:href="#glyph-0-27" x="190.129235" y="85.831296"/> | |
| 511 | +<use xlink:href="#glyph-0-28" x="194.586813" y="85.831296"/> | |
| 512 | +</g> | |
| 513 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 514 | +<use xlink:href="#glyph-0-18" x="198.70021" y="85.831296"/> | |
| 515 | +<use xlink:href="#glyph-0-8" x="203.619496" y="85.831296"/> | |
| 516 | +</g> | |
| 517 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 518 | +<use xlink:href="#glyph-2-0" x="205.937948" y="82.037532"/> | |
| 519 | +</g> | |
| 520 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 521 | +<use xlink:href="#glyph-0-21" x="210.072344" y="85.831296"/> | |
| 522 | +</g> | |
| 523 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 524 | +<use xlink:href="#glyph-0-3" x="214.882499" y="85.831296"/> | |
| 525 | +<use xlink:href="#glyph-0-7" x="219.449209" y="85.831296"/> | |
| 526 | +</g> | |
| 527 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 528 | +<use xlink:href="#glyph-0-4" x="222.35377" y="85.831296"/> | |
| 529 | +</g> | |
| 530 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 531 | +<use xlink:href="#glyph-0-1" x="226.450377" y="85.831296"/> | |
| 532 | +<use xlink:href="#glyph-0-24" x="228.465102" y="85.831296"/> | |
| 533 | +</g> | |
| 534 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.109375 99.035156 L 9.378906 99.035156 C 7.1875 99.035156 5.410156 100.8125 5.410156 103.003906 L 5.410156 112.007812 C 5.410156 114.199219 7.1875 115.976562 9.378906 115.976562 L 304.109375 115.976562 C 306.300781 115.976562 308.078125 114.199219 308.078125 112.007812 L 308.078125 103.003906 C 308.078125 100.8125 306.300781 99.035156 304.109375 99.035156 Z M 304.109375 99.035156 "/> | |
| 535 | +<g clip-path="url(#clip-3)"> | |
| 536 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.95769 -85.747888 L -147.956435 -85.747888 C -150.156643 -85.747888 -151.941124 -87.532369 -151.941124 -89.732577 L -151.941124 -98.772643 C -151.941124 -100.97285 -150.156643 -102.757332 -147.956435 -102.757332 L 147.95769 -102.757332 C 150.157897 -102.757332 151.942379 -100.97285 151.942379 -98.772643 L 151.942379 -89.732577 C 151.942379 -87.532369 150.157897 -85.747888 147.95769 -85.747888 Z M 147.95769 -85.747888 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 537 | +</g> | |
| 538 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 539 | +<use xlink:href="#glyph-0-29" x="10.6841" y="109.975332"/> | |
| 540 | +</g> | |
| 541 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 542 | +<use xlink:href="#glyph-0-1" x="14.940206" y="109.975332"/> | |
| 543 | +</g> | |
| 544 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 545 | +<use xlink:href="#glyph-0-30" x="19.750361" y="109.975332"/> | |
| 546 | +<use xlink:href="#glyph-0-10" x="24.560517" y="109.975332"/> | |
| 547 | +<use xlink:href="#glyph-0-23" x="29.42104" y="109.975332"/> | |
| 548 | +</g> | |
| 549 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 550 | +<use xlink:href="#glyph-0-12" x="33.903803" y="109.975332"/> | |
| 551 | +</g> | |
| 552 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 553 | +<use xlink:href="#glyph-0-31" x="36.287894" y="109.975332"/> | |
| 554 | +</g> | |
| 555 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 556 | +<use xlink:href="#glyph-0-13" x="40.359316" y="109.975332"/> | |
| 557 | +<use xlink:href="#glyph-0-3" x="44.279635" y="109.975332"/> | |
| 558 | +<use xlink:href="#glyph-0-6" x="48.846344" y="109.975332"/> | |
| 559 | +</g> | |
| 560 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 561 | +<use xlink:href="#glyph-0-3" x="54.865335" y="109.975332"/> | |
| 562 | +<use xlink:href="#glyph-0-7" x="59.432044" y="109.975332"/> | |
| 563 | +</g> | |
| 564 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 565 | +<use xlink:href="#glyph-1-9" x="65.257956" y="109.975332"/> | |
| 566 | +<use xlink:href="#glyph-1-20" x="69.841455" y="109.975332"/> | |
| 567 | +<use xlink:href="#glyph-1-17" x="72.191967" y="109.975332"/> | |
| 568 | +<use xlink:href="#glyph-1-4" x="76.960149" y="109.975332"/> | |
| 569 | +<use xlink:href="#glyph-1-3" x="80.989599" y="109.975332"/> | |
| 570 | +</g> | |
| 571 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 572 | +<use xlink:href="#glyph-1-1" x="84.078843" y="109.975332"/> | |
| 573 | +<use xlink:href="#glyph-1-10" x="88.729499" y="109.975332"/> | |
| 574 | +</g> | |
| 575 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 576 | +<use xlink:href="#glyph-0-4" x="94.899594" y="109.975332"/> | |
| 577 | +<use xlink:href="#glyph-0-5" x="98.912254" y="109.975332"/> | |
| 578 | +<use xlink:href="#glyph-0-23" x="103.772777" y="109.975332"/> | |
| 579 | +<use xlink:href="#glyph-0-32" x="108.297513" y="109.975332"/> | |
| 580 | +<use xlink:href="#glyph-0-33" x="113.250378" y="109.975332"/> | |
| 581 | +<use xlink:href="#glyph-0-3" x="118.077323" y="109.975332"/> | |
| 582 | +</g> | |
| 583 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 584 | +<use xlink:href="#glyph-0-4" x="125.447858" y="109.975332"/> | |
| 585 | +</g> | |
| 586 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 587 | +<use xlink:href="#glyph-0-15" x="129.334598" y="109.975332"/> | |
| 588 | +<use xlink:href="#glyph-0-20" x="134.237094" y="109.975332"/> | |
| 589 | +<use xlink:href="#glyph-0-18" x="141.372578" y="109.975332"/> | |
| 590 | +</g> | |
| 591 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 592 | +<use xlink:href="#glyph-0-23" x="146.249891" y="109.975332"/> | |
| 593 | +<use xlink:href="#glyph-0-6" x="150.774627" y="109.975332"/> | |
| 594 | +</g> | |
| 595 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 596 | +<use xlink:href="#glyph-0-23" x="153.821898" y="109.975332"/> | |
| 597 | +<use xlink:href="#glyph-0-34" x="158.346634" y="109.975332"/> | |
| 598 | +<use xlink:href="#glyph-0-12" x="163.26592" y="109.975332"/> | |
| 599 | +</g> | |
| 600 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 601 | +<use xlink:href="#glyph-0-3" x="165.691984" y="109.975332"/> | |
| 602 | +</g> | |
| 603 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 604 | +<use xlink:href="#glyph-0-13" x="173.054124" y="109.975332"/> | |
| 605 | +<use xlink:href="#glyph-0-3" x="176.974443" y="109.975332"/> | |
| 606 | +<use xlink:href="#glyph-0-12" x="181.541152" y="109.975332"/> | |
| 607 | +</g> | |
| 608 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 609 | +<use xlink:href="#glyph-0-15" x="183.967217" y="109.975332"/> | |
| 610 | +<use xlink:href="#glyph-0-10" x="188.869714" y="109.975332"/> | |
| 611 | +</g> | |
| 612 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 613 | +<use xlink:href="#glyph-0-12" x="196.525668" y="109.975332"/> | |
| 614 | +</g> | |
| 615 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 616 | +<use xlink:href="#glyph-0-3" x="198.951732" y="109.975332"/> | |
| 617 | +<use xlink:href="#glyph-0-13" x="203.518441" y="109.975332"/> | |
| 618 | +</g> | |
| 619 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 620 | +<use xlink:href="#glyph-0-4" x="210.23419" y="109.975332"/> | |
| 621 | +<use xlink:href="#glyph-0-6" x="214.246851" y="109.975332"/> | |
| 622 | +<use xlink:href="#glyph-0-8" x="217.462015" y="109.975332"/> | |
| 623 | +<use xlink:href="#glyph-0-7" x="219.778949" y="109.975332"/> | |
| 624 | +</g> | |
| 625 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 626 | +<use xlink:href="#glyph-0-35" x="222.68351" y="109.975332"/> | |
| 627 | +<use xlink:href="#glyph-0-6" x="227.25022" y="109.975332"/> | |
| 628 | +</g> | |
| 629 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 630 | +<use xlink:href="#glyph-0-3" x="230.297491" y="109.975332"/> | |
| 631 | +<use xlink:href="#glyph-0-13" x="234.8642" y="109.975332"/> | |
| 632 | +</g> | |
| 633 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 634 | +<use xlink:href="#glyph-0-9" x="241.588344" y="109.975332"/> | |
| 635 | +<use xlink:href="#glyph-0-3" x="246.541209" y="109.975332"/> | |
| 636 | +</g> | |
| 637 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 638 | +<use xlink:href="#glyph-0-4" x="253.903349" y="109.975332"/> | |
| 639 | +</g> | |
| 640 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 641 | +<use xlink:href="#glyph-0-15" x="257.790089" y="109.975332"/> | |
| 642 | +<use xlink:href="#glyph-0-20" x="262.692586" y="109.975332"/> | |
| 643 | +<use xlink:href="#glyph-0-18" x="269.828069" y="109.975332"/> | |
| 644 | +</g> | |
| 645 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 646 | +<use xlink:href="#glyph-0-23" x="274.705382" y="109.975332"/> | |
| 647 | +<use xlink:href="#glyph-0-6" x="279.230118" y="109.975332"/> | |
| 648 | +</g> | |
| 649 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 650 | +<use xlink:href="#glyph-0-23" x="282.277389" y="109.975332"/> | |
| 651 | +<use xlink:href="#glyph-0-8" x="286.802125" y="109.975332"/> | |
| 652 | +<use xlink:href="#glyph-0-13" x="289.119059" y="109.975332"/> | |
| 653 | +<use xlink:href="#glyph-0-15" x="293.039377" y="109.975332"/> | |
| 654 | +<use xlink:href="#glyph-0-10" x="297.941874" y="109.975332"/> | |
| 655 | +</g> | |
| 656 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.109375 124.277344 L 9.378906 124.277344 C 7.1875 124.277344 5.410156 126.054688 5.410156 128.246094 L 5.410156 137.25 C 5.410156 139.441406 7.1875 141.21875 9.378906 141.21875 L 304.109375 141.21875 C 306.300781 141.21875 308.078125 139.441406 308.078125 137.25 L 308.078125 128.246094 C 308.078125 126.054688 306.300781 124.277344 304.109375 124.277344 Z M 304.109375 124.277344 "/> | |
| 657 | +<g clip-path="url(#clip-4)"> | |
| 658 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.95769 -111.09145 L -147.956435 -111.09145 C -150.156643 -111.09145 -151.941124 -112.875931 -151.941124 -115.076138 L -151.941124 -124.116205 C -151.941124 -126.316412 -150.156643 -128.100894 -147.956435 -128.100894 L 147.95769 -128.100894 C 150.157897 -128.100894 151.942379 -126.316412 151.942379 -124.116205 L 151.942379 -115.076138 C 151.942379 -112.875931 150.157897 -111.09145 147.95769 -111.09145 Z M 147.95769 -111.09145 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 659 | +</g> | |
| 660 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 661 | +<use xlink:href="#glyph-0-36" x="65.196176" y="135.39624"/> | |
| 662 | +<use xlink:href="#glyph-0-1" x="69.309572" y="135.39624"/> | |
| 663 | +</g> | |
| 664 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 665 | +<use xlink:href="#glyph-1-21" x="74.119728" y="135.39624"/> | |
| 666 | +</g> | |
| 667 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 668 | +<use xlink:href="#glyph-1-14" x="79.206908" y="135.39624"/> | |
| 669 | +<use xlink:href="#glyph-1-5" x="83.857564" y="135.39624"/> | |
| 670 | +</g> | |
| 671 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 672 | +<use xlink:href="#glyph-1-6" x="87.752698" y="135.39624"/> | |
| 673 | +<use xlink:href="#glyph-1-2" x="92.655195" y="135.39624"/> | |
| 674 | +<use xlink:href="#glyph-1-5" x="97.465351" y="135.39624"/> | |
| 675 | +<use xlink:href="#glyph-1-15" x="101.486405" y="135.39624"/> | |
| 676 | +<use xlink:href="#glyph-1-12" x="103.836917" y="135.39624"/> | |
| 677 | +<use xlink:href="#glyph-1-15" x="106.355323" y="135.39624"/> | |
| 678 | +<use xlink:href="#glyph-1-1" x="108.705836" y="135.39624"/> | |
| 679 | +<use xlink:href="#glyph-1-10" x="113.356492" y="135.39624"/> | |
| 680 | +</g> | |
| 681 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 682 | +<use xlink:href="#glyph-0-12" x="119.534981" y="135.39624"/> | |
| 683 | +</g> | |
| 684 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 685 | +<use xlink:href="#glyph-0-3" x="121.961045" y="135.39624"/> | |
| 686 | +<use xlink:href="#glyph-0-13" x="126.527755" y="135.39624"/> | |
| 687 | +</g> | |
| 688 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 689 | +<use xlink:href="#glyph-0-8" x="133.243504" y="135.39624"/> | |
| 690 | +<use xlink:href="#glyph-0-10" x="135.560437" y="135.39624"/> | |
| 691 | +<use xlink:href="#glyph-0-9" x="140.420961" y="135.39624"/> | |
| 692 | +<use xlink:href="#glyph-0-8" x="145.373826" y="135.39624"/> | |
| 693 | +<use xlink:href="#glyph-0-4" x="147.690759" y="135.39624"/> | |
| 694 | +</g> | |
| 695 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 696 | +<use xlink:href="#glyph-0-23" x="151.661446" y="135.39624"/> | |
| 697 | +<use xlink:href="#glyph-0-7" x="156.186182" y="135.39624"/> | |
| 698 | +<use xlink:href="#glyph-0-8" x="159.216664" y="135.39624"/> | |
| 699 | +<use xlink:href="#glyph-0-15" x="161.533597" y="135.39624"/> | |
| 700 | +<use xlink:href="#glyph-0-10" x="166.436094" y="135.39624"/> | |
| 701 | +<use xlink:href="#glyph-0-13" x="171.296617" y="135.39624"/> | |
| 702 | +</g> | |
| 703 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 704 | +<use xlink:href="#glyph-0-9" x="178.012367" y="135.39624"/> | |
| 705 | +<use xlink:href="#glyph-0-3" x="182.965232" y="135.39624"/> | |
| 706 | +</g> | |
| 707 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 708 | +<use xlink:href="#glyph-0-22" x="190.327371" y="135.39624"/> | |
| 709 | +</g> | |
| 710 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 711 | +<use xlink:href="#glyph-0-23" x="194.415584" y="135.39624"/> | |
| 712 | +</g> | |
| 713 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 714 | +<use xlink:href="#glyph-0-12" x="198.898346" y="135.39624"/> | |
| 715 | +</g> | |
| 716 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 717 | +<use xlink:href="#glyph-0-3" x="201.324411" y="135.39624"/> | |
| 718 | +<use xlink:href="#glyph-0-33" x="205.89112" y="135.39624"/> | |
| 719 | +<use xlink:href="#glyph-0-6" x="210.718065" y="135.39624"/> | |
| 720 | +</g> | |
| 721 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 722 | +<use xlink:href="#glyph-0-23" x="216.737055" y="135.39624"/> | |
| 723 | +<use xlink:href="#glyph-0-37" x="221.261791" y="135.39624"/> | |
| 724 | +<use xlink:href="#glyph-0-33" x="223.587119" y="135.39624"/> | |
| 725 | +<use xlink:href="#glyph-0-13" x="228.414064" y="135.39624"/> | |
| 726 | +<use xlink:href="#glyph-0-7" x="232.334382" y="135.39624"/> | |
| 727 | +</g> | |
| 728 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 729 | +<use xlink:href="#glyph-0-16" x="235.238944" y="135.39624"/> | |
| 730 | +<use xlink:href="#glyph-0-3" x="239.805653" y="135.39624"/> | |
| 731 | +<use xlink:href="#glyph-0-13" x="244.372363" y="135.39624"/> | |
| 732 | +</g> | |
| 733 | +<path fill-rule="nonzero" fill="rgb(94.900513%, 96.470642%, 98.039246%)" fill-opacity="1" d="M 304.109375 149.519531 L 9.378906 149.519531 C 7.1875 149.519531 5.410156 151.296875 5.410156 153.492188 L 5.410156 162.492188 C 5.410156 164.683594 7.1875 166.460938 9.378906 166.460938 L 304.109375 166.460938 C 306.300781 166.460938 308.078125 164.683594 308.078125 162.492188 L 308.078125 153.492188 C 308.078125 151.296875 306.300781 149.519531 304.109375 149.519531 Z M 304.109375 149.519531 "/> | |
| 734 | +<g clip-path="url(#clip-5)"> | |
| 735 | +<path fill="none" stroke-width="0.3985" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M 147.95769 -136.435011 L -147.956435 -136.435011 C -150.156643 -136.435011 -151.941124 -138.219493 -151.941124 -140.423622 L -151.941124 -149.459767 C -151.941124 -151.659974 -150.156643 -153.444455 -147.956435 -153.444455 L 147.95769 -153.444455 C 150.157897 -153.444455 151.942379 -151.659974 151.942379 -149.459767 L 151.942379 -140.423622 C 151.942379 -138.219493 150.157897 -136.435011 147.95769 -136.435011 Z M 147.95769 -136.435011 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 736 | +</g> | |
| 737 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 738 | +<use xlink:href="#glyph-0-38" x="16.408112" y="160.493448"/> | |
| 739 | +</g> | |
| 740 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 741 | +<use xlink:href="#glyph-0-1" x="20.899269" y="160.493448"/> | |
| 742 | +</g> | |
| 743 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 744 | +<use xlink:href="#glyph-0-39" x="25.709425" y="160.493448"/> | |
| 745 | +</g> | |
| 746 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 747 | +<use xlink:href="#glyph-0-15" x="30.242555" y="160.493448"/> | |
| 748 | +<use xlink:href="#glyph-0-10" x="35.145052" y="160.493448"/> | |
| 749 | +<use xlink:href="#glyph-0-4" x="40.005575" y="160.493448"/> | |
| 750 | +<use xlink:href="#glyph-0-12" x="44.018236" y="160.493448"/> | |
| 751 | +<use xlink:href="#glyph-0-33" x="46.486273" y="160.493448"/> | |
| 752 | +<use xlink:href="#glyph-0-6" x="51.313218" y="160.493448"/> | |
| 753 | +</g> | |
| 754 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 755 | +<use xlink:href="#glyph-0-3" x="54.360489" y="160.493448"/> | |
| 756 | +</g> | |
| 757 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 758 | +<use xlink:href="#glyph-0-13" x="61.731024" y="160.493448"/> | |
| 759 | +<use xlink:href="#glyph-0-33" x="65.651342" y="160.493448"/> | |
| 760 | +<use xlink:href="#glyph-0-6" x="70.478287" y="160.493448"/> | |
| 761 | +</g> | |
| 762 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 763 | +<use xlink:href="#glyph-0-33" x="76.488883" y="160.493448"/> | |
| 764 | +<use xlink:href="#glyph-0-10" x="81.315827" y="160.493448"/> | |
| 765 | +<use xlink:href="#glyph-0-3" x="86.176351" y="160.493448"/> | |
| 766 | +</g> | |
| 767 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 768 | +<use xlink:href="#glyph-1-15" x="93.538491" y="160.493448"/> | |
| 769 | +<use xlink:href="#glyph-1-2" x="95.889003" y="160.493448"/> | |
| 770 | +<use xlink:href="#glyph-1-18" x="100.699158" y="160.493448"/> | |
| 771 | +<use xlink:href="#glyph-1-15" x="105.685602" y="160.493448"/> | |
| 772 | +<use xlink:href="#glyph-1-5" x="108.036114" y="160.493448"/> | |
| 773 | +</g> | |
| 774 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 775 | +<use xlink:href="#glyph-1-9" x="112.015195" y="160.493448"/> | |
| 776 | +<use xlink:href="#glyph-1-3" x="116.598694" y="160.493448"/> | |
| 777 | +<use xlink:href="#glyph-1-15" x="119.839043" y="160.493448"/> | |
| 778 | +<use xlink:href="#glyph-1-6" x="122.189555" y="160.493448"/> | |
| 779 | +<use xlink:href="#glyph-1-2" x="127.092052" y="160.493448"/> | |
| 780 | +</g> | |
| 781 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 782 | +<use xlink:href="#glyph-1-18" x="134.706033" y="160.493448"/> | |
| 783 | +<use xlink:href="#glyph-1-1" x="139.692476" y="160.493448"/> | |
| 784 | +</g> | |
| 785 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 786 | +<use xlink:href="#glyph-1-0" x="147.138563" y="160.493448"/> | |
| 787 | +</g> | |
| 788 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 789 | +<use xlink:href="#glyph-1-9" x="151.302328" y="160.493448"/> | |
| 790 | +</g> | |
| 791 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 792 | +<use xlink:href="#glyph-1-12" x="155.818669" y="160.493448"/> | |
| 793 | +</g> | |
| 794 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 795 | +<use xlink:href="#glyph-1-1" x="158.295102" y="160.493448"/> | |
| 796 | +<use xlink:href="#glyph-1-17" x="162.945758" y="160.493448"/> | |
| 797 | +<use xlink:href="#glyph-1-10" x="167.71394" y="160.493448"/> | |
| 798 | +</g> | |
| 799 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 800 | +<use xlink:href="#glyph-0-18" x="173.884034" y="160.493448"/> | |
| 801 | +</g> | |
| 802 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 803 | +<use xlink:href="#glyph-0-23" x="178.761347" y="160.493448"/> | |
| 804 | +<use xlink:href="#glyph-0-6" x="183.286083" y="160.493448"/> | |
| 805 | +</g> | |
| 806 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 807 | +<use xlink:href="#glyph-0-12" x="189.296678" y="160.493448"/> | |
| 808 | +</g> | |
| 809 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 810 | +<use xlink:href="#glyph-0-23" x="191.722743" y="160.493448"/> | |
| 811 | +</g> | |
| 812 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 813 | +<use xlink:href="#glyph-0-20" x="199.051304" y="160.493448"/> | |
| 814 | +<use xlink:href="#glyph-0-16" x="206.186787" y="160.493448"/> | |
| 815 | +<use xlink:href="#glyph-0-7" x="210.753497" y="160.493448"/> | |
| 816 | +<use xlink:href="#glyph-0-5" x="213.783979" y="160.493448"/> | |
| 817 | +<use xlink:href="#glyph-0-15" x="218.644502" y="160.493448"/> | |
| 818 | +<use xlink:href="#glyph-0-9" x="223.546999" y="160.493448"/> | |
| 819 | +<use xlink:href="#glyph-0-3" x="228.499864" y="160.493448"/> | |
| 820 | +</g> | |
| 821 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 822 | +<use xlink:href="#glyph-0-9" x="235.862004" y="160.493448"/> | |
| 823 | +<use xlink:href="#glyph-0-3" x="240.814869" y="160.493448"/> | |
| 824 | +</g> | |
| 825 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 826 | +<use xlink:href="#glyph-0-4" x="248.177009" y="160.493448"/> | |
| 827 | +</g> | |
| 828 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 829 | +<use xlink:href="#glyph-0-15" x="252.063749" y="160.493448"/> | |
| 830 | +<use xlink:href="#glyph-0-20" x="256.966245" y="160.493448"/> | |
| 831 | +<use xlink:href="#glyph-0-18" x="264.101729" y="160.493448"/> | |
| 832 | +</g> | |
| 833 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 834 | +<use xlink:href="#glyph-0-23" x="268.979042" y="160.493448"/> | |
| 835 | +<use xlink:href="#glyph-0-6" x="273.503778" y="160.493448"/> | |
| 836 | +</g> | |
| 837 | +<g fill="rgb(14.901733%, 16.862488%, 20.391846%)" fill-opacity="1"> | |
| 838 | +<use xlink:href="#glyph-0-23" x="276.551049" y="160.493448"/> | |
| 839 | +<use xlink:href="#glyph-0-8" x="281.075785" y="160.493448"/> | |
| 840 | +<use xlink:href="#glyph-0-13" x="283.392718" y="160.493448"/> | |
| 841 | +<use xlink:href="#glyph-0-15" x="287.313037" y="160.493448"/> | |
| 842 | +<use xlink:href="#glyph-0-10" x="292.215534" y="160.493448"/> | |
| 843 | +</g> | |
| 844 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00133384 -8.701421 L -0.00133384 -15.843269 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 845 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.551814 3.112685 C -2.085104 1.245842 -1.04579 0.363406 0.00136698 -0.00133384 C -1.04579 -0.362152 -2.085104 -1.244588 -2.551814 -3.11143 " transform="matrix(0, 0.996, 0.996, 0, 156.743516, 29.807232)"/> | |
| 846 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00133384 -43.159566 L -0.00133384 -50.297492 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 847 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.552231 3.112685 C -2.085521 1.245842 -1.046207 0.363406 0.00095012 -0.00133384 C -1.046207 -0.362152 -2.085521 -1.244588 -2.552231 -3.11143 " transform="matrix(0, 0.996, 0.996, 0, 156.743516, 64.124054)"/> | |
| 848 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00133384 -77.613789 L -0.00133384 -84.751716 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 849 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.548736 3.112685 C -2.085948 1.245842 -1.046634 0.363406 0.000523263 -0.00133384 C -1.046634 -0.362152 -2.085948 -1.244588 -2.548736 -3.11143 " transform="matrix(0, 0.996, 0.996, 0, 156.743516, 98.440885)"/> | |
| 850 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00133384 -102.957351 L -0.00133384 -110.095277 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 851 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549005 3.112685 C -2.086216 1.245842 -1.046902 0.363406 0.00025501 -0.00133384 C -1.046902 -0.362152 -2.086216 -1.244588 -2.549005 -3.11143 " transform="matrix(0, 0.996, 0.996, 0, 156.743516, 123.68334)"/> | |
| 852 | +<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -0.00133384 -128.300912 L -0.00133384 -135.438839 " transform="matrix(0.996, 0, 0, -0.996, 156.743516, 13.63026)"/> | |
| 853 | +<path fill="none" stroke-width="0.79701" stroke-linecap="round" stroke-linejoin="round" stroke="rgb(0%, 24.31488%, 49.412537%)" stroke-opacity="1" stroke-miterlimit="10" d="M -2.549263 3.112685 C -2.082552 1.245842 -1.047161 0.363406 -0.00000324297 -0.00133384 C -1.047161 -0.362152 -2.082552 -1.244588 -2.549263 -3.11143 " transform="matrix(0, 0.996, 0.996, 0, 156.743516, 148.925784)"/> | |
| 854 | +</svg> | |
added
dist/assets/fig/e7547eaf45a2548f.svg
+62 −0
@@ -0,0 +1,611 @@ | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="314.242pt" height="176.028pt" viewBox="0 0 314.242 176.028"> | |
| 3 | +<defs> | |
| 4 | +<g> | |
| 5 | +<g id="glyph-0-0"> | |
| 6 | +<path d="M 2.703125 -4.71875 L 2.03125 -4.71875 L 0.296875 -3.65625 L 0.625 -3.109375 L 1.9375 -3.90625 L 1.9375 0 L 2.703125 0 Z M 2.703125 -4.71875 "/> | |
| 7 | +</g> | |
| 8 | +<g id="glyph-0-1"> | |
| 9 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.796875 0.421875 -0.484375 C 0.421875 -0.15625 0.671875 0.09375 1 0.09375 C 1.328125 0.09375 1.578125 -0.15625 1.578125 -0.484375 C 1.578125 -0.796875 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 10 | +</g> | |
| 11 | +<g id="glyph-0-2"> | |
| 12 | +<path d="M 1.640625 -5.765625 L 0.84375 -5.765625 L 0.84375 0 L 1.640625 0 Z M 1.640625 -5.765625 "/> | |
| 13 | +</g> | |
| 14 | +<g id="glyph-0-3"> | |
| 15 | +<path d="M 3.40625 -6.28125 L 3.40625 -3.96875 C 3.109375 -4.28125 2.734375 -4.515625 2.21875 -4.515625 C 1.125 -4.515625 0.484375 -3.53125 0.484375 -2.1875 C 0.484375 -0.8125 1.078125 0.09375 2.140625 0.09375 C 2.6875 0.09375 3.125 -0.171875 3.421875 -0.609375 L 3.5 0 L 4.171875 0 L 4.171875 -6.1875 Z M 2.3125 -0.515625 C 1.671875 -0.515625 1.3125 -1.03125 1.3125 -2.203125 C 1.3125 -3.34375 1.71875 -3.90625 2.375 -3.90625 C 2.8125 -3.90625 3.125 -3.671875 3.40625 -3.328125 L 3.40625 -1.171875 C 3.109375 -0.75 2.8125 -0.515625 2.3125 -0.515625 Z M 2.3125 -0.515625 "/> | |
| 16 | +</g> | |
| 17 | +<g id="glyph-0-4"> | |
| 18 | +<path d="M 4.125 -2.34375 C 4.125 -3.6875 3.5 -4.515625 2.3125 -4.515625 C 1.171875 -4.515625 0.484375 -3.53125 0.484375 -2.15625 C 0.484375 -0.765625 1.203125 0.09375 2.421875 0.09375 C 3.046875 0.09375 3.53125 -0.109375 3.96875 -0.453125 L 3.640625 -0.90625 C 3.25 -0.640625 2.921875 -0.53125 2.484375 -0.53125 C 1.84375 -0.53125 1.375 -0.921875 1.296875 -1.9375 L 4.109375 -1.9375 C 4.125 -2.046875 4.125 -2.1875 4.125 -2.34375 Z M 3.359375 -2.515625 L 1.296875 -2.515625 C 1.359375 -3.5 1.734375 -3.90625 2.328125 -3.90625 C 3.015625 -3.90625 3.359375 -3.421875 3.359375 -2.5625 Z M 3.359375 -2.515625 "/> | |
| 19 | +</g> | |
| 20 | +<g id="glyph-0-5"> | |
| 21 | +<path d="M 2.84375 -4.515625 C 2.265625 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -3.125 C 1.828125 -3.59375 2.171875 -3.90625 2.65625 -3.90625 C 3.09375 -3.90625 3.359375 -3.71875 3.359375 -3.0625 L 3.359375 0 L 4.125 0 L 4.125 -3.171875 C 4.125 -4 3.65625 -4.515625 2.84375 -4.515625 Z M 2.84375 -4.515625 "/> | |
| 22 | +</g> | |
| 23 | +<g id="glyph-0-6"> | |
| 24 | +<path d="M 2.734375 -0.71875 C 2.515625 -0.59375 2.34375 -0.53125 2.140625 -0.53125 C 1.765625 -0.53125 1.609375 -0.75 1.609375 -1.1875 L 1.609375 -3.8125 L 2.578125 -3.8125 L 2.65625 -4.40625 L 1.609375 -4.40625 L 1.609375 -5.5 L 0.84375 -5.40625 L 0.84375 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.84375 -3.8125 L 0.84375 -1.15625 C 0.84375 -0.328125 1.296875 0.09375 2.03125 0.09375 C 2.40625 0.09375 2.734375 0 3.015625 -0.203125 Z M 2.734375 -0.71875 "/> | |
| 25 | +</g> | |
| 26 | +<g id="glyph-0-7"> | |
| 27 | +<path d="M 1.140625 -6.53125 C 0.828125 -6.53125 0.609375 -6.3125 0.609375 -6 C 0.609375 -5.71875 0.828125 -5.484375 1.140625 -5.484375 C 1.46875 -5.484375 1.6875 -5.71875 1.6875 -6 C 1.6875 -6.3125 1.46875 -6.53125 1.140625 -6.53125 Z M 1.546875 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 Z M 1.546875 -4.40625 "/> | |
| 28 | +</g> | |
| 29 | +<g id="glyph-0-8"> | |
| 30 | +<path d="M 2.3125 -6.28125 C 1.234375 -6.28125 0.78125 -5.734375 0.78125 -4.984375 L 0.78125 -4.40625 L 0.078125 -4.40625 L 0.078125 -3.8125 L 0.78125 -3.8125 L 0.78125 0 L 1.5625 0 L 1.5625 -3.8125 L 3.25 -3.8125 L 3.25 0 L 4.015625 0 L 4.015625 -4.40625 L 1.5625 -4.40625 L 1.5625 -5 C 1.5625 -5.421875 1.71875 -5.65625 2.34375 -5.65625 C 2.6875 -5.65625 2.984375 -5.578125 3.265625 -5.4375 L 3.53125 -5.984375 C 3.171875 -6.15625 2.8125 -6.28125 2.3125 -6.28125 Z M 2.3125 -6.28125 "/> | |
| 31 | +</g> | |
| 32 | +<g id="glyph-0-9"> | |
| 33 | +<path d="M 2.40625 -4.515625 C 1.203125 -4.515625 0.484375 -3.578125 0.484375 -2.171875 C 0.484375 -0.75 1.21875 0.09375 2.40625 0.09375 C 2.921875 0.09375 3.359375 -0.0625 3.75 -0.390625 L 3.40625 -0.890625 C 3.0625 -0.671875 2.8125 -0.546875 2.4375 -0.546875 C 1.734375 -0.546875 1.3125 -1.03125 1.3125 -2.1875 C 1.3125 -3.328125 1.734375 -3.875 2.4375 -3.875 C 2.8125 -3.875 3.078125 -3.765625 3.390625 -3.546875 L 3.75 -4.03125 C 3.34375 -4.375 2.921875 -4.515625 2.40625 -4.515625 Z M 2.40625 -4.515625 "/> | |
| 34 | +</g> | |
| 35 | +<g id="glyph-0-10"> | |
| 36 | +<path d="M 3.734375 -1.03125 L 3.734375 -3.046875 C 3.734375 -3.96875 3.234375 -4.515625 2.171875 -4.515625 C 1.6875 -4.515625 1.203125 -4.40625 0.65625 -4.21875 L 0.84375 -3.65625 C 1.296875 -3.796875 1.703125 -3.890625 2.03125 -3.890625 C 2.640625 -3.890625 2.953125 -3.65625 2.953125 -3.015625 L 2.953125 -2.6875 L 2.28125 -2.6875 C 1.046875 -2.6875 0.328125 -2.171875 0.328125 -1.234375 C 0.328125 -0.4375 0.859375 0.09375 1.734375 0.09375 C 2.28125 0.09375 2.75 -0.09375 3.0625 -0.5625 C 3.1875 -0.125 3.46875 0.046875 3.921875 0.09375 L 4.09375 -0.4375 C 3.875 -0.515625 3.734375 -0.640625 3.734375 -1.03125 Z M 1.921875 -0.484375 C 1.421875 -0.484375 1.15625 -0.75 1.15625 -1.265625 C 1.15625 -1.875 1.5625 -2.171875 2.375 -2.171875 L 2.953125 -2.171875 L 2.953125 -1.171875 C 2.703125 -0.703125 2.375 -0.484375 1.921875 -0.484375 Z M 1.921875 -0.484375 "/> | |
| 37 | +</g> | |
| 38 | +<g id="glyph-0-11"> | |
| 39 | +<path d="M 2.453125 -4.515625 C 1.203125 -4.515625 0.484375 -3.5625 0.484375 -2.203125 C 0.484375 -0.796875 1.1875 0.09375 2.453125 0.09375 C 3.6875 0.09375 4.40625 -0.84375 4.40625 -2.21875 C 4.40625 -3.609375 3.703125 -4.515625 2.453125 -4.515625 Z M 2.453125 -3.890625 C 3.1875 -3.890625 3.578125 -3.359375 3.578125 -2.21875 C 3.578125 -1.0625 3.1875 -0.515625 2.453125 -0.515625 C 1.703125 -0.515625 1.3125 -1.0625 1.3125 -2.203125 C 1.3125 -3.359375 1.71875 -3.890625 2.453125 -3.890625 Z M 2.453125 -3.890625 "/> | |
| 40 | +</g> | |
| 41 | +<g id="glyph-0-12"> | |
| 42 | +<path d="M 4.046875 -4.40625 L 3.28125 -4.40625 L 3.28125 -1.265625 C 3 -0.828125 2.640625 -0.5 2.171875 -0.5 C 1.6875 -0.5 1.484375 -0.734375 1.484375 -1.328125 L 1.484375 -4.40625 L 0.71875 -4.40625 L 0.71875 -1.25 C 0.71875 -0.390625 1.1875 0.09375 1.953125 0.09375 C 2.578125 0.09375 2.984375 -0.15625 3.328125 -0.6875 L 3.390625 0 L 4.046875 0 Z M 4.046875 -4.40625 "/> | |
| 43 | +</g> | |
| 44 | +<g id="glyph-0-13"> | |
| 45 | +<path d="M 5.203125 -4.515625 C 4.609375 -4.515625 4.203125 -4.203125 3.890625 -3.71875 C 3.71875 -4.21875 3.3125 -4.515625 2.765625 -4.515625 C 2.1875 -4.515625 1.796875 -4.21875 1.5 -3.765625 L 1.4375 -4.40625 L 0.765625 -4.40625 L 0.765625 0 L 1.546875 0 L 1.546875 -3.125 C 1.828125 -3.59375 2.109375 -3.90625 2.578125 -3.90625 C 2.921875 -3.90625 3.203125 -3.71875 3.203125 -3.0625 L 3.203125 0 L 3.96875 0 L 3.96875 -3.125 C 4.265625 -3.59375 4.53125 -3.90625 5.015625 -3.90625 C 5.34375 -3.90625 5.625 -3.71875 5.625 -3.0625 L 5.625 0 L 6.40625 0 L 6.40625 -3.171875 C 6.40625 -4 5.921875 -4.515625 5.203125 -4.515625 Z M 5.203125 -4.515625 "/> | |
| 46 | +</g> | |
| 47 | +<g id="glyph-0-14"> | |
| 48 | +<path d="M 1.890625 -7.078125 C 1.078125 -5.90625 0.328125 -4.921875 0.328125 -2.9375 C 0.328125 -0.953125 1.078125 0.046875 1.890625 1.21875 L 2.375 0.875 C 1.625 -0.234375 1.140625 -1.140625 1.140625 -2.9375 C 1.140625 -4.734375 1.625 -5.625 2.375 -6.734375 Z M 1.890625 -7.078125 "/> | |
| 49 | +</g> | |
| 50 | +<g id="glyph-0-15"> | |
| 51 | +<path d="M 1.640625 0.09375 C 1.875 0.09375 2.078125 0.046875 2.25 -0.046875 L 2.046875 -0.59375 C 1.96875 -0.546875 1.875 -0.53125 1.765625 -0.53125 C 1.5625 -0.53125 1.484375 -0.65625 1.484375 -0.890625 L 1.484375 -6.28125 L 0.71875 -6.1875 L 0.71875 -0.875 C 0.71875 -0.25 1.078125 0.09375 1.640625 0.09375 Z M 1.640625 0.09375 "/> | |
| 52 | +</g> | |
| 53 | +<g id="glyph-0-16"> | |
| 54 | +<path d="M 1 -1.0625 C 0.671875 -1.0625 0.421875 -0.796875 0.421875 -0.484375 C 0.421875 -0.28125 0.515625 -0.109375 0.65625 0 L 0.3125 1.390625 L 0.875 1.390625 L 1.4375 0.109375 C 1.546875 -0.140625 1.578125 -0.296875 1.578125 -0.484375 C 1.578125 -0.796875 1.328125 -1.0625 1 -1.0625 Z M 1 -1.0625 "/> | |
| 55 | +</g> | |
| 56 | +<g id="glyph-0-17"> | |
| 57 | +<path d="M 2 -4.515625 C 1.078125 -4.515625 0.40625 -4 0.40625 -3.296875 C 0.40625 -2.6875 0.78125 -2.265625 1.734375 -2.015625 C 2.59375 -1.796875 2.8125 -1.625 2.8125 -1.1875 C 2.8125 -0.765625 2.4375 -0.515625 1.859375 -0.515625 C 1.375 -0.515625 0.96875 -0.671875 0.625 -0.953125 L 0.203125 -0.484375 C 0.59375 -0.140625 1.125 0.09375 1.875 0.09375 C 2.765625 0.09375 3.625 -0.3125 3.625 -1.234375 C 3.625 -2.015625 3.078125 -2.375 2.15625 -2.609375 C 1.4375 -2.796875 1.203125 -2.96875 1.203125 -3.328125 C 1.203125 -3.671875 1.515625 -3.90625 2.015625 -3.90625 C 2.421875 -3.90625 2.765625 -3.78125 3.171875 -3.53125 L 3.5 -4.015625 C 3.078125 -4.328125 2.609375 -4.515625 2 -4.515625 Z M 2 -4.515625 "/> | |
| 58 | +</g> | |
| 59 | +<g id="glyph-0-18"> | |
| 60 | +<path d="M 4.125 -4.90625 C 3.609375 -4.671875 3.203125 -4.484375 2.109375 -4.515625 C 1.140625 -4.515625 0.40625 -3.875 0.40625 -2.96875 C 0.40625 -2.40625 0.640625 -2.015625 1.15625 -1.75 C 0.84375 -1.546875 0.671875 -1.25 0.671875 -0.96875 C 0.671875 -0.53125 1.015625 -0.140625 1.8125 -0.140625 L 2.5 -0.140625 C 3.0625 -0.140625 3.390625 0.078125 3.390625 0.5 C 3.390625 0.9375 3.0625 1.1875 2.109375 1.1875 C 1.125 1.1875 0.90625 0.953125 0.90625 0.4375 L 0.203125 0.4375 C 0.203125 1.34375 0.65625 1.78125 2.109375 1.78125 C 3.46875 1.78125 4.171875 1.296875 4.171875 0.4375 C 4.171875 -0.265625 3.5625 -0.78125 2.65625 -0.78125 L 1.953125 -0.78125 C 1.5 -0.78125 1.375 -0.9375 1.375 -1.140625 C 1.375 -1.296875 1.46875 -1.453125 1.59375 -1.546875 C 1.78125 -1.484375 1.953125 -1.46875 2.15625 -1.46875 C 3.21875 -1.46875 3.84375 -2.09375 3.84375 -2.96875 C 3.84375 -3.46875 3.578125 -3.84375 3.0625 -4.078125 C 3.5625 -4.078125 3.984375 -4.09375 4.359375 -4.21875 Z M 2.109375 -3.96875 C 2.734375 -3.96875 3.0625 -3.625 3.0625 -2.984375 C 3.0625 -2.34375 2.734375 -1.96875 2.125 -1.96875 C 1.53125 -1.96875 1.203125 -2.390625 1.203125 -2.96875 C 1.203125 -3.546875 1.515625 -3.96875 2.109375 -3.96875 Z M 2.109375 -3.96875 "/> | |
| 61 | +</g> | |
| 62 | +<g id="glyph-0-19"> | |
Diff truncated — file too large.