diff --git a/.env b/.env
index 20bfb0a74c8e88ae613364a837696f2fba800197..8244fc7930d8fa61cd61b5ba28a0d021fb14dc27 100644
--- a/.env
+++ b/.env
@@ -1,9 +1,56 @@
-AUTH_SERVICE_HOSTNAME=auth-api
-USERS_SERVICE_HOSTNAME=users-api
-HOTELS_SERVICE_HOSTNAME=hotels-api
-BOOKINGS_SERVICE_HOSTNAME=bookings-api
-ROOMS_BOOKING_SERVICE_HOSTNAME=rooms-booking-api
-DB_SERVICE_HOSTNAME=RoomsBooking-database
-DB_DATABASE_NAME=RoomsBooking
-DB_USER=user
-BD_PASSWORD=password
\ No newline at end of file
+#######################################
+# Environment
+#######################################
+
+#######################################
+# APIs
+#######################################
+## AUTH
+API_AUTH_HOSTNAME=auth-api
+API_AUTH_PORT=8101
+API_AUTH_URL=http://$API_AUTH_HOSTNAME:$API_AUTH_PORT 
+API_AUTH_TOKEN_URL=$API_AUTH_URL/token
+## Bookings
+API_BOOKINGS_HOSTNAME=bookings-api
+API_BOOKINGS_PORT=8401
+API_BOOKINGS_URL=http://$API_BOOKINGS_HOSTNAME:$API_BOOKINGS_PORT 
+## Hotels
+API_HOTELS_HOSTNAME=hotels-api
+API_HOTELS_PORT=8301
+API_HOTELS_URL=http://$API_HOTELS_HOSTNAME:$API_HOTELS_PORT 
+## Users
+API_USERS_HOSTNAME=users-api
+API_USERS_PORT=8201
+API_USERS_URL=http://$API_USERS_HOSTNAME:$API_USERS_PORT 
+## Kong
+# Kong configuration
+API_KONG_HOSTNAME=kong
+API_KONG_PORT=8000
+API_KONG_URL=http://$API_KONG_HOSTNAME:$API_KONG_PORT 
+API_KONG_GATEWAY=$API_KONG_URL/api
+# Kong Routes
+API_KONG_ROUTE_AUTH_URL=$API_KONG_GATEWAY/auth 
+API_KONG_ROUTE_BOOKINGS_URL=$API_KONG_GATEWAY/bookings
+API_KONG_ROUTE_CLIENTS_URL=$API_KONG_GATEWAY/users/clients
+API_KONG_ROUTE_HOTELS_URL=$API_KONG_GATEWAY/hotels
+API_KONG_ROUTE_MANAGERS_URL=$API_KONG_GATEWAY/users/managers
+API_KONG_ROUTE_USERS_URL=$API_KONG_GATEWAY/users
+#
+#######################################
+# Databases
+#######################################
+## DB Bookings
+DB_BOOKINGS_DATABASE=Bookings
+DB_BOOKINGS_HOSTNAME=BookingsDB
+## DB Hotels
+DB_HOTELS_DATABASE=Hotels
+DB_HOTELS_HOSTNAME=HotelsDB
+## DB Users
+DB_USERS_DATABASE=Users
+DB_USERS_HOSTNAME=UsersDB
+#
+#######################################
+# JWT
+#######################################
+JWT_KEY=MiClaveDeSeguridadMuyLargaParaQueNoFalleSpringBoot
+JWT_KID=9L8RmLEKMFd54WrR06CE9zoRSAGpCWeu
diff --git a/.gitignore b/.gitignore
index 9d69baa07a9349a0ed0d73d664ad697aa5e65a9f..734c0ce60a65212ae939d5600cc49e6a47cc821a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,10 +1,9 @@
 ### Own ###
-taller
+.trunk/
 *.pdf
 **/target/
 **/.vscode
 **/tmp
 **/*.tmp
 *.ln
-*.log
-
+*.log
\ No newline at end of file
diff --git a/.trunk/.gitignore b/.trunk/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..15966d087ebc05fc3e0a2effab401a41f43c00bf
--- /dev/null
+++ b/.trunk/.gitignore
@@ -0,0 +1,9 @@
+*out
+*logs
+*actions
+*notifications
+*tools
+plugins
+user_trunk.yaml
+user.yaml
+tmp
diff --git a/.trunk/configs/.hadolint.yaml b/.trunk/configs/.hadolint.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..98bf0cd2ee9cc845042c0a357dc26b5bc4cff007
--- /dev/null
+++ b/.trunk/configs/.hadolint.yaml
@@ -0,0 +1,4 @@
+# Following source doesn't work in most setups
+ignored:
+  - SC1090
+  - SC1091
diff --git a/.trunk/configs/.markdownlint.yaml b/.trunk/configs/.markdownlint.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..b40ee9d7a7aa5edd0a22f9beb16d33c8b147269c
--- /dev/null
+++ b/.trunk/configs/.markdownlint.yaml
@@ -0,0 +1,2 @@
+# Prettier friendly markdownlint config (all formatting rules disabled)
+extends: markdownlint/style/prettier
diff --git a/.trunk/configs/.shellcheckrc b/.trunk/configs/.shellcheckrc
new file mode 100644
index 0000000000000000000000000000000000000000..8c7b1ada8a3e17d42d1022b2caddc39ba83e1466
--- /dev/null
+++ b/.trunk/configs/.shellcheckrc
@@ -0,0 +1,7 @@
+enable=all
+source-path=SCRIPTDIR
+disable=SC2154
+
+# If you're having issues with shellcheck following source, disable the errors via:
+# disable=SC1090
+# disable=SC1091
diff --git a/.trunk/configs/.yamllint.yaml b/.trunk/configs/.yamllint.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..184e251f8deb169e6cc659d3a43ff4cac1c54d68
--- /dev/null
+++ b/.trunk/configs/.yamllint.yaml
@@ -0,0 +1,7 @@
+rules:
+  quoted-strings:
+    required: only-when-needed
+    extra-allowed: ["{|}"]
+  key-duplicates: {}
+  octal-values:
+    forbid-implicit-octal: true
diff --git a/.trunk/configs/svgo.config.js b/.trunk/configs/svgo.config.js
new file mode 100644
index 0000000000000000000000000000000000000000..b257d134935822a51180981939eb1eedd44a5a32
--- /dev/null
+++ b/.trunk/configs/svgo.config.js
@@ -0,0 +1,14 @@
+module.exports = {
+  plugins: [
+    {
+      name: "preset-default",
+      params: {
+        overrides: {
+          removeViewBox: false, // https://github.com/svg/svgo/issues/1128
+          sortAttrs: true,
+          removeOffCanvasPaths: true,
+        },
+      },
+    },
+  ],
+};
diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..356e1de28b07be63564b341fa3cfc7006ffc41eb
--- /dev/null
+++ b/.trunk/trunk.yaml
@@ -0,0 +1,40 @@
+# This file controls the behavior of Trunk: https://docs.trunk.io/cli
+# To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
+version: 0.1
+cli:
+  version: 1.22.8
+# Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins)
+plugins:
+  sources:
+    - id: trunk
+      ref: v1.6.6
+      uri: https://github.com/trunk-io/plugins
+# Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
+runtimes:
+  enabled:
+    - go@1.21.0
+    - node@18.20.5
+    - python@3.10.8
+# This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
+lint:
+  disabled:
+    - git-diff-check
+  enabled:
+    - checkov@3.2.344
+    - dotenv-linter@3.3.0
+    - hadolint@2.12.1-beta
+    - markdownlint@0.43.0
+    - osv-scanner@1.9.2
+    - prettier@3.4.2
+    - shellcheck@0.10.0
+    - shfmt@3.6.0
+    - svgo@3.3.2
+    - trufflehog@3.88.0
+    - yamllint@1.35.1
+actions:
+  disabled:
+    - trunk-announce
+    - trunk-check-pre-push
+    - trunk-fmt-pre-commit
+  enabled:
+    - trunk-upgrade-available
diff --git a/DBCS_FINAL.mp4 b/DBCS_FINAL.mp4
new file mode 100644
index 0000000000000000000000000000000000000000..d0f8eef954bd2183b964d72e3ed9804a484c2dce
Binary files /dev/null and b/DBCS_FINAL.mp4 differ
diff --git a/README.bk.md b/README.bk.md
new file mode 100644
index 0000000000000000000000000000000000000000..bab1c05fd3795ba4e68b80485fc0f20a90a13079
--- /dev/null
+++ b/README.bk.md
@@ -0,0 +1,259 @@
+¡Claro! Aquí tienes un ejemplo de un archivo `README.md` para tu proyecto de microservicios orientado a usuarios, hoteles y reservas utilizando **Spring Boot**. Este README incluye las secciones más comunes que suelen aparecer en proyectos de este tipo.
+
+---
+
+# Microservicios para Usuarios, Hoteles y Reservas
+
+Este proyecto consiste en la implementación de un sistema basado en microservicios utilizando **Spring Boot**. El propósito principal es gestionar **usuarios**, **hoteles** y **reservas** en un entorno distribuido, escalable y fácil de mantener.
+
+## Tabla de Contenidos
+
+- [Microservicios para Usuarios, Hoteles y Reservas](#microservicios-para-usuarios-hoteles-y-reservas)
+  - [Tabla de Contenidos](#tabla-de-contenidos)
+  - [Introducción](#introducción)
+  - [Características](#características)
+  - [Arquitectura](#arquitectura)
+    - [Componentes Clave:](#componentes-clave)
+  - [Tecnologías Usadas](#tecnologías-usadas)
+  - [Requisitos Previos](#requisitos-previos)
+  - [Configuración e Instalación](#configuración-e-instalación)
+  - [Ejecución del Proyecto](#ejecución-del-proyecto)
+  - [Microservicios](#microservicios)
+    - [1. Usuarios](#1-usuarios)
+    - [2. Hoteles](#2-hoteles)
+    - [3. Reservas](#3-reservas)
+  - [API Endpoints](#api-endpoints)
+    - [Usuarios](#usuarios)
+    - [Hoteles](#hoteles)
+    - [Reservas](#reservas)
+  - [Contribuciones](#contribuciones)
+  - [Licencia](#licencia)
+
+---
+
+## Introducción
+
+Este sistema implementa tres microservicios principales:
+
+1. **Microservicio de Usuarios:** Gestión de usuarios registrados, incluyendo creación, edición y consulta de perfiles.
+2. **Microservicio de Hoteles:** Gestión de la información de hoteles, incluyendo su ubicación, detalles y características.
+3. **Microservicio de Reservas:** Gestión de reservas realizadas por los usuarios en los hoteles disponibles.
+
+Cada microservicio es autónomo y está diseñado para comunicarte con los demás a través de REST API o mensajería (opcional).
+
+---
+
+## Características
+
+- Diseño basado en arquitectura de microservicios.
+- Comunicación entre microservicios usando REST API y, opcionalmente, un **API Gateway**.
+- Persistencia de datos en bases de datos separadas para cada microservicio.
+- Validaciones robustas para entradas de datos.
+- Manejo de autenticación y autorización con JWT (JSON Web Tokens).
+- Fácil integración y despliegue en entornos locales o en la nube.
+- Escalabilidad y modularidad.
+
+---
+
+## Arquitectura
+
+![Arquitectura del Sistema](https://user-images.githubusercontent.com/missing-image.png) _(Aquí puedes añadir un diagrama de tu arquitectura, si tienes uno)_
+
+La arquitectura del proyecto sigue los principios de microservicios:
+
+1. **Usuarios:** Este servicio maneja la creación, edición, eliminación y consulta de los usuarios.
+2. **Hoteles:** Este servicio se encarga de gestionar la información de hoteles disponibles.
+3. **Reservas:** Este servicio se encarga de administrar las reservas realizadas por los usuarios en los hoteles.
+
+### Componentes Clave:
+
+- **API Gateway (opcional):** Puede usarse para unificar las llamadas a los microservicios.
+- **Base de Datos Descentralizada:** Cada microservicio tiene su propia base de datos para garantizar independencia.
+- **Configuración Centralizada:** Utiliza Spring Cloud Config para gestionar la configuración de cada microservicio (si se requiere).
+
+---
+
+## Tecnologías Usadas
+
+- **Java 17** (o la versión que utilices)
+- **Spring Boot 3.x**:
+  - Spring Data JPA
+  - Spring Web
+  - Spring Security (JWT)
+- **Bases de Datos**:
+  - MySQL (o PostgreSQL) para persistencia de datos.
+- **Herramientas de Comunicación**:
+  - Feign Client (para comunicación entre microservicios).
+  - Eureka Server (opcional, para registro y descubrimiento de servicios).
+- **Dependencias Adicionales**:
+  - Lombok
+  - MapStruct (para mapeo entre entidades y DTOs)
+- **Docker** (para contenedores y despliegue).
+- **Postman** (para pruebas de APIs).
+
+---
+
+## Requisitos Previos
+
+Antes de ejecutar el proyecto, asegúrate de que tienes instalados los siguientes componentes:
+
+- [Java 17+](https://www.oracle.com/java/technologies/javase-jdk17-downloads.html)
+- [Maven](https://maven.apache.org/) o [Gradle](https://gradle.org/)
+- [MySQL](https://www.mysql.com/) o cualquier base de datos compatible
+- [Docker](https://www.docker.com/) (opcional)
+- [Postman](https://www.postman.com/) (para pruebas)
+
+---
+
+## Configuración e Instalación
+
+1. **Clona este repositorio:**
+
+   ```bash
+   git clone https://github.com/tu-usuario/tu-repositorio.git
+   cd tu-repositorio
+   ```
+
+2. **Configura las bases de datos:**
+
+   - Crea tres bases de datos para `usuarios`, `hoteles` y `reservas`.
+   - Actualiza los archivos `application.properties` o `application.yml` de cada microservicio con las credenciales de acceso.
+
+   Ejemplo (`application.properties`):
+
+   ```properties
+   spring.datasource.url=jdbc:mysql://localhost:3306/usuarios_db
+   spring.datasource.username=root
+   spring.datasource.password=1234
+   ```
+
+3. **Construye los microservicios:**
+
+   ```bash
+   mvn clean install
+   ```
+
+4. **Inicia cada microservicio:**
+
+   ```bash
+   cd usuarios-service
+   mvn spring-boot:run
+   ```
+
+   Repite el proceso para `hoteles-service` y `reservas-service`.
+
+---
+
+## Ejecución del Proyecto
+
+Si utilizas Docker, puedes crear un archivo `docker-compose.yml` para ejecutar todos los microservicios en contenedores.
+
+Ejemplo:
+
+```yaml
+version: "3.8"
+services:
+  usuarios-service:
+    image: usuarios-service:latest
+    build:
+      context: ./usuarios-service
+    ports:
+      - "8081:8081"
+    environment:
+      SPRING_DATASOURCE_URL: jdbc:mysql://usuarios-db:3306/usuarios_db
+      SPRING_DATASOURCE_USERNAME: root
+      SPRING_DATASOURCE_PASSWORD: 1234
+
+  hoteles-service:
+    image: hoteles-service:latest
+    build:
+      context: ./hoteles-service
+    ports:
+      - "8082:8082"
+
+  reservas-service:
+    image: reservas-service:latest
+    build:
+      context: ./reservas-service
+    ports:
+      - "8083:8083"
+```
+
+Ejecuta los servicios con:
+
+```bash
+docker-compose up
+```
+
+---
+
+## Microservicios
+
+### 1. Usuarios
+
+- Base URL: `/api/usuarios`
+- Funciones:
+  - Crear usuario
+  - Consultar usuario
+  - Editar usuario
+  - Eliminar usuario
+
+### 2. Hoteles
+
+- Base URL: `/api/hoteles`
+- Funciones:
+  - Crear hotel
+  - Consultar lista de hoteles
+  - Editar hotel
+  - Eliminar hotel
+
+### 3. Reservas
+
+- Base URL: `/api/reservas`
+- Funciones:
+  - Crear reserva
+  - Consultar reservas por usuario o hotel
+  - Cancelar reserva
+
+---
+
+## API Endpoints
+
+A continuación se listan algunos ejemplos de endpoints:
+
+### Usuarios
+
+- **GET** `/api/usuarios/{id}` - Obtener un usuario por ID
+- **POST** `/api/usuarios` - Crear un nuevo usuario
+
+### Hoteles
+
+- **GET** `/api/hoteles` - Listar todos los hoteles
+- **POST** `/api/hoteles` - Registrar un hotel
+
+### Reservas
+
+- **POST** `/api/reservas` - Crear una reserva
+- **GET** `/api/reservas/{id}` - Consultar una reserva por ID
+
+---
+
+## Contribuciones
+
+¡Contribuciones son bienvenidas! Por favor, sigue los pasos a continuación:
+
+1. Haz un fork del repositorio.
+2. Crea una rama para tu funcionalidad: `git checkout -b nueva-funcionalidad`.
+3. Realiza tus cambios y haz un commit: `git commit -m 'Añadida nueva funcionalidad'`.
+4. Haz un push a la rama: `git push origin nueva-funcionalidad`.
+5. Crea un Pull Request.
+
+---
+
+## Licencia
+
+Este proyecto está licenciado bajo la licencia MIT. Consulta el archivo [LICENSE](LICENSE) para más detalles.
+
+---
+
+Con este `README.md`, tienes una guía completa para documentar tu proyecto y compartirlo con otros desarrolladores. ¿Quieres agregar algo más específico? 😊
diff --git a/README.md b/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..58ad10377fc6af68d0e06e16227501e8d3d8982b
--- /dev/null
+++ b/README.md
@@ -0,0 +1,114 @@
+# DEMO
+
+![Video demostración](DBCS_FINAL.mp4.mp4)
+
+# Sobre el proyecto
+
+En este proyecto nos hemos centrado en la creación de microservicios lo más independientes posibles, para ello se ha trabajado con microservicios spring-boot dividiendo el proyecto en:
+
+- Microservicio de **Autentificación**, destinado a la gestión de _autentificación_
+- Microservicio de **Usuarios**, destinado a la gestión de _usuarios_
+- Microservicio de **Hoteles**, destinado a la gestión de _hoteles_ y _habitaciones_
+- Microservicio de **Reservas**, destinado a la gestión de _reservas_
+
+## Intrucciones de despliegue
+
+En todos los casos se proporcionan las variables de entorno oportunas, en caso contrario sería necesario declararlas.
+
+### Modo desarrollo (local, por java y angular)
+
+Levantar todos los servicios a mano.
+
+Accede a cada microservicio y ejecútalo.
+
+```bash
+cd java/service/{service}
+mvn spring-boot:run
+```
+
+Y para el cliente web angular:
+
+1. Instalar dependencias
+   1. Instalar angular
+      ```bash
+      npm install -g @angular/cli
+      ```
+   2. Instalar el resto de dependencias
+      ```bash
+      npm install
+      ```
+2. Levantar el servidor de desarrollo
+   ```bash
+    ng dev [-o] # abrira un navegador con la aplicación web
+   ```
+
+### Modo producción (docker)
+
+Accede a la carpeta raíz (donde está este fichero) y ejecuta el comando de despliegue de docker compose
+
+```bash
+docker compose up
+```
+
+> [!warning]
+> Se recomienda la eliminación, en caso de que haya ya volúmenes de información con los mismos nombres usados en esta practica.
+>
+> El poblador está incluido y se reinicia por cada fallo, es importante ejecutarlo una vez ya esté kong configurado para esta practica
+
+## Diagramas
+
+### Diagrama de componente Angular
+
+![Diagrama de componentes angular](./diagramas/Angular.svg)
+
+### Diagrama de despliegue del sistema
+
+![Diagrama de despligue del sistema](./diagramas/despliegue.png)
+
+### Diagrama de la arquitectura lógica del microservicio de usuarios
+
+![Diagrama de la arquitectura lógica de usuarios](./diagramas/User.svg)
+
+## Consideraciones de diseño
+
+### Separación de usuario en roles
+
+Debido a que la funcionalidad de los usuarios estaba entremezclada y la seguridad era un inexistente se ha decidido separar al usuario en: `Users`, `ADMINS`, `Clients` y `Managers`.
+
+### Integridad respecto al estado del cliente
+
+Debido a que el patron experto nos dice que es el microservicio de reservas quien debería manejar el estado del cliente se nos solicita que esté esté reflejado en el de usuarios por lo cual, para cumplir ambos requerimientos, hemos aplicado redundancia pero dando la tarea al servicio de reservas de ser el encargado de mantener la integridad de ese estado, para ello se ha incluido una tarea programada que actualiza el estado de los usuarios que cuyas reservas hayan finalizado el día anterior (esta tarea programada se ejecuta todos los dias a las 00:30).
+
+### Redundancia
+
+Para cumplir los requisitos como, por ejemplo, eliminar un `manager` y que se eliminen todas los hoteles con sus habitaciones y sus reservas se ha aplicado redundancia agregando, para este caso, los ids de la habitación, hotel y administrador a la reserva y habilitando los endpoints necesarios para reducir las comunicaciones y la latencia, haciendo más eficiente y rápida nuestra aplicación.
+
+## Extras
+
+### Seguridad
+
+Todos los microservicios cuentan con la seguridad proporcionada por kong salvo en algunos aspectos como los `GET`s a hoteles y la funcionalidad de autentificación del servicio `auth` ya que debe ser accesible desde todos lados. Pero además de esta se ha agregado más aún, identificando y limitando en ciertos puntos el acceso entre los propios servicios y a los recursos que no sea adecuado (usuario accediendo a datos personales que no son suyos).
+
+Esto lo hemos conseguido agregando funcionalidad al servicio de `auth`, **UNICAMENTE ACCESIBLE** desde dentro de la red docker (ya que ofrece identificación de servicios y decodificación de tokens).
+
+Al no disponer de tiempo suficiente para hacer comunicaciones asincronas hemos decidido implementar una `caché` simple para tener en memoria la información decodificada de los tokens.
+
+### Poblate
+
+Se ha creado un programa node (localizado en la carpeta `poblate`) destinado a poblar las bases de datos a través de las apis expuestas, pudiendo trabajar en 3 modos:
+
+- `Desarrollo` ejecutando `npm run dev` (cuando tenemos los servicios levantados en local de forma independiente, a través de mvn por ejemplo).
+- `Producción` ejecutando `npm run prod` (cuando están dockerizados)
+- `"Kong"` ejecutando `npm run prod -- [-k | --kong] {ip}{:port}` (una vez dockerizados, debido a que pueden ocurrir casualidades que llegen a la ejecución parcial y fallida del script se proporciona un modo de apoyo para esos casos, se conecta al puerto de kong de docker expuesto en la maquina local)
+
+También cuenta con algunos argumentos de apoyo:
+
+- `-d` o `--debug` muestra que los datos que se intentan agregar y las ids de los objetos agreados.
+- `-f` o `--force` en caso de que el registro de usuarios falle por ya estar registrados se procede a realizar un login de los datos de usuarios y a agregar hoteles y reservas.
+- `-e` o `--error` muestra todos los errores.
+
+Este programa genera 6 usuarios (1 administrador, 2 gestores de hoteles y 3 clientes), el programa dispersa de forma pseudoaleatoria administradores de hoteles, objetivos de la reserva (habitación implicada y cliente que la realiza).
+
+> [!note]
+> Está integrado en el docker compose y si no se detiene y se define previamente la configuración de kong el programa se reiniciará constantemente.
+> En caso de relanzamiento, si detecta que se puede logear como alguno de los usuarios detendrá su ejecución, en caso de que quieras ejecutarlo aún asi echa un vistazo al modo `Kong` con la configuración de `force`
diff --git a/README.odt b/README.odt
new file mode 100644
index 0000000000000000000000000000000000000000..5e84f35737612df753012d05c7d0c22cc2a076e6
Binary files /dev/null and b/README.odt differ
diff --git a/angular/RestClient/angular.json b/angular/RestClient/angular.json
index 6f0edcd86785afd8cc8db5af00a9e2da641eb1d0..3243daedc8b0b9025b72c21b06f29ba413b7cc20 100644
--- a/angular/RestClient/angular.json
+++ b/angular/RestClient/angular.json
@@ -56,6 +56,17 @@
               ],
               "outputHashing": "all"
             },
+            "monolith": {
+              "fileReplacements": [
+                {
+                  "replace": "src/environments/environment.ts",
+                  "with": "src/environments/environment.monolith.ts"
+                }
+              ],
+              "optimization": false,
+              "extractLicenses": false,
+              "sourceMap": true
+            },
             "development": {
               "optimization": false,
               "extractLicenses": false,
diff --git a/angular/RestClient/package-lock.json b/angular/RestClient/package-lock.json
index af241069cc8acddc06a48c70b6d1dd25125a07ac..59ed6c568bebf6083a5d83e2f9e248ac7cbfe5c8 100644
--- a/angular/RestClient/package-lock.json
+++ b/angular/RestClient/package-lock.json
@@ -22,7 +22,7 @@
         "@angular/ssr": "^18.2.7",
         "@ng-bootstrap/ng-bootstrap": "^17.0.1",
         "@popperjs/core": "^2.11.8",
-        "bootstrap": "^3.4.0",
+        "bootstrap": "^5.3.3",
         "express": "^4.18.2",
         "jquery": "^3.4.1",
         "jwt-decode": "^4.0.0",
@@ -5469,12 +5469,21 @@
       "license": "ISC"
     },
     "node_modules/bootstrap": {
-      "version": "3.4.1",
-      "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.4.1.tgz",
-      "integrity": "sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA==",
-      "license": "MIT",
-      "engines": {
-        "node": ">=6"
+      "version": "5.3.3",
+      "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.3.tgz",
+      "integrity": "sha512-8HLCdWgyoMguSO9o+aH+iuZ+aht+mzW0u3HIMzVu7Srrpv7EBBxTnrFlSCskwdY1+EOFQSm7uMJhNQHkdPcmjg==",
+      "funding": [
+        {
+          "type": "github",
+          "url": "https://github.com/sponsors/twbs"
+        },
+        {
+          "type": "opencollective",
+          "url": "https://opencollective.com/bootstrap"
+        }
+      ],
+      "peerDependencies": {
+        "@popperjs/core": "^2.11.8"
       }
     },
     "node_modules/brace-expansion": {
@@ -7134,10 +7143,9 @@
       "license": "Apache-2.0"
     },
     "node_modules/express": {
-      "version": "4.21.1",
-      "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz",
-      "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==",
-      "license": "MIT",
+      "version": "4.21.2",
+      "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
+      "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
       "dependencies": {
         "accepts": "~1.3.8",
         "array-flatten": "1.1.1",
@@ -7158,7 +7166,7 @@
         "methods": "~1.1.2",
         "on-finished": "2.4.1",
         "parseurl": "~1.3.3",
-        "path-to-regexp": "0.1.10",
+        "path-to-regexp": "0.1.12",
         "proxy-addr": "~2.0.7",
         "qs": "6.13.0",
         "range-parser": "~1.2.1",
@@ -7173,6 +7181,10 @@
       },
       "engines": {
         "node": ">= 0.10.0"
+      },
+      "funding": {
+        "type": "opencollective",
+        "url": "https://opencollective.com/express"
       }
     },
     "node_modules/express/node_modules/debug": {
@@ -9927,16 +9939,15 @@
       }
     },
     "node_modules/nanoid": {
-      "version": "3.3.7",
-      "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
-      "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
+      "version": "3.3.8",
+      "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
+      "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
       "funding": [
         {
           "type": "github",
           "url": "https://github.com/sponsors/ai"
         }
       ],
-      "license": "MIT",
       "bin": {
         "nanoid": "bin/nanoid.cjs"
       },
@@ -10815,10 +10826,9 @@
       "license": "ISC"
     },
     "node_modules/path-to-regexp": {
-      "version": "0.1.10",
-      "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz",
-      "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==",
-      "license": "MIT"
+      "version": "0.1.12",
+      "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
+      "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ=="
     },
     "node_modules/path-type": {
       "version": "5.0.0",
diff --git a/angular/RestClient/package.json b/angular/RestClient/package.json
index a17778b07370cfdb71c9dcc5f6137b413ab929cf..80e1bb768bfe124583646d9fc3e643c4813d66eb 100644
--- a/angular/RestClient/package.json
+++ b/angular/RestClient/package.json
@@ -25,7 +25,7 @@
     "@angular/ssr": "^18.2.7",
     "@ng-bootstrap/ng-bootstrap": "^17.0.1",
     "@popperjs/core": "^2.11.8",
-    "bootstrap": "^3.4.0",
+    "bootstrap": "^5.3.3",
     "express": "^4.18.2",
     "jquery": "^3.4.1",
     "jwt-decode": "^4.0.0",
diff --git a/angular/RestClient/src/app/app.component.spec.ts b/angular/RestClient/src/app/app.component.spec.ts
deleted file mode 100644
index 360bd69b802b5865ce5bb94b3a5ed758dbc09b26..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/app.component.spec.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-import { TestBed } from '@angular/core/testing';
-import { AppComponent } from './app.component';
-import { ReactiveFormsModule } from '@angular/forms';
-
-describe('AppComponent', () => {
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [AppComponent, ReactiveFormsModule],
-    }).compileComponents();
-  });
-
-  it('should create the app', () => {
-    const fixture = TestBed.createComponent(AppComponent);
-    const app = fixture.componentInstance;
-    expect(app).toBeTruthy();
-  });
-
-  it(`should have the 'RestClient' title`, () => {
-    const fixture = TestBed.createComponent(AppComponent);
-    const app = fixture.componentInstance;
-    expect(app.title).toEqual('RestClient');
-  });
-
-  it('should render title', () => {
-    const fixture = TestBed.createComponent(AppComponent);
-    fixture.detectChanges();
-    const compiled = fixture.nativeElement as HTMLElement;
-    expect(compiled.querySelector('h1')?.textContent).toContain('Hello, RestClient');
-  });
-});
diff --git a/angular/RestClient/src/app/app.component.ts b/angular/RestClient/src/app/app.component.ts
index f6060eca2fe714c3b89bb6ee62c3e02b26f37a94..a1ed6618427b136f4c7574b3fa019fd416e7adf7 100644
--- a/angular/RestClient/src/app/app.component.ts
+++ b/angular/RestClient/src/app/app.component.ts
@@ -1,6 +1,6 @@
 import { Component } from '@angular/core';
 import { RouterOutlet } from '@angular/router';
-import { NavigationComponent } from './core/navigation/navigation.component';
+import { NavigationComponent } from '@shared';
 
 @Component({
   selector: 'app-root',
diff --git a/angular/RestClient/src/app/app.config.ts b/angular/RestClient/src/app/app.config.ts
index c0664f634af159df0208b1a877011ce66c1471ac..18eaee48c05caac28365f5076338fd28cc8cd20c 100644
--- a/angular/RestClient/src/app/app.config.ts
+++ b/angular/RestClient/src/app/app.config.ts
@@ -9,7 +9,7 @@ import {
 import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
 import { ReactiveFormsModule } from '@angular/forms'; // Added import for ReactiveFormsModule
 import { provideNativeDateAdapter } from '@angular/material/core';
-import { authRequest } from './security/auth.interceptor';
+import { authRequest } from '@core/interceptors';
 
 export const appConfig: ApplicationConfig = {
   providers: [
diff --git a/angular/RestClient/src/app/app.routes.ts b/angular/RestClient/src/app/app.routes.ts
index 4be490fc5813f4e0bca3846bfd83e67c06ce0654..43242b610cb181c362b1b3181f96b1d6c6e5fc5f 100644
--- a/angular/RestClient/src/app/app.routes.ts
+++ b/angular/RestClient/src/app/app.routes.ts
@@ -1,177 +1,30 @@
-import { Route, Routes } from '@angular/router';
-import { HotelListComponent } from './core/features/hotel/hotel-list/hotel-list.component';
-import { BookingComponent } from './core/features/bookings/booking/booking.component';
-import { HotelRegisterComponent } from './core/features/hotel/hotel-register/hotel-register.component';
-import { MainPageComponent } from './core/features/user/main-page/main-page.component';
-import { BookingListComponent } from './core/features/bookings/booking-list/booking-list.component';
-import { UserBookingListComponent } from './core/features/user/user-booking-list/user-booking-list.component';
-import { UserFormComponent } from './core/features/user/user-form/user-form.component';
 import { UnauthorizedComponent } from './page/unauthorized/unauthorized.component';
-import { rolGuard } from './security/rol.guard';
-import { UserRol, UserRolesArray } from './types';
-
-interface RouteData {
-  expectedRole: UserRol | UserRol[];
-}
-
-type AppRoute = Omit<Route, 'data'> & {
-  data?: RouteData;
-};
-
+import { AppRoute } from './core/models/Route.interface';
+import { rolGuardChild } from '@core/guards';
+import { AUTH_ROUTES } from '@features/auth';
 export const routes: AppRoute[] = [
   // Auth
-  {
-    path: 'login',
-    component: UserFormComponent,
-  },
-  {
-    path: 'register',
-    component: UserFormComponent,
-  },
-
+  ...AUTH_ROUTES,
   // Hoteles
   {
-    path: 'hotels', // Ruta para la lista de hoteles
-    component: HotelListComponent,
-  },
-  {
-    path: 'hotels/register', // Registrar nuevo hotel
-    component: HotelRegisterComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'HOTEL_ADMIN' },
+    path: 'hotels',
+    loadChildren: () =>
+      import('./features/hotels').then((m) => m.HOTELS_ROUTES),
   },
-  {
-    path: 'hotels/:id', // Hotel concreto
-    component: HotelRegisterComponent,
-  },
-
   // Usuario
   {
-    path: 'me', // Main
-    canActivate: [rolGuard],
-    data: { expectedRole: UserRolesArray },
-    component: UserFormComponent,
-  },
-  {
-    path: 'me/edit', // Main
-    component: UserFormComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: UserRolesArray },
-  },
-  {
-    path: 'me/change-passwd', // Main
-    component: UserFormComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: UserRolesArray },
-  },
-  // Usuario HOTEL admin
-  {
-    path: 'me/hotels',
-    component: HotelListComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'HOTEL_ADMIN' },
-  },
-  {
-    path: 'me/hotels/:id',
-    component: HotelRegisterComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'HOTEL_ADMIN' },
-  },
-  // {
-  //   path: 'me/hotels/:id/bookings',
-  //   component: BookingListComponent,
-  // },
-  // {
-  //   path: 'me/hotels/:id/rooms/:id/bookings',
-  //   component: BookingListComponent,
-  // },
-
-  // Usuario Cliente
-  {
-    path: 'me/bookings',
-    component: UserBookingListComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'CLIENT' },
-  },
-  {
-    path: 'me/bookings/:id',
-    component: BookingComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'CLIENT' },
-  },
-  {
-    path: 'me/bookings/new',
-    component: BookingComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'CLIENT' },
+    path: 'me',
+    canActivateChild: [rolGuardChild],
+    loadChildren: () => import('./features/users').then((m) => m.USERS_ROUTES),
   },
-
   // Administrador
   {
-    path: 'admin', // Main
-    component: UserFormComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'ADMIN' },
-  },
-  {
-    path: 'admin/users', // Main
-    component: MainPageComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'ADMIN' },
-  },
-  {
-    path: 'admin/users/:id', // Main
-    component: UserFormComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'ADMIN' },
-  },
-  {
-    path: 'admin/users/:id/edit', // Main
-    component: UserFormComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'ADMIN' },
-  },
-  {
-    path: 'admin/users/:id/change-passwd', // Main
-    component: UserFormComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'ADMIN' },
-  },
-  {
-    path: 'admin/users/:id/bookings',
-    component: UserBookingListComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'ADMIN' },
-  },
-  // {
-  //   path: 'admin/users/:id/bookings/:bookingId',
-  //   component: BookingComponent,
-  // },
-  {
-    path: 'admin/users/:id/hotels',
-    component: HotelListComponent,
-    canActivate: [rolGuard],
-    data: { expectedRole: 'ADMIN' },
-  },
-  {
-    path: 'admin/users/:userId/hotels/:id',
-    component: HotelRegisterComponent,
-    canActivate: [rolGuard],
+    path: 'admin',
+    canActivateChild: [rolGuardChild],
     data: { expectedRole: 'ADMIN' },
+    loadChildren: () => import('./features/admin').then((m) => m.ADMIN_ROUTES),
   },
-  // {
-  //   path: 'admin/users/:userId/hotels/:id/bookings',
-  //   component: BookingListComponent,
-  //   canActivate: [rolGuard],
-  //   data: { expectedRole: 'ADMIN' },
-  // },
-  // {
-  //   path: 'admin/users/:userId/hotels/:hotelId/rooms/:id/bookings',
-  //   component: BookingListComponent,
-  //   canActivate: [rolGuard],
-  //   data: { expectedRole: 'ADMIN' },
-  // },
-
+  // Página no autorizada
   {
     path: 'unauthorized',
     component: UnauthorizedComponent,
diff --git a/angular/RestClient/src/app/core/features/auth/login/login.component.css b/angular/RestClient/src/app/core/features/auth/login/login.component.css
deleted file mode 100644
index 79b4834ee543b62f19df182154eeb62fa0911db1..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/auth/login/login.component.css
+++ /dev/null
@@ -1,21 +0,0 @@
-.container {
-  max-width: 600px;
-  margin-top: 2rem;
-  padding: 20px;
-  border: 1px solid #ccc;
-  border-radius: 5px;
-  background-color: #f9f9f9;
-}
-
-h2 {
-  text-align: center;
-  margin-bottom: 20px;
-}
-
-.form-group {
-  margin-bottom: 15px;
-}
-
-label {
-  font-weight: bold;
-}
diff --git a/angular/RestClient/src/app/core/features/auth/login/login.component.html b/angular/RestClient/src/app/core/features/auth/login/login.component.html
deleted file mode 100644
index f6fcf96c6ad1294dad508f3a339c7f9f900c4647..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/auth/login/login.component.html
+++ /dev/null
@@ -1,73 +0,0 @@
-<div class="container">
-  <form [formGroup]="loginForm" (ngSubmit)="onSubmit()">
-    <mat-card>
-      <mat-card-title class="flex text-center p-4">
-        <strong class="text-5xl">Login</strong>
-      </mat-card-title>
-      <mat-card-content>
-        <div class="form-group">
-          <label class="text-2xl" for="email">Email:</label>
-          <input
-            id="email"
-            type="email"
-            formControlName="email"
-            class="form-control"
-          />
-          @if (loginForm.get('email')?.invalid &&
-          loginForm.get('email')?.touched) {
-          <div>
-            <small class="text-red-500 font-bold"
-              >Email is required and must be valid.</small
-            >
-          </div>
-          }
-        </div>
-
-        <div class="form-group">
-          <label class="text-2xl" for="password">Password:</label>
-          <input
-            id="password"
-            type="password"
-            formControlName="password"
-            class="form-control"
-          />
-          @if (loginForm.get('password')?.invalid &&
-          loginForm.get('password')?.touched){
-
-          <div>
-            <small class="text-red-500 font-bold">Password is required.</small>
-          </div>
-          }
-        </div>
-
-        <div class="form-group text-2xl">
-          <label class="text-2xl" for="rol">Rol:</label>
-          <mat-form-field class="w-full" formControlName="rol">
-            <mat-label class="text-2xl">Seleccione un rol</mat-label>
-            <mat-select [(value)]="selectedRol" name="rol">
-              @for (rol of rolOptions; track rol) {
-              <mat-option [value]="rol">
-                <span class="text-2xl">{{ rol }}</span>
-              </mat-option>
-              }
-            </mat-select>
-          </mat-form-field>
-        </div>
-        <mat-card-actions class="flex justify-center mb-5">
-          <button
-            type="submit"
-            class="btn btn-success text-4xl"
-            [disabled]="loginForm.invalid"
-          >
-            Login
-          </button>
-        </mat-card-actions>
-        @if (errorMessage) {
-        <div class="text-red-500 font-bold">
-          {{ errorMessage }}
-        </div>
-        }
-      </mat-card-content>
-    </mat-card>
-  </form>
-</div>
diff --git a/angular/RestClient/src/app/core/features/auth/login/login.component.spec.ts b/angular/RestClient/src/app/core/features/auth/login/login.component.spec.ts
deleted file mode 100644
index 18f3685d74d58daabcc34d3a66be081c6256a69d..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/auth/login/login.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { LoginComponent } from './login.component';
-
-describe('LoginComponent', () => {
-  let component: LoginComponent;
-  let fixture: ComponentFixture<LoginComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [LoginComponent]
-    })
-    .compileComponents();
-
-    fixture = TestBed.createComponent(LoginComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/core/features/auth/login/login.component.ts b/angular/RestClient/src/app/core/features/auth/login/login.component.ts
deleted file mode 100644
index d3bed7a4132fa619c110a0ebd74c3e8225e16216..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/auth/login/login.component.ts
+++ /dev/null
@@ -1,64 +0,0 @@
-import { Component } from '@angular/core';
-import {
-  FormBuilder,
-  FormGroup,
-  ReactiveFormsModule,
-  Validators,
-} from '@angular/forms';
-import { CommonModule } from '@angular/common';
-import { MatCardModule } from '@angular/material/card';
-import { MatInputModule } from '@angular/material/input';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatSelectModule } from '@angular/material/select';
-import { MatSlideToggleModule } from '@angular/material/slide-toggle';
-import { Router } from '@angular/router';
-import { SessionService } from '../../../../shared/session.service';
-import { UserRol, UserRolesArray } from '../../../../types';
-
-@Component({
-  standalone: true,
-  selector: 'app-login',
-  templateUrl: './login.component.html',
-  styleUrls: ['./login.component.css'],
-  imports: [
-    ReactiveFormsModule,
-    CommonModule,
-    MatCardModule,
-    MatInputModule,
-    MatFormFieldModule,
-    MatSelectModule,
-    MatSlideToggleModule,
-  ],
-})
-export class LoginComponent {
-  loginForm: FormGroup;
-  selectedRol?: UserRol;
-  rolOptions: UserRol[] = UserRolesArray;
-  errorMessage: string | null = null;
-
-  constructor(
-    private fb: FormBuilder,
-    private sessionManager: SessionService,
-    private router: Router
-  ) {
-    this.loginForm = this.fb.group({
-      email: ['', [Validators.required, Validators.email]],
-      password: ['', [Validators.required]],
-    });
-  }
-
-  onSubmit() {
-    if (this.loginForm.valid) {
-      const { email, password } = this.loginForm.value;
-      this.sessionManager.login(email, password).subscribe({
-        next: (response) => {
-          this.router.navigateByUrl(response.mainPage);
-        },
-      });
-    }
-  }
-
-  isAuthenticated(): boolean {
-    return !!localStorage.getItem('authToken');
-  }
-}
diff --git a/angular/RestClient/src/app/core/features/auth/register/register.component.css b/angular/RestClient/src/app/core/features/auth/register/register.component.css
deleted file mode 100644
index 79b4834ee543b62f19df182154eeb62fa0911db1..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/auth/register/register.component.css
+++ /dev/null
@@ -1,21 +0,0 @@
-.container {
-  max-width: 600px;
-  margin-top: 2rem;
-  padding: 20px;
-  border: 1px solid #ccc;
-  border-radius: 5px;
-  background-color: #f9f9f9;
-}
-
-h2 {
-  text-align: center;
-  margin-bottom: 20px;
-}
-
-.form-group {
-  margin-bottom: 15px;
-}
-
-label {
-  font-weight: bold;
-}
diff --git a/angular/RestClient/src/app/core/features/auth/register/register.component.html b/angular/RestClient/src/app/core/features/auth/register/register.component.html
deleted file mode 100644
index 90cc523dc3e5fc2d2a12e9c2f259f5827c0a36ef..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/auth/register/register.component.html
+++ /dev/null
@@ -1,85 +0,0 @@
-<div class="container">
-  <form [formGroup]="registerForm" (ngSubmit)="onSubmit()">
-    <mat-card>
-      <mat-card-title class="flex text-center p-4">
-        <strong class="text-5xl">Regístrate</strong>
-      </mat-card-title>
-
-      <mat-card-content>
-        <div class="form-group">
-          <label class="text-2xl" for="name">Nombre</label>
-          <input
-            id="name"
-            class="form-control"
-            formControlName="name"
-            placeholder="Introduce tu nombre"
-            required
-          />
-          @if (registerForm.get('name')?.invalid &&
-          registerForm.get('name')?.touched) {
-
-          <div>
-            <small class="text-red-500 font-bold">
-              El nombre es obligatorio y debe tener al menos 3 caracteres.
-            </small>
-          </div>
-          }
-        </div>
-
-        <div class="form-group">
-          <label class="text-2xl" for="email">Correo Electrónico</label>
-          <input
-            id="email"
-            type="email"
-            class="form-control"
-            formControlName="email"
-            placeholder="Introduce tu correo"
-            required
-          />
-          @if (registerForm.get('email')?.invalid &&
-          registerForm.get('email')?.touched) {
-          <div>
-            <small class="text-red-500 font-bold">
-              El correo electrónico no es válido.
-            </small>
-          </div>
-          }
-        </div>
-
-        <div class="form-group">
-          <label class="text-2xl" for="password">Contraseña</label>
-          <input
-            id="password"
-            type="password"
-            class="form-control"
-            formControlName="password"
-            placeholder="Introduce tu contraseña"
-            required
-          />
-          @if (registerForm.get('password')?.invalid &&
-          registerForm.get('password')?.touched) {
-          <div>
-            <small class="text-red-500 font-bold">
-              La contraseña debe tener al menos 6 caracteres.
-            </small>
-          </div>
-          }
-        </div>
-        <mat-card-actions class="flex justify-center mb-5">
-          <button
-            type="submit"
-            class="btn btn-success text-4xl"
-            [disabled]="registerForm.invalid"
-          >
-            Registrarse
-          </button>
-        </mat-card-actions>
-        @if (errorMessage) {
-        <div class="text-red-500 font-bold">
-          {{ errorMessage }}
-        </div>
-        }
-      </mat-card-content>
-    </mat-card>
-  </form>
-</div>
diff --git a/angular/RestClient/src/app/core/features/auth/register/register.component.spec.ts b/angular/RestClient/src/app/core/features/auth/register/register.component.spec.ts
deleted file mode 100644
index 757b8952cf4bbb851f3b079286c5c711dad73119..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/auth/register/register.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { RegisterComponent } from './register.component';
-
-describe('RegisterComponent', () => {
-  let component: RegisterComponent;
-  let fixture: ComponentFixture<RegisterComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [RegisterComponent]
-    })
-    .compileComponents();
-
-    fixture = TestBed.createComponent(RegisterComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/core/features/auth/register/register.component.ts b/angular/RestClient/src/app/core/features/auth/register/register.component.ts
deleted file mode 100644
index e594c19b132e84967d2509e2c3e4a5053a66f048..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/auth/register/register.component.ts
+++ /dev/null
@@ -1,79 +0,0 @@
-import { CommonModule } from '@angular/common';
-import { Component } from '@angular/core';
-import {
-  FormBuilder,
-  FormGroup,
-  ReactiveFormsModule,
-  Validators,
-} from '@angular/forms';
-import { MatCardModule } from '@angular/material/card';
-import { MatInputModule } from '@angular/material/input';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import { MatSelectModule } from '@angular/material/select';
-import { MatSlideToggleModule } from '@angular/material/slide-toggle';
-import { Router } from '@angular/router';
-import { AuthClientService } from '../../../../shared/auth-client.service';
-import { SessionService } from '../../../../shared/session.service';
-
-// TODO agregar selector de roles
-
-@Component({
-  standalone: true,
-  selector: 'app-register',
-  templateUrl: './register.component.html',
-  styleUrls: ['./register.component.css'],
-  imports: [
-    ReactiveFormsModule,
-    CommonModule,
-    MatCardModule,
-    MatInputModule,
-    MatFormFieldModule,
-    MatSelectModule,
-    MatSlideToggleModule,
-  ],
-})
-export class RegisterComponent {
-  registerForm: FormGroup;
-  errorMessage: string | null = null;
-
-  constructor(
-    private fb: FormBuilder,
-    private authClient: AuthClientService,
-    private sessionManager: SessionService,
-    private router: Router
-  ) {
-    if (this.sessionManager.isValid()) {
-      const s = this.sessionManager.getSession();
-      console.log({ s });
-    }
-    this.registerForm = this.fb.group({
-      name: ['', [Validators.required, Validators.minLength(3)]],
-      email: ['', [Validators.required, Validators.email]],
-      password: ['', [Validators.required, Validators.minLength(6)]],
-    });
-  }
-
-  onSubmit() {
-    if (this.registerForm.valid) {
-      const { name, email, password } = this.registerForm.value;
-
-      this.authClient.register(name, email, password).subscribe({
-        next: (res: any) => {
-          console.log({ res });
-          this.sessionManager.login(res);
-          alert('Usuario registrado con éxito.');
-          this.router.navigate(['/']); // Redirigir al login
-        },
-        error: (err) => {
-          if (err.error instanceof ErrorEvent) {
-            this.errorMessage = `Error: ${err.error.message}`;
-          } else {
-            // Si el backend devuelve un objeto de error
-            this.errorMessage =
-              err.error.message || 'Ocurrió un error al registrar el usuario.';
-          }
-        },
-      });
-    }
-  }
-}
diff --git a/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.css b/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.css
deleted file mode 100644
index fcbb63ff2da3990e7eb2bffbfedcd84cadac8004..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.css
+++ /dev/null
@@ -1,8 +0,0 @@
-.container {
-  max-width: 1000px;
-  margin-top: 2rem;
-  padding: 20px;
-  border: 1px solid #ccc;
-  border-radius: 5px;
-  background-color: #f9f9f9;
-}
diff --git a/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.html b/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.html
deleted file mode 100644
index 231f1d8fd1b898e90529cf994a333cb986cb8377..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.html
+++ /dev/null
@@ -1,96 +0,0 @@
-<div class="container">
-  <mat-card>
-    <mat-card-title class="flex text-center p-4">
-      <strong class="text-5xl">Registro de Hotel</strong>
-    </mat-card-title>
-
-    <mat-card-content>
-      <div class="form-group text-xl flex justify-center gap-20">
-        <mat-form-field>
-          <mat-label class="text-2xl">Enter a date range</mat-label>
-          <mat-date-range-input [rangePicker]="picker">
-            <input
-              matStartDate
-              placeholder="Start date"
-              (dateInput)="updateStart($event)"
-              (dateChange)="updateStart($event)"
-            />
-            <input
-              matEndDate
-              placeholder="End date"
-              (dateInput)="updateEnd($event)"
-              (dateChange)="updateEnd($event)"
-            />
-          </mat-date-range-input>
-          <mat-datepicker-toggle
-            matIconSuffix
-            [for]="picker"
-          ></mat-datepicker-toggle>
-          <mat-date-range-picker #picker></mat-date-range-picker>
-        </mat-form-field>
-        <mat-form-field>
-          <mat-label class="text-2xl">Hotel</mat-label>
-          <mat-select [(value)]="hotelSelected" class="text-2xl">
-            @for (hotel of hotels; track hotel.id) {
-            <mat-option [value]="hotel" class="text-3xl">{{
-              hotel.name
-            }}</mat-option>
-            }
-          </mat-select>
-        </mat-form-field>
-        <button
-          [disabled]="!this.start || !this.end || !this.hotelSelected"
-          mat-raised-button
-          class="bg-blue-500 rounded-full p-2"
-          (click)="search()"
-        >
-          <img class="w-3/4" src="/search.svg" />
-        </button>
-        <mat-form-field>
-          <mat-label>Filter by Room Type</mat-label>
-          <mat-select
-            [(value)]="roomTypeSelected"
-            (selectionChange)="updateRooms()"
-          >
-            @for (type of roomTypes; track type) {
-            <mat-option [value]="type">{{ type }}</mat-option>
-            }
-          </mat-select>
-        </mat-form-field>
-      </div>
-      <!-- Lista de Habitaciones -->
-      @if (trateRooms.length > 0) {
-      <div class="grid gap-4 text-lg mb-8">
-        <h2 class="text-2xl font-semibold mb-4">Habitaciones Disponibles</h2>
-        <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4">
-          @for(room of trateRooms; track room.id) {
-          <mat-card class="example-card" appearance="outlined">
-            <mat-card-header class="flex justify-center">
-              <mat-card-title>
-                <strong
-                  >(#{{ $index + 1 }}) Habitación {{ room.roomNumber }}
-                </strong>
-                <span class="italic">({{ room.type }})</span>
-              </mat-card-title>
-            </mat-card-header>
-            <mat-card-content class="mt-4">
-              <button
-                mat-raised-button
-                class="w-full text-center py-3 rounded-lg shadow-md hover:shadow-lg text-3xl bg-sky-600 text-slate-200 font-bold"
-                (click)="bookingRoom(room.id)"
-              >
-                Reservar
-              </button>
-            </mat-card-content>
-          </mat-card>
-          }
-        </div>
-      </div>
-      } @else if (searched) {
-      <div class="text-center text-lg">
-        <p>No hay habitaciones disponibles</p>
-      </div>
-      }
-    </mat-card-content>
-  </mat-card>
-</div>
diff --git a/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.spec.ts b/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.spec.ts
deleted file mode 100644
index f6b1910a567d3ff00efa491436359519ee52632d..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { BookingListComponent } from './booking-list.component';
-
-describe('BookingListComponent', () => {
-  let component: BookingListComponent;
-  let fixture: ComponentFixture<BookingListComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [BookingListComponent]
-    })
-    .compileComponents();
-
-    fixture = TestBed.createComponent(BookingListComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.ts b/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.ts
deleted file mode 100644
index 0e573456823b7cc0cbb4e098075f835141678a21..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/bookings/booking-list/booking-list.component.ts
+++ /dev/null
@@ -1,109 +0,0 @@
-import { Component } from '@angular/core';
-import { MatFormFieldModule } from '@angular/material/form-field';
-import {
-  MatDatepickerInputEvent,
-  MatDatepickerModule,
-} from '@angular/material/datepicker';
-import { FormsModule } from '@angular/forms';
-import { MatInputModule } from '@angular/material/input';
-import { MatSelectModule } from '@angular/material/select';
-import { Hotel, Room, RoomType, roomTypeArray } from '../../../../types';
-import { Router } from '@angular/router';
-import { MatCardModule } from '@angular/material/card';
-import { MatChipsModule } from '@angular/material/chips';
-import { LocalStorageService } from '../../../../shared/local-storage.service';
-import { HotelClientService } from '../../../../shared/hotel-client.service';
-
-type SelectableRoomType = 'All' | RoomType;
-const selectableRoomTypeArray: SelectableRoomType[] = ['All', ...roomTypeArray];
-
-@Component({
-  selector: 'app-booking-list',
-  standalone: true,
-  imports: [
-    MatCardModule,
-    MatChipsModule,
-    MatFormFieldModule,
-    MatDatepickerModule,
-    MatCardModule,
-    MatFormFieldModule,
-    MatSelectModule,
-    MatInputModule,
-    FormsModule,
-  ],
-  templateUrl: './booking-list.component.html',
-  styleUrl: './booking-list.component.css',
-})
-export class BookingListComponent {
-  searched: boolean = false;
-  hotels!: Hotel[];
-  start?: Date;
-  end?: Date;
-  hotelSelected?: Hotel;
-  roomTypeSelected?: SelectableRoomType;
-  roomTypes = selectableRoomTypeArray;
-  rooms: Room[] = [];
-  trateRooms: Room[] = [];
-
-  constructor(
-    private router: Router,
-    private hotelClient: HotelClientService,
-    private storage: LocalStorageService
-  ) {}
-
-  ngOnInit() {
-    this.getHotels();
-  }
-
-  getHotels() {
-    this.hotelClient.getAllHotels().subscribe({
-      next: (resp) => {
-        if (resp != null) this.hotels = [...resp];
-      },
-      error(err) {
-        console.log('Error al traer la lista: ' + err.message);
-        throw err;
-      },
-    });
-  }
-
-  updateStart(event: MatDatepickerInputEvent<Date>) {
-    this.start = event.value!;
-  }
-
-  updateEnd(event: MatDatepickerInputEvent<Date>) {
-    this.end = event.value!;
-  }
-
-  search() {
-    this.hotelClient
-      .getRoomsAvailableInDateRange(
-        this.hotelSelected!.id,
-        this.start!,
-        this.end!
-      )
-      .subscribe({
-        next: (resp) => {
-          this.rooms = resp;
-          this.updateRooms();
-        },
-      });
-  }
-
-  updateRooms() {
-    this.searched = true;
-    this.trateRooms =
-      this.roomTypeSelected && this.roomTypeSelected !== 'All'
-        ? this.rooms.filter((room) => room.type === this.roomTypeSelected)
-        : this.rooms;
-  }
-
-  bookingRoom(roomId: number) {
-    this.storage.save('booking-data', {
-      roomId,
-      startDate: this.start,
-      endDate: this.end,
-    });
-    this.router.navigate(['/bookings', 'new'], { queryParams: { roomId } });
-  }
-}
diff --git a/angular/RestClient/src/app/core/features/bookings/booking/booking.component.spec.ts b/angular/RestClient/src/app/core/features/bookings/booking/booking.component.spec.ts
deleted file mode 100644
index 5cfaef60aecb9a8a1c93f2b210c55e336ba27684..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/bookings/booking/booking.component.spec.ts
+++ /dev/null
@@ -1,56 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-import { ReactiveFormsModule } from '@angular/forms';
-import { BookingComponent } from './booking.component';
-import { BookingService } from '../../../../shared/booking.service';
-import { of } from 'rxjs';
-
-class MockBookingService {
-  createBooking() {
-    return of({}); // Simula una respuesta exitosa
-  }
-}
-
-describe('BookingComponent', () => {
-  let component: BookingComponent;
-  let fixture: ComponentFixture<BookingComponent>;
-  let bookingService: BookingService;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      declarations: [BookingComponent],
-      imports: [ReactiveFormsModule],
-      providers: [{ provide: BookingService, useClass: MockBookingService }],
-    }).compileComponents();
-
-    fixture = TestBed.createComponent(BookingComponent);
-    component = fixture.componentInstance;
-    bookingService = TestBed.inject(BookingService);
-    fixture.detectChanges();
-  });
-
-  it('should create the component', () => {
-    expect(component).toBeTruthy();
-  });
-
-  it('should have a valid form when all fields are filled', () => {
-    component.bookingForm.controls['userId'].setValue(1);
-    component.bookingForm.controls['hotelId'].setValue(1);
-    component.bookingForm.controls['roomType'].setValue('single');
-    component.bookingForm.controls['startDate'].setValue('2024-10-01');
-    component.bookingForm.controls['endDate'].setValue('2024-10-05');
-
-    expect(component.bookingForm.valid).toBeTrue();
-  });
-
-  it('should submit booking when form is valid', () => {
-    spyOn(bookingService, 'createBooking').and.callThrough();
-    component.bookingForm.controls['userId'].setValue(1);
-    component.bookingForm.controls['hotelId'].setValue(1);
-    component.bookingForm.controls['roomType'].setValue('single');
-    component.bookingForm.controls['startDate'].setValue('2024-10-01');
-    component.bookingForm.controls['endDate'].setValue('2024-10-05');
-
-    component.submitBooking();
-    expect(bookingService.createBooking).toHaveBeenCalled();
-  });
-});
diff --git a/angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.spec.ts b/angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.spec.ts
deleted file mode 100644
index ecc47151bf323959f0871b28bf1a09980e6b6702..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { HotelListComponent } from './hotel-list.component';
-
-describe('HotelListComponent', () => {
-  let component: HotelListComponent;
-  let fixture: ComponentFixture<HotelListComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [HotelListComponent]
-    })
-    .compileComponents();
-
-    fixture = TestBed.createComponent(HotelListComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/core/features/hotel/hotel-register/hotel-register.component.spec.ts b/angular/RestClient/src/app/core/features/hotel/hotel-register/hotel-register.component.spec.ts
deleted file mode 100644
index 7c085a3a8e7f1451e531f12d96d0049bb6b8a319..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/hotel/hotel-register/hotel-register.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { HotelRegisterComponent } from './hotel-register.component';
-
-describe('HotelRegisterComponent', () => {
-  let component: HotelRegisterComponent;
-  let fixture: ComponentFixture<HotelRegisterComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [HotelRegisterComponent]
-    })
-    .compileComponents();
-
-    fixture = TestBed.createComponent(HotelRegisterComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/core/features/user/main-page/main-page.component.spec.ts b/angular/RestClient/src/app/core/features/user/main-page/main-page.component.spec.ts
deleted file mode 100644
index 40d589a21205dbd8b271cf4f441e0dfd44ed37ca..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/user/main-page/main-page.component.spec.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-import { MainPageComponent } from './main-page.component';
-
-describe('MainPageComponent', () => {
-  let component: MainPageComponent;
-  let fixture: ComponentFixture<MainPageComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [MainPageComponent]
-    })
-    .compileComponents();
-
-    fixture = TestBed.createComponent(MainPageComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.spec.ts b/angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.spec.ts
deleted file mode 100644
index aae5d913c76b3f160908b0f5302bd80e29e94082..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { UserBookingListComponent } from './user-booking-list.component';
-
-describe('UserBookingListComponent', () => {
-  let component: UserBookingListComponent;
-  let fixture: ComponentFixture<UserBookingListComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [UserBookingListComponent]
-    })
-    .compileComponents();
-
-    fixture = TestBed.createComponent(UserBookingListComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/core/features/user/user-form/user-form.component.spec.ts b/angular/RestClient/src/app/core/features/user/user-form/user-form.component.spec.ts
deleted file mode 100644
index 292f234075dbcba5482794cf23e4a231e666ba17..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/features/user/user-form/user-form.component.spec.ts
+++ /dev/null
@@ -1,91 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-import { FormsModule, ReactiveFormsModule } from '@angular/forms';
-import { HttpResponse } from '@angular/common/http';
-import { UserFormComponent } from './user-form.component';
-import { UserClientService } from '../../../../shared/user-client.service';
-import { of } from 'rxjs';
-
-describe('UserFormComponent', () => {
-  let component: UserFormComponent;
-  let fixture: ComponentFixture<UserFormComponent>;
-  let userService: UserClientService;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [ReactiveFormsModule, FormsModule],
-      declarations: [UserFormComponent],
-      providers: [UserClientService],
-    }).compileComponents();
-
-    fixture = TestBed.createComponent(UserFormComponent);
-    component = fixture.componentInstance;
-    userService = TestBed.inject(UserClientService);
-
-    spyOn(userService, 'getCurrentUser').and.returnValue(
-      of({
-        id: 1,
-        name: 'John Doe',
-        email: 'johndoe@example.com',
-        rol: 'CONSUMER',
-        status: 'WITH_ACTIVE_BOOKINGS',
-      })
-    );
-
-    spyOn(userService, 'updateUser').and.returnValue(of(new HttpResponse({ body: 'User updated successfully' })));
-    spyOn(userService, 'updatePassword').and.returnValue(of(new HttpResponse({ body: 'Password updated successfully' })));
-
-    fixture.detectChanges();
-  });
-
-  it('should create the component', () => {
-    expect(component).toBeTruthy();
-  });
-
-  it('should load user data on initialization', () => {
-    expect(component.userForm.value).toEqual({
-      name: 'John Doe',
-      email: 'johndoe@example.com',
-      password: '',
-      confirmPassword: '',
-    });
-  });
-
-  it('should call updateUser when saving valid user data', () => {
-    component.userForm.patchValue({
-      name: 'Jane Doe',
-      email: 'janedoe@example.com',
-    });
-
-    component.saveChanges();
-
-    expect(userService.updateUser).toHaveBeenCalledWith({
-      name: 'Jane Doe',
-      email: 'janedoe@example.com',
-    });
-  });
-
-  it('should call updatePassword when password is updated and matches confirmPassword', () => {
-    component.userForm.patchValue({
-      password: 'newpassword123',
-      confirmPassword: 'newpassword123',
-    });
-
-    component.saveChanges();
-
-    expect(userService.updatePassword).toHaveBeenCalledWith(
-      '',
-      'newpassword123'
-    );
-  });
-
-  it('should not call updatePassword if password and confirmPassword do not match', () => {
-    component.userForm.patchValue({
-      password: 'newpassword123',
-      confirmPassword: 'differentpassword',
-    });
-
-    component.saveChanges();
-
-    expect(userService.updatePassword).not.toHaveBeenCalled();
-  });
-});
diff --git a/angular/RestClient/src/app/core/guards/index.ts b/angular/RestClient/src/app/core/guards/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..7c221e12c653c53b072a570f871bdbdc37d3909e
--- /dev/null
+++ b/angular/RestClient/src/app/core/guards/index.ts
@@ -0,0 +1 @@
+export * from './rol.guard';
diff --git a/angular/RestClient/src/app/core/guards/rol.guard.ts b/angular/RestClient/src/app/core/guards/rol.guard.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c00bdb92e47666fb1ebdf3b992b55f8f5d4e3e28
--- /dev/null
+++ b/angular/RestClient/src/app/core/guards/rol.guard.ts
@@ -0,0 +1,83 @@
+import { inject } from '@angular/core';
+import {
+  ActivatedRouteSnapshot,
+  CanActivateChildFn,
+  CanActivateFn,
+  Router,
+} from '@angular/router';
+import { Session } from '@core/models/Session.interface';
+import { UserRol } from '../../features/users/types/User.interface';
+import { SessionService } from '@core/services';
+
+import { map } from 'rxjs';
+
+/**
+ * Obtiene el rol de la ruta padre si el hijo no define uno.
+ * Navega hacia los ancestros buscando un rol especificado en `data`.
+ */
+function getInheritedRole(route: ActivatedRouteSnapshot): string | undefined {
+  let parent = route.parent; // Comenzar desde el padre inmediato
+  while (parent) {
+    if (parent.data && parent.data['rol']) {
+      return parent.data['rol']; // Retorna el primer rol encontrado
+    }
+    parent = parent.parent; // Continuar hacia arriba en el árbol
+  }
+  return undefined; // No se encontró un rol definido en los ancestros
+}
+
+function verifyRol(expectedRole: UserRol) {
+  const sessionService = inject(SessionService);
+  const router = inject(Router);
+  // Verifica si el usuario tiene sesión activa
+  const session = sessionService.isValid();
+
+  if (!session) {
+    console.log('no session');
+    router.navigateByUrl(`/login?redirect=${router.url}`);
+    return false;
+  }
+
+  if (!expectedRole) {
+    console.log('any rol required');
+    return true;
+  }
+
+  return sessionService.getSession().pipe(
+    map((session: Session | null) => {
+      if (!session) return false;
+
+      if (
+        Array.isArray(expectedRole) &&
+        !(expectedRole as UserRol[]).includes(session.rol)
+      ) {
+        console.log('Rol in Rol array');
+        return true;
+      } else if (session.rol === expectedRole) {
+        console.log('Rol valido');
+        return true;
+      }
+      console.log('Unauthorized');
+
+      // Redirige si el usuario no tiene el rol necesario
+      router.navigate(['/unauthorized']);
+      return false;
+    })
+  );
+}
+
+export const rolGuard: CanActivateFn = (route, state) => {
+  // Obtén el rol esperado desde los datos de la ruta
+  const expectedRole = route.data?.['expectedRole'];
+  return verifyRol(expectedRole);
+};
+
+export const rolGuardChild: CanActivateChildFn = (childRoute, state) => {
+  // Obtener el rol de la ruta hija si está especificado y en caso
+  // de no especificarse se busca en el/los padres
+  let requiredRol =
+    childRoute.data['expectedRole'] ?? getInheritedRole(childRoute);
+
+  // Verificar si el usuario tiene el rol requerido
+  return verifyRol(requiredRol);
+};
diff --git a/angular/RestClient/src/app/security/auth.interceptor.ts b/angular/RestClient/src/app/core/interceptors/auth.interceptor.ts
similarity index 88%
rename from angular/RestClient/src/app/security/auth.interceptor.ts
rename to angular/RestClient/src/app/core/interceptors/auth.interceptor.ts
index 4a3dadfdaa637c526d0beb436546a9117359f49f..11c9d68089278f997f5c0d4bc0360144f9cf1af9 100644
--- a/angular/RestClient/src/app/security/auth.interceptor.ts
+++ b/angular/RestClient/src/app/core/interceptors/auth.interceptor.ts
@@ -1,7 +1,6 @@
 import { HttpInterceptorFn } from '@angular/common/http';
 import { inject } from '@angular/core';
-import { LocalStorageService } from '../shared/local-storage.service';
-import { SessionService } from '../shared/session.service';
+import { SessionService } from '@core/services/session/session.service';
 
 const excluded = ['/login', '/register'];
 
diff --git a/angular/RestClient/src/app/core/interceptors/index.ts b/angular/RestClient/src/app/core/interceptors/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..c59f58f0962748f55ad8510233508f2e2c9ad3e0
--- /dev/null
+++ b/angular/RestClient/src/app/core/interceptors/index.ts
@@ -0,0 +1 @@
+export * from './auth.interceptor';
diff --git a/angular/RestClient/src/app/core/models/Route.interface.ts b/angular/RestClient/src/app/core/models/Route.interface.ts
new file mode 100644
index 0000000000000000000000000000000000000000..69ba0f2e9a0e8d9b729e47a155c9ccc1e902250d
--- /dev/null
+++ b/angular/RestClient/src/app/core/models/Route.interface.ts
@@ -0,0 +1,10 @@
+import { Route } from '@angular/router';
+import { UserRol } from '../../features/users/types/User.interface';
+
+type RolledRoute = {
+  expectedRole?: UserRol | UserRol[];
+};
+
+export type AppRoute<T = {}> = Omit<Route, 'data'> & {
+  data?: RolledRoute & T;
+};
diff --git a/angular/RestClient/src/app/types/Session.d.ts b/angular/RestClient/src/app/core/models/Session.interface.ts
similarity index 56%
rename from angular/RestClient/src/app/types/Session.d.ts
rename to angular/RestClient/src/app/core/models/Session.interface.ts
index 4dd1f742866d586be8be2ac02487d23ede92a486..8afb809bc75590f009ad4c1d7f934d546e855103 100644
--- a/angular/RestClient/src/app/types/Session.d.ts
+++ b/angular/RestClient/src/app/core/models/Session.interface.ts
@@ -1,3 +1,5 @@
+import { UserRol } from '../../features/users/types/User.interface';
+
 export interface Session {
   id: number;
   name: string;
@@ -5,7 +7,7 @@ export interface Session {
   rol: UserRol;
 }
 
-interface PersistenToken {
+export interface PersistenToken {
   token: string;
   session?: Session;
 }
diff --git a/angular/RestClient/src/app/core/models/index.ts b/angular/RestClient/src/app/core/models/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..06f0d8da74072ca17f003bed4c15cc690732d8a8
--- /dev/null
+++ b/angular/RestClient/src/app/core/models/index.ts
@@ -0,0 +1,2 @@
+export * from "./Route.interface"
+export * from "./Session.interface"
\ No newline at end of file
diff --git a/angular/RestClient/src/app/core/navigation/navigation.component.spec.ts b/angular/RestClient/src/app/core/navigation/navigation.component.spec.ts
deleted file mode 100644
index a161d3121330b48782b4b9f80a5060f1b5ab7c53..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/core/navigation/navigation.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { NavigationComponent } from './navigation.component';
-
-describe('NavigationComponent', () => {
-  let component: NavigationComponent;
-  let fixture: ComponentFixture<NavigationComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [NavigationComponent]
-    })
-    .compileComponents();
-
-    fixture = TestBed.createComponent(NavigationComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/core/services/api/auth/auth-client.service.ts b/angular/RestClient/src/app/core/services/api/auth/auth-client.service.ts
new file mode 100644
index 0000000000000000000000000000000000000000..acc7960912927cd746da7ef1ada81b89d50d1bab
--- /dev/null
+++ b/angular/RestClient/src/app/core/services/api/auth/auth-client.service.ts
@@ -0,0 +1,38 @@
+import { Injectable } from '@angular/core';
+import { environment } from '../../../../../environments/environment';
+import { HttpClient } from '@angular/common/http';
+
+@Injectable({
+  providedIn: 'root',
+})
+export class AuthClientService {
+  private readonly URI = environment.authAPI;
+
+  constructor(private http: HttpClient) {}
+
+  login(email: String, password: String) {
+    return this.http.post(`${this.URI}/login`, { email, password });
+  }
+
+  register(name: String, email: String, password: String, rol?: String) {
+    return this.http.post(`${this.URI}/register`, {
+      name,
+      email,
+      password,
+      rol,
+    });
+  }
+
+  changePassword(data: {
+    email: String;
+    password: String;
+    newPassword: String;
+  }) {
+    console.log(data);
+    return this.http.post(`${this.URI}/password`, data);
+  }
+
+  deleteUser(userId: number, password: String) {
+    return this.http.post(`${this.URI}/delete/${userId}`, { password });
+  }
+}
diff --git a/angular/RestClient/src/app/shared/booking-client.service.ts b/angular/RestClient/src/app/core/services/api/bookings/booking-client.service.ts
similarity index 78%
rename from angular/RestClient/src/app/shared/booking-client.service.ts
rename to angular/RestClient/src/app/core/services/api/bookings/booking-client.service.ts
index a15867105f00cf0bd6ea093a4a64bebbb3fd048f..5f206025b7d53cb077a96880de8fe1e1477d9c11 100644
--- a/angular/RestClient/src/app/shared/booking-client.service.ts
+++ b/angular/RestClient/src/app/core/services/api/bookings/booking-client.service.ts
@@ -1,8 +1,8 @@
 import { Injectable } from '@angular/core';
 import { HttpClient, HttpHeaders } from '@angular/common/http';
 import { Observable } from 'rxjs';
-import { environment } from '../../environments/environment';
-import { Booking } from '../types/Booking'; // Ajusta la ruta a tu modelo Booking
+import { environment } from '../../../../../environments/environment';
+import { Booking } from '@features/bookings';
 
 @Injectable({
   providedIn: 'root',
@@ -14,9 +14,9 @@ export class BookingClientService {
 
   // Método para crear una nueva reserva
   createBooking(bookingRequest: Booking): Observable<Booking> {
-    const { startDate, endDate } = bookingRequest;
-    const end = endDate.toISOString();
-    console.log({ bookingRequest, end });
+    const { start, end } = bookingRequest;
+    const endDate = end.toISOString();
+    console.log({ bookingRequest, end: endDate });
 
     return this.http.post<Booking>(this.URI, bookingRequest);
   }
diff --git a/angular/RestClient/src/app/shared/hotel-client.service.ts b/angular/RestClient/src/app/core/services/api/hotels/hotel-client.service.ts
similarity index 74%
rename from angular/RestClient/src/app/shared/hotel-client.service.ts
rename to angular/RestClient/src/app/core/services/api/hotels/hotel-client.service.ts
index 5c50231651d1e0bc61b036e3e1220d468009a4f8..3a3fe7b0883978b2228dbad54895fca2c0f3f3ef 100644
--- a/angular/RestClient/src/app/shared/hotel-client.service.ts
+++ b/angular/RestClient/src/app/core/services/api/hotels/hotel-client.service.ts
@@ -1,9 +1,9 @@
 import { Injectable } from '@angular/core';
-import { environment } from '../../environments/environment';
+import { environment } from '../../../../../environments/environment';
 import { HttpClient } from '@angular/common/http';
-import { Hotel, Room } from '../types';
-import { SessionService } from './session.service';
+import { SessionService } from '../../session/session.service';
 import { catchError, map, switchMap, throwError } from 'rxjs';
+import { Hotel, Room } from '@features/hotels';
 
 @Injectable({
   providedIn: 'root',
@@ -20,21 +20,24 @@ export class HotelClientService {
     return this.http.get<Hotel>(url);
   }
 
-  getAllHotels(startDate?: Date, endDate?: Date) {
+  getAllHotels(start?: string, end?: string) {
     const url = `${this.URI}`;
-    if (!startDate || !endDate) return this.http.get<Hotel[]>(url);
-    const start = new Date(startDate).toISOString().split('T')[0];
-    const end = new Date(endDate).toISOString().split('T')[0];
+    console.log({ start, end });
+
+    if (!start || !end) return this.http.get<Hotel[]>(url);
+
     return this.http.get<Hotel[]>(url, { params: { start, end } });
   }
 
-  getAllHotelsByUser(userId:number, startDate?: Date, endDate?: Date) {
+  getAllHotelsByUser(userId: number, startDate?: Date, endDate?: Date) {
     const url = `${this.URI}`;
     if (!startDate || !endDate)
-      return this.http.get<Hotel[]>(url, { params: { managerId:userId } });
+      return this.http.get<Hotel[]>(url, { params: { managerId: userId } });
     const start = new Date(startDate).toISOString().split('T')[0];
     const end = new Date(endDate).toISOString().split('T')[0];
-    return this.http.get<Hotel[]>(url, { params: { managerId:userId, start, end } });
+    return this.http.get<Hotel[]>(url, {
+      params: { managerId: userId, start, end },
+    });
   }
 
   deleteHotel(id: number) {
@@ -50,7 +53,7 @@ export class HotelClientService {
           throw new Error('No session found');
         }
         const { id } = session;
-        const hotelWithHM = { ...hotel, hotelManager: { id } };
+        const hotelWithHM = { ...hotel, managerId: id };
         return hotelWithHM;
       }),
       switchMap((hotelWithHM) =>
diff --git a/angular/RestClient/src/app/shared/user-client.service.ts b/angular/RestClient/src/app/core/services/api/users/user-client.service.ts
similarity index 68%
rename from angular/RestClient/src/app/shared/user-client.service.ts
rename to angular/RestClient/src/app/core/services/api/users/user-client.service.ts
index 63575df4f440973090cde151f50137fb002b9d5d..16c2aab40eaa617429633a1a8f04da0bc53124f4 100644
--- a/angular/RestClient/src/app/shared/user-client.service.ts
+++ b/angular/RestClient/src/app/core/services/api/users/user-client.service.ts
@@ -1,9 +1,10 @@
 import { HttpClient } from '@angular/common/http';
 import { Injectable } from '@angular/core';
-import { environment } from '../../environments/environment';
-import { Client, Session, User, UserState } from '../types';
-import { SessionService } from './session.service';
+import { environment } from '../../../../../environments/environment';
+import { SessionService } from '../../session/session.service';
 import { tap } from 'rxjs';
+import { Client, ClientState, User } from '@features/users';
+import { Session } from '@core/models';
 
 @Injectable({
   providedIn: 'root',
@@ -29,7 +30,7 @@ export class UserClientService {
   }
 
   // Cambiar estado de un usuario
-  alterUserStatus(userId: number, status: UserState) {
+  alterUserStatus(userId: number, status: ClientState) {
     return this.http.patch(
       `${this.URI}/${userId}`,
       {
@@ -53,16 +54,4 @@ export class UserClientService {
       })
     );
   }
-
-  // Cambiar la contraseña del usuario
-  updatePassword(currentPassword: string, newPassword: string) {
-    return this.http.patch(
-      `${this.URI}/me/password`,
-      { currentPassword, newPassword },
-      {
-        observe: 'response',
-        responseType: 'text',
-      }
-    );
-  }
 }
diff --git a/angular/RestClient/src/app/core/services/index.ts b/angular/RestClient/src/app/core/services/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..deceec994328a11a1cff59c7492ee2cfca98d087
--- /dev/null
+++ b/angular/RestClient/src/app/core/services/index.ts
@@ -0,0 +1,6 @@
+export * from './api/auth/auth-client.service';
+export * from './api/bookings/booking-client.service';
+export * from './api/hotels/hotel-client.service';
+export * from './api/users/user-client.service';
+export * from './session/session.service';
+export * from './storage/local-storage.service';
diff --git a/angular/RestClient/src/app/shared/session.service.ts b/angular/RestClient/src/app/core/services/session/session.service.ts
similarity index 83%
rename from angular/RestClient/src/app/shared/session.service.ts
rename to angular/RestClient/src/app/core/services/session/session.service.ts
index c654e45b787c55dcfe7eae814056c55f6b87549d..cda0905c23e46793c5e81629c86ccad4c02463e8 100644
--- a/angular/RestClient/src/app/shared/session.service.ts
+++ b/angular/RestClient/src/app/core/services/session/session.service.ts
@@ -1,11 +1,21 @@
 import { Injectable } from '@angular/core';
-import { LocalStorageService } from './local-storage.service';
-import { PersistenToken, Session, UserRol } from '../types';
+import { LocalStorageService } from '../storage/local-storage.service';
+import { Session, PersistenToken } from '../../models/Session.interface';
 import { BehaviorSubject, Observable, throwError } from 'rxjs';
 import { catchError, map, tap } from 'rxjs/operators';
 import { jwtDecode } from 'jwt-decode';
-import { AuthClientService } from './auth-client.service';
+import { AuthClientService } from '../api/auth/auth-client.service';
 import { Router } from '@angular/router';
+import { UserRol } from '@features/users/types/User.interface';
+
+interface JWTDecoded {
+  id: number;
+  rol: UserRol;
+  name: string;
+  email: string;
+  iat: number;
+  exp: number;
+}
 
 @Injectable({
   providedIn: 'root',
@@ -22,7 +32,6 @@ export class SessionService {
   ) {
     // Inicializar el estado de sesión desde el token almacenado
     const initialSession = this.loadSessionFromToken();
-    console.log({ initialSession });
 
     this.session$ = new BehaviorSubject<Session | null>(initialSession);
   }
@@ -32,10 +41,12 @@ export class SessionService {
   }
 
   private setSession(resp: any) {
-    const decoded = jwtDecode<{ user: Session }>(resp.token);
-    this.session$.next(decoded.user);
-    this.storage.save(this.tokenKey, { ...resp, session: decoded.user });
-    const mainPage = this.getMainPage(decoded.user.rol as UserRol);
+    const decoded = jwtDecode<JWTDecoded>(resp.token);
+    const user: Session = { ...decoded };
+    console.log({ user, decoded, resp });
+    this.session$.next(user);
+    this.storage.save(this.tokenKey, { ...resp, session: user });
+    const mainPage = this.getMainPage(user.rol as UserRol);
     return { ...resp, mainPage };
   }
 
@@ -44,7 +55,7 @@ export class SessionService {
    */
   login(email: string, password: string): Observable<any> {
     return this.authService.login(email, password).pipe(
-      map((r) => this.setSession(r)),
+      map((response) => this.setSession(response)),
       catchError((error) => {
         console.error('Login failed', error);
         return throwError(() => new Error('Login failed'));
@@ -148,9 +159,6 @@ export class SessionService {
    */
   private loadSessionFromToken(): Session | null {
     try {
-      // const token = this.getToken();
-      // const decoded = jwtDecode<{ user: Session }>(token);
-      // return decoded.user;
       return this.getSaved()!.session!;
     } catch {
       return null; // Retornar null si no hay token válido.
diff --git a/angular/RestClient/src/app/shared/local-storage.service.ts b/angular/RestClient/src/app/core/services/storage/local-storage.service.ts
similarity index 100%
rename from angular/RestClient/src/app/shared/local-storage.service.ts
rename to angular/RestClient/src/app/core/services/storage/local-storage.service.ts
diff --git a/angular/RestClient/src/app/features/admin/index.ts b/angular/RestClient/src/app/features/admin/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..75585f85e1a443e22e77ca151df63981df56b2c4
--- /dev/null
+++ b/angular/RestClient/src/app/features/admin/index.ts
@@ -0,0 +1 @@
+export * from '../users/admin.routes';
diff --git a/angular/RestClient/src/app/features/auth/auth.routes.ts b/angular/RestClient/src/app/features/auth/auth.routes.ts
new file mode 100644
index 0000000000000000000000000000000000000000..25eea2cc25153d022df991d8341974e8a9810ae9
--- /dev/null
+++ b/angular/RestClient/src/app/features/auth/auth.routes.ts
@@ -0,0 +1,23 @@
+import { UserFormComponent } from 'app/features/users';
+import { UserFormRoute } from 'app/features/users/types/UserFormData';
+
+export const AUTH_ROUTES: UserFormRoute[] = [
+  {
+    path: 'login',
+    data: {
+      mode: {
+        formMode: 'LOGIN',
+      },
+    },
+    component: UserFormComponent,
+  },
+  {
+    path: 'register',
+    data: {
+      mode: {
+        formMode: 'REGISTER',
+      },
+    },
+    component: UserFormComponent,
+  },
+];
diff --git a/angular/RestClient/src/app/features/auth/index.ts b/angular/RestClient/src/app/features/auth/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..358e0c5d209b4b90f9c6ae85f6726cd5851e9a57
--- /dev/null
+++ b/angular/RestClient/src/app/features/auth/index.ts
@@ -0,0 +1 @@
+export * from './auth.routes';
diff --git a/angular/RestClient/src/app/core/features/bookings/booking/booking.component.css b/angular/RestClient/src/app/features/bookings/booking/booking.component.css
similarity index 100%
rename from angular/RestClient/src/app/core/features/bookings/booking/booking.component.css
rename to angular/RestClient/src/app/features/bookings/booking/booking.component.css
diff --git a/angular/RestClient/src/app/core/features/bookings/booking/booking.component.html b/angular/RestClient/src/app/features/bookings/booking/booking.component.html
similarity index 70%
rename from angular/RestClient/src/app/core/features/bookings/booking/booking.component.html
rename to angular/RestClient/src/app/features/bookings/booking/booking.component.html
index fb7485fc16360e63fe916ee75b1f53f320895776..9cd9a6176e0307730b4e760e95699ca2a07e5910 100644
--- a/angular/RestClient/src/app/core/features/bookings/booking/booking.component.html
+++ b/angular/RestClient/src/app/features/bookings/booking/booking.component.html
@@ -26,23 +26,13 @@
     </div>
 
     <div class="form-group">
-      <label for="startDate">Fecha de Inicio (mm/dd/yyyy):</label>
-      <input
-        type="date"
-        id="startDate"
-        formControlName="startDate"
-        class="form-control"
-      />
+      <label for="start">Fecha de Inicio (dd/mm/yyyy):</label>
+      <input id="start" formControlName="start" class="form-control" />
     </div>
 
     <div class="form-group">
-      <label for="endDate">Fecha de Fin (mm/dd/yyyy):</label>
-      <input
-        type="date"
-        id="endDate"
-        formControlName="endDate"
-        class="form-control"
-      />
+      <label for="end">Fecha de Fin (dd/mm/yyyy):</label>
+      <input id="end" formControlName="end" class="form-control" />
     </div>
 
     <button type="submit" class="btn btn-primary">Reservar</button>
diff --git a/angular/RestClient/src/app/core/features/bookings/booking/booking.component.ts b/angular/RestClient/src/app/features/bookings/booking/booking.component.ts
similarity index 57%
rename from angular/RestClient/src/app/core/features/bookings/booking/booking.component.ts
rename to angular/RestClient/src/app/features/bookings/booking/booking.component.ts
index 6691027e241bff16a2b25fb71e23a1309ec1929e..d39a3024544eb1ca72c1152ce2284672963e6f32 100644
--- a/angular/RestClient/src/app/core/features/bookings/booking/booking.component.ts
+++ b/angular/RestClient/src/app/features/bookings/booking/booking.component.ts
@@ -7,16 +7,19 @@ import {
 } from '@angular/forms';
 
 import { ActivatedRoute, Router } from '@angular/router';
-import { Booking, User } from '../../../../types';
-import { LocalStorageService } from '../../../../shared/local-storage.service';
-import { BookingClientService } from '../../../../shared/booking-client.service';
-import { UserClientService } from '../../../../shared/user-client.service';
-import { SessionService } from '../../../../shared/session.service';
+import { Booking } from '@features/bookings';
+import { User } from '@features/users';
+import { LocalStorageService } from '../../../core/services/storage/local-storage.service';
+import { BookingClientService } from '../../../core/services/api/bookings/booking-client.service';
+import { UserClientService } from '../../../core/services/api/users/user-client.service';
+import { SessionService } from '../../../core/services/session/session.service';
 
 type communication = {
   roomId: number;
-  startDate: Date;
-  endDate: Date;
+  start: Date;
+  end: Date;
+  hotelId: number;
+  managerId: number;
 };
 
 @Component({
@@ -29,12 +32,19 @@ type communication = {
 export class BookingComponent {
   user: User = { id: 0, email: '', name: '', rol: 'CLIENT' };
   bookingForm: FormGroup;
-  bookingLocal: { roomId: number; startDate: Date; endDate: Date } = {
+  bookingLocal: {
+    roomId: number;
+    start: Date;
+    end: Date;
+    hotelId: number;
+    managerId: number;
+  } = {
     roomId: 0,
-    endDate: new Date(),
-    startDate: new Date(),
+    end: new Date(),
+    start: new Date(),
+    hotelId: 0,
+    managerId: 0,
   };
-  roomId: number = 0;
 
   constructor(
     private router: Router,
@@ -42,32 +52,32 @@ export class BookingComponent {
     private fb: FormBuilder,
     private sessionService: SessionService,
     private bookingClient: BookingClientService,
-    private userClient: UserClientService,
     private storage: LocalStorageService
   ) {
     // Inicialización del formulario con validaciones
     this.bookingForm = this.fb.group({
       roomId: [{ value: '', disabled: true }, Validators.required],
-      startDate: [{ value: '', disabled: true }, Validators.required],
-      endDate: [{ value: '', disabled: true }, Validators.required],
+      start: [{ value: '', disabled: true }, Validators.required],
+      end: [{ value: '', disabled: true }, Validators.required],
     });
     const localBooking = storage.read<communication | null>('booking-data');
     if (localBooking === null) {
       this.router.navigate(['/booking', 'search']);
       return;
     }
+    console.log({ localBooking });
+
     this.bookingLocal = localBooking!;
     this.route.queryParams.subscribe((params) => {
       const roomId = Number(params['roomId']);
-      this.roomId = roomId;
       if (this.bookingLocal.roomId !== roomId) {
         this.router.navigate(['/bookings', 'search']);
         return;
       }
       this.bookingLocal = {
         ...this.bookingLocal,
-        startDate: new Date(this.bookingLocal.startDate),
-        endDate: new Date(this.bookingLocal.endDate),
+        start: new Date(this.bookingLocal.start),
+        end: new Date(this.bookingLocal.end),
       };
       this.loadBooking();
     });
@@ -78,41 +88,40 @@ export class BookingComponent {
     });
   }
 
+  private formatDate(date: Date) {
+    console.log(date);
+    return date.toISOString().split('T')[0].split('-').reverse().join('-');
+  }
+
   loadBooking() {
     const booking = this.bookingLocal;
     if (!booking) return;
-    const start = new Date(booking.startDate).toISOString();
-    const end = new Date(booking.endDate).toISOString();
+    const start = this.formatDate(booking.start);
+    const end = this.formatDate(booking.end);
+    console.log({ start, end });
+
     this.bookingForm = this.fb.group({
       roomId: [{ value: booking.roomId, disabled: true }, Validators.required],
-      startDate: [{ value: start, disabled: true }, Validators.required],
-      endDate: [{ value: end, disabled: true }, Validators.required],
+      start: [{ value: start, disabled: true }, Validators.required],
+      end: [{ value: end, disabled: true }, Validators.required],
     });
   }
 
   submitBooking() {
-    const { id } = this.user;
+    const { id: userId } = this.user;
     const bookingRequest: any = {
       ...this.bookingLocal,
-      userId: { id },
-      roomId: { id: this.roomId },
+      userId,
     };
 
     // Llama al servicio para crear una nueva reserva
+    console.log(bookingRequest);
+
     this.bookingClient.createBooking(bookingRequest).subscribe({
       next: (response) => {
         console.log('Reserva creada con éxito', response);
-        // Llama al servicio para actualizar el estado del usuario
-        this.userClient.alterUserStatus(id, 'WITH_ACTIVE_BOOKINGS').subscribe({
-          next: (response) => {
-            console.log('Estado de usuario actualizado con exito', response);
-            this.storage.remove('booking-data');
-            this.router.navigate(['/me', 'bookings']);
-          },
-          error: (error) => {
-            console.error('Error al cambiar el estado del usuario', error);
-          },
-        });
+        this.storage.remove('booking-data');
+        this.router.navigate(['/me', 'bookings']);
       },
       error: (error) => {
         console.error('Error al crear la reserva', error);
diff --git a/angular/RestClient/src/app/features/bookings/bookings.routes.ts b/angular/RestClient/src/app/features/bookings/bookings.routes.ts
new file mode 100644
index 0000000000000000000000000000000000000000..50991f2d06d12ff35e8f68957b53f3a97aa8f2e5
--- /dev/null
+++ b/angular/RestClient/src/app/features/bookings/bookings.routes.ts
@@ -0,0 +1,19 @@
+import { AppRoute } from '@core/models';
+import { BookingComponent } from './booking/booking.component';
+import { UserBookingListComponent } from './user-booking-list/user-booking-list.component';
+
+export const BOOKINGS_ROUTES: AppRoute[] = [];
+export const CLIENT_BOOKINGS_ROUTES: AppRoute[] = [
+  {
+    path: '',
+    component: UserBookingListComponent,
+  },
+  {
+    path: ':id',
+    component: BookingComponent,
+  },
+  {
+    path: 'new',
+    component: BookingComponent,
+  },
+];
diff --git a/angular/RestClient/src/app/features/bookings/index.ts b/angular/RestClient/src/app/features/bookings/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..5c198cb962620e96a9db83f03d76302d17d90380
--- /dev/null
+++ b/angular/RestClient/src/app/features/bookings/index.ts
@@ -0,0 +1,4 @@
+export * from './bookings.routes';
+export * from './booking/booking.component';
+export * from './user-booking-list/user-booking-list.component';
+export type { Booking } from '@features/bookings/types/Booking';
diff --git a/angular/RestClient/src/app/features/bookings/types/Booking.d.ts b/angular/RestClient/src/app/features/bookings/types/Booking.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..daf5e92facf5f69c0f78ce8e17711ac16cfcd259
--- /dev/null
+++ b/angular/RestClient/src/app/features/bookings/types/Booking.d.ts
@@ -0,0 +1,9 @@
+export interface Booking {
+  id: number;
+  start: Date;
+  end: Date;
+  userId: number;
+  managerId: number;
+  hotelId: number;
+  roomId: number;
+}
diff --git a/angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.css b/angular/RestClient/src/app/features/bookings/user-booking-list/user-booking-list.component.css
similarity index 100%
rename from angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.css
rename to angular/RestClient/src/app/features/bookings/user-booking-list/user-booking-list.component.css
diff --git a/angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.html b/angular/RestClient/src/app/features/bookings/user-booking-list/user-booking-list.component.html
similarity index 92%
rename from angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.html
rename to angular/RestClient/src/app/features/bookings/user-booking-list/user-booking-list.component.html
index 6a845bc703fc7e279909d96f39e55c2f387e33c5..69a3dac63c1dde6bd1f2da787ce91d801bce3096 100644
--- a/angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.html
+++ b/angular/RestClient/src/app/features/bookings/user-booking-list/user-booking-list.component.html
@@ -25,8 +25,8 @@
       <li class="booking-item">
         <span class="booking-id">Reserva #{{ booking.id }}</span>
 
-        <span class="booking-start">{{ booking.startDate }}</span>
-        <span class="booking-end">{{ booking.endDate }}</span>
+        <span class="booking-start">{{ booking.start }}</span>
+        <span class="booking-end">{{ booking.end }}</span>
         <span class="booking-status">{{ genBookingState(booking) }}</span>
         <span class="booking-delete">
           <button (click)="deleteBooking(booking.id)">Eliminar</button>
diff --git a/angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.ts b/angular/RestClient/src/app/features/bookings/user-booking-list/user-booking-list.component.ts
similarity index 51%
rename from angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.ts
rename to angular/RestClient/src/app/features/bookings/user-booking-list/user-booking-list.component.ts
index f5ca26c52374160a4a16fe933a03cec8a8fed823..222a16e9d12af7e395353b4bae25f12439e66153 100644
--- a/angular/RestClient/src/app/core/features/user/user-booking-list/user-booking-list.component.ts
+++ b/angular/RestClient/src/app/features/bookings/user-booking-list/user-booking-list.component.ts
@@ -1,12 +1,13 @@
 import { Component } from '@angular/core';
 
-import { Booking, User } from '../../../../types';
+import { Booking } from '@features/bookings';
+import { User } from '@features/users';
 import { ActivatedRoute, RouterModule } from '@angular/router';
 import { CommonModule } from '@angular/common';
 import { FormsModule } from '@angular/forms';
-import { UserClientService } from '../../../../shared/user-client.service';
-import { BookingClientService } from '../../../../shared/booking-client.service';
-import { SessionService } from '../../../../shared/session.service';
+import { UserClientService } from '../../../core/services/api/users/user-client.service';
+import { BookingClientService } from '../../../core/services/api/bookings/booking-client.service';
+import { SessionService } from '../../../core/services/session/session.service';
 import { Observable } from 'rxjs';
 
 type state = 'all' | 'active' | 'inactive';
@@ -76,8 +77,7 @@ export class UserBookingListComponent {
   }
 
   genBookingState(booking: Booking) {
-    return new Date().setHours(0, 0, 0, 0) <=
-      new Date(booking.endDate).getTime()
+    return new Date().setHours(0, 0, 0, 0) <= new Date(booking.end).getTime()
       ? 'Reserva activa'
       : 'Reserva inactiva';
   }
@@ -86,66 +86,10 @@ export class UserBookingListComponent {
     this.bookingClient.deleteBooking(bookingId).subscribe({
       next: () => {
         this.updateBookings();
-        this.updateUserStatus();
       },
       error: (err) => {
         console.error('Error al eliminar una reserva', err);
       },
     });
   }
-
-  updateUserStatus() {
-    this.bookingClient.getBookingsByUser(this.user.id).subscribe({
-      next: (bookings) => {
-        const withActive = bookings.find(
-          (booking) => this.genBookingState(booking) === 'Reserva activa'
-        );
-        const withInactive = bookings.find(
-          (booking) => this.genBookingState(booking) === 'Reserva inactiva'
-        );
-        if (withActive) {
-          this.userClient
-            .alterUserStatus(this.user.id, 'WITH_ACTIVE_BOOKINGS')
-            .subscribe({
-              next: (response) => {
-                console.log('Cambio de estado en el usuario a activo correcto');
-              },
-              error: (err) => {
-                console.error('Error al cambiar de estado al usuario a activo');
-              },
-            });
-        } else if (withInactive) {
-          this.userClient
-            .alterUserStatus(this.user.id, 'WITH_INACTIVE_BOOKINGS')
-            .subscribe({
-              next: (response) => {
-                console.log(
-                  'Cambio de estado en el usuario a inactivo correcto'
-                );
-              },
-              error: (err) => {
-                console.error(
-                  'Error al cambiar de estado al usuario a inactivo'
-                );
-              },
-            });
-        } else {
-          this.userClient
-            .alterUserStatus(this.user.id, 'NO_BOOKINGS')
-            .subscribe({
-              next: (response) => {
-                console.log(
-                  'Cambio de estado en el usuario a sin reservas correcto'
-                );
-              },
-              error: (err) => {
-                console.error(
-                  'Error al cambiar de estado al usuario sin reservas'
-                );
-              },
-            });
-        }
-      },
-    });
-  }
 }
diff --git a/angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.css b/angular/RestClient/src/app/features/hotels/hotel-list/hotel-list.component.css
similarity index 100%
rename from angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.css
rename to angular/RestClient/src/app/features/hotels/hotel-list/hotel-list.component.css
diff --git a/angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.html b/angular/RestClient/src/app/features/hotels/hotel-list/hotel-list.component.html
similarity index 99%
rename from angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.html
rename to angular/RestClient/src/app/features/hotels/hotel-list/hotel-list.component.html
index d0f0b21a8390db0bffa538c150073391b3abcc54..029a82f6e112f7383182e28b2ace39ac1f64dc6d 100644
--- a/angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.html
+++ b/angular/RestClient/src/app/features/hotels/hotel-list/hotel-list.component.html
@@ -173,7 +173,7 @@
                   [disabled]="!isAvailable(room)"
                   mat-raised-button
                   class="w-full text-center py-3 rounded-lg shadow-md hover:shadow-lg bg-sky-600 text-slate-200 font-bold"
-                  (click)="bookingRoom(room.id)"
+                  (click)="bookingRoom(room.id, hotel)"
                 >
                   <span class="flex items-center justify-center text-2xl">
                     <mat-icon>booking</mat-icon>
diff --git a/angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.ts b/angular/RestClient/src/app/features/hotels/hotel-list/hotel-list.component.ts
similarity index 72%
rename from angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.ts
rename to angular/RestClient/src/app/features/hotels/hotel-list/hotel-list.component.ts
index 1b6e34d096b35b4ef53be036aa767258592dee54..88af410e734454e71e2cf70f02f84b63a845e016 100644
--- a/angular/RestClient/src/app/core/features/hotel/hotel-list/hotel-list.component.ts
+++ b/angular/RestClient/src/app/features/hotels/hotel-list/hotel-list.component.ts
@@ -1,6 +1,7 @@
 import { Component, NgModule } from '@angular/core';
 import { RouterModule, Router, ActivatedRoute, Data } from '@angular/router';
-import { Hotel, Room, RoomType, roomTypeArray } from '../../../../types';
+import { Hotel, Room, RoomType } from '@features/hotels';
+import { roomTypeArray } from '@features/hotels/types/Room.interface';
 import {
   MatAccordion,
   MatExpansionPanel,
@@ -15,16 +16,16 @@ import {
   NgbAccordionModule,
   NgbDatepickerModule,
 } from '@ng-bootstrap/ng-bootstrap';
-import { HotelClientService } from '../../../../shared/hotel-client.service';
+import { HotelClientService } from '../../../core/services/api/hotels/hotel-client.service';
 import { MatCardModule } from '@angular/material/card';
 import { MatIconModule } from '@angular/material/icon';
 import { FormBuilder, FormGroup, ReactiveFormsModule } from '@angular/forms';
 import { MatFormFieldModule } from '@angular/material/form-field';
 import { MatDatepickerModule } from '@angular/material/datepicker';
 import { MatSelectModule } from '@angular/material/select';
-import { LocalStorageService } from '../../../../shared/local-storage.service';
-import { SessionService } from '../../../../shared/session.service';
-import { getBasePath } from '../../../../utils/utils';
+import { LocalStorageService } from '../../../core/services/storage/local-storage.service';
+import { SessionService } from '../../../core/services/session/session.service';
+import { getBasePath } from '../../../utils/utils';
 
 type SelectableRoomType = 'All' | RoomType;
 const selectableRoomTypeArray: SelectableRoomType[] = ['All', ...roomTypeArray];
@@ -66,7 +67,8 @@ export class HotelListComponent {
   roomTypes = selectableRoomTypeArray;
   rooms: Room[] = [];
   trateRooms: Room[] = [];
-  userId = 0
+  userId = 0;
+  end = '';
 
   constructor(
     private fb: FormBuilder,
@@ -76,8 +78,10 @@ export class HotelListComponent {
     private storage: LocalStorageService,
     private sessionService: SessionService
   ) {
-    const isHotelManger = this.route.snapshot.url[0].path === 'me'
-    const isAdmin = this.route.snapshot.url[0].path === 'admin'
+    const url = this.router.url;
+    const baseUrl = getBasePath(url).split('/')[1];
+    const isHotelManger = url.split('/')[1] === 'me';
+    const isAdmin = baseUrl === 'admin';
     this.isManaging = isHotelManger || isAdmin;
     const today = new Date();
 
@@ -91,9 +95,10 @@ export class HotelListComponent {
 
     this.sessionService.getSession().subscribe({
       next: (session) => {
+        console.log({ session });
         if (session && session.rol !== 'CLIENT') {
           this.isEditing = true;
-          this.userId = isHotelManger 
+          this.userId = isHotelManger
             ? session.id
             : Number(this.route.snapshot.paramMap.get('id'));
         }
@@ -103,8 +108,8 @@ export class HotelListComponent {
 
   ngOnInit(): void {
     this.getHotels();
-    this.dateRangeForm.get('dateRange')?.valueChanges.subscribe(() => {
-      this.getHotels();
+    this.dateRangeForm.get('dateRange')?.valueChanges.subscribe((value) => {
+      this.getHotels(value);
     });
   }
 
@@ -116,12 +121,14 @@ export class HotelListComponent {
     )
       .map((h) => {
         h = { ...h, rooms: [...h.rooms] };
-        h.rooms = h.rooms.filter(
-          (r) =>
-            r.available &&
-            (this.roomTypeSelected === 'All' ||
-              (r.type as SelectableRoomType) === this.roomTypeSelected)
-        );
+        if (!this.isManaging) {
+          h.rooms = h.rooms.filter(
+            (r) =>
+              r.available &&
+              (this.roomTypeSelected === 'All' ||
+                (r.type as SelectableRoomType) === this.roomTypeSelected)
+          );
+        }
         return h;
       })
       .filter((h) => h.rooms.length > 0);
@@ -144,16 +151,33 @@ export class HotelListComponent {
     return value;
   }
 
-  getHotels() {
-    const { start, end } = this.dateRangeForm.value.dateRange;
-    
+  getDate(date: Date) {
+    return date.toISOString().split('T')[0];
+  }
+
+  getHotels(value?: { end: Date; start: Date }) {
+    const { start: startDate, end: endDate } =
+      value ?? this.dateRangeForm.value.dateRange;
+
+    if (!endDate) return;
+
+    const start = this.getDate(startDate);
+    const end = this.getDate(endDate);
+
+    if (this.end != null && this.end === end) {
+      console.log('SKIP');
+      return;
+    }
+
     const observable = this.isManaging
-      ? this.hotelClient.getAllHotelsByUser(this.userId, start, end)
-      : this.hotelClient.getAllHotels(start, end)
-    console.log({...this})
+      ? this.hotelClient.getAllHotelsByUser(this.userId)
+      : this.hotelClient.getAllHotels(start, end);
+
     observable.subscribe({
       next: (resp) => {
+        console.log(this.isManaging, resp);
         if (!!resp && (resp as never[]).length >= 0) {
+          this.end = end;
           this._hotels = resp;
           this.update();
         }
@@ -201,22 +225,29 @@ export class HotelListComponent {
   getHotelUri(hotelId: number) {
     var base;
     try {
-      base = getBasePath(this.route) + '/';
+      // TODO revisar
+      base = getBasePath(this.router.url) + '/';
     } catch (error) {
       base = '';
     }
     return (this.isManaging ? base : '/') + 'hotels/' + hotelId;
   }
 
-  bookingRoom(roomId: number) {
+  bookingRoom(roomId: number, hotel: Hotel) {
     const { start, end } = this.dateRangeForm.value.dateRange as {
       start: Date;
       end: Date;
     };
+    console.log({ hotel });
+
+    const { managerId } = hotel;
+    const hotelId = hotel.id;
     this.storage.save('booking-data', {
       roomId,
-      startDate: start.toString(),
-      endDate: end.toString(),
+      start: start.toString(),
+      end: end.toString(),
+      hotelId,
+      managerId,
     });
     this.router.navigate(['/me', 'bookings', 'new'], {
       queryParams: { roomId, startDate: start.toLocaleDateString() },
diff --git a/angular/RestClient/src/app/core/features/hotel/hotel-register/hotel-register.component.css b/angular/RestClient/src/app/features/hotels/hotel-register/hotel-register.component.css
similarity index 100%
rename from angular/RestClient/src/app/core/features/hotel/hotel-register/hotel-register.component.css
rename to angular/RestClient/src/app/features/hotels/hotel-register/hotel-register.component.css
diff --git a/angular/RestClient/src/app/core/features/hotel/hotel-register/hotel-register.component.html b/angular/RestClient/src/app/features/hotels/hotel-register/hotel-register.component.html
similarity index 100%
rename from angular/RestClient/src/app/core/features/hotel/hotel-register/hotel-register.component.html
rename to angular/RestClient/src/app/features/hotels/hotel-register/hotel-register.component.html
diff --git a/angular/RestClient/src/app/core/features/hotel/hotel-register/hotel-register.component.ts b/angular/RestClient/src/app/features/hotels/hotel-register/hotel-register.component.ts
similarity index 96%
rename from angular/RestClient/src/app/core/features/hotel/hotel-register/hotel-register.component.ts
rename to angular/RestClient/src/app/features/hotels/hotel-register/hotel-register.component.ts
index 9408ea3e1082fb50c4277a6912870e6472979518..66714b7df4bfb58fa047337757cfd686a9a6549a 100644
--- a/angular/RestClient/src/app/core/features/hotel/hotel-register/hotel-register.component.ts
+++ b/angular/RestClient/src/app/features/hotels/hotel-register/hotel-register.component.ts
@@ -13,9 +13,9 @@ import { MatFormFieldModule } from '@angular/material/form-field';
 import { MatSelectModule } from '@angular/material/select';
 import { MatSlideToggleModule } from '@angular/material/slide-toggle';
 import { CommonModule } from '@angular/common';
-import { Address, Hotel, Room } from '../../../../types';
+import { Address, Hotel, Room } from '@features/hotels';
 import { ActivatedRoute, Router } from '@angular/router';
-import { HotelClientService } from '../../../../shared/hotel-client.service';
+import { HotelClientService } from '../../../core/services/api/hotels/hotel-client.service';
 import { MatIconModule } from '@angular/material/icon';
 
 const emptyRoom: Room = {
@@ -35,6 +35,7 @@ const emptyHotel: Hotel = {
     postCode: '',
     streetName: '',
   },
+  managerId: 0
 };
 
 @Component({
diff --git a/angular/RestClient/src/app/features/hotels/hotels.routes.ts b/angular/RestClient/src/app/features/hotels/hotels.routes.ts
new file mode 100644
index 0000000000000000000000000000000000000000..b5751fca22a35a3874b51a6e970ffb8a1220f661
--- /dev/null
+++ b/angular/RestClient/src/app/features/hotels/hotels.routes.ts
@@ -0,0 +1,40 @@
+import { AppRoute } from '@core/models/Route.interface';
+import { HotelRegisterComponent } from './hotel-register/hotel-register.component';
+import { HotelListComponent } from './hotel-list/hotel-list.component';
+import { rolGuard } from '@core/guards';
+
+export const HOTELS_ROUTES: AppRoute[] = [
+  {
+    path: '', // Ruta para la lista de hoteles
+    component: HotelListComponent,
+  },
+  {
+    path: 'register', // Registrar nuevo hotel
+    component: HotelRegisterComponent,
+    canActivate: [rolGuard],
+    data: { expectedRole: 'MANAGER' },
+  },
+  {
+    path: ':id', // Hotel concreto
+    component: HotelRegisterComponent,
+  },
+];
+
+export const MANAGERS_ROUTES: AppRoute[] = [
+  {
+    path: '',
+    component: HotelListComponent,
+  },
+  {
+    path: ':id',
+    component: HotelRegisterComponent,
+  },
+  // {
+  //   path: ':id/bookings',
+  //   component: BookingListComponent,
+  // },
+  // {
+  //   path: ':id/rooms/:id/bookings',
+  //   component: BookingListComponent,
+  // },
+];
diff --git a/angular/RestClient/src/app/features/hotels/index.ts b/angular/RestClient/src/app/features/hotels/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..1edd43785acca5f5d2690d82b1199ea9e4bb7245
--- /dev/null
+++ b/angular/RestClient/src/app/features/hotels/index.ts
@@ -0,0 +1,6 @@
+export * from './hotels.routes';
+export * from './hotel-list/hotel-list.component';
+export * from './hotel-register/hotel-register.component';
+export type { Address } from '@features/hotels/types/Address';
+export type { Hotel } from '@features/hotels/types/Hotel';
+export * from './types/Room.interface';
diff --git a/angular/RestClient/src/app/types/Address.d.ts b/angular/RestClient/src/app/features/hotels/types/Address.d.ts
similarity index 100%
rename from angular/RestClient/src/app/types/Address.d.ts
rename to angular/RestClient/src/app/features/hotels/types/Address.d.ts
diff --git a/angular/RestClient/src/app/types/Hotel.d.ts b/angular/RestClient/src/app/features/hotels/types/Hotel.d.ts
similarity index 68%
rename from angular/RestClient/src/app/types/Hotel.d.ts
rename to angular/RestClient/src/app/features/hotels/types/Hotel.d.ts
index c4183aa7f7055c24016b6b4325038a16cdaca09c..f2d68cc1352f404365cd4a20a76b541a71303454 100644
--- a/angular/RestClient/src/app/types/Hotel.d.ts
+++ b/angular/RestClient/src/app/features/hotels/types/Hotel.d.ts
@@ -1,9 +1,10 @@
 import { Address } from './Address';
-import { Room } from './Room';
+import { Room } from './Room.interface';
 
 export interface Hotel {
   id: number;
   name: string;
   address: Address;
   rooms: Room[];
+  managerId: number;
 }
diff --git a/angular/RestClient/src/app/types/Room.d.ts b/angular/RestClient/src/app/features/hotels/types/Room.interface.ts
similarity index 69%
rename from angular/RestClient/src/app/types/Room.d.ts
rename to angular/RestClient/src/app/features/hotels/types/Room.interface.ts
index 0c54fdcbfee2f4da7aa34f3727dd21421acbb048..987b3bcd2a6a902db340f99d50a5336f132b8a33 100644
--- a/angular/RestClient/src/app/types/Room.d.ts
+++ b/angular/RestClient/src/app/features/hotels/types/Room.interface.ts
@@ -1,4 +1,6 @@
+export const roomTypeArray = ['SINGLE', 'DOUBLE', 'SUITE'] as const;
 export type RoomType = 'SINGLE' | 'DOUBLE' | 'SUITE';
+
 export interface Room {
   id: number;
   roomNumber: String;
diff --git a/angular/RestClient/src/app/features/users/admin.routes.ts b/angular/RestClient/src/app/features/users/admin.routes.ts
new file mode 100644
index 0000000000000000000000000000000000000000..77ec42dbd8eeb75165bb8fac82b9a0a21d2424fe
--- /dev/null
+++ b/angular/RestClient/src/app/features/users/admin.routes.ts
@@ -0,0 +1,59 @@
+import { AppRoute } from '@core/models/Route.interface';
+import { MainPageComponent } from 'app/features/users/main-page/main-page.component';
+import { UserFormRoute } from 'app/features/users/types/UserFormData';
+import { UserFormComponent } from 'app/features/users/user-form/user-form.component';
+import { COMMON_USERS_ROUTES, USERS_ROUTES } from 'app/features/users/users.routes';
+
+function changeToAdminScope(routes: UserFormRoute[]) {
+  return routes.map((r) => {
+    if (r.data) {
+      const { data, ...rest } = r;
+      data.expectedRole = undefined;
+      if (data.mode) {
+        data.mode.admin = true;
+      }
+      return { data, ...rest };
+    }
+    return r;
+  });
+}
+
+const mainRoute: UserFormRoute = {
+  path: '', // Main
+  data: {
+    mode: {
+      formMode: 'VIEW',
+      admin: true,
+    },
+  },
+  component: UserFormComponent,
+};
+
+export const ADMIN_ROUTES: AppRoute[] = [
+  mainRoute,
+  {
+    path: 'users',
+    children: [
+      {
+        path: '',
+        component: MainPageComponent,
+      },
+      {
+        path: ':id',
+        children: changeToAdminScope(USERS_ROUTES),
+      },
+    ],
+  },
+  // {
+  //   path: 'users/:id/bookings/:bookingId',
+  //   component: BookingComponent,
+  // },
+  // {
+  //   path: 'users/:userId/hotels/:id/bookings',
+  //   component: BookingListComponent,
+  // },
+  // {
+  //   path: 'users/:userId/hotels/:hotelId/rooms/:id/bookings',
+  //   component: BookingListComponent,
+  // },
+];
diff --git a/angular/RestClient/src/app/features/users/index.ts b/angular/RestClient/src/app/features/users/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..75c6214f0f388769e3a9a07d232fbfe7e69d9b93
--- /dev/null
+++ b/angular/RestClient/src/app/features/users/index.ts
@@ -0,0 +1,6 @@
+export * from './users.routes';
+export * from './main-page/main-page.component';
+export * from './user-form/user-form.component';
+export * from './types/User.interface';
+import type { UserFormMode, ModeType, UserFormRoute } from '@features/users/types/UserFormData';
+export type { UserFormMode, ModeType, UserFormRoute };
diff --git a/angular/RestClient/src/app/core/features/user/main-page/main-page.component.css b/angular/RestClient/src/app/features/users/main-page/main-page.component.css
similarity index 100%
rename from angular/RestClient/src/app/core/features/user/main-page/main-page.component.css
rename to angular/RestClient/src/app/features/users/main-page/main-page.component.css
diff --git a/angular/RestClient/src/app/core/features/user/main-page/main-page.component.html b/angular/RestClient/src/app/features/users/main-page/main-page.component.html
similarity index 76%
rename from angular/RestClient/src/app/core/features/user/main-page/main-page.component.html
rename to angular/RestClient/src/app/features/users/main-page/main-page.component.html
index 8f3659e24b6181f5a54781dc36376aae20b3affe..66c2ae6a0b29736b305843558a26cb81bc268202 100644
--- a/angular/RestClient/src/app/core/features/user/main-page/main-page.component.html
+++ b/angular/RestClient/src/app/features/users/main-page/main-page.component.html
@@ -19,14 +19,13 @@
       </div>
       <div class="mat-elevation-z8 demo-table table">
         <table mat-table [dataSource]="dataSource">
+          <!-- ID Column -->
           <ng-container matColumnDef="id">
             <th mat-header-cell *matHeaderCellDef>
               <span class="text-3xl font-bold">ID</span>
             </th>
             <td mat-cell *matCellDef="let element">
-              <span class="text-2xl">
-                {{ element.id }}
-              </span>
+              <span class="text-2xl">{{ element.id }}</span>
             </td>
           </ng-container>
 
@@ -36,33 +35,37 @@
               <span class="text-3xl font-bold">Name</span>
             </th>
             <td mat-cell *matCellDef="let element">
-              <span class="text-2xl">
-                {{ element.name }}
-              </span>
+              <span class="text-2xl">{{ element.name }}</span>
             </td>
           </ng-container>
 
-          <!-- Weight Column -->
+          <!-- Email Column -->
           <ng-container matColumnDef="email">
             <th mat-header-cell *matHeaderCellDef>
               <span class="text-3xl font-bold">Email</span>
             </th>
             <td mat-cell *matCellDef="let element">
-              <span class="text-2xl">
-                {{ element.email }}
-              </span>
+              <span class="text-2xl">{{ element.email }}</span>
             </td>
           </ng-container>
 
-          <!-- Symbol Column -->
+          <!-- Role Column -->
           <ng-container matColumnDef="rol">
             <th mat-header-cell *matHeaderCellDef>
               <span class="text-3xl font-bold">Rol</span>
             </th>
             <td mat-cell *matCellDef="let element">
-              <span class="text-2xl">
-                {{ element.rol }}
-              </span>
+              <span class="text-2xl">{{ element.rol }}</span>
+            </td>
+          </ng-container>
+
+          <!-- State Column -->
+          <ng-container matColumnDef="status">
+            <th mat-header-cell *matHeaderCellDef>
+              <span class="text-3xl font-bold">Estado</span>
+            </th>
+            <td mat-cell *matCellDef="let element">
+              <span class="text-2xl">{{ getState(element) }}</span>
             </td>
           </ng-container>
 
diff --git a/angular/RestClient/src/app/core/features/user/main-page/main-page.component.ts b/angular/RestClient/src/app/features/users/main-page/main-page.component.ts
similarity index 63%
rename from angular/RestClient/src/app/core/features/user/main-page/main-page.component.ts
rename to angular/RestClient/src/app/features/users/main-page/main-page.component.ts
index 09770a81445c949b6754000aeb014d66933e95c1..914e7511f9ab54403410d885e9bf27a1c1310808 100644
--- a/angular/RestClient/src/app/core/features/user/main-page/main-page.component.ts
+++ b/angular/RestClient/src/app/features/users/main-page/main-page.component.ts
@@ -1,10 +1,10 @@
 import { Component, OnInit, ViewChild } from '@angular/core';
-import { Client, User, UserStateFilter } from '../../../../types';
+import { Client, User, UserStateFilter } from '@features/users';
 import { FormsModule } from '@angular/forms';
 import { CommonModule } from '@angular/common';
 import { Router, RouterModule } from '@angular/router';
-import { UserClientService } from '../../../../shared/user-client.service';
-import { users } from '../../../../../mocks/users'; // Renombrado para claridad
+import { UserClientService } from '../../../core/services/api/users/user-client.service';
+import { users } from '../../../../mocks/users';
 import { MatTableDataSource, MatTableModule } from '@angular/material/table';
 import { MatPaginator, MatPaginatorModule } from '@angular/material/paginator';
 import { MatCardModule } from '@angular/material/card';
@@ -27,7 +27,7 @@ export class MainPageComponent implements OnInit {
   users: Client[] = [];
   filteredUsers: Client[] = [];
   selectedStatus: UserStateFilter = 'All';
-  displayedColumns: string[] = ['id', 'name', 'email', 'rol'];
+  displayedColumns: string[] = ['id', 'name', 'email', 'rol', 'status'];
   dataSource = new MatTableDataSource<User>();
 
   constructor(private userClient: UserClientService, private router: Router) {}
@@ -36,9 +36,9 @@ export class MainPageComponent implements OnInit {
     this.users = users;
     this.filteredUsers = [...this.users];
 
-    // Sobrescribir con datos reales si están disponibles
     this.userClient.getAllUsers().subscribe({
       next: (data: Client[]) => {
+        console.log(data);
         this.users = data;
         this.filterUsers();
       },
@@ -49,28 +49,36 @@ export class MainPageComponent implements OnInit {
   @ViewChild(MatPaginator) paginator?: MatPaginator;
 
   filterUsers(): void {
-    if (this.selectedStatus === 'All') {
-      this.filteredUsers = [...this.users];
-    } else {
-      this.filteredUsers = this.users.filter(
-        (user) => user.status === this.selectedStatus
-      );
-    }
+    console.log(
+      this.selectedStatus,
+      this.users.map((u) => {
+        return { u, s: u?.status };
+      })
+    );
+
+    this.filteredUsers =
+      this.selectedStatus === 'All'
+        ? [...this.users]
+        : this.users.filter((user) => user?.status === this.selectedStatus);
+
     this.dataSource = new MatTableDataSource<User>(this.filteredUsers);
     this.dataSource.paginator = this.paginator!;
   }
 
   getState(user: Client): string {
-    switch (user.status) {
-      case 'NO_BOOKINGS':
-        return 'SIN RESERVAS';
-      case 'WITH_ACTIVE_BOOKINGS':
-        return 'CON RESERVAS ACTIVAS';
-      case 'WITH_INACTIVE_BOOKINGS':
-        return 'CON RESERVAS INACTIVAS';
-      default:
-        return 'ESTADO DESCONOCIDO';
+    if (user.rol === 'CLIENT') {
+      switch (user.status) {
+        case 'NO_BOOKINGS':
+          return 'SIN RESERVAS';
+        case 'WITH_ACTIVE_BOOKINGS':
+          return 'CON RESERVAS ACTIVAS';
+        case 'WITH_INACTIVE_BOOKINGS':
+          return 'CON RESERVAS INACTIVAS';
+        default:
+          return 'ESTADO DESCONOCIDO';
+      }
     }
+    return '-';
   }
 
   userDetails(id: number) {
diff --git a/angular/RestClient/src/app/features/users/types/User.interface.ts b/angular/RestClient/src/app/features/users/types/User.interface.ts
new file mode 100644
index 0000000000000000000000000000000000000000..27186ce576d239cf8d0e52b3c4928a8b1821e4f3
--- /dev/null
+++ b/angular/RestClient/src/app/features/users/types/User.interface.ts
@@ -0,0 +1,33 @@
+import { Booking } from '@features/bookings';
+import { Hotel } from '@features/hotels';
+
+export interface User {
+  id: number;
+  name: string;
+  email: String;
+  rol: UserRol;
+}
+
+export type UserRol = 'CLIENT' | 'MANAGER' | 'ADMIN';
+export const UserRolesArray: UserRol[] = ['CLIENT', 'MANAGER', 'ADMIN'];
+
+export interface Client extends User {
+  status: ClientState;
+  bookings: Booking[];
+}
+
+export interface HotelAdmin extends User {
+  hotels: Hotel[];
+}
+
+export type UserStateFilter = 'All' | ClientState;
+
+export const ClientStateArray = [
+  'NO_BOOKINGS',
+  'WITH_ACTIVE_BOOKINGS',
+  'WITH_INACTIVE_BOOKINGS',
+] as const;
+export type ClientState =
+  | 'NO_BOOKINGS'
+  | 'WITH_ACTIVE_BOOKINGS'
+  | 'WITH_INACTIVE_BOOKINGS';
diff --git a/angular/RestClient/src/app/features/users/types/UserFormData.d.ts b/angular/RestClient/src/app/features/users/types/UserFormData.d.ts
new file mode 100644
index 0000000000000000000000000000000000000000..de92d172338c5dd0b5ff61c657e34d1c806a2812
--- /dev/null
+++ b/angular/RestClient/src/app/features/users/types/UserFormData.d.ts
@@ -0,0 +1,16 @@
+import { AppRoute } from '@core/models';
+
+export type UserFormMode =
+  | 'REGISTER'
+  | 'LOGIN'
+  | 'PASSWORD'
+  | 'VIEW'
+  | 'EDIT'
+  | 'OTHER';
+
+export type ModeType = {
+  formMode: UserFormMode;
+  admin?: boolean;
+};
+
+export type UserFormRoute = AppRoute<{ mode?: ModeType }>;
diff --git a/angular/RestClient/src/app/core/features/user/user-form/user-form.component.css b/angular/RestClient/src/app/features/users/user-form/user-form.component.css
similarity index 100%
rename from angular/RestClient/src/app/core/features/user/user-form/user-form.component.css
rename to angular/RestClient/src/app/features/users/user-form/user-form.component.css
diff --git a/angular/RestClient/src/app/core/features/user/user-form/user-form.component.html b/angular/RestClient/src/app/features/users/user-form/user-form.component.html
similarity index 87%
rename from angular/RestClient/src/app/core/features/user/user-form/user-form.component.html
rename to angular/RestClient/src/app/features/users/user-form/user-form.component.html
index 677115e1ef16e7735abdfe809b92fdb65262747e..052533f0738437c973c059fb9e63d17865a8a903 100644
--- a/angular/RestClient/src/app/core/features/user/user-form/user-form.component.html
+++ b/angular/RestClient/src/app/features/users/user-form/user-form.component.html
@@ -8,14 +8,18 @@
       <div class="grid grid-flow-col mb-5">
         @if (!isEditing) {
         <div>
-          @if (isHotelManager) {
+          @if (isManager) {
           <a [routerLink]="[getHotelsUri()]">
             <button class="btn btn-primary">Mis hoteles</button>
           </a>
-          }@else if(!isAdmin){
+          }@else if (isClient){
           <a [routerLink]="[getBookingsUri()]">
             <button class="btn btn-primary">Mis Reservas</button>
           </a>
+          }@else if (isAdmin) {
+          <a [routerLink]="['/admin', 'users']">
+            <button class="btn btn-primary">Usuarios</button>
+          </a>
           }
         </div>
         }
@@ -66,7 +70,8 @@
             placeholder="Introduce tu email"
           />
         </div>
-        } @if ((isChangePassword || isAuth) && (isMeRoute || isAuth)) {
+        } @if (((isChangePassword && !isAdmin) || isAuth) && (isMeRoute ||
+        isAuth)) {
         <!-- Campo Contraseña Actual (solo en edición) -->
         <div class="form-group">
           <label for="currentPassword">{{ currentPasswordText }}:</label>
@@ -124,15 +129,14 @@
         } @if (!isViewUser) { @if (isAuth) {
         <p class="text-right">
           @if (isLogin) {
-          <a [routerLink]="['/register']">¿No tienes cuenta?</a>
+          <a [routerLink]="[getRegisterUrl()]">¿No tienes cuenta?</a>
           }@else {
-          <a [routerLink]="['/login']">¿Ya tienes cuenta?</a>
+          <a [routerLink]="[getLoginUrl()]">¿Ya tienes cuenta?</a>
           }
         </p>
         }
         <!-- Grupo de Botones -->
         <mat-card-actions class="flex justify-center mb-5">
-          <!-- [disabled]="registerForm.invalid" -->
           <button
             type="submit"
             class="btn btn-success text-4xl"
@@ -141,6 +145,12 @@
             {{ submitButtonText }}
           </button>
         </mat-card-actions>
+        } @else if (!isEditing) {
+        <mat-card-actions class="flex justify-center mb-5">
+          <button type="submit" class="btn btn-danger text-4xl">
+            DELETE USER
+          </button>
+        </mat-card-actions>
         }
       </form>
     </mat-card-content>
diff --git a/angular/RestClient/src/app/core/features/user/user-form/user-form.component.ts b/angular/RestClient/src/app/features/users/user-form/user-form.component.ts
similarity index 62%
rename from angular/RestClient/src/app/core/features/user/user-form/user-form.component.ts
rename to angular/RestClient/src/app/features/users/user-form/user-form.component.ts
index 1c6d272d01c5a9b899b1c77a84773fe47c43c7bb..2a0e8f34df65dc445e31b34cbc6e28c7e1e28fef 100644
--- a/angular/RestClient/src/app/core/features/user/user-form/user-form.component.ts
+++ b/angular/RestClient/src/app/features/users/user-form/user-form.component.ts
@@ -6,26 +6,24 @@ import {
   ReactiveFormsModule,
   FormsModule,
 } from '@angular/forms';
-import { UserClientService } from '../../../../shared/user-client.service';
+import { UserClientService } from '../../../core/services/api/users/user-client.service';
 import { ActivatedRoute, Router, RouterModule } from '@angular/router';
 import { MatCardModule } from '@angular/material/card';
 import { MatInputModule } from '@angular/material/input';
 import { MatFormFieldModule } from '@angular/material/form-field';
 import { MatSlideToggleModule } from '@angular/material/slide-toggle';
-import { SessionService } from '../../../../shared/session.service';
-import { Session, UserRol, UserRolesArray } from '../../../../types';
+import { SessionService } from '../../../core/services/session/session.service';
+import { Session } from '@core/models';
+import { UserRol, UserRolesArray } from '@features/users';
 import { MatSelectModule } from '@angular/material/select';
 import { Observable } from 'rxjs';
-import { getBasePath } from '../../../../utils/utils';
-import { environment } from '../../../../../environments/environment';
-
-type EditMode =
-  | 'Login'
-  | 'Register'
-  | 'ViewUser'
-  | 'EditUser'
-  | 'ChangePassword'
-  | 'Other';
+import {
+  UserFormMode,
+  UserFormRoute,
+} from 'app/features/users/types/UserFormData';
+import { getBasePath } from '@utils/utils';
+import { AuthClientService } from '@core/services';
+
 const defaultUser: Session = {
   id: 0,
   name: 'test',
@@ -52,7 +50,7 @@ const defaultUser: Session = {
 export class UserFormComponent implements OnInit {
   userForm!: FormGroup;
   rolOptions: UserRol[] = UserRolesArray;
-  mode: EditMode = 'Other';
+  mode: UserFormMode = 'OTHER';
   isMeRoute = false;
 
   /** is editing the user data */
@@ -73,49 +71,25 @@ export class UserFormComponent implements OnInit {
   currentPasswordText = 'Contraseña actual';
 
   user = defaultUser;
-  isHotelManager = false;
+  isClient = false;
+  isManager = false;
   isAdmin = false;
 
+  redirect?: string;
+
   constructor(
     private fb: FormBuilder,
     private sessionService: SessionService,
+    private authService: AuthClientService,
     private userService: UserClientService,
     private route: ActivatedRoute,
     private router: Router
   ) {}
 
-  isEditRoute(urlSegments: any[], isMeRoute: boolean): boolean {
-    return isMeRoute
-      ? urlSegments.length >= 2 && urlSegments[1].path === 'edit'
-      : urlSegments.length >= 4 && urlSegments[3].path === 'edit';
-  }
-
-  isChangePasswordRoute(urlSegments: any[], isMeRoute: boolean): boolean {
-    return isMeRoute
-      ? urlSegments.length >= 2 && urlSegments[1].path === 'change-passwd'
-      : urlSegments.length >= 4 && urlSegments[3].path === 'change-passwd';
-  }
-
-  isViewUserRoute(urlSegments: any[], isMeRoute: boolean): boolean {
-    return isMeRoute
-      ? urlSegments.length === 1
-      : (urlSegments.length === 1 && urlSegments[0].path === 'admin') ||
-          urlSegments.length === 3;
-  }
-
-  isAuthRoute(urlSegments: any[], route: string): boolean {
-    return urlSegments.length === 1 && urlSegments[0].path === route;
-  }
-
   ngOnInit(): void {
     this.setUp();
-
-    // const auth = this.session.getSession();
-    // this.user = auth;
-    // this.userForm.patchValue({
-    //   name: this.user.name,
-    //   email: this.user.email,
-    // });
+    const { redirect } = this.route.snapshot.queryParams;
+    this.redirect = redirect;
   }
 
   private initializeForm(): void {
@@ -135,14 +109,6 @@ export class UserFormComponent implements OnInit {
     const nameNotRequired = emailNotRequired || this.isLogin;
     // Solicitar rol
     const rolNotRequired = !this.isRegister;
-    // console.log({
-    //   confirmIdentity,
-    //   isChangePassword,
-    //   confirmPassword,
-    //   emailNotRequired,
-    //   nameNotRequired,
-    //   rolNotRequired,
-    // });
 
     this.userForm = this.fb.group({
       name: [{ value: '', disabled: nameNotRequired }, Validators.required],
@@ -167,47 +133,49 @@ export class UserFormComponent implements OnInit {
   }
 
   setUp() {
-    const urlSeg = this.route.snapshot.url;
-    if (this.isAuthRoute(urlSeg, 'login')) {
-      // Login
-      this.isAuth = true;
-      this.isLogin = true;
-      this.mode = 'Login';
-      this.currentPasswordText = 'Contraseña';
-      this.submitButtonText = 'Login';
-      this.titleText = 'Login';
-    } else if (this.isAuthRoute(urlSeg, 'register')) {
-      // Register
-      this.isAuth = true;
-      this.isRegister = true;
-      this.mode = 'Register';
-      this.currentPasswordText = 'Contraseña';
-      this.submitButtonText = 'Create';
-      this.titleText = 'Register';
-    } else {
-      // Identificar si estamos usando /me o /users/:id
-      getBasePath(this.route);
-      const isMeRoute = urlSeg[0].path === 'me';
-      this.isMeRoute = isMeRoute;
-
-      if (this.isEditRoute(urlSeg, isMeRoute)) {
-        this.isEditing = true;
-        this.mode = 'EditUser';
-        this.titleText = 'Editar mis datos';
-      } else if (this.isChangePasswordRoute(urlSeg, isMeRoute)) {
-        this.mode = 'ChangePassword';
+    const snapshot = this.route.snapshot;
+    const { data } = snapshot as UserFormRoute;
+    const mode = data!.mode!;
+
+    console.log(mode);
+    this.isAdmin = !!mode.admin && mode.admin === true;
+
+    switch (mode.formMode) {
+      case 'REGISTER':
+        this.isAuth = true;
+        this.isRegister = true;
+        this.currentPasswordText = 'Contraseña';
+        this.submitButtonText = 'Create';
+        this.titleText = 'Register';
+        break;
+      case 'LOGIN':
+        this.isAuth = true;
+        this.isLogin = true;
+        this.currentPasswordText = 'Contraseña';
+        this.submitButtonText = 'Login';
+        this.titleText = 'Login';
+        break;
+      case 'PASSWORD':
         this.isEditing = true;
         this.isChangePassword = true;
         this.currentPasswordText = 'Contraseña actual';
         this.titleText = 'Cambiar mi contraseña';
-      } else if (this.isViewUserRoute(urlSeg, isMeRoute)) {
-        this.mode = 'ViewUser';
+        this.submitButtonText = 'Update password';
+        break;
+      case 'VIEW':
         this.isViewUser = true;
         this.titleText = 'Mis datos';
-      }
-
-      this.submitButtonText = 'Update';
+        break;
+      case 'EDIT':
+        this.isEditing = true;
+        this.titleText = 'Editar mis datos';
+        this.submitButtonText = 'Update';
+        break;
+      case 'OTHER':
+      default:
+        break;
     }
+    this.mode = mode.formMode;
 
     this.initializeForm();
     if (!this.isAuth) {
@@ -225,32 +193,40 @@ export class UserFormComponent implements OnInit {
     }
   }
 
+  getRegisterUrl() {
+    return this.redirect ? `/register?redirect=${this.redirect}` : '/register';
+  }
+
+  getLoginUrl() {
+    return this.redirect ? `/login?redirect=${this.redirect}` : '/login';
+  }
+
   getHotelsUri() {
-    const basePath = getBasePath(this.route); // Obtener la base: '/me' o '/users/:id'
+    const basePath = getBasePath(this.router.url); // Obtener la base: '/me' o '/users/:id'
     return `${basePath}/hotels`;
   }
 
   getBookingsUri() {
-    const basePath = getBasePath(this.route); // Obtener la base: '/me' o '/users/:id'
+    const basePath = getBasePath(this.router.url); // Obtener la base: '/me' o '/users/:id'
     return `${basePath}/bookings`;
   }
 
   togglePassword() {
-    const basePath = getBasePath(this.route); // Obtener la base: '/me' o '/users/:id'
-
-    if (this.mode === 'EditUser') {
+    const basePath = getBasePath(this.router.url); // Obtener la base: '/me' o '/users/:id'
+    console.log('->', basePath);
+    if (this.mode === 'EDIT') {
       this.router.navigateByUrl(`${basePath}/change-passwd`);
-    } else if (this.mode === 'ChangePassword') {
+    } else if (this.mode === 'PASSWORD') {
       this.router.navigateByUrl(`${basePath}/edit`);
     }
   }
 
   switchMode() {
-    const basePath = getBasePath(this.route); // Obtener la base: '/me' o '/users/:id'
-    console.log({ ...this });
-    if (this.mode === 'EditUser') {
+    const basePath = getBasePath(this.router.url); // Obtener la base: '/me' o '/users/:id'
+    console.log('->', { basePath });
+    if (this.mode === 'EDIT' || this.mode === 'PASSWORD') {
       this.router.navigateByUrl(basePath);
-    } else if (this.mode === 'ViewUser') {
+    } else if (this.mode === 'VIEW') {
       this.router.navigateByUrl(`${basePath}/edit`);
     }
   }
@@ -264,16 +240,20 @@ export class UserFormComponent implements OnInit {
   }
 
   private loadUser() {
-    // this.setData();
     this.resolve().subscribe({
       next: (user) => {
         this.user = user;
-        this.isHotelManager = (user.rol as UserRol) === 'HOTEL_ADMIN';
-        this.isAdmin = (user.rol as UserRol) === 'ADMIN';
+        this.isManager = (user.rol as UserRol) === 'MANAGER';
+        this.isClient = (user.rol as UserRol) === 'CLIENT';
+        this.isAdmin = this.isAdmin || (user.rol as UserRol) === 'ADMIN';
         this.setData();
       },
       error: (error) => {
         console.error('Error:', error);
+        if (error.status == 404)
+          this.router.navigateByUrl(
+            getBasePath(this.router.url.split('/').slice(0, -1).join('/'))
+          );
       },
     });
   }
@@ -320,17 +300,20 @@ export class UserFormComponent implements OnInit {
     console.log({ data });
 
     switch (this.mode) {
-      case 'Login':
+      case 'LOGIN':
         this.login(data.email, data.currentPassword);
         break;
-      case 'Register':
+      case 'REGISTER':
         this.register(data.name, data.email, data.currentPassword, data.rol);
         break;
-      case 'EditUser':
+      case 'EDIT':
         this.updateUser(data.name, data.email);
         break;
-      case 'ChangePassword':
-        this.changePassword(data.currentPassword, data.newPassword);
+      case 'PASSWORD':
+        this.updatePassword(data.currentPassword, data.newPassword);
+        break;
+      case 'VIEW':
+        this.deleteUser(this.user.id);
         break;
       default:
         break;
@@ -340,11 +323,11 @@ export class UserFormComponent implements OnInit {
   private login(email: string, password: string) {
     this.sessionService.login(email, password).subscribe({
       next: (r: any) => {
-        this.router.navigateByUrl(r.mainPage);
+        if (this.redirect) this.router.navigateByUrl(this.redirect);
+        else this.router.navigateByUrl(r.mainPage);
       },
       error: (error) => {
         console.error(error);
-        // this.toastr.error('Invalid email or password');
       },
     });
   }
@@ -358,11 +341,11 @@ export class UserFormComponent implements OnInit {
     console.log({ name, email, password, rol });
     this.sessionService.register(name, email, password, rol).subscribe({
       next: (r: any) => {
-        this.router.navigateByUrl(r.mainPage);
+        if (this.redirect) this.router.navigateByUrl(this.redirect);
+        else this.router.navigateByUrl(r.mainPage);
       },
       error: (error) => {
         console.error(error);
-        // this.toastr.error('Invalid email or password');
       },
     });
   }
@@ -370,16 +353,48 @@ export class UserFormComponent implements OnInit {
   private updateUser(name: string, email: string) {
     this.userService.updateUser(this.user.id, { name, email }).subscribe({
       next: () => {
-        this.router.navigateByUrl(getBasePath(this.route));
+        this.router.navigateByUrl(getBasePath(this.router.url));
       },
       error: (error) => {
         console.error(error);
-        // this.toastr.error('Invalid email or password');
       },
     });
   }
 
-  private changePassword(password: string | undefined, newPassword: string) {
-    alert('Unimplemented yet');
+  private updatePassword(password: string, newPassword: string) {
+    if (this.isAdmin) password = '';
+    this.authService
+      .changePassword({ email: this.user.email, password, newPassword })
+      .subscribe({
+        next: () => {
+          alert('PASSWORD CHANGE!');
+          this.router.navigateByUrl(getBasePath(this.router.url));
+        },
+        error: (error) => {
+          console.error(error);
+        },
+      });
+  }
+
+  private deleteUser(userId: number) {
+    const isAdmin = this.isAdmin;
+    const isOwner = this.user.id == userId;
+    const adminDel = isAdmin && !isOwner;
+
+    const password = adminDel
+      ? confirm('Desea eliminar el usuario')
+        ? 'password'
+        : undefined
+      : prompt('Confirma tu contraseña actual');
+    if (!!password && password.trim().length != 0)
+      this.authService.deleteUser(userId, password).subscribe({
+        next: () => {
+          if (adminDel) this.router.navigate(['/admin', 'users']);
+          else this.sessionService.logout();
+        },
+        error: (error) => {
+          console.error(error);
+        },
+      });
   }
 }
diff --git a/angular/RestClient/src/app/features/users/users.routes.ts b/angular/RestClient/src/app/features/users/users.routes.ts
new file mode 100644
index 0000000000000000000000000000000000000000..8ed107a8baa86c682ecd20163698c506b3e66adf
--- /dev/null
+++ b/angular/RestClient/src/app/features/users/users.routes.ts
@@ -0,0 +1,51 @@
+import { UserFormComponent } from './user-form/user-form.component';
+import { UserFormRoute } from './types/UserFormData';
+
+export const COMMON_USERS_ROUTES: UserFormRoute[] = [
+  // Common
+  {
+    path: '',
+    data: {
+      mode: {
+        formMode: 'VIEW',
+      },
+    },
+    component: UserFormComponent,
+  },
+  {
+    path: 'edit',
+    data: {
+      mode: {
+        formMode: 'EDIT',
+      },
+    },
+    component: UserFormComponent,
+  },
+  {
+    path: 'change-passwd',
+    data: {
+      mode: {
+        formMode: 'PASSWORD',
+      },
+    },
+    component: UserFormComponent,
+  },
+];
+
+export const USERS_ROUTES: UserFormRoute[] = [
+  ...COMMON_USERS_ROUTES,
+  {
+    // Usuario administrador de hoteles
+    path: 'hotels',
+    data: { expectedRole: 'MANAGER' },
+    loadChildren: () =>
+      import('app/features/hotels').then((m) => m.MANAGERS_ROUTES),
+  },
+  {
+    // Usuario cliente
+    path: 'bookings',
+    data: { expectedRole: 'CLIENT' },
+    loadChildren: () =>
+      import('app/features/bookings').then((m) => m.CLIENT_BOOKINGS_ROUTES),
+  },
+];
diff --git a/angular/RestClient/src/app/page/unauthorized/unauthorized.component.spec.ts b/angular/RestClient/src/app/page/unauthorized/unauthorized.component.spec.ts
deleted file mode 100644
index bab5ad8d9e3b005c4068dffa26dacb9de7417c15..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/page/unauthorized/unauthorized.component.spec.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { ComponentFixture, TestBed } from '@angular/core/testing';
-
-import { UnauthorizedComponent } from './unauthorized.component';
-
-describe('UnauthorizedComponent', () => {
-  let component: UnauthorizedComponent;
-  let fixture: ComponentFixture<UnauthorizedComponent>;
-
-  beforeEach(async () => {
-    await TestBed.configureTestingModule({
-      imports: [UnauthorizedComponent]
-    })
-    .compileComponents();
-
-    fixture = TestBed.createComponent(UnauthorizedComponent);
-    component = fixture.componentInstance;
-    fixture.detectChanges();
-  });
-
-  it('should create', () => {
-    expect(component).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/page/unauthorized/unauthorized.component.ts b/angular/RestClient/src/app/page/unauthorized/unauthorized.component.ts
index 061a73dbe09d717285d19188179a450cd780a699..67f9df6fc352fa34000a0864d9cd71b11745fecd 100644
--- a/angular/RestClient/src/app/page/unauthorized/unauthorized.component.ts
+++ b/angular/RestClient/src/app/page/unauthorized/unauthorized.component.ts
@@ -1,6 +1,6 @@
 import { Component } from '@angular/core';
 import { RouterModule } from '@angular/router';
-import { SessionService } from '../../shared/session.service';
+import { SessionService } from '../../core/services/session/session.service';
 import { MatIconModule } from '@angular/material/icon';
 import { MatButtonModule } from '@angular/material/button';
 
diff --git a/angular/RestClient/src/app/security/rol.guard.spec.ts b/angular/RestClient/src/app/security/rol.guard.spec.ts
deleted file mode 100644
index 0086470eb8061f59d7eea03aed354b751b725743..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/security/rol.guard.spec.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-import { TestBed } from '@angular/core/testing';
-import { CanActivateFn } from '@angular/router';
-
-import { rolGuard } from './rol.guard';
-
-describe('rolGuard', () => {
-  const executeGuard: CanActivateFn = (...guardParameters) => 
-      TestBed.runInInjectionContext(() => rolGuard(...guardParameters));
-
-  beforeEach(() => {
-    TestBed.configureTestingModule({});
-  });
-
-  it('should be created', () => {
-    expect(executeGuard).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/security/rol.guard.ts b/angular/RestClient/src/app/security/rol.guard.ts
deleted file mode 100644
index 53017db2422c5f9e8c62c37622786bc4988673bf..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/security/rol.guard.ts
+++ /dev/null
@@ -1,43 +0,0 @@
-import { inject } from '@angular/core';
-import { CanActivateFn, Router } from '@angular/router';
-import { SessionService } from '../shared/session.service';
-import { UserRol, Session } from '../types';
-import { map } from 'rxjs';
-
-export const rolGuard: CanActivateFn = (route, state) => {
-  const sessionService = inject(SessionService);
-  const router = inject(Router);
-  // Obtén el rol esperado desde los datos de la ruta
-  const expectedRole = route.data?.['expectedRole'];
-
-  // Verifica si el usuario tiene sesión activa
-  const session = sessionService.isValid();
-
-  if (!session) {
-    console.log('no session');
-    router.navigate(['/login']);
-    return false;
-  }
-
-  return sessionService.getSession().pipe(
-    map((session: Session | null) => {
-      if (!session) return false;
-
-      if (
-        Array.isArray(expectedRole) &&
-        (expectedRole as UserRol[]).includes(session.rol)
-      ) {
-        console.log('Rol in Rol arry');
-        return true;
-      } else if (session.rol === expectedRole) {
-        console.log('Rol valido');
-        return true;
-      }
-      console.log('Unautorizado');
-
-      // Redirige si el usuario no tiene el rol necesario
-      router.navigate(['/unauthorized']);
-      return false;
-    })
-  );
-};
diff --git a/angular/RestClient/src/app/shared/auth-client.service.spec.ts b/angular/RestClient/src/app/shared/auth-client.service.spec.ts
deleted file mode 100644
index 718c264fe9fa26ade0a95ea726d68cf899584f1d..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/shared/auth-client.service.spec.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { TestBed } from '@angular/core/testing';
-
-import { AuthClientService } from './auth-client.service';
-
-describe('AuthClientService', () => {
-  let service: AuthClientService;
-
-  beforeEach(() => {
-    TestBed.configureTestingModule({});
-    service = TestBed.inject(AuthClientService);
-  });
-
-  it('should be created', () => {
-    expect(service).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/shared/auth-client.service.ts b/angular/RestClient/src/app/shared/auth-client.service.ts
deleted file mode 100644
index 99d3ebbfc0c91cc88ba2f4266cd1f895ccbfebd9..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/shared/auth-client.service.ts
+++ /dev/null
@@ -1,46 +0,0 @@
-import { Injectable } from '@angular/core';
-import { environment } from '../../environments/environment';
-import { HttpClient } from '@angular/common/http';
-
-@Injectable({
-  providedIn: 'root',
-})
-export class AuthClientService {
-  private readonly URI = environment.authAPI;
-
-  constructor(private http: HttpClient) {}
-
-  login(email: String, password: String) {
-    return this.http.post(
-      `${this.URI}/login`,
-      { email, password }
-      // {
-      //   headers: {
-      //     'Content-Type': 'application/json',
-      //     'Access-Control-Allow-Origin': '*',
-      //     'Access-Control-Allow-Methods':
-      //       'GET, POST, OPTIONS, PUT, PATCH, DELETE',
-      //     'Access-Control-Allow-Headers': 'X-Requested-With,content-type',
-      //     'Access-Control-Allow-Credentials': 'true',
-      //   },
-      // }
-    );
-  }
-
-  register(name: String, email: String, password: String, rol?: String) {
-    return this.http.post(
-      `${this.URI}/register`,
-      {
-        name,
-        email,
-        password,
-        rol,
-      }
-      // {
-      //   headers: {
-      //     'Content-Type': 'application/json',
-      //   },
-      // }
-    );
-  }
-}
diff --git a/angular/RestClient/src/app/shared/booking-client.service.spec.ts b/angular/RestClient/src/app/shared/booking-client.service.spec.ts
deleted file mode 100644
index 7155f3c6a365fd8f46220cabbf90d2889eeaa05a..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/shared/booking-client.service.spec.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { TestBed } from '@angular/core/testing';
-
-import { BookingClientService } from './booking-client.service';
-
-describe('BookingClientService', () => {
-  let service: BookingClientService;
-
-  beforeEach(() => {
-    TestBed.configureTestingModule({});
-    service = TestBed.inject(BookingClientService);
-  });
-
-  it('should be created', () => {
-    expect(service).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/shared/hotel-client.service.spec.ts b/angular/RestClient/src/app/shared/hotel-client.service.spec.ts
deleted file mode 100644
index 5d32879cfc481ef393ffba104889798d7d982863..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/shared/hotel-client.service.spec.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { TestBed } from '@angular/core/testing';
-
-import { HotelClientService } from './hotel-client.service';
-
-describe('HotelClientService', () => {
-  let service: HotelClientService;
-
-  beforeEach(() => {
-    TestBed.configureTestingModule({});
-    service = TestBed.inject(HotelClientService);
-  });
-
-  it('should be created', () => {
-    expect(service).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/shared/index.ts b/angular/RestClient/src/app/shared/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..025765515b7065a3a53b37ce41931562927ffa5d
--- /dev/null
+++ b/angular/RestClient/src/app/shared/index.ts
@@ -0,0 +1 @@
+export * from './navigation/navigation.component';
diff --git a/angular/RestClient/src/app/shared/local-storage.service.spec.ts b/angular/RestClient/src/app/shared/local-storage.service.spec.ts
deleted file mode 100644
index ba1dbd4362ebcfddcd262fc30de07f4beeb466e3..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/shared/local-storage.service.spec.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { TestBed } from '@angular/core/testing';
-
-import { LocalStorageService } from './local-storage.service';
-
-describe('LocalStorageService', () => {
-  let service: LocalStorageService;
-
-  beforeEach(() => {
-    TestBed.configureTestingModule({});
-    service = TestBed.inject(LocalStorageService);
-  });
-
-  it('should be created', () => {
-    expect(service).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/core/navigation/navigation.component.css b/angular/RestClient/src/app/shared/navigation/navigation.component.css
similarity index 100%
rename from angular/RestClient/src/app/core/navigation/navigation.component.css
rename to angular/RestClient/src/app/shared/navigation/navigation.component.css
diff --git a/angular/RestClient/src/app/core/navigation/navigation.component.html b/angular/RestClient/src/app/shared/navigation/navigation.component.html
similarity index 100%
rename from angular/RestClient/src/app/core/navigation/navigation.component.html
rename to angular/RestClient/src/app/shared/navigation/navigation.component.html
diff --git a/angular/RestClient/src/app/core/navigation/navigation.component.ts b/angular/RestClient/src/app/shared/navigation/navigation.component.ts
similarity index 88%
rename from angular/RestClient/src/app/core/navigation/navigation.component.ts
rename to angular/RestClient/src/app/shared/navigation/navigation.component.ts
index effeb032ae23e20086be4661a92971ac5543cb36..43a9f88c852a42a154c11d8e9f1f350841e7aa6c 100644
--- a/angular/RestClient/src/app/core/navigation/navigation.component.ts
+++ b/angular/RestClient/src/app/shared/navigation/navigation.component.ts
@@ -3,11 +3,9 @@ import { RouterModule } from '@angular/router';
 import { MatButtonModule } from '@angular/material/button';
 import { MatMenuModule, MatMenuTrigger } from '@angular/material/menu';
 import { MatIconModule } from '@angular/material/icon';
-import { Session, User, UserRol } from '../../types';
-import { SessionService } from '../../shared/session.service';
-import { UserClientService } from '../../shared/user-client.service';
-import { AuthClientService } from '../../shared/auth-client.service';
-import { Observable } from 'rxjs';
+import { Session } from '@core/models/Session.interface';
+import { UserRol } from '@features/users';
+import { SessionService } from '@core/services';
 
 var comp_id = 0;
 
@@ -88,14 +86,14 @@ export class NavigationComponent implements OnInit {
       id: genId(),
       icon: 'hotel',
       text: 'Hoteles',
-      allowRoles: ['HOTEL_ADMIN'],
+      allowRoles: ['MANAGER'],
       link: '/me/hotels',
     },
     {
       id: genId(),
       icon: 'fiber_new',
       text: 'Registrar hotel',
-      allowRoles: ['HOTEL_ADMIN'],
+      allowRoles: ['MANAGER'],
       link: '/hotels/register',
     },
     {
diff --git a/angular/RestClient/src/app/shared/session.service.spec.ts b/angular/RestClient/src/app/shared/session.service.spec.ts
deleted file mode 100644
index 4238e142b07aad273072a64a6df73c7960707501..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/shared/session.service.spec.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { TestBed } from '@angular/core/testing';
-
-import { SessionService } from './session.service';
-
-describe('SessionService', () => {
-  let service: SessionService;
-
-  beforeEach(() => {
-    TestBed.configureTestingModule({});
-    service = TestBed.inject(SessionService);
-  });
-
-  it('should be created', () => {
-    expect(service).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/shared/user-client.service.spec.ts b/angular/RestClient/src/app/shared/user-client.service.spec.ts
deleted file mode 100644
index 3af6ef2803edf936358c39133305278bb689dd4c..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/shared/user-client.service.spec.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { TestBed } from '@angular/core/testing';
-
-import { UserClientService } from './user-client.service';
-
-describe('UserClientService', () => {
-  let service: UserClientService;
-
-  beforeEach(() => {
-    TestBed.configureTestingModule({});
-    service = TestBed.inject(UserClientService);
-  });
-
-  it('should be created', () => {
-    expect(service).toBeTruthy();
-  });
-});
diff --git a/angular/RestClient/src/app/types/Booking.d.ts b/angular/RestClient/src/app/types/Booking.d.ts
deleted file mode 100644
index 797c8aafb11b15aff5ac7cb9a3f4b510d7628284..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/types/Booking.d.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { Room } from './Room';
-import { User } from './User';
-
-export interface Booking {
-  id: number;
-  startDate: Date;
-  endDate: Date;
-  userId: User;
-  roomId: Room;
-}
diff --git a/angular/RestClient/src/app/types/User.d.ts b/angular/RestClient/src/app/types/User.d.ts
deleted file mode 100644
index 277f806a74fb1b2f854d733cc10acca67f18b840..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/types/User.d.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-export interface User {
-  id: number;
-  name: string;
-  email: String;
-  rol: UserRol;
-}
-
-export interface Client extends User {
-  status: UserState;
-  // bookings: number[] // Booking[]
-}
-
-export interface HotelAdmin extends User {
-  // hotels: number[] // Hotel[]
-}
-
-export type UserRol = 'ADMIN' | 'CLIENT' | 'HOTEL_ADMIN';
-
-export type UserStateFilter = 'All' | UserState;
-
-export type UserState =
-  | 'NO_BOOKINGS'
-  | 'WITH_ACTIVE_BOOKINGS'
-  | 'WITH_INACTIVE_BOOKINGS';
diff --git a/angular/RestClient/src/app/types/index.ts b/angular/RestClient/src/app/types/index.ts
deleted file mode 100644
index 09338254dd1b87fdc9aa00cb7342f0865fc382de..0000000000000000000000000000000000000000
--- a/angular/RestClient/src/app/types/index.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { RoomType } from './Room';
-import { UserRol } from './User';
-
-export type * from './User';
-export type * from './Address';
-export type * from './Hotel';
-export type * from './Room';
-export const roomTypeArray: RoomType[] = ['SINGLE', 'DOUBLE', 'SUITE'];
-export type * from './Booking';
-export type * from './User';
-export const UserRolesArray: UserRol[] = ['CLIENT', 'HOTEL_ADMIN', 'ADMIN'];
-export type * from './Session';
diff --git a/angular/RestClient/src/app/utils/index.ts b/angular/RestClient/src/app/utils/index.ts
new file mode 100644
index 0000000000000000000000000000000000000000..04bca77e0dec46fccb655a9203c2c8ee57ba7ed2
--- /dev/null
+++ b/angular/RestClient/src/app/utils/index.ts
@@ -0,0 +1 @@
+export * from './utils';
diff --git a/angular/RestClient/src/app/utils/utils.ts b/angular/RestClient/src/app/utils/utils.ts
index 1c97d18b18ba30a2588acf79ecddb5a0f9747146..e5ec01597501569bb46070264fa1063acf6a16e9 100644
--- a/angular/RestClient/src/app/utils/utils.ts
+++ b/angular/RestClient/src/app/utils/utils.ts
@@ -1,18 +1,19 @@
-import { ActivatedRoute } from '@angular/router';
-
-export function getBasePath(route: ActivatedRoute): string {
-  const urlSegments = route.snapshot.url;
-  if (urlSegments[0].path === 'me') {
-    return '/me';
-  } else if (
-    urlSegments.length >= 3 &&
-    urlSegments[0].path === 'admin' &&
-    urlSegments[1].path === 'users' &&
-    urlSegments[2]
-  ) {
-    return `/admin/users/${urlSegments[2]}`; // Devuelve la ruta con el ID del usuario
-  } else if (urlSegments[0].path === 'admin') {
-    return '/me';
+export function getBasePath(route: string) {
+  const url = route.split('/').slice(1);
+  const me = 'me';
+  let base = me;
+  if (url.length > 0 && url[0] === me) {
+    base = url[0];
+  } else if (url.length > 0 && url[0] === 'admin') {
+    const i = url.indexOf('users');
+    const j = url.indexOf('hotels');
+    base =
+      i !== -1
+        ? url.slice(0, i + 2).join('/')
+        : j !== -1
+        ? url.slice(0, i + 2).join('/')
+        : me;
   }
-  throw new Error('Invalid route structure'); // Manejo de errores si la URL no es válida
+
+  return `/${base}`;
 }
diff --git a/angular/RestClient/src/environments/environment.prod.ts b/angular/RestClient/src/environments/environment.prod.ts
index 4449314c617cbe840dd565f8465279c597b0dd0a..88bea49ff46a558605e6e2c0408f24bb0eb52d91 100644
--- a/angular/RestClient/src/environments/environment.prod.ts
+++ b/angular/RestClient/src/environments/environment.prod.ts
@@ -1,18 +1,9 @@
-// const monolithUrl = 'http://rooms-booking-api:8080';
-
-// export const environment = {
-//   production: true,
-//   authAPI: 'http://auth-api:8101',
-//   userAPI: `http://${monolithUrl}/users`,
-//   hotelAPI: `http://${monolithUrl}/hotels`,
-//   bookingAPI: `http://${monolithUrl}/bookings`,
-// };
-const monolithUrl = 'localhost:8080';
+const gateWayUrl = 'localhost:8000/api'; // kong
 
 export const environment = {
-  production: false,
-  authAPI: 'http://localhost:8101',
-  userAPI: `http://${monolithUrl}/users`,
-  hotelAPI: `http://${monolithUrl}/hotels`,
-  bookingAPI: `http://${monolithUrl}/bookings`,
+  production: true,
+  authAPI: `http://${gateWayUrl}/auth`,
+  userAPI: `http://${gateWayUrl}/users`,
+  hotelAPI: `http://${gateWayUrl}/hotels`,
+  bookingAPI: `http://${gateWayUrl}/bookings`,
 };
diff --git a/angular/RestClient/src/environments/environment.ts b/angular/RestClient/src/environments/environment.ts
index 4264ad5b8fcbc528de02ea9e038a19aa2f617254..0d80152f74dd186e2deb5a7d90bfc7fc01d3de46 100644
--- a/angular/RestClient/src/environments/environment.ts
+++ b/angular/RestClient/src/environments/environment.ts
@@ -1,9 +1,8 @@
-const monolithUrl = 'localhost:8080';
-
+const developmentHost = 'localhost';
 export const environment = {
   production: false,
-  authAPI: 'http://localhost:8101',
-  userAPI: `http://${monolithUrl}/users`,
-  hotelAPI: `http://${monolithUrl}/hotels`,
-  bookingAPI: `http://${monolithUrl}/bookings`,
+  authAPI: `http://${developmentHost}:8101/auth`,
+  userAPI: `http://${developmentHost}:8201/users`,
+  hotelAPI: `http://${developmentHost}:8301/hotels`,
+  bookingAPI: `http://${developmentHost}:8401/bookings`,
 };
diff --git a/angular/RestClient/src/mocks/bookings.json b/angular/RestClient/src/mocks/bookings.json
new file mode 100644
index 0000000000000000000000000000000000000000..7db55ff76f1627de21762d95a7732a4f7be1ce34
--- /dev/null
+++ b/angular/RestClient/src/mocks/bookings.json
@@ -0,0 +1,30 @@
+[
+  {
+    "user": {
+      "name": "John Doe",
+      "email": "john.doe@example.com",
+      "status": "NO_BOOKINGS"
+    },
+    "room": {
+      "roomNumber": "101",
+      "type": "SINGLE",
+      "available": true
+    },
+    "startDate": "2024-03-01",
+    "endDate": "2024-03-08"
+  },
+  {
+    "user": {
+      "name": "Pepe",
+      "email": "pepe@example.com",
+      "status": "WITH_ACTIVE_BOOKINGS"
+    },
+    "room": {
+      "roomNumber": "101",
+      "type": "SINGLE",
+      "available": true
+    },
+    "startDate": "2024-03-15",
+    "endDate": "2024-03-22"
+  }
+]
diff --git a/angular/RestClient/src/mocks/hotels.json b/angular/RestClient/src/mocks/hotels.json
new file mode 100644
index 0000000000000000000000000000000000000000..2f3b19449b068f80ba46014cf40e525878675069
--- /dev/null
+++ b/angular/RestClient/src/mocks/hotels.json
@@ -0,0 +1,39 @@
+[
+  {
+    "name": "Hotel 1",
+    "address": {
+      "streetName": "Aca al lao",
+      "streetKind": "Alargada",
+      "number": 12,
+      "postCode": "12345"
+    },
+    "rooms": [
+      {
+        "roomNumber": "101",
+        "type": "SINGLE",
+        "available": true
+      },
+      {
+        "roomNumber": "102",
+        "type": "DOUBLE",
+        "available": false
+      }
+    ]
+  },
+  {
+    "name": "Hotel 2",
+    "address": {
+      "streetName": "Calle de la plaza",
+      "streetKind": "Alargada",
+      "number": 12,
+      "postCode": "12345"
+    },
+    "rooms": [
+      {
+        "roomNumber": "103",
+        "type": "SUITE",
+        "available": true
+      }
+    ]
+  }
+]
diff --git a/angular/RestClient/src/mocks/users.json b/angular/RestClient/src/mocks/users.json
new file mode 100644
index 0000000000000000000000000000000000000000..2f02d00125b0deaa2a86db47ea26f0c91f2e5fa3
--- /dev/null
+++ b/angular/RestClient/src/mocks/users.json
@@ -0,0 +1,12 @@
+[
+  {
+    "name": "John Doe",
+    "email": "john.doe@example.com",
+    "status": "NO_BOOKINGS"
+  },
+  {
+    "name": "Pepe",
+    "email": "pepe@example.com",
+    "status": "WITH_ACTIVE_BOOKINGS"
+  }
+]
diff --git a/angular/RestClient/src/mocks/users.ts b/angular/RestClient/src/mocks/users.ts
index f6fafe67e13993f0e5b1a48c5443d43f6d3c2c3d..3a78c8f4a7aba4b8530749d82094e3e501a186f5 100644
--- a/angular/RestClient/src/mocks/users.ts
+++ b/angular/RestClient/src/mocks/users.ts
@@ -1,18 +1,20 @@
-import { Client, User } from '../app/types';
+import { Client } from '@features/users/types/User.interface'; // Asegúrate de importar el tipo Client desde donde lo hayas definido
 
 export const users: Client[] = [
   {
-    id: 1,
-    name: 'John Doe',
-    email: 'jon@com',
-    rol: 'CLIENT',
-    status: 'NO_BOOKINGS',
+    id: 1,  
+    name: "John Doe",
+    email: "john.doe@example.com",
+    status: "NO_BOOKINGS",
+    bookings: [], 
+    rol: "CLIENT"
   },
   {
-    id: 2,
-    name: 'Angela Doe',
-    email: 'angle@com',
-    rol: 'CLIENT',
-    status: 'NO_BOOKINGS',
-  },
+    id: 2,  // Otro ID único
+    name: "Pepe",
+    email: "pepe@example.com",
+    status: "WITH_ACTIVE_BOOKINGS",
+    bookings: [], 
+    rol: "CLIENT" 
+  }
 ];
diff --git a/angular/RestClient/suggested_struct.md b/angular/RestClient/suggested_struct.md
new file mode 100644
index 0000000000000000000000000000000000000000..e1d72cf57a09fa96ddc0983a895549d4dbc68028
--- /dev/null
+++ b/angular/RestClient/suggested_struct.md
@@ -0,0 +1,179 @@
+¡Gracias por compartir la estructura de tu proyecto! La organización que tienes ya está bastante bien y sigue un esquema modular lógico. Sin embargo, puedo ofrecerte algunas **sugerencias para mejorar la organización** y seguir las mejores prácticas modernas de Angular, especialmente para proyectos grandes como este.
+
+---
+
+### **Propuesta de Ajustes para Mejorar Escalabilidad y Mantenimiento**
+
+1. **Separa el código relacionado con "Core" y "Features" claramente**
+   Actualmente, dentro de `core` tienes una carpeta llamada `features`, lo cual puede generar confusión porque los módulos funcionales suelen estar en un nivel separado del núcleo.
+
+   **Propuesta:**
+   Mueve `features` al nivel raíz de `app/`. Así, `core` queda solo para configuraciones globales y servicios singleton, mientras que los módulos de funcionalidad se agrupan claramente en `features`.
+
+   ```
+   app/
+   ├── core/
+   │   ├── guards/
+   │   ├── interceptors/
+   │   ├── services/
+   │   ├── interfaces/ (puede fusionarse con `types` si prefieres)
+   │   └── core.module.ts
+   ├── features/ (antes dentro de core/features)
+   │   ├── auth/
+   │   ├── bookings/
+   │   ├── hotel/
+   │   ├── user/
+   │   └── ...
+   ```
+
+---
+
+2. **Reorganiza `shared` para dividir los servicios y componentes reutilizables**
+   Actualmente, `shared` contiene todos los servicios reutilizables. Esto está bien, pero puedes separar los servicios de otros posibles elementos reutilizables (como pipes, directivas, o componentes). Esto mejora la claridad y hace que sea más fácil expandir `shared` en el futuro.
+
+   **Propuesta:**
+   ```
+   shared/
+   ├── components/               # Componentes reutilizables (header, footer, spinner, etc.)
+   ├── directives/               # Directivas personalizadas (si las usas en el futuro)
+   ├── pipes/                    # Pipes personalizados
+   ├── services/                 # Servicios reutilizables (actualmente en `shared`)
+   │   ├── auth-client.service.ts
+   │   ├── booking-client.service.ts
+   │   ├── hotel-client.service.ts
+   │   ├── local-storage.service.ts
+   │   ├── session.service.ts
+   │   └── user-client.service.ts
+   └── shared.module.ts          # Opcional, exporta recursos reutilizables
+   ```
+
+---
+
+3. **Agrupa los tests de Guards, Interceptors y otros elementos de seguridad**
+   Los guards e interceptores relacionados con seguridad están correctamente en `security`. Sin embargo, para seguir un esquema uniforme, puedes agrupar sus tests (`*.spec.ts`) en subcarpetas junto con los archivos que prueban.
+
+   **Propuesta:**
+   ```
+   security/
+   ├── guards/
+   │   ├── rol.guard.ts
+   │   └── rol.guard.spec.ts
+   ├── interceptors/
+   │   ├── auth.interceptor.ts
+   │   └── auth.interceptor.spec.ts
+   ```
+
+---
+
+4. **Claridad en los módulos funcionales dentro de `features`**
+   Tus módulos funcionales (`auth`, `bookings`, `hotel`, `user`) están bien estructurados. Sin embargo, puedes incluir un archivo `routing` y agrupar los componentes y servicios que son específicos de cada módulo.
+
+   **Propuesta para un módulo funcional (ejemplo: `auth`)**:
+   ```
+   auth/
+   ├── components/
+   │   ├── login/
+   │   │   ├── login.component.ts
+   │   │   ├── login.component.html
+   │   │   └── login.component.css
+   │   ├── register/
+   │       ├── register.component.ts
+   │       ├── register.component.html
+   │       └── register.component.css
+   ├── auth-routing.module.ts   # Rutas específicas para el módulo
+   ├── auth.module.ts           # Módulo propio de Auth
+   └── services/
+       ├── auth.service.ts      # Servicios específicos del módulo
+       └── token.service.ts
+   ```
+
+   Esto hace que los servicios y componentes específicos de un módulo no se mezclen con los globales.
+
+---
+
+5. **Centraliza y organiza los tipos (o interfaces)**
+   Actualmente tienes una carpeta `types` con interfaces relacionadas con el dominio (`Address`, `Booking`, etc.). Esto está bien, pero puedes agruparlas en módulos de funcionalidades correspondientes si no son usadas globalmente.
+
+   **Propuesta:**
+   - Si **son compartidas por varios módulos**, mantenlas en `core/interfaces/`.
+   - Si **son específicas de un módulo**, muévelas al módulo correspondiente dentro de `features`.
+
+   **Ejemplo para `Booking.d.ts`:**
+   Si solo es usado por el módulo `bookings`, ubícalo así:
+   ```
+   features/bookings/interfaces/booking.interface.ts
+   ```
+
+   Y actualiza el import en cualquier lugar donde lo uses:
+   ```typescript
+   import { Booking } from '../features/bookings/interfaces/booking.interface';
+   ```
+
+---
+
+6. **Páginas específicas (como `unauthorized`)**
+   La carpeta `page/unauthorized` está correcta, pero en proyectos grandes suele ser más común incluir este tipo de páginas en un módulo funcional. Por ejemplo, si `unauthorized` está relacionado con autenticación, podría ir dentro de `features/auth`.
+
+   **Propuesta:**
+   ```
+   features/auth/
+   ├── unauthorized/
+   │   ├── unauthorized.component.ts
+   │   ├── unauthorized.component.html
+   │   └── unauthorized.component.css
+   ```
+
+   Si está pensada como una página global (accesible desde cualquier lugar), puedes dejarla en `core/` o en su propio módulo funcional como `pages/unauthorized`.
+
+---
+
+### **Versión Reorganizada**
+Tu estructura reorganizada podría verse así:
+```
+src/
+├── app/
+│   ├── core/
+│   │   ├── guards/
+│   │   │   ├── rol.guard.ts
+│   │   │   └── rol.guard.spec.ts
+│   │   ├── interceptors/
+│   │   │   ├── auth.interceptor.ts
+│   │   │   └── auth.interceptor.spec.ts
+│   │   ├── services/           # Servicios singleton
+│   │   ├── interfaces/         # Interfaces globales
+│   │   └── core.module.ts
+│   ├── shared/
+│   │   ├── components/
+│   │   │   ├── header/
+│   │   │   └── footer/
+│   │   ├── directives/
+│   │   ├── pipes/
+│   │   ├── services/
+│   │   └── shared.module.ts
+│   ├── features/
+│   │   ├── auth/
+│   │   │   ├── components/
+│   │   │   ├── services/
+│   │   │   ├── interfaces/
+│   │   │   ├── unauthorized/
+│   │   │   ├── auth-routing.module.ts
+│   │   │   └── auth.module.ts
+│   │   ├── bookings/
+│   │   ├── hotel/
+│   │   └── user/
+│   ├── app-routing.module.ts
+│   ├── app.component.ts
+│   └── app.module.ts
+├── environments/
+├── styles/
+└── utils/
+```
+
+---
+
+### **Beneficios de esta Reorganización**
+1. **Claridad:** Diferenciación clara entre módulos funcionales (`features`), servicios globales (`core`), y recursos reutilizables (`shared`).
+2. **Escalabilidad:** Módulos funcionales pueden crecer sin afectar otras partes del proyecto.
+3. **Mantenibilidad:** Cada archivo está en un lugar lógico, lo que facilita encontrar y modificar código.
+
+Si necesitas ejemplos de código para implementar alguna parte, ¡házmelo saber! 😊
diff --git a/angular/RestClient/suggested_tree b/angular/RestClient/suggested_tree
new file mode 100644
index 0000000000000000000000000000000000000000..25ac5d163023fcd24cfa22e63d69b8429b7c4b21
--- /dev/null
+++ b/angular/RestClient/suggested_tree
@@ -0,0 +1,38 @@
+src/
+├── app/
+│   ├── core/
+│   │   ├── guards/
+│   │   │   ├── rol.guard.ts
+│   │   │   └── rol.guard.spec.ts
+│   │   ├── interceptors/
+│   │   │   ├── auth.interceptor.ts
+│   │   │   └── auth.interceptor.spec.ts
+│   │   ├── services/           # Servicios singleton
+│   │   ├── interfaces/         # Interfaces globales
+│   │   └── core.module.ts
+│   ├── shared/
+│   │   ├── components/
+│   │   │   ├── header/
+│   │   │   └── footer/
+│   │   ├── directives/
+│   │   ├── pipes/
+│   │   ├── services/
+│   │   └── shared.module.ts
+│   ├── features/
+│   │   ├── auth/
+│   │   │   ├── components/
+│   │   │   ├── services/
+│   │   │   ├── interfaces/
+│   │   │   ├── unauthorized/
+│   │   │   ├── auth-routing.module.ts
+│   │   │   └── auth.module.ts
+│   │   ├── bookings/
+│   │   ├── hotel/
+│   │   └── user/
+│   ├── app-routing.module.ts
+│   ├── app.component.ts
+│   └── app.module.ts
+├── environments/
+├── styles/
+└── utils/
+
diff --git a/angular/RestClient/tsconfig.json b/angular/RestClient/tsconfig.json
index a8bb65b6e220b8a16a8cba8241833468f1145586..821557e7cb09e762a61b1ada9e8f2f46de4fed3f 100644
--- a/angular/RestClient/tsconfig.json
+++ b/angular/RestClient/tsconfig.json
@@ -19,10 +19,16 @@
     "importHelpers": true,
     "target": "ES2022",
     "module": "ES2022",
-    "lib": [
-      "ES2022",
-      "dom"
-    ]
+    "lib": ["ES2022", "dom"],
+    "baseUrl": "./src", // Define la base del proyecto
+    "paths": {
+      "@core/*": ["app/core/*"], // Alias para el core
+      "@shared": ["app/shared"], // Alias para shared
+      "@shared/*": ["app/shared/*"], // Alias para shared
+      "@features/*": ["app/features/*"], // Alias para features
+      "@utils/*": ["app/utils/*"], // Alias para utilidades
+      "@pages/*": ["app/pages/*"] // Alias para pages
+    }
   },
   "angularCompilerOptions": {
     "enableI18nLegacyMessageIdFormat": false,
diff --git a/diagramas/Angular.svg b/diagramas/Angular.svg
new file mode 100644
index 0000000000000000000000000000000000000000..1bef5d33fa1ea9de3e4284e10443fd9f2628b5b2
--- /dev/null
+++ b/diagramas/Angular.svg
@@ -0,0 +1,587 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
+          'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
+<svg xmlns:xlink="http://www.w3.org/1999/xlink" style="fill-opacity:1; color-rendering:auto; color-interpolation:auto; text-rendering:auto; stroke:black; stroke-linecap:square; stroke-miterlimit:10; shape-rendering:auto; stroke-opacity:1; fill:black; stroke-dasharray:none; font-weight:normal; stroke-width:1; font-family:'Dialog'; font-style:normal; stroke-linejoin:miter; font-size:12px; stroke-dashoffset:0; image-rendering:auto;" width="1201" height="929" xmlns="http://www.w3.org/2000/svg"
+><!--Generated by the Batik Graphics2D SVG Generator--><defs id="genericDefs"
+  /><g
+  ><defs id="defs1"
+    ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath1"
+      ><path d="M0 0 L1201 0 L1201 929 L0 929 L0 0 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2"
+      ><path d="M261.3156 -266.3217 L1162.0656 -266.3217 L1162.0656 430.4283 L261.3156 430.4283 L261.3156 -266.3217 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath3"
+      ><path d="M-581.0966 -567.9102 L319.6534 -567.9102 L319.6534 128.8398 L-581.0966 128.8398 L-581.0966 -567.9102 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath4"
+      ><path d="M-562.0966 -584.2543 L338.6534 -584.2543 L338.6534 112.4957 L-562.0966 112.4957 L-562.0966 -584.2543 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath5"
+      ><path d="M-581.0966 -472.5891 L319.6534 -472.5891 L319.6534 224.1609 L-581.0966 224.1609 L-581.0966 -472.5891 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath6"
+      ><path d="M-551.0966 -488.9333 L349.6534 -488.9333 L349.6534 207.8167 L-551.0966 207.8167 L-551.0966 -488.9333 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath7"
+      ><path d="M-581.0966 -189.1785 L319.6534 -189.1785 L319.6534 507.5716 L-581.0966 507.5716 L-581.0966 -189.1785 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath8"
+      ><path d="M-554.6882 -205.5226 L346.0618 -205.5226 L346.0618 491.2274 L-554.6882 491.2274 L-554.6882 -205.5226 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath9"
+      ><path d="M-581.0966 -281.0504 L319.6534 -281.0504 L319.6534 415.6996 L-581.0966 415.6996 L-581.0966 -281.0504 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath10"
+      ><path d="M-571.0966 -297.3945 L329.6534 -297.3945 L329.6534 399.3555 L-571.0966 399.3555 L-571.0966 -297.3945 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath11"
+      ><path d="M-581.0966 -373.0263 L319.6534 -373.0263 L319.6534 323.7237 L-581.0966 323.7237 L-581.0966 -373.0263 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath12"
+      ><path d="M-561.0966 -389.3705 L339.6534 -389.3705 L339.6534 307.3795 L-561.0966 307.3795 L-561.0966 -389.3705 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath13"
+      ><path d="M-581.0966 -97.4625 L319.6534 -97.4625 L319.6534 599.2875 L-581.0966 599.2875 L-581.0966 -97.4625 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath14"
+      ><path d="M-559.5966 -113.8066 L341.1534 -113.8066 L341.1534 582.9434 L-559.5966 582.9434 L-559.5966 -113.8066 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath15"
+      ><path d="M-213.9563 -278.9017 L686.7938 -278.9017 L686.7938 417.8483 L-213.9563 417.8483 L-213.9563 -278.9017 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath16"
+      ><path d="M-223.0703 -281.2458 L677.6797 -281.2458 L677.6797 415.5042 L-223.0703 415.5042 L-223.0703 -281.2458 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath17"
+      ><path d="M-204.0636 -325.198 L696.6864 -325.198 L696.6864 371.552 L-204.0636 371.552 L-204.0636 -325.198 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath18"
+      ><path d="M-227.0977 -327.5421 L673.6523 -327.5421 L673.6523 369.2079 L-227.0977 369.2079 L-227.0977 -327.5421 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath19"
+      ><path d="M-203.1202 -396.1798 L697.6298 -396.1798 L697.6298 300.5702 L-203.1202 300.5702 L-203.1202 -396.1798 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath20"
+      ><path d="M-201.7101 -398.5239 L699.0399 -398.5239 L699.0399 298.2261 L-201.7101 298.2261 L-201.7101 -398.5239 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath21"
+      ><path d="M-214.1984 -28 L686.5516 -28 L686.5516 668.75 L-214.1984 668.75 L-214.1984 -28 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath22"
+      ><path d="M-234.3225 -30.3441 L666.4274 -30.3441 L666.4274 666.4059 L-234.3225 666.4059 L-234.3225 -30.3441 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath23"
+      ><path d="M-201.4303 -145.2781 L699.3197 -145.2781 L699.3197 551.4719 L-201.4303 551.4719 L-201.4303 -145.2781 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath24"
+      ><path d="M-223.0604 -147.6222 L677.6896 -147.6222 L677.6896 549.1277 L-223.0604 549.1277 L-223.0604 -147.6222 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath25"
+      ><path d="M-206.9859 -77.3012 L693.7642 -77.3012 L693.7642 619.4488 L-206.9859 619.4488 L-206.9859 -77.3012 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath26"
+      ><path d="M-214.7499 -79.6453 L686.0001 -79.6453 L686.0001 617.1047 L-214.7499 617.1047 L-214.7499 -79.6453 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath27"
+      ><path d="M-213.9563 -508.5979 L686.7938 -508.5979 L686.7938 188.1521 L-213.9563 188.1521 L-213.9563 -508.5979 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath28"
+      ><path d="M-235.7545 -510.942 L664.9955 -510.942 L664.9955 185.808 L-235.7545 185.808 L-235.7545 -510.942 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath29"
+      ><path d="M-203.1202 -555.1961 L697.6298 -555.1961 L697.6298 141.5539 L-203.1202 141.5539 L-203.1202 -555.1961 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath30"
+      ><path d="M-187.982 -557.5402 L712.7679 -557.5402 L712.7679 139.2097 L-187.982 139.2097 L-187.982 -557.5402 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath31"
+      ><path d="M-203.1202 -641.4189 L697.6298 -641.4189 L697.6298 55.3311 L-203.1202 55.3311 L-203.1202 -641.4189 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath32"
+      ><path d="M-187.8021 -643.763 L712.9479 -643.763 L712.9479 52.987 L-187.8021 52.987 L-187.8021 -643.763 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath33"
+      ><path d="M-69.0795 -592.6548 L831.6705 -592.6548 L831.6705 104.0951 L-69.0795 104.0951 L-69.0795 -592.6548 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath34"
+      ><path d="M-60.1633 -671.5676 L840.5867 -671.5676 L840.5867 25.1824 L-60.1633 25.1824 L-60.1633 -671.5676 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath35"
+      ><path d="M-62.7143 -355.5535 L838.0358 -355.5535 L838.0358 341.1965 L-62.7143 341.1965 L-62.7143 -355.5535 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath36"
+      ><path d="M-70.2629 -161.2842 L830.4871 -161.2842 L830.4871 535.4658 L-70.2629 535.4658 L-70.2629 -161.2842 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath37"
+      ><path d="M-71.2739 -93.1993 L829.4761 -93.1993 L829.4761 603.5507 L-71.2739 603.5507 L-71.2739 -93.1993 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath38"
+      ><path d="M-10 -630.7503 L890.75 -630.7503 L890.75 65.9997 L-10 65.9997 L-10 -630.7503 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath39"
+      ><path d="M-870.0676 -377.2453 L30.6824 -377.2453 L30.6824 319.5047 L-870.0676 319.5047 L-870.0676 -377.2453 Z"
+      /></clipPath
+    ></defs
+    ><g style="fill:white; stroke:white;"
+    ><rect x="0" y="0" width="1201" style="clip-path:url(#clipPath1); stroke:none;" height="929"
+    /></g
+    ><g transform="scale(1.3333,1.3333) translate(-261.3156,266.3217)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; stroke-width:2; shape-rendering:crispEdges; stroke:rgb(255,255,204);"
+    ><rect x="813.4122" y="283.5885" width="126" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="813.4122" y="283.5885" width="126" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(842.4122,301.5885)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath3);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(823.4122,317.9326)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM32.295 -7.1719 Q31.2481 -7.1719 30.6856 -6.3906 Q30.1387 -5.6094 30.1387 -4.2656 Q30.1387 -2.8906 30.6543 -2.1406 Q31.17 -1.3906 32.295 -1.3906 Q32.8262 -1.3906 33.3418 -1.5 Q33.8575 -1.625 34.4825 -1.8438 L34.4825 -0.3281 Q33.92 -0.0938 33.3575 0.0156 Q32.8106 0.125 32.1231 0.125 Q30.8106 0.125 29.9512 -0.4219 Q29.0918 -0.9688 28.6856 -1.9531 Q28.2793 -2.9531 28.2793 -4.2656 Q28.2793 -5.5625 28.7325 -6.5625 Q29.2012 -7.5625 30.0918 -8.125 Q30.9981 -8.6875 32.295 -8.6875 Q32.9356 -8.6875 33.5762 -8.5156 Q34.2168 -8.3594 34.795 -8.0938 L34.2168 -6.6094 Q33.7325 -6.8438 33.2481 -7 Q32.7637 -7.1719 32.295 -7.1719 ZM37.939 0 L36.1578 0 L36.1578 -9.125 L37.939 -9.125 L37.939 0 ZM40.724 -9.125 Q41.1147 -9.125 41.3959 -8.9375 Q41.6928 -8.75 41.6928 -8.25 Q41.6928 -7.75 41.3959 -7.5625 Q41.1147 -7.375 40.724 -7.375 Q40.3022 -7.375 40.0209 -7.5625 Q39.7397 -7.75 39.7397 -8.25 Q39.7397 -8.75 40.0209 -8.9375 Q40.3022 -9.125 40.724 -9.125 ZM41.599 -6.5469 L41.599 0 L39.8178 0 L39.8178 -6.5469 L41.599 -6.5469 ZM46.1809 -6.6719 Q47.5247 -6.6719 48.3215 -5.8906 Q49.1184 -5.125 49.1184 -3.7031 L49.1184 -2.8281 L44.8997 -2.8281 Q44.9153 -2.0781 45.3372 -1.6406 Q45.7747 -1.2188 46.5247 -1.2188 Q47.1653 -1.2188 47.6809 -1.3438 Q48.1965 -1.4688 48.7434 -1.7344 L48.7434 -0.3438 Q48.259 -0.1094 47.7278 0 Q47.1965 0.125 46.4465 0.125 Q45.4622 0.125 44.6965 -0.2344 Q43.9465 -0.6094 43.509 -1.3438 Q43.0872 -2.0938 43.0872 -3.2344 Q43.0872 -4.375 43.4622 -5.1406 Q43.8528 -5.9062 44.5559 -6.2812 Q45.259 -6.6719 46.1809 -6.6719 ZM46.1809 -5.4062 Q45.6653 -5.4062 45.3215 -5.0625 Q44.9934 -4.7344 44.9309 -4.0156 L47.4309 -4.0156 Q47.4309 -4.625 47.1184 -5.0156 Q46.8215 -5.4062 46.1809 -5.4062 ZM54.2886 -6.6719 Q55.3511 -6.6719 55.9761 -6.0938 Q56.6167 -5.5312 56.6167 -4.2656 L56.6167 0 L54.8355 0 L54.8355 -3.8281 Q54.8355 -4.5312 54.5699 -4.8906 Q54.3199 -5.25 53.773 -5.25 Q52.9605 -5.25 52.648 -4.6875 Q52.3511 -4.125 52.3511 -3.0781 L52.3511 0 L50.5699 0 L50.5699 -6.5469 L51.9292 -6.5469 L52.1792 -5.7188 L52.273 -5.7188 Q52.5855 -6.2188 53.1324 -6.4375 Q53.6792 -6.6719 54.2886 -6.6719 ZM61.2195 -1.3125 Q61.5164 -1.3125 61.782 -1.3594 Q62.0633 -1.4219 62.3445 -1.5156 L62.3445 -0.1875 Q62.0477 -0.0625 61.6258 0.0312 Q61.2039 0.125 60.7039 0.125 Q60.1102 0.125 59.6414 -0.0625 Q59.1883 -0.2656 58.907 -0.7344 Q58.6414 -1.2188 58.6414 -2.0469 L58.6414 -5.2031 L57.7977 -5.2031 L57.7977 -5.9688 L58.782 -6.5625 L59.2977 -7.9375 L60.4383 -7.9375 L60.4383 -6.5469 L62.2664 -6.5469 L62.2664 -5.2031 L60.4383 -5.2031 L60.4383 -2.0469 Q60.4383 -1.6875 60.6414 -1.5 Q60.8602 -1.3125 61.2195 -1.3125 ZM68.8494 -2.375 Q68.8494 -1.2344 68.0213 -0.5469 Q67.2088 0.125 65.6932 0.125 Q64.3494 0.125 63.2713 -0.3906 L63.2713 -2.0938 Q63.8807 -1.8281 64.5369 -1.5938 Q65.1932 -1.375 65.8494 -1.375 Q66.5213 -1.375 66.8026 -1.625 Q67.0838 -1.8906 67.0838 -2.2969 Q67.0838 -2.6094 66.8494 -2.8438 Q66.6307 -3.0781 66.2557 -3.2656 Q65.8963 -3.4688 65.4119 -3.7031 Q65.1151 -3.8438 64.7557 -4.0312 Q64.4119 -4.2344 64.0994 -4.5312 Q63.7869 -4.8281 63.5682 -5.2344 Q63.3651 -5.6562 63.3651 -6.25 Q63.3651 -7.4062 64.1463 -8.0469 Q64.9276 -8.6875 66.2713 -8.6875 Q66.9432 -8.6875 67.5526 -8.5312 Q68.1619 -8.375 68.8182 -8.0938 L68.2401 -6.6719 Q67.6463 -6.9062 67.1776 -7.0312 Q66.7088 -7.1719 66.2088 -7.1719 Q65.6932 -7.1719 65.4119 -6.9375 Q65.1463 -6.7031 65.1463 -6.3125 Q65.1463 -5.8594 65.5526 -5.5938 Q65.9588 -5.3281 66.7713 -4.9375 Q67.4276 -4.625 67.8807 -4.2812 Q68.3494 -3.9531 68.5994 -3.5 Q68.8494 -3.0469 68.8494 -2.375 ZM72.9771 -6.6719 Q74.3209 -6.6719 75.1177 -5.8906 Q75.9146 -5.125 75.9146 -3.7031 L75.9146 -2.8281 L71.6959 -2.8281 Q71.7115 -2.0781 72.1334 -1.6406 Q72.5709 -1.2188 73.3209 -1.2188 Q73.9615 -1.2188 74.4771 -1.3438 Q74.9927 -1.4688 75.5396 -1.7344 L75.5396 -0.3438 Q75.0552 -0.1094 74.524 0 Q73.9927 0.125 73.2427 0.125 Q72.2584 0.125 71.4927 -0.2344 Q70.7427 -0.6094 70.3052 -1.3438 Q69.8834 -2.0938 69.8834 -3.2344 Q69.8834 -4.375 70.2584 -5.1406 Q70.649 -5.9062 71.3521 -6.2812 Q72.0552 -6.6719 72.9771 -6.6719 ZM72.9771 -5.4062 Q72.4615 -5.4062 72.1177 -5.0625 Q71.7896 -4.7344 71.7271 -4.0156 L74.2271 -4.0156 Q74.2271 -4.625 73.9146 -5.0156 Q73.6177 -5.4062 72.9771 -5.4062 ZM81.0223 -6.6719 Q81.1629 -6.6719 81.3348 -6.6562 Q81.5223 -6.6406 81.6317 -6.625 L81.491 -4.9375 Q81.4129 -4.9688 81.241 -4.9844 Q81.0848 -5 80.9598 -5 Q80.5067 -5 80.0848 -4.8438 Q79.6629 -4.6875 79.3973 -4.3125 Q79.1473 -3.9531 79.1473 -3.3438 L79.1473 0 L77.366 0 L77.366 -6.5469 L78.7254 -6.5469 L78.991 -5.4531 L79.0692 -5.4531 Q79.3504 -5.9531 79.8504 -6.3125 Q80.366 -6.6719 81.0223 -6.6719 ZM84.3766 0 L81.8766 -6.5469 L83.7516 -6.5469 L85.0016 -2.8125 Q85.111 -2.4844 85.1735 -2.125 Q85.2516 -1.7656 85.2672 -1.4688 L85.3141 -1.4688 Q85.3453 -2.125 85.5797 -2.8125 L86.8297 -6.5469 L88.7047 -6.5469 L86.2047 0 L84.3766 0 ZM90.5484 -9.125 Q90.939 -9.125 91.2203 -8.9375 Q91.5171 -8.75 91.5171 -8.25 Q91.5171 -7.75 91.2203 -7.5625 Q90.939 -7.375 90.5484 -7.375 Q90.1265 -7.375 89.8453 -7.5625 Q89.564 -7.75 89.564 -8.25 Q89.564 -8.75 89.8453 -8.9375 Q90.1265 -9.125 90.5484 -9.125 ZM91.4234 -6.5469 L91.4234 0 L89.6421 0 L89.6421 -6.5469 L91.4234 -6.5469 ZM95.9584 0.125 Q94.5053 0.125 93.7084 -0.6875 Q92.9115 -1.5 92.9115 -3.2344 Q92.9115 -4.4375 93.3178 -5.1875 Q93.724 -5.9531 94.4428 -6.3125 Q95.1772 -6.6719 96.1147 -6.6719 Q96.7865 -6.6719 97.2865 -6.5312 Q97.7865 -6.4062 98.1615 -6.2344 L97.6303 -4.8438 Q97.2084 -5.0156 96.8334 -5.125 Q96.474 -5.2344 96.1147 -5.2344 Q94.724 -5.2344 94.724 -3.25 Q94.724 -2.2656 95.0834 -1.7969 Q95.4584 -1.3281 96.1147 -1.3281 Q96.6772 -1.3281 97.1147 -1.4688 Q97.5522 -1.625 97.9584 -1.8906 L97.9584 -0.375 Q97.5522 -0.1094 97.099 0 Q96.6459 0.125 95.9584 0.125 ZM102.1733 -6.6719 Q103.5171 -6.6719 104.3139 -5.8906 Q105.1108 -5.125 105.1108 -3.7031 L105.1108 -2.8281 L100.8921 -2.8281 Q100.9077 -2.0781 101.3296 -1.6406 Q101.7671 -1.2188 102.5171 -1.2188 Q103.1577 -1.2188 103.6733 -1.3438 Q104.1889 -1.4688 104.7358 -1.7344 L104.7358 -0.3438 Q104.2514 -0.1094 103.7202 0 Q103.1889 0.125 102.4389 0.125 Q101.4546 0.125 100.6889 -0.2344 Q99.9389 -0.6094 99.5014 -1.3438 Q99.0796 -2.0938 99.0796 -3.2344 Q99.0796 -4.375 99.4546 -5.1406 Q99.8452 -5.9062 100.5483 -6.2812 Q101.2514 -6.6719 102.1733 -6.6719 ZM102.1733 -5.4062 Q101.6577 -5.4062 101.3139 -5.0625 Q100.9858 -4.7344 100.9233 -4.0156 L103.4233 -4.0156 Q103.4233 -4.625 103.1108 -5.0156 Q102.8139 -5.4062 102.1733 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath4);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="802.4122" y="188.2674" width="148" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="802.4122" y="188.2674" width="148" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(842.4122,206.2674)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath5);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(812.4122,222.6115)"
+    ><path d="M3.75 -8.5625 Q5.4531 -8.5625 6.3281 -8.0781 Q7.2188 -7.6094 7.2188 -6.3906 Q7.2188 -5.6562 6.875 -5.1562 Q6.5312 -4.6562 5.8906 -4.5469 L5.8906 -4.4844 Q6.3281 -4.4062 6.6719 -4.1875 Q7.0156 -3.9688 7.2188 -3.5625 Q7.4219 -3.1562 7.4219 -2.4844 Q7.4219 -1.3125 6.5781 -0.6562 Q5.75 0 4.2812 0 L1.0781 0 L1.0781 -8.5625 L3.75 -8.5625 ZM3.9531 -5.1719 Q4.7344 -5.1719 5.0469 -5.4219 Q5.3594 -5.6719 5.3594 -6.1562 Q5.3594 -6.6406 4.9844 -6.8594 Q4.625 -7.0781 3.8594 -7.0781 L2.8906 -7.0781 L2.8906 -5.1719 L3.9531 -5.1719 ZM2.8906 -3.7344 L2.8906 -1.5 L4.0781 -1.5 Q4.8906 -1.5 5.2188 -1.8125 Q5.5469 -2.1406 5.5469 -2.6562 Q5.5469 -3.1406 5.2188 -3.4375 Q4.8906 -3.7344 4.0156 -3.7344 L2.8906 -3.7344 ZM14.9547 -3.2812 Q14.9547 -1.6562 14.0953 -0.7656 Q13.2359 0.125 11.7672 0.125 Q10.8453 0.125 10.1266 -0.2656 Q9.4234 -0.6719 9.0172 -1.4375 Q8.6109 -2.2031 8.6109 -3.2812 Q8.6109 -4.9219 9.4547 -5.7969 Q10.3141 -6.6719 11.7984 -6.6719 Q12.7203 -6.6719 13.4234 -6.2656 Q14.1422 -5.875 14.5484 -5.125 Q14.9547 -4.375 14.9547 -3.2812 ZM10.4234 -3.2812 Q10.4234 -2.3125 10.7359 -1.8125 Q11.0641 -1.3125 11.7828 -1.3125 Q12.4859 -1.3125 12.7984 -1.8125 Q13.1266 -2.3125 13.1266 -3.2812 Q13.1266 -4.2656 12.7984 -4.75 Q12.4859 -5.2344 11.7672 -5.2344 Q11.0641 -5.2344 10.7359 -4.75 Q10.4234 -4.2656 10.4234 -3.2812 ZM22.3827 -3.2812 Q22.3827 -1.6562 21.5234 -0.7656 Q20.664 0.125 19.1952 0.125 Q18.2734 0.125 17.5546 -0.2656 Q16.8515 -0.6719 16.4452 -1.4375 Q16.039 -2.2031 16.039 -3.2812 Q16.039 -4.9219 16.8827 -5.7969 Q17.7421 -6.6719 19.2265 -6.6719 Q20.1484 -6.6719 20.8515 -6.2656 Q21.5702 -5.875 21.9765 -5.125 Q22.3827 -4.375 22.3827 -3.2812 ZM17.8515 -3.2812 Q17.8515 -2.3125 18.164 -1.8125 Q18.4921 -1.3125 19.2109 -1.3125 Q19.914 -1.3125 20.2265 -1.8125 Q20.5546 -2.3125 20.5546 -3.2812 Q20.5546 -4.2656 20.2265 -4.75 Q19.914 -5.2344 19.1952 -5.2344 Q18.4921 -5.2344 18.164 -4.75 Q17.8515 -4.2656 17.8515 -3.2812 ZM25.6389 -5.0469 Q25.6389 -4.6719 25.6077 -4.2969 Q25.5764 -3.9375 25.5452 -3.5625 L25.5764 -3.5625 Q25.7483 -3.8125 25.9358 -4.0625 Q26.1389 -4.3281 26.3577 -4.5625 L28.1858 -6.5469 L30.2014 -6.5469 L27.6077 -3.7031 L30.3577 0 L28.2952 0 L26.4045 -2.6562 L25.6389 -2.0469 L25.6389 0 L23.8577 0 L23.8577 -9.125 L25.6389 -9.125 L25.6389 -5.0469 ZM32.204 -9.125 Q32.5946 -9.125 32.8758 -8.9375 Q33.1727 -8.75 33.1727 -8.25 Q33.1727 -7.75 32.8758 -7.5625 Q32.5946 -7.375 32.204 -7.375 Q31.7821 -7.375 31.5008 -7.5625 Q31.2196 -7.75 31.2196 -8.25 Q31.2196 -8.75 31.5008 -8.9375 Q31.7821 -9.125 32.204 -9.125 ZM33.079 -6.5469 L33.079 0 L31.2977 0 L31.2977 -6.5469 L33.079 -6.5469 ZM38.6765 -6.6719 Q39.739 -6.6719 40.364 -6.0938 Q41.0046 -5.5312 41.0046 -4.2656 L41.0046 0 L39.2234 0 L39.2234 -3.8281 Q39.2234 -4.5312 38.9577 -4.8906 Q38.7077 -5.25 38.1609 -5.25 Q37.3484 -5.25 37.0359 -4.6875 Q36.739 -4.125 36.739 -3.0781 L36.739 0 L34.9577 0 L34.9577 -6.5469 L36.3171 -6.5469 L36.5671 -5.7188 L36.6609 -5.7188 Q36.9734 -6.2188 37.5202 -6.4375 Q38.0671 -6.6719 38.6765 -6.6719 ZM44.9668 -6.6719 Q46.1699 -6.6719 46.8574 -5.7188 L46.9043 -5.7188 L47.0449 -6.5469 L48.5605 -6.5469 L48.5605 0.0156 Q48.5605 1.4219 47.7324 2.1406 Q46.9043 2.875 45.2949 2.875 Q44.5918 2.875 43.998 2.7969 Q43.4043 2.7188 42.8418 2.5 L42.8418 1.0625 Q44.0449 1.5781 45.3887 1.5781 Q46.7793 1.5781 46.7793 0.0781 L46.7793 -0.0469 Q46.7793 -0.25 46.7949 -0.4688 Q46.8105 -0.6875 46.8262 -0.8594 L46.7793 -0.8594 Q46.4355 -0.3438 45.9668 -0.1094 Q45.498 0.125 44.9199 0.125 Q43.748 0.125 43.0918 -0.7656 Q42.4512 -1.6719 42.4512 -3.2656 Q42.4512 -4.875 43.123 -5.7656 Q43.7949 -6.6719 44.9668 -6.6719 ZM45.5293 -5.2188 Q44.2637 -5.2188 44.2637 -3.2344 Q44.2637 -1.2812 45.5449 -1.2812 Q46.2324 -1.2812 46.5605 -1.6719 Q46.8887 -2.0625 46.8887 -3.0312 L46.8887 -3.25 Q46.8887 -4.3125 46.5605 -4.7656 Q46.248 -5.2188 45.5293 -5.2188 ZM54.2191 -7.1719 Q53.1722 -7.1719 52.6097 -6.3906 Q52.0628 -5.6094 52.0628 -4.2656 Q52.0628 -2.8906 52.5785 -2.1406 Q53.0941 -1.3906 54.2191 -1.3906 Q54.7503 -1.3906 55.266 -1.5 Q55.7816 -1.625 56.4066 -1.8438 L56.4066 -0.3281 Q55.8441 -0.0938 55.2816 0.0156 Q54.7347 0.125 54.0472 0.125 Q52.7347 0.125 51.8753 -0.4219 Q51.016 -0.9688 50.6097 -1.9531 Q50.2035 -2.9531 50.2035 -4.2656 Q50.2035 -5.5625 50.6566 -6.5625 Q51.1253 -7.5625 52.016 -8.125 Q52.9222 -8.6875 54.2191 -8.6875 Q54.8597 -8.6875 55.5003 -8.5156 Q56.141 -8.3594 56.7191 -8.0938 L56.141 -6.6094 Q55.6566 -6.8438 55.1722 -7 Q54.6878 -7.1719 54.2191 -7.1719 ZM59.8631 0 L58.0819 0 L58.0819 -9.125 L59.8631 -9.125 L59.8631 0 ZM62.6482 -9.125 Q63.0388 -9.125 63.32 -8.9375 Q63.6169 -8.75 63.6169 -8.25 Q63.6169 -7.75 63.32 -7.5625 Q63.0388 -7.375 62.6482 -7.375 Q62.2263 -7.375 61.945 -7.5625 Q61.6638 -7.75 61.6638 -8.25 Q61.6638 -8.75 61.945 -8.9375 Q62.2263 -9.125 62.6482 -9.125 ZM63.5232 -6.5469 L63.5232 0 L61.7419 0 L61.7419 -6.5469 L63.5232 -6.5469 ZM68.1051 -6.6719 Q69.4488 -6.6719 70.2457 -5.8906 Q71.0426 -5.125 71.0426 -3.7031 L71.0426 -2.8281 L66.8238 -2.8281 Q66.8394 -2.0781 67.2613 -1.6406 Q67.6988 -1.2188 68.4488 -1.2188 Q69.0894 -1.2188 69.6051 -1.3438 Q70.1207 -1.4688 70.6676 -1.7344 L70.6676 -0.3438 Q70.1832 -0.1094 69.6519 0 Q69.1207 0.125 68.3707 0.125 Q67.3863 0.125 66.6207 -0.2344 Q65.8707 -0.6094 65.4332 -1.3438 Q65.0113 -2.0938 65.0113 -3.2344 Q65.0113 -4.375 65.3863 -5.1406 Q65.7769 -5.9062 66.4801 -6.2812 Q67.1832 -6.6719 68.1051 -6.6719 ZM68.1051 -5.4062 Q67.5894 -5.4062 67.2457 -5.0625 Q66.9176 -4.7344 66.8551 -4.0156 L69.3551 -4.0156 Q69.3551 -4.625 69.0426 -5.0156 Q68.7457 -5.4062 68.1051 -5.4062 ZM76.2127 -6.6719 Q77.2752 -6.6719 77.9002 -6.0938 Q78.5409 -5.5312 78.5409 -4.2656 L78.5409 0 L76.7596 0 L76.7596 -3.8281 Q76.7596 -4.5312 76.494 -4.8906 Q76.244 -5.25 75.6971 -5.25 Q74.8846 -5.25 74.5721 -4.6875 Q74.2752 -4.125 74.2752 -3.0781 L74.2752 0 L72.494 0 L72.494 -6.5469 L73.8534 -6.5469 L74.1034 -5.7188 L74.1971 -5.7188 Q74.5096 -6.2188 75.0565 -6.4375 Q75.6034 -6.6719 76.2127 -6.6719 ZM83.1437 -1.3125 Q83.4405 -1.3125 83.7062 -1.3594 Q83.9874 -1.4219 84.2687 -1.5156 L84.2687 -0.1875 Q83.9718 -0.0625 83.5499 0.0312 Q83.128 0.125 82.628 0.125 Q82.0343 0.125 81.5655 -0.0625 Q81.1124 -0.2656 80.8312 -0.7344 Q80.5655 -1.2188 80.5655 -2.0469 L80.5655 -5.2031 L79.7218 -5.2031 L79.7218 -5.9688 L80.7062 -6.5625 L81.2218 -7.9375 L82.3624 -7.9375 L82.3624 -6.5469 L84.1905 -6.5469 L84.1905 -5.2031 L82.3624 -5.2031 L82.3624 -2.0469 Q82.3624 -1.6875 82.5655 -1.5 Q82.7843 -1.3125 83.1437 -1.3125 ZM90.7736 -2.375 Q90.7736 -1.2344 89.9454 -0.5469 Q89.1329 0.125 87.6173 0.125 Q86.2736 0.125 85.1954 -0.3906 L85.1954 -2.0938 Q85.8048 -1.8281 86.4611 -1.5938 Q87.1173 -1.375 87.7736 -1.375 Q88.4454 -1.375 88.7267 -1.625 Q89.0079 -1.8906 89.0079 -2.2969 Q89.0079 -2.6094 88.7736 -2.8438 Q88.5548 -3.0781 88.1798 -3.2656 Q87.8204 -3.4688 87.3361 -3.7031 Q87.0392 -3.8438 86.6798 -4.0312 Q86.3361 -4.2344 86.0236 -4.5312 Q85.7111 -4.8281 85.4923 -5.2344 Q85.2892 -5.6562 85.2892 -6.25 Q85.2892 -7.4062 86.0704 -8.0469 Q86.8517 -8.6875 88.1954 -8.6875 Q88.8673 -8.6875 89.4767 -8.5312 Q90.0861 -8.375 90.7423 -8.0938 L90.1642 -6.6719 Q89.5704 -6.9062 89.1017 -7.0312 Q88.6329 -7.1719 88.1329 -7.1719 Q87.6173 -7.1719 87.3361 -6.9375 Q87.0704 -6.7031 87.0704 -6.3125 Q87.0704 -5.8594 87.4767 -5.5938 Q87.8829 -5.3281 88.6954 -4.9375 Q89.3517 -4.625 89.8048 -4.2812 Q90.2736 -3.9531 90.5236 -3.5 Q90.7736 -3.0469 90.7736 -2.375 ZM94.9012 -6.6719 Q96.245 -6.6719 97.0419 -5.8906 Q97.8387 -5.125 97.8387 -3.7031 L97.8387 -2.8281 L93.62 -2.8281 Q93.6356 -2.0781 94.0575 -1.6406 Q94.495 -1.2188 95.245 -1.2188 Q95.8856 -1.2188 96.4012 -1.3438 Q96.9169 -1.4688 97.4637 -1.7344 L97.4637 -0.3438 Q96.9794 -0.1094 96.4481 0 Q95.9169 0.125 95.1669 0.125 Q94.1825 0.125 93.4169 -0.2344 Q92.6669 -0.6094 92.2294 -1.3438 Q91.8075 -2.0938 91.8075 -3.2344 Q91.8075 -4.375 92.1825 -5.1406 Q92.5731 -5.9062 93.2762 -6.2812 Q93.9794 -6.6719 94.9012 -6.6719 ZM94.9012 -5.4062 Q94.3856 -5.4062 94.0419 -5.0625 Q93.7137 -4.7344 93.6512 -4.0156 L96.1512 -4.0156 Q96.1512 -4.625 95.8387 -5.0156 Q95.5419 -5.4062 94.9012 -5.4062 ZM102.9464 -6.6719 Q103.0871 -6.6719 103.2589 -6.6562 Q103.4464 -6.6406 103.5558 -6.625 L103.4152 -4.9375 Q103.3371 -4.9688 103.1652 -4.9844 Q103.0089 -5 102.8839 -5 Q102.4308 -5 102.0089 -4.8438 Q101.5871 -4.6875 101.3214 -4.3125 Q101.0714 -3.9531 101.0714 -3.3438 L101.0714 0 L99.2902 0 L99.2902 -6.5469 L100.6496 -6.5469 L100.9152 -5.4531 L100.9933 -5.4531 Q101.2746 -5.9531 101.7746 -6.3125 Q102.2902 -6.6719 102.9464 -6.6719 ZM106.3007 0 L103.8007 -6.5469 L105.6757 -6.5469 L106.9257 -2.8125 Q107.0351 -2.4844 107.0976 -2.125 Q107.1757 -1.7656 107.1913 -1.4688 L107.2382 -1.4688 Q107.2695 -2.125 107.5038 -2.8125 L108.7538 -6.5469 L110.6288 -6.5469 L108.1288 0 L106.3007 0 ZM112.4725 -9.125 Q112.8631 -9.125 113.1444 -8.9375 Q113.4413 -8.75 113.4413 -8.25 Q113.4413 -7.75 113.1444 -7.5625 Q112.8631 -7.375 112.4725 -7.375 Q112.0506 -7.375 111.7694 -7.5625 Q111.4881 -7.75 111.4881 -8.25 Q111.4881 -8.75 111.7694 -8.9375 Q112.0506 -9.125 112.4725 -9.125 ZM113.3475 -6.5469 L113.3475 0 L111.5663 0 L111.5663 -6.5469 L113.3475 -6.5469 ZM117.8825 0.125 Q116.4294 0.125 115.6325 -0.6875 Q114.8357 -1.5 114.8357 -3.2344 Q114.8357 -4.4375 115.2419 -5.1875 Q115.6482 -5.9531 116.3669 -6.3125 Q117.1013 -6.6719 118.0388 -6.6719 Q118.7107 -6.6719 119.2107 -6.5312 Q119.7107 -6.4062 120.0857 -6.2344 L119.5544 -4.8438 Q119.1325 -5.0156 118.7575 -5.125 Q118.3982 -5.2344 118.0388 -5.2344 Q116.6482 -5.2344 116.6482 -3.25 Q116.6482 -2.2656 117.0075 -1.7969 Q117.3825 -1.3281 118.0388 -1.3281 Q118.6013 -1.3281 119.0388 -1.4688 Q119.4763 -1.625 119.8825 -1.8906 L119.8825 -0.375 Q119.4763 -0.1094 119.0232 0 Q118.57 0.125 117.8825 0.125 ZM124.0975 -6.6719 Q125.4412 -6.6719 126.2381 -5.8906 Q127.035 -5.125 127.035 -3.7031 L127.035 -2.8281 L122.8162 -2.8281 Q122.8318 -2.0781 123.2537 -1.6406 Q123.6912 -1.2188 124.4412 -1.2188 Q125.0818 -1.2188 125.5975 -1.3438 Q126.1131 -1.4688 126.66 -1.7344 L126.66 -0.3438 Q126.1756 -0.1094 125.6443 0 Q125.1131 0.125 124.3631 0.125 Q123.3787 0.125 122.6131 -0.2344 Q121.8631 -0.6094 121.4256 -1.3438 Q121.0037 -2.0938 121.0037 -3.2344 Q121.0037 -4.375 121.3787 -5.1406 Q121.7693 -5.9062 122.4725 -6.2812 Q123.1756 -6.6719 124.0975 -6.6719 ZM124.0975 -5.4062 Q123.5818 -5.4062 123.2381 -5.0625 Q122.91 -4.7344 122.8475 -4.0156 L125.3475 -4.0156 Q125.3475 -4.625 125.035 -5.0156 Q124.7381 -5.4062 124.0975 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath6);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><path d="M1129.295 77.2643 A10 10 0 0 0 1129.295 96.5829" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1121.8832" x2="1046.9874" y1="86.9236" style="clip-path:url(#clipPath2); fill:none; stroke-width:1;" y2="86.9236"
+      /><line x1="1046.9874" x2="1046.9874" y1="86.9236" style="clip-path:url(#clipPath2); fill:none; stroke-width:1;" y2="217.5185"
+      /><line x1="1046.9874" x2="950.4122" y1="217.5185" style="clip-path:url(#clipPath2); fill:none; stroke-width:1;" y2="217.5185"
+      /><line x1="1121.8832" x2="1046.9874" y1="86.9236" style="clip-path:url(#clipPath2); fill:none; stroke-width:1;" y2="86.9236"
+      /><line x1="1046.9874" x2="1046.9874" y1="86.9236" style="clip-path:url(#clipPath2); fill:none; stroke-width:1;" y2="314.4105"
+      /><line x1="1046.9874" x2="939.4122" y1="314.4105" style="clip-path:url(#clipPath2); fill:none; stroke-width:1;" y2="314.4105"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="806.0037" y="-95.1433" width="140.8169" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="806.0037" y="-95.1433" width="140.8169" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(842.4122,-77.1433)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(816.0037,-60.7992)"
+    ><path d="M1.0781 0 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -1.5 L6.375 -1.5 L6.375 0 L1.0781 0 ZM13.6707 -3.2812 Q13.6707 -1.6562 12.8113 -0.7656 Q11.9519 0.125 10.4832 0.125 Q9.5613 0.125 8.8425 -0.2656 Q8.1394 -0.6719 7.7332 -1.4375 Q7.3269 -2.2031 7.3269 -3.2812 Q7.3269 -4.9219 8.1707 -5.7969 Q9.03 -6.6719 10.5144 -6.6719 Q11.4363 -6.6719 12.1394 -6.2656 Q12.8582 -5.875 13.2644 -5.125 Q13.6707 -4.375 13.6707 -3.2812 ZM9.1394 -3.2812 Q9.1394 -2.3125 9.4519 -1.8125 Q9.78 -1.3125 10.4988 -1.3125 Q11.2019 -1.3125 11.5144 -1.8125 Q11.8425 -2.3125 11.8425 -3.2812 Q11.8425 -4.2656 11.5144 -4.75 Q11.2019 -5.2344 10.4832 -5.2344 Q9.78 -5.2344 9.4519 -4.75 Q9.1394 -4.2656 9.1394 -3.2812 ZM17.8018 0.125 Q16.3487 0.125 15.5518 -0.6875 Q14.755 -1.5 14.755 -3.2344 Q14.755 -4.4375 15.1612 -5.1875 Q15.5675 -5.9531 16.2862 -6.3125 Q17.0206 -6.6719 17.9581 -6.6719 Q18.63 -6.6719 19.13 -6.5312 Q19.63 -6.4062 20.005 -6.2344 L19.4737 -4.8438 Q19.0518 -5.0156 18.6768 -5.125 Q18.3175 -5.2344 17.9581 -5.2344 Q16.5675 -5.2344 16.5675 -3.25 Q16.5675 -2.2656 16.9268 -1.7969 Q17.3018 -1.3281 17.9581 -1.3281 Q18.5206 -1.3281 18.9581 -1.4688 Q19.3956 -1.625 19.8018 -1.8906 L19.8018 -0.375 Q19.3956 -0.1094 18.9425 0 Q18.4893 0.125 17.8018 0.125 ZM24.0011 -6.6875 Q25.3136 -6.6875 26.0168 -6.1094 Q26.7199 -5.5469 26.7199 -4.375 L26.7199 0 L25.4699 0 L25.1261 -0.8906 L25.0793 -0.8906 Q24.6574 -0.3594 24.1886 -0.1094 Q23.7199 0.125 22.9074 0.125 Q22.0324 0.125 21.4543 -0.3906 Q20.8761 -0.9062 20.8761 -1.9531 Q20.8761 -3 21.6105 -3.5 Q22.3449 -4 23.8136 -4.0469 L24.9543 -4.0781 L24.9543 -4.375 Q24.9543 -4.8906 24.673 -5.125 Q24.4074 -5.3594 23.923 -5.3594 Q23.4543 -5.3594 22.9855 -5.2188 Q22.5324 -5.0938 22.0793 -4.8906 L21.4855 -6.0938 Q22.0168 -6.375 22.6574 -6.5312 Q23.298 -6.6875 24.0011 -6.6875 ZM24.2511 -3.0156 Q23.3918 -2.9844 23.048 -2.6875 Q22.7199 -2.4062 22.7199 -1.9375 Q22.7199 -1.5312 22.9543 -1.3594 Q23.1886 -1.1875 23.5793 -1.1875 Q24.1574 -1.1875 24.548 -1.5312 Q24.9543 -1.875 24.9543 -2.5 L24.9543 -3.0312 L24.2511 -3.0156 ZM30.3429 0 L28.5617 0 L28.5617 -9.125 L30.3429 -9.125 L30.3429 0 ZM37.4092 -2.375 Q37.4092 -1.2344 36.5811 -0.5469 Q35.7686 0.125 34.253 0.125 Q32.9092 0.125 31.8311 -0.3906 L31.8311 -2.0938 Q32.4405 -1.8281 33.0967 -1.5938 Q33.753 -1.375 34.4092 -1.375 Q35.0811 -1.375 35.3623 -1.625 Q35.6436 -1.8906 35.6436 -2.2969 Q35.6436 -2.6094 35.4092 -2.8438 Q35.1905 -3.0781 34.8155 -3.2656 Q34.4561 -3.4688 33.9717 -3.7031 Q33.6748 -3.8438 33.3155 -4.0312 Q32.9717 -4.2344 32.6592 -4.5312 Q32.3467 -4.8281 32.128 -5.2344 Q31.9248 -5.6562 31.9248 -6.25 Q31.9248 -7.4062 32.7061 -8.0469 Q33.4873 -8.6875 34.8311 -8.6875 Q35.503 -8.6875 36.1123 -8.5312 Q36.7217 -8.375 37.378 -8.0938 L36.7998 -6.6719 Q36.2061 -6.9062 35.7373 -7.0312 Q35.2686 -7.1719 34.7686 -7.1719 Q34.253 -7.1719 33.9717 -6.9375 Q33.7061 -6.7031 33.7061 -6.3125 Q33.7061 -5.8594 34.1123 -5.5938 Q34.5186 -5.3281 35.3311 -4.9375 Q35.9873 -4.625 36.4405 -4.2812 Q36.9092 -3.9531 37.1592 -3.5 Q37.4092 -3.0469 37.4092 -2.375 ZM41.5994 -1.3125 Q41.8963 -1.3125 42.1619 -1.3594 Q42.4431 -1.4219 42.7244 -1.5156 L42.7244 -0.1875 Q42.4275 -0.0625 42.0056 0.0312 Q41.5838 0.125 41.0838 0.125 Q40.49 0.125 40.0213 -0.0625 Q39.5681 -0.2656 39.2869 -0.7344 Q39.0213 -1.2188 39.0213 -2.0469 L39.0213 -5.2031 L38.1775 -5.2031 L38.1775 -5.9688 L39.1619 -6.5625 L39.6775 -7.9375 L40.8181 -7.9375 L40.8181 -6.5469 L42.6463 -6.5469 L42.6463 -5.2031 L40.8181 -5.2031 L40.8181 -2.0469 Q40.8181 -1.6875 41.0213 -1.5 Q41.24 -1.3125 41.5994 -1.3125 ZM49.9949 -3.2812 Q49.9949 -1.6562 49.1355 -0.7656 Q48.2762 0.125 46.8074 0.125 Q45.8855 0.125 45.1668 -0.2656 Q44.4637 -0.6719 44.0574 -1.4375 Q43.6512 -2.2031 43.6512 -3.2812 Q43.6512 -4.9219 44.4949 -5.7969 Q45.3543 -6.6719 46.8387 -6.6719 Q47.7605 -6.6719 48.4637 -6.2656 Q49.1824 -5.875 49.5887 -5.125 Q49.9949 -4.375 49.9949 -3.2812 ZM45.4637 -3.2812 Q45.4637 -2.3125 45.7762 -1.8125 Q46.1043 -1.3125 46.823 -1.3125 Q47.5262 -1.3125 47.8387 -1.8125 Q48.1668 -2.3125 48.1668 -3.2812 Q48.1668 -4.2656 47.8387 -4.75 Q47.5262 -5.2344 46.8074 -5.2344 Q46.1043 -5.2344 45.7762 -4.75 Q45.4637 -4.2656 45.4637 -3.2812 ZM55.1261 -6.6719 Q55.2667 -6.6719 55.4386 -6.6562 Q55.6261 -6.6406 55.7355 -6.625 L55.5948 -4.9375 Q55.5167 -4.9688 55.3448 -4.9844 Q55.1886 -5 55.0636 -5 Q54.6105 -5 54.1886 -4.8438 Q53.7667 -4.6875 53.5011 -4.3125 Q53.2511 -3.9531 53.2511 -3.3438 L53.2511 0 L51.4698 0 L51.4698 -6.5469 L52.8292 -6.5469 L53.0948 -5.4531 L53.173 -5.4531 Q53.4542 -5.9531 53.9542 -6.3125 Q54.4698 -6.6719 55.1261 -6.6719 ZM59.6054 -6.6875 Q60.9179 -6.6875 61.621 -6.1094 Q62.3241 -5.5469 62.3241 -4.375 L62.3241 0 L61.0741 0 L60.7304 -0.8906 L60.6835 -0.8906 Q60.2616 -0.3594 59.7929 -0.1094 Q59.3241 0.125 58.5116 0.125 Q57.6366 0.125 57.0585 -0.3906 Q56.4804 -0.9062 56.4804 -1.9531 Q56.4804 -3 57.2148 -3.5 Q57.9491 -4 59.4179 -4.0469 L60.5585 -4.0781 L60.5585 -4.375 Q60.5585 -4.8906 60.2773 -5.125 Q60.0116 -5.3594 59.5273 -5.3594 Q59.0585 -5.3594 58.5898 -5.2188 Q58.1366 -5.0938 57.6835 -4.8906 L57.0898 -6.0938 Q57.621 -6.375 58.2616 -6.5312 Q58.9023 -6.6875 59.6054 -6.6875 ZM59.8554 -3.0156 Q58.996 -2.9844 58.6523 -2.6875 Q58.3241 -2.4062 58.3241 -1.9375 Q58.3241 -1.5312 58.5585 -1.3594 Q58.7929 -1.1875 59.1835 -1.1875 Q59.7616 -1.1875 60.1523 -1.5312 Q60.5585 -1.875 60.5585 -2.5 L60.5585 -3.0312 L59.8554 -3.0156 ZM66.2909 -6.6719 Q67.4941 -6.6719 68.1816 -5.7188 L68.2284 -5.7188 L68.3691 -6.5469 L69.8847 -6.5469 L69.8847 0.0156 Q69.8847 1.4219 69.0566 2.1406 Q68.2284 2.875 66.6191 2.875 Q65.9159 2.875 65.3222 2.7969 Q64.7284 2.7188 64.1659 2.5 L64.1659 1.0625 Q65.3691 1.5781 66.7128 1.5781 Q68.1034 1.5781 68.1034 0.0781 L68.1034 -0.0469 Q68.1034 -0.25 68.1191 -0.4688 Q68.1347 -0.6875 68.1503 -0.8594 L68.1034 -0.8594 Q67.7597 -0.3438 67.2909 -0.1094 Q66.8222 0.125 66.2441 0.125 Q65.0722 0.125 64.4159 -0.7656 Q63.7753 -1.6719 63.7753 -3.2656 Q63.7753 -4.875 64.4472 -5.7656 Q65.1191 -6.6719 66.2909 -6.6719 ZM66.8534 -5.2188 Q65.5878 -5.2188 65.5878 -3.2344 Q65.5878 -1.2812 66.8691 -1.2812 Q67.5566 -1.2812 67.8847 -1.6719 Q68.2128 -2.0625 68.2128 -3.0312 L68.2128 -3.25 Q68.2128 -4.3125 67.8847 -4.7656 Q67.5722 -5.2188 66.8534 -5.2188 ZM74.4651 -6.6719 Q75.8089 -6.6719 76.6057 -5.8906 Q77.4026 -5.125 77.4026 -3.7031 L77.4026 -2.8281 L73.1839 -2.8281 Q73.1995 -2.0781 73.6214 -1.6406 Q74.0589 -1.2188 74.8089 -1.2188 Q75.4495 -1.2188 75.9651 -1.3438 Q76.4807 -1.4688 77.0276 -1.7344 L77.0276 -0.3438 Q76.5432 -0.1094 76.012 0 Q75.4807 0.125 74.7307 0.125 Q73.7464 0.125 72.9807 -0.2344 Q72.2307 -0.6094 71.7932 -1.3438 Q71.3714 -2.0938 71.3714 -3.2344 Q71.3714 -4.375 71.7464 -5.1406 Q72.137 -5.9062 72.8401 -6.2812 Q73.5432 -6.6719 74.4651 -6.6719 ZM74.4651 -5.4062 Q73.9495 -5.4062 73.6057 -5.0625 Q73.2776 -4.7344 73.2151 -4.0156 L75.7151 -4.0156 Q75.7151 -4.625 75.4026 -5.0156 Q75.1057 -5.4062 74.4651 -5.4062 ZM84.0415 -2.375 Q84.0415 -1.2344 83.2134 -0.5469 Q82.4009 0.125 80.8853 0.125 Q79.5415 0.125 78.4634 -0.3906 L78.4634 -2.0938 Q79.0728 -1.8281 79.729 -1.5938 Q80.3853 -1.375 81.0415 -1.375 Q81.7134 -1.375 81.9947 -1.625 Q82.2759 -1.8906 82.2759 -2.2969 Q82.2759 -2.6094 82.0415 -2.8438 Q81.8228 -3.0781 81.4478 -3.2656 Q81.0884 -3.4688 80.604 -3.7031 Q80.3072 -3.8438 79.9478 -4.0312 Q79.604 -4.2344 79.2915 -4.5312 Q78.979 -4.8281 78.7603 -5.2344 Q78.5572 -5.6562 78.5572 -6.25 Q78.5572 -7.4062 79.3384 -8.0469 Q80.1197 -8.6875 81.4634 -8.6875 Q82.1353 -8.6875 82.7447 -8.5312 Q83.354 -8.375 84.0103 -8.0938 L83.4322 -6.6719 Q82.8384 -6.9062 82.3697 -7.0312 Q81.9009 -7.1719 81.4009 -7.1719 Q80.8853 -7.1719 80.604 -6.9375 Q80.3384 -6.7031 80.3384 -6.3125 Q80.3384 -5.8594 80.7447 -5.5938 Q81.1509 -5.3281 81.9634 -4.9375 Q82.6197 -4.625 83.0728 -4.2812 Q83.5415 -3.9531 83.7915 -3.5 Q84.0415 -3.0469 84.0415 -2.375 ZM88.1692 -6.6719 Q89.513 -6.6719 90.3098 -5.8906 Q91.1067 -5.125 91.1067 -3.7031 L91.1067 -2.8281 L86.888 -2.8281 Q86.9036 -2.0781 87.3255 -1.6406 Q87.763 -1.2188 88.513 -1.2188 Q89.1536 -1.2188 89.6692 -1.3438 Q90.1848 -1.4688 90.7317 -1.7344 L90.7317 -0.3438 Q90.2473 -0.1094 89.7161 0 Q89.1848 0.125 88.4348 0.125 Q87.4505 0.125 86.6848 -0.2344 Q85.9348 -0.6094 85.4973 -1.3438 Q85.0755 -2.0938 85.0755 -3.2344 Q85.0755 -4.375 85.4505 -5.1406 Q85.8411 -5.9062 86.5442 -6.2812 Q87.2473 -6.6719 88.1692 -6.6719 ZM88.1692 -5.4062 Q87.6536 -5.4062 87.3098 -5.0625 Q86.9817 -4.7344 86.9192 -4.0156 L89.4192 -4.0156 Q89.4192 -4.625 89.1067 -5.0156 Q88.8098 -5.4062 88.1692 -5.4062 ZM96.2144 -6.6719 Q96.355 -6.6719 96.5269 -6.6562 Q96.7144 -6.6406 96.8238 -6.625 L96.6832 -4.9375 Q96.605 -4.9688 96.4332 -4.9844 Q96.2769 -5 96.1519 -5 Q95.6988 -5 95.2769 -4.8438 Q94.855 -4.6875 94.5894 -4.3125 Q94.3394 -3.9531 94.3394 -3.3438 L94.3394 0 L92.5582 0 L92.5582 -6.5469 L93.9175 -6.5469 L94.1832 -5.4531 L94.2613 -5.4531 Q94.5425 -5.9531 95.0425 -6.3125 Q95.5582 -6.6719 96.2144 -6.6719 ZM99.5687 0 L97.0687 -6.5469 L98.9437 -6.5469 L100.1937 -2.8125 Q100.3031 -2.4844 100.3656 -2.125 Q100.4437 -1.7656 100.4593 -1.4688 L100.5062 -1.4688 Q100.5374 -2.125 100.7718 -2.8125 L102.0218 -6.5469 L103.8968 -6.5469 L101.3968 0 L99.5687 0 ZM105.7405 -9.125 Q106.1311 -9.125 106.4124 -8.9375 Q106.7092 -8.75 106.7092 -8.25 Q106.7092 -7.75 106.4124 -7.5625 Q106.1311 -7.375 105.7405 -7.375 Q105.3186 -7.375 105.0374 -7.5625 Q104.7561 -7.75 104.7561 -8.25 Q104.7561 -8.75 105.0374 -8.9375 Q105.3186 -9.125 105.7405 -9.125 ZM106.6155 -6.5469 L106.6155 0 L104.8342 0 L104.8342 -6.5469 L106.6155 -6.5469 ZM111.1505 0.125 Q109.6974 0.125 108.9005 -0.6875 Q108.1036 -1.5 108.1036 -3.2344 Q108.1036 -4.4375 108.5099 -5.1875 Q108.9161 -5.9531 109.6349 -6.3125 Q110.3693 -6.6719 111.3068 -6.6719 Q111.9786 -6.6719 112.4786 -6.5312 Q112.9786 -6.4062 113.3536 -6.2344 L112.8224 -4.8438 Q112.4005 -5.0156 112.0255 -5.125 Q111.6661 -5.2344 111.3068 -5.2344 Q109.9161 -5.2344 109.9161 -3.25 Q109.9161 -2.2656 110.2755 -1.7969 Q110.6505 -1.3281 111.3068 -1.3281 Q111.8693 -1.3281 112.3068 -1.4688 Q112.7443 -1.625 113.1505 -1.8906 L113.1505 -0.375 Q112.7443 -0.1094 112.2911 0 Q111.838 0.125 111.1505 0.125 ZM117.3654 -6.6719 Q118.7092 -6.6719 119.5061 -5.8906 Q120.3029 -5.125 120.3029 -3.7031 L120.3029 -2.8281 L116.0842 -2.8281 Q116.0998 -2.0781 116.5217 -1.6406 Q116.9592 -1.2188 117.7092 -1.2188 Q118.3498 -1.2188 118.8654 -1.3438 Q119.3811 -1.4688 119.9279 -1.7344 L119.9279 -0.3438 Q119.4436 -0.1094 118.9123 0 Q118.3811 0.125 117.6311 0.125 Q116.6467 0.125 115.8811 -0.2344 Q115.1311 -0.6094 114.6936 -1.3438 Q114.2717 -2.0938 114.2717 -3.2344 Q114.2717 -4.375 114.6467 -5.1406 Q115.0373 -5.9062 115.7404 -6.2812 Q116.4436 -6.6719 117.3654 -6.6719 ZM117.3654 -5.4062 Q116.8498 -5.4062 116.5061 -5.0625 Q116.1779 -4.7344 116.1154 -4.0156 L118.6154 -4.0156 Q118.6154 -4.625 118.3029 -5.0156 Q118.0061 -5.4062 117.3654 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath8);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="822.4122" y="-3.2713" width="108" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="822.4122" y="-3.2713" width="108" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(842.4122,14.7287)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath9);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(832.4122,31.0728)"
+    ><path d="M6.125 -2.375 Q6.125 -1.2344 5.2969 -0.5469 Q4.4844 0.125 2.9688 0.125 Q1.625 0.125 0.5469 -0.3906 L0.5469 -2.0938 Q1.1562 -1.8281 1.8125 -1.5938 Q2.4688 -1.375 3.125 -1.375 Q3.7969 -1.375 4.0781 -1.625 Q4.3594 -1.8906 4.3594 -2.2969 Q4.3594 -2.6094 4.125 -2.8438 Q3.9062 -3.0781 3.5312 -3.2656 Q3.1719 -3.4688 2.6875 -3.7031 Q2.3906 -3.8438 2.0312 -4.0312 Q1.6875 -4.2344 1.375 -4.5312 Q1.0625 -4.8281 0.8438 -5.2344 Q0.6406 -5.6562 0.6406 -6.25 Q0.6406 -7.4062 1.4219 -8.0469 Q2.2031 -8.6875 3.5469 -8.6875 Q4.2188 -8.6875 4.8281 -8.5312 Q5.4375 -8.375 6.0938 -8.0938 L5.5156 -6.6719 Q4.9219 -6.9062 4.4531 -7.0312 Q3.9844 -7.1719 3.4844 -7.1719 Q2.9688 -7.1719 2.6875 -6.9375 Q2.4219 -6.7031 2.4219 -6.3125 Q2.4219 -5.8594 2.8281 -5.5938 Q3.2344 -5.3281 4.0469 -4.9375 Q4.7031 -4.625 5.1562 -4.2812 Q5.625 -3.9531 5.875 -3.5 Q6.125 -3.0469 6.125 -2.375 ZM10.2527 -6.6719 Q11.5964 -6.6719 12.3933 -5.8906 Q13.1902 -5.125 13.1902 -3.7031 L13.1902 -2.8281 L8.9714 -2.8281 Q8.987 -2.0781 9.4089 -1.6406 Q9.8464 -1.2188 10.5964 -1.2188 Q11.237 -1.2188 11.7527 -1.3438 Q12.2683 -1.4688 12.8152 -1.7344 L12.8152 -0.3438 Q12.3308 -0.1094 11.7995 0 Q11.2683 0.125 10.5183 0.125 Q9.5339 0.125 8.7683 -0.2344 Q8.0183 -0.6094 7.5808 -1.3438 Q7.1589 -2.0938 7.1589 -3.2344 Q7.1589 -4.375 7.5339 -5.1406 Q7.9245 -5.9062 8.6277 -6.2812 Q9.3308 -6.6719 10.2527 -6.6719 ZM10.2527 -5.4062 Q9.737 -5.4062 9.3933 -5.0625 Q9.0652 -4.7344 9.0027 -4.0156 L11.5027 -4.0156 Q11.5027 -4.625 11.1902 -5.0156 Q10.8933 -5.4062 10.2527 -5.4062 ZM19.2197 -1.9375 Q19.2197 -0.9531 18.5166 -0.4062 Q17.8135 0.125 16.4229 0.125 Q15.7354 0.125 15.2354 0.0312 Q14.751 -0.0625 14.251 -0.2656 L14.251 -1.7344 Q14.7822 -1.5 15.3916 -1.3438 Q16.001 -1.1875 16.4697 -1.1875 Q17.001 -1.1875 17.2197 -1.3438 Q17.4541 -1.5 17.4541 -1.75 Q17.4541 -1.9219 17.3604 -2.0469 Q17.2666 -2.1875 16.9697 -2.3438 Q16.6729 -2.5156 16.0322 -2.7812 Q15.4229 -3.0469 15.0166 -3.2969 Q14.626 -3.5625 14.4385 -3.9219 Q14.251 -4.2969 14.251 -4.8438 Q14.251 -5.7656 14.9541 -6.2188 Q15.6572 -6.6719 16.8291 -6.6719 Q17.4541 -6.6719 18.001 -6.5469 Q18.5479 -6.4375 19.1416 -6.1562 L18.5947 -4.875 Q18.126 -5.0781 17.6885 -5.2188 Q17.251 -5.3594 16.8135 -5.3594 Q16.0166 -5.3594 16.0166 -4.9219 Q16.0166 -4.7656 16.1104 -4.6406 Q16.2197 -4.5156 16.5166 -4.3594 Q16.8135 -4.2188 17.3916 -3.9844 Q17.9541 -3.75 18.3604 -3.5 Q18.7666 -3.2656 18.9854 -2.8906 Q19.2197 -2.5312 19.2197 -1.9375 ZM25.1838 -1.9375 Q25.1838 -0.9531 24.4806 -0.4062 Q23.7775 0.125 22.3869 0.125 Q21.6994 0.125 21.1994 0.0312 Q20.715 -0.0625 20.215 -0.2656 L20.215 -1.7344 Q20.7463 -1.5 21.3556 -1.3438 Q21.965 -1.1875 22.4338 -1.1875 Q22.965 -1.1875 23.1838 -1.3438 Q23.4181 -1.5 23.4181 -1.75 Q23.4181 -1.9219 23.3244 -2.0469 Q23.2306 -2.1875 22.9338 -2.3438 Q22.6369 -2.5156 21.9963 -2.7812 Q21.3869 -3.0469 20.9806 -3.2969 Q20.59 -3.5625 20.4025 -3.9219 Q20.215 -4.2969 20.215 -4.8438 Q20.215 -5.7656 20.9181 -6.2188 Q21.6213 -6.6719 22.7931 -6.6719 Q23.4181 -6.6719 23.965 -6.5469 Q24.5119 -6.4375 25.1056 -6.1562 L24.5588 -4.875 Q24.09 -5.0781 23.6525 -5.2188 Q23.215 -5.3594 22.7775 -5.3594 Q21.9806 -5.3594 21.9806 -4.9219 Q21.9806 -4.7656 22.0744 -4.6406 Q22.1838 -4.5156 22.4806 -4.3594 Q22.7775 -4.2188 23.3556 -3.9844 Q23.9181 -3.75 24.3244 -3.5 Q24.7306 -3.2656 24.9494 -2.8906 Q25.1838 -2.5312 25.1838 -1.9375 ZM27.4759 -9.125 Q27.8665 -9.125 28.1478 -8.9375 Q28.4447 -8.75 28.4447 -8.25 Q28.4447 -7.75 28.1478 -7.5625 Q27.8665 -7.375 27.4759 -7.375 Q27.054 -7.375 26.7728 -7.5625 Q26.4915 -7.75 26.4915 -8.25 Q26.4915 -8.75 26.7728 -8.9375 Q27.054 -9.125 27.4759 -9.125 ZM28.3509 -6.5469 L28.3509 0 L26.5697 0 L26.5697 -6.5469 L28.3509 -6.5469 ZM36.1828 -3.2812 Q36.1828 -1.6562 35.3234 -0.7656 Q34.4641 0.125 32.9953 0.125 Q32.0734 0.125 31.3547 -0.2656 Q30.6516 -0.6719 30.2453 -1.4375 Q29.8391 -2.2031 29.8391 -3.2812 Q29.8391 -4.9219 30.6828 -5.7969 Q31.5422 -6.6719 33.0266 -6.6719 Q33.9484 -6.6719 34.6516 -6.2656 Q35.3703 -5.875 35.7766 -5.125 Q36.1828 -4.375 36.1828 -3.2812 ZM31.6516 -3.2812 Q31.6516 -2.3125 31.9641 -1.8125 Q32.2922 -1.3125 33.0109 -1.3125 Q33.7141 -1.3125 34.0266 -1.8125 Q34.3547 -2.3125 34.3547 -3.2812 Q34.3547 -4.2656 34.0266 -4.75 Q33.7141 -5.2344 32.9953 -5.2344 Q32.2922 -5.2344 31.9641 -4.75 Q31.6516 -4.2656 31.6516 -3.2812 ZM41.3765 -6.6719 Q42.439 -6.6719 43.064 -6.0938 Q43.7046 -5.5312 43.7046 -4.2656 L43.7046 0 L41.9234 0 L41.9234 -3.8281 Q41.9234 -4.5312 41.6577 -4.8906 Q41.4077 -5.25 40.8609 -5.25 Q40.0484 -5.25 39.7359 -4.6875 Q39.439 -4.125 39.439 -3.0781 L39.439 0 L37.6577 0 L37.6577 -6.5469 L39.0171 -6.5469 L39.2671 -5.7188 L39.3609 -5.7188 Q39.6734 -6.2188 40.2202 -6.4375 Q40.7671 -6.6719 41.3765 -6.6719 ZM50.7293 -2.375 Q50.7293 -1.2344 49.9012 -0.5469 Q49.0887 0.125 47.573 0.125 Q46.2293 0.125 45.1512 -0.3906 L45.1512 -2.0938 Q45.7605 -1.8281 46.4168 -1.5938 Q47.073 -1.375 47.7293 -1.375 Q48.4012 -1.375 48.6824 -1.625 Q48.9637 -1.8906 48.9637 -2.2969 Q48.9637 -2.6094 48.7293 -2.8438 Q48.5105 -3.0781 48.1355 -3.2656 Q47.7762 -3.4688 47.2918 -3.7031 Q46.9949 -3.8438 46.6355 -4.0312 Q46.2918 -4.2344 45.9793 -4.5312 Q45.6668 -4.8281 45.448 -5.2344 Q45.2449 -5.6562 45.2449 -6.25 Q45.2449 -7.4062 46.0262 -8.0469 Q46.8074 -8.6875 48.1512 -8.6875 Q48.823 -8.6875 49.4324 -8.5312 Q50.0418 -8.375 50.698 -8.0938 L50.1199 -6.6719 Q49.5262 -6.9062 49.0574 -7.0312 Q48.5887 -7.1719 48.0887 -7.1719 Q47.573 -7.1719 47.2918 -6.9375 Q47.0262 -6.7031 47.0262 -6.3125 Q47.0262 -5.8594 47.4324 -5.5938 Q47.8387 -5.3281 48.6512 -4.9375 Q49.3074 -4.625 49.7605 -4.2812 Q50.2293 -3.9531 50.4793 -3.5 Q50.7293 -3.0469 50.7293 -2.375 ZM54.857 -6.6719 Q56.2007 -6.6719 56.9976 -5.8906 Q57.7945 -5.125 57.7945 -3.7031 L57.7945 -2.8281 L53.5757 -2.8281 Q53.5913 -2.0781 54.0132 -1.6406 Q54.4507 -1.2188 55.2007 -1.2188 Q55.8413 -1.2188 56.357 -1.3438 Q56.8726 -1.4688 57.4195 -1.7344 L57.4195 -0.3438 Q56.9351 -0.1094 56.4038 0 Q55.8726 0.125 55.1226 0.125 Q54.1382 0.125 53.3726 -0.2344 Q52.6226 -0.6094 52.1851 -1.3438 Q51.7632 -2.0938 51.7632 -3.2344 Q51.7632 -4.375 52.1382 -5.1406 Q52.5288 -5.9062 53.232 -6.2812 Q53.9351 -6.6719 54.857 -6.6719 ZM54.857 -5.4062 Q54.3413 -5.4062 53.9976 -5.0625 Q53.6695 -4.7344 53.607 -4.0156 L56.107 -4.0156 Q56.107 -4.625 55.7945 -5.0156 Q55.4976 -5.4062 54.857 -5.4062 ZM62.9021 -6.6719 Q63.0428 -6.6719 63.2146 -6.6562 Q63.4021 -6.6406 63.5115 -6.625 L63.3709 -4.9375 Q63.2928 -4.9688 63.1209 -4.9844 Q62.9646 -5 62.8396 -5 Q62.3865 -5 61.9646 -4.8438 Q61.5428 -4.6875 61.2771 -4.3125 Q61.0271 -3.9531 61.0271 -3.3438 L61.0271 0 L59.2459 0 L59.2459 -6.5469 L60.6053 -6.5469 L60.8709 -5.4531 L60.949 -5.4531 Q61.2303 -5.9531 61.7303 -6.3125 Q62.2459 -6.6719 62.9021 -6.6719 ZM66.2564 0 L63.7564 -6.5469 L65.6314 -6.5469 L66.8814 -2.8125 Q66.9908 -2.4844 67.0533 -2.125 Q67.1314 -1.7656 67.1471 -1.4688 L67.1939 -1.4688 Q67.2252 -2.125 67.4596 -2.8125 L68.7096 -6.5469 L70.5846 -6.5469 L68.0846 0 L66.2564 0 ZM72.4282 -9.125 Q72.8189 -9.125 73.1001 -8.9375 Q73.397 -8.75 73.397 -8.25 Q73.397 -7.75 73.1001 -7.5625 Q72.8189 -7.375 72.4282 -7.375 Q72.0064 -7.375 71.7251 -7.5625 Q71.4439 -7.75 71.4439 -8.25 Q71.4439 -8.75 71.7251 -8.9375 Q72.0064 -9.125 72.4282 -9.125 ZM73.3032 -6.5469 L73.3032 0 L71.522 0 L71.522 -6.5469 L73.3032 -6.5469 ZM77.8383 0.125 Q76.3851 0.125 75.5883 -0.6875 Q74.7914 -1.5 74.7914 -3.2344 Q74.7914 -4.4375 75.1976 -5.1875 Q75.6039 -5.9531 76.3226 -6.3125 Q77.057 -6.6719 77.9945 -6.6719 Q78.6664 -6.6719 79.1664 -6.5312 Q79.6664 -6.4062 80.0414 -6.2344 L79.5101 -4.8438 Q79.0883 -5.0156 78.7133 -5.125 Q78.3539 -5.2344 77.9945 -5.2344 Q76.6039 -5.2344 76.6039 -3.25 Q76.6039 -2.2656 76.9633 -1.7969 Q77.3383 -1.3281 77.9945 -1.3281 Q78.557 -1.3281 78.9945 -1.4688 Q79.432 -1.625 79.8383 -1.8906 L79.8383 -0.375 Q79.432 -0.1094 78.9789 0 Q78.5258 0.125 77.8383 0.125 ZM84.0532 -6.6719 Q85.3969 -6.6719 86.1938 -5.8906 Q86.9907 -5.125 86.9907 -3.7031 L86.9907 -2.8281 L82.7719 -2.8281 Q82.7876 -2.0781 83.2094 -1.6406 Q83.6469 -1.2188 84.3969 -1.2188 Q85.0376 -1.2188 85.5532 -1.3438 Q86.0688 -1.4688 86.6157 -1.7344 L86.6157 -0.3438 Q86.1313 -0.1094 85.6001 0 Q85.0688 0.125 84.3188 0.125 Q83.3344 0.125 82.5688 -0.2344 Q81.8188 -0.6094 81.3813 -1.3438 Q80.9594 -2.0938 80.9594 -3.2344 Q80.9594 -4.375 81.3344 -5.1406 Q81.7251 -5.9062 82.4282 -6.2812 Q83.1313 -6.6719 84.0532 -6.6719 ZM84.0532 -5.4062 Q83.5376 -5.4062 83.1938 -5.0625 Q82.8657 -4.7344 82.8032 -4.0156 L85.3032 -4.0156 Q85.3032 -4.625 84.9907 -5.0156 Q84.6938 -5.4062 84.0532 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath10);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="812.4122" y="88.7046" width="128" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="812.4122" y="88.7046" width="128" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(842.4122,106.7046)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath11);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(822.4122,123.0487)"
+    ><path d="M6.3281 0 L5.7031 -2.0469 L2.5781 -2.0469 L1.9531 0 L0 0 L3.0312 -8.6094 L5.25 -8.6094 L8.2812 0 L6.3281 0 ZM4.6406 -5.5625 Q4.5781 -5.7656 4.4844 -6.0781 Q4.3906 -6.3906 4.2969 -6.7031 Q4.2031 -7.0312 4.1406 -7.2656 Q4.0781 -7.0312 3.9688 -6.6719 Q3.875 -6.3281 3.7812 -6 Q3.7031 -5.6875 3.6406 -5.5625 L3.0312 -3.5625 L5.2656 -3.5625 L4.6406 -5.5625 ZM15.2332 -6.5469 L15.2332 0 L13.8582 0 L13.6238 -0.8438 L13.5301 -0.8438 Q13.2176 -0.3438 12.6707 -0.1094 Q12.1238 0.125 11.5144 0.125 Q10.4519 0.125 9.8113 -0.4375 Q9.1863 -1.0156 9.1863 -2.2812 L9.1863 -6.5469 L10.9676 -6.5469 L10.9676 -2.7188 Q10.9676 -2.0312 11.2176 -1.6719 Q11.4676 -1.3125 12.0301 -1.3125 Q12.8426 -1.3125 13.1394 -1.8594 Q13.4363 -2.4219 13.4363 -3.4688 L13.4363 -6.5469 L15.2332 -6.5469 ZM19.8672 -1.3125 Q20.1641 -1.3125 20.4297 -1.3594 Q20.711 -1.4219 20.9922 -1.5156 L20.9922 -0.1875 Q20.6954 -0.0625 20.2735 0.0312 Q19.8516 0.125 19.3516 0.125 Q18.7579 0.125 18.2891 -0.0625 Q17.836 -0.2656 17.5547 -0.7344 Q17.2891 -1.2188 17.2891 -2.0469 L17.2891 -5.2031 L16.4454 -5.2031 L16.4454 -5.9688 L17.4297 -6.5625 L17.9454 -7.9375 L19.086 -7.9375 L19.086 -6.5469 L20.9141 -6.5469 L20.9141 -5.2031 L19.086 -5.2031 L19.086 -2.0469 Q19.086 -1.6875 19.2891 -1.5 Q19.5079 -1.3125 19.8672 -1.3125 ZM24.0909 -7.2656 Q24.0909 -6.7812 24.0596 -6.3281 Q24.0284 -5.8906 24.0128 -5.7188 L24.1065 -5.7188 Q24.419 -6.2188 24.9034 -6.4375 Q25.4034 -6.6719 25.9971 -6.6719 Q27.0753 -6.6719 27.7159 -6.0938 Q28.3565 -5.5312 28.3565 -4.2656 L28.3565 0 L26.5753 0 L26.5753 -3.8281 Q26.5753 -5.25 25.5128 -5.25 Q24.7159 -5.25 24.4034 -4.6875 Q24.0909 -4.125 24.0909 -3.0781 L24.0909 0 L22.3096 0 L22.3096 -9.125 L24.0909 -9.125 L24.0909 -7.2656 ZM33.9749 -7.1719 Q32.9281 -7.1719 32.3656 -6.3906 Q31.8187 -5.6094 31.8187 -4.2656 Q31.8187 -2.8906 32.3343 -2.1406 Q32.8499 -1.3906 33.9749 -1.3906 Q34.5062 -1.3906 35.0218 -1.5 Q35.5374 -1.625 36.1624 -1.8438 L36.1624 -0.3281 Q35.5999 -0.0938 35.0374 0.0156 Q34.4906 0.125 33.8031 0.125 Q32.4906 0.125 31.6312 -0.4219 Q30.7718 -0.9688 30.3656 -1.9531 Q29.9593 -2.9531 29.9593 -4.2656 Q29.9593 -5.5625 30.4124 -6.5625 Q30.8812 -7.5625 31.7718 -8.125 Q32.6781 -8.6875 33.9749 -8.6875 Q34.6156 -8.6875 35.2562 -8.5156 Q35.8968 -8.3594 36.4749 -8.0938 L35.8968 -6.6094 Q35.4124 -6.8438 34.9281 -7 Q34.4437 -7.1719 33.9749 -7.1719 ZM39.619 0 L37.8378 0 L37.8378 -9.125 L39.619 -9.125 L39.619 0 ZM42.404 -9.125 Q42.7946 -9.125 43.0759 -8.9375 Q43.3728 -8.75 43.3728 -8.25 Q43.3728 -7.75 43.0759 -7.5625 Q42.7946 -7.375 42.404 -7.375 Q41.9821 -7.375 41.7009 -7.5625 Q41.4196 -7.75 41.4196 -8.25 Q41.4196 -8.75 41.7009 -8.9375 Q41.9821 -9.125 42.404 -9.125 ZM43.279 -6.5469 L43.279 0 L41.4978 0 L41.4978 -6.5469 L43.279 -6.5469 ZM47.8609 -6.6719 Q49.2047 -6.6719 50.0015 -5.8906 Q50.7984 -5.125 50.7984 -3.7031 L50.7984 -2.8281 L46.5797 -2.8281 Q46.5953 -2.0781 47.0172 -1.6406 Q47.4547 -1.2188 48.2047 -1.2188 Q48.8453 -1.2188 49.3609 -1.3438 Q49.8765 -1.4688 50.4234 -1.7344 L50.4234 -0.3438 Q49.939 -0.1094 49.4078 0 Q48.8765 0.125 48.1265 0.125 Q47.1422 0.125 46.3765 -0.2344 Q45.6265 -0.6094 45.189 -1.3438 Q44.7672 -2.0938 44.7672 -3.2344 Q44.7672 -4.375 45.1422 -5.1406 Q45.5328 -5.9062 46.2359 -6.2812 Q46.939 -6.6719 47.8609 -6.6719 ZM47.8609 -5.4062 Q47.3453 -5.4062 47.0015 -5.0625 Q46.6734 -4.7344 46.6109 -4.0156 L49.1109 -4.0156 Q49.1109 -4.625 48.7984 -5.0156 Q48.5015 -5.4062 47.8609 -5.4062 ZM55.9686 -6.6719 Q57.0311 -6.6719 57.6561 -6.0938 Q58.2967 -5.5312 58.2967 -4.2656 L58.2967 0 L56.5155 0 L56.5155 -3.8281 Q56.5155 -4.5312 56.2498 -4.8906 Q55.9998 -5.25 55.453 -5.25 Q54.6405 -5.25 54.328 -4.6875 Q54.0311 -4.125 54.0311 -3.0781 L54.0311 0 L52.2498 0 L52.2498 -6.5469 L53.6092 -6.5469 L53.8592 -5.7188 L53.953 -5.7188 Q54.2655 -6.2188 54.8123 -6.4375 Q55.3592 -6.6719 55.9686 -6.6719 ZM62.8995 -1.3125 Q63.1964 -1.3125 63.462 -1.3594 Q63.7433 -1.4219 64.0245 -1.5156 L64.0245 -0.1875 Q63.7276 -0.0625 63.3058 0.0312 Q62.8839 0.125 62.3839 0.125 Q61.7901 0.125 61.3214 -0.0625 Q60.8683 -0.2656 60.587 -0.7344 Q60.3214 -1.2188 60.3214 -2.0469 L60.3214 -5.2031 L59.4776 -5.2031 L59.4776 -5.9688 L60.462 -6.5625 L60.9776 -7.9375 L62.1183 -7.9375 L62.1183 -6.5469 L63.9464 -6.5469 L63.9464 -5.2031 L62.1183 -5.2031 L62.1183 -2.0469 Q62.1183 -1.6875 62.3214 -1.5 Q62.5401 -1.3125 62.8995 -1.3125 ZM70.5294 -2.375 Q70.5294 -1.2344 69.7013 -0.5469 Q68.8888 0.125 67.3732 0.125 Q66.0294 0.125 64.9513 -0.3906 L64.9513 -2.0938 Q65.5607 -1.8281 66.2169 -1.5938 Q66.8732 -1.375 67.5294 -1.375 Q68.2013 -1.375 68.4826 -1.625 Q68.7638 -1.8906 68.7638 -2.2969 Q68.7638 -2.6094 68.5294 -2.8438 Q68.3107 -3.0781 67.9357 -3.2656 Q67.5763 -3.4688 67.0919 -3.7031 Q66.7951 -3.8438 66.4357 -4.0312 Q66.0919 -4.2344 65.7794 -4.5312 Q65.4669 -4.8281 65.2482 -5.2344 Q65.0451 -5.6562 65.0451 -6.25 Q65.0451 -7.4062 65.8263 -8.0469 Q66.6076 -8.6875 67.9513 -8.6875 Q68.6232 -8.6875 69.2326 -8.5312 Q69.8419 -8.375 70.4982 -8.0938 L69.9201 -6.6719 Q69.3263 -6.9062 68.8576 -7.0312 Q68.3888 -7.1719 67.8888 -7.1719 Q67.3732 -7.1719 67.0919 -6.9375 Q66.8263 -6.7031 66.8263 -6.3125 Q66.8263 -5.8594 67.2326 -5.5938 Q67.6388 -5.3281 68.4513 -4.9375 Q69.1076 -4.625 69.5607 -4.2812 Q70.0294 -3.9531 70.2794 -3.5 Q70.5294 -3.0469 70.5294 -2.375 ZM74.6571 -6.6719 Q76.0009 -6.6719 76.7977 -5.8906 Q77.5946 -5.125 77.5946 -3.7031 L77.5946 -2.8281 L73.3759 -2.8281 Q73.3915 -2.0781 73.8134 -1.6406 Q74.2509 -1.2188 75.0009 -1.2188 Q75.6415 -1.2188 76.1571 -1.3438 Q76.6727 -1.4688 77.2196 -1.7344 L77.2196 -0.3438 Q76.7352 -0.1094 76.204 0 Q75.6727 0.125 74.9227 0.125 Q73.9384 0.125 73.1727 -0.2344 Q72.4227 -0.6094 71.9852 -1.3438 Q71.5634 -2.0938 71.5634 -3.2344 Q71.5634 -4.375 71.9384 -5.1406 Q72.329 -5.9062 73.0321 -6.2812 Q73.7352 -6.6719 74.6571 -6.6719 ZM74.6571 -5.4062 Q74.1415 -5.4062 73.7977 -5.0625 Q73.4696 -4.7344 73.4071 -4.0156 L75.9071 -4.0156 Q75.9071 -4.625 75.5946 -5.0156 Q75.2977 -5.4062 74.6571 -5.4062 ZM82.7023 -6.6719 Q82.8429 -6.6719 83.0148 -6.6562 Q83.2023 -6.6406 83.3117 -6.625 L83.171 -4.9375 Q83.0929 -4.9688 82.921 -4.9844 Q82.7648 -5 82.6398 -5 Q82.1867 -5 81.7648 -4.8438 Q81.3429 -4.6875 81.0773 -4.3125 Q80.8273 -3.9531 80.8273 -3.3438 L80.8273 0 L79.046 0 L79.046 -6.5469 L80.4054 -6.5469 L80.671 -5.4531 L80.7492 -5.4531 Q81.0304 -5.9531 81.5304 -6.3125 Q82.046 -6.6719 82.7023 -6.6719 ZM86.0566 0 L83.5566 -6.5469 L85.4316 -6.5469 L86.6816 -2.8125 Q86.791 -2.4844 86.8535 -2.125 Q86.9316 -1.7656 86.9472 -1.4688 L86.9941 -1.4688 Q87.0253 -2.125 87.2597 -2.8125 L88.5097 -6.5469 L90.3847 -6.5469 L87.8847 0 L86.0566 0 ZM92.2284 -9.125 Q92.619 -9.125 92.9003 -8.9375 Q93.1971 -8.75 93.1971 -8.25 Q93.1971 -7.75 92.9003 -7.5625 Q92.619 -7.375 92.2284 -7.375 Q91.8065 -7.375 91.5253 -7.5625 Q91.244 -7.75 91.244 -8.25 Q91.244 -8.75 91.5253 -8.9375 Q91.8065 -9.125 92.2284 -9.125 ZM93.1034 -6.5469 L93.1034 0 L91.3221 0 L91.3221 -6.5469 L93.1034 -6.5469 ZM97.6384 0.125 Q96.1853 0.125 95.3884 -0.6875 Q94.5915 -1.5 94.5915 -3.2344 Q94.5915 -4.4375 94.9978 -5.1875 Q95.404 -5.9531 96.1228 -6.3125 Q96.8571 -6.6719 97.7946 -6.6719 Q98.4665 -6.6719 98.9665 -6.5312 Q99.4665 -6.4062 99.8415 -6.2344 L99.3103 -4.8438 Q98.8884 -5.0156 98.5134 -5.125 Q98.154 -5.2344 97.7946 -5.2344 Q96.404 -5.2344 96.404 -3.25 Q96.404 -2.2656 96.7634 -1.7969 Q97.1384 -1.3281 97.7946 -1.3281 Q98.3571 -1.3281 98.7946 -1.4688 Q99.2321 -1.625 99.6384 -1.8906 L99.6384 -0.375 Q99.2321 -0.1094 98.779 0 Q98.3259 0.125 97.6384 0.125 ZM103.8533 -6.6719 Q105.1971 -6.6719 105.9939 -5.8906 Q106.7908 -5.125 106.7908 -3.7031 L106.7908 -2.8281 L102.5721 -2.8281 Q102.5877 -2.0781 103.0096 -1.6406 Q103.4471 -1.2188 104.1971 -1.2188 Q104.8377 -1.2188 105.3533 -1.3438 Q105.8689 -1.4688 106.4158 -1.7344 L106.4158 -0.3438 Q105.9314 -0.1094 105.4002 0 Q104.8689 0.125 104.1189 0.125 Q103.1346 0.125 102.3689 -0.2344 Q101.6189 -0.6094 101.1814 -1.3438 Q100.7596 -2.0938 100.7596 -3.2344 Q100.7596 -4.375 101.1346 -5.1406 Q101.5252 -5.9062 102.2283 -6.2812 Q102.9314 -6.6719 103.8533 -6.6719 ZM103.8533 -5.4062 Q103.3377 -5.4062 102.9939 -5.0625 Q102.6658 -4.7344 102.6033 -4.0156 L105.1033 -4.0156 Q105.1033 -4.625 104.7908 -5.0156 Q104.4939 -5.4062 103.8533 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath12);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="1121.8832" x2="1046.9874" y1="86.9236" style="fill:none; clip-path:url(#clipPath2);" y2="86.9236"
+      /><line x1="1046.9874" x2="1046.9874" y1="86.9236" style="fill:none; clip-path:url(#clipPath2);" y2="117.2118"
+      /><line x1="1046.9874" x2="940.4122" y1="117.2118" style="fill:none; clip-path:url(#clipPath2);" y2="117.2118"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="810.9122" y="-186.8592" width="131" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="810.9122" y="-186.8592" width="131" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(842.4122,-168.8592)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath13);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(820.9122,-152.5151)"
+    ><path d="M8.0938 0 L6.2812 0 L6.2812 -3.7031 L2.8906 -3.7031 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -5.2031 L6.2812 -5.2031 L6.2812 -8.5625 L8.0938 -8.5625 L8.0938 0 ZM16.0707 -3.2812 Q16.0707 -1.6562 15.2113 -0.7656 Q14.3519 0.125 12.8832 0.125 Q11.9613 0.125 11.2426 -0.2656 Q10.5394 -0.6719 10.1332 -1.4375 Q9.7269 -2.2031 9.7269 -3.2812 Q9.7269 -4.9219 10.5707 -5.7969 Q11.4301 -6.6719 12.9144 -6.6719 Q13.8363 -6.6719 14.5394 -6.2656 Q15.2582 -5.875 15.6644 -5.125 Q16.0707 -4.375 16.0707 -3.2812 ZM11.5394 -3.2812 Q11.5394 -2.3125 11.8519 -1.8125 Q12.1801 -1.3125 12.8988 -1.3125 Q13.6019 -1.3125 13.9144 -1.8125 Q14.2426 -2.3125 14.2426 -3.2812 Q14.2426 -4.2656 13.9144 -4.75 Q13.6019 -5.2344 12.8832 -5.2344 Q12.1801 -5.2344 11.8519 -4.75 Q11.5394 -4.2656 11.5394 -3.2812 ZM20.3112 -1.3125 Q20.6081 -1.3125 20.8737 -1.3594 Q21.155 -1.4219 21.4362 -1.5156 L21.4362 -0.1875 Q21.1394 -0.0625 20.7175 0.0312 Q20.2956 0.125 19.7956 0.125 Q19.2019 0.125 18.7331 -0.0625 Q18.28 -0.2656 17.9987 -0.7344 Q17.7331 -1.2188 17.7331 -2.0469 L17.7331 -5.2031 L16.8894 -5.2031 L16.8894 -5.9688 L17.8737 -6.5625 L18.3894 -7.9375 L19.53 -7.9375 L19.53 -6.5469 L21.3581 -6.5469 L21.3581 -5.2031 L19.53 -5.2031 L19.53 -2.0469 Q19.53 -1.6875 19.7331 -1.5 Q19.9519 -1.3125 20.3112 -1.3125 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1912 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4412 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0037 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1287 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9412 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM31.627 0 L29.8457 0 L29.8457 -9.125 L31.627 -9.125 L31.627 0 ZM37.287 -7.1719 Q36.2401 -7.1719 35.6776 -6.3906 Q35.1307 -5.6094 35.1307 -4.2656 Q35.1307 -2.8906 35.6464 -2.1406 Q36.162 -1.3906 37.287 -1.3906 Q37.8182 -1.3906 38.3339 -1.5 Q38.8495 -1.625 39.4745 -1.8438 L39.4745 -0.3281 Q38.912 -0.0938 38.3495 0.0156 Q37.8026 0.125 37.1151 0.125 Q35.8026 0.125 34.9432 -0.4219 Q34.0839 -0.9688 33.6776 -1.9531 Q33.2714 -2.9531 33.2714 -4.2656 Q33.2714 -5.5625 33.7245 -6.5625 Q34.1932 -7.5625 35.0839 -8.125 Q35.9901 -8.6875 37.287 -8.6875 Q37.9276 -8.6875 38.5682 -8.5156 Q39.2089 -8.3594 39.787 -8.0938 L39.2089 -6.6094 Q38.7245 -6.8438 38.2401 -7 Q37.7557 -7.1719 37.287 -7.1719 ZM42.931 0 L41.1498 0 L41.1498 -9.125 L42.931 -9.125 L42.931 0 ZM45.7161 -9.125 Q46.1067 -9.125 46.3879 -8.9375 Q46.6848 -8.75 46.6848 -8.25 Q46.6848 -7.75 46.3879 -7.5625 Q46.1067 -7.375 45.7161 -7.375 Q45.2942 -7.375 45.0129 -7.5625 Q44.7317 -7.75 44.7317 -8.25 Q44.7317 -8.75 45.0129 -8.9375 Q45.2942 -9.125 45.7161 -9.125 ZM46.5911 -6.5469 L46.5911 0 L44.8098 0 L44.8098 -6.5469 L46.5911 -6.5469 ZM51.173 -6.6719 Q52.5167 -6.6719 53.3136 -5.8906 Q54.1105 -5.125 54.1105 -3.7031 L54.1105 -2.8281 L49.8917 -2.8281 Q49.9073 -2.0781 50.3292 -1.6406 Q50.7667 -1.2188 51.5167 -1.2188 Q52.1573 -1.2188 52.673 -1.3438 Q53.1886 -1.4688 53.7355 -1.7344 L53.7355 -0.3438 Q53.2511 -0.1094 52.7198 0 Q52.1886 0.125 51.4386 0.125 Q50.4542 0.125 49.6886 -0.2344 Q48.9386 -0.6094 48.5011 -1.3438 Q48.0792 -2.0938 48.0792 -3.2344 Q48.0792 -4.375 48.4542 -5.1406 Q48.8448 -5.9062 49.548 -6.2812 Q50.2511 -6.6719 51.173 -6.6719 ZM51.173 -5.4062 Q50.6573 -5.4062 50.3136 -5.0625 Q49.9855 -4.7344 49.923 -4.0156 L52.423 -4.0156 Q52.423 -4.625 52.1105 -5.0156 Q51.8136 -5.4062 51.173 -5.4062 ZM59.2806 -6.6719 Q60.3431 -6.6719 60.9681 -6.0938 Q61.6088 -5.5312 61.6088 -4.2656 L61.6088 0 L59.8275 0 L59.8275 -3.8281 Q59.8275 -4.5312 59.5619 -4.8906 Q59.3119 -5.25 58.765 -5.25 Q57.9525 -5.25 57.64 -4.6875 Q57.3431 -4.125 57.3431 -3.0781 L57.3431 0 L55.5619 0 L55.5619 -6.5469 L56.9213 -6.5469 L57.1713 -5.7188 L57.265 -5.7188 Q57.5775 -6.2188 58.1244 -6.4375 Q58.6713 -6.6719 59.2806 -6.6719 ZM66.2116 -1.3125 Q66.5084 -1.3125 66.7741 -1.3594 Q67.0553 -1.4219 67.3366 -1.5156 L67.3366 -0.1875 Q67.0397 -0.0625 66.6178 0.0312 Q66.1959 0.125 65.6959 0.125 Q65.1022 0.125 64.6334 -0.0625 Q64.1803 -0.2656 63.8991 -0.7344 Q63.6334 -1.2188 63.6334 -2.0469 L63.6334 -5.2031 L62.7897 -5.2031 L62.7897 -5.9688 L63.7741 -6.5625 L64.2897 -7.9375 L65.4303 -7.9375 L65.4303 -6.5469 L67.2584 -6.5469 L67.2584 -5.2031 L65.4303 -5.2031 L65.4303 -2.0469 Q65.4303 -1.6875 65.6334 -1.5 Q65.8522 -1.3125 66.2116 -1.3125 ZM73.8415 -2.375 Q73.8415 -1.2344 73.0134 -0.5469 Q72.2009 0.125 70.6852 0.125 Q69.3415 0.125 68.2634 -0.3906 L68.2634 -2.0938 Q68.8727 -1.8281 69.529 -1.5938 Q70.1852 -1.375 70.8415 -1.375 Q71.5134 -1.375 71.7946 -1.625 Q72.0759 -1.8906 72.0759 -2.2969 Q72.0759 -2.6094 71.8415 -2.8438 Q71.6227 -3.0781 71.2477 -3.2656 Q70.8884 -3.4688 70.404 -3.7031 Q70.1071 -3.8438 69.7477 -4.0312 Q69.404 -4.2344 69.0915 -4.5312 Q68.779 -4.8281 68.5602 -5.2344 Q68.3571 -5.6562 68.3571 -6.25 Q68.3571 -7.4062 69.1384 -8.0469 Q69.9196 -8.6875 71.2634 -8.6875 Q71.9352 -8.6875 72.5446 -8.5312 Q73.154 -8.375 73.8102 -8.0938 L73.2321 -6.6719 Q72.6384 -6.9062 72.1696 -7.0312 Q71.7009 -7.1719 71.2009 -7.1719 Q70.6852 -7.1719 70.404 -6.9375 Q70.1384 -6.7031 70.1384 -6.3125 Q70.1384 -5.8594 70.5446 -5.5938 Q70.9509 -5.3281 71.7634 -4.9375 Q72.4196 -4.625 72.8727 -4.2812 Q73.3415 -3.9531 73.5915 -3.5 Q73.8415 -3.0469 73.8415 -2.375 ZM77.9691 -6.6719 Q79.3129 -6.6719 80.1098 -5.8906 Q80.9066 -5.125 80.9066 -3.7031 L80.9066 -2.8281 L76.6879 -2.8281 Q76.7035 -2.0781 77.1254 -1.6406 Q77.5629 -1.2188 78.3129 -1.2188 Q78.9535 -1.2188 79.4691 -1.3438 Q79.9848 -1.4688 80.5316 -1.7344 L80.5316 -0.3438 Q80.0473 -0.1094 79.516 0 Q78.9848 0.125 78.2348 0.125 Q77.2504 0.125 76.4848 -0.2344 Q75.7348 -0.6094 75.2973 -1.3438 Q74.8754 -2.0938 74.8754 -3.2344 Q74.8754 -4.375 75.2504 -5.1406 Q75.641 -5.9062 76.3441 -6.2812 Q77.0473 -6.6719 77.9691 -6.6719 ZM77.9691 -5.4062 Q77.4535 -5.4062 77.1098 -5.0625 Q76.7816 -4.7344 76.7191 -4.0156 L79.2191 -4.0156 Q79.2191 -4.625 78.9066 -5.0156 Q78.6098 -5.4062 77.9691 -5.4062 ZM86.0143 -6.6719 Q86.155 -6.6719 86.3268 -6.6562 Q86.5143 -6.6406 86.6237 -6.625 L86.4831 -4.9375 Q86.405 -4.9688 86.2331 -4.9844 Q86.0768 -5 85.9518 -5 Q85.4987 -5 85.0768 -4.8438 Q84.655 -4.6875 84.3893 -4.3125 Q84.1393 -3.9531 84.1393 -3.3438 L84.1393 0 L82.3581 0 L82.3581 -6.5469 L83.7175 -6.5469 L83.9831 -5.4531 L84.0612 -5.4531 Q84.3425 -5.9531 84.8425 -6.3125 Q85.3581 -6.6719 86.0143 -6.6719 ZM89.3686 0 L86.8686 -6.5469 L88.7436 -6.5469 L89.9936 -2.8125 Q90.103 -2.4844 90.1655 -2.125 Q90.2436 -1.7656 90.2592 -1.4688 L90.3061 -1.4688 Q90.3374 -2.125 90.5717 -2.8125 L91.8217 -6.5469 L93.6967 -6.5469 L91.1967 0 L89.3686 0 ZM95.5404 -9.125 Q95.931 -9.125 96.2123 -8.9375 Q96.5092 -8.75 96.5092 -8.25 Q96.5092 -7.75 96.2123 -7.5625 Q95.931 -7.375 95.5404 -7.375 Q95.1185 -7.375 94.8373 -7.5625 Q94.556 -7.75 94.556 -8.25 Q94.556 -8.75 94.8373 -8.9375 Q95.1185 -9.125 95.5404 -9.125 ZM96.4154 -6.5469 L96.4154 0 L94.6342 0 L94.6342 -6.5469 L96.4154 -6.5469 ZM100.9504 0.125 Q99.4973 0.125 98.7004 -0.6875 Q97.9036 -1.5 97.9036 -3.2344 Q97.9036 -4.4375 98.3098 -5.1875 Q98.7161 -5.9531 99.4348 -6.3125 Q100.1692 -6.6719 101.1067 -6.6719 Q101.7786 -6.6719 102.2786 -6.5312 Q102.7786 -6.4062 103.1536 -6.2344 L102.6223 -4.8438 Q102.2004 -5.0156 101.8254 -5.125 Q101.4661 -5.2344 101.1067 -5.2344 Q99.7161 -5.2344 99.7161 -3.25 Q99.7161 -2.2656 100.0754 -1.7969 Q100.4504 -1.3281 101.1067 -1.3281 Q101.6692 -1.3281 102.1067 -1.4688 Q102.5442 -1.625 102.9504 -1.8906 L102.9504 -0.375 Q102.5442 -0.1094 102.0911 0 Q101.6379 0.125 100.9504 0.125 ZM107.1654 -6.6719 Q108.5091 -6.6719 109.306 -5.8906 Q110.1029 -5.125 110.1029 -3.7031 L110.1029 -2.8281 L105.8841 -2.8281 Q105.8997 -2.0781 106.3216 -1.6406 Q106.7591 -1.2188 107.5091 -1.2188 Q108.1497 -1.2188 108.6654 -1.3438 Q109.181 -1.4688 109.7279 -1.7344 L109.7279 -0.3438 Q109.2435 -0.1094 108.7122 0 Q108.181 0.125 107.431 0.125 Q106.4466 0.125 105.681 -0.2344 Q104.931 -0.6094 104.4935 -1.3438 Q104.0716 -2.0938 104.0716 -3.2344 Q104.0716 -4.375 104.4466 -5.1406 Q104.8372 -5.9062 105.5404 -6.2812 Q106.2435 -6.6719 107.1654 -6.6719 ZM107.1654 -5.4062 Q106.6497 -5.4062 106.306 -5.0625 Q105.9779 -4.7344 105.9154 -4.0156 L108.4154 -4.0156 Q108.4154 -4.625 108.1029 -5.0156 Q107.806 -5.4062 107.1654 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath14);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="1121.8832" x2="1046.9874" y1="86.9236" style="fill:none; clip-path:url(#clipPath2);" y2="86.9236"
+      /><line x1="1046.9874" x2="1046.9874" y1="86.9236" style="fill:none; clip-path:url(#clipPath2);" y2="-158.1573"
+      /><line x1="1046.9874" x2="941.9122" y1="-158.1573" style="fill:none; clip-path:url(#clipPath2);" y2="-158.1573"
+      /><line x1="876.4122" x2="876.4122" y1="-54.455" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-3.2713"
+      /><line x1="876.4122" x2="882.4122" y1="-54.455" style="fill:none; clip-path:url(#clipPath2);" y2="-44.0627"
+      /><line x1="876.4122" x2="870.4122" y1="-54.455" style="fill:none; clip-path:url(#clipPath2);" y2="-44.0627"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="434.5701" y="-5.42" width="163" style="clip-path:url(#clipPath2); stroke:none;" height="180.9664"
+      /><rect x="434.5701" y="-5.42" width="163" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="180.9664"
+      /><rect x="579.5701" y="0.58" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="579.5701" y="0.58" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="577.5701" y="8.58" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="577.5701" y="8.58" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="577.5701" y="3.58" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="577.5701" y="3.58" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(475.2718,12.58)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM21.8062 -6.5469 Q22.9 -6.5469 23.4312 -5.9844 Q23.9781 -5.4375 23.9781 -4.1875 L23.9781 0 L22.9312 0 L22.9312 -4.1406 Q22.9312 -5.6562 21.6187 -5.6562 Q20.6812 -5.6562 20.275 -5.1094 Q19.8843 -4.5781 19.8843 -3.5469 L19.8843 0 L18.8375 0 L18.8375 -4.1406 Q18.8375 -5.6562 17.525 -5.6562 Q16.5406 -5.6562 16.1656 -5.0625 Q15.8062 -4.4688 15.8062 -3.3438 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.6031 -6.4375 L15.7593 -5.5625 L15.8218 -5.5625 Q16.1187 -6.0625 16.6187 -6.2969 Q17.1343 -6.5469 17.7125 -6.5469 Q19.2281 -6.5469 19.6812 -5.4688 L19.7437 -5.4688 Q20.0718 -6.0312 20.6187 -6.2812 Q21.1812 -6.5469 21.8062 -6.5469 ZM31.5575 -3.2344 Q31.5575 -1.625 30.745 -0.75 Q29.9325 0.125 28.5575 0.125 Q27.7138 0.125 27.0419 -0.2656 Q26.37 -0.6562 25.9794 -1.4062 Q25.6044 -2.1562 25.6044 -3.2344 Q25.6044 -4.8281 26.4013 -5.6875 Q27.2138 -6.5469 28.5888 -6.5469 Q29.4794 -6.5469 30.1357 -6.1562 Q30.8075 -5.7656 31.1825 -5.0312 Q31.5575 -4.2969 31.5575 -3.2344 ZM26.6982 -3.2344 Q26.6982 -2.0938 27.1513 -1.4219 Q27.6044 -0.75 28.5888 -0.75 Q29.5575 -0.75 30.0107 -1.4219 Q30.4638 -2.0938 30.4638 -3.2344 Q30.4638 -4.375 30.0107 -5.0156 Q29.5575 -5.6562 28.5732 -5.6562 Q27.5888 -5.6562 27.1357 -5.0156 Q26.6982 -4.375 26.6982 -3.2344 ZM35.5051 0.125 Q34.302 0.125 33.5832 -0.7031 Q32.8645 -1.5469 32.8645 -3.2031 Q32.8645 -4.8594 33.5832 -5.7031 Q34.3176 -6.5469 35.5207 -6.5469 Q36.2707 -6.5469 36.7395 -6.2656 Q37.2082 -6 37.5051 -5.6094 L37.5832 -5.6094 Q37.5676 -5.7656 37.5363 -6.0625 Q37.5051 -6.375 37.5051 -6.5469 L37.5051 -9.125 L38.5676 -9.125 L38.5676 0 L37.7238 0 L37.5676 -0.8594 L37.5051 -0.8594 Q37.2238 -0.4531 36.7395 -0.1562 Q36.2707 0.125 35.5051 0.125 ZM35.677 -0.75 Q36.6926 -0.75 37.0988 -1.3125 Q37.5207 -1.875 37.5207 -3 L37.5207 -3.1875 Q37.5207 -4.3906 37.1301 -5.0312 Q36.7395 -5.6719 35.6613 -5.6719 Q34.8176 -5.6719 34.3801 -4.9844 Q33.9582 -4.3125 33.9582 -3.1875 Q33.9582 -2.0312 34.3801 -1.3906 Q34.8176 -0.75 35.677 -0.75 ZM45.9789 -6.4375 L45.9789 0 L45.1195 0 L44.9633 -0.8594 L44.9164 -0.8594 Q44.6039 -0.3438 44.0414 -0.1094 Q43.4945 0.125 42.8695 0.125 Q41.7133 0.125 41.1195 -0.4375 Q40.5414 -1 40.5414 -2.2188 L40.5414 -6.4375 L41.6039 -6.4375 L41.6039 -2.2969 Q41.6039 -0.75 43.0258 -0.75 Q44.1039 -0.75 44.5101 -1.3438 Q44.932 -1.9531 44.932 -3.0781 L44.932 -6.4375 L45.9789 -6.4375 ZM49.0824 0 L48.0199 0 L48.0199 -9.125 L49.0824 -9.125 L49.0824 0 ZM53.6003 -6.5469 Q54.4285 -6.5469 55.0222 -6.1875 Q55.616 -5.8281 55.9285 -5.1719 Q56.2566 -4.5312 56.2566 -3.6406 L56.2566 -3.0156 L51.8503 -3.0156 Q51.8816 -1.9219 52.4128 -1.3438 Q52.9441 -0.7812 53.8972 -0.7812 Q54.5222 -0.7812 54.991 -0.8906 Q55.4597 -1.0156 55.9753 -1.2188 L55.9753 -0.2969 Q55.4753 -0.0781 54.991 0.0156 Q54.5222 0.125 53.8503 0.125 Q52.9441 0.125 52.241 -0.25 Q51.5378 -0.625 51.1472 -1.3594 Q50.7566 -2.0938 50.7566 -3.1719 Q50.7566 -4.2188 51.116 -4.9688 Q51.4753 -5.7344 52.116 -6.1406 Q52.7566 -6.5469 53.6003 -6.5469 ZM53.5847 -5.6875 Q52.8347 -5.6875 52.3972 -5.2031 Q51.9597 -4.7188 51.8816 -3.8594 L55.1472 -3.8594 Q55.1472 -4.6719 54.7722 -5.1719 Q54.3972 -5.6875 53.5847 -5.6875 ZM57.4621 -2.3281 L61.9934 -4.2188 L57.4621 -6.3594 L57.4621 -7.2969 L63.1184 -4.4688 L63.1184 -3.875 L57.4621 -1.3906 L57.4621 -2.3281 ZM64.3262 -2.3281 L68.8574 -4.2188 L64.3262 -6.3594 L64.3262 -7.2969 L69.9824 -4.4688 L69.9824 -3.875 L64.3262 -1.3906 L64.3262 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath15);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(484.3859,14.9241)"
+    ><path d="M3.6094 4.2656 Q5.2188 4.2656 6.0312 4.7343 Q6.8594 5.2031 6.8594 6.3906 Q6.8594 7.1406 6.4375 7.6406 Q6.0312 8.1406 5.2344 8.2812 L5.2344 8.3437 Q5.7656 8.4218 6.2031 8.6562 Q6.6406 8.875 6.8906 9.2968 Q7.1562 9.7187 7.1562 10.3906 Q7.1562 11.5625 6.3594 12.2031 Q5.5625 12.8281 4.1719 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.6094 4.2656 ZM3.8281 7.9062 Q4.9375 7.9062 5.3438 7.5625 Q5.75 7.2031 5.75 6.5 Q5.75 5.7968 5.25 5.5 Q4.75 5.1875 3.6562 5.1875 L2.25 5.1875 L2.25 7.9062 L3.8281 7.9062 ZM2.25 8.8125 L2.25 11.9218 L3.9688 11.9218 Q5.1094 11.9218 5.5469 11.4843 Q6 11.0312 6 10.3125 Q6 9.6406 5.5312 9.2343 Q5.0781 8.8125 3.8906 8.8125 L2.25 8.8125 ZM14.4094 9.5937 Q14.4094 11.2031 13.5969 12.0781 Q12.7844 12.9531 11.4094 12.9531 Q10.5657 12.9531 9.8938 12.5625 Q9.2219 12.1718 8.8313 11.4218 Q8.4563 10.6718 8.4563 9.5937 Q8.4563 8 9.2532 7.1406 Q10.0657 6.2812 11.4407 6.2812 Q12.3313 6.2812 12.9875 6.6718 Q13.6594 7.0625 14.0344 7.7968 Q14.4094 8.5312 14.4094 9.5937 ZM9.55 9.5937 Q9.55 10.7343 10.0032 11.4062 Q10.4563 12.0781 11.4407 12.0781 Q12.4094 12.0781 12.8625 11.4062 Q13.3157 10.7343 13.3157 9.5937 Q13.3157 8.4531 12.8625 7.8125 Q12.4094 7.1718 11.425 7.1718 Q10.4407 7.1718 9.9875 7.8125 Q9.55 8.4531 9.55 9.5937 ZM21.6695 9.5937 Q21.6695 11.2031 20.857 12.0781 Q20.0445 12.9531 18.6695 12.9531 Q17.8257 12.9531 17.1539 12.5625 Q16.482 12.1718 16.0914 11.4218 Q15.7164 10.6718 15.7164 9.5937 Q15.7164 8 16.5132 7.1406 Q17.3257 6.2812 18.7007 6.2812 Q19.5914 6.2812 20.2476 6.6718 Q20.9195 7.0625 21.2945 7.7968 Q21.6695 8.5312 21.6695 9.5937 ZM16.8101 9.5937 Q16.8101 10.7343 17.2632 11.4062 Q17.7164 12.0781 18.7007 12.0781 Q19.6695 12.0781 20.1226 11.4062 Q20.5757 10.7343 20.5757 9.5937 Q20.5757 8.4531 20.1226 7.8125 Q19.6695 7.1718 18.6851 7.1718 Q17.7007 7.1718 17.2476 7.8125 Q16.8101 8.4531 16.8101 9.5937 ZM24.3827 8.4687 Q24.3827 8.6718 24.367 8.9843 Q24.3514 9.2812 24.3358 9.5156 L24.3827 9.5156 Q24.4608 9.4218 24.6014 9.25 Q24.742 9.0625 24.8827 8.875 Q25.0389 8.6875 25.1483 8.5625 L27.2108 6.3906 L28.4452 6.3906 L25.8358 9.1406 L28.617 12.8281 L27.3514 12.8281 L25.117 9.8281 L24.3827 10.4687 L24.3827 12.8281 L23.3358 12.8281 L23.3358 3.7031 L24.3827 3.7031 L24.3827 8.4687 ZM30.2907 3.9843 Q30.5251 3.9843 30.7126 4.1562 Q30.9001 4.3125 30.9001 4.6562 Q30.9001 4.9843 30.7126 5.1562 Q30.5251 5.3281 30.2907 5.3281 Q30.0251 5.3281 29.8376 5.1562 Q29.6657 4.9843 29.6657 4.6562 Q29.6657 4.3125 29.8376 4.1562 Q30.0251 3.9843 30.2907 3.9843 ZM30.8063 6.3906 L30.8063 12.8281 L29.7438 12.8281 L29.7438 6.3906 L30.8063 6.3906 ZM35.9336 6.2812 Q37.0899 6.2812 37.668 6.8437 Q38.2617 7.3906 38.2617 8.6406 L38.2617 12.8281 L37.2305 12.8281 L37.2305 8.7187 Q37.2305 7.1718 35.7774 7.1718 Q34.7149 7.1718 34.3086 7.7656 Q33.9024 8.3593 33.9024 9.4843 L33.9024 12.8281 L32.8399 12.8281 L32.8399 6.3906 L33.6992 6.3906 L33.8555 7.2656 L33.918 7.2656 Q34.2305 6.7656 34.7774 6.5312 Q35.3242 6.2812 35.9336 6.2812 ZM42.5372 6.2812 Q43.1778 6.2812 43.6778 6.5156 Q44.1934 6.75 44.5528 7.25 L44.6153 7.25 L44.7559 6.3906 L45.5997 6.3906 L45.5997 12.9375 Q45.5997 14.3125 44.8965 15 Q44.1934 15.7031 42.7247 15.7031 Q41.3028 15.7031 40.3965 15.2968 L40.3965 14.3281 Q41.3497 14.8281 42.7872 14.8281 Q43.6153 14.8281 44.084 14.3437 Q44.5528 13.8593 44.5528 13.0156 L44.5528 12.7656 Q44.5528 12.625 44.5684 12.3593 Q44.584 12.0781 44.5997 11.9687 L44.5372 11.9687 Q43.8965 12.9531 42.5528 12.9531 Q41.3028 12.9531 40.5997 12.0781 Q39.8965 11.2031 39.8965 9.625 Q39.8965 8.0937 40.5997 7.1875 Q41.3028 6.2812 42.5372 6.2812 ZM42.6778 7.1718 Q41.8809 7.1718 41.4278 7.8125 Q40.9903 8.4531 40.9903 9.6406 Q40.9903 10.8281 41.4278 11.4531 Q41.8653 12.0781 42.709 12.0781 Q43.6778 12.0781 44.1153 11.5625 Q44.5684 11.0468 44.5684 9.875 L44.5684 9.625 Q44.5684 8.2968 44.1153 7.7343 Q43.6622 7.1718 42.6778 7.1718 ZM51.8235 11.0468 Q51.8235 11.9843 51.1203 12.4687 Q50.4328 12.9531 49.261 12.9531 Q48.5891 12.9531 48.1047 12.8437 Q47.6203 12.7343 47.2453 12.5468 L47.2453 11.5781 Q47.636 11.7656 48.1672 11.9375 Q48.7141 12.0937 49.2766 12.0937 Q50.0891 12.0937 50.4485 11.8437 Q50.8078 11.5781 50.8078 11.1406 Q50.8078 10.9062 50.6672 10.7187 Q50.5422 10.5312 50.1985 10.3437 Q49.8547 10.1406 49.2297 9.9062 Q48.6047 9.6562 48.1516 9.4218 Q47.7141 9.1875 47.4641 8.8593 Q47.2297 8.5156 47.2297 7.9843 Q47.2297 7.1718 47.886 6.7343 Q48.5578 6.2812 49.6516 6.2812 Q50.2297 6.2812 50.7297 6.3906 Q51.2453 6.5 51.6985 6.7031 L51.3391 7.5468 Q50.9328 7.375 50.4797 7.2656 Q50.0422 7.1406 49.5735 7.1406 Q48.9172 7.1406 48.5735 7.3593 Q48.2453 7.5625 48.2453 7.9218 Q48.2453 8.1875 48.4016 8.375 Q48.5578 8.5625 48.9172 8.7343 Q49.2766 8.9062 49.9016 9.1406 Q50.511 9.375 50.9328 9.625 Q51.3703 9.8593 51.5891 10.2031 Q51.8235 10.5312 51.8235 11.0468 Z" style="stroke:none; clip-path:url(#clipPath16);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="427.5701" y="59.4546" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="427.5701" y="59.4546" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><rect x="455.3791" y="40.8763" width="123.2686" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="455.3791" y="40.8763" width="123.2686" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="560.6478" y="46.8763" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="560.6478" y="46.8763" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="558.6478" y="54.8763" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="558.6478" y="54.8763" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="558.6478" y="49.8763" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="558.6478" y="49.8763" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(465.3791,58.8763)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath17);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(488.4133,61.2204)"
+    ><path d="M2.0781 5.9218 Q2.0781 6.3437 2.0625 6.7031 Q2.0469 7.0468 2.0156 7.25 L2.0781 7.25 Q2.3594 6.8437 2.8281 6.5625 Q3.3125 6.2812 4.0625 6.2812 Q5.2656 6.2812 5.9844 7.125 Q6.7188 7.9531 6.7188 9.6093 Q6.7188 11.2656 5.9844 12.1093 Q5.25 12.9531 4.0625 12.9531 Q3.3125 12.9531 2.8281 12.6718 Q2.3594 12.3906 2.0781 12.0156 L1.9844 12.0156 L1.7812 12.8281 L1.0156 12.8281 L1.0156 3.7031 L2.0781 3.7031 L2.0781 5.9218 ZM3.8906 7.1718 Q2.875 7.1718 2.4688 7.7656 Q2.0781 8.3437 2.0781 9.5781 L2.0781 9.625 Q2.0781 10.8125 2.4688 11.4531 Q2.8594 12.0781 3.9062 12.0781 Q4.7812 12.0781 5.2031 11.4375 Q5.625 10.7968 5.625 9.5937 Q5.625 7.1718 3.8906 7.1718 ZM13.9894 9.5937 Q13.9894 11.2031 13.1769 12.0781 Q12.3644 12.9531 10.9894 12.9531 Q10.1457 12.9531 9.4738 12.5625 Q8.8019 12.1718 8.4113 11.4218 Q8.0363 10.6718 8.0363 9.5937 Q8.0363 8 8.8332 7.1406 Q9.6457 6.2812 11.0207 6.2812 Q11.9113 6.2812 12.5676 6.6718 Q13.2394 7.0625 13.6144 7.7968 Q13.9894 8.5312 13.9894 9.5937 ZM9.1301 9.5937 Q9.1301 10.7343 9.5832 11.4062 Q10.0363 12.0781 11.0207 12.0781 Q11.9894 12.0781 12.4426 11.4062 Q12.8957 10.7343 12.8957 9.5937 Q12.8957 8.4531 12.4426 7.8125 Q11.9894 7.1718 11.0051 7.1718 Q10.0207 7.1718 9.5676 7.8125 Q9.1301 8.4531 9.1301 9.5937 ZM21.2495 9.5937 Q21.2495 11.2031 20.437 12.0781 Q19.6245 12.9531 18.2495 12.9531 Q17.4057 12.9531 16.7339 12.5625 Q16.062 12.1718 15.6714 11.4218 Q15.2964 10.6718 15.2964 9.5937 Q15.2964 8 16.0932 7.1406 Q16.9057 6.2812 18.2807 6.2812 Q19.1714 6.2812 19.8276 6.6718 Q20.4995 7.0625 20.8745 7.7968 Q21.2495 8.5312 21.2495 9.5937 ZM16.3901 9.5937 Q16.3901 10.7343 16.8432 11.4062 Q17.2964 12.0781 18.2807 12.0781 Q19.2495 12.0781 19.7026 11.4062 Q20.1557 10.7343 20.1557 9.5937 Q20.1557 8.4531 19.7026 7.8125 Q19.2495 7.1718 18.2651 7.1718 Q17.2807 7.1718 16.8276 7.8125 Q16.3901 8.4531 16.3901 9.5937 ZM23.9627 8.4687 Q23.9627 8.6718 23.947 8.9843 Q23.9314 9.2812 23.9158 9.5156 L23.9627 9.5156 Q24.0408 9.4218 24.1814 9.25 Q24.322 9.0625 24.4627 8.875 Q24.6189 8.6875 24.7283 8.5625 L26.7908 6.3906 L28.0252 6.3906 L25.4158 9.1406 L28.197 12.8281 L26.9314 12.8281 L24.697 9.8281 L23.9627 10.4687 L23.9627 12.8281 L22.9158 12.8281 L22.9158 3.7031 L23.9627 3.7031 L23.9627 8.4687 ZM29.8707 3.9843 Q30.1051 3.9843 30.2926 4.1562 Q30.4801 4.3125 30.4801 4.6562 Q30.4801 4.9843 30.2926 5.1562 Q30.1051 5.3281 29.8707 5.3281 Q29.6051 5.3281 29.4176 5.1562 Q29.2457 4.9843 29.2457 4.6562 Q29.2457 4.3125 29.4176 4.1562 Q29.6051 3.9843 29.8707 3.9843 ZM30.3863 6.3906 L30.3863 12.8281 L29.3238 12.8281 L29.3238 6.3906 L30.3863 6.3906 ZM35.5136 6.2812 Q36.6699 6.2812 37.248 6.8437 Q37.8417 7.3906 37.8417 8.6406 L37.8417 12.8281 L36.8105 12.8281 L36.8105 8.7187 Q36.8105 7.1718 35.3574 7.1718 Q34.2949 7.1718 33.8886 7.7656 Q33.4824 8.3593 33.4824 9.4843 L33.4824 12.8281 L32.4199 12.8281 L32.4199 6.3906 L33.2792 6.3906 L33.4355 7.2656 L33.498 7.2656 Q33.8105 6.7656 34.3574 6.5312 Q34.9042 6.2812 35.5136 6.2812 ZM42.1172 6.2812 Q42.7578 6.2812 43.2578 6.5156 Q43.7734 6.75 44.1328 7.25 L44.1953 7.25 L44.3359 6.3906 L45.1797 6.3906 L45.1797 12.9375 Q45.1797 14.3125 44.4765 15 Q43.7734 15.7031 42.3047 15.7031 Q40.8828 15.7031 39.9765 15.2968 L39.9765 14.3281 Q40.9297 14.8281 42.3672 14.8281 Q43.1953 14.8281 43.664 14.3437 Q44.1328 13.8593 44.1328 13.0156 L44.1328 12.7656 Q44.1328 12.625 44.1484 12.3593 Q44.164 12.0781 44.1797 11.9687 L44.1172 11.9687 Q43.4765 12.9531 42.1328 12.9531 Q40.8828 12.9531 40.1797 12.0781 Q39.4765 11.2031 39.4765 9.625 Q39.4765 8.0937 40.1797 7.1875 Q40.8828 6.2812 42.1172 6.2812 ZM42.2578 7.1718 Q41.4609 7.1718 41.0078 7.8125 Q40.5703 8.4531 40.5703 9.6406 Q40.5703 10.8281 41.0078 11.4531 Q41.4453 12.0781 42.289 12.0781 Q43.2578 12.0781 43.6953 11.5625 Q44.1484 11.0468 44.1484 9.875 L44.1484 9.625 Q44.1484 8.2968 43.6953 7.7343 Q43.2422 7.1718 42.2578 7.1718 Z" style="stroke:none; clip-path:url(#clipPath18);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="427.5701" y="122.0185" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="427.5701" y="122.0185" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="806.0037" x2="698.6704" y1="-74.7992" style="fill:none; clip-path:url(#clipPath2);" y2="-74.7992"
+      /><line x1="698.6704" x2="698.6704" y1="-74.7992" style="fill:none; clip-path:url(#clipPath2);" y2="-24.0081"
+      /><line x1="698.6704" x2="613.7322" y1="-24.0081" style="fill:none; clip-path:url(#clipPath2);" y2="-24.0081"
+      /><line x1="613.7322" x2="613.7322" y1="-24.0081" style="fill:none; clip-path:url(#clipPath2);" y2="65.2204"
+      /><line x1="613.7322" x2="578.6478" y1="65.2204" style="fill:none; clip-path:url(#clipPath2);" y2="65.2204"
+      /><line x1="806.0037" x2="795.6114" y1="-74.7992" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-68.7992"
+      /><line x1="806.0037" x2="795.6114" y1="-74.7992" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-80.7992"
+      /><path d="M619.7322 47.452 A6 6 0 0 0 607.7322 47.452" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="802.4122" x2="767.3466" y1="208.6115" style="fill:none; clip-path:url(#clipPath2);" y2="208.6115"
+      /><line x1="767.3466" x2="767.3466" y1="208.6115" style="fill:none; clip-path:url(#clipPath2);" y2="47.452"
+      /><line x1="767.3466" x2="619.7322" y1="47.452" style="fill:none; clip-path:url(#clipPath2);" y2="47.452"
+      /><line x1="607.7322" x2="578.6478" y1="47.452" style="fill:none; clip-path:url(#clipPath2);" y2="47.452"
+      /><line x1="802.4122" x2="792.0199" y1="208.6115" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="214.6115"
+      /><line x1="802.4122" x2="792.0199" y1="208.6115" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="202.6115"
+      /><path d="M654.0936 53.452 A6 6 0 0 0 654.0936 41.452" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="822.4122" x2="654.0936" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="17.0728"
+      /><line x1="654.0936" x2="654.0936" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="41.452"
+      /><line x1="654.0936" x2="654.0936" y1="53.452" style="fill:none; clip-path:url(#clipPath2);" y2="65.2204"
+      /><line x1="654.0936" x2="578.6478" y1="65.2204" style="fill:none; clip-path:url(#clipPath2);" y2="65.2204"
+      /><line x1="822.4122" x2="812.0199" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="23.0728"
+      /><line x1="822.4122" x2="812.0199" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="11.0728"
+      /><line x1="813.4122" x2="703.9024" y1="303.9326" style="fill:none; clip-path:url(#clipPath2);" y2="303.9326"
+      /><line x1="703.9024" x2="703.9024" y1="303.9326" style="fill:none; clip-path:url(#clipPath2);" y2="75.002"
+      /><line x1="703.9024" x2="578.6478" y1="75.002" style="fill:none; clip-path:url(#clipPath2);" y2="75.002"
+      /><line x1="813.4122" x2="803.0199" y1="303.9326" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="309.9326"
+      /><line x1="813.4122" x2="803.0199" y1="303.9326" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="297.9326"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="449.5701" y="111.8581" width="133" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="449.5701" y="111.8581" width="133" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="564.5701" y="117.8581" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="564.5701" y="117.8581" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="562.5701" y="125.8581" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="562.5701" y="125.8581" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="562.5701" y="120.8581" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="562.5701" y="120.8581" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(464.4357,129.8581)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath19);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(463.0257,132.2022)"
+    ><path d="M6.3906 6.3906 L6.3906 12.8281 L5.5312 12.8281 L5.375 11.9687 L5.3281 11.9687 Q5.0156 12.4843 4.4531 12.7187 Q3.9062 12.9531 3.2812 12.9531 Q2.125 12.9531 1.5312 12.3906 Q0.9531 11.8281 0.9531 10.6093 L0.9531 6.3906 L2.0156 6.3906 L2.0156 10.5312 Q2.0156 12.0781 3.4375 12.0781 Q4.5156 12.0781 4.9219 11.4843 Q5.3438 10.875 5.3438 9.75 L5.3438 6.3906 L6.3906 6.3906 ZM12.6192 11.0468 Q12.6192 11.9843 11.916 12.4687 Q11.2285 12.9531 10.0567 12.9531 Q9.3848 12.9531 8.9004 12.8437 Q8.416 12.7343 8.041 12.5468 L8.041 11.5781 Q8.4317 11.7656 8.9629 11.9375 Q9.5098 12.0937 10.0723 12.0937 Q10.8848 12.0937 11.2442 11.8437 Q11.6035 11.5781 11.6035 11.1406 Q11.6035 10.9062 11.4629 10.7187 Q11.3379 10.5312 10.9942 10.3437 Q10.6504 10.1406 10.0254 9.9062 Q9.4004 9.6562 8.9473 9.4218 Q8.5098 9.1875 8.2598 8.8593 Q8.0254 8.5156 8.0254 7.9843 Q8.0254 7.1718 8.6817 6.7343 Q9.3535 6.2812 10.4473 6.2812 Q11.0254 6.2812 11.5254 6.3906 Q12.041 6.5 12.4942 6.7031 L12.1348 7.5468 Q11.7285 7.375 11.2754 7.2656 Q10.8379 7.1406 10.3692 7.1406 Q9.7129 7.1406 9.3692 7.3593 Q9.041 7.5625 9.041 7.9218 Q9.041 8.1875 9.1973 8.375 Q9.3535 8.5625 9.7129 8.7343 Q10.0723 8.9062 10.6973 9.1406 Q11.3067 9.375 11.7285 9.625 Q12.166 9.8593 12.3848 10.2031 Q12.6192 10.5312 12.6192 11.0468 ZM16.6641 6.2812 Q17.4922 6.2812 18.086 6.6406 Q18.6797 7 18.9922 7.6562 Q19.3203 8.2968 19.3203 9.1875 L19.3203 9.8125 L14.9141 9.8125 Q14.9453 10.9062 15.4766 11.4843 Q16.0078 12.0468 16.961 12.0468 Q17.586 12.0468 18.0547 11.9375 Q18.5235 11.8125 19.0391 11.6093 L19.0391 12.5312 Q18.5391 12.75 18.0547 12.8437 Q17.586 12.9531 16.9141 12.9531 Q16.0078 12.9531 15.3047 12.5781 Q14.6016 12.2031 14.211 11.4687 Q13.8203 10.7343 13.8203 9.6562 Q13.8203 8.6093 14.1797 7.8593 Q14.5391 7.0937 15.1797 6.6875 Q15.8203 6.2812 16.6641 6.2812 ZM16.6485 7.1406 Q15.8985 7.1406 15.461 7.625 Q15.0235 8.1093 14.9453 8.9687 L18.211 8.9687 Q18.211 8.1562 17.836 7.6562 Q17.461 7.1406 16.6485 7.1406 ZM23.9478 6.2812 Q24.1353 6.2812 24.3384 6.2968 Q24.5571 6.3125 24.7134 6.3437 L24.5728 7.3125 Q24.4165 7.2812 24.229 7.2656 Q24.0415 7.2343 23.8853 7.2343 Q23.3853 7.2343 22.9478 7.5156 Q22.5259 7.7812 22.2603 8.2656 Q22.0103 8.75 22.0103 9.3906 L22.0103 12.8281 L20.9478 12.8281 L20.9478 6.3906 L21.8228 6.3906 L21.9321 7.5781 L21.979 7.5781 Q22.2915 7.0468 22.7759 6.6718 Q23.2759 6.2812 23.9478 6.2812 ZM25.3726 10.0781 L25.3726 9.1406 L28.2788 9.1406 L28.2788 10.0781 L25.3726 10.0781 ZM30.8303 5.9218 Q30.8303 6.3437 30.8147 6.7031 Q30.7991 7.0468 30.7678 7.25 L30.8303 7.25 Q31.1116 6.8437 31.5803 6.5625 Q32.0647 6.2812 32.8147 6.2812 Q34.0178 6.2812 34.7366 7.125 Q35.471 7.9531 35.471 9.6093 Q35.471 11.2656 34.7366 12.1093 Q34.0022 12.9531 32.8147 12.9531 Q32.0647 12.9531 31.5803 12.6718 Q31.1116 12.3906 30.8303 12.0156 L30.7366 12.0156 L30.5335 12.8281 L29.7678 12.8281 L29.7678 3.7031 L30.8303 3.7031 L30.8303 5.9218 ZM32.6428 7.1718 Q31.6272 7.1718 31.221 7.7656 Q30.8303 8.3437 30.8303 9.5781 L30.8303 9.625 Q30.8303 10.8125 31.221 11.4531 Q31.6116 12.0781 32.6585 12.0781 Q33.5335 12.0781 33.9553 11.4375 Q34.3772 10.7968 34.3772 9.5937 Q34.3772 7.1718 32.6428 7.1718 ZM42.7416 9.5937 Q42.7416 11.2031 41.9291 12.0781 Q41.1166 12.9531 39.7416 12.9531 Q38.8979 12.9531 38.226 12.5625 Q37.5541 12.1718 37.1635 11.4218 Q36.7885 10.6718 36.7885 9.5937 Q36.7885 8 37.5854 7.1406 Q38.3979 6.2812 39.7729 6.2812 Q40.6635 6.2812 41.3198 6.6718 Q41.9916 7.0625 42.3666 7.7968 Q42.7416 8.5312 42.7416 9.5937 ZM37.8823 9.5937 Q37.8823 10.7343 38.3354 11.4062 Q38.7885 12.0781 39.7729 12.0781 Q40.7416 12.0781 41.1948 11.4062 Q41.6479 10.7343 41.6479 9.5937 Q41.6479 8.4531 41.1948 7.8125 Q40.7416 7.1718 39.7573 7.1718 Q38.7729 7.1718 38.3198 7.8125 Q37.8823 8.4531 37.8823 9.5937 ZM50.0017 9.5937 Q50.0017 11.2031 49.1892 12.0781 Q48.3767 12.9531 47.0017 12.9531 Q46.1579 12.9531 45.4861 12.5625 Q44.8142 12.1718 44.4236 11.4218 Q44.0486 10.6718 44.0486 9.5937 Q44.0486 8 44.8454 7.1406 Q45.6579 6.2812 47.0329 6.2812 Q47.9236 6.2812 48.5798 6.6718 Q49.2517 7.0625 49.6267 7.7968 Q50.0017 8.5312 50.0017 9.5937 ZM45.1423 9.5937 Q45.1423 10.7343 45.5954 11.4062 Q46.0486 12.0781 47.0329 12.0781 Q48.0017 12.0781 48.4548 11.4062 Q48.9079 10.7343 48.9079 9.5937 Q48.9079 8.4531 48.4548 7.8125 Q48.0017 7.1718 47.0173 7.1718 Q46.0329 7.1718 45.5798 7.8125 Q45.1423 8.4531 45.1423 9.5937 ZM52.7149 8.4687 Q52.7149 8.6718 52.6992 8.9843 Q52.6836 9.2812 52.668 9.5156 L52.7149 9.5156 Q52.793 9.4218 52.9336 9.25 Q53.0742 9.0625 53.2149 8.875 Q53.3711 8.6875 53.4805 8.5625 L55.543 6.3906 L56.7774 6.3906 L54.168 9.1406 L56.9492 12.8281 L55.6836 12.8281 L53.4492 9.8281 L52.7149 10.4687 L52.7149 12.8281 L51.668 12.8281 L51.668 3.7031 L52.7149 3.7031 L52.7149 8.4687 ZM58.6229 3.9843 Q58.8573 3.9843 59.0448 4.1562 Q59.2323 4.3125 59.2323 4.6562 Q59.2323 4.9843 59.0448 5.1562 Q58.8573 5.3281 58.6229 5.3281 Q58.3573 5.3281 58.1698 5.1562 Q57.9979 4.9843 57.9979 4.6562 Q57.9979 4.3125 58.1698 4.1562 Q58.3573 3.9843 58.6229 3.9843 ZM59.1385 6.3906 L59.1385 12.8281 L58.076 12.8281 L58.076 6.3906 L59.1385 6.3906 ZM64.2658 6.2812 Q65.4221 6.2812 66.0002 6.8437 Q66.5939 7.3906 66.5939 8.6406 L66.5939 12.8281 L65.5627 12.8281 L65.5627 8.7187 Q65.5627 7.1718 64.1096 7.1718 Q63.0471 7.1718 62.6408 7.7656 Q62.2346 8.3593 62.2346 9.4843 L62.2346 12.8281 L61.1721 12.8281 L61.1721 6.3906 L62.0314 6.3906 L62.1877 7.2656 L62.2502 7.2656 Q62.5627 6.7656 63.1096 6.5312 Q63.6564 6.2812 64.2658 6.2812 ZM70.8694 6.2812 Q71.51 6.2812 72.01 6.5156 Q72.5256 6.75 72.885 7.25 L72.9475 7.25 L73.0881 6.3906 L73.9319 6.3906 L73.9319 12.9375 Q73.9319 14.3125 73.2287 15 Q72.5256 15.7031 71.0569 15.7031 Q69.635 15.7031 68.7287 15.2968 L68.7287 14.3281 Q69.6819 14.8281 71.1194 14.8281 Q71.9475 14.8281 72.4162 14.3437 Q72.885 13.8593 72.885 13.0156 L72.885 12.7656 Q72.885 12.625 72.9006 12.3593 Q72.9162 12.0781 72.9319 11.9687 L72.8694 11.9687 Q72.2287 12.9531 70.885 12.9531 Q69.635 12.9531 68.9319 12.0781 Q68.2287 11.2031 68.2287 9.625 Q68.2287 8.0937 68.9319 7.1875 Q69.635 6.2812 70.8694 6.2812 ZM71.01 7.1718 Q70.2131 7.1718 69.76 7.8125 Q69.3225 8.4531 69.3225 9.6406 Q69.3225 10.8281 69.76 11.4531 Q70.1975 12.0781 71.0412 12.0781 Q72.01 12.0781 72.4475 11.5625 Q72.9006 11.0468 72.9006 9.875 L72.9006 9.625 Q72.9006 8.2968 72.4475 7.7343 Q71.9944 7.1718 71.01 7.1718 ZM75.4369 10.0781 L75.4369 9.1406 L78.3432 9.1406 L78.3432 10.0781 L75.4369 10.0781 ZM80.8947 12.8281 L79.8322 12.8281 L79.8322 3.7031 L80.8947 3.7031 L80.8947 12.8281 ZM83.4751 3.9843 Q83.7095 3.9843 83.897 4.1562 Q84.0845 4.3125 84.0845 4.6562 Q84.0845 4.9843 83.897 5.1562 Q83.7095 5.3281 83.4751 5.3281 Q83.2095 5.3281 83.022 5.1562 Q82.8501 4.9843 82.8501 4.6562 Q82.8501 4.3125 83.022 4.1562 Q83.2095 3.9843 83.4751 3.9843 ZM83.9907 6.3906 L83.9907 12.8281 L82.9282 12.8281 L82.9282 6.3906 L83.9907 6.3906 ZM90.2117 11.0468 Q90.2117 11.9843 89.5086 12.4687 Q88.8211 12.9531 87.6492 12.9531 Q86.9774 12.9531 86.493 12.8437 Q86.0086 12.7343 85.6336 12.5468 L85.6336 11.5781 Q86.0242 11.7656 86.5555 11.9375 Q87.1024 12.0937 87.6649 12.0937 Q88.4774 12.0937 88.8367 11.8437 Q89.1961 11.5781 89.1961 11.1406 Q89.1961 10.9062 89.0555 10.7187 Q88.9305 10.5312 88.5867 10.3437 Q88.243 10.1406 87.618 9.9062 Q86.993 9.6562 86.5399 9.4218 Q86.1024 9.1875 85.8524 8.8593 Q85.618 8.5156 85.618 7.9843 Q85.618 7.1718 86.2742 6.7343 Q86.9461 6.2812 88.0399 6.2812 Q88.618 6.2812 89.118 6.3906 Q89.6336 6.5 90.0867 6.7031 L89.7274 7.5468 Q89.3211 7.375 88.868 7.2656 Q88.4305 7.1406 87.9617 7.1406 Q87.3055 7.1406 86.9617 7.3593 Q86.6336 7.5625 86.6336 7.9218 Q86.6336 8.1875 86.7899 8.375 Q86.9461 8.5625 87.3055 8.7343 Q87.6649 8.9062 88.2899 9.1406 Q88.8992 9.375 89.3211 9.625 Q89.7586 9.8593 89.9774 10.2031 Q90.2117 10.5312 90.2117 11.0468 ZM93.9285 12.0781 Q94.1629 12.0781 94.4129 12.0468 Q94.6629 12 94.8192 11.9531 L94.8192 12.75 Q94.6629 12.8437 94.3504 12.8906 Q94.0379 12.9531 93.741 12.9531 Q93.241 12.9531 92.8035 12.7812 Q92.3817 12.5937 92.116 12.1718 Q91.866 11.7343 91.866 10.9531 L91.866 7.2187 L90.9442 7.2187 L90.9442 6.7031 L91.866 6.2812 L92.2879 4.9218 L92.9129 4.9218 L92.9129 6.3906 L94.7723 6.3906 L94.7723 7.2187 L92.9129 7.2187 L92.9129 10.9375 Q92.9129 11.5156 93.1942 11.7968 Q93.4754 12.0781 93.9285 12.0781 Z" style="stroke:none; clip-path:url(#clipPath20);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="436.0544" y="-256.3217" width="160.5157" style="clip-path:url(#clipPath2); stroke:none;" height="180.9664"
+      /><rect x="436.0544" y="-256.3217" width="160.5157" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="180.9664"
+      /><rect x="578.5701" y="-250.3217" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="578.5701" y="-250.3217" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="576.5701" y="-242.3217" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="576.5701" y="-242.3217" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="576.5701" y="-247.3217" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="576.5701" y="-247.3217" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(475.514,-238.3217)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM21.8062 -6.5469 Q22.9 -6.5469 23.4312 -5.9844 Q23.9781 -5.4375 23.9781 -4.1875 L23.9781 0 L22.9312 0 L22.9312 -4.1406 Q22.9312 -5.6562 21.6187 -5.6562 Q20.6812 -5.6562 20.275 -5.1094 Q19.8843 -4.5781 19.8843 -3.5469 L19.8843 0 L18.8375 0 L18.8375 -4.1406 Q18.8375 -5.6562 17.525 -5.6562 Q16.5406 -5.6562 16.1656 -5.0625 Q15.8062 -4.4688 15.8062 -3.3438 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.6031 -6.4375 L15.7593 -5.5625 L15.8218 -5.5625 Q16.1187 -6.0625 16.6187 -6.2969 Q17.1343 -6.5469 17.7125 -6.5469 Q19.2281 -6.5469 19.6812 -5.4688 L19.7437 -5.4688 Q20.0718 -6.0312 20.6187 -6.2812 Q21.1812 -6.5469 21.8062 -6.5469 ZM31.5575 -3.2344 Q31.5575 -1.625 30.745 -0.75 Q29.9325 0.125 28.5575 0.125 Q27.7138 0.125 27.0419 -0.2656 Q26.37 -0.6562 25.9794 -1.4062 Q25.6044 -2.1562 25.6044 -3.2344 Q25.6044 -4.8281 26.4013 -5.6875 Q27.2138 -6.5469 28.5888 -6.5469 Q29.4794 -6.5469 30.1357 -6.1562 Q30.8075 -5.7656 31.1825 -5.0312 Q31.5575 -4.2969 31.5575 -3.2344 ZM26.6982 -3.2344 Q26.6982 -2.0938 27.1513 -1.4219 Q27.6044 -0.75 28.5888 -0.75 Q29.5575 -0.75 30.0107 -1.4219 Q30.4638 -2.0938 30.4638 -3.2344 Q30.4638 -4.375 30.0107 -5.0156 Q29.5575 -5.6562 28.5732 -5.6562 Q27.5888 -5.6562 27.1357 -5.0156 Q26.6982 -4.375 26.6982 -3.2344 ZM35.5051 0.125 Q34.302 0.125 33.5832 -0.7031 Q32.8645 -1.5469 32.8645 -3.2031 Q32.8645 -4.8594 33.5832 -5.7031 Q34.3176 -6.5469 35.5207 -6.5469 Q36.2707 -6.5469 36.7395 -6.2656 Q37.2082 -6 37.5051 -5.6094 L37.5832 -5.6094 Q37.5676 -5.7656 37.5363 -6.0625 Q37.5051 -6.375 37.5051 -6.5469 L37.5051 -9.125 L38.5676 -9.125 L38.5676 0 L37.7238 0 L37.5676 -0.8594 L37.5051 -0.8594 Q37.2238 -0.4531 36.7395 -0.1562 Q36.2707 0.125 35.5051 0.125 ZM35.677 -0.75 Q36.6926 -0.75 37.0988 -1.3125 Q37.5207 -1.875 37.5207 -3 L37.5207 -3.1875 Q37.5207 -4.3906 37.1301 -5.0312 Q36.7395 -5.6719 35.6613 -5.6719 Q34.8176 -5.6719 34.3801 -4.9844 Q33.9582 -4.3125 33.9582 -3.1875 Q33.9582 -2.0312 34.3801 -1.3906 Q34.8176 -0.75 35.677 -0.75 ZM45.9789 -6.4375 L45.9789 0 L45.1195 0 L44.9633 -0.8594 L44.9164 -0.8594 Q44.6039 -0.3438 44.0414 -0.1094 Q43.4945 0.125 42.8695 0.125 Q41.7133 0.125 41.1195 -0.4375 Q40.5414 -1 40.5414 -2.2188 L40.5414 -6.4375 L41.6039 -6.4375 L41.6039 -2.2969 Q41.6039 -0.75 43.0258 -0.75 Q44.1039 -0.75 44.5101 -1.3438 Q44.932 -1.9531 44.932 -3.0781 L44.932 -6.4375 L45.9789 -6.4375 ZM49.0824 0 L48.0199 0 L48.0199 -9.125 L49.0824 -9.125 L49.0824 0 ZM53.6003 -6.5469 Q54.4285 -6.5469 55.0222 -6.1875 Q55.616 -5.8281 55.9285 -5.1719 Q56.2566 -4.5312 56.2566 -3.6406 L56.2566 -3.0156 L51.8503 -3.0156 Q51.8816 -1.9219 52.4128 -1.3438 Q52.9441 -0.7812 53.8972 -0.7812 Q54.5222 -0.7812 54.991 -0.8906 Q55.4597 -1.0156 55.9753 -1.2188 L55.9753 -0.2969 Q55.4753 -0.0781 54.991 0.0156 Q54.5222 0.125 53.8503 0.125 Q52.9441 0.125 52.241 -0.25 Q51.5378 -0.625 51.1472 -1.3594 Q50.7566 -2.0938 50.7566 -3.1719 Q50.7566 -4.2188 51.116 -4.9688 Q51.4753 -5.7344 52.116 -6.1406 Q52.7566 -6.5469 53.6003 -6.5469 ZM53.5847 -5.6875 Q52.8347 -5.6875 52.3972 -5.2031 Q51.9597 -4.7188 51.8816 -3.8594 L55.1472 -3.8594 Q55.1472 -4.6719 54.7722 -5.1719 Q54.3972 -5.6875 53.5847 -5.6875 ZM57.4621 -2.3281 L61.9934 -4.2188 L57.4621 -6.3594 L57.4621 -7.2969 L63.1184 -4.4688 L63.1184 -3.875 L57.4621 -1.3906 L57.4621 -2.3281 ZM64.3262 -2.3281 L68.8574 -4.2188 L64.3262 -6.3594 L64.3262 -7.2969 L69.9824 -4.4688 L69.9824 -3.875 L64.3262 -1.3906 L64.3262 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath21);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(495.6381,-235.9776)"
+    ><path d="M7.7188 12.8281 L6.6406 12.8281 L6.6406 8.8281 L2.25 8.8281 L2.25 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.25 4.2656 L2.25 7.8906 L6.6406 7.8906 L6.6406 4.2656 L7.7188 4.2656 L7.7188 12.8281 ZM15.5014 9.5937 Q15.5014 11.2031 14.6889 12.0781 Q13.8764 12.9531 12.5014 12.9531 Q11.6577 12.9531 10.9858 12.5625 Q10.3139 12.1718 9.9233 11.4218 Q9.5483 10.6718 9.5483 9.5937 Q9.5483 8 10.3452 7.1406 Q11.1577 6.2812 12.5327 6.2812 Q13.4233 6.2812 14.0796 6.6718 Q14.7514 7.0625 15.1264 7.7968 Q15.5014 8.5312 15.5014 9.5937 ZM10.6421 9.5937 Q10.6421 10.7343 11.0952 11.4062 Q11.5483 12.0781 12.5327 12.0781 Q13.5014 12.0781 13.9546 11.4062 Q14.4077 10.7343 14.4077 9.5937 Q14.4077 8.4531 13.9546 7.8125 Q13.5014 7.1718 12.5171 7.1718 Q11.5327 7.1718 11.0796 7.8125 Q10.6421 8.4531 10.6421 9.5937 ZM19.324 12.0781 Q19.5584 12.0781 19.8084 12.0468 Q20.0584 12 20.2146 11.9531 L20.2146 12.75 Q20.0584 12.8437 19.7459 12.8906 Q19.4334 12.9531 19.1365 12.9531 Q18.6365 12.9531 18.199 12.7812 Q17.7771 12.5937 17.5115 12.1718 Q17.2615 11.7343 17.2615 10.9531 L17.2615 7.2187 L16.3396 7.2187 L16.3396 6.7031 L17.2615 6.2812 L17.6834 4.9218 L18.3084 4.9218 L18.3084 6.3906 L20.1677 6.3906 L20.1677 7.2187 L18.3084 7.2187 L18.3084 10.9375 Q18.3084 11.5156 18.5896 11.7968 Q18.8709 12.0781 19.324 12.0781 ZM23.9841 6.2812 Q24.8123 6.2812 25.406 6.6406 Q25.9998 7 26.3123 7.6562 Q26.6404 8.2968 26.6404 9.1875 L26.6404 9.8125 L22.2341 9.8125 Q22.2654 10.9062 22.7966 11.4843 Q23.3279 12.0468 24.281 12.0468 Q24.906 12.0468 25.3748 11.9375 Q25.8435 11.8125 26.3591 11.6093 L26.3591 12.5312 Q25.8591 12.75 25.3748 12.8437 Q24.906 12.9531 24.2341 12.9531 Q23.3279 12.9531 22.6248 12.5781 Q21.9216 12.2031 21.531 11.4687 Q21.1404 10.7343 21.1404 9.6562 Q21.1404 8.6093 21.4998 7.8593 Q21.8591 7.0937 22.4998 6.6875 Q23.1404 6.2812 23.9841 6.2812 ZM23.9685 7.1406 Q23.2185 7.1406 22.781 7.625 Q22.3435 8.1093 22.2654 8.9687 L25.531 8.9687 Q25.531 8.1562 25.156 7.6562 Q24.781 7.1406 23.9685 7.1406 ZM29.3303 12.8281 L28.2678 12.8281 L28.2678 3.7031 L29.3303 3.7031 L29.3303 12.8281 Z" style="stroke:none; clip-path:url(#clipPath22);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><path d="M709.9024 136.6412 A6 6 0 0 0 697.9024 136.6412" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="802.4122" x2="767.3466" y1="208.6115" style="fill:none; clip-path:url(#clipPath2);" y2="208.6115"
+      /><line x1="767.3466" x2="767.3466" y1="208.6115" style="fill:none; clip-path:url(#clipPath2);" y2="136.6412"
+      /><line x1="767.3466" x2="709.9024" y1="136.6412" style="fill:none; clip-path:url(#clipPath2);" y2="136.6412"
+      /><line x1="697.9024" x2="582.5701" y1="136.6412" style="fill:none; clip-path:url(#clipPath2);" y2="136.6412"
+      /><line x1="802.4122" x2="792.0199" y1="208.6115" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="214.6115"
+      /><line x1="802.4122" x2="792.0199" y1="208.6115" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="202.6115"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="429.0544" y="-191.0534" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="429.0544" y="-191.0534" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><rect x="452.7459" y="-139.0436" width="123.2686" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="452.7459" y="-139.0436" width="123.2686" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="558.0145" y="-133.0436" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="558.0145" y="-133.0436" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="556.0145" y="-125.0436" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="556.0145" y="-125.0436" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="556.0145" y="-130.0436" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="556.0145" y="-130.0436" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(462.7459,-121.0436)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath23);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(484.376,-118.6995)"
+    ><path d="M2.0781 6.3906 Q2.0781 6.8593 2.0156 7.2812 L2.0938 7.2812 Q2.4062 6.7968 2.9375 6.5468 Q3.4688 6.2812 4.0938 6.2812 Q5.2656 6.2812 5.8438 6.8437 Q6.4375 7.4062 6.4375 8.6406 L6.4375 12.8281 L5.4062 12.8281 L5.4062 8.7187 Q5.4062 7.1718 3.9531 7.1718 Q2.875 7.1718 2.4688 7.7812 Q2.0781 8.375 2.0781 9.5 L2.0781 12.8281 L1.0156 12.8281 L1.0156 3.7031 L2.0781 3.7031 L2.0781 6.3906 ZM14.0254 9.5937 Q14.0254 11.2031 13.2129 12.0781 Q12.4004 12.9531 11.0254 12.9531 Q10.1817 12.9531 9.5098 12.5625 Q8.8379 12.1718 8.4473 11.4218 Q8.0723 10.6718 8.0723 9.5937 Q8.0723 8 8.8692 7.1406 Q9.6817 6.2812 11.0567 6.2812 Q11.9473 6.2812 12.6035 6.6718 Q13.2754 7.0625 13.6504 7.7968 Q14.0254 8.5312 14.0254 9.5937 ZM9.166 9.5937 Q9.166 10.7343 9.6192 11.4062 Q10.0723 12.0781 11.0567 12.0781 Q12.0254 12.0781 12.4785 11.4062 Q12.9317 10.7343 12.9317 9.5937 Q12.9317 8.4531 12.4785 7.8125 Q12.0254 7.1718 11.041 7.1718 Q10.0567 7.1718 9.6035 7.8125 Q9.166 8.4531 9.166 9.5937 ZM17.848 12.0781 Q18.0824 12.0781 18.3324 12.0468 Q18.5824 12 18.7386 11.9531 L18.7386 12.75 Q18.5824 12.8437 18.2699 12.8906 Q17.9574 12.9531 17.6605 12.9531 Q17.1605 12.9531 16.723 12.7812 Q16.3011 12.5937 16.0355 12.1718 Q15.7855 11.7343 15.7855 10.9531 L15.7855 7.2187 L14.8636 7.2187 L14.8636 6.7031 L15.7855 6.2812 L16.2074 4.9218 L16.8324 4.9218 L16.8324 6.3906 L18.6917 6.3906 L18.6917 7.2187 L16.8324 7.2187 L16.8324 10.9375 Q16.8324 11.5156 17.1136 11.7968 Q17.3949 12.0781 17.848 12.0781 ZM22.5081 6.2812 Q23.3363 6.2812 23.93 6.6406 Q24.5238 7 24.8363 7.6562 Q25.1644 8.2968 25.1644 9.1875 L25.1644 9.8125 L20.7581 9.8125 Q20.7894 10.9062 21.3206 11.4843 Q21.8519 12.0468 22.805 12.0468 Q23.43 12.0468 23.8988 11.9375 Q24.3675 11.8125 24.8831 11.6093 L24.8831 12.5312 Q24.3831 12.75 23.8988 12.8437 Q23.43 12.9531 22.7581 12.9531 Q21.8519 12.9531 21.1488 12.5781 Q20.4456 12.2031 20.055 11.4687 Q19.6644 10.7343 19.6644 9.6562 Q19.6644 8.6093 20.0238 7.8593 Q20.3831 7.0937 21.0238 6.6875 Q21.6644 6.2812 22.5081 6.2812 ZM22.4925 7.1406 Q21.7425 7.1406 21.305 7.625 Q20.8675 8.1093 20.7894 8.9687 L24.055 8.9687 Q24.055 8.1562 23.68 7.6562 Q23.305 7.1406 22.4925 7.1406 ZM27.8543 12.8281 L26.7918 12.8281 L26.7918 3.7031 L27.8543 3.7031 L27.8543 12.8281 ZM29.3566 10.0781 L29.3566 9.1406 L32.2628 9.1406 L32.2628 10.0781 L29.3566 10.0781 ZM34.8144 12.8281 L33.7519 12.8281 L33.7519 3.7031 L34.8144 3.7031 L34.8144 12.8281 ZM37.3948 3.9843 Q37.6291 3.9843 37.8166 4.1562 Q38.0041 4.3125 38.0041 4.6562 Q38.0041 4.9843 37.8166 5.1562 Q37.6291 5.3281 37.3948 5.3281 Q37.1291 5.3281 36.9416 5.1562 Q36.7698 4.9843 36.7698 4.6562 Q36.7698 4.3125 36.9416 4.1562 Q37.1291 3.9843 37.3948 3.9843 ZM37.9104 6.3906 L37.9104 12.8281 L36.8479 12.8281 L36.8479 6.3906 L37.9104 6.3906 ZM44.1314 11.0468 Q44.1314 11.9843 43.4283 12.4687 Q42.7408 12.9531 41.5689 12.9531 Q40.897 12.9531 40.4127 12.8437 Q39.9283 12.7343 39.5533 12.5468 L39.5533 11.5781 Q39.9439 11.7656 40.4752 11.9375 Q41.022 12.0937 41.5845 12.0937 Q42.397 12.0937 42.7564 11.8437 Q43.1158 11.5781 43.1158 11.1406 Q43.1158 10.9062 42.9752 10.7187 Q42.8502 10.5312 42.5064 10.3437 Q42.1627 10.1406 41.5377 9.9062 Q40.9127 9.6562 40.4595 9.4218 Q40.022 9.1875 39.772 8.8593 Q39.5377 8.5156 39.5377 7.9843 Q39.5377 7.1718 40.1939 6.7343 Q40.8658 6.2812 41.9595 6.2812 Q42.5377 6.2812 43.0377 6.3906 Q43.5533 6.5 44.0064 6.7031 L43.647 7.5468 Q43.2408 7.375 42.7877 7.2656 Q42.3502 7.1406 41.8814 7.1406 Q41.2252 7.1406 40.8814 7.3593 Q40.5533 7.5625 40.5533 7.9218 Q40.5533 8.1875 40.7095 8.375 Q40.8658 8.5625 41.2252 8.7343 Q41.5845 8.9062 42.2095 9.1406 Q42.8189 9.375 43.2408 9.625 Q43.6783 9.8593 43.897 10.2031 Q44.1314 10.5312 44.1314 11.0468 ZM47.8482 12.0781 Q48.0826 12.0781 48.3326 12.0468 Q48.5826 12 48.7388 11.9531 L48.7388 12.75 Q48.5826 12.8437 48.2701 12.8906 Q47.9576 12.9531 47.6607 12.9531 Q47.1607 12.9531 46.7232 12.7812 Q46.3013 12.5937 46.0357 12.1718 Q45.7857 11.7343 45.7857 10.9531 L45.7857 7.2187 L44.8638 7.2187 L44.8638 6.7031 L45.7857 6.2812 L46.2076 4.9218 L46.8326 4.9218 L46.8326 6.3906 L48.692 6.3906 L48.692 7.2187 L46.8326 7.2187 L46.8326 10.9375 Q46.8326 11.5156 47.1138 11.7968 Q47.3951 12.0781 47.8482 12.0781 Z" style="stroke:none; clip-path:url(#clipPath24);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><path d="M654.0936 81.002 A6 6 0 0 0 654.0936 69.002" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M654.0936 53.452 A6 6 0 0 0 654.0936 41.452" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="822.4122" x2="654.0936" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="17.0728"
+      /><line x1="654.0936" x2="654.0936" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="41.452"
+      /><line x1="654.0936" x2="654.0936" y1="53.452" style="fill:none; clip-path:url(#clipPath2);" y2="69.002"
+      /><line x1="654.0936" x2="654.0936" y1="81.002" style="fill:none; clip-path:url(#clipPath2);" y2="119.0737"
+      /><line x1="654.0936" x2="582.5701" y1="119.0737" style="fill:none; clip-path:url(#clipPath2);" y2="119.0737"
+      /><line x1="822.4122" x2="812.0199" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="23.0728"
+      /><line x1="822.4122" x2="812.0199" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="11.0728"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="429.0544" y="-153.371" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="429.0544" y="-153.371" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="810.9122" x2="703.9024" y1="-166.5151" style="fill:none; clip-path:url(#clipPath2);" y2="-166.5151"
+      /><line x1="703.9024" x2="703.9024" y1="-166.5151" style="fill:none; clip-path:url(#clipPath2);" y2="-130.0322"
+      /><line x1="703.9024" x2="576.0145" y1="-130.0322" style="fill:none; clip-path:url(#clipPath2);" y2="-130.0322"
+      /><line x1="810.9122" x2="800.5199" y1="-166.5151" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-160.5151"
+      /><line x1="810.9122" x2="800.5199" y1="-166.5151" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-172.5151"
+      /><path d="M654.0936 -18.0081 A6 6 0 0 0 654.0936 -30.0081" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="822.4122" x2="654.0936" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="17.0728"
+      /><line x1="654.0936" x2="654.0936" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="-18.0081"
+      /><line x1="654.0936" x2="654.0936" y1="-30.0081" style="fill:none; clip-path:url(#clipPath2);" y2="-52.3213"
+      /><line x1="654.0936" x2="514.3802" y1="-52.3213" style="fill:none; clip-path:url(#clipPath2);" y2="-52.3213"
+      /><line x1="514.3802" x2="514.3802" y1="-52.3213" style="fill:none; clip-path:url(#clipPath2);" y2="-90.3554"
+      /><line x1="822.4122" x2="812.0199" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="23.0728"
+      /><line x1="822.4122" x2="812.0199" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="11.0728"
+      /><line x1="813.4122" x2="703.9024" y1="303.9326" style="fill:none; clip-path:url(#clipPath2);" y2="303.9326"
+      /><line x1="703.9024" x2="703.9024" y1="303.9326" style="fill:none; clip-path:url(#clipPath2);" y2="150.1547"
+      /><line x1="703.9024" x2="582.5701" y1="150.1547" style="fill:none; clip-path:url(#clipPath2);" y2="150.1547"
+      /><line x1="813.4122" x2="803.0199" y1="303.9326" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="309.9326"
+      /><line x1="813.4122" x2="803.0199" y1="303.9326" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="297.9326"
+      /><line x1="806.0037" x2="698.6704" y1="-74.7992" style="fill:none; clip-path:url(#clipPath2);" y2="-74.7992"
+      /><line x1="698.6704" x2="698.6704" y1="-74.7992" style="fill:none; clip-path:url(#clipPath2);" y2="-114.6995"
+      /><line x1="698.6704" x2="576.0145" y1="-114.6995" style="fill:none; clip-path:url(#clipPath2);" y2="-114.6995"
+      /><line x1="806.0037" x2="795.6114" y1="-74.7992" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-68.7992"
+      /><line x1="806.0037" x2="795.6114" y1="-74.7992" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-80.7992"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="458.3014" y="-207.0205" width="123.2686" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="458.3014" y="-207.0205" width="123.2686" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="563.5701" y="-201.0205" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="563.5701" y="-201.0205" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="561.5701" y="-193.0205" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="561.5701" y="-193.0205" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="561.5701" y="-198.0205" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="561.5701" y="-198.0205" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(468.3014,-189.0205)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath25);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(476.0655,-186.6764)"
+    ><path d="M2.0781 6.3906 Q2.0781 6.8593 2.0156 7.2812 L2.0938 7.2812 Q2.4062 6.7968 2.9375 6.5468 Q3.4688 6.2812 4.0938 6.2812 Q5.2656 6.2812 5.8438 6.8437 Q6.4375 7.4062 6.4375 8.6406 L6.4375 12.8281 L5.4062 12.8281 L5.4062 8.7187 Q5.4062 7.1718 3.9531 7.1718 Q2.875 7.1718 2.4688 7.7812 Q2.0781 8.375 2.0781 9.5 L2.0781 12.8281 L1.0156 12.8281 L1.0156 3.7031 L2.0781 3.7031 L2.0781 6.3906 ZM14.0254 9.5937 Q14.0254 11.2031 13.2129 12.0781 Q12.4004 12.9531 11.0254 12.9531 Q10.1817 12.9531 9.5098 12.5625 Q8.8379 12.1718 8.4473 11.4218 Q8.0723 10.6718 8.0723 9.5937 Q8.0723 8 8.8692 7.1406 Q9.6817 6.2812 11.0567 6.2812 Q11.9473 6.2812 12.6035 6.6718 Q13.2754 7.0625 13.6504 7.7968 Q14.0254 8.5312 14.0254 9.5937 ZM9.166 9.5937 Q9.166 10.7343 9.6192 11.4062 Q10.0723 12.0781 11.0567 12.0781 Q12.0254 12.0781 12.4785 11.4062 Q12.9317 10.7343 12.9317 9.5937 Q12.9317 8.4531 12.4785 7.8125 Q12.0254 7.1718 11.041 7.1718 Q10.0567 7.1718 9.6035 7.8125 Q9.166 8.4531 9.166 9.5937 ZM17.848 12.0781 Q18.0824 12.0781 18.3324 12.0468 Q18.5824 12 18.7386 11.9531 L18.7386 12.75 Q18.5824 12.8437 18.2699 12.8906 Q17.9574 12.9531 17.6605 12.9531 Q17.1605 12.9531 16.723 12.7812 Q16.3011 12.5937 16.0355 12.1718 Q15.7855 11.7343 15.7855 10.9531 L15.7855 7.2187 L14.8636 7.2187 L14.8636 6.7031 L15.7855 6.2812 L16.2074 4.9218 L16.8324 4.9218 L16.8324 6.3906 L18.6917 6.3906 L18.6917 7.2187 L16.8324 7.2187 L16.8324 10.9375 Q16.8324 11.5156 17.1136 11.7968 Q17.3949 12.0781 17.848 12.0781 ZM22.5081 6.2812 Q23.3363 6.2812 23.93 6.6406 Q24.5238 7 24.8363 7.6562 Q25.1644 8.2968 25.1644 9.1875 L25.1644 9.8125 L20.7581 9.8125 Q20.7894 10.9062 21.3206 11.4843 Q21.8519 12.0468 22.805 12.0468 Q23.43 12.0468 23.8988 11.9375 Q24.3675 11.8125 24.8831 11.6093 L24.8831 12.5312 Q24.3831 12.75 23.8988 12.8437 Q23.43 12.9531 22.7581 12.9531 Q21.8519 12.9531 21.1488 12.5781 Q20.4456 12.2031 20.055 11.4687 Q19.6644 10.7343 19.6644 9.6562 Q19.6644 8.6093 20.0238 7.8593 Q20.3831 7.0937 21.0238 6.6875 Q21.6644 6.2812 22.5081 6.2812 ZM22.4925 7.1406 Q21.7425 7.1406 21.305 7.625 Q20.8675 8.1093 20.7894 8.9687 L24.055 8.9687 Q24.055 8.1562 23.68 7.6562 Q23.305 7.1406 22.4925 7.1406 ZM27.8543 12.8281 L26.7918 12.8281 L26.7918 3.7031 L27.8543 3.7031 L27.8543 12.8281 ZM29.3566 10.0781 L29.3566 9.1406 L32.2628 9.1406 L32.2628 10.0781 L29.3566 10.0781 ZM36.7519 6.2812 Q36.9394 6.2812 37.1425 6.2968 Q37.3612 6.3125 37.5175 6.3437 L37.3769 7.3125 Q37.2206 7.2812 37.0331 7.2656 Q36.8456 7.2343 36.6894 7.2343 Q36.1894 7.2343 35.7519 7.5156 Q35.33 7.7812 35.0644 8.2656 Q34.8144 8.75 34.8144 9.3906 L34.8144 12.8281 L33.7519 12.8281 L33.7519 6.3906 L34.6269 6.3906 L34.7362 7.5781 L34.7831 7.5781 Q35.0956 7.0468 35.58 6.6718 Q36.08 6.2812 36.7519 6.2812 ZM41.1923 6.2812 Q42.0204 6.2812 42.6142 6.6406 Q43.2079 7 43.5204 7.6562 Q43.8485 8.2968 43.8485 9.1875 L43.8485 9.8125 L39.4423 9.8125 Q39.4735 10.9062 40.0048 11.4843 Q40.536 12.0468 41.4892 12.0468 Q42.1142 12.0468 42.5829 11.9375 Q43.0517 11.8125 43.5673 11.6093 L43.5673 12.5312 Q43.0673 12.75 42.5829 12.8437 Q42.1142 12.9531 41.4423 12.9531 Q40.536 12.9531 39.8329 12.5781 Q39.1298 12.2031 38.7392 11.4687 Q38.3485 10.7343 38.3485 9.6562 Q38.3485 8.6093 38.7079 7.8593 Q39.0673 7.0937 39.7079 6.6875 Q40.3485 6.2812 41.1923 6.2812 ZM41.1767 7.1406 Q40.4267 7.1406 39.9892 7.625 Q39.5517 8.1093 39.4735 8.9687 L42.7392 8.9687 Q42.7392 8.1562 42.3642 7.6562 Q41.9892 7.1406 41.1767 7.1406 ZM47.7572 6.2812 Q48.3978 6.2812 48.8978 6.5156 Q49.4135 6.75 49.7728 7.25 L49.8353 7.25 L49.976 6.3906 L50.8197 6.3906 L50.8197 12.9375 Q50.8197 14.3125 50.1166 15 Q49.4135 15.7031 47.9447 15.7031 Q46.5228 15.7031 45.6166 15.2968 L45.6166 14.3281 Q46.5697 14.8281 48.0072 14.8281 Q48.8353 14.8281 49.3041 14.3437 Q49.7728 13.8593 49.7728 13.0156 L49.7728 12.7656 Q49.7728 12.625 49.7885 12.3593 Q49.8041 12.0781 49.8197 11.9687 L49.7572 11.9687 Q49.1166 12.9531 47.7728 12.9531 Q46.5228 12.9531 45.8197 12.0781 Q45.1166 11.2031 45.1166 9.625 Q45.1166 8.0937 45.8197 7.1875 Q46.5228 6.2812 47.7572 6.2812 ZM47.8978 7.1718 Q47.101 7.1718 46.6478 7.8125 Q46.2103 8.4531 46.2103 9.6406 Q46.2103 10.8281 46.6478 11.4531 Q47.0853 12.0781 47.9291 12.0781 Q48.8978 12.0781 49.3353 11.5625 Q49.7885 11.0468 49.7885 9.875 L49.7885 9.625 Q49.7885 8.2968 49.3353 7.7343 Q48.8822 7.1718 47.8978 7.1718 ZM53.4029 3.9843 Q53.6373 3.9843 53.8248 4.1562 Q54.0123 4.3125 54.0123 4.6562 Q54.0123 4.9843 53.8248 5.1562 Q53.6373 5.3281 53.4029 5.3281 Q53.1373 5.3281 52.9498 5.1562 Q52.7779 4.9843 52.7779 4.6562 Q52.7779 4.3125 52.9498 4.1562 Q53.1373 3.9843 53.4029 3.9843 ZM53.9185 6.3906 L53.9185 12.8281 L52.856 12.8281 L52.856 6.3906 L53.9185 6.3906 ZM60.1395 11.0468 Q60.1395 11.9843 59.4364 12.4687 Q58.7489 12.9531 57.577 12.9531 Q56.9052 12.9531 56.4208 12.8437 Q55.9364 12.7343 55.5614 12.5468 L55.5614 11.5781 Q55.952 11.7656 56.4833 11.9375 Q57.0302 12.0937 57.5927 12.0937 Q58.4052 12.0937 58.7645 11.8437 Q59.1239 11.5781 59.1239 11.1406 Q59.1239 10.9062 58.9833 10.7187 Q58.8583 10.5312 58.5145 10.3437 Q58.1708 10.1406 57.5458 9.9062 Q56.9208 9.6562 56.4677 9.4218 Q56.0302 9.1875 55.7802 8.8593 Q55.5458 8.5156 55.5458 7.9843 Q55.5458 7.1718 56.202 6.7343 Q56.8739 6.2812 57.9677 6.2812 Q58.5458 6.2812 59.0458 6.3906 Q59.5614 6.5 60.0145 6.7031 L59.6552 7.5468 Q59.2489 7.375 58.7958 7.2656 Q58.3583 7.1406 57.8895 7.1406 Q57.2333 7.1406 56.8895 7.3593 Q56.5614 7.5625 56.5614 7.9218 Q56.5614 8.1875 56.7177 8.375 Q56.8739 8.5625 57.2333 8.7343 Q57.5927 8.9062 58.2177 9.1406 Q58.827 9.375 59.2489 9.625 Q59.6864 9.8593 59.9052 10.2031 Q60.1395 10.5312 60.1395 11.0468 ZM63.8563 12.0781 Q64.0907 12.0781 64.3407 12.0468 Q64.5907 12 64.7469 11.9531 L64.7469 12.75 Q64.5907 12.8437 64.2782 12.8906 Q63.9657 12.9531 63.6688 12.9531 Q63.1688 12.9531 62.7313 12.7812 Q62.3094 12.5937 62.0438 12.1718 Q61.7938 11.7343 61.7938 10.9531 L61.7938 7.2187 L60.8719 7.2187 L60.8719 6.7031 L61.7938 6.2812 L62.2157 4.9218 L62.8407 4.9218 L62.8407 6.3906 L64.7001 6.3906 L64.7001 7.2187 L62.8407 7.2187 L62.8407 10.9375 Q62.8407 11.5156 63.1219 11.7968 Q63.4032 12.0781 63.8563 12.0781 ZM68.5165 6.2812 Q69.3446 6.2812 69.9384 6.6406 Q70.5321 7 70.8446 7.6562 Q71.1727 8.2968 71.1727 9.1875 L71.1727 9.8125 L66.7665 9.8125 Q66.7977 10.9062 67.329 11.4843 Q67.8602 12.0468 68.8134 12.0468 Q69.4384 12.0468 69.9071 11.9375 Q70.3759 11.8125 70.8915 11.6093 L70.8915 12.5312 Q70.3915 12.75 69.9071 12.8437 Q69.4384 12.9531 68.7665 12.9531 Q67.8602 12.9531 67.1571 12.5781 Q66.454 12.2031 66.0634 11.4687 Q65.6727 10.7343 65.6727 9.6562 Q65.6727 8.6093 66.0321 7.8593 Q66.3915 7.0937 67.0321 6.6875 Q67.6727 6.2812 68.5165 6.2812 ZM68.5009 7.1406 Q67.7509 7.1406 67.3134 7.625 Q66.8759 8.1093 66.7977 8.9687 L70.0634 8.9687 Q70.0634 8.1562 69.6884 7.6562 Q69.3134 7.1406 68.5009 7.1406 ZM75.8002 6.2812 Q75.9877 6.2812 76.1908 6.2968 Q76.4095 6.3125 76.5658 6.3437 L76.4252 7.3125 Q76.2689 7.2812 76.0814 7.2656 Q75.8939 7.2343 75.7377 7.2343 Q75.2377 7.2343 74.8002 7.5156 Q74.3783 7.7812 74.1127 8.2656 Q73.8627 8.75 73.8627 9.3906 L73.8627 12.8281 L72.8002 12.8281 L72.8002 6.3906 L73.6752 6.3906 L73.7845 7.5781 L73.8314 7.5781 Q74.1439 7.0468 74.6283 6.6718 Q75.1283 6.2812 75.8002 6.2812 Z" style="stroke:none; clip-path:url(#clipPath26);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="810.9122" x2="696.2411" y1="-166.5151" style="fill:none; clip-path:url(#clipPath2);" y2="-166.5151"
+      /><line x1="696.2411" x2="696.2411" y1="-166.5151" style="fill:none; clip-path:url(#clipPath2);" y2="-182.6764"
+      /><line x1="696.2411" x2="581.5701" y1="-182.6764" style="fill:none; clip-path:url(#clipPath2);" y2="-182.6764"
+      /><line x1="810.9122" x2="800.5199" y1="-166.5151" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-160.5151"
+      /><line x1="810.9122" x2="800.5199" y1="-166.5151" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-172.5151"
+      /><path d="M983.4112 223.5185 A6 6 0 0 0 983.4112 211.5185" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M983.4112 123.2118 A6 6 0 0 0 983.4112 111.2118" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="930.4122" x2="983.4112" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="17.0728"
+      /><line x1="983.4112" x2="983.4112" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="111.2118"
+      /><line x1="983.4112" x2="983.4112" y1="123.2118" style="fill:none; clip-path:url(#clipPath2);" y2="211.5185"
+      /><line x1="983.4112" x2="983.4112" y1="223.5185" style="fill:none; clip-path:url(#clipPath2);" y2="294.4105"
+      /><line x1="983.4112" x2="939.4122" y1="294.4105" style="fill:none; clip-path:url(#clipPath2);" y2="294.4105"
+      /><line x1="930.4122" x2="940.8045" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="11.0728"
+      /><line x1="930.4122" x2="940.8045" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="23.0728"
+      /><path d="M983.4112 123.2118 A6 6 0 0 0 983.4112 111.2118" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="930.4122" x2="983.4112" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="17.0728"
+      /><line x1="983.4112" x2="983.4112" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="111.2118"
+      /><line x1="983.4112" x2="983.4112" y1="123.2118" style="fill:none; clip-path:url(#clipPath2);" y2="204.4151"
+      /><line x1="983.4112" x2="950.4122" y1="204.4151" style="fill:none; clip-path:url(#clipPath2);" y2="204.4151"
+      /><line x1="930.4122" x2="940.8045" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="11.0728"
+      /><line x1="930.4122" x2="940.8045" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="23.0728"
+      /><path d="M983.4112 -152.1573 A6 6 0 0 0 983.4112 -164.1573" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="930.4122" x2="983.4112" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="17.0728"
+      /><line x1="983.4112" x2="983.4112" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="-152.1573"
+      /><line x1="983.4112" x2="983.4112" y1="-164.1573" style="fill:none; clip-path:url(#clipPath2);" y2="-174.709"
+      /><line x1="983.4112" x2="941.9122" y1="-174.709" style="fill:none; clip-path:url(#clipPath2);" y2="-174.709"
+      /><line x1="930.4122" x2="940.8045" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="11.0728"
+      /><line x1="930.4122" x2="940.8045" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="23.0728"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="416.1421" y="224.2762" width="199.856" style="clip-path:url(#clipPath2); stroke:none;" height="196.5092"
+      /><rect x="416.1421" y="224.2762" width="199.856" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="196.5092"
+      /><rect x="597.998" y="230.2762" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="597.998" y="230.2762" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="595.998" y="238.2762" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="595.998" y="238.2762" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="595.998" y="233.2762" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="595.998" y="233.2762" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(475.2718,242.2762)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM21.8062 -6.5469 Q22.9 -6.5469 23.4312 -5.9844 Q23.9781 -5.4375 23.9781 -4.1875 L23.9781 0 L22.9312 0 L22.9312 -4.1406 Q22.9312 -5.6562 21.6187 -5.6562 Q20.6812 -5.6562 20.275 -5.1094 Q19.8843 -4.5781 19.8843 -3.5469 L19.8843 0 L18.8375 0 L18.8375 -4.1406 Q18.8375 -5.6562 17.525 -5.6562 Q16.5406 -5.6562 16.1656 -5.0625 Q15.8062 -4.4688 15.8062 -3.3438 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.6031 -6.4375 L15.7593 -5.5625 L15.8218 -5.5625 Q16.1187 -6.0625 16.6187 -6.2969 Q17.1343 -6.5469 17.7125 -6.5469 Q19.2281 -6.5469 19.6812 -5.4688 L19.7437 -5.4688 Q20.0718 -6.0312 20.6187 -6.2812 Q21.1812 -6.5469 21.8062 -6.5469 ZM31.5575 -3.2344 Q31.5575 -1.625 30.745 -0.75 Q29.9325 0.125 28.5575 0.125 Q27.7138 0.125 27.0419 -0.2656 Q26.37 -0.6562 25.9794 -1.4062 Q25.6044 -2.1562 25.6044 -3.2344 Q25.6044 -4.8281 26.4013 -5.6875 Q27.2138 -6.5469 28.5888 -6.5469 Q29.4794 -6.5469 30.1357 -6.1562 Q30.8075 -5.7656 31.1825 -5.0312 Q31.5575 -4.2969 31.5575 -3.2344 ZM26.6982 -3.2344 Q26.6982 -2.0938 27.1513 -1.4219 Q27.6044 -0.75 28.5888 -0.75 Q29.5575 -0.75 30.0107 -1.4219 Q30.4638 -2.0938 30.4638 -3.2344 Q30.4638 -4.375 30.0107 -5.0156 Q29.5575 -5.6562 28.5732 -5.6562 Q27.5888 -5.6562 27.1357 -5.0156 Q26.6982 -4.375 26.6982 -3.2344 ZM35.5051 0.125 Q34.302 0.125 33.5832 -0.7031 Q32.8645 -1.5469 32.8645 -3.2031 Q32.8645 -4.8594 33.5832 -5.7031 Q34.3176 -6.5469 35.5207 -6.5469 Q36.2707 -6.5469 36.7395 -6.2656 Q37.2082 -6 37.5051 -5.6094 L37.5832 -5.6094 Q37.5676 -5.7656 37.5363 -6.0625 Q37.5051 -6.375 37.5051 -6.5469 L37.5051 -9.125 L38.5676 -9.125 L38.5676 0 L37.7238 0 L37.5676 -0.8594 L37.5051 -0.8594 Q37.2238 -0.4531 36.7395 -0.1562 Q36.2707 0.125 35.5051 0.125 ZM35.677 -0.75 Q36.6926 -0.75 37.0988 -1.3125 Q37.5207 -1.875 37.5207 -3 L37.5207 -3.1875 Q37.5207 -4.3906 37.1301 -5.0312 Q36.7395 -5.6719 35.6613 -5.6719 Q34.8176 -5.6719 34.3801 -4.9844 Q33.9582 -4.3125 33.9582 -3.1875 Q33.9582 -2.0312 34.3801 -1.3906 Q34.8176 -0.75 35.677 -0.75 ZM45.9789 -6.4375 L45.9789 0 L45.1195 0 L44.9633 -0.8594 L44.9164 -0.8594 Q44.6039 -0.3438 44.0414 -0.1094 Q43.4945 0.125 42.8695 0.125 Q41.7133 0.125 41.1195 -0.4375 Q40.5414 -1 40.5414 -2.2188 L40.5414 -6.4375 L41.6039 -6.4375 L41.6039 -2.2969 Q41.6039 -0.75 43.0258 -0.75 Q44.1039 -0.75 44.5101 -1.3438 Q44.932 -1.9531 44.932 -3.0781 L44.932 -6.4375 L45.9789 -6.4375 ZM49.0824 0 L48.0199 0 L48.0199 -9.125 L49.0824 -9.125 L49.0824 0 ZM53.6003 -6.5469 Q54.4285 -6.5469 55.0222 -6.1875 Q55.616 -5.8281 55.9285 -5.1719 Q56.2566 -4.5312 56.2566 -3.6406 L56.2566 -3.0156 L51.8503 -3.0156 Q51.8816 -1.9219 52.4128 -1.3438 Q52.9441 -0.7812 53.8972 -0.7812 Q54.5222 -0.7812 54.991 -0.8906 Q55.4597 -1.0156 55.9753 -1.2188 L55.9753 -0.2969 Q55.4753 -0.0781 54.991 0.0156 Q54.5222 0.125 53.8503 0.125 Q52.9441 0.125 52.241 -0.25 Q51.5378 -0.625 51.1472 -1.3594 Q50.7566 -2.0938 50.7566 -3.1719 Q50.7566 -4.2188 51.116 -4.9688 Q51.4753 -5.7344 52.116 -6.1406 Q52.7566 -6.5469 53.6003 -6.5469 ZM53.5847 -5.6875 Q52.8347 -5.6875 52.3972 -5.2031 Q51.9597 -4.7188 51.8816 -3.8594 L55.1472 -3.8594 Q55.1472 -4.6719 54.7722 -5.1719 Q54.3972 -5.6875 53.5847 -5.6875 ZM57.4621 -2.3281 L61.9934 -4.2188 L57.4621 -6.3594 L57.4621 -7.2969 L63.1184 -4.4688 L63.1184 -3.875 L57.4621 -1.3906 L57.4621 -2.3281 ZM64.3262 -2.3281 L68.8574 -4.2188 L64.3262 -6.3594 L64.3262 -7.2969 L69.9824 -4.4688 L69.9824 -3.875 L64.3262 -1.3906 L64.3262 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath27);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(497.0701,244.6203)"
+    ><path d="M7.6875 9.7968 Q7.6875 10.6875 7.3125 11.4062 Q6.9531 12.125 6.2188 12.5468 Q5.4844 12.9531 4.3438 12.9531 Q2.75 12.9531 1.9062 12.0781 Q1.0781 11.2031 1.0781 9.7812 L1.0781 4.2656 L2.1562 4.2656 L2.1562 9.8125 Q2.1562 10.8593 2.7188 11.4375 Q3.2812 12.0156 4.4062 12.0156 Q5.5625 12.0156 6.0781 11.4062 Q6.6094 10.7812 6.6094 9.7968 L6.6094 4.2656 L7.6875 4.2656 L7.6875 9.7968 ZM13.9752 11.0468 Q13.9752 11.9843 13.2721 12.4687 Q12.5846 12.9531 11.4127 12.9531 Q10.7408 12.9531 10.2564 12.8437 Q9.7721 12.7343 9.3971 12.5468 L9.3971 11.5781 Q9.7877 11.7656 10.3189 11.9375 Q10.8658 12.0937 11.4283 12.0937 Q12.2408 12.0937 12.6002 11.8437 Q12.9596 11.5781 12.9596 11.1406 Q12.9596 10.9062 12.8189 10.7187 Q12.6939 10.5312 12.3502 10.3437 Q12.0064 10.1406 11.3814 9.9062 Q10.7564 9.6562 10.3033 9.4218 Q9.8658 9.1875 9.6158 8.8593 Q9.3814 8.5156 9.3814 7.9843 Q9.3814 7.1718 10.0377 6.7343 Q10.7096 6.2812 11.8033 6.2812 Q12.3814 6.2812 12.8814 6.3906 Q13.3971 6.5 13.8502 6.7031 L13.4908 7.5468 Q13.0846 7.375 12.6314 7.2656 Q12.1939 7.1406 11.7252 7.1406 Q11.0689 7.1406 10.7252 7.3593 Q10.3971 7.5625 10.3971 7.9218 Q10.3971 8.1875 10.5533 8.375 Q10.7096 8.5625 11.0689 8.7343 Q11.4283 8.9062 12.0533 9.1406 Q12.6627 9.375 13.0846 9.625 Q13.5221 9.8593 13.7408 10.2031 Q13.9752 10.5312 13.9752 11.0468 ZM18.0201 6.2812 Q18.8482 6.2812 19.442 6.6406 Q20.0357 7 20.3482 7.6562 Q20.6764 8.2968 20.6764 9.1875 L20.6764 9.8125 L16.2701 9.8125 Q16.3014 10.9062 16.8326 11.4843 Q17.3639 12.0468 18.317 12.0468 Q18.942 12.0468 19.4107 11.9375 Q19.8795 11.8125 20.3951 11.6093 L20.3951 12.5312 Q19.8951 12.75 19.4107 12.8437 Q18.942 12.9531 18.2701 12.9531 Q17.3639 12.9531 16.6607 12.5781 Q15.9576 12.2031 15.567 11.4687 Q15.1764 10.7343 15.1764 9.6562 Q15.1764 8.6093 15.5357 7.8593 Q15.8951 7.0937 16.5357 6.6875 Q17.1764 6.2812 18.0201 6.2812 ZM18.0045 7.1406 Q17.2545 7.1406 16.817 7.625 Q16.3795 8.1093 16.3014 8.9687 L19.567 8.9687 Q19.567 8.1562 19.192 7.6562 Q18.817 7.1406 18.0045 7.1406 ZM25.3038 6.2812 Q25.4913 6.2812 25.6944 6.2968 Q25.9132 6.3125 26.0694 6.3437 L25.9288 7.3125 Q25.7725 7.2812 25.585 7.2656 Q25.3975 7.2343 25.2413 7.2343 Q24.7413 7.2343 24.3038 7.5156 Q23.8819 7.7812 23.6163 8.2656 Q23.3663 8.75 23.3663 9.3906 L23.3663 12.8281 L22.3038 12.8281 L22.3038 6.3906 L23.1788 6.3906 L23.2882 7.5781 L23.335 7.5781 Q23.6475 7.0468 24.1319 6.6718 Q24.6319 6.2812 25.3038 6.2812 Z" style="stroke:none; clip-path:url(#clipPath28);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="409.1421" y="301.6147" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="409.1421" y="301.6147" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><rect x="436.1836" y="270.8744" width="159.7729" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="436.1836" y="270.8744" width="159.7729" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="577.9565" y="276.8744" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="577.9565" y="276.8744" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="575.9565" y="284.8744" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="575.9565" y="284.8744" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="575.9565" y="279.8744" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="575.9565" y="279.8744" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(464.4357,288.8744)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath29);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(449.2976,291.2185)"
+    ><path d="M7.6875 9.7968 Q7.6875 10.6875 7.3125 11.4062 Q6.9531 12.125 6.2188 12.5468 Q5.4844 12.9531 4.3438 12.9531 Q2.75 12.9531 1.9062 12.0781 Q1.0781 11.2031 1.0781 9.7812 L1.0781 4.2656 L2.1562 4.2656 L2.1562 9.8125 Q2.1562 10.8593 2.7188 11.4375 Q3.2812 12.0156 4.4062 12.0156 Q5.5625 12.0156 6.0781 11.4062 Q6.6094 10.7812 6.6094 9.7968 L6.6094 4.2656 L7.6875 4.2656 L7.6875 9.7968 ZM13.9752 11.0468 Q13.9752 11.9843 13.2721 12.4687 Q12.5846 12.9531 11.4127 12.9531 Q10.7408 12.9531 10.2564 12.8437 Q9.7721 12.7343 9.3971 12.5468 L9.3971 11.5781 Q9.7877 11.7656 10.3189 11.9375 Q10.8658 12.0937 11.4283 12.0937 Q12.2408 12.0937 12.6002 11.8437 Q12.9596 11.5781 12.9596 11.1406 Q12.9596 10.9062 12.8189 10.7187 Q12.6939 10.5312 12.3502 10.3437 Q12.0064 10.1406 11.3814 9.9062 Q10.7564 9.6562 10.3033 9.4218 Q9.8658 9.1875 9.6158 8.8593 Q9.3814 8.5156 9.3814 7.9843 Q9.3814 7.1718 10.0377 6.7343 Q10.7096 6.2812 11.8033 6.2812 Q12.3814 6.2812 12.8814 6.3906 Q13.3971 6.5 13.8502 6.7031 L13.4908 7.5468 Q13.0846 7.375 12.6314 7.2656 Q12.1939 7.1406 11.7252 7.1406 Q11.0689 7.1406 10.7252 7.3593 Q10.3971 7.5625 10.3971 7.9218 Q10.3971 8.1875 10.5533 8.375 Q10.7096 8.5625 11.0689 8.7343 Q11.4283 8.9062 12.0533 9.1406 Q12.6627 9.375 13.0846 9.625 Q13.5221 9.8593 13.7408 10.2031 Q13.9752 10.5312 13.9752 11.0468 ZM18.0201 6.2812 Q18.8482 6.2812 19.442 6.6406 Q20.0357 7 20.3482 7.6562 Q20.6764 8.2968 20.6764 9.1875 L20.6764 9.8125 L16.2701 9.8125 Q16.3014 10.9062 16.8326 11.4843 Q17.3639 12.0468 18.317 12.0468 Q18.942 12.0468 19.4107 11.9375 Q19.8795 11.8125 20.3951 11.6093 L20.3951 12.5312 Q19.8951 12.75 19.4107 12.8437 Q18.942 12.9531 18.2701 12.9531 Q17.3639 12.9531 16.6607 12.5781 Q15.9576 12.2031 15.567 11.4687 Q15.1764 10.7343 15.1764 9.6562 Q15.1764 8.6093 15.5357 7.8593 Q15.8951 7.0937 16.5357 6.6875 Q17.1764 6.2812 18.0201 6.2812 ZM18.0045 7.1406 Q17.2545 7.1406 16.817 7.625 Q16.3795 8.1093 16.3014 8.9687 L19.567 8.9687 Q19.567 8.1562 19.192 7.6562 Q18.817 7.1406 18.0045 7.1406 ZM25.3038 6.2812 Q25.4913 6.2812 25.6944 6.2968 Q25.9132 6.3125 26.0694 6.3437 L25.9288 7.3125 Q25.7725 7.2812 25.585 7.2656 Q25.3975 7.2343 25.2413 7.2343 Q24.7413 7.2343 24.3038 7.5156 Q23.8819 7.7812 23.6163 8.2656 Q23.3663 8.75 23.3663 9.3906 L23.3663 12.8281 L22.3038 12.8281 L22.3038 6.3906 L23.1788 6.3906 L23.2882 7.5781 L23.335 7.5781 Q23.6475 7.0468 24.1319 6.6718 Q24.6319 6.2812 25.3038 6.2812 ZM28.4942 12.8281 L27.4005 12.8281 L27.4005 4.2656 L32.1973 4.2656 L32.1973 5.2031 L28.4942 5.2031 L28.4942 8.25 L31.963 8.25 L31.963 9.1875 L28.4942 9.1875 L28.4942 12.8281 ZM39.0816 9.5937 Q39.0816 11.2031 38.2691 12.0781 Q37.4566 12.9531 36.0816 12.9531 Q35.2379 12.9531 34.566 12.5625 Q33.8941 12.1718 33.5035 11.4218 Q33.1285 10.6718 33.1285 9.5937 Q33.1285 8 33.9254 7.1406 Q34.7379 6.2812 36.1129 6.2812 Q37.0035 6.2812 37.6597 6.6718 Q38.3316 7.0625 38.7066 7.7968 Q39.0816 8.5312 39.0816 9.5937 ZM34.2222 9.5937 Q34.2222 10.7343 34.6754 11.4062 Q35.1285 12.0781 36.1129 12.0781 Q37.0816 12.0781 37.5347 11.4062 Q37.9879 10.7343 37.9879 9.5937 Q37.9879 8.4531 37.5347 7.8125 Q37.0816 7.1718 36.0972 7.1718 Q35.1129 7.1718 34.6597 7.8125 Q34.2222 8.4531 34.2222 9.5937 ZM43.7479 6.2812 Q43.9354 6.2812 44.1385 6.2968 Q44.3573 6.3125 44.5135 6.3437 L44.3729 7.3125 Q44.2167 7.2812 44.0292 7.2656 Q43.8417 7.2343 43.6854 7.2343 Q43.1854 7.2343 42.7479 7.5156 Q42.326 7.7812 42.0604 8.2656 Q41.8104 8.75 41.8104 9.3906 L41.8104 12.8281 L40.7479 12.8281 L40.7479 6.3906 L41.6229 6.3906 L41.7323 7.5781 L41.7792 7.5781 Q42.0917 7.0468 42.576 6.6718 Q43.076 6.2812 43.7479 6.2812 ZM52.7665 6.2812 Q53.8602 6.2812 54.3915 6.8437 Q54.9383 7.3906 54.9383 8.6406 L54.9383 12.8281 L53.8915 12.8281 L53.8915 8.6875 Q53.8915 7.1718 52.579 7.1718 Q51.6415 7.1718 51.2352 7.7187 Q50.8446 8.25 50.8446 9.2812 L50.8446 12.8281 L49.7977 12.8281 L49.7977 8.6875 Q49.7977 7.1718 48.4852 7.1718 Q47.5008 7.1718 47.1258 7.7656 Q46.7665 8.3593 46.7665 9.4843 L46.7665 12.8281 L45.704 12.8281 L45.704 6.3906 L46.5633 6.3906 L46.7196 7.2656 L46.7821 7.2656 Q47.079 6.7656 47.579 6.5312 Q48.0946 6.2812 48.6727 6.2812 Q50.1883 6.2812 50.6415 7.3593 L50.704 7.3593 Q51.0321 6.7968 51.579 6.5468 Q52.1415 6.2812 52.7665 6.2812 ZM60.7522 5.0937 Q59.3615 5.0937 58.5647 6.0156 Q57.7834 6.9375 57.7834 8.5468 Q57.7834 10.1406 58.5178 11.0781 Q59.2522 12 60.7365 12 Q61.299 12 61.799 11.9062 Q62.299 11.8125 62.7834 11.6718 L62.7834 12.5937 Q62.299 12.7812 61.7834 12.8593 Q61.2834 12.9531 60.5803 12.9531 Q59.2678 12.9531 58.3928 12.4218 Q57.5178 11.875 57.0803 10.875 Q56.6428 9.875 56.6428 8.5312 Q56.6428 7.2343 57.1115 6.25 Q57.5959 5.25 58.5178 4.7031 Q59.4397 4.1406 60.7522 4.1406 Q62.1115 4.1406 63.1272 4.6406 L62.6897 5.5625 Q62.299 5.375 61.799 5.2343 Q61.3147 5.0937 60.7522 5.0937 ZM70.1019 9.5937 Q70.1019 11.2031 69.2894 12.0781 Q68.4769 12.9531 67.1019 12.9531 Q66.2581 12.9531 65.5862 12.5625 Q64.9144 12.1718 64.5237 11.4218 Q64.1487 10.6718 64.1487 9.5937 Q64.1487 8 64.9456 7.1406 Q65.7581 6.2812 67.1331 6.2812 Q68.0237 6.2812 68.68 6.6718 Q69.3519 7.0625 69.7269 7.7968 Q70.1019 8.5312 70.1019 9.5937 ZM65.2425 9.5937 Q65.2425 10.7343 65.6956 11.4062 Q66.1487 12.0781 67.1331 12.0781 Q68.1019 12.0781 68.555 11.4062 Q69.0081 10.7343 69.0081 9.5937 Q69.0081 8.4531 68.555 7.8125 Q68.1019 7.1718 67.1175 7.1718 Q66.1331 7.1718 65.68 7.8125 Q65.2425 8.4531 65.2425 9.5937 ZM78.8307 6.2812 Q79.9244 6.2812 80.4557 6.8437 Q81.0025 7.3906 81.0025 8.6406 L81.0025 12.8281 L79.9557 12.8281 L79.9557 8.6875 Q79.9557 7.1718 78.6432 7.1718 Q77.7057 7.1718 77.2994 7.7187 Q76.9088 8.25 76.9088 9.2812 L76.9088 12.8281 L75.8619 12.8281 L75.8619 8.6875 Q75.8619 7.1718 74.5494 7.1718 Q73.565 7.1718 73.19 7.7656 Q72.8307 8.3593 72.8307 9.4843 L72.8307 12.8281 L71.7682 12.8281 L71.7682 6.3906 L72.6275 6.3906 L72.7838 7.2656 L72.8463 7.2656 Q73.1432 6.7656 73.6432 6.5312 Q74.1588 6.2812 74.7369 6.2812 Q76.2525 6.2812 76.7057 7.3593 L76.7682 7.3593 Q77.0963 6.7968 77.6432 6.5468 Q78.2057 6.2812 78.8307 6.2812 ZM86.0507 6.2812 Q87.2382 6.2812 87.957 7.1093 Q88.6914 7.9375 88.6914 9.5937 Q88.6914 11.25 87.957 12.1093 Q87.2382 12.9531 86.0351 12.9531 Q85.3007 12.9531 84.8164 12.6718 Q84.332 12.3906 84.0507 12.0156 L83.9726 12.0156 Q84.0039 12.2187 84.0195 12.5312 Q84.0507 12.8437 84.0507 13.0625 L84.0507 15.7031 L82.9882 15.7031 L82.9882 6.3906 L83.8632 6.3906 L84.0039 7.2656 L84.0507 7.2656 Q84.332 6.8593 84.8007 6.5781 Q85.2695 6.2812 86.0507 6.2812 ZM85.8632 7.1718 Q84.8789 7.1718 84.4726 7.7187 Q84.0664 8.2656 84.0507 9.3906 L84.0507 9.5937 Q84.0507 10.7812 84.4414 11.4375 Q84.832 12.0781 85.8789 12.0781 Q86.4726 12.0781 86.8476 11.75 Q87.2226 11.4218 87.4101 10.875 Q87.5976 10.3125 87.5976 9.5937 Q87.5976 8.4843 87.1757 7.8281 Q86.7539 7.1718 85.8632 7.1718 ZM95.962 9.5937 Q95.962 11.2031 95.1495 12.0781 Q94.337 12.9531 92.962 12.9531 Q92.1183 12.9531 91.4464 12.5625 Q90.7745 12.1718 90.3839 11.4218 Q90.0089 10.6718 90.0089 9.5937 Q90.0089 8 90.8058 7.1406 Q91.6183 6.2812 92.9933 6.2812 Q93.8839 6.2812 94.5402 6.6718 Q95.212 7.0625 95.587 7.7968 Q95.962 8.5312 95.962 9.5937 ZM91.1027 9.5937 Q91.1027 10.7343 91.5558 11.4062 Q92.0089 12.0781 92.9933 12.0781 Q93.962 12.0781 94.4152 11.4062 Q94.8683 10.7343 94.8683 9.5937 Q94.8683 8.4531 94.4152 7.8125 Q93.962 7.1718 92.9777 7.1718 Q91.9933 7.1718 91.5402 7.8125 Q91.1027 8.4531 91.1027 9.5937 ZM100.7221 6.2812 Q101.8783 6.2812 102.4565 6.8437 Q103.0502 7.3906 103.0502 8.6406 L103.0502 12.8281 L102.019 12.8281 L102.019 8.7187 Q102.019 7.1718 100.5658 7.1718 Q99.5033 7.1718 99.0971 7.7656 Q98.6908 8.3593 98.6908 9.4843 L98.6908 12.8281 L97.6283 12.8281 L97.6283 6.3906 L98.4877 6.3906 L98.644 7.2656 L98.7065 7.2656 Q99.019 6.7656 99.5658 6.5312 Q100.1127 6.2812 100.7221 6.2812 ZM107.5288 6.2812 Q108.3569 6.2812 108.9506 6.6406 Q109.5444 7 109.8569 7.6562 Q110.185 8.2968 110.185 9.1875 L110.185 9.8125 L105.7788 9.8125 Q105.81 10.9062 106.3413 11.4843 Q106.8725 12.0468 107.8256 12.0468 Q108.4506 12.0468 108.9194 11.9375 Q109.3881 11.8125 109.9038 11.6093 L109.9038 12.5312 Q109.4038 12.75 108.9194 12.8437 Q108.4506 12.9531 107.7788 12.9531 Q106.8725 12.9531 106.1694 12.5781 Q105.4663 12.2031 105.0756 11.4687 Q104.685 10.7343 104.685 9.6562 Q104.685 8.6093 105.0444 7.8593 Q105.4038 7.0937 106.0444 6.6875 Q106.685 6.2812 107.5288 6.2812 ZM107.5131 7.1406 Q106.7631 7.1406 106.3256 7.625 Q105.8881 8.1093 105.81 8.9687 L109.0756 8.9687 Q109.0756 8.1562 108.7006 7.6562 Q108.3256 7.1406 107.5131 7.1406 ZM114.9062 6.2812 Q116.0624 6.2812 116.6406 6.8437 Q117.2343 7.3906 117.2343 8.6406 L117.2343 12.8281 L116.2031 12.8281 L116.2031 8.7187 Q116.2031 7.1718 114.7499 7.1718 Q113.6874 7.1718 113.2812 7.7656 Q112.8749 8.3593 112.8749 9.4843 L112.8749 12.8281 L111.8124 12.8281 L111.8124 6.3906 L112.6718 6.3906 L112.8281 7.2656 L112.8906 7.2656 Q113.2031 6.7656 113.7499 6.5312 Q114.2968 6.2812 114.9062 6.2812 ZM121.3847 12.0781 Q121.6191 12.0781 121.8691 12.0468 Q122.1191 12 122.2754 11.9531 L122.2754 12.75 Q122.1191 12.8437 121.8066 12.8906 Q121.4941 12.9531 121.1972 12.9531 Q120.6972 12.9531 120.2597 12.7812 Q119.8379 12.5937 119.5722 12.1718 Q119.3222 11.7343 119.3222 10.9531 L119.3222 7.2187 L118.4004 7.2187 L118.4004 6.7031 L119.3222 6.2812 L119.7441 4.9218 L120.3691 4.9218 L120.3691 6.3906 L122.2285 6.3906 L122.2285 7.2187 L120.3691 7.2187 L120.3691 10.9375 Q120.3691 11.5156 120.6504 11.7968 Q120.9316 12.0781 121.3847 12.0781 Z" style="stroke:none; clip-path:url(#clipPath30);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="409.1421" y="330.413" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="409.1421" y="330.413" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><path d="M654.0936 156.1547 A6 6 0 0 0 654.0936 144.1547" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M654.0936 142.6412 A6 6 0 0 0 654.0936 130.6412" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M654.0936 81.002 A6 6 0 0 0 654.0936 69.002" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M654.0936 53.452 A6 6 0 0 0 654.0936 41.452" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="822.4122" x2="654.0936" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="17.0728"
+      /><line x1="654.0936" x2="654.0936" y1="17.0728" style="fill:none; clip-path:url(#clipPath2);" y2="41.452"
+      /><line x1="654.0936" x2="654.0936" y1="53.452" style="fill:none; clip-path:url(#clipPath2);" y2="69.002"
+      /><line x1="654.0936" x2="654.0936" y1="81.002" style="fill:none; clip-path:url(#clipPath2);" y2="130.6412"
+      /><line x1="654.0936" x2="654.0936" y1="142.6412" style="fill:none; clip-path:url(#clipPath2);" y2="144.1547"
+      /><line x1="654.0936" x2="654.0936" y1="156.1547" style="fill:none; clip-path:url(#clipPath2);" y2="282.4888"
+      /><line x1="654.0936" x2="595.9565" y1="282.4888" style="fill:none; clip-path:url(#clipPath2);" y2="282.4888"
+      /><line x1="822.4122" x2="812.0199" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="23.0728"
+      /><line x1="822.4122" x2="812.0199" y1="17.0728" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="11.0728"
+      /><path d="M659.4242 221.155 A6 6 0 0 0 648.763 226.6631" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M709.233 195.4214 A6 6 0 0 0 698.5718 200.9295" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M772.6772 162.6431 A6 6 0 0 0 762.016 168.1512" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="837.035" x2="772.6772" y1="129.3928" style="fill:none; clip-path:url(#clipPath2);" y2="162.6431"
+      /><line x1="762.016" x2="709.233" y1="168.1512" style="fill:none; clip-path:url(#clipPath2);" y2="195.4214"
+      /><line x1="698.5718" x2="659.4242" y1="200.9295" style="fill:none; clip-path:url(#clipPath2);" y2="221.155"
+      /><line x1="648.763" x2="563.1895" y1="226.6631" style="fill:none; clip-path:url(#clipPath2);" y2="270.8744"
+      /><line x1="837.035" x2="830.5562" y1="129.3928" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="139.4936"
+      /><line x1="837.035" x2="825.0481" y1="129.3928" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="128.8324"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="409.1421" y="360.1052" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="409.1421" y="360.1052" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="813.4122" x2="704.6843" y1="303.9326" style="fill:none; clip-path:url(#clipPath2);" y2="303.9326"
+      /><line x1="704.6843" x2="704.6843" y1="303.9326" style="fill:none; clip-path:url(#clipPath2);" y2="295.2185"
+      /><line x1="704.6843" x2="595.9565" y1="295.2185" style="fill:none; clip-path:url(#clipPath2);" y2="295.2185"
+      /><line x1="813.4122" x2="803.0199" y1="303.9326" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="309.9326"
+      /><line x1="813.4122" x2="803.0199" y1="303.9326" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="297.9326"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="435.5701" y="357.0972" width="161" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="435.5701" y="357.0972" width="161" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="578.5701" y="363.0972" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="578.5701" y="363.0972" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="576.5701" y="371.0972" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="576.5701" y="371.0972" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="576.5701" y="366.0972" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="576.5701" y="366.0972" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(464.4357,375.0972)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath31);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(449.1176,377.4413)"
+    ><path d="M4.9375 12.8281 L2.125 5.3125 L2.0781 5.3125 Q2.1094 5.6875 2.125 6.3281 Q2.1562 6.9531 2.1562 7.625 L2.1562 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.7656 4.2656 L5.4062 11.2812 L5.4531 11.2812 L8.1406 4.2656 L9.7188 4.2656 L9.7188 12.8281 L8.6562 12.8281 L8.6562 7.5625 Q8.6562 6.9375 8.6875 6.3281 Q8.7188 5.7187 8.7344 5.3281 L8.6875 5.3281 L5.8281 12.8281 L4.9375 12.8281 ZM14.3372 6.2812 Q15.5091 6.2812 16.0716 6.7968 Q16.6497 7.3125 16.6497 8.4531 L16.6497 12.8281 L15.8685 12.8281 L15.6653 11.9218 L15.6185 11.9218 Q15.1966 12.4375 14.7278 12.7031 Q14.2747 12.9531 13.4622 12.9531 Q12.5872 12.9531 12.0091 12.5 Q11.431 12.0312 11.431 11.0468 Q11.431 10.0781 12.181 9.5625 Q12.9466 9.0312 14.5247 8.9843 L15.6185 8.9531 L15.6185 8.5625 Q15.6185 7.7656 15.2591 7.4531 Q14.9153 7.1406 14.2747 7.1406 Q13.7747 7.1406 13.3216 7.2968 Q12.8685 7.4375 12.4622 7.625 L12.1497 6.8437 Q12.5716 6.6093 13.1341 6.4531 Q13.7122 6.2812 14.3372 6.2812 ZM14.6497 9.7187 Q13.4466 9.7656 12.9778 10.1093 Q12.5247 10.4375 12.5247 11.0468 Q12.5247 11.5937 12.8528 11.8437 Q13.181 12.0937 13.6966 12.0937 Q14.5247 12.0937 15.056 11.6562 Q15.6028 11.2031 15.6028 10.2656 L15.6028 9.6875 L14.6497 9.7187 ZM19.1786 3.9843 Q19.413 3.9843 19.6005 4.1562 Q19.788 4.3125 19.788 4.6562 Q19.788 4.9843 19.6005 5.1562 Q19.413 5.3281 19.1786 5.3281 Q18.913 5.3281 18.7255 5.1562 Q18.5536 4.9843 18.5536 4.6562 Q18.5536 4.3125 18.7255 4.1562 Q18.913 3.9843 19.1786 3.9843 ZM19.6942 6.3906 L19.6942 12.8281 L18.6317 12.8281 L18.6317 6.3906 L19.6942 6.3906 ZM24.8215 6.2812 Q25.9778 6.2812 26.5559 6.8437 Q27.1496 7.3906 27.1496 8.6406 L27.1496 12.8281 L26.1184 12.8281 L26.1184 8.7187 Q26.1184 7.1718 24.6653 7.1718 Q23.6028 7.1718 23.1965 7.7656 Q22.7903 8.3593 22.7903 9.4843 L22.7903 12.8281 L21.7278 12.8281 L21.7278 6.3906 L22.5871 6.3906 L22.7434 7.2656 L22.8059 7.2656 Q23.1184 6.7656 23.6653 6.5312 Q24.2121 6.2812 24.8215 6.2812 ZM31.5657 4.2656 Q33.2376 4.2656 34.0032 4.9218 Q34.7688 5.5781 34.7688 6.7812 Q34.7688 7.4843 34.4563 8.1093 Q34.1438 8.7187 33.3938 9.1093 Q32.6438 9.4843 31.3626 9.4843 L30.3782 9.4843 L30.3782 12.8281 L29.2844 12.8281 L29.2844 4.2656 L31.5657 4.2656 ZM31.4719 5.1875 L30.3782 5.1875 L30.3782 8.5625 L31.2376 8.5625 Q32.4563 8.5625 33.0501 8.1718 Q33.6594 7.7812 33.6594 6.8281 Q33.6594 6 33.1282 5.5937 Q32.5969 5.1875 31.4719 5.1875 ZM38.8414 6.2812 Q40.0132 6.2812 40.5757 6.7968 Q41.1539 7.3125 41.1539 8.4531 L41.1539 12.8281 L40.3726 12.8281 L40.1695 11.9218 L40.1226 11.9218 Q39.7007 12.4375 39.232 12.7031 Q38.7789 12.9531 37.9664 12.9531 Q37.0914 12.9531 36.5132 12.5 Q35.9351 12.0312 35.9351 11.0468 Q35.9351 10.0781 36.6851 9.5625 Q37.4507 9.0312 39.0289 8.9843 L40.1226 8.9531 L40.1226 8.5625 Q40.1226 7.7656 39.7632 7.4531 Q39.4195 7.1406 38.7789 7.1406 Q38.2789 7.1406 37.8257 7.2968 Q37.3726 7.4375 36.9664 7.625 L36.6539 6.8437 Q37.0757 6.6093 37.6382 6.4531 Q38.2164 6.2812 38.8414 6.2812 ZM39.1539 9.7187 Q37.9507 9.7656 37.482 10.1093 Q37.0289 10.4375 37.0289 11.0468 Q37.0289 11.5937 37.357 11.8437 Q37.6851 12.0937 38.2007 12.0937 Q39.0289 12.0937 39.5601 11.6562 Q40.107 11.2031 40.107 10.2656 L40.107 9.6875 L39.1539 9.7187 ZM45.4172 6.2812 Q46.0578 6.2812 46.5578 6.5156 Q47.0734 6.75 47.4328 7.25 L47.4953 7.25 L47.6359 6.3906 L48.4797 6.3906 L48.4797 12.9375 Q48.4797 14.3125 47.7765 15 Q47.0734 15.7031 45.6047 15.7031 Q44.1828 15.7031 43.2765 15.2968 L43.2765 14.3281 Q44.2297 14.8281 45.6672 14.8281 Q46.4953 14.8281 46.964 14.3437 Q47.4328 13.8593 47.4328 13.0156 L47.4328 12.7656 Q47.4328 12.625 47.4484 12.3593 Q47.464 12.0781 47.4797 11.9687 L47.4172 11.9687 Q46.7765 12.9531 45.4328 12.9531 Q44.1828 12.9531 43.4797 12.0781 Q42.7765 11.2031 42.7765 9.625 Q42.7765 8.0937 43.4797 7.1875 Q44.1828 6.2812 45.4172 6.2812 ZM45.5578 7.1718 Q44.7609 7.1718 44.3078 7.8125 Q43.8703 8.4531 43.8703 9.6406 Q43.8703 10.8281 44.3078 11.4531 Q44.7453 12.0781 45.589 12.0781 Q46.5578 12.0781 46.9953 11.5625 Q47.4484 11.0468 47.4484 9.875 L47.4484 9.625 Q47.4484 8.2968 46.9953 7.7343 Q46.5422 7.1718 45.5578 7.1718 ZM53.0003 6.2812 Q53.8285 6.2812 54.4222 6.6406 Q55.016 7 55.3285 7.6562 Q55.6566 8.2968 55.6566 9.1875 L55.6566 9.8125 L51.2503 9.8125 Q51.2816 10.9062 51.8128 11.4843 Q52.3441 12.0468 53.2972 12.0468 Q53.9222 12.0468 54.391 11.9375 Q54.8597 11.8125 55.3753 11.6093 L55.3753 12.5312 Q54.8753 12.75 54.391 12.8437 Q53.9222 12.9531 53.2503 12.9531 Q52.3441 12.9531 51.641 12.5781 Q50.9378 12.2031 50.5472 11.4687 Q50.1566 10.7343 50.1566 9.6562 Q50.1566 8.6093 50.516 7.8593 Q50.8753 7.0937 51.516 6.6875 Q52.1566 6.2812 53.0003 6.2812 ZM52.9847 7.1406 Q52.2347 7.1406 51.7972 7.625 Q51.3597 8.1093 51.2816 8.9687 L54.5472 8.9687 Q54.5472 8.1562 54.1722 7.6562 Q53.7972 7.1406 52.9847 7.1406 ZM61.1121 5.0937 Q59.7215 5.0937 58.9246 6.0156 Q58.1434 6.9375 58.1434 8.5468 Q58.1434 10.1406 58.8778 11.0781 Q59.6121 12 61.0965 12 Q61.659 12 62.159 11.9062 Q62.659 11.8125 63.1434 11.6718 L63.1434 12.5937 Q62.659 12.7812 62.1434 12.8593 Q61.6434 12.9531 60.9403 12.9531 Q59.6278 12.9531 58.7528 12.4218 Q57.8778 11.875 57.4403 10.875 Q57.0028 9.875 57.0028 8.5312 Q57.0028 7.2343 57.4715 6.25 Q57.9559 5.25 58.8778 4.7031 Q59.7996 4.1406 61.1121 4.1406 Q62.4715 4.1406 63.4871 4.6406 L63.0496 5.5625 Q62.659 5.375 62.159 5.2343 Q61.6746 5.0937 61.1121 5.0937 ZM70.4618 9.5937 Q70.4618 11.2031 69.6493 12.0781 Q68.8368 12.9531 67.4618 12.9531 Q66.6181 12.9531 65.9462 12.5625 Q65.2743 12.1718 64.8837 11.4218 Q64.5087 10.6718 64.5087 9.5937 Q64.5087 8 65.3056 7.1406 Q66.1181 6.2812 67.4931 6.2812 Q68.3837 6.2812 69.0399 6.6718 Q69.7118 7.0625 70.0868 7.7968 Q70.4618 8.5312 70.4618 9.5937 ZM65.6024 9.5937 Q65.6024 10.7343 66.0556 11.4062 Q66.5087 12.0781 67.4931 12.0781 Q68.4618 12.0781 68.9149 11.4062 Q69.3681 10.7343 69.3681 9.5937 Q69.3681 8.4531 68.9149 7.8125 Q68.4618 7.1718 67.4774 7.1718 Q66.4931 7.1718 66.0399 7.8125 Q65.6024 8.4531 65.6024 9.5937 ZM79.1906 6.2812 Q80.2844 6.2812 80.8156 6.8437 Q81.3625 7.3906 81.3625 8.6406 L81.3625 12.8281 L80.3156 12.8281 L80.3156 8.6875 Q80.3156 7.1718 79.0031 7.1718 Q78.0656 7.1718 77.6594 7.7187 Q77.2688 8.25 77.2688 9.2812 L77.2688 12.8281 L76.2219 12.8281 L76.2219 8.6875 Q76.2219 7.1718 74.9094 7.1718 Q73.925 7.1718 73.55 7.7656 Q73.1906 8.3593 73.1906 9.4843 L73.1906 12.8281 L72.1281 12.8281 L72.1281 6.3906 L72.9875 6.3906 L73.1438 7.2656 L73.2063 7.2656 Q73.5031 6.7656 74.0031 6.5312 Q74.5188 6.2812 75.0969 6.2812 Q76.6125 6.2812 77.0656 7.3593 L77.1281 7.3593 Q77.4563 6.7968 78.0031 6.5468 Q78.5656 6.2812 79.1906 6.2812 ZM86.4107 6.2812 Q87.5982 6.2812 88.317 7.1093 Q89.0513 7.9375 89.0513 9.5937 Q89.0513 11.25 88.317 12.1093 Q87.5982 12.9531 86.3951 12.9531 Q85.6607 12.9531 85.1763 12.6718 Q84.692 12.3906 84.4107 12.0156 L84.3326 12.0156 Q84.3638 12.2187 84.3795 12.5312 Q84.4107 12.8437 84.4107 13.0625 L84.4107 15.7031 L83.3482 15.7031 L83.3482 6.3906 L84.2232 6.3906 L84.3638 7.2656 L84.4107 7.2656 Q84.692 6.8593 85.1607 6.5781 Q85.6295 6.2812 86.4107 6.2812 ZM86.2232 7.1718 Q85.2388 7.1718 84.8326 7.7187 Q84.4263 8.2656 84.4107 9.3906 L84.4107 9.5937 Q84.4107 10.7812 84.8013 11.4375 Q85.192 12.0781 86.2388 12.0781 Q86.8326 12.0781 87.2076 11.75 Q87.5826 11.4218 87.7701 10.875 Q87.9576 10.3125 87.9576 9.5937 Q87.9576 8.4843 87.5357 7.8281 Q87.1138 7.1718 86.2232 7.1718 ZM96.322 9.5937 Q96.322 11.2031 95.5095 12.0781 Q94.697 12.9531 93.322 12.9531 Q92.4783 12.9531 91.8064 12.5625 Q91.1345 12.1718 90.7439 11.4218 Q90.3689 10.6718 90.3689 9.5937 Q90.3689 8 91.1658 7.1406 Q91.9783 6.2812 93.3533 6.2812 Q94.2439 6.2812 94.9001 6.6718 Q95.572 7.0625 95.947 7.7968 Q96.322 8.5312 96.322 9.5937 ZM91.4626 9.5937 Q91.4626 10.7343 91.9158 11.4062 Q92.3689 12.0781 93.3533 12.0781 Q94.322 12.0781 94.7751 11.4062 Q95.2283 10.7343 95.2283 9.5937 Q95.2283 8.4531 94.7751 7.8125 Q94.322 7.1718 93.3376 7.1718 Q92.3533 7.1718 91.9001 7.8125 Q91.4626 8.4531 91.4626 9.5937 ZM101.0821 6.2812 Q102.2383 6.2812 102.8164 6.8437 Q103.4102 7.3906 103.4102 8.6406 L103.4102 12.8281 L102.3789 12.8281 L102.3789 8.7187 Q102.3789 7.1718 100.9258 7.1718 Q99.8633 7.1718 99.4571 7.7656 Q99.0508 8.3593 99.0508 9.4843 L99.0508 12.8281 L97.9883 12.8281 L97.9883 6.3906 L98.8477 6.3906 L99.0039 7.2656 L99.0664 7.2656 Q99.3789 6.7656 99.9258 6.5312 Q100.4727 6.2812 101.0821 6.2812 ZM107.8887 6.2812 Q108.7169 6.2812 109.3106 6.6406 Q109.9044 7 110.2169 7.6562 Q110.545 8.2968 110.545 9.1875 L110.545 9.8125 L106.1387 9.8125 Q106.17 10.9062 106.7012 11.4843 Q107.2325 12.0468 108.1856 12.0468 Q108.8106 12.0468 109.2794 11.9375 Q109.7481 11.8125 110.2637 11.6093 L110.2637 12.5312 Q109.7637 12.75 109.2794 12.8437 Q108.8106 12.9531 108.1387 12.9531 Q107.2325 12.9531 106.5294 12.5781 Q105.8262 12.2031 105.4356 11.4687 Q105.045 10.7343 105.045 9.6562 Q105.045 8.6093 105.4044 7.8593 Q105.7637 7.0937 106.4044 6.6875 Q107.045 6.2812 107.8887 6.2812 ZM107.8731 7.1406 Q107.1231 7.1406 106.6856 7.625 Q106.2481 8.1093 106.17 8.9687 L109.4356 8.9687 Q109.4356 8.1562 109.0606 7.6562 Q108.6856 7.1406 107.8731 7.1406 ZM115.2662 6.2812 Q116.4224 6.2812 117.0005 6.8437 Q117.5943 7.3906 117.5943 8.6406 L117.5943 12.8281 L116.563 12.8281 L116.563 8.7187 Q116.563 7.1718 115.1099 7.1718 Q114.0474 7.1718 113.6412 7.7656 Q113.2349 8.3593 113.2349 9.4843 L113.2349 12.8281 L112.1724 12.8281 L112.1724 6.3906 L113.0318 6.3906 L113.188 7.2656 L113.2505 7.2656 Q113.563 6.7656 114.1099 6.5312 Q114.6568 6.2812 115.2662 6.2812 ZM121.7447 12.0781 Q121.9791 12.0781 122.2291 12.0468 Q122.4791 12 122.6353 11.9531 L122.6353 12.75 Q122.4791 12.8437 122.1666 12.8906 Q121.8541 12.9531 121.5572 12.9531 Q121.0572 12.9531 120.6197 12.7812 Q120.1978 12.5937 119.9322 12.1718 Q119.6822 11.7343 119.6822 10.9531 L119.6822 7.2187 L118.7603 7.2187 L118.7603 6.7031 L119.6822 6.2812 L120.1041 4.9218 L120.7291 4.9218 L120.7291 6.3906 L122.5885 6.3906 L122.5885 7.2187 L120.7291 7.2187 L120.7291 10.9375 Q120.7291 11.5156 121.0103 11.7968 Q121.2916 12.0781 121.7447 12.0781 Z" style="stroke:none; clip-path:url(#clipPath32);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="813.4122" x2="703.9024" y1="303.9326" style="fill:none; clip-path:url(#clipPath2);" y2="303.9326"
+      /><line x1="703.9024" x2="703.9024" y1="303.9326" style="fill:none; clip-path:url(#clipPath2);" y2="381.4413"
+      /><line x1="703.9024" x2="596.5701" y1="381.4413" style="fill:none; clip-path:url(#clipPath2);" y2="381.4413"
+      /><line x1="813.4122" x2="803.0199" y1="303.9326" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="309.9326"
+      /><line x1="813.4122" x2="803.0199" y1="303.9326" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="297.9326"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><circle r="10" style="clip-path:url(#clipPath2); stroke:none;" cx="348.395" cy="302.3331"
+      /><circle style="fill:none; clip-path:url(#clipPath2); stroke:black;" r="10" cx="348.395" cy="302.3331"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(330.395,326.3331)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 Z" style="stroke:none; clip-path:url(#clipPath33);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="358.395" x2="409.1421" y1="303.2603" style="fill:none; clip-path:url(#clipPath2);" y2="307.9656"
+      /><circle style="clip-path:url(#clipPath2); fill:rgb(255,255,204); stroke:none; stroke-width:2;" r="10" cx="348.395" cy="381.2459"
+      /><circle style="fill:none; stroke-width:2; clip-path:url(#clipPath2);" r="10" cx="348.395" cy="381.2459"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(321.4788,405.2459)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath34);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="358.395" x2="409.1421" y1="379.1586" style="fill:none; clip-path:url(#clipPath2);" y2="368.5663"
+      /><circle style="clip-path:url(#clipPath2); fill:rgb(255,255,204); stroke:none; stroke-width:2;" r="10" cx="348.78" cy="65.2318"
+      /><circle style="fill:none; stroke-width:2; clip-path:url(#clipPath2);" r="10" cx="348.78" cy="65.2318"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(324.0298,89.2318)"
+    ><path d="M3.75 -8.5625 Q5.4531 -8.5625 6.3281 -8.0781 Q7.2188 -7.6094 7.2188 -6.3906 Q7.2188 -5.6562 6.875 -5.1562 Q6.5312 -4.6562 5.8906 -4.5469 L5.8906 -4.4844 Q6.3281 -4.4062 6.6719 -4.1875 Q7.0156 -3.9688 7.2188 -3.5625 Q7.4219 -3.1562 7.4219 -2.4844 Q7.4219 -1.3125 6.5781 -0.6562 Q5.75 0 4.2812 0 L1.0781 0 L1.0781 -8.5625 L3.75 -8.5625 ZM3.9531 -5.1719 Q4.7344 -5.1719 5.0469 -5.4219 Q5.3594 -5.6719 5.3594 -6.1562 Q5.3594 -6.6406 4.9844 -6.8594 Q4.625 -7.0781 3.8594 -7.0781 L2.8906 -7.0781 L2.8906 -5.1719 L3.9531 -5.1719 ZM2.8906 -3.7344 L2.8906 -1.5 L4.0781 -1.5 Q4.8906 -1.5 5.2188 -1.8125 Q5.5469 -2.1406 5.5469 -2.6562 Q5.5469 -3.1406 5.2188 -3.4375 Q4.8906 -3.7344 4.0156 -3.7344 L2.8906 -3.7344 ZM14.9547 -3.2812 Q14.9547 -1.6562 14.0953 -0.7656 Q13.2359 0.125 11.7672 0.125 Q10.8453 0.125 10.1266 -0.2656 Q9.4234 -0.6719 9.0172 -1.4375 Q8.6109 -2.2031 8.6109 -3.2812 Q8.6109 -4.9219 9.4547 -5.7969 Q10.3141 -6.6719 11.7984 -6.6719 Q12.7203 -6.6719 13.4234 -6.2656 Q14.1422 -5.875 14.5484 -5.125 Q14.9547 -4.375 14.9547 -3.2812 ZM10.4234 -3.2812 Q10.4234 -2.3125 10.7359 -1.8125 Q11.0641 -1.3125 11.7828 -1.3125 Q12.4859 -1.3125 12.7984 -1.8125 Q13.1266 -2.3125 13.1266 -3.2812 Q13.1266 -4.2656 12.7984 -4.75 Q12.4859 -5.2344 11.7672 -5.2344 Q11.0641 -5.2344 10.7359 -4.75 Q10.4234 -4.2656 10.4234 -3.2812 ZM22.3827 -3.2812 Q22.3827 -1.6562 21.5234 -0.7656 Q20.664 0.125 19.1952 0.125 Q18.2734 0.125 17.5546 -0.2656 Q16.8515 -0.6719 16.4452 -1.4375 Q16.039 -2.2031 16.039 -3.2812 Q16.039 -4.9219 16.8827 -5.7969 Q17.7421 -6.6719 19.2265 -6.6719 Q20.1484 -6.6719 20.8515 -6.2656 Q21.5702 -5.875 21.9765 -5.125 Q22.3827 -4.375 22.3827 -3.2812 ZM17.8515 -3.2812 Q17.8515 -2.3125 18.164 -1.8125 Q18.4921 -1.3125 19.2109 -1.3125 Q19.914 -1.3125 20.2265 -1.8125 Q20.5546 -2.3125 20.5546 -3.2812 Q20.5546 -4.2656 20.2265 -4.75 Q19.914 -5.2344 19.1952 -5.2344 Q18.4921 -5.2344 18.164 -4.75 Q17.8515 -4.2656 17.8515 -3.2812 ZM25.6389 -5.0469 Q25.6389 -4.6719 25.6077 -4.2969 Q25.5764 -3.9375 25.5452 -3.5625 L25.5764 -3.5625 Q25.7483 -3.8125 25.9358 -4.0625 Q26.1389 -4.3281 26.3577 -4.5625 L28.1858 -6.5469 L30.2014 -6.5469 L27.6077 -3.7031 L30.3577 0 L28.2952 0 L26.4045 -2.6562 L25.6389 -2.0469 L25.6389 0 L23.8577 0 L23.8577 -9.125 L25.6389 -9.125 L25.6389 -5.0469 ZM32.204 -9.125 Q32.5946 -9.125 32.8758 -8.9375 Q33.1727 -8.75 33.1727 -8.25 Q33.1727 -7.75 32.8758 -7.5625 Q32.5946 -7.375 32.204 -7.375 Q31.7821 -7.375 31.5008 -7.5625 Q31.2196 -7.75 31.2196 -8.25 Q31.2196 -8.75 31.5008 -8.9375 Q31.7821 -9.125 32.204 -9.125 ZM33.079 -6.5469 L33.079 0 L31.2977 0 L31.2977 -6.5469 L33.079 -6.5469 ZM38.6765 -6.6719 Q39.739 -6.6719 40.364 -6.0938 Q41.0046 -5.5312 41.0046 -4.2656 L41.0046 0 L39.2234 0 L39.2234 -3.8281 Q39.2234 -4.5312 38.9577 -4.8906 Q38.7077 -5.25 38.1609 -5.25 Q37.3484 -5.25 37.0359 -4.6875 Q36.739 -4.125 36.739 -3.0781 L36.739 0 L34.9577 0 L34.9577 -6.5469 L36.3171 -6.5469 L36.5671 -5.7188 L36.6609 -5.7188 Q36.9734 -6.2188 37.5202 -6.4375 Q38.0671 -6.6719 38.6765 -6.6719 ZM44.9668 -6.6719 Q46.1699 -6.6719 46.8574 -5.7188 L46.9043 -5.7188 L47.0449 -6.5469 L48.5605 -6.5469 L48.5605 0.0156 Q48.5605 1.4219 47.7324 2.1406 Q46.9043 2.875 45.2949 2.875 Q44.5918 2.875 43.998 2.7969 Q43.4043 2.7188 42.8418 2.5 L42.8418 1.0625 Q44.0449 1.5781 45.3887 1.5781 Q46.7793 1.5781 46.7793 0.0781 L46.7793 -0.0469 Q46.7793 -0.25 46.7949 -0.4688 Q46.8105 -0.6875 46.8262 -0.8594 L46.7793 -0.8594 Q46.4355 -0.3438 45.9668 -0.1094 Q45.498 0.125 44.9199 0.125 Q43.748 0.125 43.0918 -0.7656 Q42.4512 -1.6719 42.4512 -3.2656 Q42.4512 -4.875 43.123 -5.7656 Q43.7949 -6.6719 44.9668 -6.6719 ZM45.5293 -5.2188 Q44.2637 -5.2188 44.2637 -3.2344 Q44.2637 -1.2812 45.5449 -1.2812 Q46.2324 -1.2812 46.5605 -1.6719 Q46.8887 -2.0625 46.8887 -3.0312 L46.8887 -3.25 Q46.8887 -4.3125 46.5605 -4.7656 Q46.248 -5.2188 45.5293 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath35);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="358.78" x2="427.5701" y1="65.3743" style="fill:none; clip-path:url(#clipPath2);" y2="66.3548"
+      /><circle style="clip-path:url(#clipPath2); fill:rgb(255,255,204); stroke:none; stroke-width:2;" r="10" cx="348.8586" cy="-129.0375"
+      /><circle style="fill:none; stroke-width:2; clip-path:url(#clipPath2);" r="10" cx="348.8586" cy="-129.0375"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(331.5784,-105.0375)"
+    ><path d="M3.5781 -8.5625 Q5.3281 -8.5625 6.1562 -7.9219 Q7 -7.2969 7 -6 Q7 -5.4062 6.7656 -4.9688 Q6.5469 -4.5312 6.1719 -4.2188 Q5.8125 -3.9219 5.4062 -3.7344 L7.9219 0 L5.9062 0 L3.8594 -3.2812 L2.8906 -3.2812 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L3.5781 -8.5625 ZM3.4375 -7.0781 L2.8906 -7.0781 L2.8906 -4.7656 L3.4844 -4.7656 Q4.375 -4.7656 4.7656 -5.0625 Q5.1562 -5.3594 5.1562 -5.9531 Q5.1562 -6.5625 4.7344 -6.8125 Q4.3281 -7.0781 3.4375 -7.0781 ZM14.8107 -3.2812 Q14.8107 -1.6562 13.9513 -0.7656 Q13.0919 0.125 11.6232 0.125 Q10.7013 0.125 9.9826 -0.2656 Q9.2794 -0.6719 8.8732 -1.4375 Q8.4669 -2.2031 8.4669 -3.2812 Q8.4669 -4.9219 9.3107 -5.7969 Q10.1701 -6.6719 11.6544 -6.6719 Q12.5763 -6.6719 13.2794 -6.2656 Q13.9982 -5.875 14.4044 -5.125 Q14.8107 -4.375 14.8107 -3.2812 ZM10.2794 -3.2812 Q10.2794 -2.3125 10.5919 -1.8125 Q10.9201 -1.3125 11.6388 -1.3125 Q12.3419 -1.3125 12.6544 -1.8125 Q12.9826 -2.3125 12.9826 -3.2812 Q12.9826 -4.2656 12.6544 -4.75 Q12.3419 -5.2344 11.6232 -5.2344 Q10.9201 -5.2344 10.5919 -4.75 Q10.2794 -4.2656 10.2794 -3.2812 ZM22.2387 -3.2812 Q22.2387 -1.6562 21.3794 -0.7656 Q20.52 0.125 19.0512 0.125 Q18.1294 0.125 17.4106 -0.2656 Q16.7075 -0.6719 16.3012 -1.4375 Q15.895 -2.2031 15.895 -3.2812 Q15.895 -4.9219 16.7387 -5.7969 Q17.5981 -6.6719 19.0825 -6.6719 Q20.0044 -6.6719 20.7075 -6.2656 Q21.4262 -5.875 21.8325 -5.125 Q22.2387 -4.375 22.2387 -3.2812 ZM17.7075 -3.2812 Q17.7075 -2.3125 18.02 -1.8125 Q18.3481 -1.3125 19.0669 -1.3125 Q19.77 -1.3125 20.0825 -1.8125 Q20.4106 -2.3125 20.4106 -3.2812 Q20.4106 -4.2656 20.0825 -4.75 Q19.77 -5.2344 19.0512 -5.2344 Q18.3481 -5.2344 18.02 -4.75 Q17.7075 -4.2656 17.7075 -3.2812 ZM31.4012 -6.6719 Q32.5262 -6.6719 33.0887 -6.0938 Q33.6668 -5.5312 33.6668 -4.2656 L33.6668 0 L31.8699 0 L31.8699 -3.8281 Q31.8699 -5.25 30.8855 -5.25 Q30.1824 -5.25 29.8699 -4.7344 Q29.573 -4.2344 29.573 -3.2812 L29.573 0 L27.7918 0 L27.7918 -3.8281 Q27.7918 -5.25 26.8074 -5.25 Q26.0574 -5.25 25.7762 -4.6875 Q25.4949 -4.125 25.4949 -3.0781 L25.4949 0 L23.7137 0 L23.7137 -6.5469 L25.073 -6.5469 L25.323 -5.7188 L25.4168 -5.7188 Q25.7137 -6.2188 26.2293 -6.4375 Q26.7605 -6.6719 27.323 -6.6719 Q28.0418 -6.6719 28.5418 -6.4375 Q29.0574 -6.2031 29.323 -5.7188 L29.4793 -5.7188 Q29.7762 -6.2188 30.3074 -6.4375 Q30.8387 -6.6719 31.4012 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath36);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="358.8586" x2="429.0544" y1="-131.0254" style="fill:none; clip-path:url(#clipPath2);" y2="-144.9794"
+      /><circle style="clip-path:url(#clipPath2); fill:rgb(255,255,204); stroke:none; stroke-width:2;" r="10" cx="348.8736" cy="-197.1224"
+      /><circle style="fill:none; stroke-width:2; clip-path:url(#clipPath2);" r="10" cx="348.8736" cy="-197.1224"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(332.5895,-173.1224)"
+    ><path d="M8.0938 0 L6.2812 0 L6.2812 -3.7031 L2.8906 -3.7031 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -5.2031 L6.2812 -5.2031 L6.2812 -8.5625 L8.0938 -8.5625 L8.0938 0 ZM16.0707 -3.2812 Q16.0707 -1.6562 15.2113 -0.7656 Q14.3519 0.125 12.8832 0.125 Q11.9613 0.125 11.2426 -0.2656 Q10.5394 -0.6719 10.1332 -1.4375 Q9.7269 -2.2031 9.7269 -3.2812 Q9.7269 -4.9219 10.5707 -5.7969 Q11.4301 -6.6719 12.9144 -6.6719 Q13.8363 -6.6719 14.5394 -6.2656 Q15.2582 -5.875 15.6644 -5.125 Q16.0707 -4.375 16.0707 -3.2812 ZM11.5394 -3.2812 Q11.5394 -2.3125 11.8519 -1.8125 Q12.1801 -1.3125 12.8988 -1.3125 Q13.6019 -1.3125 13.9144 -1.8125 Q14.2426 -2.3125 14.2426 -3.2812 Q14.2426 -4.2656 13.9144 -4.75 Q13.6019 -5.2344 12.8832 -5.2344 Q12.1801 -5.2344 11.8519 -4.75 Q11.5394 -4.2656 11.5394 -3.2812 ZM20.3112 -1.3125 Q20.6081 -1.3125 20.8737 -1.3594 Q21.155 -1.4219 21.4362 -1.5156 L21.4362 -0.1875 Q21.1394 -0.0625 20.7175 0.0312 Q20.2956 0.125 19.7956 0.125 Q19.2019 0.125 18.7331 -0.0625 Q18.28 -0.2656 17.9987 -0.7344 Q17.7331 -1.2188 17.7331 -2.0469 L17.7331 -5.2031 L16.8894 -5.2031 L16.8894 -5.9688 L17.8737 -6.5625 L18.3894 -7.9375 L19.53 -7.9375 L19.53 -6.5469 L21.3581 -6.5469 L21.3581 -5.2031 L19.53 -5.2031 L19.53 -2.0469 Q19.53 -1.6875 19.7331 -1.5 Q19.9519 -1.3125 20.3112 -1.3125 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1912 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4412 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0037 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1287 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9412 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM31.627 0 L29.8457 0 L29.8457 -9.125 L31.627 -9.125 L31.627 0 Z" style="stroke:none; clip-path:url(#clipPath37);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="358.8736" x2="429.0544" y1="-195.6233" style="fill:none; clip-path:url(#clipPath2);" y2="-185.1028"
+      /><circle style="clip-path:url(#clipPath2); fill:rgb(255,255,204); stroke:none; stroke-width:2;" r="10" cx="285.1037" cy="340.4286"
+      /><circle style="fill:none; stroke-width:2; clip-path:url(#clipPath2);" r="10" cx="285.1037" cy="340.4286"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(271.3156,364.4286)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath38);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956)"
+    ><line x1="295.1037" x2="409.1421" y1="340.1985" style="fill:none; clip-path:url(#clipPath2);" y2="337.5741"
+      /><line x1="295.1037" x2="338.395" y1="346.8777" style="fill:none; clip-path:url(#clipPath2);" y2="374.7968"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" 295 347 301 358 308 348"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" 295 347 301 358 308 348"
+      /><line x1="295.1037" x2="338.395" y1="334.4095" style="fill:none; clip-path:url(#clipPath2);" y2="308.3522"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" 295 334 308 334 301 323"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" 295 334 308 334 301 323"
+      /><path d="M294.7629 327.8404 A10 10 0 0 0 275.4444 327.8404" style="fill:none; stroke-width:2; clip-path:url(#clipPath2);"
+      /><line x1="285.1037" x2="285.1037" y1="320.4286" style="fill:none; clip-path:url(#clipPath2);" y2="129.0185"
+      /><line x1="285.1037" x2="427.5701" y1="129.0185" style="fill:none; clip-path:url(#clipPath2);" y2="129.0185"
+      /><line x1="876.4122" x2="876.4122" y1="88.7046" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="37.4169"
+      /><line x1="876.4122" x2="870.4122" y1="88.7046" style="fill:none; clip-path:url(#clipPath2);" y2="78.3123"
+      /><line x1="876.4122" x2="882.4122" y1="88.7046" style="fill:none; clip-path:url(#clipPath2);" y2="78.3123"
+      /><circle style="clip-path:url(#clipPath2); fill:rgb(255,255,204); stroke:none; stroke-width:2;" r="10" cx="1141.8832" cy="86.9236"
+      /><circle style="fill:none; stroke-width:2; clip-path:url(#clipPath2);" r="10" cx="1141.8832" cy="86.9236"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,-348.4208,355.0956) translate(1131.3832,110.9236)"
+    ><path d="M6.3281 0 L5.7031 -2.0469 L2.5781 -2.0469 L1.9531 0 L0 0 L3.0312 -8.6094 L5.25 -8.6094 L8.2812 0 L6.3281 0 ZM4.6406 -5.5625 Q4.5781 -5.7656 4.4844 -6.0781 Q4.3906 -6.3906 4.2969 -6.7031 Q4.2031 -7.0312 4.1406 -7.2656 Q4.0781 -7.0312 3.9688 -6.6719 Q3.875 -6.3281 3.7812 -6 Q3.7031 -5.6875 3.6406 -5.5625 L3.0312 -3.5625 L5.2656 -3.5625 L4.6406 -5.5625 ZM12.0926 -8.5625 Q13.7488 -8.5625 14.5144 -7.8438 Q15.2801 -7.1406 15.2801 -5.8906 Q15.2801 -5.1406 14.9676 -4.4844 Q14.6551 -3.8438 13.9207 -3.4375 Q13.2019 -3.0469 11.9519 -3.0469 L11.1707 -3.0469 L11.1707 0 L9.3582 0 L9.3582 -8.5625 L12.0926 -8.5625 ZM11.9988 -7.0781 L11.1707 -7.0781 L11.1707 -4.5312 L11.7644 -4.5312 Q12.5457 -4.5312 12.9832 -4.8281 Q13.4363 -5.1406 13.4363 -5.8281 Q13.4363 -7.0781 11.9988 -7.0781 ZM20.0974 0 L16.2067 0 L16.2067 -1.0312 L17.238 -1.5156 L17.238 -7.0625 L16.2067 -7.5312 L16.2067 -8.5625 L20.0974 -8.5625 L20.0974 -7.5312 L19.0505 -7.0625 L19.0505 -1.5156 L20.0974 -1.0312 L20.0974 0 Z" style="stroke:none; clip-path:url(#clipPath39);"
+    /></g
+  ></g
+></svg
+>
diff --git a/diagramas/Angular.svg.bak b/diagramas/Angular.svg.bak
new file mode 100644
index 0000000000000000000000000000000000000000..9613dc82a0eace4d71123bad37fb6ebc8693069a
--- /dev/null
+++ b/diagramas/Angular.svg.bak
@@ -0,0 +1,719 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
+          'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
+<svg xmlns:xlink="http://www.w3.org/1999/xlink" style="fill-opacity:1; color-rendering:auto; color-interpolation:auto; text-rendering:auto; stroke:black; stroke-linecap:square; stroke-miterlimit:10; shape-rendering:auto; stroke-opacity:1; fill:black; stroke-dasharray:none; font-weight:normal; stroke-width:1; font-family:'Dialog'; font-style:normal; stroke-linejoin:miter; font-size:12px; stroke-dashoffset:0; image-rendering:auto;" width="3114" height="1862" xmlns="http://www.w3.org/2000/svg"
+><!--Generated by the Batik Graphics2D SVG Generator--><defs id="genericDefs"
+  /><g
+  ><defs id="defs1"
+    ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath1"
+      ><path d="M0 0 L3114 0 L3114 1862 L0 1862 L0 0 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2"
+      ><path d="M-142.4513 -129.0988 L2193.0486 -129.0988 L2193.0486 1267.4012 L-142.4513 1267.4012 L-142.4513 -129.0988 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath3"
+      ><path d="M-47.4802 -29 L2288.0198 -29 L2288.0198 1367.5 L-47.4802 1367.5 L-47.4802 -29 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath4"
+      ><path d="M-20 -29 L2315.5 -29 L2315.5 1367.5 L-20 1367.5 L-20 -29 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath5"
+      ><path d="M-1430.7578 -403.6759 L904.7422 -403.6759 L904.7422 992.8242 L-1430.7578 992.8242 L-1430.7578 -403.6759 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath6"
+      ><path d="M-1411.7578 -420.02 L923.7422 -420.02 L923.7422 976.48 L-1411.7578 976.48 L-1411.7578 -420.02 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath7"
+      ><path d="M-1435.3873 -731.4537 L900.1126 -731.4537 L900.1126 665.0463 L-1435.3873 665.0463 L-1435.3873 -731.4537 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath8"
+      ><path d="M-1405.3873 -747.7978 L930.1126 -747.7978 L930.1126 648.7022 L-1405.3873 648.7022 L-1405.3873 -747.7978 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath9"
+      ><path d="M-1779.1443 -610.7046 L556.3557 -610.7046 L556.3557 785.7954 L-1779.1443 785.7954 L-1779.1443 -610.7046 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath10"
+      ><path d="M-832.5395 -119.642 L1502.9606 -119.642 L1502.9606 1276.8579 L-832.5395 1276.8579 L-832.5395 -119.642 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath11"
+      ><path d="M-806.131 -135.9862 L1529.3689 -135.9862 L1529.3689 1260.5138 L-806.131 1260.5138 L-806.131 -135.9862 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath12"
+      ><path d="M-1175.9608 -178.1323 L1159.5392 -178.1323 L1159.5392 1218.3678 L-1175.9608 1218.3678 L-1175.9608 -178.1323 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath13"
+      ><path d="M-1165.9608 -194.4764 L1169.5392 -194.4764 L1169.5392 1202.0237 L-1165.9608 1202.0237 L-1165.9608 -194.4764 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath14"
+      ><path d="M-1455.943 -265.9907 L879.5571 -265.9907 L879.5571 1130.5093 L-1455.943 1130.5093 L-1455.943 -265.9907 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath15"
+      ><path d="M-1435.943 -282.3348 L899.5571 -282.3348 L899.5571 1114.1652 L-1435.943 1114.1652 L-1435.943 -282.3348 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath16"
+      ><path d="M-1467.7948 -944.4166 L867.7052 -944.4166 L867.7052 452.0834 L-1467.7948 452.0834 L-1467.7948 -944.4166 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath17"
+      ><path d="M-1446.2948 -960.7607 L889.2052 -960.7607 L889.2052 435.7393 L-1446.2948 435.7393 L-1446.2948 -960.7607 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath18"
+      ><path d="M-440.2698 -64.3441 L1895.2302 -64.3441 L1895.2302 1332.1559 L-440.2698 1332.1559 L-440.2698 -64.3441 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath19"
+      ><path d="M-457.1779 -66.6882 L1878.3221 -66.6882 L1878.3221 1329.8118 L-457.1779 1329.8118 L-457.1779 -66.6882 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath20"
+      ><path d="M-469.5891 -1221.7391 L1865.9109 -1221.7391 L1865.9109 174.7608 L-469.5891 174.7608 L-469.5891 -1221.7391 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath21"
+      ><path d="M-491.4713 -1224.0833 L1844.0287 -1224.0833 L1844.0287 172.4167 L-491.4713 172.4167 L-491.4713 -1224.0833 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath22"
+      ><path d="M-458.5864 -1265.9984 L1876.9136 -1265.9984 L1876.9136 130.5016 L-458.5864 130.5016 L-458.5864 -1265.9984 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath23"
+      ><path d="M-455.6824 -1268.3425 L1879.8176 -1268.3425 L1879.8176 128.1575 L-455.6824 128.1575 L-455.6824 -1268.3425 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath24"
+      ><path d="M-458.5864 -1320.6281 L1876.9136 -1320.6281 L1876.9136 75.8719 L-458.5864 75.8719 L-458.5864 -1320.6281 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath25"
+      ><path d="M-448.1463 -1322.9722 L1887.3536 -1322.9722 L1887.3536 73.5278 L-448.1463 73.5278 L-448.1463 -1322.9722 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath26"
+      ><path d="M-446.3987 -212.1308 L1889.1013 -212.1308 L1889.1013 1184.3691 L-446.3987 1184.3691 L-446.3987 -212.1308 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath27"
+      ><path d="M-455.5127 -214.4749 L1879.9873 -214.4749 L1879.9873 1182.025 L-455.5127 1182.025 L-455.5127 -214.4749 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath28"
+      ><path d="M-435.7015 -258.4271 L1899.7985 -258.4271 L1899.7985 1138.0729 L-435.7015 1138.0729 L-435.7015 -258.4271 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath29"
+      ><path d="M-458.7356 -260.7712 L1876.7644 -260.7712 L1876.7644 1135.7288 L-458.7356 1135.7288 L-458.7356 -260.7712 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath30"
+      ><path d="M-435.7015 -353.7975 L1899.7985 -353.7975 L1899.7985 1042.7025 L-435.7015 1042.7025 L-435.7015 -353.7975 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath31"
+      ><path d="M-448.6675 -356.1416 L1886.8324 -356.1416 L1886.8324 1040.3584 L-448.6675 1040.3584 L-448.6675 -356.1416 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath32"
+      ><path d="M-465.7975 -875.0803 L1869.7025 -875.0803 L1869.7025 521.4197 L-465.7975 521.4197 L-465.7975 -875.0803 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath33"
+      ><path d="M-485.9217 -877.4244 L1849.5784 -877.4244 L1849.5784 519.0756 L-485.9217 519.0756 L-485.9217 -877.4244 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath34"
+      ><path d="M-435.7015 -446.3901 L1899.7985 -446.3901 L1899.7985 950.1099 L-435.7015 950.1099 L-435.7015 -446.3901 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath35"
+      ><path d="M-434.2914 -448.7342 L1901.2085 -448.7342 L1901.2085 947.7658 L-434.2914 947.7658 L-434.2914 -448.7342 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath36"
+      ><path d="M-458.6652 -1062.3025 L1876.8348 -1062.3025 L1876.8348 334.1975 L-458.6652 334.1975 L-458.6652 -1062.3025 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath37"
+      ><path d="M-480.2953 -1064.6466 L1855.2047 -1064.6466 L1855.2047 331.8534 L-480.2953 331.8534 L-480.2953 -1064.6466 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath38"
+      ><path d="M-464.2207 -965.0803 L1871.2793 -965.0803 L1871.2793 431.4198 L-464.2207 431.4198 L-464.2207 -965.0803 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath39"
+      ><path d="M-471.9847 -967.4244 L1863.5153 -967.4244 L1863.5153 429.0757 L-471.9847 429.0757 L-471.9847 -967.4244 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath40"
+      ><path d="M-480.7402 -556.2767 L1854.7598 -556.2767 L1854.7598 840.2233 L-480.7402 840.2233 L-480.7402 -556.2767 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath41"
+      ><path d="M-502.5384 -558.6208 L1832.9615 -558.6208 L1832.9615 837.8792 L-502.5384 837.8792 L-502.5384 -558.6208 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath42"
+      ><path d="M-465.4747 -605.4064 L1870.0254 -605.4064 L1870.0254 791.0936 L-465.4747 791.0936 L-465.4747 -605.4064 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath43"
+      ><path d="M-450.3365 -607.7505 L1885.1635 -607.7505 L1885.1635 788.7495 L-450.3365 788.7495 L-450.3365 -607.7505 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath44"
+      ><path d="M-474.9442 -691.6292 L1860.5558 -691.6292 L1860.5558 704.8708 L-474.9442 704.8708 L-474.9442 -691.6292 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath45"
+      ><path d="M-459.626 -693.9733 L1875.8739 -693.9733 L1875.8739 702.5267 L-459.626 702.5267 L-459.626 -693.9733 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath46"
+      ><path d="M-335.8753 -610.7046 L1999.6248 -610.7046 L1999.6248 785.7954 L-335.8753 785.7954 L-335.8753 -610.7046 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath47"
+      ><path d="M-326.9591 -757.4788 L2008.5409 -757.4788 L2008.5409 639.0212 L-326.9591 639.0212 L-326.9591 -757.4788 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath48"
+      ><path d="M-277.5962 -345.7223 L2057.9038 -345.7223 L2057.9038 1050.7777 L-277.5962 1050.7777 L-277.5962 -345.7223 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath49"
+      ><path d="M-305.5688 -1308.9011 L2029.9312 -1308.9011 L2029.9312 87.5988 L-305.5688 87.5988 L-305.5688 -1308.9011 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath50"
+      ><path d="M-211.5434 -1075.8518 L2123.9565 -1075.8518 L2123.9565 320.6482 L-211.5434 320.6482 L-211.5434 -1075.8518 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath51"
+      ><path d="M-185.1201 -1004.884 L2150.3799 -1004.884 L2150.3799 391.6159 L-185.1201 391.6159 L-185.1201 -1004.884 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath52"
+      ><path d="M-256.7214 -695.6802 L2078.7786 -695.6802 L2078.7786 700.8198 L-256.7214 700.8198 L-256.7214 -695.6802 Z"
+      /></clipPath
+    ></defs
+    ><g style="fill:white; stroke:white;"
+    ><rect x="0" y="0" width="3114" style="clip-path:url(#clipPath1); stroke:none;" height="1862"
+    /></g
+    ><g style="text-rendering:geometricPrecision; shape-rendering:crispEdges;" transform="scale(1.3333,1.3333) translate(142.4513,129.0988)"
+    ><rect x="-132.4513" y="-119.0988" width="2316.0342" style="fill:none; clip-path:url(#clipPath2);" height="1376.9614"
+      /><line x1="-41.2428" x2="-41.2428" y1="-118.0988" style="clip-path:url(#clipPath2); fill:none; text-rendering:optimizeLegibility; shape-rendering:auto;" y2="-102.7547"
+      /><line x1="-41.2428" x2="-51.2428" y1="-102.7547" style="clip-path:url(#clipPath2); fill:none; text-rendering:optimizeLegibility; shape-rendering:auto;" y2="-92.7547"
+      /><line x1="-51.2428" x2="-132.4513" y1="-92.7547" style="clip-path:url(#clipPath2); fill:none; text-rendering:optimizeLegibility; shape-rendering:auto;" y2="-92.7547"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(-94.9711,-100.0988)"
+    ><path d="M3.4531 -6.5469 Q4.625 -6.5469 5.1875 -6.0312 Q5.7656 -5.5156 5.7656 -4.375 L5.7656 0 L4.9844 0 L4.7812 -0.9062 L4.7344 -0.9062 Q4.3125 -0.3906 3.8438 -0.125 Q3.3906 0.125 2.5781 0.125 Q1.7031 0.125 1.125 -0.3281 Q0.5469 -0.7969 0.5469 -1.7812 Q0.5469 -2.75 1.2969 -3.2656 Q2.0625 -3.7969 3.6406 -3.8438 L4.7344 -3.875 L4.7344 -4.2656 Q4.7344 -5.0625 4.375 -5.375 Q4.0312 -5.6875 3.3906 -5.6875 Q2.8906 -5.6875 2.4375 -5.5312 Q1.9844 -5.3906 1.5781 -5.2031 L1.2656 -5.9844 Q1.6875 -6.2188 2.25 -6.375 Q2.8281 -6.5469 3.4531 -6.5469 ZM3.7656 -3.1094 Q2.5625 -3.0625 2.0938 -2.7188 Q1.6406 -2.3906 1.6406 -1.7812 Q1.6406 -1.2344 1.9688 -0.9844 Q2.2969 -0.7344 2.8125 -0.7344 Q3.6406 -0.7344 4.1719 -1.1719 Q4.7188 -1.625 4.7188 -2.5625 L4.7188 -3.1406 L3.7656 -3.1094 ZM10.8414 -6.5469 Q11.9977 -6.5469 12.5758 -5.9844 Q13.1695 -5.4375 13.1695 -4.1875 L13.1695 0 L12.1383 0 L12.1383 -4.1094 Q12.1383 -5.6562 10.6852 -5.6562 Q9.6227 -5.6562 9.2164 -5.0625 Q8.8102 -4.4688 8.8102 -3.3438 L8.8102 0 L7.7477 0 L7.7477 -6.4375 L8.607 -6.4375 L8.7633 -5.5625 L8.8258 -5.5625 Q9.1383 -6.0625 9.6852 -6.2969 Q10.232 -6.5469 10.8414 -6.5469 ZM17.445 -6.5469 Q18.0856 -6.5469 18.5856 -6.3125 Q19.1012 -6.0781 19.4606 -5.5781 L19.5231 -5.5781 L19.6637 -6.4375 L20.5075 -6.4375 L20.5075 0.1094 Q20.5075 1.4844 19.8043 2.1719 Q19.1012 2.875 17.6325 2.875 Q16.2106 2.875 15.3043 2.4688 L15.3043 1.5 Q16.2575 2 17.695 2 Q18.5231 2 18.9918 1.5156 Q19.4606 1.0312 19.4606 0.1875 L19.4606 -0.0625 Q19.4606 -0.2031 19.4762 -0.4688 Q19.4918 -0.75 19.5075 -0.8594 L19.445 -0.8594 Q18.8043 0.125 17.4606 0.125 Q16.2106 0.125 15.5075 -0.75 Q14.8043 -1.625 14.8043 -3.2031 Q14.8043 -4.7344 15.5075 -5.6406 Q16.2106 -6.5469 17.445 -6.5469 ZM17.5856 -5.6562 Q16.7887 -5.6562 16.3356 -5.0156 Q15.8981 -4.375 15.8981 -3.1875 Q15.8981 -2 16.3356 -1.375 Q16.7731 -0.75 17.6168 -0.75 Q18.5856 -0.75 19.0231 -1.2656 Q19.4762 -1.7812 19.4762 -2.9531 L19.4762 -3.2031 Q19.4762 -4.5312 19.0231 -5.0938 Q18.57 -5.6562 17.5856 -5.6562 ZM27.9188 -6.4375 L27.9188 0 L27.0594 0 L26.9031 -0.8594 L26.8563 -0.8594 Q26.5438 -0.3438 25.9813 -0.1094 Q25.4344 0.125 24.8094 0.125 Q23.6531 0.125 23.0594 -0.4375 Q22.4813 -1 22.4813 -2.2188 L22.4813 -6.4375 L23.5438 -6.4375 L23.5438 -2.2969 Q23.5438 -0.75 24.9656 -0.75 Q26.0438 -0.75 26.45 -1.3438 Q26.8719 -1.9531 26.8719 -3.0781 L26.8719 -6.4375 L27.9188 -6.4375 ZM31.0223 0 L29.9598 0 L29.9598 -9.125 L31.0223 -9.125 L31.0223 0 ZM35.4933 -6.5469 Q36.6652 -6.5469 37.2277 -6.0312 Q37.8058 -5.5156 37.8058 -4.375 L37.8058 0 L37.0246 0 L36.8215 -0.9062 L36.7746 -0.9062 Q36.3527 -0.3906 35.884 -0.125 Q35.4308 0.125 34.6183 0.125 Q33.7433 0.125 33.1652 -0.3281 Q32.5871 -0.7969 32.5871 -1.7812 Q32.5871 -2.75 33.3371 -3.2656 Q34.1027 -3.7969 35.6808 -3.8438 L36.7746 -3.875 L36.7746 -4.2656 Q36.7746 -5.0625 36.4152 -5.375 Q36.0715 -5.6875 35.4308 -5.6875 Q34.9308 -5.6875 34.4777 -5.5312 Q34.0246 -5.3906 33.6183 -5.2031 L33.3058 -5.9844 Q33.7277 -6.2188 34.2902 -6.375 Q34.8683 -6.5469 35.4933 -6.5469 ZM35.8058 -3.1094 Q34.6027 -3.0625 34.134 -2.7188 Q33.6808 -2.3906 33.6808 -1.7812 Q33.6808 -1.2344 34.009 -0.9844 Q34.3371 -0.7344 34.8527 -0.7344 Q35.6808 -0.7344 36.2121 -1.1719 Q36.759 -1.625 36.759 -2.5625 L36.759 -3.1406 L35.8058 -3.1094 ZM42.7879 -6.5469 Q42.9754 -6.5469 43.1785 -6.5312 Q43.3972 -6.5156 43.5535 -6.4844 L43.4129 -5.5156 Q43.2566 -5.5469 43.0691 -5.5625 Q42.8816 -5.5938 42.7254 -5.5938 Q42.2254 -5.5938 41.7879 -5.3125 Q41.366 -5.0469 41.1004 -4.5625 Q40.8504 -4.0781 40.8504 -3.4375 L40.8504 0 L39.7879 0 L39.7879 -6.4375 L40.6629 -6.4375 L40.7722 -5.25 L40.8191 -5.25 Q41.1316 -5.7812 41.616 -6.1562 Q42.116 -6.5469 42.7879 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath3);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(-122.4513,-100.0988)"
+    ><path d="M3.5938 0.125 Q2.1406 0.125 1.3438 -0.6875 Q0.5469 -1.5 0.5469 -3.2344 Q0.5469 -4.4375 0.9531 -5.1875 Q1.3594 -5.9531 2.0781 -6.3125 Q2.8125 -6.6719 3.75 -6.6719 Q4.4219 -6.6719 4.9219 -6.5312 Q5.4219 -6.4062 5.7969 -6.2344 L5.2656 -4.8438 Q4.8438 -5.0156 4.4688 -5.125 Q4.1094 -5.2344 3.75 -5.2344 Q2.3594 -5.2344 2.3594 -3.25 Q2.3594 -2.2656 2.7188 -1.7969 Q3.0938 -1.3281 3.75 -1.3281 Q4.3125 -1.3281 4.75 -1.4688 Q5.1875 -1.625 5.5938 -1.8906 L5.5938 -0.375 Q5.1875 -0.1094 4.7344 0 Q4.2812 0.125 3.5938 0.125 ZM14.793 -6.6719 Q15.918 -6.6719 16.4805 -6.0938 Q17.0587 -5.5312 17.0587 -4.2656 L17.0587 0 L15.2618 0 L15.2618 -3.8281 Q15.2618 -5.25 14.2774 -5.25 Q13.5743 -5.25 13.2618 -4.7344 Q12.9649 -4.2344 12.9649 -3.2812 L12.9649 0 L11.1837 0 L11.1837 -3.8281 Q11.1837 -5.25 10.1993 -5.25 Q9.4493 -5.25 9.168 -4.6875 Q8.8868 -4.125 8.8868 -3.0781 L8.8868 0 L7.1055 0 L7.1055 -6.5469 L8.4649 -6.5469 L8.7149 -5.7188 L8.8087 -5.7188 Q9.1055 -6.2188 9.6212 -6.4375 Q10.1524 -6.6719 10.7149 -6.6719 Q11.4337 -6.6719 11.9337 -6.4375 Q12.4493 -6.2031 12.7149 -5.7188 L12.8712 -5.7188 Q13.168 -6.2188 13.6993 -6.4375 Q14.2305 -6.6719 14.793 -6.6719 ZM22.5303 -6.6719 Q23.6396 -6.6719 24.3271 -5.8125 Q25.0146 -4.9531 25.0146 -3.2812 Q25.0146 -1.625 24.2959 -0.75 Q23.5928 0.125 22.4834 0.125 Q21.7803 0.125 21.3584 -0.125 Q20.9365 -0.3906 20.6709 -0.7188 L20.5771 -0.7188 Q20.6709 -0.2188 20.6709 0.2344 L20.6709 2.875 L18.8896 2.875 L18.8896 -6.5469 L20.3428 -6.5469 L20.5928 -5.7031 L20.6709 -5.7031 Q20.9365 -6.0938 21.374 -6.375 Q21.8271 -6.6719 22.5303 -6.6719 ZM21.9678 -5.25 Q21.2646 -5.25 20.9834 -4.8125 Q20.7021 -4.375 20.6709 -3.4844 L20.6709 -3.2969 Q20.6709 -2.3594 20.9521 -1.8438 Q21.2334 -1.3281 21.9834 -1.3281 Q22.5928 -1.3281 22.8896 -1.8438 Q23.1865 -2.3594 23.1865 -3.3125 Q23.1865 -5.25 21.9678 -5.25 Z" style="stroke:none; clip-path:url(#clipPath4);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="1259.3065" y="256.5771" width="126" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="1259.3065" y="256.5771" width="126" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1288.3065,274.5771)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath5);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1269.3065,290.9212)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM32.295 -7.1719 Q31.2481 -7.1719 30.6856 -6.3906 Q30.1387 -5.6094 30.1387 -4.2656 Q30.1387 -2.8906 30.6543 -2.1406 Q31.17 -1.3906 32.295 -1.3906 Q32.8262 -1.3906 33.3418 -1.5 Q33.8575 -1.625 34.4825 -1.8438 L34.4825 -0.3281 Q33.92 -0.0938 33.3575 0.0156 Q32.8106 0.125 32.1231 0.125 Q30.8106 0.125 29.9512 -0.4219 Q29.0918 -0.9688 28.6856 -1.9531 Q28.2793 -2.9531 28.2793 -4.2656 Q28.2793 -5.5625 28.7325 -6.5625 Q29.2012 -7.5625 30.0918 -8.125 Q30.9981 -8.6875 32.295 -8.6875 Q32.9356 -8.6875 33.5762 -8.5156 Q34.2168 -8.3594 34.795 -8.0938 L34.2168 -6.6094 Q33.7325 -6.8438 33.2481 -7 Q32.7637 -7.1719 32.295 -7.1719 ZM37.939 0 L36.1578 0 L36.1578 -9.125 L37.939 -9.125 L37.939 0 ZM40.724 -9.125 Q41.1147 -9.125 41.3959 -8.9375 Q41.6928 -8.75 41.6928 -8.25 Q41.6928 -7.75 41.3959 -7.5625 Q41.1147 -7.375 40.724 -7.375 Q40.3022 -7.375 40.0209 -7.5625 Q39.7397 -7.75 39.7397 -8.25 Q39.7397 -8.75 40.0209 -8.9375 Q40.3022 -9.125 40.724 -9.125 ZM41.599 -6.5469 L41.599 0 L39.8178 0 L39.8178 -6.5469 L41.599 -6.5469 ZM46.1809 -6.6719 Q47.5247 -6.6719 48.3215 -5.8906 Q49.1184 -5.125 49.1184 -3.7031 L49.1184 -2.8281 L44.8997 -2.8281 Q44.9153 -2.0781 45.3372 -1.6406 Q45.7747 -1.2188 46.5247 -1.2188 Q47.1653 -1.2188 47.6809 -1.3438 Q48.1965 -1.4688 48.7434 -1.7344 L48.7434 -0.3438 Q48.259 -0.1094 47.7278 0 Q47.1965 0.125 46.4465 0.125 Q45.4622 0.125 44.6965 -0.2344 Q43.9465 -0.6094 43.509 -1.3438 Q43.0872 -2.0938 43.0872 -3.2344 Q43.0872 -4.375 43.4622 -5.1406 Q43.8528 -5.9062 44.5559 -6.2812 Q45.259 -6.6719 46.1809 -6.6719 ZM46.1809 -5.4062 Q45.6653 -5.4062 45.3215 -5.0625 Q44.9934 -4.7344 44.9309 -4.0156 L47.4309 -4.0156 Q47.4309 -4.625 47.1184 -5.0156 Q46.8215 -5.4062 46.1809 -5.4062 ZM54.2886 -6.6719 Q55.3511 -6.6719 55.9761 -6.0938 Q56.6167 -5.5312 56.6167 -4.2656 L56.6167 0 L54.8355 0 L54.8355 -3.8281 Q54.8355 -4.5312 54.5699 -4.8906 Q54.3199 -5.25 53.773 -5.25 Q52.9605 -5.25 52.648 -4.6875 Q52.3511 -4.125 52.3511 -3.0781 L52.3511 0 L50.5699 0 L50.5699 -6.5469 L51.9292 -6.5469 L52.1792 -5.7188 L52.273 -5.7188 Q52.5855 -6.2188 53.1324 -6.4375 Q53.6792 -6.6719 54.2886 -6.6719 ZM61.2195 -1.3125 Q61.5164 -1.3125 61.782 -1.3594 Q62.0633 -1.4219 62.3445 -1.5156 L62.3445 -0.1875 Q62.0477 -0.0625 61.6258 0.0312 Q61.2039 0.125 60.7039 0.125 Q60.1102 0.125 59.6414 -0.0625 Q59.1883 -0.2656 58.907 -0.7344 Q58.6414 -1.2188 58.6414 -2.0469 L58.6414 -5.2031 L57.7977 -5.2031 L57.7977 -5.9688 L58.782 -6.5625 L59.2977 -7.9375 L60.4383 -7.9375 L60.4383 -6.5469 L62.2664 -6.5469 L62.2664 -5.2031 L60.4383 -5.2031 L60.4383 -2.0469 Q60.4383 -1.6875 60.6414 -1.5 Q60.8602 -1.3125 61.2195 -1.3125 ZM68.8494 -2.375 Q68.8494 -1.2344 68.0213 -0.5469 Q67.2088 0.125 65.6932 0.125 Q64.3494 0.125 63.2713 -0.3906 L63.2713 -2.0938 Q63.8807 -1.8281 64.5369 -1.5938 Q65.1932 -1.375 65.8494 -1.375 Q66.5213 -1.375 66.8026 -1.625 Q67.0838 -1.8906 67.0838 -2.2969 Q67.0838 -2.6094 66.8494 -2.8438 Q66.6307 -3.0781 66.2557 -3.2656 Q65.8963 -3.4688 65.4119 -3.7031 Q65.1151 -3.8438 64.7557 -4.0312 Q64.4119 -4.2344 64.0994 -4.5312 Q63.7869 -4.8281 63.5682 -5.2344 Q63.3651 -5.6562 63.3651 -6.25 Q63.3651 -7.4062 64.1463 -8.0469 Q64.9276 -8.6875 66.2713 -8.6875 Q66.9432 -8.6875 67.5526 -8.5312 Q68.1619 -8.375 68.8182 -8.0938 L68.2401 -6.6719 Q67.6463 -6.9062 67.1776 -7.0312 Q66.7088 -7.1719 66.2088 -7.1719 Q65.6932 -7.1719 65.4119 -6.9375 Q65.1463 -6.7031 65.1463 -6.3125 Q65.1463 -5.8594 65.5526 -5.5938 Q65.9588 -5.3281 66.7713 -4.9375 Q67.4276 -4.625 67.8807 -4.2812 Q68.3494 -3.9531 68.5994 -3.5 Q68.8494 -3.0469 68.8494 -2.375 ZM72.9771 -6.6719 Q74.3209 -6.6719 75.1177 -5.8906 Q75.9146 -5.125 75.9146 -3.7031 L75.9146 -2.8281 L71.6959 -2.8281 Q71.7115 -2.0781 72.1334 -1.6406 Q72.5709 -1.2188 73.3209 -1.2188 Q73.9615 -1.2188 74.4771 -1.3438 Q74.9927 -1.4688 75.5396 -1.7344 L75.5396 -0.3438 Q75.0552 -0.1094 74.524 0 Q73.9927 0.125 73.2427 0.125 Q72.2584 0.125 71.4927 -0.2344 Q70.7427 -0.6094 70.3052 -1.3438 Q69.8834 -2.0938 69.8834 -3.2344 Q69.8834 -4.375 70.2584 -5.1406 Q70.649 -5.9062 71.3521 -6.2812 Q72.0552 -6.6719 72.9771 -6.6719 ZM72.9771 -5.4062 Q72.4615 -5.4062 72.1177 -5.0625 Q71.7896 -4.7344 71.7271 -4.0156 L74.2271 -4.0156 Q74.2271 -4.625 73.9146 -5.0156 Q73.6177 -5.4062 72.9771 -5.4062 ZM81.0223 -6.6719 Q81.1629 -6.6719 81.3348 -6.6562 Q81.5223 -6.6406 81.6317 -6.625 L81.491 -4.9375 Q81.4129 -4.9688 81.241 -4.9844 Q81.0848 -5 80.9598 -5 Q80.5067 -5 80.0848 -4.8438 Q79.6629 -4.6875 79.3973 -4.3125 Q79.1473 -3.9531 79.1473 -3.3438 L79.1473 0 L77.366 0 L77.366 -6.5469 L78.7254 -6.5469 L78.991 -5.4531 L79.0692 -5.4531 Q79.3504 -5.9531 79.8504 -6.3125 Q80.366 -6.6719 81.0223 -6.6719 ZM84.3766 0 L81.8766 -6.5469 L83.7516 -6.5469 L85.0016 -2.8125 Q85.111 -2.4844 85.1735 -2.125 Q85.2516 -1.7656 85.2672 -1.4688 L85.3141 -1.4688 Q85.3453 -2.125 85.5797 -2.8125 L86.8297 -6.5469 L88.7047 -6.5469 L86.2047 0 L84.3766 0 ZM90.5484 -9.125 Q90.939 -9.125 91.2203 -8.9375 Q91.5171 -8.75 91.5171 -8.25 Q91.5171 -7.75 91.2203 -7.5625 Q90.939 -7.375 90.5484 -7.375 Q90.1265 -7.375 89.8453 -7.5625 Q89.564 -7.75 89.564 -8.25 Q89.564 -8.75 89.8453 -8.9375 Q90.1265 -9.125 90.5484 -9.125 ZM91.4234 -6.5469 L91.4234 0 L89.6421 0 L89.6421 -6.5469 L91.4234 -6.5469 ZM95.9584 0.125 Q94.5053 0.125 93.7084 -0.6875 Q92.9115 -1.5 92.9115 -3.2344 Q92.9115 -4.4375 93.3178 -5.1875 Q93.724 -5.9531 94.4428 -6.3125 Q95.1772 -6.6719 96.1147 -6.6719 Q96.7865 -6.6719 97.2865 -6.5312 Q97.7865 -6.4062 98.1615 -6.2344 L97.6303 -4.8438 Q97.2084 -5.0156 96.8334 -5.125 Q96.474 -5.2344 96.1147 -5.2344 Q94.724 -5.2344 94.724 -3.25 Q94.724 -2.2656 95.0834 -1.7969 Q95.4584 -1.3281 96.1147 -1.3281 Q96.6772 -1.3281 97.1147 -1.4688 Q97.5522 -1.625 97.9584 -1.8906 L97.9584 -0.375 Q97.5522 -0.1094 97.099 0 Q96.6459 0.125 95.9584 0.125 ZM102.1733 -6.6719 Q103.5171 -6.6719 104.3139 -5.8906 Q105.1108 -5.125 105.1108 -3.7031 L105.1108 -2.8281 L100.8921 -2.8281 Q100.9077 -2.0781 101.3296 -1.6406 Q101.7671 -1.2188 102.5171 -1.2188 Q103.1577 -1.2188 103.6733 -1.3438 Q104.1889 -1.4688 104.7358 -1.7344 L104.7358 -0.3438 Q104.2514 -0.1094 103.7202 0 Q103.1889 0.125 102.4389 0.125 Q101.4546 0.125 100.6889 -0.2344 Q99.9389 -0.6094 99.5014 -1.3438 Q99.0796 -2.0938 99.0796 -3.2344 Q99.0796 -4.375 99.4546 -5.1406 Q99.8452 -5.9062 100.5483 -6.2812 Q101.2514 -6.6719 102.1733 -6.6719 ZM102.1733 -5.4062 Q101.6577 -5.4062 101.3139 -5.0625 Q100.9858 -4.7344 100.9233 -4.0156 L103.4233 -4.0156 Q103.4233 -4.625 103.1108 -5.0156 Q102.8139 -5.4062 102.1733 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath6);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="1252.9361" y="584.3548" width="148" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="1252.9361" y="584.3548" width="148" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1292.9361,602.3548)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1262.9361,618.699)"
+    ><path d="M3.75 -8.5625 Q5.4531 -8.5625 6.3281 -8.0781 Q7.2188 -7.6094 7.2188 -6.3906 Q7.2188 -5.6562 6.875 -5.1562 Q6.5312 -4.6562 5.8906 -4.5469 L5.8906 -4.4844 Q6.3281 -4.4062 6.6719 -4.1875 Q7.0156 -3.9688 7.2188 -3.5625 Q7.4219 -3.1562 7.4219 -2.4844 Q7.4219 -1.3125 6.5781 -0.6562 Q5.75 0 4.2812 0 L1.0781 0 L1.0781 -8.5625 L3.75 -8.5625 ZM3.9531 -5.1719 Q4.7344 -5.1719 5.0469 -5.4219 Q5.3594 -5.6719 5.3594 -6.1562 Q5.3594 -6.6406 4.9844 -6.8594 Q4.625 -7.0781 3.8594 -7.0781 L2.8906 -7.0781 L2.8906 -5.1719 L3.9531 -5.1719 ZM2.8906 -3.7344 L2.8906 -1.5 L4.0781 -1.5 Q4.8906 -1.5 5.2188 -1.8125 Q5.5469 -2.1406 5.5469 -2.6562 Q5.5469 -3.1406 5.2188 -3.4375 Q4.8906 -3.7344 4.0156 -3.7344 L2.8906 -3.7344 ZM14.9547 -3.2812 Q14.9547 -1.6562 14.0953 -0.7656 Q13.2359 0.125 11.7672 0.125 Q10.8453 0.125 10.1266 -0.2656 Q9.4234 -0.6719 9.0172 -1.4375 Q8.6109 -2.2031 8.6109 -3.2812 Q8.6109 -4.9219 9.4547 -5.7969 Q10.3141 -6.6719 11.7984 -6.6719 Q12.7203 -6.6719 13.4234 -6.2656 Q14.1422 -5.875 14.5484 -5.125 Q14.9547 -4.375 14.9547 -3.2812 ZM10.4234 -3.2812 Q10.4234 -2.3125 10.7359 -1.8125 Q11.0641 -1.3125 11.7828 -1.3125 Q12.4859 -1.3125 12.7984 -1.8125 Q13.1266 -2.3125 13.1266 -3.2812 Q13.1266 -4.2656 12.7984 -4.75 Q12.4859 -5.2344 11.7672 -5.2344 Q11.0641 -5.2344 10.7359 -4.75 Q10.4234 -4.2656 10.4234 -3.2812 ZM22.3827 -3.2812 Q22.3827 -1.6562 21.5234 -0.7656 Q20.664 0.125 19.1952 0.125 Q18.2734 0.125 17.5546 -0.2656 Q16.8515 -0.6719 16.4452 -1.4375 Q16.039 -2.2031 16.039 -3.2812 Q16.039 -4.9219 16.8827 -5.7969 Q17.7421 -6.6719 19.2265 -6.6719 Q20.1484 -6.6719 20.8515 -6.2656 Q21.5702 -5.875 21.9765 -5.125 Q22.3827 -4.375 22.3827 -3.2812 ZM17.8515 -3.2812 Q17.8515 -2.3125 18.164 -1.8125 Q18.4921 -1.3125 19.2109 -1.3125 Q19.914 -1.3125 20.2265 -1.8125 Q20.5546 -2.3125 20.5546 -3.2812 Q20.5546 -4.2656 20.2265 -4.75 Q19.914 -5.2344 19.1952 -5.2344 Q18.4921 -5.2344 18.164 -4.75 Q17.8515 -4.2656 17.8515 -3.2812 ZM25.6389 -5.0469 Q25.6389 -4.6719 25.6077 -4.2969 Q25.5764 -3.9375 25.5452 -3.5625 L25.5764 -3.5625 Q25.7483 -3.8125 25.9358 -4.0625 Q26.1389 -4.3281 26.3577 -4.5625 L28.1858 -6.5469 L30.2014 -6.5469 L27.6077 -3.7031 L30.3577 0 L28.2952 0 L26.4045 -2.6562 L25.6389 -2.0469 L25.6389 0 L23.8577 0 L23.8577 -9.125 L25.6389 -9.125 L25.6389 -5.0469 ZM32.204 -9.125 Q32.5946 -9.125 32.8758 -8.9375 Q33.1727 -8.75 33.1727 -8.25 Q33.1727 -7.75 32.8758 -7.5625 Q32.5946 -7.375 32.204 -7.375 Q31.7821 -7.375 31.5008 -7.5625 Q31.2196 -7.75 31.2196 -8.25 Q31.2196 -8.75 31.5008 -8.9375 Q31.7821 -9.125 32.204 -9.125 ZM33.079 -6.5469 L33.079 0 L31.2977 0 L31.2977 -6.5469 L33.079 -6.5469 ZM38.6765 -6.6719 Q39.739 -6.6719 40.364 -6.0938 Q41.0046 -5.5312 41.0046 -4.2656 L41.0046 0 L39.2234 0 L39.2234 -3.8281 Q39.2234 -4.5312 38.9577 -4.8906 Q38.7077 -5.25 38.1609 -5.25 Q37.3484 -5.25 37.0359 -4.6875 Q36.739 -4.125 36.739 -3.0781 L36.739 0 L34.9577 0 L34.9577 -6.5469 L36.3171 -6.5469 L36.5671 -5.7188 L36.6609 -5.7188 Q36.9734 -6.2188 37.5202 -6.4375 Q38.0671 -6.6719 38.6765 -6.6719 ZM44.9668 -6.6719 Q46.1699 -6.6719 46.8574 -5.7188 L46.9043 -5.7188 L47.0449 -6.5469 L48.5605 -6.5469 L48.5605 0.0156 Q48.5605 1.4219 47.7324 2.1406 Q46.9043 2.875 45.2949 2.875 Q44.5918 2.875 43.998 2.7969 Q43.4043 2.7188 42.8418 2.5 L42.8418 1.0625 Q44.0449 1.5781 45.3887 1.5781 Q46.7793 1.5781 46.7793 0.0781 L46.7793 -0.0469 Q46.7793 -0.25 46.7949 -0.4688 Q46.8105 -0.6875 46.8262 -0.8594 L46.7793 -0.8594 Q46.4355 -0.3438 45.9668 -0.1094 Q45.498 0.125 44.9199 0.125 Q43.748 0.125 43.0918 -0.7656 Q42.4512 -1.6719 42.4512 -3.2656 Q42.4512 -4.875 43.123 -5.7656 Q43.7949 -6.6719 44.9668 -6.6719 ZM45.5293 -5.2188 Q44.2637 -5.2188 44.2637 -3.2344 Q44.2637 -1.2812 45.5449 -1.2812 Q46.2324 -1.2812 46.5605 -1.6719 Q46.8887 -2.0625 46.8887 -3.0312 L46.8887 -3.25 Q46.8887 -4.3125 46.5605 -4.7656 Q46.248 -5.2188 45.5293 -5.2188 ZM54.2191 -7.1719 Q53.1722 -7.1719 52.6097 -6.3906 Q52.0628 -5.6094 52.0628 -4.2656 Q52.0628 -2.8906 52.5785 -2.1406 Q53.0941 -1.3906 54.2191 -1.3906 Q54.7503 -1.3906 55.266 -1.5 Q55.7816 -1.625 56.4066 -1.8438 L56.4066 -0.3281 Q55.8441 -0.0938 55.2816 0.0156 Q54.7347 0.125 54.0472 0.125 Q52.7347 0.125 51.8753 -0.4219 Q51.016 -0.9688 50.6097 -1.9531 Q50.2035 -2.9531 50.2035 -4.2656 Q50.2035 -5.5625 50.6566 -6.5625 Q51.1253 -7.5625 52.016 -8.125 Q52.9222 -8.6875 54.2191 -8.6875 Q54.8597 -8.6875 55.5003 -8.5156 Q56.141 -8.3594 56.7191 -8.0938 L56.141 -6.6094 Q55.6566 -6.8438 55.1722 -7 Q54.6878 -7.1719 54.2191 -7.1719 ZM59.8631 0 L58.0819 0 L58.0819 -9.125 L59.8631 -9.125 L59.8631 0 ZM62.6482 -9.125 Q63.0388 -9.125 63.32 -8.9375 Q63.6169 -8.75 63.6169 -8.25 Q63.6169 -7.75 63.32 -7.5625 Q63.0388 -7.375 62.6482 -7.375 Q62.2263 -7.375 61.945 -7.5625 Q61.6638 -7.75 61.6638 -8.25 Q61.6638 -8.75 61.945 -8.9375 Q62.2263 -9.125 62.6482 -9.125 ZM63.5232 -6.5469 L63.5232 0 L61.7419 0 L61.7419 -6.5469 L63.5232 -6.5469 ZM68.1051 -6.6719 Q69.4488 -6.6719 70.2457 -5.8906 Q71.0426 -5.125 71.0426 -3.7031 L71.0426 -2.8281 L66.8238 -2.8281 Q66.8394 -2.0781 67.2613 -1.6406 Q67.6988 -1.2188 68.4488 -1.2188 Q69.0894 -1.2188 69.6051 -1.3438 Q70.1207 -1.4688 70.6676 -1.7344 L70.6676 -0.3438 Q70.1832 -0.1094 69.6519 0 Q69.1207 0.125 68.3707 0.125 Q67.3863 0.125 66.6207 -0.2344 Q65.8707 -0.6094 65.4332 -1.3438 Q65.0113 -2.0938 65.0113 -3.2344 Q65.0113 -4.375 65.3863 -5.1406 Q65.7769 -5.9062 66.4801 -6.2812 Q67.1832 -6.6719 68.1051 -6.6719 ZM68.1051 -5.4062 Q67.5894 -5.4062 67.2457 -5.0625 Q66.9176 -4.7344 66.8551 -4.0156 L69.3551 -4.0156 Q69.3551 -4.625 69.0426 -5.0156 Q68.7457 -5.4062 68.1051 -5.4062 ZM76.2127 -6.6719 Q77.2752 -6.6719 77.9002 -6.0938 Q78.5409 -5.5312 78.5409 -4.2656 L78.5409 0 L76.7596 0 L76.7596 -3.8281 Q76.7596 -4.5312 76.494 -4.8906 Q76.244 -5.25 75.6971 -5.25 Q74.8846 -5.25 74.5721 -4.6875 Q74.2752 -4.125 74.2752 -3.0781 L74.2752 0 L72.494 0 L72.494 -6.5469 L73.8534 -6.5469 L74.1034 -5.7188 L74.1971 -5.7188 Q74.5096 -6.2188 75.0565 -6.4375 Q75.6034 -6.6719 76.2127 -6.6719 ZM83.1437 -1.3125 Q83.4405 -1.3125 83.7062 -1.3594 Q83.9874 -1.4219 84.2687 -1.5156 L84.2687 -0.1875 Q83.9718 -0.0625 83.5499 0.0312 Q83.128 0.125 82.628 0.125 Q82.0343 0.125 81.5655 -0.0625 Q81.1124 -0.2656 80.8312 -0.7344 Q80.5655 -1.2188 80.5655 -2.0469 L80.5655 -5.2031 L79.7218 -5.2031 L79.7218 -5.9688 L80.7062 -6.5625 L81.2218 -7.9375 L82.3624 -7.9375 L82.3624 -6.5469 L84.1905 -6.5469 L84.1905 -5.2031 L82.3624 -5.2031 L82.3624 -2.0469 Q82.3624 -1.6875 82.5655 -1.5 Q82.7843 -1.3125 83.1437 -1.3125 ZM90.7736 -2.375 Q90.7736 -1.2344 89.9454 -0.5469 Q89.1329 0.125 87.6173 0.125 Q86.2736 0.125 85.1954 -0.3906 L85.1954 -2.0938 Q85.8048 -1.8281 86.4611 -1.5938 Q87.1173 -1.375 87.7736 -1.375 Q88.4454 -1.375 88.7267 -1.625 Q89.0079 -1.8906 89.0079 -2.2969 Q89.0079 -2.6094 88.7736 -2.8438 Q88.5548 -3.0781 88.1798 -3.2656 Q87.8204 -3.4688 87.3361 -3.7031 Q87.0392 -3.8438 86.6798 -4.0312 Q86.3361 -4.2344 86.0236 -4.5312 Q85.7111 -4.8281 85.4923 -5.2344 Q85.2892 -5.6562 85.2892 -6.25 Q85.2892 -7.4062 86.0704 -8.0469 Q86.8517 -8.6875 88.1954 -8.6875 Q88.8673 -8.6875 89.4767 -8.5312 Q90.0861 -8.375 90.7423 -8.0938 L90.1642 -6.6719 Q89.5704 -6.9062 89.1017 -7.0312 Q88.6329 -7.1719 88.1329 -7.1719 Q87.6173 -7.1719 87.3361 -6.9375 Q87.0704 -6.7031 87.0704 -6.3125 Q87.0704 -5.8594 87.4767 -5.5938 Q87.8829 -5.3281 88.6954 -4.9375 Q89.3517 -4.625 89.8048 -4.2812 Q90.2736 -3.9531 90.5236 -3.5 Q90.7736 -3.0469 90.7736 -2.375 ZM94.9012 -6.6719 Q96.245 -6.6719 97.0419 -5.8906 Q97.8387 -5.125 97.8387 -3.7031 L97.8387 -2.8281 L93.62 -2.8281 Q93.6356 -2.0781 94.0575 -1.6406 Q94.495 -1.2188 95.245 -1.2188 Q95.8856 -1.2188 96.4012 -1.3438 Q96.9169 -1.4688 97.4637 -1.7344 L97.4637 -0.3438 Q96.9794 -0.1094 96.4481 0 Q95.9169 0.125 95.1669 0.125 Q94.1825 0.125 93.4169 -0.2344 Q92.6669 -0.6094 92.2294 -1.3438 Q91.8075 -2.0938 91.8075 -3.2344 Q91.8075 -4.375 92.1825 -5.1406 Q92.5731 -5.9062 93.2762 -6.2812 Q93.9794 -6.6719 94.9012 -6.6719 ZM94.9012 -5.4062 Q94.3856 -5.4062 94.0419 -5.0625 Q93.7137 -4.7344 93.6512 -4.0156 L96.1512 -4.0156 Q96.1512 -4.625 95.8387 -5.0156 Q95.5419 -5.4062 94.9012 -5.4062 ZM102.9464 -6.6719 Q103.0871 -6.6719 103.2589 -6.6562 Q103.4464 -6.6406 103.5558 -6.625 L103.4152 -4.9375 Q103.3371 -4.9688 103.1652 -4.9844 Q103.0089 -5 102.8839 -5 Q102.4308 -5 102.0089 -4.8438 Q101.5871 -4.6875 101.3214 -4.3125 Q101.0714 -3.9531 101.0714 -3.3438 L101.0714 0 L99.2902 0 L99.2902 -6.5469 L100.6496 -6.5469 L100.9152 -5.4531 L100.9933 -5.4531 Q101.2746 -5.9531 101.7746 -6.3125 Q102.2902 -6.6719 102.9464 -6.6719 ZM106.3007 0 L103.8007 -6.5469 L105.6757 -6.5469 L106.9257 -2.8125 Q107.0351 -2.4844 107.0976 -2.125 Q107.1757 -1.7656 107.1913 -1.4688 L107.2382 -1.4688 Q107.2695 -2.125 107.5038 -2.8125 L108.7538 -6.5469 L110.6288 -6.5469 L108.1288 0 L106.3007 0 ZM112.4725 -9.125 Q112.8631 -9.125 113.1444 -8.9375 Q113.4413 -8.75 113.4413 -8.25 Q113.4413 -7.75 113.1444 -7.5625 Q112.8631 -7.375 112.4725 -7.375 Q112.0506 -7.375 111.7694 -7.5625 Q111.4881 -7.75 111.4881 -8.25 Q111.4881 -8.75 111.7694 -8.9375 Q112.0506 -9.125 112.4725 -9.125 ZM113.3475 -6.5469 L113.3475 0 L111.5663 0 L111.5663 -6.5469 L113.3475 -6.5469 ZM117.8825 0.125 Q116.4294 0.125 115.6325 -0.6875 Q114.8357 -1.5 114.8357 -3.2344 Q114.8357 -4.4375 115.2419 -5.1875 Q115.6482 -5.9531 116.3669 -6.3125 Q117.1013 -6.6719 118.0388 -6.6719 Q118.7107 -6.6719 119.2107 -6.5312 Q119.7107 -6.4062 120.0857 -6.2344 L119.5544 -4.8438 Q119.1325 -5.0156 118.7575 -5.125 Q118.3982 -5.2344 118.0388 -5.2344 Q116.6482 -5.2344 116.6482 -3.25 Q116.6482 -2.2656 117.0075 -1.7969 Q117.3825 -1.3281 118.0388 -1.3281 Q118.6013 -1.3281 119.0388 -1.4688 Q119.4763 -1.625 119.8825 -1.8906 L119.8825 -0.375 Q119.4763 -0.1094 119.0232 0 Q118.57 0.125 117.8825 0.125 ZM124.0975 -6.6719 Q125.4412 -6.6719 126.2381 -5.8906 Q127.035 -5.125 127.035 -3.7031 L127.035 -2.8281 L122.8162 -2.8281 Q122.8318 -2.0781 123.2537 -1.6406 Q123.6912 -1.2188 124.4412 -1.2188 Q125.0818 -1.2188 125.5975 -1.3438 Q126.1131 -1.4688 126.66 -1.7344 L126.66 -0.3438 Q126.1756 -0.1094 125.6443 0 Q125.1131 0.125 124.3631 0.125 Q123.3787 0.125 122.6131 -0.2344 Q121.8631 -0.6094 121.4256 -1.3438 Q121.0037 -2.0938 121.0037 -3.2344 Q121.0037 -4.375 121.3787 -5.1406 Q121.7693 -5.9062 122.4725 -6.2812 Q123.1756 -6.6719 124.0975 -6.6719 ZM124.0975 -5.4062 Q123.5818 -5.4062 123.2381 -5.0625 Q122.91 -4.7344 122.8475 -4.0156 L125.3475 -4.0156 Q125.3475 -4.625 125.035 -5.0156 Q124.7381 -5.4062 124.0975 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath8);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><path d="M1644.6048 447.9465 A10 10 0 0 0 1644.6048 467.265" style="fill:none; clip-path:url(#clipPath2);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1636.693,481.6058)"
+    ><path d="M6.3281 0 L5.7031 -2.0469 L2.5781 -2.0469 L1.9531 0 L0 0 L3.0312 -8.6094 L5.25 -8.6094 L8.2812 0 L6.3281 0 ZM4.6406 -5.5625 Q4.5781 -5.7656 4.4844 -6.0781 Q4.3906 -6.3906 4.2969 -6.7031 Q4.2031 -7.0312 4.1406 -7.2656 Q4.0781 -7.0312 3.9688 -6.6719 Q3.875 -6.3281 3.7812 -6 Q3.7031 -5.6875 3.6406 -5.5625 L3.0312 -3.5625 L5.2656 -3.5625 L4.6406 -5.5625 ZM12.0926 -8.5625 Q13.7488 -8.5625 14.5144 -7.8438 Q15.2801 -7.1406 15.2801 -5.8906 Q15.2801 -5.1406 14.9676 -4.4844 Q14.6551 -3.8438 13.9207 -3.4375 Q13.2019 -3.0469 11.9519 -3.0469 L11.1707 -3.0469 L11.1707 0 L9.3582 0 L9.3582 -8.5625 L12.0926 -8.5625 ZM11.9988 -7.0781 L11.1707 -7.0781 L11.1707 -4.5312 L11.7644 -4.5312 Q12.5457 -4.5312 12.9832 -4.8281 Q13.4363 -5.1406 13.4363 -5.8281 Q13.4363 -7.0781 11.9988 -7.0781 ZM20.0974 0 L16.2067 0 L16.2067 -1.0312 L17.238 -1.5156 L17.238 -7.0625 L16.2067 -7.5312 L16.2067 -8.5625 L20.0974 -8.5625 L20.0974 -7.5312 L19.0505 -7.0625 L19.0505 -1.5156 L20.0974 -1.0312 L20.0974 0 Z" style="stroke:none; clip-path:url(#clipPath9);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="653.6798" y="-27.4568" width="140.8169" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="653.6798" y="-27.4568" width="140.8169" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(690.0882,-9.4568)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath10);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(663.6798,6.8874)"
+    ><path d="M1.0781 0 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -1.5 L6.375 -1.5 L6.375 0 L1.0781 0 ZM13.6707 -3.2812 Q13.6707 -1.6562 12.8113 -0.7656 Q11.9519 0.125 10.4832 0.125 Q9.5613 0.125 8.8425 -0.2656 Q8.1394 -0.6719 7.7332 -1.4375 Q7.3269 -2.2031 7.3269 -3.2812 Q7.3269 -4.9219 8.1707 -5.7969 Q9.03 -6.6719 10.5144 -6.6719 Q11.4363 -6.6719 12.1394 -6.2656 Q12.8582 -5.875 13.2644 -5.125 Q13.6707 -4.375 13.6707 -3.2812 ZM9.1394 -3.2812 Q9.1394 -2.3125 9.4519 -1.8125 Q9.78 -1.3125 10.4988 -1.3125 Q11.2019 -1.3125 11.5144 -1.8125 Q11.8425 -2.3125 11.8425 -3.2812 Q11.8425 -4.2656 11.5144 -4.75 Q11.2019 -5.2344 10.4832 -5.2344 Q9.78 -5.2344 9.4519 -4.75 Q9.1394 -4.2656 9.1394 -3.2812 ZM17.8018 0.125 Q16.3487 0.125 15.5518 -0.6875 Q14.755 -1.5 14.755 -3.2344 Q14.755 -4.4375 15.1612 -5.1875 Q15.5675 -5.9531 16.2862 -6.3125 Q17.0206 -6.6719 17.9581 -6.6719 Q18.63 -6.6719 19.13 -6.5312 Q19.63 -6.4062 20.005 -6.2344 L19.4737 -4.8438 Q19.0518 -5.0156 18.6768 -5.125 Q18.3175 -5.2344 17.9581 -5.2344 Q16.5675 -5.2344 16.5675 -3.25 Q16.5675 -2.2656 16.9268 -1.7969 Q17.3018 -1.3281 17.9581 -1.3281 Q18.5206 -1.3281 18.9581 -1.4688 Q19.3956 -1.625 19.8018 -1.8906 L19.8018 -0.375 Q19.3956 -0.1094 18.9425 0 Q18.4893 0.125 17.8018 0.125 ZM24.0011 -6.6875 Q25.3136 -6.6875 26.0168 -6.1094 Q26.7199 -5.5469 26.7199 -4.375 L26.7199 0 L25.4699 0 L25.1261 -0.8906 L25.0793 -0.8906 Q24.6574 -0.3594 24.1886 -0.1094 Q23.7199 0.125 22.9074 0.125 Q22.0324 0.125 21.4543 -0.3906 Q20.8761 -0.9062 20.8761 -1.9531 Q20.8761 -3 21.6105 -3.5 Q22.3449 -4 23.8136 -4.0469 L24.9543 -4.0781 L24.9543 -4.375 Q24.9543 -4.8906 24.673 -5.125 Q24.4074 -5.3594 23.923 -5.3594 Q23.4543 -5.3594 22.9855 -5.2188 Q22.5324 -5.0938 22.0793 -4.8906 L21.4855 -6.0938 Q22.0168 -6.375 22.6574 -6.5312 Q23.298 -6.6875 24.0011 -6.6875 ZM24.2511 -3.0156 Q23.3918 -2.9844 23.048 -2.6875 Q22.7199 -2.4062 22.7199 -1.9375 Q22.7199 -1.5312 22.9543 -1.3594 Q23.1886 -1.1875 23.5793 -1.1875 Q24.1574 -1.1875 24.548 -1.5312 Q24.9543 -1.875 24.9543 -2.5 L24.9543 -3.0312 L24.2511 -3.0156 ZM30.3429 0 L28.5617 0 L28.5617 -9.125 L30.3429 -9.125 L30.3429 0 ZM37.4092 -2.375 Q37.4092 -1.2344 36.5811 -0.5469 Q35.7686 0.125 34.253 0.125 Q32.9092 0.125 31.8311 -0.3906 L31.8311 -2.0938 Q32.4405 -1.8281 33.0967 -1.5938 Q33.753 -1.375 34.4092 -1.375 Q35.0811 -1.375 35.3623 -1.625 Q35.6436 -1.8906 35.6436 -2.2969 Q35.6436 -2.6094 35.4092 -2.8438 Q35.1905 -3.0781 34.8155 -3.2656 Q34.4561 -3.4688 33.9717 -3.7031 Q33.6748 -3.8438 33.3155 -4.0312 Q32.9717 -4.2344 32.6592 -4.5312 Q32.3467 -4.8281 32.128 -5.2344 Q31.9248 -5.6562 31.9248 -6.25 Q31.9248 -7.4062 32.7061 -8.0469 Q33.4873 -8.6875 34.8311 -8.6875 Q35.503 -8.6875 36.1123 -8.5312 Q36.7217 -8.375 37.378 -8.0938 L36.7998 -6.6719 Q36.2061 -6.9062 35.7373 -7.0312 Q35.2686 -7.1719 34.7686 -7.1719 Q34.253 -7.1719 33.9717 -6.9375 Q33.7061 -6.7031 33.7061 -6.3125 Q33.7061 -5.8594 34.1123 -5.5938 Q34.5186 -5.3281 35.3311 -4.9375 Q35.9873 -4.625 36.4405 -4.2812 Q36.9092 -3.9531 37.1592 -3.5 Q37.4092 -3.0469 37.4092 -2.375 ZM41.5994 -1.3125 Q41.8963 -1.3125 42.1619 -1.3594 Q42.4431 -1.4219 42.7244 -1.5156 L42.7244 -0.1875 Q42.4275 -0.0625 42.0056 0.0312 Q41.5838 0.125 41.0838 0.125 Q40.49 0.125 40.0213 -0.0625 Q39.5681 -0.2656 39.2869 -0.7344 Q39.0213 -1.2188 39.0213 -2.0469 L39.0213 -5.2031 L38.1775 -5.2031 L38.1775 -5.9688 L39.1619 -6.5625 L39.6775 -7.9375 L40.8181 -7.9375 L40.8181 -6.5469 L42.6463 -6.5469 L42.6463 -5.2031 L40.8181 -5.2031 L40.8181 -2.0469 Q40.8181 -1.6875 41.0213 -1.5 Q41.24 -1.3125 41.5994 -1.3125 ZM49.9949 -3.2812 Q49.9949 -1.6562 49.1355 -0.7656 Q48.2762 0.125 46.8074 0.125 Q45.8855 0.125 45.1668 -0.2656 Q44.4637 -0.6719 44.0574 -1.4375 Q43.6512 -2.2031 43.6512 -3.2812 Q43.6512 -4.9219 44.4949 -5.7969 Q45.3543 -6.6719 46.8387 -6.6719 Q47.7605 -6.6719 48.4637 -6.2656 Q49.1824 -5.875 49.5887 -5.125 Q49.9949 -4.375 49.9949 -3.2812 ZM45.4637 -3.2812 Q45.4637 -2.3125 45.7762 -1.8125 Q46.1043 -1.3125 46.823 -1.3125 Q47.5262 -1.3125 47.8387 -1.8125 Q48.1668 -2.3125 48.1668 -3.2812 Q48.1668 -4.2656 47.8387 -4.75 Q47.5262 -5.2344 46.8074 -5.2344 Q46.1043 -5.2344 45.7762 -4.75 Q45.4637 -4.2656 45.4637 -3.2812 ZM55.1261 -6.6719 Q55.2667 -6.6719 55.4386 -6.6562 Q55.6261 -6.6406 55.7355 -6.625 L55.5948 -4.9375 Q55.5167 -4.9688 55.3448 -4.9844 Q55.1886 -5 55.0636 -5 Q54.6105 -5 54.1886 -4.8438 Q53.7667 -4.6875 53.5011 -4.3125 Q53.2511 -3.9531 53.2511 -3.3438 L53.2511 0 L51.4698 0 L51.4698 -6.5469 L52.8292 -6.5469 L53.0948 -5.4531 L53.173 -5.4531 Q53.4542 -5.9531 53.9542 -6.3125 Q54.4698 -6.6719 55.1261 -6.6719 ZM59.6054 -6.6875 Q60.9179 -6.6875 61.621 -6.1094 Q62.3241 -5.5469 62.3241 -4.375 L62.3241 0 L61.0741 0 L60.7304 -0.8906 L60.6835 -0.8906 Q60.2616 -0.3594 59.7929 -0.1094 Q59.3241 0.125 58.5116 0.125 Q57.6366 0.125 57.0585 -0.3906 Q56.4804 -0.9062 56.4804 -1.9531 Q56.4804 -3 57.2148 -3.5 Q57.9491 -4 59.4179 -4.0469 L60.5585 -4.0781 L60.5585 -4.375 Q60.5585 -4.8906 60.2773 -5.125 Q60.0116 -5.3594 59.5273 -5.3594 Q59.0585 -5.3594 58.5898 -5.2188 Q58.1366 -5.0938 57.6835 -4.8906 L57.0898 -6.0938 Q57.621 -6.375 58.2616 -6.5312 Q58.9023 -6.6875 59.6054 -6.6875 ZM59.8554 -3.0156 Q58.996 -2.9844 58.6523 -2.6875 Q58.3241 -2.4062 58.3241 -1.9375 Q58.3241 -1.5312 58.5585 -1.3594 Q58.7929 -1.1875 59.1835 -1.1875 Q59.7616 -1.1875 60.1523 -1.5312 Q60.5585 -1.875 60.5585 -2.5 L60.5585 -3.0312 L59.8554 -3.0156 ZM66.2909 -6.6719 Q67.4941 -6.6719 68.1816 -5.7188 L68.2284 -5.7188 L68.3691 -6.5469 L69.8847 -6.5469 L69.8847 0.0156 Q69.8847 1.4219 69.0566 2.1406 Q68.2284 2.875 66.6191 2.875 Q65.9159 2.875 65.3222 2.7969 Q64.7284 2.7188 64.1659 2.5 L64.1659 1.0625 Q65.3691 1.5781 66.7128 1.5781 Q68.1034 1.5781 68.1034 0.0781 L68.1034 -0.0469 Q68.1034 -0.25 68.1191 -0.4688 Q68.1347 -0.6875 68.1503 -0.8594 L68.1034 -0.8594 Q67.7597 -0.3438 67.2909 -0.1094 Q66.8222 0.125 66.2441 0.125 Q65.0722 0.125 64.4159 -0.7656 Q63.7753 -1.6719 63.7753 -3.2656 Q63.7753 -4.875 64.4472 -5.7656 Q65.1191 -6.6719 66.2909 -6.6719 ZM66.8534 -5.2188 Q65.5878 -5.2188 65.5878 -3.2344 Q65.5878 -1.2812 66.8691 -1.2812 Q67.5566 -1.2812 67.8847 -1.6719 Q68.2128 -2.0625 68.2128 -3.0312 L68.2128 -3.25 Q68.2128 -4.3125 67.8847 -4.7656 Q67.5722 -5.2188 66.8534 -5.2188 ZM74.4651 -6.6719 Q75.8089 -6.6719 76.6057 -5.8906 Q77.4026 -5.125 77.4026 -3.7031 L77.4026 -2.8281 L73.1839 -2.8281 Q73.1995 -2.0781 73.6214 -1.6406 Q74.0589 -1.2188 74.8089 -1.2188 Q75.4495 -1.2188 75.9651 -1.3438 Q76.4807 -1.4688 77.0276 -1.7344 L77.0276 -0.3438 Q76.5432 -0.1094 76.012 0 Q75.4807 0.125 74.7307 0.125 Q73.7464 0.125 72.9807 -0.2344 Q72.2307 -0.6094 71.7932 -1.3438 Q71.3714 -2.0938 71.3714 -3.2344 Q71.3714 -4.375 71.7464 -5.1406 Q72.137 -5.9062 72.8401 -6.2812 Q73.5432 -6.6719 74.4651 -6.6719 ZM74.4651 -5.4062 Q73.9495 -5.4062 73.6057 -5.0625 Q73.2776 -4.7344 73.2151 -4.0156 L75.7151 -4.0156 Q75.7151 -4.625 75.4026 -5.0156 Q75.1057 -5.4062 74.4651 -5.4062 ZM84.0415 -2.375 Q84.0415 -1.2344 83.2134 -0.5469 Q82.4009 0.125 80.8853 0.125 Q79.5415 0.125 78.4634 -0.3906 L78.4634 -2.0938 Q79.0728 -1.8281 79.729 -1.5938 Q80.3853 -1.375 81.0415 -1.375 Q81.7134 -1.375 81.9947 -1.625 Q82.2759 -1.8906 82.2759 -2.2969 Q82.2759 -2.6094 82.0415 -2.8438 Q81.8228 -3.0781 81.4478 -3.2656 Q81.0884 -3.4688 80.604 -3.7031 Q80.3072 -3.8438 79.9478 -4.0312 Q79.604 -4.2344 79.2915 -4.5312 Q78.979 -4.8281 78.7603 -5.2344 Q78.5572 -5.6562 78.5572 -6.25 Q78.5572 -7.4062 79.3384 -8.0469 Q80.1197 -8.6875 81.4634 -8.6875 Q82.1353 -8.6875 82.7447 -8.5312 Q83.354 -8.375 84.0103 -8.0938 L83.4322 -6.6719 Q82.8384 -6.9062 82.3697 -7.0312 Q81.9009 -7.1719 81.4009 -7.1719 Q80.8853 -7.1719 80.604 -6.9375 Q80.3384 -6.7031 80.3384 -6.3125 Q80.3384 -5.8594 80.7447 -5.5938 Q81.1509 -5.3281 81.9634 -4.9375 Q82.6197 -4.625 83.0728 -4.2812 Q83.5415 -3.9531 83.7915 -3.5 Q84.0415 -3.0469 84.0415 -2.375 ZM88.1692 -6.6719 Q89.513 -6.6719 90.3098 -5.8906 Q91.1067 -5.125 91.1067 -3.7031 L91.1067 -2.8281 L86.888 -2.8281 Q86.9036 -2.0781 87.3255 -1.6406 Q87.763 -1.2188 88.513 -1.2188 Q89.1536 -1.2188 89.6692 -1.3438 Q90.1848 -1.4688 90.7317 -1.7344 L90.7317 -0.3438 Q90.2473 -0.1094 89.7161 0 Q89.1848 0.125 88.4348 0.125 Q87.4505 0.125 86.6848 -0.2344 Q85.9348 -0.6094 85.4973 -1.3438 Q85.0755 -2.0938 85.0755 -3.2344 Q85.0755 -4.375 85.4505 -5.1406 Q85.8411 -5.9062 86.5442 -6.2812 Q87.2473 -6.6719 88.1692 -6.6719 ZM88.1692 -5.4062 Q87.6536 -5.4062 87.3098 -5.0625 Q86.9817 -4.7344 86.9192 -4.0156 L89.4192 -4.0156 Q89.4192 -4.625 89.1067 -5.0156 Q88.8098 -5.4062 88.1692 -5.4062 ZM96.2144 -6.6719 Q96.355 -6.6719 96.5269 -6.6562 Q96.7144 -6.6406 96.8238 -6.625 L96.6832 -4.9375 Q96.605 -4.9688 96.4332 -4.9844 Q96.2769 -5 96.1519 -5 Q95.6988 -5 95.2769 -4.8438 Q94.855 -4.6875 94.5894 -4.3125 Q94.3394 -3.9531 94.3394 -3.3438 L94.3394 0 L92.5582 0 L92.5582 -6.5469 L93.9175 -6.5469 L94.1832 -5.4531 L94.2613 -5.4531 Q94.5425 -5.9531 95.0425 -6.3125 Q95.5582 -6.6719 96.2144 -6.6719 ZM99.5687 0 L97.0687 -6.5469 L98.9437 -6.5469 L100.1937 -2.8125 Q100.3031 -2.4844 100.3656 -2.125 Q100.4437 -1.7656 100.4593 -1.4688 L100.5062 -1.4688 Q100.5374 -2.125 100.7718 -2.8125 L102.0218 -6.5469 L103.8968 -6.5469 L101.3968 0 L99.5687 0 ZM105.7405 -9.125 Q106.1311 -9.125 106.4124 -8.9375 Q106.7092 -8.75 106.7092 -8.25 Q106.7092 -7.75 106.4124 -7.5625 Q106.1311 -7.375 105.7405 -7.375 Q105.3186 -7.375 105.0374 -7.5625 Q104.7561 -7.75 104.7561 -8.25 Q104.7561 -8.75 105.0374 -8.9375 Q105.3186 -9.125 105.7405 -9.125 ZM106.6155 -6.5469 L106.6155 0 L104.8342 0 L104.8342 -6.5469 L106.6155 -6.5469 ZM111.1505 0.125 Q109.6974 0.125 108.9005 -0.6875 Q108.1036 -1.5 108.1036 -3.2344 Q108.1036 -4.4375 108.5099 -5.1875 Q108.9161 -5.9531 109.6349 -6.3125 Q110.3693 -6.6719 111.3068 -6.6719 Q111.9786 -6.6719 112.4786 -6.5312 Q112.9786 -6.4062 113.3536 -6.2344 L112.8224 -4.8438 Q112.4005 -5.0156 112.0255 -5.125 Q111.6661 -5.2344 111.3068 -5.2344 Q109.9161 -5.2344 109.9161 -3.25 Q109.9161 -2.2656 110.2755 -1.7969 Q110.6505 -1.3281 111.3068 -1.3281 Q111.8693 -1.3281 112.3068 -1.4688 Q112.7443 -1.625 113.1505 -1.8906 L113.1505 -0.375 Q112.7443 -0.1094 112.2911 0 Q111.838 0.125 111.1505 0.125 ZM117.3654 -6.6719 Q118.7092 -6.6719 119.5061 -5.8906 Q120.3029 -5.125 120.3029 -3.7031 L120.3029 -2.8281 L116.0842 -2.8281 Q116.0998 -2.0781 116.5217 -1.6406 Q116.9592 -1.2188 117.7092 -1.2188 Q118.3498 -1.2188 118.8654 -1.3438 Q119.3811 -1.4688 119.9279 -1.7344 L119.9279 -0.3438 Q119.4436 -0.1094 118.9123 0 Q118.3811 0.125 117.6311 0.125 Q116.6467 0.125 115.8811 -0.2344 Q115.1311 -0.6094 114.6936 -1.3438 Q114.2717 -2.0938 114.2717 -3.2344 Q114.2717 -4.375 114.6467 -5.1406 Q115.0373 -5.9062 115.7404 -6.2812 Q116.4436 -6.6719 117.3654 -6.6719 ZM117.3654 -5.4062 Q116.8498 -5.4062 116.5061 -5.0625 Q116.1779 -4.7344 116.1154 -4.0156 L118.6154 -4.0156 Q118.6154 -4.625 118.3029 -5.0156 Q118.0061 -5.4062 117.3654 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath11);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="1637.193" x2="1609.6651" y1="457.6058" style="fill:none; clip-path:url(#clipPath2);" y2="457.6058"
+      /><line x1="1609.6651" x2="1609.6651" y1="457.6058" style="fill:none; clip-path:url(#clipPath2);" y2="287.399"
+      /><line x1="1609.6651" x2="1385.3065" y1="287.399" style="fill:none; clip-path:url(#clipPath2);" y2="287.399"
+      /><line x1="1637.193" x2="1609.6651" y1="457.6058" style="fill:none; clip-path:url(#clipPath2);" y2="457.6058"
+      /><line x1="1609.6651" x2="1609.6651" y1="457.6058" style="fill:none; clip-path:url(#clipPath2);" y2="613.6059"
+      /><line x1="1609.6651" x2="1400.9361" y1="613.6059" style="fill:none; clip-path:url(#clipPath2);" y2="613.6059"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="1013.5096" y="31.0335" width="108" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="1013.5096" y="31.0335" width="108" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1033.5096,49.0335)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath12);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1023.5096,65.3776)"
+    ><path d="M6.125 -2.375 Q6.125 -1.2344 5.2969 -0.5469 Q4.4844 0.125 2.9688 0.125 Q1.625 0.125 0.5469 -0.3906 L0.5469 -2.0938 Q1.1562 -1.8281 1.8125 -1.5938 Q2.4688 -1.375 3.125 -1.375 Q3.7969 -1.375 4.0781 -1.625 Q4.3594 -1.8906 4.3594 -2.2969 Q4.3594 -2.6094 4.125 -2.8438 Q3.9062 -3.0781 3.5312 -3.2656 Q3.1719 -3.4688 2.6875 -3.7031 Q2.3906 -3.8438 2.0312 -4.0312 Q1.6875 -4.2344 1.375 -4.5312 Q1.0625 -4.8281 0.8438 -5.2344 Q0.6406 -5.6562 0.6406 -6.25 Q0.6406 -7.4062 1.4219 -8.0469 Q2.2031 -8.6875 3.5469 -8.6875 Q4.2188 -8.6875 4.8281 -8.5312 Q5.4375 -8.375 6.0938 -8.0938 L5.5156 -6.6719 Q4.9219 -6.9062 4.4531 -7.0312 Q3.9844 -7.1719 3.4844 -7.1719 Q2.9688 -7.1719 2.6875 -6.9375 Q2.4219 -6.7031 2.4219 -6.3125 Q2.4219 -5.8594 2.8281 -5.5938 Q3.2344 -5.3281 4.0469 -4.9375 Q4.7031 -4.625 5.1562 -4.2812 Q5.625 -3.9531 5.875 -3.5 Q6.125 -3.0469 6.125 -2.375 ZM10.2527 -6.6719 Q11.5964 -6.6719 12.3933 -5.8906 Q13.1902 -5.125 13.1902 -3.7031 L13.1902 -2.8281 L8.9714 -2.8281 Q8.987 -2.0781 9.4089 -1.6406 Q9.8464 -1.2188 10.5964 -1.2188 Q11.237 -1.2188 11.7527 -1.3438 Q12.2683 -1.4688 12.8152 -1.7344 L12.8152 -0.3438 Q12.3308 -0.1094 11.7995 0 Q11.2683 0.125 10.5183 0.125 Q9.5339 0.125 8.7683 -0.2344 Q8.0183 -0.6094 7.5808 -1.3438 Q7.1589 -2.0938 7.1589 -3.2344 Q7.1589 -4.375 7.5339 -5.1406 Q7.9245 -5.9062 8.6277 -6.2812 Q9.3308 -6.6719 10.2527 -6.6719 ZM10.2527 -5.4062 Q9.737 -5.4062 9.3933 -5.0625 Q9.0652 -4.7344 9.0027 -4.0156 L11.5027 -4.0156 Q11.5027 -4.625 11.1902 -5.0156 Q10.8933 -5.4062 10.2527 -5.4062 ZM19.2197 -1.9375 Q19.2197 -0.9531 18.5166 -0.4062 Q17.8135 0.125 16.4229 0.125 Q15.7354 0.125 15.2354 0.0312 Q14.751 -0.0625 14.251 -0.2656 L14.251 -1.7344 Q14.7822 -1.5 15.3916 -1.3438 Q16.001 -1.1875 16.4697 -1.1875 Q17.001 -1.1875 17.2197 -1.3438 Q17.4541 -1.5 17.4541 -1.75 Q17.4541 -1.9219 17.3604 -2.0469 Q17.2666 -2.1875 16.9697 -2.3438 Q16.6729 -2.5156 16.0322 -2.7812 Q15.4229 -3.0469 15.0166 -3.2969 Q14.626 -3.5625 14.4385 -3.9219 Q14.251 -4.2969 14.251 -4.8438 Q14.251 -5.7656 14.9541 -6.2188 Q15.6572 -6.6719 16.8291 -6.6719 Q17.4541 -6.6719 18.001 -6.5469 Q18.5479 -6.4375 19.1416 -6.1562 L18.5947 -4.875 Q18.126 -5.0781 17.6885 -5.2188 Q17.251 -5.3594 16.8135 -5.3594 Q16.0166 -5.3594 16.0166 -4.9219 Q16.0166 -4.7656 16.1104 -4.6406 Q16.2197 -4.5156 16.5166 -4.3594 Q16.8135 -4.2188 17.3916 -3.9844 Q17.9541 -3.75 18.3604 -3.5 Q18.7666 -3.2656 18.9854 -2.8906 Q19.2197 -2.5312 19.2197 -1.9375 ZM25.1838 -1.9375 Q25.1838 -0.9531 24.4806 -0.4062 Q23.7775 0.125 22.3869 0.125 Q21.6994 0.125 21.1994 0.0312 Q20.715 -0.0625 20.215 -0.2656 L20.215 -1.7344 Q20.7463 -1.5 21.3556 -1.3438 Q21.965 -1.1875 22.4338 -1.1875 Q22.965 -1.1875 23.1838 -1.3438 Q23.4181 -1.5 23.4181 -1.75 Q23.4181 -1.9219 23.3244 -2.0469 Q23.2306 -2.1875 22.9338 -2.3438 Q22.6369 -2.5156 21.9963 -2.7812 Q21.3869 -3.0469 20.9806 -3.2969 Q20.59 -3.5625 20.4025 -3.9219 Q20.215 -4.2969 20.215 -4.8438 Q20.215 -5.7656 20.9181 -6.2188 Q21.6213 -6.6719 22.7931 -6.6719 Q23.4181 -6.6719 23.965 -6.5469 Q24.5119 -6.4375 25.1056 -6.1562 L24.5588 -4.875 Q24.09 -5.0781 23.6525 -5.2188 Q23.215 -5.3594 22.7775 -5.3594 Q21.9806 -5.3594 21.9806 -4.9219 Q21.9806 -4.7656 22.0744 -4.6406 Q22.1838 -4.5156 22.4806 -4.3594 Q22.7775 -4.2188 23.3556 -3.9844 Q23.9181 -3.75 24.3244 -3.5 Q24.7306 -3.2656 24.9494 -2.8906 Q25.1838 -2.5312 25.1838 -1.9375 ZM27.4759 -9.125 Q27.8665 -9.125 28.1478 -8.9375 Q28.4447 -8.75 28.4447 -8.25 Q28.4447 -7.75 28.1478 -7.5625 Q27.8665 -7.375 27.4759 -7.375 Q27.054 -7.375 26.7728 -7.5625 Q26.4915 -7.75 26.4915 -8.25 Q26.4915 -8.75 26.7728 -8.9375 Q27.054 -9.125 27.4759 -9.125 ZM28.3509 -6.5469 L28.3509 0 L26.5697 0 L26.5697 -6.5469 L28.3509 -6.5469 ZM36.1828 -3.2812 Q36.1828 -1.6562 35.3234 -0.7656 Q34.4641 0.125 32.9953 0.125 Q32.0734 0.125 31.3547 -0.2656 Q30.6516 -0.6719 30.2453 -1.4375 Q29.8391 -2.2031 29.8391 -3.2812 Q29.8391 -4.9219 30.6828 -5.7969 Q31.5422 -6.6719 33.0266 -6.6719 Q33.9484 -6.6719 34.6516 -6.2656 Q35.3703 -5.875 35.7766 -5.125 Q36.1828 -4.375 36.1828 -3.2812 ZM31.6516 -3.2812 Q31.6516 -2.3125 31.9641 -1.8125 Q32.2922 -1.3125 33.0109 -1.3125 Q33.7141 -1.3125 34.0266 -1.8125 Q34.3547 -2.3125 34.3547 -3.2812 Q34.3547 -4.2656 34.0266 -4.75 Q33.7141 -5.2344 32.9953 -5.2344 Q32.2922 -5.2344 31.9641 -4.75 Q31.6516 -4.2656 31.6516 -3.2812 ZM41.3765 -6.6719 Q42.439 -6.6719 43.064 -6.0938 Q43.7046 -5.5312 43.7046 -4.2656 L43.7046 0 L41.9234 0 L41.9234 -3.8281 Q41.9234 -4.5312 41.6577 -4.8906 Q41.4077 -5.25 40.8609 -5.25 Q40.0484 -5.25 39.7359 -4.6875 Q39.439 -4.125 39.439 -3.0781 L39.439 0 L37.6577 0 L37.6577 -6.5469 L39.0171 -6.5469 L39.2671 -5.7188 L39.3609 -5.7188 Q39.6734 -6.2188 40.2202 -6.4375 Q40.7671 -6.6719 41.3765 -6.6719 ZM50.7293 -2.375 Q50.7293 -1.2344 49.9012 -0.5469 Q49.0887 0.125 47.573 0.125 Q46.2293 0.125 45.1512 -0.3906 L45.1512 -2.0938 Q45.7605 -1.8281 46.4168 -1.5938 Q47.073 -1.375 47.7293 -1.375 Q48.4012 -1.375 48.6824 -1.625 Q48.9637 -1.8906 48.9637 -2.2969 Q48.9637 -2.6094 48.7293 -2.8438 Q48.5105 -3.0781 48.1355 -3.2656 Q47.7762 -3.4688 47.2918 -3.7031 Q46.9949 -3.8438 46.6355 -4.0312 Q46.2918 -4.2344 45.9793 -4.5312 Q45.6668 -4.8281 45.448 -5.2344 Q45.2449 -5.6562 45.2449 -6.25 Q45.2449 -7.4062 46.0262 -8.0469 Q46.8074 -8.6875 48.1512 -8.6875 Q48.823 -8.6875 49.4324 -8.5312 Q50.0418 -8.375 50.698 -8.0938 L50.1199 -6.6719 Q49.5262 -6.9062 49.0574 -7.0312 Q48.5887 -7.1719 48.0887 -7.1719 Q47.573 -7.1719 47.2918 -6.9375 Q47.0262 -6.7031 47.0262 -6.3125 Q47.0262 -5.8594 47.4324 -5.5938 Q47.8387 -5.3281 48.6512 -4.9375 Q49.3074 -4.625 49.7605 -4.2812 Q50.2293 -3.9531 50.4793 -3.5 Q50.7293 -3.0469 50.7293 -2.375 ZM54.857 -6.6719 Q56.2007 -6.6719 56.9976 -5.8906 Q57.7945 -5.125 57.7945 -3.7031 L57.7945 -2.8281 L53.5757 -2.8281 Q53.5913 -2.0781 54.0132 -1.6406 Q54.4507 -1.2188 55.2007 -1.2188 Q55.8413 -1.2188 56.357 -1.3438 Q56.8726 -1.4688 57.4195 -1.7344 L57.4195 -0.3438 Q56.9351 -0.1094 56.4038 0 Q55.8726 0.125 55.1226 0.125 Q54.1382 0.125 53.3726 -0.2344 Q52.6226 -0.6094 52.1851 -1.3438 Q51.7632 -2.0938 51.7632 -3.2344 Q51.7632 -4.375 52.1382 -5.1406 Q52.5288 -5.9062 53.232 -6.2812 Q53.9351 -6.6719 54.857 -6.6719 ZM54.857 -5.4062 Q54.3413 -5.4062 53.9976 -5.0625 Q53.6695 -4.7344 53.607 -4.0156 L56.107 -4.0156 Q56.107 -4.625 55.7945 -5.0156 Q55.4976 -5.4062 54.857 -5.4062 ZM62.9021 -6.6719 Q63.0428 -6.6719 63.2146 -6.6562 Q63.4021 -6.6406 63.5115 -6.625 L63.3709 -4.9375 Q63.2928 -4.9688 63.1209 -4.9844 Q62.9646 -5 62.8396 -5 Q62.3865 -5 61.9646 -4.8438 Q61.5428 -4.6875 61.2771 -4.3125 Q61.0271 -3.9531 61.0271 -3.3438 L61.0271 0 L59.2459 0 L59.2459 -6.5469 L60.6053 -6.5469 L60.8709 -5.4531 L60.949 -5.4531 Q61.2303 -5.9531 61.7303 -6.3125 Q62.2459 -6.6719 62.9021 -6.6719 ZM66.2564 0 L63.7564 -6.5469 L65.6314 -6.5469 L66.8814 -2.8125 Q66.9908 -2.4844 67.0533 -2.125 Q67.1314 -1.7656 67.1471 -1.4688 L67.1939 -1.4688 Q67.2252 -2.125 67.4596 -2.8125 L68.7096 -6.5469 L70.5846 -6.5469 L68.0846 0 L66.2564 0 ZM72.4282 -9.125 Q72.8189 -9.125 73.1001 -8.9375 Q73.397 -8.75 73.397 -8.25 Q73.397 -7.75 73.1001 -7.5625 Q72.8189 -7.375 72.4282 -7.375 Q72.0064 -7.375 71.7251 -7.5625 Q71.4439 -7.75 71.4439 -8.25 Q71.4439 -8.75 71.7251 -8.9375 Q72.0064 -9.125 72.4282 -9.125 ZM73.3032 -6.5469 L73.3032 0 L71.522 0 L71.522 -6.5469 L73.3032 -6.5469 ZM77.8383 0.125 Q76.3851 0.125 75.5883 -0.6875 Q74.7914 -1.5 74.7914 -3.2344 Q74.7914 -4.4375 75.1976 -5.1875 Q75.6039 -5.9531 76.3226 -6.3125 Q77.057 -6.6719 77.9945 -6.6719 Q78.6664 -6.6719 79.1664 -6.5312 Q79.6664 -6.4062 80.0414 -6.2344 L79.5101 -4.8438 Q79.0883 -5.0156 78.7133 -5.125 Q78.3539 -5.2344 77.9945 -5.2344 Q76.6039 -5.2344 76.6039 -3.25 Q76.6039 -2.2656 76.9633 -1.7969 Q77.3383 -1.3281 77.9945 -1.3281 Q78.557 -1.3281 78.9945 -1.4688 Q79.432 -1.625 79.8383 -1.8906 L79.8383 -0.375 Q79.432 -0.1094 78.9789 0 Q78.5258 0.125 77.8383 0.125 ZM84.0532 -6.6719 Q85.3969 -6.6719 86.1938 -5.8906 Q86.9907 -5.125 86.9907 -3.7031 L86.9907 -2.8281 L82.7719 -2.8281 Q82.7876 -2.0781 83.2094 -1.6406 Q83.6469 -1.2188 84.3969 -1.2188 Q85.0376 -1.2188 85.5532 -1.3438 Q86.0688 -1.4688 86.6157 -1.7344 L86.6157 -0.3438 Q86.1313 -0.1094 85.6001 0 Q85.0688 0.125 84.3188 0.125 Q83.3344 0.125 82.5688 -0.2344 Q81.8188 -0.6094 81.3813 -1.3438 Q80.9594 -2.0938 80.9594 -3.2344 Q80.9594 -4.375 81.3344 -5.1406 Q81.7251 -5.9062 82.4282 -6.2812 Q83.1313 -6.6719 84.0532 -6.6719 ZM84.0532 -5.4062 Q83.5376 -5.4062 83.1938 -5.0625 Q82.8657 -4.7344 82.8032 -4.0156 L85.3032 -4.0156 Q85.3032 -4.625 84.9907 -5.0156 Q84.6938 -5.4062 84.0532 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath13);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="1283.4916" y="118.8919" width="128" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="1283.4916" y="118.8919" width="128" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1313.4916,136.8919)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath14);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1293.4916,153.236)"
+    ><path d="M6.3281 0 L5.7031 -2.0469 L2.5781 -2.0469 L1.9531 0 L0 0 L3.0312 -8.6094 L5.25 -8.6094 L8.2812 0 L6.3281 0 ZM4.6406 -5.5625 Q4.5781 -5.7656 4.4844 -6.0781 Q4.3906 -6.3906 4.2969 -6.7031 Q4.2031 -7.0312 4.1406 -7.2656 Q4.0781 -7.0312 3.9688 -6.6719 Q3.875 -6.3281 3.7812 -6 Q3.7031 -5.6875 3.6406 -5.5625 L3.0312 -3.5625 L5.2656 -3.5625 L4.6406 -5.5625 ZM15.2332 -6.5469 L15.2332 0 L13.8582 0 L13.6238 -0.8438 L13.5301 -0.8438 Q13.2176 -0.3438 12.6707 -0.1094 Q12.1238 0.125 11.5144 0.125 Q10.4519 0.125 9.8113 -0.4375 Q9.1863 -1.0156 9.1863 -2.2812 L9.1863 -6.5469 L10.9676 -6.5469 L10.9676 -2.7188 Q10.9676 -2.0312 11.2176 -1.6719 Q11.4676 -1.3125 12.0301 -1.3125 Q12.8426 -1.3125 13.1394 -1.8594 Q13.4363 -2.4219 13.4363 -3.4688 L13.4363 -6.5469 L15.2332 -6.5469 ZM19.8672 -1.3125 Q20.1641 -1.3125 20.4297 -1.3594 Q20.711 -1.4219 20.9922 -1.5156 L20.9922 -0.1875 Q20.6954 -0.0625 20.2735 0.0312 Q19.8516 0.125 19.3516 0.125 Q18.7579 0.125 18.2891 -0.0625 Q17.836 -0.2656 17.5547 -0.7344 Q17.2891 -1.2188 17.2891 -2.0469 L17.2891 -5.2031 L16.4454 -5.2031 L16.4454 -5.9688 L17.4297 -6.5625 L17.9454 -7.9375 L19.086 -7.9375 L19.086 -6.5469 L20.9141 -6.5469 L20.9141 -5.2031 L19.086 -5.2031 L19.086 -2.0469 Q19.086 -1.6875 19.2891 -1.5 Q19.5079 -1.3125 19.8672 -1.3125 ZM24.0909 -7.2656 Q24.0909 -6.7812 24.0596 -6.3281 Q24.0284 -5.8906 24.0128 -5.7188 L24.1065 -5.7188 Q24.419 -6.2188 24.9034 -6.4375 Q25.4034 -6.6719 25.9971 -6.6719 Q27.0753 -6.6719 27.7159 -6.0938 Q28.3565 -5.5312 28.3565 -4.2656 L28.3565 0 L26.5753 0 L26.5753 -3.8281 Q26.5753 -5.25 25.5128 -5.25 Q24.7159 -5.25 24.4034 -4.6875 Q24.0909 -4.125 24.0909 -3.0781 L24.0909 0 L22.3096 0 L22.3096 -9.125 L24.0909 -9.125 L24.0909 -7.2656 ZM33.9749 -7.1719 Q32.9281 -7.1719 32.3656 -6.3906 Q31.8187 -5.6094 31.8187 -4.2656 Q31.8187 -2.8906 32.3343 -2.1406 Q32.8499 -1.3906 33.9749 -1.3906 Q34.5062 -1.3906 35.0218 -1.5 Q35.5374 -1.625 36.1624 -1.8438 L36.1624 -0.3281 Q35.5999 -0.0938 35.0374 0.0156 Q34.4906 0.125 33.8031 0.125 Q32.4906 0.125 31.6312 -0.4219 Q30.7718 -0.9688 30.3656 -1.9531 Q29.9593 -2.9531 29.9593 -4.2656 Q29.9593 -5.5625 30.4124 -6.5625 Q30.8812 -7.5625 31.7718 -8.125 Q32.6781 -8.6875 33.9749 -8.6875 Q34.6156 -8.6875 35.2562 -8.5156 Q35.8968 -8.3594 36.4749 -8.0938 L35.8968 -6.6094 Q35.4124 -6.8438 34.9281 -7 Q34.4437 -7.1719 33.9749 -7.1719 ZM39.619 0 L37.8378 0 L37.8378 -9.125 L39.619 -9.125 L39.619 0 ZM42.404 -9.125 Q42.7946 -9.125 43.0759 -8.9375 Q43.3728 -8.75 43.3728 -8.25 Q43.3728 -7.75 43.0759 -7.5625 Q42.7946 -7.375 42.404 -7.375 Q41.9821 -7.375 41.7009 -7.5625 Q41.4196 -7.75 41.4196 -8.25 Q41.4196 -8.75 41.7009 -8.9375 Q41.9821 -9.125 42.404 -9.125 ZM43.279 -6.5469 L43.279 0 L41.4978 0 L41.4978 -6.5469 L43.279 -6.5469 ZM47.8609 -6.6719 Q49.2047 -6.6719 50.0015 -5.8906 Q50.7984 -5.125 50.7984 -3.7031 L50.7984 -2.8281 L46.5797 -2.8281 Q46.5953 -2.0781 47.0172 -1.6406 Q47.4547 -1.2188 48.2047 -1.2188 Q48.8453 -1.2188 49.3609 -1.3438 Q49.8765 -1.4688 50.4234 -1.7344 L50.4234 -0.3438 Q49.939 -0.1094 49.4078 0 Q48.8765 0.125 48.1265 0.125 Q47.1422 0.125 46.3765 -0.2344 Q45.6265 -0.6094 45.189 -1.3438 Q44.7672 -2.0938 44.7672 -3.2344 Q44.7672 -4.375 45.1422 -5.1406 Q45.5328 -5.9062 46.2359 -6.2812 Q46.939 -6.6719 47.8609 -6.6719 ZM47.8609 -5.4062 Q47.3453 -5.4062 47.0015 -5.0625 Q46.6734 -4.7344 46.6109 -4.0156 L49.1109 -4.0156 Q49.1109 -4.625 48.7984 -5.0156 Q48.5015 -5.4062 47.8609 -5.4062 ZM55.9686 -6.6719 Q57.0311 -6.6719 57.6561 -6.0938 Q58.2967 -5.5312 58.2967 -4.2656 L58.2967 0 L56.5155 0 L56.5155 -3.8281 Q56.5155 -4.5312 56.2498 -4.8906 Q55.9998 -5.25 55.453 -5.25 Q54.6405 -5.25 54.328 -4.6875 Q54.0311 -4.125 54.0311 -3.0781 L54.0311 0 L52.2498 0 L52.2498 -6.5469 L53.6092 -6.5469 L53.8592 -5.7188 L53.953 -5.7188 Q54.2655 -6.2188 54.8123 -6.4375 Q55.3592 -6.6719 55.9686 -6.6719 ZM62.8995 -1.3125 Q63.1964 -1.3125 63.462 -1.3594 Q63.7433 -1.4219 64.0245 -1.5156 L64.0245 -0.1875 Q63.7276 -0.0625 63.3058 0.0312 Q62.8839 0.125 62.3839 0.125 Q61.7901 0.125 61.3214 -0.0625 Q60.8683 -0.2656 60.587 -0.7344 Q60.3214 -1.2188 60.3214 -2.0469 L60.3214 -5.2031 L59.4776 -5.2031 L59.4776 -5.9688 L60.462 -6.5625 L60.9776 -7.9375 L62.1183 -7.9375 L62.1183 -6.5469 L63.9464 -6.5469 L63.9464 -5.2031 L62.1183 -5.2031 L62.1183 -2.0469 Q62.1183 -1.6875 62.3214 -1.5 Q62.5401 -1.3125 62.8995 -1.3125 ZM70.5294 -2.375 Q70.5294 -1.2344 69.7013 -0.5469 Q68.8888 0.125 67.3732 0.125 Q66.0294 0.125 64.9513 -0.3906 L64.9513 -2.0938 Q65.5607 -1.8281 66.2169 -1.5938 Q66.8732 -1.375 67.5294 -1.375 Q68.2013 -1.375 68.4826 -1.625 Q68.7638 -1.8906 68.7638 -2.2969 Q68.7638 -2.6094 68.5294 -2.8438 Q68.3107 -3.0781 67.9357 -3.2656 Q67.5763 -3.4688 67.0919 -3.7031 Q66.7951 -3.8438 66.4357 -4.0312 Q66.0919 -4.2344 65.7794 -4.5312 Q65.4669 -4.8281 65.2482 -5.2344 Q65.0451 -5.6562 65.0451 -6.25 Q65.0451 -7.4062 65.8263 -8.0469 Q66.6076 -8.6875 67.9513 -8.6875 Q68.6232 -8.6875 69.2326 -8.5312 Q69.8419 -8.375 70.4982 -8.0938 L69.9201 -6.6719 Q69.3263 -6.9062 68.8576 -7.0312 Q68.3888 -7.1719 67.8888 -7.1719 Q67.3732 -7.1719 67.0919 -6.9375 Q66.8263 -6.7031 66.8263 -6.3125 Q66.8263 -5.8594 67.2326 -5.5938 Q67.6388 -5.3281 68.4513 -4.9375 Q69.1076 -4.625 69.5607 -4.2812 Q70.0294 -3.9531 70.2794 -3.5 Q70.5294 -3.0469 70.5294 -2.375 ZM74.6571 -6.6719 Q76.0009 -6.6719 76.7977 -5.8906 Q77.5946 -5.125 77.5946 -3.7031 L77.5946 -2.8281 L73.3759 -2.8281 Q73.3915 -2.0781 73.8134 -1.6406 Q74.2509 -1.2188 75.0009 -1.2188 Q75.6415 -1.2188 76.1571 -1.3438 Q76.6727 -1.4688 77.2196 -1.7344 L77.2196 -0.3438 Q76.7352 -0.1094 76.204 0 Q75.6727 0.125 74.9227 0.125 Q73.9384 0.125 73.1727 -0.2344 Q72.4227 -0.6094 71.9852 -1.3438 Q71.5634 -2.0938 71.5634 -3.2344 Q71.5634 -4.375 71.9384 -5.1406 Q72.329 -5.9062 73.0321 -6.2812 Q73.7352 -6.6719 74.6571 -6.6719 ZM74.6571 -5.4062 Q74.1415 -5.4062 73.7977 -5.0625 Q73.4696 -4.7344 73.4071 -4.0156 L75.9071 -4.0156 Q75.9071 -4.625 75.5946 -5.0156 Q75.2977 -5.4062 74.6571 -5.4062 ZM82.7023 -6.6719 Q82.8429 -6.6719 83.0148 -6.6562 Q83.2023 -6.6406 83.3117 -6.625 L83.171 -4.9375 Q83.0929 -4.9688 82.921 -4.9844 Q82.7648 -5 82.6398 -5 Q82.1867 -5 81.7648 -4.8438 Q81.3429 -4.6875 81.0773 -4.3125 Q80.8273 -3.9531 80.8273 -3.3438 L80.8273 0 L79.046 0 L79.046 -6.5469 L80.4054 -6.5469 L80.671 -5.4531 L80.7492 -5.4531 Q81.0304 -5.9531 81.5304 -6.3125 Q82.046 -6.6719 82.7023 -6.6719 ZM86.0566 0 L83.5566 -6.5469 L85.4316 -6.5469 L86.6816 -2.8125 Q86.791 -2.4844 86.8535 -2.125 Q86.9316 -1.7656 86.9472 -1.4688 L86.9941 -1.4688 Q87.0253 -2.125 87.2597 -2.8125 L88.5097 -6.5469 L90.3847 -6.5469 L87.8847 0 L86.0566 0 ZM92.2284 -9.125 Q92.619 -9.125 92.9003 -8.9375 Q93.1971 -8.75 93.1971 -8.25 Q93.1971 -7.75 92.9003 -7.5625 Q92.619 -7.375 92.2284 -7.375 Q91.8065 -7.375 91.5253 -7.5625 Q91.244 -7.75 91.244 -8.25 Q91.244 -8.75 91.5253 -8.9375 Q91.8065 -9.125 92.2284 -9.125 ZM93.1034 -6.5469 L93.1034 0 L91.3221 0 L91.3221 -6.5469 L93.1034 -6.5469 ZM97.6384 0.125 Q96.1853 0.125 95.3884 -0.6875 Q94.5915 -1.5 94.5915 -3.2344 Q94.5915 -4.4375 94.9978 -5.1875 Q95.404 -5.9531 96.1228 -6.3125 Q96.8571 -6.6719 97.7946 -6.6719 Q98.4665 -6.6719 98.9665 -6.5312 Q99.4665 -6.4062 99.8415 -6.2344 L99.3103 -4.8438 Q98.8884 -5.0156 98.5134 -5.125 Q98.154 -5.2344 97.7946 -5.2344 Q96.404 -5.2344 96.404 -3.25 Q96.404 -2.2656 96.7634 -1.7969 Q97.1384 -1.3281 97.7946 -1.3281 Q98.3571 -1.3281 98.7946 -1.4688 Q99.2321 -1.625 99.6384 -1.8906 L99.6384 -0.375 Q99.2321 -0.1094 98.779 0 Q98.3259 0.125 97.6384 0.125 ZM103.8533 -6.6719 Q105.1971 -6.6719 105.9939 -5.8906 Q106.7908 -5.125 106.7908 -3.7031 L106.7908 -2.8281 L102.5721 -2.8281 Q102.5877 -2.0781 103.0096 -1.6406 Q103.4471 -1.2188 104.1971 -1.2188 Q104.8377 -1.2188 105.3533 -1.3438 Q105.8689 -1.4688 106.4158 -1.7344 L106.4158 -0.3438 Q105.9314 -0.1094 105.4002 0 Q104.8689 0.125 104.1189 0.125 Q103.1346 0.125 102.3689 -0.2344 Q101.6189 -0.6094 101.1814 -1.3438 Q100.7596 -2.0938 100.7596 -3.2344 Q100.7596 -4.375 101.1346 -5.1406 Q101.5252 -5.9062 102.2283 -6.2812 Q102.9314 -6.6719 103.8533 -6.6719 ZM103.8533 -5.4062 Q103.3377 -5.4062 102.9939 -5.0625 Q102.6658 -4.7344 102.6033 -4.0156 L105.1033 -4.0156 Q105.1033 -4.625 104.7908 -5.0156 Q104.4939 -5.4062 103.8533 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath15);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="1293.8435" y="797.3178" width="131" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="1293.8435" y="797.3178" width="131" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1325.3435,815.3178)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath16);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(1303.8435,831.6619)"
+    ><path d="M8.0938 0 L6.2812 0 L6.2812 -3.7031 L2.8906 -3.7031 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -5.2031 L6.2812 -5.2031 L6.2812 -8.5625 L8.0938 -8.5625 L8.0938 0 ZM16.0707 -3.2812 Q16.0707 -1.6562 15.2113 -0.7656 Q14.3519 0.125 12.8832 0.125 Q11.9613 0.125 11.2426 -0.2656 Q10.5394 -0.6719 10.1332 -1.4375 Q9.7269 -2.2031 9.7269 -3.2812 Q9.7269 -4.9219 10.5707 -5.7969 Q11.4301 -6.6719 12.9144 -6.6719 Q13.8363 -6.6719 14.5394 -6.2656 Q15.2582 -5.875 15.6644 -5.125 Q16.0707 -4.375 16.0707 -3.2812 ZM11.5394 -3.2812 Q11.5394 -2.3125 11.8519 -1.8125 Q12.1801 -1.3125 12.8988 -1.3125 Q13.6019 -1.3125 13.9144 -1.8125 Q14.2426 -2.3125 14.2426 -3.2812 Q14.2426 -4.2656 13.9144 -4.75 Q13.6019 -5.2344 12.8832 -5.2344 Q12.1801 -5.2344 11.8519 -4.75 Q11.5394 -4.2656 11.5394 -3.2812 ZM20.3112 -1.3125 Q20.6081 -1.3125 20.8737 -1.3594 Q21.155 -1.4219 21.4362 -1.5156 L21.4362 -0.1875 Q21.1394 -0.0625 20.7175 0.0312 Q20.2956 0.125 19.7956 0.125 Q19.2019 0.125 18.7331 -0.0625 Q18.28 -0.2656 17.9987 -0.7344 Q17.7331 -1.2188 17.7331 -2.0469 L17.7331 -5.2031 L16.8894 -5.2031 L16.8894 -5.9688 L17.8737 -6.5625 L18.3894 -7.9375 L19.53 -7.9375 L19.53 -6.5469 L21.3581 -6.5469 L21.3581 -5.2031 L19.53 -5.2031 L19.53 -2.0469 Q19.53 -1.6875 19.7331 -1.5 Q19.9519 -1.3125 20.3112 -1.3125 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1912 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4412 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0037 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1287 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9412 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM31.627 0 L29.8457 0 L29.8457 -9.125 L31.627 -9.125 L31.627 0 ZM37.287 -7.1719 Q36.2401 -7.1719 35.6776 -6.3906 Q35.1307 -5.6094 35.1307 -4.2656 Q35.1307 -2.8906 35.6464 -2.1406 Q36.162 -1.3906 37.287 -1.3906 Q37.8182 -1.3906 38.3339 -1.5 Q38.8495 -1.625 39.4745 -1.8438 L39.4745 -0.3281 Q38.912 -0.0938 38.3495 0.0156 Q37.8026 0.125 37.1151 0.125 Q35.8026 0.125 34.9432 -0.4219 Q34.0839 -0.9688 33.6776 -1.9531 Q33.2714 -2.9531 33.2714 -4.2656 Q33.2714 -5.5625 33.7245 -6.5625 Q34.1932 -7.5625 35.0839 -8.125 Q35.9901 -8.6875 37.287 -8.6875 Q37.9276 -8.6875 38.5682 -8.5156 Q39.2089 -8.3594 39.787 -8.0938 L39.2089 -6.6094 Q38.7245 -6.8438 38.2401 -7 Q37.7557 -7.1719 37.287 -7.1719 ZM42.931 0 L41.1498 0 L41.1498 -9.125 L42.931 -9.125 L42.931 0 ZM45.7161 -9.125 Q46.1067 -9.125 46.3879 -8.9375 Q46.6848 -8.75 46.6848 -8.25 Q46.6848 -7.75 46.3879 -7.5625 Q46.1067 -7.375 45.7161 -7.375 Q45.2942 -7.375 45.0129 -7.5625 Q44.7317 -7.75 44.7317 -8.25 Q44.7317 -8.75 45.0129 -8.9375 Q45.2942 -9.125 45.7161 -9.125 ZM46.5911 -6.5469 L46.5911 0 L44.8098 0 L44.8098 -6.5469 L46.5911 -6.5469 ZM51.173 -6.6719 Q52.5167 -6.6719 53.3136 -5.8906 Q54.1105 -5.125 54.1105 -3.7031 L54.1105 -2.8281 L49.8917 -2.8281 Q49.9073 -2.0781 50.3292 -1.6406 Q50.7667 -1.2188 51.5167 -1.2188 Q52.1573 -1.2188 52.673 -1.3438 Q53.1886 -1.4688 53.7355 -1.7344 L53.7355 -0.3438 Q53.2511 -0.1094 52.7198 0 Q52.1886 0.125 51.4386 0.125 Q50.4542 0.125 49.6886 -0.2344 Q48.9386 -0.6094 48.5011 -1.3438 Q48.0792 -2.0938 48.0792 -3.2344 Q48.0792 -4.375 48.4542 -5.1406 Q48.8448 -5.9062 49.548 -6.2812 Q50.2511 -6.6719 51.173 -6.6719 ZM51.173 -5.4062 Q50.6573 -5.4062 50.3136 -5.0625 Q49.9855 -4.7344 49.923 -4.0156 L52.423 -4.0156 Q52.423 -4.625 52.1105 -5.0156 Q51.8136 -5.4062 51.173 -5.4062 ZM59.2806 -6.6719 Q60.3431 -6.6719 60.9681 -6.0938 Q61.6088 -5.5312 61.6088 -4.2656 L61.6088 0 L59.8275 0 L59.8275 -3.8281 Q59.8275 -4.5312 59.5619 -4.8906 Q59.3119 -5.25 58.765 -5.25 Q57.9525 -5.25 57.64 -4.6875 Q57.3431 -4.125 57.3431 -3.0781 L57.3431 0 L55.5619 0 L55.5619 -6.5469 L56.9213 -6.5469 L57.1713 -5.7188 L57.265 -5.7188 Q57.5775 -6.2188 58.1244 -6.4375 Q58.6713 -6.6719 59.2806 -6.6719 ZM66.2116 -1.3125 Q66.5084 -1.3125 66.7741 -1.3594 Q67.0553 -1.4219 67.3366 -1.5156 L67.3366 -0.1875 Q67.0397 -0.0625 66.6178 0.0312 Q66.1959 0.125 65.6959 0.125 Q65.1022 0.125 64.6334 -0.0625 Q64.1803 -0.2656 63.8991 -0.7344 Q63.6334 -1.2188 63.6334 -2.0469 L63.6334 -5.2031 L62.7897 -5.2031 L62.7897 -5.9688 L63.7741 -6.5625 L64.2897 -7.9375 L65.4303 -7.9375 L65.4303 -6.5469 L67.2584 -6.5469 L67.2584 -5.2031 L65.4303 -5.2031 L65.4303 -2.0469 Q65.4303 -1.6875 65.6334 -1.5 Q65.8522 -1.3125 66.2116 -1.3125 ZM73.8415 -2.375 Q73.8415 -1.2344 73.0134 -0.5469 Q72.2009 0.125 70.6852 0.125 Q69.3415 0.125 68.2634 -0.3906 L68.2634 -2.0938 Q68.8727 -1.8281 69.529 -1.5938 Q70.1852 -1.375 70.8415 -1.375 Q71.5134 -1.375 71.7946 -1.625 Q72.0759 -1.8906 72.0759 -2.2969 Q72.0759 -2.6094 71.8415 -2.8438 Q71.6227 -3.0781 71.2477 -3.2656 Q70.8884 -3.4688 70.404 -3.7031 Q70.1071 -3.8438 69.7477 -4.0312 Q69.404 -4.2344 69.0915 -4.5312 Q68.779 -4.8281 68.5602 -5.2344 Q68.3571 -5.6562 68.3571 -6.25 Q68.3571 -7.4062 69.1384 -8.0469 Q69.9196 -8.6875 71.2634 -8.6875 Q71.9352 -8.6875 72.5446 -8.5312 Q73.154 -8.375 73.8102 -8.0938 L73.2321 -6.6719 Q72.6384 -6.9062 72.1696 -7.0312 Q71.7009 -7.1719 71.2009 -7.1719 Q70.6852 -7.1719 70.404 -6.9375 Q70.1384 -6.7031 70.1384 -6.3125 Q70.1384 -5.8594 70.5446 -5.5938 Q70.9509 -5.3281 71.7634 -4.9375 Q72.4196 -4.625 72.8727 -4.2812 Q73.3415 -3.9531 73.5915 -3.5 Q73.8415 -3.0469 73.8415 -2.375 ZM77.9691 -6.6719 Q79.3129 -6.6719 80.1098 -5.8906 Q80.9066 -5.125 80.9066 -3.7031 L80.9066 -2.8281 L76.6879 -2.8281 Q76.7035 -2.0781 77.1254 -1.6406 Q77.5629 -1.2188 78.3129 -1.2188 Q78.9535 -1.2188 79.4691 -1.3438 Q79.9848 -1.4688 80.5316 -1.7344 L80.5316 -0.3438 Q80.0473 -0.1094 79.516 0 Q78.9848 0.125 78.2348 0.125 Q77.2504 0.125 76.4848 -0.2344 Q75.7348 -0.6094 75.2973 -1.3438 Q74.8754 -2.0938 74.8754 -3.2344 Q74.8754 -4.375 75.2504 -5.1406 Q75.641 -5.9062 76.3441 -6.2812 Q77.0473 -6.6719 77.9691 -6.6719 ZM77.9691 -5.4062 Q77.4535 -5.4062 77.1098 -5.0625 Q76.7816 -4.7344 76.7191 -4.0156 L79.2191 -4.0156 Q79.2191 -4.625 78.9066 -5.0156 Q78.6098 -5.4062 77.9691 -5.4062 ZM86.0143 -6.6719 Q86.155 -6.6719 86.3268 -6.6562 Q86.5143 -6.6406 86.6237 -6.625 L86.4831 -4.9375 Q86.405 -4.9688 86.2331 -4.9844 Q86.0768 -5 85.9518 -5 Q85.4987 -5 85.0768 -4.8438 Q84.655 -4.6875 84.3893 -4.3125 Q84.1393 -3.9531 84.1393 -3.3438 L84.1393 0 L82.3581 0 L82.3581 -6.5469 L83.7175 -6.5469 L83.9831 -5.4531 L84.0612 -5.4531 Q84.3425 -5.9531 84.8425 -6.3125 Q85.3581 -6.6719 86.0143 -6.6719 ZM89.3686 0 L86.8686 -6.5469 L88.7436 -6.5469 L89.9936 -2.8125 Q90.103 -2.4844 90.1655 -2.125 Q90.2436 -1.7656 90.2592 -1.4688 L90.3061 -1.4688 Q90.3374 -2.125 90.5717 -2.8125 L91.8217 -6.5469 L93.6967 -6.5469 L91.1967 0 L89.3686 0 ZM95.5404 -9.125 Q95.931 -9.125 96.2123 -8.9375 Q96.5092 -8.75 96.5092 -8.25 Q96.5092 -7.75 96.2123 -7.5625 Q95.931 -7.375 95.5404 -7.375 Q95.1185 -7.375 94.8373 -7.5625 Q94.556 -7.75 94.556 -8.25 Q94.556 -8.75 94.8373 -8.9375 Q95.1185 -9.125 95.5404 -9.125 ZM96.4154 -6.5469 L96.4154 0 L94.6342 0 L94.6342 -6.5469 L96.4154 -6.5469 ZM100.9504 0.125 Q99.4973 0.125 98.7004 -0.6875 Q97.9036 -1.5 97.9036 -3.2344 Q97.9036 -4.4375 98.3098 -5.1875 Q98.7161 -5.9531 99.4348 -6.3125 Q100.1692 -6.6719 101.1067 -6.6719 Q101.7786 -6.6719 102.2786 -6.5312 Q102.7786 -6.4062 103.1536 -6.2344 L102.6223 -4.8438 Q102.2004 -5.0156 101.8254 -5.125 Q101.4661 -5.2344 101.1067 -5.2344 Q99.7161 -5.2344 99.7161 -3.25 Q99.7161 -2.2656 100.0754 -1.7969 Q100.4504 -1.3281 101.1067 -1.3281 Q101.6692 -1.3281 102.1067 -1.4688 Q102.5442 -1.625 102.9504 -1.8906 L102.9504 -0.375 Q102.5442 -0.1094 102.0911 0 Q101.6379 0.125 100.9504 0.125 ZM107.1654 -6.6719 Q108.5091 -6.6719 109.306 -5.8906 Q110.1029 -5.125 110.1029 -3.7031 L110.1029 -2.8281 L105.8841 -2.8281 Q105.8997 -2.0781 106.3216 -1.6406 Q106.7591 -1.2188 107.5091 -1.2188 Q108.1497 -1.2188 108.6654 -1.3438 Q109.181 -1.4688 109.7279 -1.7344 L109.7279 -0.3438 Q109.2435 -0.1094 108.7122 0 Q108.181 0.125 107.431 0.125 Q106.4466 0.125 105.681 -0.2344 Q104.931 -0.6094 104.4935 -1.3438 Q104.0716 -2.0938 104.0716 -3.2344 Q104.0716 -4.375 104.4466 -5.1406 Q104.8372 -5.9062 105.5404 -6.2812 Q106.2435 -6.6719 107.1654 -6.6719 ZM107.1654 -5.4062 Q106.6497 -5.4062 106.306 -5.0625 Q105.9779 -4.7344 105.9154 -4.0156 L108.4154 -4.0156 Q108.4154 -4.625 108.1029 -5.0156 Q107.806 -5.4062 107.1654 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath17);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="1637.193" x2="1609.6651" y1="457.6058" style="fill:none; clip-path:url(#clipPath2);" y2="457.6058"
+      /><line x1="1609.6651" x2="1609.6651" y1="457.6058" style="fill:none; clip-path:url(#clipPath2);" y2="147.399"
+      /><line x1="1609.6651" x2="1411.4916" y1="147.399" style="fill:none; clip-path:url(#clipPath2);" y2="147.399"
+      /><line x1="1637.193" x2="1609.6651" y1="457.6058" style="fill:none; clip-path:url(#clipPath2);" y2="457.6058"
+      /><line x1="1609.6651" x2="1609.6651" y1="457.6058" style="fill:none; clip-path:url(#clipPath2);" y2="826.0197"
+      /><line x1="1609.6651" x2="1424.8435" y1="826.0197" style="fill:none; clip-path:url(#clipPath2);" y2="826.0197"
+      /><line x1="794.4966" x2="1013.5096" y1="4.879" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="42.1805"
+      /><line x1="794.4966" x2="805.7488" y1="4.879" style="fill:none; clip-path:url(#clipPath2);" y2="0.7091"
+      /><line x1="794.4966" x2="803.734" y1="4.879" style="fill:none; clip-path:url(#clipPath2);" y2="12.5387"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="250.8713" y="-82.7547" width="175.4909" style="clip-path:url(#clipPath2); stroke:none;" height="79.1291"
+      /><rect x="250.8713" y="-82.7547" width="175.4909" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="79.1291"
+      /><rect x="408.3621" y="-76.7547" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="408.3621" y="-76.7547" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="406.3621" y="-68.7547" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="406.3621" y="-68.7547" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="406.3621" y="-73.7547" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="406.3621" y="-73.7547" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(297.8185,-64.7547)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM21.8062 -6.5469 Q22.9 -6.5469 23.4312 -5.9844 Q23.9781 -5.4375 23.9781 -4.1875 L23.9781 0 L22.9312 0 L22.9312 -4.1406 Q22.9312 -5.6562 21.6187 -5.6562 Q20.6812 -5.6562 20.275 -5.1094 Q19.8843 -4.5781 19.8843 -3.5469 L19.8843 0 L18.8375 0 L18.8375 -4.1406 Q18.8375 -5.6562 17.525 -5.6562 Q16.5406 -5.6562 16.1656 -5.0625 Q15.8062 -4.4688 15.8062 -3.3438 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.6031 -6.4375 L15.7593 -5.5625 L15.8218 -5.5625 Q16.1187 -6.0625 16.6187 -6.2969 Q17.1343 -6.5469 17.7125 -6.5469 Q19.2281 -6.5469 19.6812 -5.4688 L19.7437 -5.4688 Q20.0718 -6.0312 20.6187 -6.2812 Q21.1812 -6.5469 21.8062 -6.5469 ZM31.5575 -3.2344 Q31.5575 -1.625 30.745 -0.75 Q29.9325 0.125 28.5575 0.125 Q27.7138 0.125 27.0419 -0.2656 Q26.37 -0.6562 25.9794 -1.4062 Q25.6044 -2.1562 25.6044 -3.2344 Q25.6044 -4.8281 26.4013 -5.6875 Q27.2138 -6.5469 28.5888 -6.5469 Q29.4794 -6.5469 30.1357 -6.1562 Q30.8075 -5.7656 31.1825 -5.0312 Q31.5575 -4.2969 31.5575 -3.2344 ZM26.6982 -3.2344 Q26.6982 -2.0938 27.1513 -1.4219 Q27.6044 -0.75 28.5888 -0.75 Q29.5575 -0.75 30.0107 -1.4219 Q30.4638 -2.0938 30.4638 -3.2344 Q30.4638 -4.375 30.0107 -5.0156 Q29.5575 -5.6562 28.5732 -5.6562 Q27.5888 -5.6562 27.1357 -5.0156 Q26.6982 -4.375 26.6982 -3.2344 ZM35.5051 0.125 Q34.302 0.125 33.5832 -0.7031 Q32.8645 -1.5469 32.8645 -3.2031 Q32.8645 -4.8594 33.5832 -5.7031 Q34.3176 -6.5469 35.5207 -6.5469 Q36.2707 -6.5469 36.7395 -6.2656 Q37.2082 -6 37.5051 -5.6094 L37.5832 -5.6094 Q37.5676 -5.7656 37.5363 -6.0625 Q37.5051 -6.375 37.5051 -6.5469 L37.5051 -9.125 L38.5676 -9.125 L38.5676 0 L37.7238 0 L37.5676 -0.8594 L37.5051 -0.8594 Q37.2238 -0.4531 36.7395 -0.1562 Q36.2707 0.125 35.5051 0.125 ZM35.677 -0.75 Q36.6926 -0.75 37.0988 -1.3125 Q37.5207 -1.875 37.5207 -3 L37.5207 -3.1875 Q37.5207 -4.3906 37.1301 -5.0312 Q36.7395 -5.6719 35.6613 -5.6719 Q34.8176 -5.6719 34.3801 -4.9844 Q33.9582 -4.3125 33.9582 -3.1875 Q33.9582 -2.0312 34.3801 -1.3906 Q34.8176 -0.75 35.677 -0.75 ZM45.9789 -6.4375 L45.9789 0 L45.1195 0 L44.9633 -0.8594 L44.9164 -0.8594 Q44.6039 -0.3438 44.0414 -0.1094 Q43.4945 0.125 42.8695 0.125 Q41.7133 0.125 41.1195 -0.4375 Q40.5414 -1 40.5414 -2.2188 L40.5414 -6.4375 L41.6039 -6.4375 L41.6039 -2.2969 Q41.6039 -0.75 43.0258 -0.75 Q44.1039 -0.75 44.5101 -1.3438 Q44.932 -1.9531 44.932 -3.0781 L44.932 -6.4375 L45.9789 -6.4375 ZM49.0824 0 L48.0199 0 L48.0199 -9.125 L49.0824 -9.125 L49.0824 0 ZM53.6003 -6.5469 Q54.4285 -6.5469 55.0222 -6.1875 Q55.616 -5.8281 55.9285 -5.1719 Q56.2566 -4.5312 56.2566 -3.6406 L56.2566 -3.0156 L51.8503 -3.0156 Q51.8816 -1.9219 52.4128 -1.3438 Q52.9441 -0.7812 53.8972 -0.7812 Q54.5222 -0.7812 54.991 -0.8906 Q55.4597 -1.0156 55.9753 -1.2188 L55.9753 -0.2969 Q55.4753 -0.0781 54.991 0.0156 Q54.5222 0.125 53.8503 0.125 Q52.9441 0.125 52.241 -0.25 Q51.5378 -0.625 51.1472 -1.3594 Q50.7566 -2.0938 50.7566 -3.1719 Q50.7566 -4.2188 51.116 -4.9688 Q51.4753 -5.7344 52.116 -6.1406 Q52.7566 -6.5469 53.6003 -6.5469 ZM53.5847 -5.6875 Q52.8347 -5.6875 52.3972 -5.2031 Q51.9597 -4.7188 51.8816 -3.8594 L55.1472 -3.8594 Q55.1472 -4.6719 54.7722 -5.1719 Q54.3972 -5.6875 53.5847 -5.6875 ZM57.4621 -2.3281 L61.9934 -4.2188 L57.4621 -6.3594 L57.4621 -7.2969 L63.1184 -4.4688 L63.1184 -3.875 L57.4621 -1.3906 L57.4621 -2.3281 ZM64.3262 -2.3281 L68.8574 -4.2188 L64.3262 -6.3594 L64.3262 -7.2969 L69.9824 -4.4688 L69.9824 -3.875 L64.3262 -1.3906 L64.3262 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath18);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(314.7266,-62.4106)"
+    ><path d="M6.5469 12.8281 L5.5156 10.1718 L2.1094 10.1718 L1.0938 12.8281 L0 12.8281 L3.3438 4.2187 L4.3125 4.2187 L7.6562 12.8281 L6.5469 12.8281 ZM4.2188 6.625 Q4.1875 6.5312 4.0938 6.2812 Q4.0156 6.0312 3.9375 5.7656 Q3.8594 5.4843 3.8125 5.3437 Q3.7344 5.7187 3.625 6.0781 Q3.5156 6.4218 3.4375 6.625 L2.4688 9.2187 L5.1875 9.2187 L4.2188 6.625 ZM10.9649 12.9531 Q9.7618 12.9531 9.0431 12.125 Q8.3243 11.2812 8.3243 9.625 Q8.3243 7.9687 9.0431 7.125 Q9.7774 6.2812 10.9806 6.2812 Q11.7306 6.2812 12.1993 6.5625 Q12.6681 6.8281 12.9649 7.2187 L13.0431 7.2187 Q13.0274 7.0625 12.9962 6.7656 Q12.9649 6.4531 12.9649 6.2812 L12.9649 3.7031 L14.0274 3.7031 L14.0274 12.8281 L13.1837 12.8281 L13.0274 11.9687 L12.9649 11.9687 Q12.6837 12.375 12.1993 12.6718 Q11.7306 12.9531 10.9649 12.9531 ZM11.1368 12.0781 Q12.1524 12.0781 12.5587 11.5156 Q12.9806 10.9531 12.9806 9.8281 L12.9806 9.6406 Q12.9806 8.4375 12.5899 7.7968 Q12.1993 7.1562 11.1212 7.1562 Q10.2774 7.1562 9.8399 7.8437 Q9.4181 8.5156 9.4181 9.6406 Q9.4181 10.7968 9.8399 11.4375 Q10.2774 12.0781 11.1368 12.0781 ZM23.1262 6.2812 Q24.22 6.2812 24.7512 6.8437 Q25.2981 7.3906 25.2981 8.6406 L25.2981 12.8281 L24.2512 12.8281 L24.2512 8.6875 Q24.2512 7.1718 22.9387 7.1718 Q22.0012 7.1718 21.595 7.7187 Q21.2044 8.25 21.2044 9.2812 L21.2044 12.8281 L20.1575 12.8281 L20.1575 8.6875 Q20.1575 7.1718 18.845 7.1718 Q17.8606 7.1718 17.4856 7.7656 Q17.1262 8.3593 17.1262 9.4843 L17.1262 12.8281 L16.0637 12.8281 L16.0637 6.3906 L16.9231 6.3906 L17.0794 7.2656 L17.1419 7.2656 Q17.4387 6.7656 17.9387 6.5312 Q18.4544 6.2812 19.0325 6.2812 Q20.5481 6.2812 21.0012 7.3593 L21.0637 7.3593 Q21.3919 6.7968 21.9387 6.5468 Q22.5012 6.2812 23.1262 6.2812 ZM27.8307 3.9843 Q28.0651 3.9843 28.2526 4.1562 Q28.4401 4.3125 28.4401 4.6562 Q28.4401 4.9843 28.2526 5.1562 Q28.0651 5.3281 27.8307 5.3281 Q27.5651 5.3281 27.3776 5.1562 Q27.2057 4.9843 27.2057 4.6562 Q27.2057 4.3125 27.3776 4.1562 Q27.5651 3.9843 27.8307 3.9843 ZM28.3463 6.3906 L28.3463 12.8281 L27.2838 12.8281 L27.2838 6.3906 L28.3463 6.3906 ZM33.4736 6.2812 Q34.6298 6.2812 35.208 6.8437 Q35.8017 7.3906 35.8017 8.6406 L35.8017 12.8281 L34.7705 12.8281 L34.7705 8.7187 Q34.7705 7.1718 33.3173 7.1718 Q32.2548 7.1718 31.8486 7.7656 Q31.4423 8.3593 31.4423 9.4843 L31.4423 12.8281 L30.3798 12.8281 L30.3798 6.3906 L31.2392 6.3906 L31.3955 7.2656 L31.458 7.2656 Q31.7705 6.7656 32.3173 6.5312 Q32.8642 6.2812 33.4736 6.2812 Z" style="stroke:none; clip-path:url(#clipPath19);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="243.8713" y="-43.643" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="243.8713" y="-43.643" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><rect x="271.6583" y="1074.6404" width="192.5556" style="clip-path:url(#clipPath2); stroke:none;" height="162.5771"
+      /><rect x="271.6583" y="1074.6404" width="192.5556" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="162.5771"
+      /><rect x="446.2139" y="1080.6404" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="446.2139" y="1080.6404" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="444.2139" y="1088.6404" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="444.2139" y="1088.6404" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="444.2139" y="1083.6404" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="444.2139" y="1083.6404" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(327.1378,1092.6404)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM21.8062 -6.5469 Q22.9 -6.5469 23.4312 -5.9844 Q23.9781 -5.4375 23.9781 -4.1875 L23.9781 0 L22.9312 0 L22.9312 -4.1406 Q22.9312 -5.6562 21.6187 -5.6562 Q20.6812 -5.6562 20.275 -5.1094 Q19.8843 -4.5781 19.8843 -3.5469 L19.8843 0 L18.8375 0 L18.8375 -4.1406 Q18.8375 -5.6562 17.525 -5.6562 Q16.5406 -5.6562 16.1656 -5.0625 Q15.8062 -4.4688 15.8062 -3.3438 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.6031 -6.4375 L15.7593 -5.5625 L15.8218 -5.5625 Q16.1187 -6.0625 16.6187 -6.2969 Q17.1343 -6.5469 17.7125 -6.5469 Q19.2281 -6.5469 19.6812 -5.4688 L19.7437 -5.4688 Q20.0718 -6.0312 20.6187 -6.2812 Q21.1812 -6.5469 21.8062 -6.5469 ZM31.5575 -3.2344 Q31.5575 -1.625 30.745 -0.75 Q29.9325 0.125 28.5575 0.125 Q27.7138 0.125 27.0419 -0.2656 Q26.37 -0.6562 25.9794 -1.4062 Q25.6044 -2.1562 25.6044 -3.2344 Q25.6044 -4.8281 26.4013 -5.6875 Q27.2138 -6.5469 28.5888 -6.5469 Q29.4794 -6.5469 30.1357 -6.1562 Q30.8075 -5.7656 31.1825 -5.0312 Q31.5575 -4.2969 31.5575 -3.2344 ZM26.6982 -3.2344 Q26.6982 -2.0938 27.1513 -1.4219 Q27.6044 -0.75 28.5888 -0.75 Q29.5575 -0.75 30.0107 -1.4219 Q30.4638 -2.0938 30.4638 -3.2344 Q30.4638 -4.375 30.0107 -5.0156 Q29.5575 -5.6562 28.5732 -5.6562 Q27.5888 -5.6562 27.1357 -5.0156 Q26.6982 -4.375 26.6982 -3.2344 ZM35.5051 0.125 Q34.302 0.125 33.5832 -0.7031 Q32.8645 -1.5469 32.8645 -3.2031 Q32.8645 -4.8594 33.5832 -5.7031 Q34.3176 -6.5469 35.5207 -6.5469 Q36.2707 -6.5469 36.7395 -6.2656 Q37.2082 -6 37.5051 -5.6094 L37.5832 -5.6094 Q37.5676 -5.7656 37.5363 -6.0625 Q37.5051 -6.375 37.5051 -6.5469 L37.5051 -9.125 L38.5676 -9.125 L38.5676 0 L37.7238 0 L37.5676 -0.8594 L37.5051 -0.8594 Q37.2238 -0.4531 36.7395 -0.1562 Q36.2707 0.125 35.5051 0.125 ZM35.677 -0.75 Q36.6926 -0.75 37.0988 -1.3125 Q37.5207 -1.875 37.5207 -3 L37.5207 -3.1875 Q37.5207 -4.3906 37.1301 -5.0312 Q36.7395 -5.6719 35.6613 -5.6719 Q34.8176 -5.6719 34.3801 -4.9844 Q33.9582 -4.3125 33.9582 -3.1875 Q33.9582 -2.0312 34.3801 -1.3906 Q34.8176 -0.75 35.677 -0.75 ZM45.9789 -6.4375 L45.9789 0 L45.1195 0 L44.9633 -0.8594 L44.9164 -0.8594 Q44.6039 -0.3438 44.0414 -0.1094 Q43.4945 0.125 42.8695 0.125 Q41.7133 0.125 41.1195 -0.4375 Q40.5414 -1 40.5414 -2.2188 L40.5414 -6.4375 L41.6039 -6.4375 L41.6039 -2.2969 Q41.6039 -0.75 43.0258 -0.75 Q44.1039 -0.75 44.5101 -1.3438 Q44.932 -1.9531 44.932 -3.0781 L44.932 -6.4375 L45.9789 -6.4375 ZM49.0824 0 L48.0199 0 L48.0199 -9.125 L49.0824 -9.125 L49.0824 0 ZM53.6003 -6.5469 Q54.4285 -6.5469 55.0222 -6.1875 Q55.616 -5.8281 55.9285 -5.1719 Q56.2566 -4.5312 56.2566 -3.6406 L56.2566 -3.0156 L51.8503 -3.0156 Q51.8816 -1.9219 52.4128 -1.3438 Q52.9441 -0.7812 53.8972 -0.7812 Q54.5222 -0.7812 54.991 -0.8906 Q55.4597 -1.0156 55.9753 -1.2188 L55.9753 -0.2969 Q55.4753 -0.0781 54.991 0.0156 Q54.5222 0.125 53.8503 0.125 Q52.9441 0.125 52.241 -0.25 Q51.5378 -0.625 51.1472 -1.3594 Q50.7566 -2.0938 50.7566 -3.1719 Q50.7566 -4.2188 51.116 -4.9688 Q51.4753 -5.7344 52.116 -6.1406 Q52.7566 -6.5469 53.6003 -6.5469 ZM53.5847 -5.6875 Q52.8347 -5.6875 52.3972 -5.2031 Q51.9597 -4.7188 51.8816 -3.8594 L55.1472 -3.8594 Q55.1472 -4.6719 54.7722 -5.1719 Q54.3972 -5.6875 53.5847 -5.6875 ZM57.4621 -2.3281 L61.9934 -4.2188 L57.4621 -6.3594 L57.4621 -7.2969 L63.1184 -4.4688 L63.1184 -3.875 L57.4621 -1.3906 L57.4621 -2.3281 ZM64.3262 -2.3281 L68.8574 -4.2188 L64.3262 -6.3594 L64.3262 -7.2969 L69.9824 -4.4688 L69.9824 -3.875 L64.3262 -1.3906 L64.3262 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath20);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(349.02,1094.9845)"
+    ><path d="M6.5469 12.8281 L5.5156 10.1718 L2.1094 10.1718 L1.0938 12.8281 L0 12.8281 L3.3438 4.2187 L4.3125 4.2187 L7.6562 12.8281 L6.5469 12.8281 ZM4.2188 6.625 Q4.1875 6.5312 4.0938 6.2812 Q4.0156 6.0312 3.9375 5.7656 Q3.8594 5.4843 3.8125 5.3437 Q3.7344 5.7187 3.625 6.0781 Q3.5156 6.4218 3.4375 6.625 L2.4688 9.2187 L5.1875 9.2187 L4.2188 6.625 ZM14.0587 6.3906 L14.0587 12.8281 L13.1993 12.8281 L13.0431 11.9687 L12.9962 11.9687 Q12.6837 12.4843 12.1212 12.7187 Q11.5743 12.9531 10.9493 12.9531 Q9.7931 12.9531 9.1993 12.3906 Q8.6212 11.8281 8.6212 10.6093 L8.6212 6.3906 L9.6837 6.3906 L9.6837 10.5312 Q9.6837 12.0781 11.1056 12.0781 Q12.1837 12.0781 12.5899 11.4843 Q13.0118 10.875 13.0118 9.75 L13.0118 6.3906 L14.0587 6.3906 ZM18.256 12.0781 Q18.4904 12.0781 18.7404 12.0468 Q18.9904 12 19.1466 11.9531 L19.1466 12.75 Q18.9904 12.8437 18.6779 12.8906 Q18.3654 12.9531 18.0685 12.9531 Q17.5685 12.9531 17.131 12.7812 Q16.7091 12.5937 16.4435 12.1718 Q16.1935 11.7343 16.1935 10.9531 L16.1935 7.2187 L15.2716 7.2187 L15.2716 6.7031 L16.1935 6.2812 L16.6154 4.9218 L17.2404 4.9218 L17.2404 6.3906 L19.0997 6.3906 L19.0997 7.2187 L17.2404 7.2187 L17.2404 10.9375 Q17.2404 11.5156 17.5216 11.7968 Q17.8029 12.0781 18.256 12.0781 ZM21.4943 6.3906 Q21.4943 6.8593 21.4318 7.2812 L21.5099 7.2812 Q21.8224 6.7968 22.3536 6.5468 Q22.8849 6.2812 23.5099 6.2812 Q24.6818 6.2812 25.2599 6.8437 Q25.8536 7.4062 25.8536 8.6406 L25.8536 12.8281 L24.8224 12.8281 L24.8224 8.7187 Q24.8224 7.1718 23.3693 7.1718 Q22.2911 7.1718 21.8849 7.7812 Q21.4943 8.375 21.4943 9.5 L21.4943 12.8281 L20.4318 12.8281 L20.4318 3.7031 L21.4943 3.7031 L21.4943 6.3906 Z" style="stroke:none; clip-path:url(#clipPath21);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="264.6583" y="1149.0282" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="264.6583" y="1149.0282" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><rect x="300.2694" y="1118.8996" width="135" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="300.2694" y="1118.8996" width="135" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="417.2694" y="1124.8996" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="417.2694" y="1124.8996" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="415.2694" y="1132.8996" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="415.2694" y="1132.8996" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="415.2694" y="1127.8996" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="415.2694" y="1127.8996" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(316.1351,1136.8996)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath22);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(313.2311,1139.2437)"
+    ><path d="M1.1562 12.8281 L1.1562 4.2656 L2.25 4.2656 L2.25 11.875 L5.9844 11.875 L5.9844 12.8281 L1.1562 12.8281 ZM12.8974 9.5937 Q12.8974 11.2031 12.0849 12.0781 Q11.2724 12.9531 9.8974 12.9531 Q9.0537 12.9531 8.3818 12.5625 Q7.7099 12.1718 7.3193 11.4218 Q6.9443 10.6718 6.9443 9.5937 Q6.9443 8 7.7412 7.1406 Q8.5537 6.2812 9.9287 6.2812 Q10.8193 6.2812 11.4755 6.6718 Q12.1474 7.0625 12.5224 7.7968 Q12.8974 8.5312 12.8974 9.5937 ZM8.038 9.5937 Q8.038 10.7343 8.4912 11.4062 Q8.9443 12.0781 9.9287 12.0781 Q10.8974 12.0781 11.3505 11.4062 Q11.8037 10.7343 11.8037 9.5937 Q11.8037 8.4531 11.3505 7.8125 Q10.8974 7.1718 9.913 7.1718 Q8.9287 7.1718 8.4755 7.8125 Q8.038 8.4531 8.038 9.5937 ZM16.845 6.2812 Q17.4856 6.2812 17.9856 6.5156 Q18.5012 6.75 18.8606 7.25 L18.9231 7.25 L19.0637 6.3906 L19.9075 6.3906 L19.9075 12.9375 Q19.9075 14.3125 19.2043 15 Q18.5012 15.7031 17.0325 15.7031 Q15.6106 15.7031 14.7043 15.2968 L14.7043 14.3281 Q15.6575 14.8281 17.095 14.8281 Q17.9231 14.8281 18.3918 14.3437 Q18.8606 13.8593 18.8606 13.0156 L18.8606 12.7656 Q18.8606 12.625 18.8762 12.3593 Q18.8918 12.0781 18.9075 11.9687 L18.845 11.9687 Q18.2043 12.9531 16.8606 12.9531 Q15.6106 12.9531 14.9075 12.0781 Q14.2043 11.2031 14.2043 9.625 Q14.2043 8.0937 14.9075 7.1875 Q15.6106 6.2812 16.845 6.2812 ZM16.9856 7.1718 Q16.1887 7.1718 15.7356 7.8125 Q15.2981 8.4531 15.2981 9.6406 Q15.2981 10.8281 15.7356 11.4531 Q16.1731 12.0781 17.0168 12.0781 Q17.9856 12.0781 18.4231 11.5625 Q18.8762 11.0468 18.8762 9.875 L18.8762 9.625 Q18.8762 8.2968 18.4231 7.7343 Q17.97 7.1718 16.9856 7.1718 ZM22.4906 3.9843 Q22.725 3.9843 22.9125 4.1562 Q23.1 4.3125 23.1 4.6562 Q23.1 4.9843 22.9125 5.1562 Q22.725 5.3281 22.4906 5.3281 Q22.225 5.3281 22.0375 5.1562 Q21.8656 4.9843 21.8656 4.6562 Q21.8656 4.3125 22.0375 4.1562 Q22.225 3.9843 22.4906 3.9843 ZM23.0063 6.3906 L23.0063 12.8281 L21.9438 12.8281 L21.9438 6.3906 L23.0063 6.3906 ZM28.1335 6.2812 Q29.2898 6.2812 29.8679 6.8437 Q30.4617 7.3906 30.4617 8.6406 L30.4617 12.8281 L29.4304 12.8281 L29.4304 8.7187 Q29.4304 7.1718 27.9773 7.1718 Q26.9148 7.1718 26.5085 7.7656 Q26.1023 8.3593 26.1023 9.4843 L26.1023 12.8281 L25.0398 12.8281 L25.0398 6.3906 L25.8992 6.3906 L26.0554 7.2656 L26.1179 7.2656 Q26.4304 6.7656 26.9773 6.5312 Q27.5242 6.2812 28.1335 6.2812 ZM36.284 5.0937 Q34.8933 5.0937 34.0965 6.0156 Q33.3152 6.9375 33.3152 8.5468 Q33.3152 10.1406 34.0496 11.0781 Q34.784 12 36.2683 12 Q36.8308 12 37.3308 11.9062 Q37.8308 11.8125 38.3152 11.6718 L38.3152 12.5937 Q37.8308 12.7812 37.3152 12.8593 Q36.8152 12.9531 36.1121 12.9531 Q34.7996 12.9531 33.9246 12.4218 Q33.0496 11.875 32.6121 10.875 Q32.1746 9.875 32.1746 8.5312 Q32.1746 7.2343 32.6433 6.25 Q33.1277 5.25 34.0496 4.7031 Q34.9715 4.1406 36.284 4.1406 Q37.6433 4.1406 38.659 4.6406 L38.2215 5.5625 Q37.8308 5.375 37.3308 5.2343 Q36.8465 5.0937 36.284 5.0937 ZM45.6337 9.5937 Q45.6337 11.2031 44.8212 12.0781 Q44.0087 12.9531 42.6337 12.9531 Q41.7899 12.9531 41.118 12.5625 Q40.4462 12.1718 40.0555 11.4218 Q39.6805 10.6718 39.6805 9.5937 Q39.6805 8 40.4774 7.1406 Q41.2899 6.2812 42.6649 6.2812 Q43.5555 6.2812 44.2118 6.6718 Q44.8837 7.0625 45.2587 7.7968 Q45.6337 8.5312 45.6337 9.5937 ZM40.7743 9.5937 Q40.7743 10.7343 41.2274 11.4062 Q41.6805 12.0781 42.6649 12.0781 Q43.6337 12.0781 44.0868 11.4062 Q44.5399 10.7343 44.5399 9.5937 Q44.5399 8.4531 44.0868 7.8125 Q43.6337 7.1718 42.6493 7.1718 Q41.6649 7.1718 41.2118 7.8125 Q40.7743 8.4531 40.7743 9.5937 ZM54.3625 6.2812 Q55.4562 6.2812 55.9875 6.8437 Q56.5343 7.3906 56.5343 8.6406 L56.5343 12.8281 L55.4875 12.8281 L55.4875 8.6875 Q55.4875 7.1718 54.175 7.1718 Q53.2375 7.1718 52.8312 7.7187 Q52.4406 8.25 52.4406 9.2812 L52.4406 12.8281 L51.3937 12.8281 L51.3937 8.6875 Q51.3937 7.1718 50.0812 7.1718 Q49.0968 7.1718 48.7218 7.7656 Q48.3625 8.3593 48.3625 9.4843 L48.3625 12.8281 L47.3 12.8281 L47.3 6.3906 L48.1593 6.3906 L48.3156 7.2656 L48.3781 7.2656 Q48.675 6.7656 49.175 6.5312 Q49.6906 6.2812 50.2687 6.2812 Q51.7843 6.2812 52.2375 7.3593 L52.3 7.3593 Q52.6281 6.7968 53.175 6.5468 Q53.7375 6.2812 54.3625 6.2812 ZM61.5825 6.2812 Q62.77 6.2812 63.4888 7.1093 Q64.2232 7.9375 64.2232 9.5937 Q64.2232 11.25 63.4888 12.1093 Q62.77 12.9531 61.5669 12.9531 Q60.8325 12.9531 60.3482 12.6718 Q59.8638 12.3906 59.5825 12.0156 L59.5044 12.0156 Q59.5357 12.2187 59.5513 12.5312 Q59.5825 12.8437 59.5825 13.0625 L59.5825 15.7031 L58.52 15.7031 L58.52 6.3906 L59.395 6.3906 L59.5357 7.2656 L59.5825 7.2656 Q59.8638 6.8593 60.3325 6.5781 Q60.8013 6.2812 61.5825 6.2812 ZM61.395 7.1718 Q60.4107 7.1718 60.0044 7.7187 Q59.5982 8.2656 59.5825 9.3906 L59.5825 9.5937 Q59.5825 10.7812 59.9732 11.4375 Q60.3638 12.0781 61.4107 12.0781 Q62.0044 12.0781 62.3794 11.75 Q62.7544 11.4218 62.9419 10.875 Q63.1294 10.3125 63.1294 9.5937 Q63.1294 8.4843 62.7075 7.8281 Q62.2857 7.1718 61.395 7.1718 ZM71.4938 9.5937 Q71.4938 11.2031 70.6813 12.0781 Q69.8688 12.9531 68.4938 12.9531 Q67.6501 12.9531 66.9782 12.5625 Q66.3063 12.1718 65.9157 11.4218 Q65.5407 10.6718 65.5407 9.5937 Q65.5407 8 66.3376 7.1406 Q67.1501 6.2812 68.5251 6.2812 Q69.4157 6.2812 70.072 6.6718 Q70.7438 7.0625 71.1188 7.7968 Q71.4938 8.5312 71.4938 9.5937 ZM66.6345 9.5937 Q66.6345 10.7343 67.0876 11.4062 Q67.5407 12.0781 68.5251 12.0781 Q69.4938 12.0781 69.947 11.4062 Q70.4001 10.7343 70.4001 9.5937 Q70.4001 8.4531 69.947 7.8125 Q69.4938 7.1718 68.5095 7.1718 Q67.5251 7.1718 67.072 7.8125 Q66.6345 8.4531 66.6345 9.5937 ZM76.2539 6.2812 Q77.4101 6.2812 77.9883 6.8437 Q78.582 7.3906 78.582 8.6406 L78.582 12.8281 L77.5508 12.8281 L77.5508 8.7187 Q77.5508 7.1718 76.0976 7.1718 Q75.0351 7.1718 74.6289 7.7656 Q74.2226 8.3593 74.2226 9.4843 L74.2226 12.8281 L73.1601 12.8281 L73.1601 6.3906 L74.0195 6.3906 L74.1758 7.2656 L74.2383 7.2656 Q74.5508 6.7656 75.0976 6.5312 Q75.6445 6.2812 76.2539 6.2812 ZM83.0606 6.2812 Q83.8887 6.2812 84.4824 6.6406 Q85.0762 7 85.3887 7.6562 Q85.7168 8.2968 85.7168 9.1875 L85.7168 9.8125 L81.3106 9.8125 Q81.3418 10.9062 81.8731 11.4843 Q82.4043 12.0468 83.3574 12.0468 Q83.9824 12.0468 84.4512 11.9375 Q84.9199 11.8125 85.4356 11.6093 L85.4356 12.5312 Q84.9356 12.75 84.4512 12.8437 Q83.9824 12.9531 83.3106 12.9531 Q82.4043 12.9531 81.7012 12.5781 Q80.9981 12.2031 80.6074 11.4687 Q80.2168 10.7343 80.2168 9.6562 Q80.2168 8.6093 80.5762 7.8593 Q80.9356 7.0937 81.5762 6.6875 Q82.2168 6.2812 83.0606 6.2812 ZM83.0449 7.1406 Q82.2949 7.1406 81.8574 7.625 Q81.4199 8.1093 81.3418 8.9687 L84.6074 8.9687 Q84.6074 8.1562 84.2324 7.6562 Q83.8574 7.1406 83.0449 7.1406 ZM90.438 6.2812 Q91.5942 6.2812 92.1724 6.8437 Q92.7661 7.3906 92.7661 8.6406 L92.7661 12.8281 L91.7349 12.8281 L91.7349 8.7187 Q91.7349 7.1718 90.2817 7.1718 Q89.2192 7.1718 88.813 7.7656 Q88.4067 8.3593 88.4067 9.4843 L88.4067 12.8281 L87.3442 12.8281 L87.3442 6.3906 L88.2036 6.3906 L88.3599 7.2656 L88.4224 7.2656 Q88.7349 6.7656 89.2817 6.5312 Q89.8286 6.2812 90.438 6.2812 ZM96.9165 12.0781 Q97.1509 12.0781 97.4009 12.0468 Q97.6509 12 97.8072 11.9531 L97.8072 12.75 Q97.6509 12.8437 97.3384 12.8906 Q97.0259 12.9531 96.729 12.9531 Q96.229 12.9531 95.7915 12.7812 Q95.3697 12.5937 95.104 12.1718 Q94.854 11.7343 94.854 10.9531 L94.854 7.2187 L93.9322 7.2187 L93.9322 6.7031 L94.854 6.2812 L95.2759 4.9218 L95.9009 4.9218 L95.9009 6.3906 L97.7603 6.3906 L97.7603 7.2187 L95.9009 7.2187 L95.9009 10.9375 Q95.9009 11.5156 96.1822 11.7968 Q96.4634 12.0781 96.9165 12.0781 Z" style="stroke:none; clip-path:url(#clipPath23);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="292.2694" y="1173.5292" width="151" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="292.2694" y="1173.5292" width="151" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="425.2694" y="1179.5292" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="425.2694" y="1179.5292" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="423.2694" y="1187.5292" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="423.2694" y="1187.5292" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="423.2694" y="1182.5292" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="423.2694" y="1182.5292" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(316.1351,1191.5292)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath24);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(305.695,1193.8734)"
+    ><path d="M3.5312 4.2656 Q5.125 4.2656 5.875 4.875 Q6.6406 5.4687 6.6406 6.7031 Q6.6406 7.375 6.3906 7.8437 Q6.1406 8.2968 5.75 8.5625 Q5.3594 8.8281 4.9375 8.9843 L7.2812 12.8281 L6.0312 12.8281 L3.9531 9.2812 L2.25 9.2812 L2.25 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.5312 4.2656 ZM3.4688 5.2031 L2.25 5.2031 L2.25 8.375 L3.5312 8.375 Q4.5781 8.375 5.0469 7.9687 Q5.5312 7.5468 5.5312 6.75 Q5.5312 5.9062 5.0312 5.5625 Q4.5312 5.2031 3.4688 5.2031 ZM10.9641 6.2812 Q11.7922 6.2812 12.3859 6.6406 Q12.9797 7 13.2922 7.6562 Q13.6203 8.2968 13.6203 9.1875 L13.6203 9.8125 L9.2141 9.8125 Q9.2453 10.9062 9.7766 11.4843 Q10.3078 12.0468 11.2609 12.0468 Q11.8859 12.0468 12.3547 11.9375 Q12.8234 11.8125 13.3391 11.6093 L13.3391 12.5312 Q12.8391 12.75 12.3547 12.8437 Q11.8859 12.9531 11.2141 12.9531 Q10.3078 12.9531 9.6047 12.5781 Q8.9016 12.2031 8.5109 11.4687 Q8.1203 10.7343 8.1203 9.6562 Q8.1203 8.6093 8.4797 7.8593 Q8.8391 7.0937 9.4797 6.6875 Q10.1203 6.2812 10.9641 6.2812 ZM10.9484 7.1406 Q10.1984 7.1406 9.7609 7.625 Q9.3234 8.1093 9.2453 8.9687 L12.5109 8.9687 Q12.5109 8.1562 12.1359 7.6562 Q11.7609 7.1406 10.9484 7.1406 ZM17.529 6.2812 Q18.1696 6.2812 18.6696 6.5156 Q19.1852 6.75 19.5446 7.25 L19.6071 7.25 L19.7477 6.3906 L20.5915 6.3906 L20.5915 12.9375 Q20.5915 14.3125 19.8884 15 Q19.1852 15.7031 17.7165 15.7031 Q16.2946 15.7031 15.3884 15.2968 L15.3884 14.3281 Q16.3415 14.8281 17.779 14.8281 Q18.6071 14.8281 19.0759 14.3437 Q19.5446 13.8593 19.5446 13.0156 L19.5446 12.7656 Q19.5446 12.625 19.5602 12.3593 Q19.5759 12.0781 19.5915 11.9687 L19.529 11.9687 Q18.8884 12.9531 17.5446 12.9531 Q16.2946 12.9531 15.5915 12.0781 Q14.8884 11.2031 14.8884 9.625 Q14.8884 8.0937 15.5915 7.1875 Q16.2946 6.2812 17.529 6.2812 ZM17.6696 7.1718 Q16.8727 7.1718 16.4196 7.8125 Q15.9821 8.4531 15.9821 9.6406 Q15.9821 10.8281 16.4196 11.4531 Q16.8571 12.0781 17.7009 12.0781 Q18.6696 12.0781 19.1071 11.5625 Q19.5602 11.0468 19.5602 9.875 L19.5602 9.625 Q19.5602 8.2968 19.1071 7.7343 Q18.654 7.1718 17.6696 7.1718 ZM23.1747 3.9843 Q23.409 3.9843 23.5965 4.1562 Q23.784 4.3125 23.784 4.6562 Q23.784 4.9843 23.5965 5.1562 Q23.409 5.3281 23.1747 5.3281 Q22.909 5.3281 22.7215 5.1562 Q22.5497 4.9843 22.5497 4.6562 Q22.5497 4.3125 22.7215 4.1562 Q22.909 3.9843 23.1747 3.9843 ZM23.6903 6.3906 L23.6903 12.8281 L22.6278 12.8281 L22.6278 6.3906 L23.6903 6.3906 ZM29.9113 11.0468 Q29.9113 11.9843 29.2082 12.4687 Q28.5207 12.9531 27.3488 12.9531 Q26.6769 12.9531 26.1926 12.8437 Q25.7082 12.7343 25.3332 12.5468 L25.3332 11.5781 Q25.7238 11.7656 26.2551 11.9375 Q26.8019 12.0937 27.3644 12.0937 Q28.1769 12.0937 28.5363 11.8437 Q28.8957 11.5781 28.8957 11.1406 Q28.8957 10.9062 28.7551 10.7187 Q28.6301 10.5312 28.2863 10.3437 Q27.9426 10.1406 27.3176 9.9062 Q26.6926 9.6562 26.2394 9.4218 Q25.8019 9.1875 25.5519 8.8593 Q25.3176 8.5156 25.3176 7.9843 Q25.3176 7.1718 25.9738 6.7343 Q26.6457 6.2812 27.7394 6.2812 Q28.3176 6.2812 28.8176 6.3906 Q29.3332 6.5 29.7863 6.7031 L29.4269 7.5468 Q29.0207 7.375 28.5676 7.2656 Q28.1301 7.1406 27.6613 7.1406 Q27.0051 7.1406 26.6613 7.3593 Q26.3332 7.5625 26.3332 7.9218 Q26.3332 8.1875 26.4894 8.375 Q26.6457 8.5625 27.0051 8.7343 Q27.3644 8.9062 27.9894 9.1406 Q28.5988 9.375 29.0207 9.625 Q29.4582 9.8593 29.6769 10.2031 Q29.9113 10.5312 29.9113 11.0468 ZM33.6281 12.0781 Q33.8625 12.0781 34.1125 12.0468 Q34.3625 12 34.5187 11.9531 L34.5187 12.75 Q34.3625 12.8437 34.05 12.8906 Q33.7375 12.9531 33.4406 12.9531 Q32.9406 12.9531 32.5031 12.7812 Q32.0812 12.5937 31.8156 12.1718 Q31.5656 11.7343 31.5656 10.9531 L31.5656 7.2187 L30.6437 7.2187 L30.6437 6.7031 L31.5656 6.2812 L31.9875 4.9218 L32.6125 4.9218 L32.6125 6.3906 L34.4718 6.3906 L34.4718 7.2187 L32.6125 7.2187 L32.6125 10.9375 Q32.6125 11.5156 32.8937 11.7968 Q33.175 12.0781 33.6281 12.0781 ZM38.2883 6.2812 Q39.1164 6.2812 39.7101 6.6406 Q40.3039 7 40.6164 7.6562 Q40.9445 8.2968 40.9445 9.1875 L40.9445 9.8125 L36.5383 9.8125 Q36.5695 10.9062 37.1008 11.4843 Q37.632 12.0468 38.5851 12.0468 Q39.2101 12.0468 39.6789 11.9375 Q40.1476 11.8125 40.6633 11.6093 L40.6633 12.5312 Q40.1633 12.75 39.6789 12.8437 Q39.2101 12.9531 38.5383 12.9531 Q37.632 12.9531 36.9289 12.5781 Q36.2258 12.2031 35.8351 11.4687 Q35.4445 10.7343 35.4445 9.6562 Q35.4445 8.6093 35.8039 7.8593 Q36.1633 7.0937 36.8039 6.6875 Q37.4445 6.2812 38.2883 6.2812 ZM38.2726 7.1406 Q37.5226 7.1406 37.0851 7.625 Q36.6476 8.1093 36.5695 8.9687 L39.8351 8.9687 Q39.8351 8.1562 39.4601 7.6562 Q39.0851 7.1406 38.2726 7.1406 ZM45.5719 6.2812 Q45.7594 6.2812 45.9626 6.2968 Q46.1813 6.3125 46.3376 6.3437 L46.1969 7.3125 Q46.0407 7.2812 45.8532 7.2656 Q45.6657 7.2343 45.5094 7.2343 Q45.0094 7.2343 44.5719 7.5156 Q44.1501 7.7812 43.8844 8.2656 Q43.6344 8.75 43.6344 9.3906 L43.6344 12.8281 L42.5719 12.8281 L42.5719 6.3906 L43.4469 6.3906 L43.5563 7.5781 L43.6032 7.5781 Q43.9157 7.0468 44.4001 6.6718 Q44.9001 6.2812 45.5719 6.2812 ZM51.3561 5.0937 Q49.9655 5.0937 49.1686 6.0156 Q48.3873 6.9375 48.3873 8.5468 Q48.3873 10.1406 49.1217 11.0781 Q49.8561 12 51.3405 12 Q51.903 12 52.403 11.9062 Q52.903 11.8125 53.3873 11.6718 L53.3873 12.5937 Q52.903 12.7812 52.3873 12.8593 Q51.8873 12.9531 51.1842 12.9531 Q49.8717 12.9531 48.9967 12.4218 Q48.1217 11.875 47.6842 10.875 Q47.2467 9.875 47.2467 8.5312 Q47.2467 7.2343 47.7155 6.25 Q48.1998 5.25 49.1217 4.7031 Q50.0436 4.1406 51.3561 4.1406 Q52.7155 4.1406 53.7311 4.6406 L53.2936 5.5625 Q52.903 5.375 52.403 5.2343 Q51.9186 5.0937 51.3561 5.0937 ZM60.7058 9.5937 Q60.7058 11.2031 59.8933 12.0781 Q59.0808 12.9531 57.7058 12.9531 Q56.862 12.9531 56.1902 12.5625 Q55.5183 12.1718 55.1277 11.4218 Q54.7527 10.6718 54.7527 9.5937 Q54.7527 8 55.5495 7.1406 Q56.362 6.2812 57.737 6.2812 Q58.6277 6.2812 59.2839 6.6718 Q59.9558 7.0625 60.3308 7.7968 Q60.7058 8.5312 60.7058 9.5937 ZM55.8464 9.5937 Q55.8464 10.7343 56.2995 11.4062 Q56.7527 12.0781 57.737 12.0781 Q58.7058 12.0781 59.1589 11.4062 Q59.612 10.7343 59.612 9.5937 Q59.612 8.4531 59.1589 7.8125 Q58.7058 7.1718 57.7214 7.1718 Q56.737 7.1718 56.2839 7.8125 Q55.8464 8.4531 55.8464 9.5937 ZM69.4346 6.2812 Q70.5283 6.2812 71.0596 6.8437 Q71.6065 7.3906 71.6065 8.6406 L71.6065 12.8281 L70.5596 12.8281 L70.5596 8.6875 Q70.5596 7.1718 69.2471 7.1718 Q68.3096 7.1718 67.9033 7.7187 Q67.5127 8.25 67.5127 9.2812 L67.5127 12.8281 L66.4658 12.8281 L66.4658 8.6875 Q66.4658 7.1718 65.1533 7.1718 Q64.169 7.1718 63.794 7.7656 Q63.4346 8.3593 63.4346 9.4843 L63.4346 12.8281 L62.3721 12.8281 L62.3721 6.3906 L63.2315 6.3906 L63.3877 7.2656 L63.4502 7.2656 Q63.7471 6.7656 64.2471 6.5312 Q64.7627 6.2812 65.3408 6.2812 Q66.8565 6.2812 67.3096 7.3593 L67.3721 7.3593 Q67.7002 6.7968 68.2471 6.5468 Q68.8096 6.2812 69.4346 6.2812 ZM76.6547 6.2812 Q77.8422 6.2812 78.5609 7.1093 Q79.2953 7.9375 79.2953 9.5937 Q79.2953 11.25 78.5609 12.1093 Q77.8422 12.9531 76.639 12.9531 Q75.9047 12.9531 75.4203 12.6718 Q74.9359 12.3906 74.6547 12.0156 L74.5765 12.0156 Q74.6078 12.2187 74.6234 12.5312 Q74.6547 12.8437 74.6547 13.0625 L74.6547 15.7031 L73.5922 15.7031 L73.5922 6.3906 L74.4672 6.3906 L74.6078 7.2656 L74.6547 7.2656 Q74.9359 6.8593 75.4047 6.5781 Q75.8734 6.2812 76.6547 6.2812 ZM76.4672 7.1718 Q75.4828 7.1718 75.0765 7.7187 Q74.6703 8.2656 74.6547 9.3906 L74.6547 9.5937 Q74.6547 10.7812 75.0453 11.4375 Q75.4359 12.0781 76.4828 12.0781 Q77.0765 12.0781 77.4515 11.75 Q77.8265 11.4218 78.014 10.875 Q78.2015 10.3125 78.2015 9.5937 Q78.2015 8.4843 77.7797 7.8281 Q77.3578 7.1718 76.4672 7.1718 ZM86.566 9.5937 Q86.566 11.2031 85.7535 12.0781 Q84.941 12.9531 83.566 12.9531 Q82.7222 12.9531 82.0503 12.5625 Q81.3785 12.1718 80.9878 11.4218 Q80.6128 10.6718 80.6128 9.5937 Q80.6128 8 81.4097 7.1406 Q82.2222 6.2812 83.5972 6.2812 Q84.4878 6.2812 85.1441 6.6718 Q85.816 7.0625 86.191 7.7968 Q86.566 8.5312 86.566 9.5937 ZM81.7066 9.5937 Q81.7066 10.7343 82.1597 11.4062 Q82.6128 12.0781 83.5972 12.0781 Q84.566 12.0781 85.0191 11.4062 Q85.4722 10.7343 85.4722 9.5937 Q85.4722 8.4531 85.0191 7.8125 Q84.566 7.1718 83.5816 7.1718 Q82.5972 7.1718 82.1441 7.8125 Q81.7066 8.4531 81.7066 9.5937 ZM91.326 6.2812 Q92.4823 6.2812 93.0604 6.8437 Q93.6541 7.3906 93.6541 8.6406 L93.6541 12.8281 L92.6229 12.8281 L92.6229 8.7187 Q92.6229 7.1718 91.1698 7.1718 Q90.1073 7.1718 89.701 7.7656 Q89.2948 8.3593 89.2948 9.4843 L89.2948 12.8281 L88.2323 12.8281 L88.2323 6.3906 L89.0916 6.3906 L89.2479 7.2656 L89.3104 7.2656 Q89.6229 6.7656 90.1698 6.5312 Q90.7166 6.2812 91.326 6.2812 ZM98.1327 6.2812 Q98.9608 6.2812 99.5546 6.6406 Q100.1483 7 100.4608 7.6562 Q100.7889 8.2968 100.7889 9.1875 L100.7889 9.8125 L96.3827 9.8125 Q96.4139 10.9062 96.9452 11.4843 Q97.4764 12.0468 98.4296 12.0468 Q99.0546 12.0468 99.5233 11.9375 Q99.9921 11.8125 100.5077 11.6093 L100.5077 12.5312 Q100.0077 12.75 99.5233 12.8437 Q99.0546 12.9531 98.3827 12.9531 Q97.4764 12.9531 96.7733 12.5781 Q96.0702 12.2031 95.6796 11.4687 Q95.2889 10.7343 95.2889 9.6562 Q95.2889 8.6093 95.6483 7.8593 Q96.0077 7.0937 96.6483 6.6875 Q97.2889 6.2812 98.1327 6.2812 ZM98.1171 7.1406 Q97.3671 7.1406 96.9296 7.625 Q96.4921 8.1093 96.4139 8.9687 L99.6796 8.9687 Q99.6796 8.1562 99.3046 7.6562 Q98.9296 7.1406 98.1171 7.1406 ZM105.5101 6.2812 Q106.6664 6.2812 107.2445 6.8437 Q107.8382 7.3906 107.8382 8.6406 L107.8382 12.8281 L106.807 12.8281 L106.807 8.7187 Q106.807 7.1718 105.3539 7.1718 Q104.2914 7.1718 103.8851 7.7656 Q103.4789 8.3593 103.4789 9.4843 L103.4789 12.8281 L102.4164 12.8281 L102.4164 6.3906 L103.2757 6.3906 L103.432 7.2656 L103.4945 7.2656 Q103.807 6.7656 104.3539 6.5312 Q104.9007 6.2812 105.5101 6.2812 ZM111.9887 12.0781 Q112.223 12.0781 112.473 12.0468 Q112.723 12 112.8793 11.9531 L112.8793 12.75 Q112.723 12.8437 112.4105 12.8906 Q112.098 12.9531 111.8012 12.9531 Q111.3012 12.9531 110.8637 12.7812 Q110.4418 12.5937 110.1762 12.1718 Q109.9262 11.7343 109.9262 10.9531 L109.9262 7.2187 L109.0043 7.2187 L109.0043 6.7031 L109.9262 6.2812 L110.348 4.9218 L110.973 4.9218 L110.973 6.3906 L112.8324 6.3906 L112.8324 7.2187 L110.973 7.2187 L110.973 10.9375 Q110.973 11.5156 111.2543 11.7968 Q111.5355 12.0781 111.9887 12.0781 Z" style="stroke:none; clip-path:url(#clipPath25);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="263.1067" y="65.032" width="163.2778" style="clip-path:url(#clipPath2); stroke:none;" height="300.9182"
+      /><rect x="263.1067" y="65.032" width="163.2778" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="300.9182"
+      /><rect x="408.3845" y="71.032" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="408.3845" y="71.032" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="406.3845" y="79.032" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="406.3845" y="79.032" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="406.3845" y="74.032" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="406.3845" y="74.032" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(303.9474,83.032)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM21.8062 -6.5469 Q22.9 -6.5469 23.4312 -5.9844 Q23.9781 -5.4375 23.9781 -4.1875 L23.9781 0 L22.9312 0 L22.9312 -4.1406 Q22.9312 -5.6562 21.6187 -5.6562 Q20.6812 -5.6562 20.275 -5.1094 Q19.8843 -4.5781 19.8843 -3.5469 L19.8843 0 L18.8375 0 L18.8375 -4.1406 Q18.8375 -5.6562 17.525 -5.6562 Q16.5406 -5.6562 16.1656 -5.0625 Q15.8062 -4.4688 15.8062 -3.3438 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.6031 -6.4375 L15.7593 -5.5625 L15.8218 -5.5625 Q16.1187 -6.0625 16.6187 -6.2969 Q17.1343 -6.5469 17.7125 -6.5469 Q19.2281 -6.5469 19.6812 -5.4688 L19.7437 -5.4688 Q20.0718 -6.0312 20.6187 -6.2812 Q21.1812 -6.5469 21.8062 -6.5469 ZM31.5575 -3.2344 Q31.5575 -1.625 30.745 -0.75 Q29.9325 0.125 28.5575 0.125 Q27.7138 0.125 27.0419 -0.2656 Q26.37 -0.6562 25.9794 -1.4062 Q25.6044 -2.1562 25.6044 -3.2344 Q25.6044 -4.8281 26.4013 -5.6875 Q27.2138 -6.5469 28.5888 -6.5469 Q29.4794 -6.5469 30.1357 -6.1562 Q30.8075 -5.7656 31.1825 -5.0312 Q31.5575 -4.2969 31.5575 -3.2344 ZM26.6982 -3.2344 Q26.6982 -2.0938 27.1513 -1.4219 Q27.6044 -0.75 28.5888 -0.75 Q29.5575 -0.75 30.0107 -1.4219 Q30.4638 -2.0938 30.4638 -3.2344 Q30.4638 -4.375 30.0107 -5.0156 Q29.5575 -5.6562 28.5732 -5.6562 Q27.5888 -5.6562 27.1357 -5.0156 Q26.6982 -4.375 26.6982 -3.2344 ZM35.5051 0.125 Q34.302 0.125 33.5832 -0.7031 Q32.8645 -1.5469 32.8645 -3.2031 Q32.8645 -4.8594 33.5832 -5.7031 Q34.3176 -6.5469 35.5207 -6.5469 Q36.2707 -6.5469 36.7395 -6.2656 Q37.2082 -6 37.5051 -5.6094 L37.5832 -5.6094 Q37.5676 -5.7656 37.5363 -6.0625 Q37.5051 -6.375 37.5051 -6.5469 L37.5051 -9.125 L38.5676 -9.125 L38.5676 0 L37.7238 0 L37.5676 -0.8594 L37.5051 -0.8594 Q37.2238 -0.4531 36.7395 -0.1562 Q36.2707 0.125 35.5051 0.125 ZM35.677 -0.75 Q36.6926 -0.75 37.0988 -1.3125 Q37.5207 -1.875 37.5207 -3 L37.5207 -3.1875 Q37.5207 -4.3906 37.1301 -5.0312 Q36.7395 -5.6719 35.6613 -5.6719 Q34.8176 -5.6719 34.3801 -4.9844 Q33.9582 -4.3125 33.9582 -3.1875 Q33.9582 -2.0312 34.3801 -1.3906 Q34.8176 -0.75 35.677 -0.75 ZM45.9789 -6.4375 L45.9789 0 L45.1195 0 L44.9633 -0.8594 L44.9164 -0.8594 Q44.6039 -0.3438 44.0414 -0.1094 Q43.4945 0.125 42.8695 0.125 Q41.7133 0.125 41.1195 -0.4375 Q40.5414 -1 40.5414 -2.2188 L40.5414 -6.4375 L41.6039 -6.4375 L41.6039 -2.2969 Q41.6039 -0.75 43.0258 -0.75 Q44.1039 -0.75 44.5101 -1.3438 Q44.932 -1.9531 44.932 -3.0781 L44.932 -6.4375 L45.9789 -6.4375 ZM49.0824 0 L48.0199 0 L48.0199 -9.125 L49.0824 -9.125 L49.0824 0 ZM53.6003 -6.5469 Q54.4285 -6.5469 55.0222 -6.1875 Q55.616 -5.8281 55.9285 -5.1719 Q56.2566 -4.5312 56.2566 -3.6406 L56.2566 -3.0156 L51.8503 -3.0156 Q51.8816 -1.9219 52.4128 -1.3438 Q52.9441 -0.7812 53.8972 -0.7812 Q54.5222 -0.7812 54.991 -0.8906 Q55.4597 -1.0156 55.9753 -1.2188 L55.9753 -0.2969 Q55.4753 -0.0781 54.991 0.0156 Q54.5222 0.125 53.8503 0.125 Q52.9441 0.125 52.241 -0.25 Q51.5378 -0.625 51.1472 -1.3594 Q50.7566 -2.0938 50.7566 -3.1719 Q50.7566 -4.2188 51.116 -4.9688 Q51.4753 -5.7344 52.116 -6.1406 Q52.7566 -6.5469 53.6003 -6.5469 ZM53.5847 -5.6875 Q52.8347 -5.6875 52.3972 -5.2031 Q51.9597 -4.7188 51.8816 -3.8594 L55.1472 -3.8594 Q55.1472 -4.6719 54.7722 -5.1719 Q54.3972 -5.6875 53.5847 -5.6875 ZM57.4621 -2.3281 L61.9934 -4.2188 L57.4621 -6.3594 L57.4621 -7.2969 L63.1184 -4.4688 L63.1184 -3.875 L57.4621 -1.3906 L57.4621 -2.3281 ZM64.3262 -2.3281 L68.8574 -4.2188 L64.3262 -6.3594 L64.3262 -7.2969 L69.9824 -4.4688 L69.9824 -3.875 L64.3262 -1.3906 L64.3262 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath26);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(313.0614,85.3761)"
+    ><path d="M3.6094 4.2656 Q5.2188 4.2656 6.0312 4.7343 Q6.8594 5.2031 6.8594 6.3906 Q6.8594 7.1406 6.4375 7.6406 Q6.0312 8.1406 5.2344 8.2812 L5.2344 8.3437 Q5.7656 8.4218 6.2031 8.6562 Q6.6406 8.875 6.8906 9.2968 Q7.1562 9.7187 7.1562 10.3906 Q7.1562 11.5625 6.3594 12.2031 Q5.5625 12.8281 4.1719 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.6094 4.2656 ZM3.8281 7.9062 Q4.9375 7.9062 5.3438 7.5625 Q5.75 7.2031 5.75 6.5 Q5.75 5.7968 5.25 5.5 Q4.75 5.1875 3.6562 5.1875 L2.25 5.1875 L2.25 7.9062 L3.8281 7.9062 ZM2.25 8.8125 L2.25 11.9218 L3.9688 11.9218 Q5.1094 11.9218 5.5469 11.4843 Q6 11.0312 6 10.3125 Q6 9.6406 5.5312 9.2343 Q5.0781 8.8125 3.8906 8.8125 L2.25 8.8125 ZM14.4094 9.5937 Q14.4094 11.2031 13.5969 12.0781 Q12.7844 12.9531 11.4094 12.9531 Q10.5657 12.9531 9.8938 12.5625 Q9.2219 12.1718 8.8313 11.4218 Q8.4563 10.6718 8.4563 9.5937 Q8.4563 8 9.2532 7.1406 Q10.0657 6.2812 11.4407 6.2812 Q12.3313 6.2812 12.9875 6.6718 Q13.6594 7.0625 14.0344 7.7968 Q14.4094 8.5312 14.4094 9.5937 ZM9.55 9.5937 Q9.55 10.7343 10.0032 11.4062 Q10.4563 12.0781 11.4407 12.0781 Q12.4094 12.0781 12.8625 11.4062 Q13.3157 10.7343 13.3157 9.5937 Q13.3157 8.4531 12.8625 7.8125 Q12.4094 7.1718 11.425 7.1718 Q10.4407 7.1718 9.9875 7.8125 Q9.55 8.4531 9.55 9.5937 ZM21.6695 9.5937 Q21.6695 11.2031 20.857 12.0781 Q20.0445 12.9531 18.6695 12.9531 Q17.8257 12.9531 17.1539 12.5625 Q16.482 12.1718 16.0914 11.4218 Q15.7164 10.6718 15.7164 9.5937 Q15.7164 8 16.5132 7.1406 Q17.3257 6.2812 18.7007 6.2812 Q19.5914 6.2812 20.2476 6.6718 Q20.9195 7.0625 21.2945 7.7968 Q21.6695 8.5312 21.6695 9.5937 ZM16.8101 9.5937 Q16.8101 10.7343 17.2632 11.4062 Q17.7164 12.0781 18.7007 12.0781 Q19.6695 12.0781 20.1226 11.4062 Q20.5757 10.7343 20.5757 9.5937 Q20.5757 8.4531 20.1226 7.8125 Q19.6695 7.1718 18.6851 7.1718 Q17.7007 7.1718 17.2476 7.8125 Q16.8101 8.4531 16.8101 9.5937 ZM24.3827 8.4687 Q24.3827 8.6718 24.367 8.9843 Q24.3514 9.2812 24.3358 9.5156 L24.3827 9.5156 Q24.4608 9.4218 24.6014 9.25 Q24.742 9.0625 24.8827 8.875 Q25.0389 8.6875 25.1483 8.5625 L27.2108 6.3906 L28.4452 6.3906 L25.8358 9.1406 L28.617 12.8281 L27.3514 12.8281 L25.117 9.8281 L24.3827 10.4687 L24.3827 12.8281 L23.3358 12.8281 L23.3358 3.7031 L24.3827 3.7031 L24.3827 8.4687 ZM30.2907 3.9843 Q30.5251 3.9843 30.7126 4.1562 Q30.9001 4.3125 30.9001 4.6562 Q30.9001 4.9843 30.7126 5.1562 Q30.5251 5.3281 30.2907 5.3281 Q30.0251 5.3281 29.8376 5.1562 Q29.6657 4.9843 29.6657 4.6562 Q29.6657 4.3125 29.8376 4.1562 Q30.0251 3.9843 30.2907 3.9843 ZM30.8063 6.3906 L30.8063 12.8281 L29.7438 12.8281 L29.7438 6.3906 L30.8063 6.3906 ZM35.9336 6.2812 Q37.0899 6.2812 37.668 6.8437 Q38.2617 7.3906 38.2617 8.6406 L38.2617 12.8281 L37.2305 12.8281 L37.2305 8.7187 Q37.2305 7.1718 35.7774 7.1718 Q34.7149 7.1718 34.3086 7.7656 Q33.9024 8.3593 33.9024 9.4843 L33.9024 12.8281 L32.8399 12.8281 L32.8399 6.3906 L33.6992 6.3906 L33.8555 7.2656 L33.918 7.2656 Q34.2305 6.7656 34.7774 6.5312 Q35.3242 6.2812 35.9336 6.2812 ZM42.5372 6.2812 Q43.1778 6.2812 43.6778 6.5156 Q44.1934 6.75 44.5528 7.25 L44.6153 7.25 L44.7559 6.3906 L45.5997 6.3906 L45.5997 12.9375 Q45.5997 14.3125 44.8965 15 Q44.1934 15.7031 42.7247 15.7031 Q41.3028 15.7031 40.3965 15.2968 L40.3965 14.3281 Q41.3497 14.8281 42.7872 14.8281 Q43.6153 14.8281 44.084 14.3437 Q44.5528 13.8593 44.5528 13.0156 L44.5528 12.7656 Q44.5528 12.625 44.5684 12.3593 Q44.584 12.0781 44.5997 11.9687 L44.5372 11.9687 Q43.8965 12.9531 42.5528 12.9531 Q41.3028 12.9531 40.5997 12.0781 Q39.8965 11.2031 39.8965 9.625 Q39.8965 8.0937 40.5997 7.1875 Q41.3028 6.2812 42.5372 6.2812 ZM42.6778 7.1718 Q41.8809 7.1718 41.4278 7.8125 Q40.9903 8.4531 40.9903 9.6406 Q40.9903 10.8281 41.4278 11.4531 Q41.8653 12.0781 42.709 12.0781 Q43.6778 12.0781 44.1153 11.5625 Q44.5684 11.0468 44.5684 9.875 L44.5684 9.625 Q44.5684 8.2968 44.1153 7.7343 Q43.6622 7.1718 42.6778 7.1718 ZM51.8235 11.0468 Q51.8235 11.9843 51.1203 12.4687 Q50.4328 12.9531 49.261 12.9531 Q48.5891 12.9531 48.1047 12.8437 Q47.6203 12.7343 47.2453 12.5468 L47.2453 11.5781 Q47.636 11.7656 48.1672 11.9375 Q48.7141 12.0937 49.2766 12.0937 Q50.0891 12.0937 50.4485 11.8437 Q50.8078 11.5781 50.8078 11.1406 Q50.8078 10.9062 50.6672 10.7187 Q50.5422 10.5312 50.1985 10.3437 Q49.8547 10.1406 49.2297 9.9062 Q48.6047 9.6562 48.1516 9.4218 Q47.7141 9.1875 47.4641 8.8593 Q47.2297 8.5156 47.2297 7.9843 Q47.2297 7.1718 47.886 6.7343 Q48.5578 6.2812 49.6516 6.2812 Q50.2297 6.2812 50.7297 6.3906 Q51.2453 6.5 51.6985 6.7031 L51.3391 7.5468 Q50.9328 7.375 50.4797 7.2656 Q50.0422 7.1406 49.5735 7.1406 Q48.9172 7.1406 48.5735 7.3593 Q48.2453 7.5625 48.2453 7.9218 Q48.2453 8.1875 48.4016 8.375 Q48.5578 8.5625 48.9172 8.7343 Q49.2766 8.9062 49.9016 9.1406 Q50.511 9.375 50.9328 9.625 Q51.3703 9.8593 51.5891 10.2031 Q51.8235 10.5312 51.8235 11.0468 Z" style="stroke:none; clip-path:url(#clipPath27);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="256.1067" y="187.4622" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="256.1067" y="187.4622" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><rect x="283.2502" y="111.3283" width="123.2686" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="283.2502" y="111.3283" width="123.2686" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="388.5188" y="117.3283" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="388.5188" y="117.3283" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="386.5188" y="125.3283" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="386.5188" y="125.3283" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="386.5188" y="120.3283" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="386.5188" y="120.3283" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(293.2502,129.3283)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath28);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(316.2843,131.6724)"
+    ><path d="M2.0781 5.9218 Q2.0781 6.3437 2.0625 6.7031 Q2.0469 7.0468 2.0156 7.25 L2.0781 7.25 Q2.3594 6.8437 2.8281 6.5625 Q3.3125 6.2812 4.0625 6.2812 Q5.2656 6.2812 5.9844 7.125 Q6.7188 7.9531 6.7188 9.6093 Q6.7188 11.2656 5.9844 12.1093 Q5.25 12.9531 4.0625 12.9531 Q3.3125 12.9531 2.8281 12.6718 Q2.3594 12.3906 2.0781 12.0156 L1.9844 12.0156 L1.7812 12.8281 L1.0156 12.8281 L1.0156 3.7031 L2.0781 3.7031 L2.0781 5.9218 ZM3.8906 7.1718 Q2.875 7.1718 2.4688 7.7656 Q2.0781 8.3437 2.0781 9.5781 L2.0781 9.625 Q2.0781 10.8125 2.4688 11.4531 Q2.8594 12.0781 3.9062 12.0781 Q4.7812 12.0781 5.2031 11.4375 Q5.625 10.7968 5.625 9.5937 Q5.625 7.1718 3.8906 7.1718 ZM13.9894 9.5937 Q13.9894 11.2031 13.1769 12.0781 Q12.3644 12.9531 10.9894 12.9531 Q10.1457 12.9531 9.4738 12.5625 Q8.8019 12.1718 8.4113 11.4218 Q8.0363 10.6718 8.0363 9.5937 Q8.0363 8 8.8332 7.1406 Q9.6457 6.2812 11.0207 6.2812 Q11.9113 6.2812 12.5676 6.6718 Q13.2394 7.0625 13.6144 7.7968 Q13.9894 8.5312 13.9894 9.5937 ZM9.1301 9.5937 Q9.1301 10.7343 9.5832 11.4062 Q10.0363 12.0781 11.0207 12.0781 Q11.9894 12.0781 12.4426 11.4062 Q12.8957 10.7343 12.8957 9.5937 Q12.8957 8.4531 12.4426 7.8125 Q11.9894 7.1718 11.0051 7.1718 Q10.0207 7.1718 9.5676 7.8125 Q9.1301 8.4531 9.1301 9.5937 ZM21.2495 9.5937 Q21.2495 11.2031 20.437 12.0781 Q19.6245 12.9531 18.2495 12.9531 Q17.4057 12.9531 16.7339 12.5625 Q16.062 12.1718 15.6714 11.4218 Q15.2964 10.6718 15.2964 9.5937 Q15.2964 8 16.0932 7.1406 Q16.9057 6.2812 18.2807 6.2812 Q19.1714 6.2812 19.8276 6.6718 Q20.4995 7.0625 20.8745 7.7968 Q21.2495 8.5312 21.2495 9.5937 ZM16.3901 9.5937 Q16.3901 10.7343 16.8432 11.4062 Q17.2964 12.0781 18.2807 12.0781 Q19.2495 12.0781 19.7026 11.4062 Q20.1557 10.7343 20.1557 9.5937 Q20.1557 8.4531 19.7026 7.8125 Q19.2495 7.1718 18.2651 7.1718 Q17.2807 7.1718 16.8276 7.8125 Q16.3901 8.4531 16.3901 9.5937 ZM23.9627 8.4687 Q23.9627 8.6718 23.947 8.9843 Q23.9314 9.2812 23.9158 9.5156 L23.9627 9.5156 Q24.0408 9.4218 24.1814 9.25 Q24.322 9.0625 24.4627 8.875 Q24.6189 8.6875 24.7283 8.5625 L26.7908 6.3906 L28.0252 6.3906 L25.4158 9.1406 L28.197 12.8281 L26.9314 12.8281 L24.697 9.8281 L23.9627 10.4687 L23.9627 12.8281 L22.9158 12.8281 L22.9158 3.7031 L23.9627 3.7031 L23.9627 8.4687 ZM29.8707 3.9843 Q30.1051 3.9843 30.2926 4.1562 Q30.4801 4.3125 30.4801 4.6562 Q30.4801 4.9843 30.2926 5.1562 Q30.1051 5.3281 29.8707 5.3281 Q29.6051 5.3281 29.4176 5.1562 Q29.2457 4.9843 29.2457 4.6562 Q29.2457 4.3125 29.4176 4.1562 Q29.6051 3.9843 29.8707 3.9843 ZM30.3863 6.3906 L30.3863 12.8281 L29.3238 12.8281 L29.3238 6.3906 L30.3863 6.3906 ZM35.5136 6.2812 Q36.6699 6.2812 37.248 6.8437 Q37.8417 7.3906 37.8417 8.6406 L37.8417 12.8281 L36.8105 12.8281 L36.8105 8.7187 Q36.8105 7.1718 35.3574 7.1718 Q34.2949 7.1718 33.8886 7.7656 Q33.4824 8.3593 33.4824 9.4843 L33.4824 12.8281 L32.4199 12.8281 L32.4199 6.3906 L33.2792 6.3906 L33.4355 7.2656 L33.498 7.2656 Q33.8105 6.7656 34.3574 6.5312 Q34.9042 6.2812 35.5136 6.2812 ZM42.1172 6.2812 Q42.7578 6.2812 43.2578 6.5156 Q43.7734 6.75 44.1328 7.25 L44.1953 7.25 L44.3359 6.3906 L45.1797 6.3906 L45.1797 12.9375 Q45.1797 14.3125 44.4765 15 Q43.7734 15.7031 42.3047 15.7031 Q40.8828 15.7031 39.9765 15.2968 L39.9765 14.3281 Q40.9297 14.8281 42.3672 14.8281 Q43.1953 14.8281 43.664 14.3437 Q44.1328 13.8593 44.1328 13.0156 L44.1328 12.7656 Q44.1328 12.625 44.1484 12.3593 Q44.164 12.0781 44.1797 11.9687 L44.1172 11.9687 Q43.4765 12.9531 42.1328 12.9531 Q40.8828 12.9531 40.1797 12.0781 Q39.4765 11.2031 39.4765 9.625 Q39.4765 8.0937 40.1797 7.1875 Q40.8828 6.2812 42.1172 6.2812 ZM42.2578 7.1718 Q41.4609 7.1718 41.0078 7.8125 Q40.5703 8.4531 40.5703 9.6406 Q40.5703 10.8281 41.0078 11.4531 Q41.4453 12.0781 42.289 12.0781 Q43.2578 12.0781 43.6953 11.5625 Q44.1484 11.0468 44.1484 9.875 L44.1484 9.625 Q44.1484 8.2968 43.6953 7.7343 Q43.2422 7.1718 42.2578 7.1718 Z" style="stroke:none; clip-path:url(#clipPath29);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="670.059" x2="406.5188" y1="13.2315" style="fill:none; clip-path:url(#clipPath2);" y2="112.4647"
+      /><line x1="670.059" x2="662.4476" y1="13.2315" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="22.5087"
+      /><line x1="670.059" x2="658.219" y1="13.2315" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="11.2784"
+      /><line x1="1284.3394" x2="395.8564" y1="584.3548" style="fill:none; clip-path:url(#clipPath2);" y2="160.0165"
+      /><line x1="1284.3394" x2="1272.3759" y1="584.3548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="585.2903"
+      /><line x1="1284.3394" x2="1277.5476" y1="584.3548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="574.4619"
+      /><line x1="1013.5096" x2="406.5188" y1="57.6767" style="fill:none; clip-path:url(#clipPath2);" y2="128.4827"
+      /><line x1="1013.5096" x2="1003.8824" y1="57.6767" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="64.8404"
+      /><line x1="1013.5096" x2="1002.4921" y1="57.6767" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="52.9212"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="283.2502" y="206.6987" width="123.2686" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="283.2502" y="206.6987" width="123.2686" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="388.5188" y="212.6987" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="388.5188" y="212.6987" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="386.5188" y="220.6987" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="386.5188" y="220.6987" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="386.5188" y="215.6987" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="386.5188" y="215.6987" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(293.2502,224.6987)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath30);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(306.2162,227.0428)"
+    ><path d="M2.0781 5.9218 Q2.0781 6.3437 2.0625 6.7031 Q2.0469 7.0468 2.0156 7.25 L2.0781 7.25 Q2.3594 6.8437 2.8281 6.5625 Q3.3125 6.2812 4.0625 6.2812 Q5.2656 6.2812 5.9844 7.125 Q6.7188 7.9531 6.7188 9.6093 Q6.7188 11.2656 5.9844 12.1093 Q5.25 12.9531 4.0625 12.9531 Q3.3125 12.9531 2.8281 12.6718 Q2.3594 12.3906 2.0781 12.0156 L1.9844 12.0156 L1.7812 12.8281 L1.0156 12.8281 L1.0156 3.7031 L2.0781 3.7031 L2.0781 5.9218 ZM3.8906 7.1718 Q2.875 7.1718 2.4688 7.7656 Q2.0781 8.3437 2.0781 9.5781 L2.0781 9.625 Q2.0781 10.8125 2.4688 11.4531 Q2.8594 12.0781 3.9062 12.0781 Q4.7812 12.0781 5.2031 11.4375 Q5.625 10.7968 5.625 9.5937 Q5.625 7.1718 3.8906 7.1718 ZM13.9894 9.5937 Q13.9894 11.2031 13.1769 12.0781 Q12.3644 12.9531 10.9894 12.9531 Q10.1457 12.9531 9.4738 12.5625 Q8.8019 12.1718 8.4113 11.4218 Q8.0363 10.6718 8.0363 9.5937 Q8.0363 8 8.8332 7.1406 Q9.6457 6.2812 11.0207 6.2812 Q11.9113 6.2812 12.5676 6.6718 Q13.2394 7.0625 13.6144 7.7968 Q13.9894 8.5312 13.9894 9.5937 ZM9.1301 9.5937 Q9.1301 10.7343 9.5832 11.4062 Q10.0363 12.0781 11.0207 12.0781 Q11.9894 12.0781 12.4426 11.4062 Q12.8957 10.7343 12.8957 9.5937 Q12.8957 8.4531 12.4426 7.8125 Q11.9894 7.1718 11.0051 7.1718 Q10.0207 7.1718 9.5676 7.8125 Q9.1301 8.4531 9.1301 9.5937 ZM21.2495 9.5937 Q21.2495 11.2031 20.437 12.0781 Q19.6245 12.9531 18.2495 12.9531 Q17.4057 12.9531 16.7339 12.5625 Q16.062 12.1718 15.6714 11.4218 Q15.2964 10.6718 15.2964 9.5937 Q15.2964 8 16.0932 7.1406 Q16.9057 6.2812 18.2807 6.2812 Q19.1714 6.2812 19.8276 6.6718 Q20.4995 7.0625 20.8745 7.7968 Q21.2495 8.5312 21.2495 9.5937 ZM16.3901 9.5937 Q16.3901 10.7343 16.8432 11.4062 Q17.2964 12.0781 18.2807 12.0781 Q19.2495 12.0781 19.7026 11.4062 Q20.1557 10.7343 20.1557 9.5937 Q20.1557 8.4531 19.7026 7.8125 Q19.2495 7.1718 18.2651 7.1718 Q17.2807 7.1718 16.8276 7.8125 Q16.3901 8.4531 16.3901 9.5937 ZM23.9627 8.4687 Q23.9627 8.6718 23.947 8.9843 Q23.9314 9.2812 23.9158 9.5156 L23.9627 9.5156 Q24.0408 9.4218 24.1814 9.25 Q24.322 9.0625 24.4627 8.875 Q24.6189 8.6875 24.7283 8.5625 L26.7908 6.3906 L28.0252 6.3906 L25.4158 9.1406 L28.197 12.8281 L26.9314 12.8281 L24.697 9.8281 L23.9627 10.4687 L23.9627 12.8281 L22.9158 12.8281 L22.9158 3.7031 L23.9627 3.7031 L23.9627 8.4687 ZM29.8707 3.9843 Q30.1051 3.9843 30.2926 4.1562 Q30.4801 4.3125 30.4801 4.6562 Q30.4801 4.9843 30.2926 5.1562 Q30.1051 5.3281 29.8707 5.3281 Q29.6051 5.3281 29.4176 5.1562 Q29.2457 4.9843 29.2457 4.6562 Q29.2457 4.3125 29.4176 4.1562 Q29.6051 3.9843 29.8707 3.9843 ZM30.3863 6.3906 L30.3863 12.8281 L29.3238 12.8281 L29.3238 6.3906 L30.3863 6.3906 ZM35.5136 6.2812 Q36.6699 6.2812 37.248 6.8437 Q37.8417 7.3906 37.8417 8.6406 L37.8417 12.8281 L36.8105 12.8281 L36.8105 8.7187 Q36.8105 7.1718 35.3574 7.1718 Q34.2949 7.1718 33.8886 7.7656 Q33.4824 8.3593 33.4824 9.4843 L33.4824 12.8281 L32.4199 12.8281 L32.4199 6.3906 L33.2792 6.3906 L33.4355 7.2656 L33.498 7.2656 Q33.8105 6.7656 34.3574 6.5312 Q34.9042 6.2812 35.5136 6.2812 ZM42.1172 6.2812 Q42.7578 6.2812 43.2578 6.5156 Q43.7734 6.75 44.1328 7.25 L44.1953 7.25 L44.3359 6.3906 L45.1797 6.3906 L45.1797 12.9375 Q45.1797 14.3125 44.4765 15 Q43.7734 15.7031 42.3047 15.7031 Q40.8828 15.7031 39.9765 15.2968 L39.9765 14.3281 Q40.9297 14.8281 42.3672 14.8281 Q43.1953 14.8281 43.664 14.3437 Q44.1328 13.8593 44.1328 13.0156 L44.1328 12.7656 Q44.1328 12.625 44.1484 12.3593 Q44.164 12.0781 44.1797 11.9687 L44.1172 11.9687 Q43.4765 12.9531 42.1328 12.9531 Q40.8828 12.9531 40.1797 12.0781 Q39.4765 11.2031 39.4765 9.625 Q39.4765 8.0937 40.1797 7.1875 Q40.8828 6.2812 42.1172 6.2812 ZM42.2578 7.1718 Q41.4609 7.1718 41.0078 7.8125 Q40.5703 8.4531 40.5703 9.6406 Q40.5703 10.8281 41.0078 11.4531 Q41.4453 12.0781 42.289 12.0781 Q43.2578 12.0781 43.6953 11.5625 Q44.1484 11.0468 44.1484 9.875 L44.1484 9.625 Q44.1484 8.2968 43.6953 7.7343 Q43.2422 7.1718 42.2578 7.1718 ZM46.6847 10.0781 L46.6847 9.1406 L49.591 9.1406 L49.591 10.0781 L46.6847 10.0781 ZM52.1425 12.8281 L51.08 12.8281 L51.08 3.7031 L52.1425 3.7031 L52.1425 12.8281 ZM54.7229 3.9843 Q54.9573 3.9843 55.1448 4.1562 Q55.3323 4.3125 55.3323 4.6562 Q55.3323 4.9843 55.1448 5.1562 Q54.9573 5.3281 54.7229 5.3281 Q54.4573 5.3281 54.2698 5.1562 Q54.0979 4.9843 54.0979 4.6562 Q54.0979 4.3125 54.2698 4.1562 Q54.4573 3.9843 54.7229 3.9843 ZM55.2385 6.3906 L55.2385 12.8281 L54.176 12.8281 L54.176 6.3906 L55.2385 6.3906 ZM61.4595 11.0468 Q61.4595 11.9843 60.7564 12.4687 Q60.0689 12.9531 58.897 12.9531 Q58.2252 12.9531 57.7408 12.8437 Q57.2564 12.7343 56.8814 12.5468 L56.8814 11.5781 Q57.272 11.7656 57.8033 11.9375 Q58.3502 12.0937 58.9127 12.0937 Q59.7252 12.0937 60.0845 11.8437 Q60.4439 11.5781 60.4439 11.1406 Q60.4439 10.9062 60.3033 10.7187 Q60.1783 10.5312 59.8345 10.3437 Q59.4908 10.1406 58.8658 9.9062 Q58.2408 9.6562 57.7877 9.4218 Q57.3502 9.1875 57.1002 8.8593 Q56.8658 8.5156 56.8658 7.9843 Q56.8658 7.1718 57.522 6.7343 Q58.1939 6.2812 59.2877 6.2812 Q59.8658 6.2812 60.3658 6.3906 Q60.8814 6.5 61.3345 6.7031 L60.9752 7.5468 Q60.5689 7.375 60.1158 7.2656 Q59.6783 7.1406 59.2095 7.1406 Q58.5533 7.1406 58.2095 7.3593 Q57.8814 7.5625 57.8814 7.9218 Q57.8814 8.1875 58.0377 8.375 Q58.1939 8.5625 58.5533 8.7343 Q58.9127 8.9062 59.5377 9.1406 Q60.147 9.375 60.5689 9.625 Q61.0064 9.8593 61.2252 10.2031 Q61.4595 10.5312 61.4595 11.0468 ZM65.1763 12.0781 Q65.4107 12.0781 65.6607 12.0468 Q65.9107 12 66.067 11.9531 L66.067 12.75 Q65.9107 12.8437 65.5982 12.8906 Q65.2857 12.9531 64.9888 12.9531 Q64.4888 12.9531 64.0513 12.7812 Q63.6295 12.5937 63.3638 12.1718 Q63.1138 11.7343 63.1138 10.9531 L63.1138 7.2187 L62.192 7.2187 L62.192 6.7031 L63.1138 6.2812 L63.5357 4.9218 L64.1607 4.9218 L64.1607 6.3906 L66.0201 6.3906 L66.0201 7.2187 L64.1607 7.2187 L64.1607 10.9375 Q64.1607 11.5156 64.442 11.7968 Q64.7232 12.0781 65.1763 12.0781 Z" style="stroke:none; clip-path:url(#clipPath31);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="276.399" y="727.9814" width="175.4909" style="clip-path:url(#clipPath2); stroke:none;" height="271.6357"
+      /><rect x="276.399" y="727.9814" width="175.4909" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="271.6357"
+      /><rect x="433.8899" y="733.9814" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="433.8899" y="733.9814" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="431.8899" y="741.9814" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="431.8899" y="741.9814" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="431.8899" y="736.9814" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="431.8899" y="736.9814" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(323.3462,745.9814)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM21.8062 -6.5469 Q22.9 -6.5469 23.4312 -5.9844 Q23.9781 -5.4375 23.9781 -4.1875 L23.9781 0 L22.9312 0 L22.9312 -4.1406 Q22.9312 -5.6562 21.6187 -5.6562 Q20.6812 -5.6562 20.275 -5.1094 Q19.8843 -4.5781 19.8843 -3.5469 L19.8843 0 L18.8375 0 L18.8375 -4.1406 Q18.8375 -5.6562 17.525 -5.6562 Q16.5406 -5.6562 16.1656 -5.0625 Q15.8062 -4.4688 15.8062 -3.3438 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.6031 -6.4375 L15.7593 -5.5625 L15.8218 -5.5625 Q16.1187 -6.0625 16.6187 -6.2969 Q17.1343 -6.5469 17.7125 -6.5469 Q19.2281 -6.5469 19.6812 -5.4688 L19.7437 -5.4688 Q20.0718 -6.0312 20.6187 -6.2812 Q21.1812 -6.5469 21.8062 -6.5469 ZM31.5575 -3.2344 Q31.5575 -1.625 30.745 -0.75 Q29.9325 0.125 28.5575 0.125 Q27.7138 0.125 27.0419 -0.2656 Q26.37 -0.6562 25.9794 -1.4062 Q25.6044 -2.1562 25.6044 -3.2344 Q25.6044 -4.8281 26.4013 -5.6875 Q27.2138 -6.5469 28.5888 -6.5469 Q29.4794 -6.5469 30.1357 -6.1562 Q30.8075 -5.7656 31.1825 -5.0312 Q31.5575 -4.2969 31.5575 -3.2344 ZM26.6982 -3.2344 Q26.6982 -2.0938 27.1513 -1.4219 Q27.6044 -0.75 28.5888 -0.75 Q29.5575 -0.75 30.0107 -1.4219 Q30.4638 -2.0938 30.4638 -3.2344 Q30.4638 -4.375 30.0107 -5.0156 Q29.5575 -5.6562 28.5732 -5.6562 Q27.5888 -5.6562 27.1357 -5.0156 Q26.6982 -4.375 26.6982 -3.2344 ZM35.5051 0.125 Q34.302 0.125 33.5832 -0.7031 Q32.8645 -1.5469 32.8645 -3.2031 Q32.8645 -4.8594 33.5832 -5.7031 Q34.3176 -6.5469 35.5207 -6.5469 Q36.2707 -6.5469 36.7395 -6.2656 Q37.2082 -6 37.5051 -5.6094 L37.5832 -5.6094 Q37.5676 -5.7656 37.5363 -6.0625 Q37.5051 -6.375 37.5051 -6.5469 L37.5051 -9.125 L38.5676 -9.125 L38.5676 0 L37.7238 0 L37.5676 -0.8594 L37.5051 -0.8594 Q37.2238 -0.4531 36.7395 -0.1562 Q36.2707 0.125 35.5051 0.125 ZM35.677 -0.75 Q36.6926 -0.75 37.0988 -1.3125 Q37.5207 -1.875 37.5207 -3 L37.5207 -3.1875 Q37.5207 -4.3906 37.1301 -5.0312 Q36.7395 -5.6719 35.6613 -5.6719 Q34.8176 -5.6719 34.3801 -4.9844 Q33.9582 -4.3125 33.9582 -3.1875 Q33.9582 -2.0312 34.3801 -1.3906 Q34.8176 -0.75 35.677 -0.75 ZM45.9789 -6.4375 L45.9789 0 L45.1195 0 L44.9633 -0.8594 L44.9164 -0.8594 Q44.6039 -0.3438 44.0414 -0.1094 Q43.4945 0.125 42.8695 0.125 Q41.7133 0.125 41.1195 -0.4375 Q40.5414 -1 40.5414 -2.2188 L40.5414 -6.4375 L41.6039 -6.4375 L41.6039 -2.2969 Q41.6039 -0.75 43.0258 -0.75 Q44.1039 -0.75 44.5101 -1.3438 Q44.932 -1.9531 44.932 -3.0781 L44.932 -6.4375 L45.9789 -6.4375 ZM49.0824 0 L48.0199 0 L48.0199 -9.125 L49.0824 -9.125 L49.0824 0 ZM53.6003 -6.5469 Q54.4285 -6.5469 55.0222 -6.1875 Q55.616 -5.8281 55.9285 -5.1719 Q56.2566 -4.5312 56.2566 -3.6406 L56.2566 -3.0156 L51.8503 -3.0156 Q51.8816 -1.9219 52.4128 -1.3438 Q52.9441 -0.7812 53.8972 -0.7812 Q54.5222 -0.7812 54.991 -0.8906 Q55.4597 -1.0156 55.9753 -1.2188 L55.9753 -0.2969 Q55.4753 -0.0781 54.991 0.0156 Q54.5222 0.125 53.8503 0.125 Q52.9441 0.125 52.241 -0.25 Q51.5378 -0.625 51.1472 -1.3594 Q50.7566 -2.0938 50.7566 -3.1719 Q50.7566 -4.2188 51.116 -4.9688 Q51.4753 -5.7344 52.116 -6.1406 Q52.7566 -6.5469 53.6003 -6.5469 ZM53.5847 -5.6875 Q52.8347 -5.6875 52.3972 -5.2031 Q51.9597 -4.7188 51.8816 -3.8594 L55.1472 -3.8594 Q55.1472 -4.6719 54.7722 -5.1719 Q54.3972 -5.6875 53.5847 -5.6875 ZM57.4621 -2.3281 L61.9934 -4.2188 L57.4621 -6.3594 L57.4621 -7.2969 L63.1184 -4.4688 L63.1184 -3.875 L57.4621 -1.3906 L57.4621 -2.3281 ZM64.3262 -2.3281 L68.8574 -4.2188 L64.3262 -6.3594 L64.3262 -7.2969 L69.9824 -4.4688 L69.9824 -3.875 L64.3262 -1.3906 L64.3262 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath32);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(343.4704,748.3255)"
+    ><path d="M7.7188 12.8281 L6.6406 12.8281 L6.6406 8.8281 L2.25 8.8281 L2.25 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.25 4.2656 L2.25 7.8906 L6.6406 7.8906 L6.6406 4.2656 L7.7188 4.2656 L7.7188 12.8281 ZM15.5014 9.5937 Q15.5014 11.2031 14.6889 12.0781 Q13.8764 12.9531 12.5014 12.9531 Q11.6577 12.9531 10.9858 12.5625 Q10.3139 12.1718 9.9233 11.4218 Q9.5483 10.6718 9.5483 9.5937 Q9.5483 8 10.3452 7.1406 Q11.1577 6.2812 12.5327 6.2812 Q13.4233 6.2812 14.0796 6.6718 Q14.7514 7.0625 15.1264 7.7968 Q15.5014 8.5312 15.5014 9.5937 ZM10.6421 9.5937 Q10.6421 10.7343 11.0952 11.4062 Q11.5483 12.0781 12.5327 12.0781 Q13.5014 12.0781 13.9546 11.4062 Q14.4077 10.7343 14.4077 9.5937 Q14.4077 8.4531 13.9546 7.8125 Q13.5014 7.1718 12.5171 7.1718 Q11.5327 7.1718 11.0796 7.8125 Q10.6421 8.4531 10.6421 9.5937 ZM19.324 12.0781 Q19.5584 12.0781 19.8084 12.0468 Q20.0584 12 20.2146 11.9531 L20.2146 12.75 Q20.0584 12.8437 19.7459 12.8906 Q19.4334 12.9531 19.1365 12.9531 Q18.6365 12.9531 18.199 12.7812 Q17.7771 12.5937 17.5115 12.1718 Q17.2615 11.7343 17.2615 10.9531 L17.2615 7.2187 L16.3396 7.2187 L16.3396 6.7031 L17.2615 6.2812 L17.6834 4.9218 L18.3084 4.9218 L18.3084 6.3906 L20.1677 6.3906 L20.1677 7.2187 L18.3084 7.2187 L18.3084 10.9375 Q18.3084 11.5156 18.5896 11.7968 Q18.8709 12.0781 19.324 12.0781 ZM23.9841 6.2812 Q24.8123 6.2812 25.406 6.6406 Q25.9998 7 26.3123 7.6562 Q26.6404 8.2968 26.6404 9.1875 L26.6404 9.8125 L22.2341 9.8125 Q22.2654 10.9062 22.7966 11.4843 Q23.3279 12.0468 24.281 12.0468 Q24.906 12.0468 25.3748 11.9375 Q25.8435 11.8125 26.3591 11.6093 L26.3591 12.5312 Q25.8591 12.75 25.3748 12.8437 Q24.906 12.9531 24.2341 12.9531 Q23.3279 12.9531 22.6248 12.5781 Q21.9216 12.2031 21.531 11.4687 Q21.1404 10.7343 21.1404 9.6562 Q21.1404 8.6093 21.4998 7.8593 Q21.8591 7.0937 22.4998 6.6875 Q23.1404 6.2812 23.9841 6.2812 ZM23.9685 7.1406 Q23.2185 7.1406 22.781 7.625 Q22.3435 8.1093 22.2654 8.9687 L25.531 8.9687 Q25.531 8.1562 25.156 7.6562 Q24.781 7.1406 23.9685 7.1406 ZM29.3303 12.8281 L28.2678 12.8281 L28.2678 3.7031 L29.3303 3.7031 L29.3303 12.8281 Z" style="stroke:none; clip-path:url(#clipPath33);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><path d="M436.2236 173.6781 A6 6 0 0 0 426.0616 180.0603" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M536.458 110.7268 A6 6 0 0 0 526.2959 117.109" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="691.6952" x2="536.458" y1="13.2315" style="fill:none; clip-path:url(#clipPath2);" y2="110.7268"
+      /><line x1="526.2959" x2="436.2236" y1="117.109" style="fill:none; clip-path:url(#clipPath2);" y2="173.6781"
+      /><line x1="426.0616" x2="383.6465" y1="180.0603" style="fill:none; clip-path:url(#clipPath2);" y2="206.6987"
+      /><line x1="691.6952" x2="686.0857" y1="13.2315" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="23.8396"
+      /><line x1="691.6952" x2="679.7035" y1="13.2315" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="13.6776"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="269.399" y="819.1894" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="269.399" y="819.1894" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><rect x="278.3845" y="299.2913" width="133" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="278.3845" y="299.2913" width="133" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="393.3845" y="305.2913" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="393.3845" y="305.2913" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="391.3845" y="313.2913" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="391.3845" y="313.2913" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="391.3845" y="308.2913" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="391.3845" y="308.2913" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(293.2502,317.2913)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath34);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(291.8401,319.6354)"
+    ><path d="M6.3906 6.3906 L6.3906 12.8281 L5.5312 12.8281 L5.375 11.9687 L5.3281 11.9687 Q5.0156 12.4843 4.4531 12.7187 Q3.9062 12.9531 3.2812 12.9531 Q2.125 12.9531 1.5312 12.3906 Q0.9531 11.8281 0.9531 10.6093 L0.9531 6.3906 L2.0156 6.3906 L2.0156 10.5312 Q2.0156 12.0781 3.4375 12.0781 Q4.5156 12.0781 4.9219 11.4843 Q5.3438 10.875 5.3438 9.75 L5.3438 6.3906 L6.3906 6.3906 ZM12.6192 11.0468 Q12.6192 11.9843 11.916 12.4687 Q11.2285 12.9531 10.0567 12.9531 Q9.3848 12.9531 8.9004 12.8437 Q8.416 12.7343 8.041 12.5468 L8.041 11.5781 Q8.4317 11.7656 8.9629 11.9375 Q9.5098 12.0937 10.0723 12.0937 Q10.8848 12.0937 11.2442 11.8437 Q11.6035 11.5781 11.6035 11.1406 Q11.6035 10.9062 11.4629 10.7187 Q11.3379 10.5312 10.9942 10.3437 Q10.6504 10.1406 10.0254 9.9062 Q9.4004 9.6562 8.9473 9.4218 Q8.5098 9.1875 8.2598 8.8593 Q8.0254 8.5156 8.0254 7.9843 Q8.0254 7.1718 8.6817 6.7343 Q9.3535 6.2812 10.4473 6.2812 Q11.0254 6.2812 11.5254 6.3906 Q12.041 6.5 12.4942 6.7031 L12.1348 7.5468 Q11.7285 7.375 11.2754 7.2656 Q10.8379 7.1406 10.3692 7.1406 Q9.7129 7.1406 9.3692 7.3593 Q9.041 7.5625 9.041 7.9218 Q9.041 8.1875 9.1973 8.375 Q9.3535 8.5625 9.7129 8.7343 Q10.0723 8.9062 10.6973 9.1406 Q11.3067 9.375 11.7285 9.625 Q12.166 9.8593 12.3848 10.2031 Q12.6192 10.5312 12.6192 11.0468 ZM16.6641 6.2812 Q17.4922 6.2812 18.086 6.6406 Q18.6797 7 18.9922 7.6562 Q19.3203 8.2968 19.3203 9.1875 L19.3203 9.8125 L14.9141 9.8125 Q14.9453 10.9062 15.4766 11.4843 Q16.0078 12.0468 16.961 12.0468 Q17.586 12.0468 18.0547 11.9375 Q18.5235 11.8125 19.0391 11.6093 L19.0391 12.5312 Q18.5391 12.75 18.0547 12.8437 Q17.586 12.9531 16.9141 12.9531 Q16.0078 12.9531 15.3047 12.5781 Q14.6016 12.2031 14.211 11.4687 Q13.8203 10.7343 13.8203 9.6562 Q13.8203 8.6093 14.1797 7.8593 Q14.5391 7.0937 15.1797 6.6875 Q15.8203 6.2812 16.6641 6.2812 ZM16.6485 7.1406 Q15.8985 7.1406 15.461 7.625 Q15.0235 8.1093 14.9453 8.9687 L18.211 8.9687 Q18.211 8.1562 17.836 7.6562 Q17.461 7.1406 16.6485 7.1406 ZM23.9478 6.2812 Q24.1353 6.2812 24.3384 6.2968 Q24.5571 6.3125 24.7134 6.3437 L24.5728 7.3125 Q24.4165 7.2812 24.229 7.2656 Q24.0415 7.2343 23.8853 7.2343 Q23.3853 7.2343 22.9478 7.5156 Q22.5259 7.7812 22.2603 8.2656 Q22.0103 8.75 22.0103 9.3906 L22.0103 12.8281 L20.9478 12.8281 L20.9478 6.3906 L21.8228 6.3906 L21.9321 7.5781 L21.979 7.5781 Q22.2915 7.0468 22.7759 6.6718 Q23.2759 6.2812 23.9478 6.2812 ZM25.3726 10.0781 L25.3726 9.1406 L28.2788 9.1406 L28.2788 10.0781 L25.3726 10.0781 ZM30.8303 5.9218 Q30.8303 6.3437 30.8147 6.7031 Q30.7991 7.0468 30.7678 7.25 L30.8303 7.25 Q31.1116 6.8437 31.5803 6.5625 Q32.0647 6.2812 32.8147 6.2812 Q34.0178 6.2812 34.7366 7.125 Q35.471 7.9531 35.471 9.6093 Q35.471 11.2656 34.7366 12.1093 Q34.0022 12.9531 32.8147 12.9531 Q32.0647 12.9531 31.5803 12.6718 Q31.1116 12.3906 30.8303 12.0156 L30.7366 12.0156 L30.5335 12.8281 L29.7678 12.8281 L29.7678 3.7031 L30.8303 3.7031 L30.8303 5.9218 ZM32.6428 7.1718 Q31.6272 7.1718 31.221 7.7656 Q30.8303 8.3437 30.8303 9.5781 L30.8303 9.625 Q30.8303 10.8125 31.221 11.4531 Q31.6116 12.0781 32.6585 12.0781 Q33.5335 12.0781 33.9553 11.4375 Q34.3772 10.7968 34.3772 9.5937 Q34.3772 7.1718 32.6428 7.1718 ZM42.7416 9.5937 Q42.7416 11.2031 41.9291 12.0781 Q41.1166 12.9531 39.7416 12.9531 Q38.8979 12.9531 38.226 12.5625 Q37.5541 12.1718 37.1635 11.4218 Q36.7885 10.6718 36.7885 9.5937 Q36.7885 8 37.5854 7.1406 Q38.3979 6.2812 39.7729 6.2812 Q40.6635 6.2812 41.3198 6.6718 Q41.9916 7.0625 42.3666 7.7968 Q42.7416 8.5312 42.7416 9.5937 ZM37.8823 9.5937 Q37.8823 10.7343 38.3354 11.4062 Q38.7885 12.0781 39.7729 12.0781 Q40.7416 12.0781 41.1948 11.4062 Q41.6479 10.7343 41.6479 9.5937 Q41.6479 8.4531 41.1948 7.8125 Q40.7416 7.1718 39.7573 7.1718 Q38.7729 7.1718 38.3198 7.8125 Q37.8823 8.4531 37.8823 9.5937 ZM50.0017 9.5937 Q50.0017 11.2031 49.1892 12.0781 Q48.3767 12.9531 47.0017 12.9531 Q46.1579 12.9531 45.4861 12.5625 Q44.8142 12.1718 44.4236 11.4218 Q44.0486 10.6718 44.0486 9.5937 Q44.0486 8 44.8454 7.1406 Q45.6579 6.2812 47.0329 6.2812 Q47.9236 6.2812 48.5798 6.6718 Q49.2517 7.0625 49.6267 7.7968 Q50.0017 8.5312 50.0017 9.5937 ZM45.1423 9.5937 Q45.1423 10.7343 45.5954 11.4062 Q46.0486 12.0781 47.0329 12.0781 Q48.0017 12.0781 48.4548 11.4062 Q48.9079 10.7343 48.9079 9.5937 Q48.9079 8.4531 48.4548 7.8125 Q48.0017 7.1718 47.0173 7.1718 Q46.0329 7.1718 45.5798 7.8125 Q45.1423 8.4531 45.1423 9.5937 ZM52.7149 8.4687 Q52.7149 8.6718 52.6992 8.9843 Q52.6836 9.2812 52.668 9.5156 L52.7149 9.5156 Q52.793 9.4218 52.9336 9.25 Q53.0742 9.0625 53.2149 8.875 Q53.3711 8.6875 53.4805 8.5625 L55.543 6.3906 L56.7774 6.3906 L54.168 9.1406 L56.9492 12.8281 L55.6836 12.8281 L53.4492 9.8281 L52.7149 10.4687 L52.7149 12.8281 L51.668 12.8281 L51.668 3.7031 L52.7149 3.7031 L52.7149 8.4687 ZM58.6229 3.9843 Q58.8573 3.9843 59.0448 4.1562 Q59.2323 4.3125 59.2323 4.6562 Q59.2323 4.9843 59.0448 5.1562 Q58.8573 5.3281 58.6229 5.3281 Q58.3573 5.3281 58.1698 5.1562 Q57.9979 4.9843 57.9979 4.6562 Q57.9979 4.3125 58.1698 4.1562 Q58.3573 3.9843 58.6229 3.9843 ZM59.1385 6.3906 L59.1385 12.8281 L58.076 12.8281 L58.076 6.3906 L59.1385 6.3906 ZM64.2658 6.2812 Q65.4221 6.2812 66.0002 6.8437 Q66.5939 7.3906 66.5939 8.6406 L66.5939 12.8281 L65.5627 12.8281 L65.5627 8.7187 Q65.5627 7.1718 64.1096 7.1718 Q63.0471 7.1718 62.6408 7.7656 Q62.2346 8.3593 62.2346 9.4843 L62.2346 12.8281 L61.1721 12.8281 L61.1721 6.3906 L62.0314 6.3906 L62.1877 7.2656 L62.2502 7.2656 Q62.5627 6.7656 63.1096 6.5312 Q63.6564 6.2812 64.2658 6.2812 ZM70.8694 6.2812 Q71.51 6.2812 72.01 6.5156 Q72.5256 6.75 72.885 7.25 L72.9475 7.25 L73.0881 6.3906 L73.9319 6.3906 L73.9319 12.9375 Q73.9319 14.3125 73.2287 15 Q72.5256 15.7031 71.0569 15.7031 Q69.635 15.7031 68.7287 15.2968 L68.7287 14.3281 Q69.6819 14.8281 71.1194 14.8281 Q71.9475 14.8281 72.4162 14.3437 Q72.885 13.8593 72.885 13.0156 L72.885 12.7656 Q72.885 12.625 72.9006 12.3593 Q72.9162 12.0781 72.9319 11.9687 L72.8694 11.9687 Q72.2287 12.9531 70.885 12.9531 Q69.635 12.9531 68.9319 12.0781 Q68.2287 11.2031 68.2287 9.625 Q68.2287 8.0937 68.9319 7.1875 Q69.635 6.2812 70.8694 6.2812 ZM71.01 7.1718 Q70.2131 7.1718 69.76 7.8125 Q69.3225 8.4531 69.3225 9.6406 Q69.3225 10.8281 69.76 11.4531 Q70.1975 12.0781 71.0412 12.0781 Q72.01 12.0781 72.4475 11.5625 Q72.9006 11.0468 72.9006 9.875 L72.9006 9.625 Q72.9006 8.2968 72.4475 7.7343 Q71.9944 7.1718 71.01 7.1718 ZM75.4369 10.0781 L75.4369 9.1406 L78.3432 9.1406 L78.3432 10.0781 L75.4369 10.0781 ZM80.8947 12.8281 L79.8322 12.8281 L79.8322 3.7031 L80.8947 3.7031 L80.8947 12.8281 ZM83.4751 3.9843 Q83.7095 3.9843 83.897 4.1562 Q84.0845 4.3125 84.0845 4.6562 Q84.0845 4.9843 83.897 5.1562 Q83.7095 5.3281 83.4751 5.3281 Q83.2095 5.3281 83.022 5.1562 Q82.8501 4.9843 82.8501 4.6562 Q82.8501 4.3125 83.022 4.1562 Q83.2095 3.9843 83.4751 3.9843 ZM83.9907 6.3906 L83.9907 12.8281 L82.9282 12.8281 L82.9282 6.3906 L83.9907 6.3906 ZM90.2117 11.0468 Q90.2117 11.9843 89.5086 12.4687 Q88.8211 12.9531 87.6492 12.9531 Q86.9774 12.9531 86.493 12.8437 Q86.0086 12.7343 85.6336 12.5468 L85.6336 11.5781 Q86.0242 11.7656 86.5555 11.9375 Q87.1024 12.0937 87.6649 12.0937 Q88.4774 12.0937 88.8367 11.8437 Q89.1961 11.5781 89.1961 11.1406 Q89.1961 10.9062 89.0555 10.7187 Q88.9305 10.5312 88.5867 10.3437 Q88.243 10.1406 87.618 9.9062 Q86.993 9.6562 86.5399 9.4218 Q86.1024 9.1875 85.8524 8.8593 Q85.618 8.5156 85.618 7.9843 Q85.618 7.1718 86.2742 6.7343 Q86.9461 6.2812 88.0399 6.2812 Q88.618 6.2812 89.118 6.3906 Q89.6336 6.5 90.0867 6.7031 L89.7274 7.5468 Q89.3211 7.375 88.868 7.2656 Q88.4305 7.1406 87.9617 7.1406 Q87.3055 7.1406 86.9617 7.3593 Q86.6336 7.5625 86.6336 7.9218 Q86.6336 8.1875 86.7899 8.375 Q86.9461 8.5625 87.3055 8.7343 Q87.6649 8.9062 88.2899 9.1406 Q88.8992 9.375 89.3211 9.625 Q89.7586 9.8593 89.9774 10.2031 Q90.2117 10.5312 90.2117 11.0468 ZM93.9285 12.0781 Q94.1629 12.0781 94.4129 12.0468 Q94.6629 12 94.8192 11.9531 L94.8192 12.75 Q94.6629 12.8437 94.3504 12.8906 Q94.0379 12.9531 93.741 12.9531 Q93.241 12.9531 92.8035 12.7812 Q92.3817 12.5937 92.116 12.1718 Q91.866 11.7343 91.866 10.9531 L91.866 7.2187 L90.9442 7.2187 L90.9442 6.7031 L91.866 6.2812 L92.2879 4.9218 L92.9129 4.9218 L92.9129 6.3906 L94.7723 6.3906 L94.7723 7.2187 L92.9129 7.2187 L92.9129 10.9375 Q92.9129 11.5156 93.1942 11.7968 Q93.4754 12.0781 93.9285 12.0781 Z" style="stroke:none; clip-path:url(#clipPath35);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="306.2139" y="915.2036" width="123.2686" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="306.2139" y="915.2036" width="123.2686" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="411.4825" y="921.2036" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="411.4825" y="921.2036" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="409.4825" y="929.2036" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="409.4825" y="929.2036" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="409.4825" y="924.2036" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="409.4825" y="924.2036" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(316.2139,933.2036)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath36);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(337.844,935.5478)"
+    ><path d="M2.0781 6.3906 Q2.0781 6.8593 2.0156 7.2812 L2.0938 7.2812 Q2.4062 6.7968 2.9375 6.5468 Q3.4688 6.2812 4.0938 6.2812 Q5.2656 6.2812 5.8438 6.8437 Q6.4375 7.4062 6.4375 8.6406 L6.4375 12.8281 L5.4062 12.8281 L5.4062 8.7187 Q5.4062 7.1718 3.9531 7.1718 Q2.875 7.1718 2.4688 7.7812 Q2.0781 8.375 2.0781 9.5 L2.0781 12.8281 L1.0156 12.8281 L1.0156 3.7031 L2.0781 3.7031 L2.0781 6.3906 ZM14.0254 9.5937 Q14.0254 11.2031 13.2129 12.0781 Q12.4004 12.9531 11.0254 12.9531 Q10.1817 12.9531 9.5098 12.5625 Q8.8379 12.1718 8.4473 11.4218 Q8.0723 10.6718 8.0723 9.5937 Q8.0723 8 8.8692 7.1406 Q9.6817 6.2812 11.0567 6.2812 Q11.9473 6.2812 12.6035 6.6718 Q13.2754 7.0625 13.6504 7.7968 Q14.0254 8.5312 14.0254 9.5937 ZM9.166 9.5937 Q9.166 10.7343 9.6192 11.4062 Q10.0723 12.0781 11.0567 12.0781 Q12.0254 12.0781 12.4785 11.4062 Q12.9317 10.7343 12.9317 9.5937 Q12.9317 8.4531 12.4785 7.8125 Q12.0254 7.1718 11.041 7.1718 Q10.0567 7.1718 9.6035 7.8125 Q9.166 8.4531 9.166 9.5937 ZM17.848 12.0781 Q18.0824 12.0781 18.3324 12.0468 Q18.5824 12 18.7386 11.9531 L18.7386 12.75 Q18.5824 12.8437 18.2699 12.8906 Q17.9574 12.9531 17.6605 12.9531 Q17.1605 12.9531 16.723 12.7812 Q16.3011 12.5937 16.0355 12.1718 Q15.7855 11.7343 15.7855 10.9531 L15.7855 7.2187 L14.8636 7.2187 L14.8636 6.7031 L15.7855 6.2812 L16.2074 4.9218 L16.8324 4.9218 L16.8324 6.3906 L18.6917 6.3906 L18.6917 7.2187 L16.8324 7.2187 L16.8324 10.9375 Q16.8324 11.5156 17.1136 11.7968 Q17.3949 12.0781 17.848 12.0781 ZM22.5081 6.2812 Q23.3363 6.2812 23.93 6.6406 Q24.5238 7 24.8363 7.6562 Q25.1644 8.2968 25.1644 9.1875 L25.1644 9.8125 L20.7581 9.8125 Q20.7894 10.9062 21.3206 11.4843 Q21.8519 12.0468 22.805 12.0468 Q23.43 12.0468 23.8988 11.9375 Q24.3675 11.8125 24.8831 11.6093 L24.8831 12.5312 Q24.3831 12.75 23.8988 12.8437 Q23.43 12.9531 22.7581 12.9531 Q21.8519 12.9531 21.1488 12.5781 Q20.4456 12.2031 20.055 11.4687 Q19.6644 10.7343 19.6644 9.6562 Q19.6644 8.6093 20.0238 7.8593 Q20.3831 7.0937 21.0238 6.6875 Q21.6644 6.2812 22.5081 6.2812 ZM22.4925 7.1406 Q21.7425 7.1406 21.305 7.625 Q20.8675 8.1093 20.7894 8.9687 L24.055 8.9687 Q24.055 8.1562 23.68 7.6562 Q23.305 7.1406 22.4925 7.1406 ZM27.8543 12.8281 L26.7918 12.8281 L26.7918 3.7031 L27.8543 3.7031 L27.8543 12.8281 ZM29.3566 10.0781 L29.3566 9.1406 L32.2628 9.1406 L32.2628 10.0781 L29.3566 10.0781 ZM34.8144 12.8281 L33.7519 12.8281 L33.7519 3.7031 L34.8144 3.7031 L34.8144 12.8281 ZM37.3948 3.9843 Q37.6291 3.9843 37.8166 4.1562 Q38.0041 4.3125 38.0041 4.6562 Q38.0041 4.9843 37.8166 5.1562 Q37.6291 5.3281 37.3948 5.3281 Q37.1291 5.3281 36.9416 5.1562 Q36.7698 4.9843 36.7698 4.6562 Q36.7698 4.3125 36.9416 4.1562 Q37.1291 3.9843 37.3948 3.9843 ZM37.9104 6.3906 L37.9104 12.8281 L36.8479 12.8281 L36.8479 6.3906 L37.9104 6.3906 ZM44.1314 11.0468 Q44.1314 11.9843 43.4283 12.4687 Q42.7408 12.9531 41.5689 12.9531 Q40.897 12.9531 40.4127 12.8437 Q39.9283 12.7343 39.5533 12.5468 L39.5533 11.5781 Q39.9439 11.7656 40.4752 11.9375 Q41.022 12.0937 41.5845 12.0937 Q42.397 12.0937 42.7564 11.8437 Q43.1158 11.5781 43.1158 11.1406 Q43.1158 10.9062 42.9752 10.7187 Q42.8502 10.5312 42.5064 10.3437 Q42.1627 10.1406 41.5377 9.9062 Q40.9127 9.6562 40.4595 9.4218 Q40.022 9.1875 39.772 8.8593 Q39.5377 8.5156 39.5377 7.9843 Q39.5377 7.1718 40.1939 6.7343 Q40.8658 6.2812 41.9595 6.2812 Q42.5377 6.2812 43.0377 6.3906 Q43.5533 6.5 44.0064 6.7031 L43.647 7.5468 Q43.2408 7.375 42.7877 7.2656 Q42.3502 7.1406 41.8814 7.1406 Q41.2252 7.1406 40.8814 7.3593 Q40.5533 7.5625 40.5533 7.9218 Q40.5533 8.1875 40.7095 8.375 Q40.8658 8.5625 41.2252 8.7343 Q41.5845 8.9062 42.2095 9.1406 Q42.8189 9.375 43.2408 9.625 Q43.6783 9.8593 43.897 10.2031 Q44.1314 10.5312 44.1314 11.0468 ZM47.8482 12.0781 Q48.0826 12.0781 48.3326 12.0468 Q48.5826 12 48.7388 11.9531 L48.7388 12.75 Q48.5826 12.8437 48.2701 12.8906 Q47.9576 12.9531 47.6607 12.9531 Q47.1607 12.9531 46.7232 12.7812 Q46.3013 12.5937 46.0357 12.1718 Q45.7857 11.7343 45.7857 10.9531 L45.7857 7.2187 L44.8638 7.2187 L44.8638 6.7031 L45.7857 6.2812 L46.2076 4.9218 L46.8326 4.9218 L46.8326 6.3906 L48.692 6.3906 L48.692 7.2187 L46.8326 7.2187 L46.8326 10.9375 Q46.8326 11.5156 47.1138 11.7968 Q47.3951 12.0781 47.8482 12.0781 Z" style="stroke:none; clip-path:url(#clipPath37);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="269.399" y="874.8346" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="269.399" y="874.8346" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="1255.8526" x2="411.3845" y1="584.3548" style="fill:none; clip-path:url(#clipPath2);" y2="342.6677"
+      /><line x1="1255.8526" x2="1244.2105" y1="584.3548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="587.2638"
+      /><line x1="1255.8526" x2="1247.5124" y1="584.3548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="575.727"
+      /><line x1="1293.8435" x2="429.4825" y1="825.7139" style="fill:none; clip-path:url(#clipPath2);" y2="931.971"
+      /><line x1="1293.8435" x2="1284.2609" y1="825.7139" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="832.9371"
+      /><line x1="1293.8435" x2="1282.7968" y1="825.7139" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="821.0267"
+      /><path d="M570.5034 238.6307 A6 6 0 0 0 559.274 242.8615" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1013.5123" x2="570.5034" y1="71.7217" style="fill:none; clip-path:url(#clipPath2);" y2="238.6307"
+      /><line x1="559.274" x2="409.4985" y1="242.8615" style="fill:none; clip-path:url(#clipPath2);" y2="299.2913"
+      /><line x1="1013.5123" x2="1005.9028" y1="71.7217" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="81.0004"
+      /><line x1="1013.5123" x2="1001.6719" y1="71.7217" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="69.771"
+      /><line x1="1293.8435" x2="429.4825" y1="825.7139" style="fill:none; clip-path:url(#clipPath2);" y2="931.971"
+      /><line x1="1293.8435" x2="1284.2609" y1="825.7139" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="832.9371"
+      /><line x1="1293.8435" x2="1282.7968" y1="825.7139" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="821.0267"
+      /><line x1="1268.6656" x2="429.4825" y1="625.0431" style="fill:none; clip-path:url(#clipPath2);" y2="918.0292"
+      /><line x1="1268.6656" x2="1260.8318" y1="625.0431" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="634.1333"
+      /><line x1="1268.6656" x2="1256.8764" y1="625.0431" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="622.8039"
+      /><path d="M763.2612 437.5991 A6 6 0 0 0 755.8355 447.0256" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M825.4223 358.6901 A6 6 0 0 0 817.9965 368.1166" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1051.4834" x2="825.4223" y1="71.7217" style="fill:none; clip-path:url(#clipPath2);" y2="358.6901"
+      /><line x1="817.9965" x2="763.2612" y1="368.1166" style="fill:none; clip-path:url(#clipPath2);" y2="437.5991"
+      /><line x1="755.8355" x2="387.0254" y1="447.0256" style="fill:none; clip-path:url(#clipPath2);" y2="915.2036"
+      /><line x1="1051.4834" x2="1049.7657" y1="71.7217" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="83.5981"
+      /><line x1="1051.4834" x2="1040.3392" y1="71.7217" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="76.1724"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="311.7694" y="817.9814" width="123.2686" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="311.7694" y="817.9814" width="123.2686" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="417.038" y="823.9814" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="417.038" y="823.9814" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="415.038" y="831.9814" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="415.038" y="831.9814" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="415.038" y="826.9814" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="415.038" y="826.9814" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(321.7694,835.9814)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath38);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(329.5334,838.3255)"
+    ><path d="M2.0781 6.3906 Q2.0781 6.8593 2.0156 7.2812 L2.0938 7.2812 Q2.4062 6.7968 2.9375 6.5468 Q3.4688 6.2812 4.0938 6.2812 Q5.2656 6.2812 5.8438 6.8437 Q6.4375 7.4062 6.4375 8.6406 L6.4375 12.8281 L5.4062 12.8281 L5.4062 8.7187 Q5.4062 7.1718 3.9531 7.1718 Q2.875 7.1718 2.4688 7.7812 Q2.0781 8.375 2.0781 9.5 L2.0781 12.8281 L1.0156 12.8281 L1.0156 3.7031 L2.0781 3.7031 L2.0781 6.3906 ZM14.0254 9.5937 Q14.0254 11.2031 13.2129 12.0781 Q12.4004 12.9531 11.0254 12.9531 Q10.1817 12.9531 9.5098 12.5625 Q8.8379 12.1718 8.4473 11.4218 Q8.0723 10.6718 8.0723 9.5937 Q8.0723 8 8.8692 7.1406 Q9.6817 6.2812 11.0567 6.2812 Q11.9473 6.2812 12.6035 6.6718 Q13.2754 7.0625 13.6504 7.7968 Q14.0254 8.5312 14.0254 9.5937 ZM9.166 9.5937 Q9.166 10.7343 9.6192 11.4062 Q10.0723 12.0781 11.0567 12.0781 Q12.0254 12.0781 12.4785 11.4062 Q12.9317 10.7343 12.9317 9.5937 Q12.9317 8.4531 12.4785 7.8125 Q12.0254 7.1718 11.041 7.1718 Q10.0567 7.1718 9.6035 7.8125 Q9.166 8.4531 9.166 9.5937 ZM17.848 12.0781 Q18.0824 12.0781 18.3324 12.0468 Q18.5824 12 18.7386 11.9531 L18.7386 12.75 Q18.5824 12.8437 18.2699 12.8906 Q17.9574 12.9531 17.6605 12.9531 Q17.1605 12.9531 16.723 12.7812 Q16.3011 12.5937 16.0355 12.1718 Q15.7855 11.7343 15.7855 10.9531 L15.7855 7.2187 L14.8636 7.2187 L14.8636 6.7031 L15.7855 6.2812 L16.2074 4.9218 L16.8324 4.9218 L16.8324 6.3906 L18.6917 6.3906 L18.6917 7.2187 L16.8324 7.2187 L16.8324 10.9375 Q16.8324 11.5156 17.1136 11.7968 Q17.3949 12.0781 17.848 12.0781 ZM22.5081 6.2812 Q23.3363 6.2812 23.93 6.6406 Q24.5238 7 24.8363 7.6562 Q25.1644 8.2968 25.1644 9.1875 L25.1644 9.8125 L20.7581 9.8125 Q20.7894 10.9062 21.3206 11.4843 Q21.8519 12.0468 22.805 12.0468 Q23.43 12.0468 23.8988 11.9375 Q24.3675 11.8125 24.8831 11.6093 L24.8831 12.5312 Q24.3831 12.75 23.8988 12.8437 Q23.43 12.9531 22.7581 12.9531 Q21.8519 12.9531 21.1488 12.5781 Q20.4456 12.2031 20.055 11.4687 Q19.6644 10.7343 19.6644 9.6562 Q19.6644 8.6093 20.0238 7.8593 Q20.3831 7.0937 21.0238 6.6875 Q21.6644 6.2812 22.5081 6.2812 ZM22.4925 7.1406 Q21.7425 7.1406 21.305 7.625 Q20.8675 8.1093 20.7894 8.9687 L24.055 8.9687 Q24.055 8.1562 23.68 7.6562 Q23.305 7.1406 22.4925 7.1406 ZM27.8543 12.8281 L26.7918 12.8281 L26.7918 3.7031 L27.8543 3.7031 L27.8543 12.8281 ZM29.3566 10.0781 L29.3566 9.1406 L32.2628 9.1406 L32.2628 10.0781 L29.3566 10.0781 ZM36.7519 6.2812 Q36.9394 6.2812 37.1425 6.2968 Q37.3612 6.3125 37.5175 6.3437 L37.3769 7.3125 Q37.2206 7.2812 37.0331 7.2656 Q36.8456 7.2343 36.6894 7.2343 Q36.1894 7.2343 35.7519 7.5156 Q35.33 7.7812 35.0644 8.2656 Q34.8144 8.75 34.8144 9.3906 L34.8144 12.8281 L33.7519 12.8281 L33.7519 6.3906 L34.6269 6.3906 L34.7362 7.5781 L34.7831 7.5781 Q35.0956 7.0468 35.58 6.6718 Q36.08 6.2812 36.7519 6.2812 ZM41.1923 6.2812 Q42.0204 6.2812 42.6142 6.6406 Q43.2079 7 43.5204 7.6562 Q43.8485 8.2968 43.8485 9.1875 L43.8485 9.8125 L39.4423 9.8125 Q39.4735 10.9062 40.0048 11.4843 Q40.536 12.0468 41.4892 12.0468 Q42.1142 12.0468 42.5829 11.9375 Q43.0517 11.8125 43.5673 11.6093 L43.5673 12.5312 Q43.0673 12.75 42.5829 12.8437 Q42.1142 12.9531 41.4423 12.9531 Q40.536 12.9531 39.8329 12.5781 Q39.1298 12.2031 38.7392 11.4687 Q38.3485 10.7343 38.3485 9.6562 Q38.3485 8.6093 38.7079 7.8593 Q39.0673 7.0937 39.7079 6.6875 Q40.3485 6.2812 41.1923 6.2812 ZM41.1767 7.1406 Q40.4267 7.1406 39.9892 7.625 Q39.5517 8.1093 39.4735 8.9687 L42.7392 8.9687 Q42.7392 8.1562 42.3642 7.6562 Q41.9892 7.1406 41.1767 7.1406 ZM47.7572 6.2812 Q48.3978 6.2812 48.8978 6.5156 Q49.4135 6.75 49.7728 7.25 L49.8353 7.25 L49.976 6.3906 L50.8197 6.3906 L50.8197 12.9375 Q50.8197 14.3125 50.1166 15 Q49.4135 15.7031 47.9447 15.7031 Q46.5228 15.7031 45.6166 15.2968 L45.6166 14.3281 Q46.5697 14.8281 48.0072 14.8281 Q48.8353 14.8281 49.3041 14.3437 Q49.7728 13.8593 49.7728 13.0156 L49.7728 12.7656 Q49.7728 12.625 49.7885 12.3593 Q49.8041 12.0781 49.8197 11.9687 L49.7572 11.9687 Q49.1166 12.9531 47.7728 12.9531 Q46.5228 12.9531 45.8197 12.0781 Q45.1166 11.2031 45.1166 9.625 Q45.1166 8.0937 45.8197 7.1875 Q46.5228 6.2812 47.7572 6.2812 ZM47.8978 7.1718 Q47.101 7.1718 46.6478 7.8125 Q46.2103 8.4531 46.2103 9.6406 Q46.2103 10.8281 46.6478 11.4531 Q47.0853 12.0781 47.9291 12.0781 Q48.8978 12.0781 49.3353 11.5625 Q49.7885 11.0468 49.7885 9.875 L49.7885 9.625 Q49.7885 8.2968 49.3353 7.7343 Q48.8822 7.1718 47.8978 7.1718 ZM53.4029 3.9843 Q53.6373 3.9843 53.8248 4.1562 Q54.0123 4.3125 54.0123 4.6562 Q54.0123 4.9843 53.8248 5.1562 Q53.6373 5.3281 53.4029 5.3281 Q53.1373 5.3281 52.9498 5.1562 Q52.7779 4.9843 52.7779 4.6562 Q52.7779 4.3125 52.9498 4.1562 Q53.1373 3.9843 53.4029 3.9843 ZM53.9185 6.3906 L53.9185 12.8281 L52.856 12.8281 L52.856 6.3906 L53.9185 6.3906 ZM60.1395 11.0468 Q60.1395 11.9843 59.4364 12.4687 Q58.7489 12.9531 57.577 12.9531 Q56.9052 12.9531 56.4208 12.8437 Q55.9364 12.7343 55.5614 12.5468 L55.5614 11.5781 Q55.952 11.7656 56.4833 11.9375 Q57.0302 12.0937 57.5927 12.0937 Q58.4052 12.0937 58.7645 11.8437 Q59.1239 11.5781 59.1239 11.1406 Q59.1239 10.9062 58.9833 10.7187 Q58.8583 10.5312 58.5145 10.3437 Q58.1708 10.1406 57.5458 9.9062 Q56.9208 9.6562 56.4677 9.4218 Q56.0302 9.1875 55.7802 8.8593 Q55.5458 8.5156 55.5458 7.9843 Q55.5458 7.1718 56.202 6.7343 Q56.8739 6.2812 57.9677 6.2812 Q58.5458 6.2812 59.0458 6.3906 Q59.5614 6.5 60.0145 6.7031 L59.6552 7.5468 Q59.2489 7.375 58.7958 7.2656 Q58.3583 7.1406 57.8895 7.1406 Q57.2333 7.1406 56.8895 7.3593 Q56.5614 7.5625 56.5614 7.9218 Q56.5614 8.1875 56.7177 8.375 Q56.8739 8.5625 57.2333 8.7343 Q57.5927 8.9062 58.2177 9.1406 Q58.827 9.375 59.2489 9.625 Q59.6864 9.8593 59.9052 10.2031 Q60.1395 10.5312 60.1395 11.0468 ZM63.8563 12.0781 Q64.0907 12.0781 64.3407 12.0468 Q64.5907 12 64.7469 11.9531 L64.7469 12.75 Q64.5907 12.8437 64.2782 12.8906 Q63.9657 12.9531 63.6688 12.9531 Q63.1688 12.9531 62.7313 12.7812 Q62.3094 12.5937 62.0438 12.1718 Q61.7938 11.7343 61.7938 10.9531 L61.7938 7.2187 L60.8719 7.2187 L60.8719 6.7031 L61.7938 6.2812 L62.2157 4.9218 L62.8407 4.9218 L62.8407 6.3906 L64.7001 6.3906 L64.7001 7.2187 L62.8407 7.2187 L62.8407 10.9375 Q62.8407 11.5156 63.1219 11.7968 Q63.4032 12.0781 63.8563 12.0781 ZM68.5165 6.2812 Q69.3446 6.2812 69.9384 6.6406 Q70.5321 7 70.8446 7.6562 Q71.1727 8.2968 71.1727 9.1875 L71.1727 9.8125 L66.7665 9.8125 Q66.7977 10.9062 67.329 11.4843 Q67.8602 12.0468 68.8134 12.0468 Q69.4384 12.0468 69.9071 11.9375 Q70.3759 11.8125 70.8915 11.6093 L70.8915 12.5312 Q70.3915 12.75 69.9071 12.8437 Q69.4384 12.9531 68.7665 12.9531 Q67.8602 12.9531 67.1571 12.5781 Q66.454 12.2031 66.0634 11.4687 Q65.6727 10.7343 65.6727 9.6562 Q65.6727 8.6093 66.0321 7.8593 Q66.3915 7.0937 67.0321 6.6875 Q67.6727 6.2812 68.5165 6.2812 ZM68.5009 7.1406 Q67.7509 7.1406 67.3134 7.625 Q66.8759 8.1093 66.7977 8.9687 L70.0634 8.9687 Q70.0634 8.1562 69.6884 7.6562 Q69.3134 7.1406 68.5009 7.1406 ZM75.8002 6.2812 Q75.9877 6.2812 76.1908 6.2968 Q76.4095 6.3125 76.5658 6.3437 L76.4252 7.3125 Q76.2689 7.2812 76.0814 7.2656 Q75.8939 7.2343 75.7377 7.2343 Q75.2377 7.2343 74.8002 7.5156 Q74.3783 7.7812 74.1127 8.2656 Q73.8627 8.75 73.8627 9.3906 L73.8627 12.8281 L72.8002 12.8281 L72.8002 6.3906 L73.6752 6.3906 L73.7845 7.5781 L73.8314 7.5781 Q74.1439 7.0468 74.6283 6.6718 Q75.1283 6.2812 75.8002 6.2812 Z" style="stroke:none; clip-path:url(#clipPath39);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="1121.5096" x2="1460.8365" y1="51.3776" style="fill:none; clip-path:url(#clipPath2);" y2="51.3776"
+      /><line x1="1460.8365" x2="1460.8365" y1="51.3776" style="fill:none; clip-path:url(#clipPath2);" y2="133.2611"
+      /><line x1="1460.8365" x2="1411.4916" y1="133.2611" style="fill:none; clip-path:url(#clipPath2);" y2="133.2611"
+      /><line x1="1121.5096" x2="1131.9019" y1="51.3776" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="45.3776"
+      /><line x1="1121.5096" x2="1131.9019" y1="51.3776" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="57.3776"
+      /><path d="M451.8616 840.3629 A6 6 0 0 0 439.8653 840.663" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M673.3776 834.8216 A6 6 0 0 0 661.3814 835.1217" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1293.8435" x2="673.3776" y1="819.3004" style="fill:none; clip-path:url(#clipPath2);" y2="834.8216"
+      /><line x1="661.3814" x2="451.8616" y1="835.1217" style="fill:none; clip-path:url(#clipPath2);" y2="840.3629"
+      /><line x1="439.8653" x2="435.038" y1="840.663" style="fill:none; clip-path:url(#clipPath2);" y2="840.7837"
+      /><line x1="1293.8435" x2="1283.6045" y1="819.3004" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="825.5584"
+      /><line x1="1293.8435" x2="1283.3044" y1="819.3004" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="813.5622"
+      /><path d="M1460.8365 153.399 A6 6 0 0 0 1460.8365 141.399" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1121.5096" x2="1460.8365" y1="51.3776" style="fill:none; clip-path:url(#clipPath2);" y2="51.3776"
+      /><line x1="1460.8365" x2="1460.8365" y1="51.3776" style="fill:none; clip-path:url(#clipPath2);" y2="141.399"
+      /><line x1="1460.8365" x2="1460.8365" y1="153.399" style="fill:none; clip-path:url(#clipPath2);" y2="267.399"
+      /><line x1="1460.8365" x2="1385.3065" y1="267.399" style="fill:none; clip-path:url(#clipPath2);" y2="267.399"
+      /><line x1="1121.5096" x2="1131.9019" y1="51.3776" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="45.3776"
+      /><line x1="1121.5096" x2="1131.9019" y1="51.3776" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="57.3776"
+      /><path d="M1460.8365 293.399 A6 6 0 0 0 1460.8365 281.399" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M1460.8365 153.399 A6 6 0 0 0 1460.8365 141.399" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1121.5096" x2="1460.8365" y1="51.3776" style="fill:none; clip-path:url(#clipPath2);" y2="51.3776"
+      /><line x1="1460.8365" x2="1460.8365" y1="51.3776" style="fill:none; clip-path:url(#clipPath2);" y2="141.399"
+      /><line x1="1460.8365" x2="1460.8365" y1="153.399" style="fill:none; clip-path:url(#clipPath2);" y2="281.399"
+      /><line x1="1460.8365" x2="1460.8365" y1="293.399" style="fill:none; clip-path:url(#clipPath2);" y2="600.5025"
+      /><line x1="1460.8365" x2="1400.9361" y1="600.5025" style="fill:none; clip-path:url(#clipPath2);" y2="600.5025"
+      /><line x1="1121.5096" x2="1131.9019" y1="51.3776" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="45.3776"
+      /><line x1="1121.5096" x2="1131.9019" y1="51.3776" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="57.3776"
+      /><path d="M1460.8365 619.6059 A6 6 0 0 0 1460.8365 607.6059" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M1460.8365 293.399 A6 6 0 0 0 1460.8365 281.399" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M1460.8365 153.399 A6 6 0 0 0 1460.8365 141.399" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1121.5096" x2="1460.8365" y1="51.3776" style="fill:none; clip-path:url(#clipPath2);" y2="51.3776"
+      /><line x1="1460.8365" x2="1460.8365" y1="51.3776" style="fill:none; clip-path:url(#clipPath2);" y2="141.399"
+      /><line x1="1460.8365" x2="1460.8365" y1="153.399" style="fill:none; clip-path:url(#clipPath2);" y2="281.399"
+      /><line x1="1460.8365" x2="1460.8365" y1="293.399" style="fill:none; clip-path:url(#clipPath2);" y2="607.6059"
+      /><line x1="1460.8365" x2="1460.8365" y1="619.6059" style="fill:none; clip-path:url(#clipPath2);" y2="809.468"
+      /><line x1="1460.8365" x2="1424.8435" y1="809.468" style="fill:none; clip-path:url(#clipPath2);" y2="809.468"
+      /><line x1="1121.5096" x2="1131.9019" y1="51.3776" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="45.3776"
+      /><line x1="1121.5096" x2="1131.9019" y1="51.3776" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="57.3776"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="250.9609" y="409.178" width="256.2525" style="clip-path:url(#clipPath2); stroke:none;" height="216.5068"
+      /><rect x="250.9609" y="409.178" width="256.2525" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="216.5068"
+      /><rect x="489.2134" y="415.178" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="489.2134" y="415.178" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="487.2134" y="423.178" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="487.2134" y="423.178" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="487.2134" y="418.178" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="487.2134" y="418.178" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(338.2889,427.178)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM21.8062 -6.5469 Q22.9 -6.5469 23.4312 -5.9844 Q23.9781 -5.4375 23.9781 -4.1875 L23.9781 0 L22.9312 0 L22.9312 -4.1406 Q22.9312 -5.6562 21.6187 -5.6562 Q20.6812 -5.6562 20.275 -5.1094 Q19.8843 -4.5781 19.8843 -3.5469 L19.8843 0 L18.8375 0 L18.8375 -4.1406 Q18.8375 -5.6562 17.525 -5.6562 Q16.5406 -5.6562 16.1656 -5.0625 Q15.8062 -4.4688 15.8062 -3.3438 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.6031 -6.4375 L15.7593 -5.5625 L15.8218 -5.5625 Q16.1187 -6.0625 16.6187 -6.2969 Q17.1343 -6.5469 17.7125 -6.5469 Q19.2281 -6.5469 19.6812 -5.4688 L19.7437 -5.4688 Q20.0718 -6.0312 20.6187 -6.2812 Q21.1812 -6.5469 21.8062 -6.5469 ZM31.5575 -3.2344 Q31.5575 -1.625 30.745 -0.75 Q29.9325 0.125 28.5575 0.125 Q27.7138 0.125 27.0419 -0.2656 Q26.37 -0.6562 25.9794 -1.4062 Q25.6044 -2.1562 25.6044 -3.2344 Q25.6044 -4.8281 26.4013 -5.6875 Q27.2138 -6.5469 28.5888 -6.5469 Q29.4794 -6.5469 30.1357 -6.1562 Q30.8075 -5.7656 31.1825 -5.0312 Q31.5575 -4.2969 31.5575 -3.2344 ZM26.6982 -3.2344 Q26.6982 -2.0938 27.1513 -1.4219 Q27.6044 -0.75 28.5888 -0.75 Q29.5575 -0.75 30.0107 -1.4219 Q30.4638 -2.0938 30.4638 -3.2344 Q30.4638 -4.375 30.0107 -5.0156 Q29.5575 -5.6562 28.5732 -5.6562 Q27.5888 -5.6562 27.1357 -5.0156 Q26.6982 -4.375 26.6982 -3.2344 ZM35.5051 0.125 Q34.302 0.125 33.5832 -0.7031 Q32.8645 -1.5469 32.8645 -3.2031 Q32.8645 -4.8594 33.5832 -5.7031 Q34.3176 -6.5469 35.5207 -6.5469 Q36.2707 -6.5469 36.7395 -6.2656 Q37.2082 -6 37.5051 -5.6094 L37.5832 -5.6094 Q37.5676 -5.7656 37.5363 -6.0625 Q37.5051 -6.375 37.5051 -6.5469 L37.5051 -9.125 L38.5676 -9.125 L38.5676 0 L37.7238 0 L37.5676 -0.8594 L37.5051 -0.8594 Q37.2238 -0.4531 36.7395 -0.1562 Q36.2707 0.125 35.5051 0.125 ZM35.677 -0.75 Q36.6926 -0.75 37.0988 -1.3125 Q37.5207 -1.875 37.5207 -3 L37.5207 -3.1875 Q37.5207 -4.3906 37.1301 -5.0312 Q36.7395 -5.6719 35.6613 -5.6719 Q34.8176 -5.6719 34.3801 -4.9844 Q33.9582 -4.3125 33.9582 -3.1875 Q33.9582 -2.0312 34.3801 -1.3906 Q34.8176 -0.75 35.677 -0.75 ZM45.9789 -6.4375 L45.9789 0 L45.1195 0 L44.9633 -0.8594 L44.9164 -0.8594 Q44.6039 -0.3438 44.0414 -0.1094 Q43.4945 0.125 42.8695 0.125 Q41.7133 0.125 41.1195 -0.4375 Q40.5414 -1 40.5414 -2.2188 L40.5414 -6.4375 L41.6039 -6.4375 L41.6039 -2.2969 Q41.6039 -0.75 43.0258 -0.75 Q44.1039 -0.75 44.5101 -1.3438 Q44.932 -1.9531 44.932 -3.0781 L44.932 -6.4375 L45.9789 -6.4375 ZM49.0824 0 L48.0199 0 L48.0199 -9.125 L49.0824 -9.125 L49.0824 0 ZM53.6003 -6.5469 Q54.4285 -6.5469 55.0222 -6.1875 Q55.616 -5.8281 55.9285 -5.1719 Q56.2566 -4.5312 56.2566 -3.6406 L56.2566 -3.0156 L51.8503 -3.0156 Q51.8816 -1.9219 52.4128 -1.3438 Q52.9441 -0.7812 53.8972 -0.7812 Q54.5222 -0.7812 54.991 -0.8906 Q55.4597 -1.0156 55.9753 -1.2188 L55.9753 -0.2969 Q55.4753 -0.0781 54.991 0.0156 Q54.5222 0.125 53.8503 0.125 Q52.9441 0.125 52.241 -0.25 Q51.5378 -0.625 51.1472 -1.3594 Q50.7566 -2.0938 50.7566 -3.1719 Q50.7566 -4.2188 51.116 -4.9688 Q51.4753 -5.7344 52.116 -6.1406 Q52.7566 -6.5469 53.6003 -6.5469 ZM53.5847 -5.6875 Q52.8347 -5.6875 52.3972 -5.2031 Q51.9597 -4.7188 51.8816 -3.8594 L55.1472 -3.8594 Q55.1472 -4.6719 54.7722 -5.1719 Q54.3972 -5.6875 53.5847 -5.6875 ZM57.4621 -2.3281 L61.9934 -4.2188 L57.4621 -6.3594 L57.4621 -7.2969 L63.1184 -4.4688 L63.1184 -3.875 L57.4621 -1.3906 L57.4621 -2.3281 ZM64.3262 -2.3281 L68.8574 -4.2188 L64.3262 -6.3594 L64.3262 -7.2969 L69.9824 -4.4688 L69.9824 -3.875 L64.3262 -1.3906 L64.3262 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath40);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(360.0871,429.5221)"
+    ><path d="M7.6875 9.7968 Q7.6875 10.6875 7.3125 11.4062 Q6.9531 12.125 6.2188 12.5468 Q5.4844 12.9531 4.3438 12.9531 Q2.75 12.9531 1.9062 12.0781 Q1.0781 11.2031 1.0781 9.7812 L1.0781 4.2656 L2.1562 4.2656 L2.1562 9.8125 Q2.1562 10.8593 2.7188 11.4375 Q3.2812 12.0156 4.4062 12.0156 Q5.5625 12.0156 6.0781 11.4062 Q6.6094 10.7812 6.6094 9.7968 L6.6094 4.2656 L7.6875 4.2656 L7.6875 9.7968 ZM13.9752 11.0468 Q13.9752 11.9843 13.2721 12.4687 Q12.5846 12.9531 11.4127 12.9531 Q10.7408 12.9531 10.2564 12.8437 Q9.7721 12.7343 9.3971 12.5468 L9.3971 11.5781 Q9.7877 11.7656 10.3189 11.9375 Q10.8658 12.0937 11.4283 12.0937 Q12.2408 12.0937 12.6002 11.8437 Q12.9596 11.5781 12.9596 11.1406 Q12.9596 10.9062 12.8189 10.7187 Q12.6939 10.5312 12.3502 10.3437 Q12.0064 10.1406 11.3814 9.9062 Q10.7564 9.6562 10.3033 9.4218 Q9.8658 9.1875 9.6158 8.8593 Q9.3814 8.5156 9.3814 7.9843 Q9.3814 7.1718 10.0377 6.7343 Q10.7096 6.2812 11.8033 6.2812 Q12.3814 6.2812 12.8814 6.3906 Q13.3971 6.5 13.8502 6.7031 L13.4908 7.5468 Q13.0846 7.375 12.6314 7.2656 Q12.1939 7.1406 11.7252 7.1406 Q11.0689 7.1406 10.7252 7.3593 Q10.3971 7.5625 10.3971 7.9218 Q10.3971 8.1875 10.5533 8.375 Q10.7096 8.5625 11.0689 8.7343 Q11.4283 8.9062 12.0533 9.1406 Q12.6627 9.375 13.0846 9.625 Q13.5221 9.8593 13.7408 10.2031 Q13.9752 10.5312 13.9752 11.0468 ZM18.0201 6.2812 Q18.8482 6.2812 19.442 6.6406 Q20.0357 7 20.3482 7.6562 Q20.6764 8.2968 20.6764 9.1875 L20.6764 9.8125 L16.2701 9.8125 Q16.3014 10.9062 16.8326 11.4843 Q17.3639 12.0468 18.317 12.0468 Q18.942 12.0468 19.4107 11.9375 Q19.8795 11.8125 20.3951 11.6093 L20.3951 12.5312 Q19.8951 12.75 19.4107 12.8437 Q18.942 12.9531 18.2701 12.9531 Q17.3639 12.9531 16.6607 12.5781 Q15.9576 12.2031 15.567 11.4687 Q15.1764 10.7343 15.1764 9.6562 Q15.1764 8.6093 15.5357 7.8593 Q15.8951 7.0937 16.5357 6.6875 Q17.1764 6.2812 18.0201 6.2812 ZM18.0045 7.1406 Q17.2545 7.1406 16.817 7.625 Q16.3795 8.1093 16.3014 8.9687 L19.567 8.9687 Q19.567 8.1562 19.192 7.6562 Q18.817 7.1406 18.0045 7.1406 ZM25.3038 6.2812 Q25.4913 6.2812 25.6944 6.2968 Q25.9132 6.3125 26.0694 6.3437 L25.9288 7.3125 Q25.7725 7.2812 25.585 7.2656 Q25.3975 7.2343 25.2413 7.2343 Q24.7413 7.2343 24.3038 7.5156 Q23.8819 7.7812 23.6163 8.2656 Q23.3663 8.75 23.3663 9.3906 L23.3663 12.8281 L22.3038 12.8281 L22.3038 6.3906 L23.1788 6.3906 L23.2882 7.5781 L23.335 7.5781 Q23.6475 7.0468 24.1319 6.6718 Q24.6319 6.2812 25.3038 6.2812 Z" style="stroke:none; clip-path:url(#clipPath41);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="243.9609" y="429.7886" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="243.9609" y="429.7886" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><rect x="294.7712" y="458.3076" width="159.7729" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="294.7712" y="458.3076" width="159.7729" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="436.5441" y="464.3076" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="436.5441" y="464.3076" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="434.5441" y="472.3076" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="434.5441" y="472.3076" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="434.5441" y="467.3076" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="434.5441" y="467.3076" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(323.0234,476.3076)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath42);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(307.8852,478.6517)"
+    ><path d="M7.6875 9.7968 Q7.6875 10.6875 7.3125 11.4062 Q6.9531 12.125 6.2188 12.5468 Q5.4844 12.9531 4.3438 12.9531 Q2.75 12.9531 1.9062 12.0781 Q1.0781 11.2031 1.0781 9.7812 L1.0781 4.2656 L2.1562 4.2656 L2.1562 9.8125 Q2.1562 10.8593 2.7188 11.4375 Q3.2812 12.0156 4.4062 12.0156 Q5.5625 12.0156 6.0781 11.4062 Q6.6094 10.7812 6.6094 9.7968 L6.6094 4.2656 L7.6875 4.2656 L7.6875 9.7968 ZM13.9752 11.0468 Q13.9752 11.9843 13.2721 12.4687 Q12.5846 12.9531 11.4127 12.9531 Q10.7408 12.9531 10.2564 12.8437 Q9.7721 12.7343 9.3971 12.5468 L9.3971 11.5781 Q9.7877 11.7656 10.3189 11.9375 Q10.8658 12.0937 11.4283 12.0937 Q12.2408 12.0937 12.6002 11.8437 Q12.9596 11.5781 12.9596 11.1406 Q12.9596 10.9062 12.8189 10.7187 Q12.6939 10.5312 12.3502 10.3437 Q12.0064 10.1406 11.3814 9.9062 Q10.7564 9.6562 10.3033 9.4218 Q9.8658 9.1875 9.6158 8.8593 Q9.3814 8.5156 9.3814 7.9843 Q9.3814 7.1718 10.0377 6.7343 Q10.7096 6.2812 11.8033 6.2812 Q12.3814 6.2812 12.8814 6.3906 Q13.3971 6.5 13.8502 6.7031 L13.4908 7.5468 Q13.0846 7.375 12.6314 7.2656 Q12.1939 7.1406 11.7252 7.1406 Q11.0689 7.1406 10.7252 7.3593 Q10.3971 7.5625 10.3971 7.9218 Q10.3971 8.1875 10.5533 8.375 Q10.7096 8.5625 11.0689 8.7343 Q11.4283 8.9062 12.0533 9.1406 Q12.6627 9.375 13.0846 9.625 Q13.5221 9.8593 13.7408 10.2031 Q13.9752 10.5312 13.9752 11.0468 ZM18.0201 6.2812 Q18.8482 6.2812 19.442 6.6406 Q20.0357 7 20.3482 7.6562 Q20.6764 8.2968 20.6764 9.1875 L20.6764 9.8125 L16.2701 9.8125 Q16.3014 10.9062 16.8326 11.4843 Q17.3639 12.0468 18.317 12.0468 Q18.942 12.0468 19.4107 11.9375 Q19.8795 11.8125 20.3951 11.6093 L20.3951 12.5312 Q19.8951 12.75 19.4107 12.8437 Q18.942 12.9531 18.2701 12.9531 Q17.3639 12.9531 16.6607 12.5781 Q15.9576 12.2031 15.567 11.4687 Q15.1764 10.7343 15.1764 9.6562 Q15.1764 8.6093 15.5357 7.8593 Q15.8951 7.0937 16.5357 6.6875 Q17.1764 6.2812 18.0201 6.2812 ZM18.0045 7.1406 Q17.2545 7.1406 16.817 7.625 Q16.3795 8.1093 16.3014 8.9687 L19.567 8.9687 Q19.567 8.1562 19.192 7.6562 Q18.817 7.1406 18.0045 7.1406 ZM25.3038 6.2812 Q25.4913 6.2812 25.6944 6.2968 Q25.9132 6.3125 26.0694 6.3437 L25.9288 7.3125 Q25.7725 7.2812 25.585 7.2656 Q25.3975 7.2343 25.2413 7.2343 Q24.7413 7.2343 24.3038 7.5156 Q23.8819 7.7812 23.6163 8.2656 Q23.3663 8.75 23.3663 9.3906 L23.3663 12.8281 L22.3038 12.8281 L22.3038 6.3906 L23.1788 6.3906 L23.2882 7.5781 L23.335 7.5781 Q23.6475 7.0468 24.1319 6.6718 Q24.6319 6.2812 25.3038 6.2812 ZM28.4942 12.8281 L27.4005 12.8281 L27.4005 4.2656 L32.1973 4.2656 L32.1973 5.2031 L28.4942 5.2031 L28.4942 8.25 L31.963 8.25 L31.963 9.1875 L28.4942 9.1875 L28.4942 12.8281 ZM39.0816 9.5937 Q39.0816 11.2031 38.2691 12.0781 Q37.4566 12.9531 36.0816 12.9531 Q35.2379 12.9531 34.566 12.5625 Q33.8941 12.1718 33.5035 11.4218 Q33.1285 10.6718 33.1285 9.5937 Q33.1285 8 33.9254 7.1406 Q34.7379 6.2812 36.1129 6.2812 Q37.0035 6.2812 37.6597 6.6718 Q38.3316 7.0625 38.7066 7.7968 Q39.0816 8.5312 39.0816 9.5937 ZM34.2222 9.5937 Q34.2222 10.7343 34.6754 11.4062 Q35.1285 12.0781 36.1129 12.0781 Q37.0816 12.0781 37.5347 11.4062 Q37.9879 10.7343 37.9879 9.5937 Q37.9879 8.4531 37.5347 7.8125 Q37.0816 7.1718 36.0972 7.1718 Q35.1129 7.1718 34.6597 7.8125 Q34.2222 8.4531 34.2222 9.5937 ZM43.7479 6.2812 Q43.9354 6.2812 44.1385 6.2968 Q44.3573 6.3125 44.5135 6.3437 L44.3729 7.3125 Q44.2167 7.2812 44.0292 7.2656 Q43.8417 7.2343 43.6854 7.2343 Q43.1854 7.2343 42.7479 7.5156 Q42.326 7.7812 42.0604 8.2656 Q41.8104 8.75 41.8104 9.3906 L41.8104 12.8281 L40.7479 12.8281 L40.7479 6.3906 L41.6229 6.3906 L41.7323 7.5781 L41.7792 7.5781 Q42.0917 7.0468 42.576 6.6718 Q43.076 6.2812 43.7479 6.2812 ZM52.7665 6.2812 Q53.8602 6.2812 54.3915 6.8437 Q54.9383 7.3906 54.9383 8.6406 L54.9383 12.8281 L53.8915 12.8281 L53.8915 8.6875 Q53.8915 7.1718 52.579 7.1718 Q51.6415 7.1718 51.2352 7.7187 Q50.8446 8.25 50.8446 9.2812 L50.8446 12.8281 L49.7977 12.8281 L49.7977 8.6875 Q49.7977 7.1718 48.4852 7.1718 Q47.5008 7.1718 47.1258 7.7656 Q46.7665 8.3593 46.7665 9.4843 L46.7665 12.8281 L45.704 12.8281 L45.704 6.3906 L46.5633 6.3906 L46.7196 7.2656 L46.7821 7.2656 Q47.079 6.7656 47.579 6.5312 Q48.0946 6.2812 48.6727 6.2812 Q50.1883 6.2812 50.6415 7.3593 L50.704 7.3593 Q51.0321 6.7968 51.579 6.5468 Q52.1415 6.2812 52.7665 6.2812 ZM60.7522 5.0937 Q59.3615 5.0937 58.5647 6.0156 Q57.7834 6.9375 57.7834 8.5468 Q57.7834 10.1406 58.5178 11.0781 Q59.2522 12 60.7365 12 Q61.299 12 61.799 11.9062 Q62.299 11.8125 62.7834 11.6718 L62.7834 12.5937 Q62.299 12.7812 61.7834 12.8593 Q61.2834 12.9531 60.5803 12.9531 Q59.2678 12.9531 58.3928 12.4218 Q57.5178 11.875 57.0803 10.875 Q56.6428 9.875 56.6428 8.5312 Q56.6428 7.2343 57.1115 6.25 Q57.5959 5.25 58.5178 4.7031 Q59.4397 4.1406 60.7522 4.1406 Q62.1115 4.1406 63.1272 4.6406 L62.6897 5.5625 Q62.299 5.375 61.799 5.2343 Q61.3147 5.0937 60.7522 5.0937 ZM70.1019 9.5937 Q70.1019 11.2031 69.2894 12.0781 Q68.4769 12.9531 67.1019 12.9531 Q66.2581 12.9531 65.5862 12.5625 Q64.9144 12.1718 64.5237 11.4218 Q64.1487 10.6718 64.1487 9.5937 Q64.1487 8 64.9456 7.1406 Q65.7581 6.2812 67.1331 6.2812 Q68.0237 6.2812 68.68 6.6718 Q69.3519 7.0625 69.7269 7.7968 Q70.1019 8.5312 70.1019 9.5937 ZM65.2425 9.5937 Q65.2425 10.7343 65.6956 11.4062 Q66.1487 12.0781 67.1331 12.0781 Q68.1019 12.0781 68.555 11.4062 Q69.0081 10.7343 69.0081 9.5937 Q69.0081 8.4531 68.555 7.8125 Q68.1019 7.1718 67.1175 7.1718 Q66.1331 7.1718 65.68 7.8125 Q65.2425 8.4531 65.2425 9.5937 ZM78.8307 6.2812 Q79.9244 6.2812 80.4557 6.8437 Q81.0025 7.3906 81.0025 8.6406 L81.0025 12.8281 L79.9557 12.8281 L79.9557 8.6875 Q79.9557 7.1718 78.6432 7.1718 Q77.7057 7.1718 77.2994 7.7187 Q76.9088 8.25 76.9088 9.2812 L76.9088 12.8281 L75.8619 12.8281 L75.8619 8.6875 Q75.8619 7.1718 74.5494 7.1718 Q73.565 7.1718 73.19 7.7656 Q72.8307 8.3593 72.8307 9.4843 L72.8307 12.8281 L71.7682 12.8281 L71.7682 6.3906 L72.6275 6.3906 L72.7838 7.2656 L72.8463 7.2656 Q73.1432 6.7656 73.6432 6.5312 Q74.1588 6.2812 74.7369 6.2812 Q76.2525 6.2812 76.7057 7.3593 L76.7682 7.3593 Q77.0963 6.7968 77.6432 6.5468 Q78.2057 6.2812 78.8307 6.2812 ZM86.0507 6.2812 Q87.2382 6.2812 87.957 7.1093 Q88.6914 7.9375 88.6914 9.5937 Q88.6914 11.25 87.957 12.1093 Q87.2382 12.9531 86.0351 12.9531 Q85.3007 12.9531 84.8164 12.6718 Q84.332 12.3906 84.0507 12.0156 L83.9726 12.0156 Q84.0039 12.2187 84.0195 12.5312 Q84.0507 12.8437 84.0507 13.0625 L84.0507 15.7031 L82.9882 15.7031 L82.9882 6.3906 L83.8632 6.3906 L84.0039 7.2656 L84.0507 7.2656 Q84.332 6.8593 84.8007 6.5781 Q85.2695 6.2812 86.0507 6.2812 ZM85.8632 7.1718 Q84.8789 7.1718 84.4726 7.7187 Q84.0664 8.2656 84.0507 9.3906 L84.0507 9.5937 Q84.0507 10.7812 84.4414 11.4375 Q84.832 12.0781 85.8789 12.0781 Q86.4726 12.0781 86.8476 11.75 Q87.2226 11.4218 87.4101 10.875 Q87.5976 10.3125 87.5976 9.5937 Q87.5976 8.4843 87.1757 7.8281 Q86.7539 7.1718 85.8632 7.1718 ZM95.962 9.5937 Q95.962 11.2031 95.1495 12.0781 Q94.337 12.9531 92.962 12.9531 Q92.1183 12.9531 91.4464 12.5625 Q90.7745 12.1718 90.3839 11.4218 Q90.0089 10.6718 90.0089 9.5937 Q90.0089 8 90.8058 7.1406 Q91.6183 6.2812 92.9933 6.2812 Q93.8839 6.2812 94.5402 6.6718 Q95.212 7.0625 95.587 7.7968 Q95.962 8.5312 95.962 9.5937 ZM91.1027 9.5937 Q91.1027 10.7343 91.5558 11.4062 Q92.0089 12.0781 92.9933 12.0781 Q93.962 12.0781 94.4152 11.4062 Q94.8683 10.7343 94.8683 9.5937 Q94.8683 8.4531 94.4152 7.8125 Q93.962 7.1718 92.9777 7.1718 Q91.9933 7.1718 91.5402 7.8125 Q91.1027 8.4531 91.1027 9.5937 ZM100.7221 6.2812 Q101.8783 6.2812 102.4565 6.8437 Q103.0502 7.3906 103.0502 8.6406 L103.0502 12.8281 L102.019 12.8281 L102.019 8.7187 Q102.019 7.1718 100.5658 7.1718 Q99.5033 7.1718 99.0971 7.7656 Q98.6908 8.3593 98.6908 9.4843 L98.6908 12.8281 L97.6283 12.8281 L97.6283 6.3906 L98.4877 6.3906 L98.644 7.2656 L98.7065 7.2656 Q99.019 6.7656 99.5658 6.5312 Q100.1127 6.2812 100.7221 6.2812 ZM107.5288 6.2812 Q108.3569 6.2812 108.9506 6.6406 Q109.5444 7 109.8569 7.6562 Q110.185 8.2968 110.185 9.1875 L110.185 9.8125 L105.7788 9.8125 Q105.81 10.9062 106.3413 11.4843 Q106.8725 12.0468 107.8256 12.0468 Q108.4506 12.0468 108.9194 11.9375 Q109.3881 11.8125 109.9038 11.6093 L109.9038 12.5312 Q109.4038 12.75 108.9194 12.8437 Q108.4506 12.9531 107.7788 12.9531 Q106.8725 12.9531 106.1694 12.5781 Q105.4663 12.2031 105.0756 11.4687 Q104.685 10.7343 104.685 9.6562 Q104.685 8.6093 105.0444 7.8593 Q105.4038 7.0937 106.0444 6.6875 Q106.685 6.2812 107.5288 6.2812 ZM107.5131 7.1406 Q106.7631 7.1406 106.3256 7.625 Q105.8881 8.1093 105.81 8.9687 L109.0756 8.9687 Q109.0756 8.1562 108.7006 7.6562 Q108.3256 7.1406 107.5131 7.1406 ZM114.9062 6.2812 Q116.0624 6.2812 116.6406 6.8437 Q117.2343 7.3906 117.2343 8.6406 L117.2343 12.8281 L116.2031 12.8281 L116.2031 8.7187 Q116.2031 7.1718 114.7499 7.1718 Q113.6874 7.1718 113.2812 7.7656 Q112.8749 8.3593 112.8749 9.4843 L112.8749 12.8281 L111.8124 12.8281 L111.8124 6.3906 L112.6718 6.3906 L112.8281 7.2656 L112.8906 7.2656 Q113.2031 6.7656 113.7499 6.5312 Q114.2968 6.2812 114.9062 6.2812 ZM121.3847 12.0781 Q121.6191 12.0781 121.8691 12.0468 Q122.1191 12 122.2754 11.9531 L122.2754 12.75 Q122.1191 12.8437 121.8066 12.8906 Q121.4941 12.9531 121.1972 12.9531 Q120.6972 12.9531 120.2597 12.7812 Q119.8379 12.5937 119.5722 12.1718 Q119.3222 11.7343 119.3222 10.9531 L119.3222 7.2187 L118.4004 7.2187 L118.4004 6.7031 L119.3222 6.2812 L119.7441 4.9218 L120.3691 4.9218 L120.3691 6.3906 L122.2285 6.3906 L122.2285 7.2187 L120.3691 7.2187 L120.3691 10.9375 Q120.3691 11.5156 120.6504 11.7968 Q120.9316 12.0781 121.3847 12.0781 Z" style="stroke:none; clip-path:url(#clipPath43);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="243.9609" y="458.5869" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="243.9609" y="458.5869" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><path d="M545.3742 376.3871 A6 6 0 0 0 535.1867 382.7285" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M682.2435 291.1911 A6 6 0 0 0 672.0559 297.5325" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1034.8263" x2="682.2435" y1="71.7217" style="fill:none; clip-path:url(#clipPath2);" y2="291.1911"
+      /><line x1="672.0559" x2="545.3742" y1="297.5325" style="fill:none; clip-path:url(#clipPath2);" y2="376.3871"
+      /><line x1="535.1867" x2="413.7671" y1="382.7285" style="fill:none; clip-path:url(#clipPath2);" y2="458.3076"
+      /><line x1="1034.8263" x2="1029.1743" y1="71.7217" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="82.3073"
+      /><line x1="1034.8263" x2="1022.8329" y1="71.7217" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="72.1197"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="303.6272" y="544.5303" width="161" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="303.6272" y="544.5303" width="161" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="446.6272" y="550.5303" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="446.6272" y="550.5303" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="444.6272" y="558.5303" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="444.6272" y="558.5303" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="444.6272" y="553.5303" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="444.6272" y="553.5303" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(332.4929,562.5303)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath44);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(317.1747,564.8744)"
+    ><path d="M4.9375 12.8281 L2.125 5.3125 L2.0781 5.3125 Q2.1094 5.6875 2.125 6.3281 Q2.1562 6.9531 2.1562 7.625 L2.1562 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.7656 4.2656 L5.4062 11.2812 L5.4531 11.2812 L8.1406 4.2656 L9.7188 4.2656 L9.7188 12.8281 L8.6562 12.8281 L8.6562 7.5625 Q8.6562 6.9375 8.6875 6.3281 Q8.7188 5.7187 8.7344 5.3281 L8.6875 5.3281 L5.8281 12.8281 L4.9375 12.8281 ZM14.3372 6.2812 Q15.5091 6.2812 16.0716 6.7968 Q16.6497 7.3125 16.6497 8.4531 L16.6497 12.8281 L15.8685 12.8281 L15.6653 11.9218 L15.6185 11.9218 Q15.1966 12.4375 14.7278 12.7031 Q14.2747 12.9531 13.4622 12.9531 Q12.5872 12.9531 12.0091 12.5 Q11.431 12.0312 11.431 11.0468 Q11.431 10.0781 12.181 9.5625 Q12.9466 9.0312 14.5247 8.9843 L15.6185 8.9531 L15.6185 8.5625 Q15.6185 7.7656 15.2591 7.4531 Q14.9153 7.1406 14.2747 7.1406 Q13.7747 7.1406 13.3216 7.2968 Q12.8685 7.4375 12.4622 7.625 L12.1497 6.8437 Q12.5716 6.6093 13.1341 6.4531 Q13.7122 6.2812 14.3372 6.2812 ZM14.6497 9.7187 Q13.4466 9.7656 12.9778 10.1093 Q12.5247 10.4375 12.5247 11.0468 Q12.5247 11.5937 12.8528 11.8437 Q13.181 12.0937 13.6966 12.0937 Q14.5247 12.0937 15.056 11.6562 Q15.6028 11.2031 15.6028 10.2656 L15.6028 9.6875 L14.6497 9.7187 ZM19.1786 3.9843 Q19.413 3.9843 19.6005 4.1562 Q19.788 4.3125 19.788 4.6562 Q19.788 4.9843 19.6005 5.1562 Q19.413 5.3281 19.1786 5.3281 Q18.913 5.3281 18.7255 5.1562 Q18.5536 4.9843 18.5536 4.6562 Q18.5536 4.3125 18.7255 4.1562 Q18.913 3.9843 19.1786 3.9843 ZM19.6942 6.3906 L19.6942 12.8281 L18.6317 12.8281 L18.6317 6.3906 L19.6942 6.3906 ZM24.8215 6.2812 Q25.9778 6.2812 26.5559 6.8437 Q27.1496 7.3906 27.1496 8.6406 L27.1496 12.8281 L26.1184 12.8281 L26.1184 8.7187 Q26.1184 7.1718 24.6653 7.1718 Q23.6028 7.1718 23.1965 7.7656 Q22.7903 8.3593 22.7903 9.4843 L22.7903 12.8281 L21.7278 12.8281 L21.7278 6.3906 L22.5871 6.3906 L22.7434 7.2656 L22.8059 7.2656 Q23.1184 6.7656 23.6653 6.5312 Q24.2121 6.2812 24.8215 6.2812 ZM31.5657 4.2656 Q33.2376 4.2656 34.0032 4.9218 Q34.7688 5.5781 34.7688 6.7812 Q34.7688 7.4843 34.4563 8.1093 Q34.1438 8.7187 33.3938 9.1093 Q32.6438 9.4843 31.3626 9.4843 L30.3782 9.4843 L30.3782 12.8281 L29.2844 12.8281 L29.2844 4.2656 L31.5657 4.2656 ZM31.4719 5.1875 L30.3782 5.1875 L30.3782 8.5625 L31.2376 8.5625 Q32.4563 8.5625 33.0501 8.1718 Q33.6594 7.7812 33.6594 6.8281 Q33.6594 6 33.1282 5.5937 Q32.5969 5.1875 31.4719 5.1875 ZM38.8414 6.2812 Q40.0132 6.2812 40.5757 6.7968 Q41.1539 7.3125 41.1539 8.4531 L41.1539 12.8281 L40.3726 12.8281 L40.1695 11.9218 L40.1226 11.9218 Q39.7007 12.4375 39.232 12.7031 Q38.7789 12.9531 37.9664 12.9531 Q37.0914 12.9531 36.5132 12.5 Q35.9351 12.0312 35.9351 11.0468 Q35.9351 10.0781 36.6851 9.5625 Q37.4507 9.0312 39.0289 8.9843 L40.1226 8.9531 L40.1226 8.5625 Q40.1226 7.7656 39.7632 7.4531 Q39.4195 7.1406 38.7789 7.1406 Q38.2789 7.1406 37.8257 7.2968 Q37.3726 7.4375 36.9664 7.625 L36.6539 6.8437 Q37.0757 6.6093 37.6382 6.4531 Q38.2164 6.2812 38.8414 6.2812 ZM39.1539 9.7187 Q37.9507 9.7656 37.482 10.1093 Q37.0289 10.4375 37.0289 11.0468 Q37.0289 11.5937 37.357 11.8437 Q37.6851 12.0937 38.2007 12.0937 Q39.0289 12.0937 39.5601 11.6562 Q40.107 11.2031 40.107 10.2656 L40.107 9.6875 L39.1539 9.7187 ZM45.4172 6.2812 Q46.0578 6.2812 46.5578 6.5156 Q47.0734 6.75 47.4328 7.25 L47.4953 7.25 L47.6359 6.3906 L48.4797 6.3906 L48.4797 12.9375 Q48.4797 14.3125 47.7765 15 Q47.0734 15.7031 45.6047 15.7031 Q44.1828 15.7031 43.2765 15.2968 L43.2765 14.3281 Q44.2297 14.8281 45.6672 14.8281 Q46.4953 14.8281 46.964 14.3437 Q47.4328 13.8593 47.4328 13.0156 L47.4328 12.7656 Q47.4328 12.625 47.4484 12.3593 Q47.464 12.0781 47.4797 11.9687 L47.4172 11.9687 Q46.7765 12.9531 45.4328 12.9531 Q44.1828 12.9531 43.4797 12.0781 Q42.7765 11.2031 42.7765 9.625 Q42.7765 8.0937 43.4797 7.1875 Q44.1828 6.2812 45.4172 6.2812 ZM45.5578 7.1718 Q44.7609 7.1718 44.3078 7.8125 Q43.8703 8.4531 43.8703 9.6406 Q43.8703 10.8281 44.3078 11.4531 Q44.7453 12.0781 45.589 12.0781 Q46.5578 12.0781 46.9953 11.5625 Q47.4484 11.0468 47.4484 9.875 L47.4484 9.625 Q47.4484 8.2968 46.9953 7.7343 Q46.5422 7.1718 45.5578 7.1718 ZM53.0003 6.2812 Q53.8285 6.2812 54.4222 6.6406 Q55.016 7 55.3285 7.6562 Q55.6566 8.2968 55.6566 9.1875 L55.6566 9.8125 L51.2503 9.8125 Q51.2816 10.9062 51.8128 11.4843 Q52.3441 12.0468 53.2972 12.0468 Q53.9222 12.0468 54.391 11.9375 Q54.8597 11.8125 55.3753 11.6093 L55.3753 12.5312 Q54.8753 12.75 54.391 12.8437 Q53.9222 12.9531 53.2503 12.9531 Q52.3441 12.9531 51.641 12.5781 Q50.9378 12.2031 50.5472 11.4687 Q50.1566 10.7343 50.1566 9.6562 Q50.1566 8.6093 50.516 7.8593 Q50.8753 7.0937 51.516 6.6875 Q52.1566 6.2812 53.0003 6.2812 ZM52.9847 7.1406 Q52.2347 7.1406 51.7972 7.625 Q51.3597 8.1093 51.2816 8.9687 L54.5472 8.9687 Q54.5472 8.1562 54.1722 7.6562 Q53.7972 7.1406 52.9847 7.1406 ZM61.1121 5.0937 Q59.7215 5.0937 58.9246 6.0156 Q58.1434 6.9375 58.1434 8.5468 Q58.1434 10.1406 58.8778 11.0781 Q59.6121 12 61.0965 12 Q61.659 12 62.159 11.9062 Q62.659 11.8125 63.1434 11.6718 L63.1434 12.5937 Q62.659 12.7812 62.1434 12.8593 Q61.6434 12.9531 60.9403 12.9531 Q59.6278 12.9531 58.7528 12.4218 Q57.8778 11.875 57.4403 10.875 Q57.0028 9.875 57.0028 8.5312 Q57.0028 7.2343 57.4715 6.25 Q57.9559 5.25 58.8778 4.7031 Q59.7996 4.1406 61.1121 4.1406 Q62.4715 4.1406 63.4871 4.6406 L63.0496 5.5625 Q62.659 5.375 62.159 5.2343 Q61.6746 5.0937 61.1121 5.0937 ZM70.4618 9.5937 Q70.4618 11.2031 69.6493 12.0781 Q68.8368 12.9531 67.4618 12.9531 Q66.6181 12.9531 65.9462 12.5625 Q65.2743 12.1718 64.8837 11.4218 Q64.5087 10.6718 64.5087 9.5937 Q64.5087 8 65.3056 7.1406 Q66.1181 6.2812 67.4931 6.2812 Q68.3837 6.2812 69.0399 6.6718 Q69.7118 7.0625 70.0868 7.7968 Q70.4618 8.5312 70.4618 9.5937 ZM65.6024 9.5937 Q65.6024 10.7343 66.0556 11.4062 Q66.5087 12.0781 67.4931 12.0781 Q68.4618 12.0781 68.9149 11.4062 Q69.3681 10.7343 69.3681 9.5937 Q69.3681 8.4531 68.9149 7.8125 Q68.4618 7.1718 67.4774 7.1718 Q66.4931 7.1718 66.0399 7.8125 Q65.6024 8.4531 65.6024 9.5937 ZM79.1906 6.2812 Q80.2844 6.2812 80.8156 6.8437 Q81.3625 7.3906 81.3625 8.6406 L81.3625 12.8281 L80.3156 12.8281 L80.3156 8.6875 Q80.3156 7.1718 79.0031 7.1718 Q78.0656 7.1718 77.6594 7.7187 Q77.2688 8.25 77.2688 9.2812 L77.2688 12.8281 L76.2219 12.8281 L76.2219 8.6875 Q76.2219 7.1718 74.9094 7.1718 Q73.925 7.1718 73.55 7.7656 Q73.1906 8.3593 73.1906 9.4843 L73.1906 12.8281 L72.1281 12.8281 L72.1281 6.3906 L72.9875 6.3906 L73.1438 7.2656 L73.2063 7.2656 Q73.5031 6.7656 74.0031 6.5312 Q74.5188 6.2812 75.0969 6.2812 Q76.6125 6.2812 77.0656 7.3593 L77.1281 7.3593 Q77.4563 6.7968 78.0031 6.5468 Q78.5656 6.2812 79.1906 6.2812 ZM86.4107 6.2812 Q87.5982 6.2812 88.317 7.1093 Q89.0513 7.9375 89.0513 9.5937 Q89.0513 11.25 88.317 12.1093 Q87.5982 12.9531 86.3951 12.9531 Q85.6607 12.9531 85.1763 12.6718 Q84.692 12.3906 84.4107 12.0156 L84.3326 12.0156 Q84.3638 12.2187 84.3795 12.5312 Q84.4107 12.8437 84.4107 13.0625 L84.4107 15.7031 L83.3482 15.7031 L83.3482 6.3906 L84.2232 6.3906 L84.3638 7.2656 L84.4107 7.2656 Q84.692 6.8593 85.1607 6.5781 Q85.6295 6.2812 86.4107 6.2812 ZM86.2232 7.1718 Q85.2388 7.1718 84.8326 7.7187 Q84.4263 8.2656 84.4107 9.3906 L84.4107 9.5937 Q84.4107 10.7812 84.8013 11.4375 Q85.192 12.0781 86.2388 12.0781 Q86.8326 12.0781 87.2076 11.75 Q87.5826 11.4218 87.7701 10.875 Q87.9576 10.3125 87.9576 9.5937 Q87.9576 8.4843 87.5357 7.8281 Q87.1138 7.1718 86.2232 7.1718 ZM96.322 9.5937 Q96.322 11.2031 95.5095 12.0781 Q94.697 12.9531 93.322 12.9531 Q92.4783 12.9531 91.8064 12.5625 Q91.1345 12.1718 90.7439 11.4218 Q90.3689 10.6718 90.3689 9.5937 Q90.3689 8 91.1658 7.1406 Q91.9783 6.2812 93.3533 6.2812 Q94.2439 6.2812 94.9001 6.6718 Q95.572 7.0625 95.947 7.7968 Q96.322 8.5312 96.322 9.5937 ZM91.4626 9.5937 Q91.4626 10.7343 91.9158 11.4062 Q92.3689 12.0781 93.3533 12.0781 Q94.322 12.0781 94.7751 11.4062 Q95.2283 10.7343 95.2283 9.5937 Q95.2283 8.4531 94.7751 7.8125 Q94.322 7.1718 93.3376 7.1718 Q92.3533 7.1718 91.9001 7.8125 Q91.4626 8.4531 91.4626 9.5937 ZM101.0821 6.2812 Q102.2383 6.2812 102.8164 6.8437 Q103.4102 7.3906 103.4102 8.6406 L103.4102 12.8281 L102.3789 12.8281 L102.3789 8.7187 Q102.3789 7.1718 100.9258 7.1718 Q99.8633 7.1718 99.4571 7.7656 Q99.0508 8.3593 99.0508 9.4843 L99.0508 12.8281 L97.9883 12.8281 L97.9883 6.3906 L98.8477 6.3906 L99.0039 7.2656 L99.0664 7.2656 Q99.3789 6.7656 99.9258 6.5312 Q100.4727 6.2812 101.0821 6.2812 ZM107.8887 6.2812 Q108.7169 6.2812 109.3106 6.6406 Q109.9044 7 110.2169 7.6562 Q110.545 8.2968 110.545 9.1875 L110.545 9.8125 L106.1387 9.8125 Q106.17 10.9062 106.7012 11.4843 Q107.2325 12.0468 108.1856 12.0468 Q108.8106 12.0468 109.2794 11.9375 Q109.7481 11.8125 110.2637 11.6093 L110.2637 12.5312 Q109.7637 12.75 109.2794 12.8437 Q108.8106 12.9531 108.1387 12.9531 Q107.2325 12.9531 106.5294 12.5781 Q105.8262 12.2031 105.4356 11.4687 Q105.045 10.7343 105.045 9.6562 Q105.045 8.6093 105.4044 7.8593 Q105.7637 7.0937 106.4044 6.6875 Q107.045 6.2812 107.8887 6.2812 ZM107.8731 7.1406 Q107.1231 7.1406 106.6856 7.625 Q106.2481 8.1093 106.17 8.9687 L109.4356 8.9687 Q109.4356 8.1562 109.0606 7.6562 Q108.6856 7.1406 107.8731 7.1406 ZM115.2662 6.2812 Q116.4224 6.2812 117.0005 6.8437 Q117.5943 7.3906 117.5943 8.6406 L117.5943 12.8281 L116.563 12.8281 L116.563 8.7187 Q116.563 7.1718 115.1099 7.1718 Q114.0474 7.1718 113.6412 7.7656 Q113.2349 8.3593 113.2349 9.4843 L113.2349 12.8281 L112.1724 12.8281 L112.1724 6.3906 L113.0318 6.3906 L113.188 7.2656 L113.2505 7.2656 Q113.563 6.7656 114.1099 6.5312 Q114.6568 6.2812 115.2662 6.2812 ZM121.7447 12.0781 Q121.9791 12.0781 122.2291 12.0468 Q122.4791 12 122.6353 11.9531 L122.6353 12.75 Q122.4791 12.8437 122.1666 12.8906 Q121.8541 12.9531 121.5572 12.9531 Q121.0572 12.9531 120.6197 12.7812 Q120.1978 12.5937 119.9322 12.1718 Q119.6822 11.7343 119.6822 10.9531 L119.6822 7.2187 L118.7603 7.2187 L118.7603 6.7031 L119.6822 6.2812 L120.1041 4.9218 L120.7291 4.9218 L120.7291 6.3906 L122.5885 6.3906 L122.5885 7.2187 L120.7291 7.2187 L120.7291 10.9375 Q120.7291 11.5156 121.0103 11.7968 Q121.2916 12.0781 121.7447 12.0781 Z" style="stroke:none; clip-path:url(#clipPath45);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="243.9609" y="488.2791" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="243.9609" y="488.2791" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><path d="M755.1188 453.4251 A6 6 0 0 0 743.6608 456.9907" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M781.572 445.1931 A6 6 0 0 0 770.114 448.7587" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M915.2936 403.5801 A6 6 0 0 0 903.8356 407.1457" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1259.3065" x2="915.2936" y1="296.5262" style="fill:none; clip-path:url(#clipPath2);" y2="403.5801"
+      /><line x1="903.8356" x2="781.572" y1="407.1457" style="fill:none; clip-path:url(#clipPath2);" y2="445.1931"
+      /><line x1="770.114" x2="755.1188" y1="448.7587" style="fill:none; clip-path:url(#clipPath2);" y2="453.4251"
+      /><line x1="743.6608" x2="462.3559" y1="456.9907" style="fill:none; clip-path:url(#clipPath2);" y2="544.5303"
+      /><line x1="1259.3065" x2="1251.1663" y1="296.5262" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="305.3432"
+      /><line x1="1259.3065" x2="1247.6007" y1="296.5262" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="293.8852"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><circle r="10" style="clip-path:url(#clipPath2); stroke:none;" cx="211.424" cy="457.6058"
+      /><circle style="fill:none; clip-path:url(#clipPath2); stroke:black;" r="10" cx="211.424" cy="457.6058"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(193.424,481.6058)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 Z" style="stroke:none; clip-path:url(#clipPath46);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="221.424" x2="243.9609" y1="452.3405" style="fill:none; clip-path:url(#clipPath2);" y2="440.4742"
+      /><circle style="clip-path:url(#clipPath2); fill:rgb(255,255,204); stroke:none; stroke-width:2;" r="10" cx="211.424" cy="604.38"
+      /><circle style="fill:none; stroke-width:2; clip-path:url(#clipPath2);" r="10" cx="211.424" cy="604.38"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(184.5078,628.38)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath47);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="215.0479" x2="248.4241" y1="594.38" style="fill:none; clip-path:url(#clipPath2);" y2="502.2791"
+      /><circle style="clip-path:url(#clipPath2); fill:rgb(255,255,204); stroke:none; stroke-width:2;" r="10" cx="159.8951" cy="192.6235"
+      /><circle style="fill:none; stroke-width:2; clip-path:url(#clipPath2);" r="10" cx="159.8951" cy="192.6235"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(135.1449,216.6235)"
+    ><path d="M3.75 -8.5625 Q5.4531 -8.5625 6.3281 -8.0781 Q7.2188 -7.6094 7.2188 -6.3906 Q7.2188 -5.6562 6.875 -5.1562 Q6.5312 -4.6562 5.8906 -4.5469 L5.8906 -4.4844 Q6.3281 -4.4062 6.6719 -4.1875 Q7.0156 -3.9688 7.2188 -3.5625 Q7.4219 -3.1562 7.4219 -2.4844 Q7.4219 -1.3125 6.5781 -0.6562 Q5.75 0 4.2812 0 L1.0781 0 L1.0781 -8.5625 L3.75 -8.5625 ZM3.9531 -5.1719 Q4.7344 -5.1719 5.0469 -5.4219 Q5.3594 -5.6719 5.3594 -6.1562 Q5.3594 -6.6406 4.9844 -6.8594 Q4.625 -7.0781 3.8594 -7.0781 L2.8906 -7.0781 L2.8906 -5.1719 L3.9531 -5.1719 ZM2.8906 -3.7344 L2.8906 -1.5 L4.0781 -1.5 Q4.8906 -1.5 5.2188 -1.8125 Q5.5469 -2.1406 5.5469 -2.6562 Q5.5469 -3.1406 5.2188 -3.4375 Q4.8906 -3.7344 4.0156 -3.7344 L2.8906 -3.7344 ZM14.9547 -3.2812 Q14.9547 -1.6562 14.0953 -0.7656 Q13.2359 0.125 11.7672 0.125 Q10.8453 0.125 10.1266 -0.2656 Q9.4234 -0.6719 9.0172 -1.4375 Q8.6109 -2.2031 8.6109 -3.2812 Q8.6109 -4.9219 9.4547 -5.7969 Q10.3141 -6.6719 11.7984 -6.6719 Q12.7203 -6.6719 13.4234 -6.2656 Q14.1422 -5.875 14.5484 -5.125 Q14.9547 -4.375 14.9547 -3.2812 ZM10.4234 -3.2812 Q10.4234 -2.3125 10.7359 -1.8125 Q11.0641 -1.3125 11.7828 -1.3125 Q12.4859 -1.3125 12.7984 -1.8125 Q13.1266 -2.3125 13.1266 -3.2812 Q13.1266 -4.2656 12.7984 -4.75 Q12.4859 -5.2344 11.7672 -5.2344 Q11.0641 -5.2344 10.7359 -4.75 Q10.4234 -4.2656 10.4234 -3.2812 ZM22.3827 -3.2812 Q22.3827 -1.6562 21.5234 -0.7656 Q20.664 0.125 19.1952 0.125 Q18.2734 0.125 17.5546 -0.2656 Q16.8515 -0.6719 16.4452 -1.4375 Q16.039 -2.2031 16.039 -3.2812 Q16.039 -4.9219 16.8827 -5.7969 Q17.7421 -6.6719 19.2265 -6.6719 Q20.1484 -6.6719 20.8515 -6.2656 Q21.5702 -5.875 21.9765 -5.125 Q22.3827 -4.375 22.3827 -3.2812 ZM17.8515 -3.2812 Q17.8515 -2.3125 18.164 -1.8125 Q18.4921 -1.3125 19.2109 -1.3125 Q19.914 -1.3125 20.2265 -1.8125 Q20.5546 -2.3125 20.5546 -3.2812 Q20.5546 -4.2656 20.2265 -4.75 Q19.914 -5.2344 19.1952 -5.2344 Q18.4921 -5.2344 18.164 -4.75 Q17.8515 -4.2656 17.8515 -3.2812 ZM25.6389 -5.0469 Q25.6389 -4.6719 25.6077 -4.2969 Q25.5764 -3.9375 25.5452 -3.5625 L25.5764 -3.5625 Q25.7483 -3.8125 25.9358 -4.0625 Q26.1389 -4.3281 26.3577 -4.5625 L28.1858 -6.5469 L30.2014 -6.5469 L27.6077 -3.7031 L30.3577 0 L28.2952 0 L26.4045 -2.6562 L25.6389 -2.0469 L25.6389 0 L23.8577 0 L23.8577 -9.125 L25.6389 -9.125 L25.6389 -5.0469 ZM32.204 -9.125 Q32.5946 -9.125 32.8758 -8.9375 Q33.1727 -8.75 33.1727 -8.25 Q33.1727 -7.75 32.8758 -7.5625 Q32.5946 -7.375 32.204 -7.375 Q31.7821 -7.375 31.5008 -7.5625 Q31.2196 -7.75 31.2196 -8.25 Q31.2196 -8.75 31.5008 -8.9375 Q31.7821 -9.125 32.204 -9.125 ZM33.079 -6.5469 L33.079 0 L31.2977 0 L31.2977 -6.5469 L33.079 -6.5469 ZM38.6765 -6.6719 Q39.739 -6.6719 40.364 -6.0938 Q41.0046 -5.5312 41.0046 -4.2656 L41.0046 0 L39.2234 0 L39.2234 -3.8281 Q39.2234 -4.5312 38.9577 -4.8906 Q38.7077 -5.25 38.1609 -5.25 Q37.3484 -5.25 37.0359 -4.6875 Q36.739 -4.125 36.739 -3.0781 L36.739 0 L34.9577 0 L34.9577 -6.5469 L36.3171 -6.5469 L36.5671 -5.7188 L36.6609 -5.7188 Q36.9734 -6.2188 37.5202 -6.4375 Q38.0671 -6.6719 38.6765 -6.6719 ZM44.9668 -6.6719 Q46.1699 -6.6719 46.8574 -5.7188 L46.9043 -5.7188 L47.0449 -6.5469 L48.5605 -6.5469 L48.5605 0.0156 Q48.5605 1.4219 47.7324 2.1406 Q46.9043 2.875 45.2949 2.875 Q44.5918 2.875 43.998 2.7969 Q43.4043 2.7188 42.8418 2.5 L42.8418 1.0625 Q44.0449 1.5781 45.3887 1.5781 Q46.7793 1.5781 46.7793 0.0781 L46.7793 -0.0469 Q46.7793 -0.25 46.7949 -0.4688 Q46.8105 -0.6875 46.8262 -0.8594 L46.7793 -0.8594 Q46.4355 -0.3438 45.9668 -0.1094 Q45.498 0.125 44.9199 0.125 Q43.748 0.125 43.0918 -0.7656 Q42.4512 -1.6719 42.4512 -3.2656 Q42.4512 -4.875 43.123 -5.7656 Q43.7949 -6.6719 44.9668 -6.6719 ZM45.5293 -5.2188 Q44.2637 -5.2188 44.2637 -3.2344 Q44.2637 -1.2812 45.5449 -1.2812 Q46.2324 -1.2812 46.5605 -1.6719 Q46.8887 -2.0625 46.8887 -3.0312 L46.8887 -3.25 Q46.8887 -4.3125 46.5605 -4.7656 Q46.248 -5.2188 45.5293 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath48);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="169.8951" x2="256.1067" y1="192.8016" style="fill:none; clip-path:url(#clipPath2);" y2="194.3375"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="256.1067" y="285.3336" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="256.1067" y="285.3336" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><circle style="clip-path:url(#clipPath2); text-rendering:optimizeLegibility; shape-rendering:auto; stroke:none;" r="10" cx="185.6175" cy="1155.8024"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><circle r="10" style="fill:none; clip-path:url(#clipPath2);" cx="185.6175" cy="1155.8024"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(163.1175,1179.8024)"
+    ><path d="M6.125 -2.375 Q6.125 -1.2344 5.2969 -0.5469 Q4.4844 0.125 2.9688 0.125 Q1.625 0.125 0.5469 -0.3906 L0.5469 -2.0938 Q1.1562 -1.8281 1.8125 -1.5938 Q2.4688 -1.375 3.125 -1.375 Q3.7969 -1.375 4.0781 -1.625 Q4.3594 -1.8906 4.3594 -2.2969 Q4.3594 -2.6094 4.125 -2.8438 Q3.9062 -3.0781 3.5312 -3.2656 Q3.1719 -3.4688 2.6875 -3.7031 Q2.3906 -3.8438 2.0312 -4.0312 Q1.6875 -4.2344 1.375 -4.5312 Q1.0625 -4.8281 0.8438 -5.2344 Q0.6406 -5.6562 0.6406 -6.25 Q0.6406 -7.4062 1.4219 -8.0469 Q2.2031 -8.6875 3.5469 -8.6875 Q4.2188 -8.6875 4.8281 -8.5312 Q5.4375 -8.375 6.0938 -8.0938 L5.5156 -6.6719 Q4.9219 -6.9062 4.4531 -7.0312 Q3.9844 -7.1719 3.4844 -7.1719 Q2.9688 -7.1719 2.6875 -6.9375 Q2.4219 -6.7031 2.4219 -6.3125 Q2.4219 -5.8594 2.8281 -5.5938 Q3.2344 -5.3281 4.0469 -4.9375 Q4.7031 -4.625 5.1562 -4.2812 Q5.625 -3.9531 5.875 -3.5 Q6.125 -3.0469 6.125 -2.375 ZM10.2527 -6.6719 Q11.5964 -6.6719 12.3933 -5.8906 Q13.1902 -5.125 13.1902 -3.7031 L13.1902 -2.8281 L8.9714 -2.8281 Q8.987 -2.0781 9.4089 -1.6406 Q9.8464 -1.2188 10.5964 -1.2188 Q11.237 -1.2188 11.7527 -1.3438 Q12.2683 -1.4688 12.8152 -1.7344 L12.8152 -0.3438 Q12.3308 -0.1094 11.7995 0 Q11.2683 0.125 10.5183 0.125 Q9.5339 0.125 8.7683 -0.2344 Q8.0183 -0.6094 7.5808 -1.3438 Q7.1589 -2.0938 7.1589 -3.2344 Q7.1589 -4.375 7.5339 -5.1406 Q7.9245 -5.9062 8.6277 -6.2812 Q9.3308 -6.6719 10.2527 -6.6719 ZM10.2527 -5.4062 Q9.737 -5.4062 9.3933 -5.0625 Q9.0652 -4.7344 9.0027 -4.0156 L11.5027 -4.0156 Q11.5027 -4.625 11.1902 -5.0156 Q10.8933 -5.4062 10.2527 -5.4062 ZM19.2197 -1.9375 Q19.2197 -0.9531 18.5166 -0.4062 Q17.8135 0.125 16.4229 0.125 Q15.7354 0.125 15.2354 0.0312 Q14.751 -0.0625 14.251 -0.2656 L14.251 -1.7344 Q14.7822 -1.5 15.3916 -1.3438 Q16.001 -1.1875 16.4697 -1.1875 Q17.001 -1.1875 17.2197 -1.3438 Q17.4541 -1.5 17.4541 -1.75 Q17.4541 -1.9219 17.3604 -2.0469 Q17.2666 -2.1875 16.9697 -2.3438 Q16.6729 -2.5156 16.0322 -2.7812 Q15.4229 -3.0469 15.0166 -3.2969 Q14.626 -3.5625 14.4385 -3.9219 Q14.251 -4.2969 14.251 -4.8438 Q14.251 -5.7656 14.9541 -6.2188 Q15.6572 -6.6719 16.8291 -6.6719 Q17.4541 -6.6719 18.001 -6.5469 Q18.5479 -6.4375 19.1416 -6.1562 L18.5947 -4.875 Q18.126 -5.0781 17.6885 -5.2188 Q17.251 -5.3594 16.8135 -5.3594 Q16.0166 -5.3594 16.0166 -4.9219 Q16.0166 -4.7656 16.1104 -4.6406 Q16.2197 -4.5156 16.5166 -4.3594 Q16.8135 -4.2188 17.3916 -3.9844 Q17.9541 -3.75 18.3604 -3.5 Q18.7666 -3.2656 18.9854 -2.8906 Q19.2197 -2.5312 19.2197 -1.9375 ZM25.1838 -1.9375 Q25.1838 -0.9531 24.4806 -0.4062 Q23.7775 0.125 22.3869 0.125 Q21.6994 0.125 21.1994 0.0312 Q20.715 -0.0625 20.215 -0.2656 L20.215 -1.7344 Q20.7463 -1.5 21.3556 -1.3438 Q21.965 -1.1875 22.4338 -1.1875 Q22.965 -1.1875 23.1838 -1.3438 Q23.4181 -1.5 23.4181 -1.75 Q23.4181 -1.9219 23.3244 -2.0469 Q23.2306 -2.1875 22.9338 -2.3438 Q22.6369 -2.5156 21.9963 -2.7812 Q21.3869 -3.0469 20.9806 -3.2969 Q20.59 -3.5625 20.4025 -3.9219 Q20.215 -4.2969 20.215 -4.8438 Q20.215 -5.7656 20.9181 -6.2188 Q21.6213 -6.6719 22.7931 -6.6719 Q23.4181 -6.6719 23.965 -6.5469 Q24.5119 -6.4375 25.1056 -6.1562 L24.5588 -4.875 Q24.09 -5.0781 23.6525 -5.2188 Q23.215 -5.3594 22.7775 -5.3594 Q21.9806 -5.3594 21.9806 -4.9219 Q21.9806 -4.7656 22.0744 -4.6406 Q22.1838 -4.5156 22.4806 -4.3594 Q22.7775 -4.2188 23.3556 -3.9844 Q23.9181 -3.75 24.3244 -3.5 Q24.7306 -3.2656 24.9494 -2.8906 Q25.1838 -2.5312 25.1838 -1.9375 ZM27.4759 -9.125 Q27.8665 -9.125 28.1478 -8.9375 Q28.4447 -8.75 28.4447 -8.25 Q28.4447 -7.75 28.1478 -7.5625 Q27.8665 -7.375 27.4759 -7.375 Q27.054 -7.375 26.7728 -7.5625 Q26.4915 -7.75 26.4915 -8.25 Q26.4915 -8.75 26.7728 -8.9375 Q27.054 -9.125 27.4759 -9.125 ZM28.3509 -6.5469 L28.3509 0 L26.5697 0 L26.5697 -6.5469 L28.3509 -6.5469 ZM36.1828 -3.2812 Q36.1828 -1.6562 35.3234 -0.7656 Q34.4641 0.125 32.9953 0.125 Q32.0734 0.125 31.3547 -0.2656 Q30.6516 -0.6719 30.2453 -1.4375 Q29.8391 -2.2031 29.8391 -3.2812 Q29.8391 -4.9219 30.6828 -5.7969 Q31.5422 -6.6719 33.0266 -6.6719 Q33.9484 -6.6719 34.6516 -6.2656 Q35.3703 -5.875 35.7766 -5.125 Q36.1828 -4.375 36.1828 -3.2812 ZM31.6516 -3.2812 Q31.6516 -2.3125 31.9641 -1.8125 Q32.2922 -1.3125 33.0109 -1.3125 Q33.7141 -1.3125 34.0266 -1.8125 Q34.3547 -2.3125 34.3547 -3.2812 Q34.3547 -4.2656 34.0266 -4.75 Q33.7141 -5.2344 32.9953 -5.2344 Q32.2922 -5.2344 31.9641 -4.75 Q31.6516 -4.2656 31.6516 -3.2812 ZM41.3765 -6.6719 Q42.439 -6.6719 43.064 -6.0938 Q43.7046 -5.5312 43.7046 -4.2656 L43.7046 0 L41.9234 0 L41.9234 -3.8281 Q41.9234 -4.5312 41.6577 -4.8906 Q41.4077 -5.25 40.8609 -5.25 Q40.0484 -5.25 39.7359 -4.6875 Q39.439 -4.125 39.439 -3.0781 L39.439 0 L37.6577 0 L37.6577 -6.5469 L39.0171 -6.5469 L39.2671 -5.7188 L39.3609 -5.7188 Q39.6734 -6.2188 40.2202 -6.4375 Q40.7671 -6.6719 41.3765 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath49);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="195.6175" x2="264.6583" y1="1155.8286" style="fill:none; clip-path:url(#clipPath2);" y2="1156.0098"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="264.6583" y="1103.271" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="264.6583" y="1103.271" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><rect x="256.1067" y="124.0433" width="14" style="clip-path:url(#clipPath2); stroke:none;" height="14"
+      /><rect x="256.1067" y="124.0433" width="14" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="14"
+      /><circle style="clip-path:url(#clipPath2); text-rendering:optimizeLegibility; shape-rendering:auto; stroke:none;" r="10" cx="86.3722" cy="922.753"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><circle r="10" style="fill:none; clip-path:url(#clipPath2);" cx="86.3722" cy="922.753"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(69.0921,946.753)"
+    ><path d="M3.5781 -8.5625 Q5.3281 -8.5625 6.1562 -7.9219 Q7 -7.2969 7 -6 Q7 -5.4062 6.7656 -4.9688 Q6.5469 -4.5312 6.1719 -4.2188 Q5.8125 -3.9219 5.4062 -3.7344 L7.9219 0 L5.9062 0 L3.8594 -3.2812 L2.8906 -3.2812 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L3.5781 -8.5625 ZM3.4375 -7.0781 L2.8906 -7.0781 L2.8906 -4.7656 L3.4844 -4.7656 Q4.375 -4.7656 4.7656 -5.0625 Q5.1562 -5.3594 5.1562 -5.9531 Q5.1562 -6.5625 4.7344 -6.8125 Q4.3281 -7.0781 3.4375 -7.0781 ZM14.8107 -3.2812 Q14.8107 -1.6562 13.9513 -0.7656 Q13.0919 0.125 11.6232 0.125 Q10.7013 0.125 9.9826 -0.2656 Q9.2794 -0.6719 8.8732 -1.4375 Q8.4669 -2.2031 8.4669 -3.2812 Q8.4669 -4.9219 9.3107 -5.7969 Q10.1701 -6.6719 11.6544 -6.6719 Q12.5763 -6.6719 13.2794 -6.2656 Q13.9982 -5.875 14.4044 -5.125 Q14.8107 -4.375 14.8107 -3.2812 ZM10.2794 -3.2812 Q10.2794 -2.3125 10.5919 -1.8125 Q10.9201 -1.3125 11.6388 -1.3125 Q12.3419 -1.3125 12.6544 -1.8125 Q12.9826 -2.3125 12.9826 -3.2812 Q12.9826 -4.2656 12.6544 -4.75 Q12.3419 -5.2344 11.6232 -5.2344 Q10.9201 -5.2344 10.5919 -4.75 Q10.2794 -4.2656 10.2794 -3.2812 ZM22.2387 -3.2812 Q22.2387 -1.6562 21.3794 -0.7656 Q20.52 0.125 19.0512 0.125 Q18.1294 0.125 17.4106 -0.2656 Q16.7075 -0.6719 16.3012 -1.4375 Q15.895 -2.2031 15.895 -3.2812 Q15.895 -4.9219 16.7387 -5.7969 Q17.5981 -6.6719 19.0825 -6.6719 Q20.0044 -6.6719 20.7075 -6.2656 Q21.4262 -5.875 21.8325 -5.125 Q22.2387 -4.375 22.2387 -3.2812 ZM17.7075 -3.2812 Q17.7075 -2.3125 18.02 -1.8125 Q18.3481 -1.3125 19.0669 -1.3125 Q19.77 -1.3125 20.0825 -1.8125 Q20.4106 -2.3125 20.4106 -3.2812 Q20.4106 -4.2656 20.0825 -4.75 Q19.77 -5.2344 19.0512 -5.2344 Q18.3481 -5.2344 18.02 -4.75 Q17.7075 -4.2656 17.7075 -3.2812 ZM31.4012 -6.6719 Q32.5262 -6.6719 33.0887 -6.0938 Q33.6668 -5.5312 33.6668 -4.2656 L33.6668 0 L31.8699 0 L31.8699 -3.8281 Q31.8699 -5.25 30.8855 -5.25 Q30.1824 -5.25 29.8699 -4.7344 Q29.573 -4.2344 29.573 -3.2812 L29.573 0 L27.7918 0 L27.7918 -3.8281 Q27.7918 -5.25 26.8074 -5.25 Q26.0574 -5.25 25.7762 -4.6875 Q25.4949 -4.125 25.4949 -3.0781 L25.4949 0 L23.7137 0 L23.7137 -6.5469 L25.073 -6.5469 L25.323 -5.7188 L25.4168 -5.7188 Q25.7137 -6.2188 26.2293 -6.4375 Q26.7605 -6.6719 27.323 -6.6719 Q28.0418 -6.6719 28.5418 -6.4375 Q29.0574 -6.2031 29.323 -5.7188 L29.4793 -5.7188 Q29.7762 -6.2188 30.3074 -6.4375 Q30.8387 -6.6719 31.4012 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath50);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="96.3722" x2="269.399" y1="920.5997" style="fill:none; clip-path:url(#clipPath2);" y2="883.3419"
+      /><path d="M73.784 913.0937 A10 10 0 0 0 73.784 932.4122" style="fill:none; stroke-width:2; clip-path:url(#clipPath2);"
+      /><line x1="66.3722" x2="-89.7568" y1="922.753" style="fill:none; clip-path:url(#clipPath2);" y2="922.753"
+      /><line x1="-89.7568" x2="-89.7568" y1="922.753" style="fill:none; clip-path:url(#clipPath2);" y2="130.4949"
+      /><line x1="-89.7568" x2="256.1067" y1="130.4949" style="fill:none; clip-path:url(#clipPath2);" y2="130.4949"
+      /><circle style="clip-path:url(#clipPath2); fill:rgb(255,255,204); stroke:none; stroke-width:2;" r="10" cx="58.9529" cy="851.7852"
+      /><circle style="fill:none; stroke-width:2; clip-path:url(#clipPath2);" r="10" cx="58.9529" cy="851.7852"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(42.6688,875.7852)"
+    ><path d="M8.0938 0 L6.2812 0 L6.2812 -3.7031 L2.8906 -3.7031 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -5.2031 L6.2812 -5.2031 L6.2812 -8.5625 L8.0938 -8.5625 L8.0938 0 ZM16.0707 -3.2812 Q16.0707 -1.6562 15.2113 -0.7656 Q14.3519 0.125 12.8832 0.125 Q11.9613 0.125 11.2426 -0.2656 Q10.5394 -0.6719 10.1332 -1.4375 Q9.7269 -2.2031 9.7269 -3.2812 Q9.7269 -4.9219 10.5707 -5.7969 Q11.4301 -6.6719 12.9144 -6.6719 Q13.8363 -6.6719 14.5394 -6.2656 Q15.2582 -5.875 15.6644 -5.125 Q16.0707 -4.375 16.0707 -3.2812 ZM11.5394 -3.2812 Q11.5394 -2.3125 11.8519 -1.8125 Q12.1801 -1.3125 12.8988 -1.3125 Q13.6019 -1.3125 13.9144 -1.8125 Q14.2426 -2.3125 14.2426 -3.2812 Q14.2426 -4.2656 13.9144 -4.75 Q13.6019 -5.2344 12.8832 -5.2344 Q12.1801 -5.2344 11.8519 -4.75 Q11.5394 -4.2656 11.5394 -3.2812 ZM20.3112 -1.3125 Q20.6081 -1.3125 20.8737 -1.3594 Q21.155 -1.4219 21.4362 -1.5156 L21.4362 -0.1875 Q21.1394 -0.0625 20.7175 0.0312 Q20.2956 0.125 19.7956 0.125 Q19.2019 0.125 18.7331 -0.0625 Q18.28 -0.2656 17.9987 -0.7344 Q17.7331 -1.2188 17.7331 -2.0469 L17.7331 -5.2031 L16.8894 -5.2031 L16.8894 -5.9688 L17.8737 -6.5625 L18.3894 -7.9375 L19.53 -7.9375 L19.53 -6.5469 L21.3581 -6.5469 L21.3581 -5.2031 L19.53 -5.2031 L19.53 -2.0469 Q19.53 -1.6875 19.7331 -1.5 Q19.9519 -1.3125 20.3112 -1.3125 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1912 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4412 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0037 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1287 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9412 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM31.627 0 L29.8457 0 L29.8457 -9.125 L31.627 -9.125 L31.627 0 Z" style="stroke:none; clip-path:url(#clipPath51);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="68.9529" x2="269.399" y1="850.6081" style="fill:none; clip-path:url(#clipPath2);" y2="827.0134"
+      /><path d="M46.3647 842.126 A10 10 0 0 0 46.3647 861.4445" style="fill:none; stroke-width:2; clip-path:url(#clipPath2);"
+      /><line x1="38.9529" x2="-59.1116" y1="851.7852" style="fill:none; clip-path:url(#clipPath2);" y2="851.7852"
+      /><line x1="-59.1116" x2="-59.1116" y1="851.7852" style="fill:none; clip-path:url(#clipPath2);" y2="132.1078"
+      /><line x1="-59.1116" x2="256.1067" y1="132.1078" style="fill:none; clip-path:url(#clipPath2);" y2="132.1078"
+      /><circle style="clip-path:url(#clipPath2); fill:rgb(255,255,204); stroke:none; stroke-width:2;" r="10" cx="128.0582" cy="542.5813"
+      /><circle style="fill:none; stroke-width:2; clip-path:url(#clipPath2);" r="10" cx="128.0582" cy="542.5813"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317) translate(114.2701,566.5813)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath52);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,189.9351,172.1317)"
+    ><line x1="138.0582" x2="243.9609" y1="536.3167" style="fill:none; clip-path:url(#clipPath2);" y2="469.9722"
+      /><line x1="138.0582" x2="201.424" y1="549.9943" style="fill:none; clip-path:url(#clipPath2);" y2="596.967"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" 138 550 143 562 151 551"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" 138 550 143 562 151 551"
+      /><line x1="137.8688" x2="201.424" y1="532.5813" style="fill:none; clip-path:url(#clipPath2);" y2="467.7989"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" 138 533 150 529 141 520"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" 138 533 150 529 141 520"
+      /><path d="M137.7175 529.9932 A10 10 0 0 0 118.3989 529.9932" style="fill:none; stroke-width:2; clip-path:url(#clipPath2);"
+      /><path d="M128.0582 138.1078 A6.8065 6.8065 0 0 0 128.0582 124.4949" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="128.0582" x2="128.0582" y1="522.5813" style="fill:none; clip-path:url(#clipPath2);" y2="138.1078"
+      /><line x1="128.0582" x2="128.0582" y1="124.4949" style="fill:none; clip-path:url(#clipPath2);" y2="-36.643"
+      /><line x1="128.0582" x2="243.8713" y1="-36.643" style="fill:none; clip-path:url(#clipPath2);" y2="-36.643"
+      /><path d="M128.0582 919.7768 A6 6 0 0 0 128.0582 907.7768" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M128.0582 849.6508 A6 6 0 0 0 128.0582 837.6508" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="128.0582" x2="128.0582" y1="568.9255" style="fill:none; clip-path:url(#clipPath2);" y2="837.6508"
+      /><line x1="128.0582" x2="128.0582" y1="849.6508" style="fill:none; clip-path:url(#clipPath2);" y2="907.7768"
+      /><line x1="128.0582" x2="128.0582" y1="919.7768" style="fill:none; clip-path:url(#clipPath2);" y2="1110.271"
+      /><line x1="128.0582" x2="264.6583" y1="1110.271" style="fill:none; clip-path:url(#clipPath2);" y2="1110.271"
+      /><line x1="128.0582" x2="128.0582" y1="522.5813" style="fill:none; clip-path:url(#clipPath2);" y2="292.3336"
+      /><line x1="128.0582" x2="256.1067" y1="292.3336" style="fill:none; clip-path:url(#clipPath2);" y2="292.3336"
+    /></g
+  ></g
+></svg
+>
diff --git a/diagramas/Class Diagram0.svg b/diagramas/Class Diagram0.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a703148c314b5be85394a9e80db9aa23aa6817d5
--- /dev/null
+++ b/diagramas/Class Diagram0.svg	
@@ -0,0 +1,1059 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
+          'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
+<svg xmlns:xlink="http://www.w3.org/1999/xlink" style="fill-opacity:1; color-rendering:auto; color-interpolation:auto; text-rendering:auto; stroke:black; stroke-linecap:square; stroke-miterlimit:10; shape-rendering:auto; stroke-opacity:1; fill:black; stroke-dasharray:none; font-weight:normal; stroke-width:1; font-family:'Dialog'; font-style:normal; stroke-linejoin:miter; font-size:12px; stroke-dashoffset:0; image-rendering:auto;" width="2598" height="1453" xmlns="http://www.w3.org/2000/svg"
+><!--Generated by the Batik Graphics2D SVG Generator--><defs id="genericDefs"
+  /><g
+  ><defs id="defs1"
+    ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath1"
+      ><path d="M0 0 L2598 0 L2598 1453 L0 1453 L0 0 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2"
+      ><path d="M-786.4453 -941.4882 L1162.0548 -941.4882 L1162.0548 148.2619 L-786.4453 148.2619 L-786.4453 -941.4882 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath3"
+      ><path d="M-1125.8013 -44 L822.6987 -44 L822.6987 1045.75 L-1125.8013 1045.75 L-1125.8013 -44 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath4"
+      ><path d="M-468.819 -548.5803 L1479.6809 -548.5803 L1479.6809 541.1697 L-468.819 541.1697 L-468.819 -548.5803 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath5"
+      ><path d="M-497.8896 -564.9244 L1450.6105 -564.9244 L1450.6105 524.8256 L-497.8896 524.8256 L-497.8896 -564.9244 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath6"
+      ><path d="M-1100.3762 -741.938 L848.1238 -741.938 L848.1238 347.812 L-1100.3762 347.812 L-1100.3762 -741.938 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath7"
+      ><path d="M-1096.3762 -774.6072 L852.1238 -774.6072 L852.1238 315.1428 L-1096.3762 315.1428 L-1096.3762 -774.6072 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath8"
+      ><path d="M-1273.2576 -817.6795 L675.2424 -817.6795 L675.2424 272.0705 L-1273.2576 272.0705 L-1273.2576 -817.6795 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath9"
+      ><path d="M-1385.1442 -862.2048 L563.3559 -862.2048 L563.3559 227.5452 L-1385.1442 227.5452 L-1385.1442 -862.2048 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath10"
+      ><path d="M-1387.9882 -878.5489 L560.5118 -878.5489 L560.5118 211.2011 L-1387.9882 211.2011 L-1387.9882 -878.5489 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath11"
+      ><path d="M-1549.3623 -817.3548 L399.1377 -817.3548 L399.1377 272.3952 L-1549.3623 272.3952 L-1549.3623 -817.3548 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath12"
+      ><path d="M-703.9354 -799.8501 L1244.5646 -799.8501 L1244.5646 289.8999 L-703.9354 289.8999 L-703.9354 -799.8501 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath13"
+      ><path d="M-1535.1853 -903.2958 L413.3147 -903.2958 L413.3147 186.4542 L-1535.1853 186.4542 L-1535.1853 -903.2958 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath14"
+      ><path d="M-818.736 -830.7019 L1129.764 -830.7019 L1129.764 259.0481 L-818.736 259.0481 L-818.736 -830.7019 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath15"
+      ><path d="M-811.6616 -847.046 L1136.8384 -847.046 L1136.8384 242.704 L-811.6616 242.704 L-811.6616 -847.046 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath16"
+      ><path d="M-30 -903.0402 L1918.5 -903.0402 L1918.5 186.7098 L-30 186.7098 L-30 -903.0402 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath17"
+      ><path d="M-91.4912 -933.4617 L1857.0088 -933.4617 L1857.0088 156.2882 L-91.4912 156.2882 L-91.4912 -933.4617 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath18"
+      ><path d="M-174.6879 -916.1176 L1773.8121 -916.1176 L1773.8121 173.6324 L-174.6879 173.6324 L-174.6879 -916.1176 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath19"
+      ><path d="M-161.6798 -916.1176 L1786.8202 -916.1176 L1786.8202 173.6324 L-161.6798 173.6324 L-161.6798 -916.1176 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath20"
+      ><path d="M-1551.8027 -110.0492 L396.6973 -110.0492 L396.6973 979.7007 L-1551.8027 979.7007 L-1551.8027 -110.0492 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath21"
+      ><path d="M-1533.1384 -246.1976 L415.3615 -246.1976 L415.3615 843.5524 L-1533.1384 843.5524 L-1533.1384 -246.1976 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath22"
+      ><path d="M-1048.4956 -110.9103 L900.0043 -110.9103 L900.0043 978.8397 L-1048.4956 978.8397 L-1048.4956 -110.9103 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath23"
+      ><path d="M-1026.881 -179.1715 L921.619 -179.1715 L921.619 910.5785 L-1026.881 910.5785 L-1026.881 -179.1715 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath24"
+      ><path d="M-1020.0349 -195.5156 L928.4651 -195.5156 L928.4651 894.2344 L-1020.0349 894.2344 L-1020.0349 -195.5156 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath25"
+      ><path d="M-1749.0015 -348.1593 L199.4985 -348.1593 L199.4985 741.5907 L-1749.0015 741.5907 L-1749.0015 -348.1593 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath26"
+      ><path d="M-1722.7612 -478.7777 L225.7388 -478.7777 L225.7388 610.9723 L-1722.7612 610.9723 L-1722.7612 -478.7777 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath27"
+      ><path d="M-1721.8672 -462.4336 L226.6328 -462.4336 L226.6328 627.3164 L-1721.8672 627.3164 L-1721.8672 -462.4336 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath28"
+      ><path d="M-1691.975 -495.1219 L256.5251 -495.1219 L256.5251 594.6282 L-1691.975 594.6282 L-1691.975 -495.1219 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath29"
+      ><path d="M-542.9374 -163.973 L1405.5626 -163.973 L1405.5626 925.777 L-542.9374 925.777 L-542.9374 -163.973 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath30"
+      ><path d="M-448.5105 -203.5957 L1499.9895 -203.5957 L1499.9895 886.1544 L-448.5105 886.1544 L-448.5105 -203.5957 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath31"
+      ><path d="M-672.5332 -220.979 L1275.9668 -220.979 L1275.9668 868.771 L-672.5332 868.771 L-672.5332 -220.979 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath32"
+      ><path d="M-439.7325 -252.9774 L1508.7676 -252.9774 L1508.7676 836.7726 L-439.7325 836.7726 L-439.7325 -252.9774 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath33"
+      ><path d="M-408.0042 -269.3215 L1540.4957 -269.3215 L1540.4957 820.4285 L-408.0042 820.4285 L-408.0042 -269.3215 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath34"
+      ><path d="M-1115.8976 -332.9806 L832.6024 -332.9806 L832.6024 756.7694 L-1115.8976 756.7694 L-1115.8976 -332.9806 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath35"
+      ><path d="M-662.1428 -261.1976 L1286.3572 -261.1976 L1286.3572 828.5524 L-662.1428 828.5524 L-662.1428 -261.1976 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath36"
+      ><path d="M-883.23 -419.6611 L1065.2699 -419.6611 L1065.2699 670.0889 L-883.23 670.0889 L-883.23 -419.6611 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath37"
+      ><path d="M-881.9918 -436.0052 L1066.5082 -436.0052 L1066.5082 653.7448 L-881.9918 653.7448 L-881.9918 -436.0052 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath38"
+      ><path d="M-416.2903 -316.9419 L1532.2097 -316.9419 L1532.2097 772.8081 L-416.2903 772.8081 L-416.2903 -316.9419 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath39"
+      ><path d="M-408.0247 -333.286 L1540.4752 -333.286 L1540.4752 756.464 L-408.0247 756.464 L-408.0247 -333.286 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath40"
+      ><path d="M-1533.5938 -850.0738 L414.9062 -850.0738 L414.9062 239.6762 L-1533.5938 239.6762 L-1533.5938 -850.0738 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath41"
+      ><path d="M-876.4274 -179.1715 L1072.0726 -179.1715 L1072.0726 910.5785 L-876.4274 910.5785 L-876.4274 -179.1715 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath42"
+      ><path d="M-873.3674 -195.5156 L1075.1326 -195.5156 L1075.1326 894.2344 L-873.3674 894.2344 L-873.3674 -195.5156 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath43"
+      ><path d="M-1190.4677 -179.1715 L758.0323 -179.1715 L758.0323 910.5785 L-1190.4677 910.5785 L-1190.4677 -179.1715 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath44"
+      ><path d="M-1174.2795 -195.5156 L774.2205 -195.5156 L774.2205 894.2344 L-1174.2795 894.2344 L-1174.2795 -195.5156 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath45"
+      ><path d="M-1261.5676 -861.9401 L686.9324 -861.9401 L686.9324 227.8098 L-1261.5676 227.8098 L-1261.5676 -861.9401 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath46"
+      ><path d="M-1273.3279 -878.2842 L675.1722 -878.2842 L675.1722 211.4657 L-1273.3279 211.4657 L-1273.3279 -878.2842 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath47"
+      ><path d="M-1149.1714 -862.3791 L799.3286 -862.3791 L799.3286 227.3709 L-1149.1714 227.3709 L-1149.1714 -862.3791 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath48"
+      ><path d="M-1165.1436 -878.7232 L783.3565 -878.7232 L783.3565 211.0268 L-1165.1436 211.0268 L-1165.1436 -878.7232 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath49"
+      ><path d="M-818.736 -920.7263 L1129.764 -920.7263 L1129.764 169.0238 L-818.736 169.0238 L-818.736 -920.7263 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath50"
+      ><path d="M-807.736 -937.0704 L1140.764 -937.0704 L1140.764 152.6797 L-807.736 152.6797 L-807.736 -937.0704 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath51"
+      ><path d="M-1033.6128 -419.4774 L914.8871 -419.4774 L914.8871 670.2726 L-1033.6128 670.2726 L-1033.6128 -419.4774 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath52"
+      ><path d="M-1028.1128 -435.8216 L920.3871 -435.8216 L920.3871 653.9285 L-1028.1128 653.9285 L-1028.1128 -435.8216 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath53"
+      ><path d="M-1716.1492 -402.59 L232.3509 -402.59 L232.3509 687.16 L-1716.1492 687.16 L-1716.1492 -402.59 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath54"
+      ><path d="M-1723.5015 -418.9341 L224.9985 -418.9341 L224.9985 670.8159 L-1723.5015 670.8159 L-1723.5015 -418.9341 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath55"
+      ><path d="M-1526.7844 -141.3519 L421.7155 -141.3519 L421.7155 948.3981 L-1526.7844 948.3981 L-1526.7844 -141.3519 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath56"
+      ><path d="M-1535.2505 -198.0475 L413.2495 -198.0475 L413.2495 891.7025 L-1535.2505 891.7025 L-1535.2505 -198.0475 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath57"
+      ><path d="M-818.736 -997.0358 L1129.764 -997.0358 L1129.764 92.7141 L-818.736 92.7141 L-818.736 -997.0358 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath58"
+      ><path d="M-798.5336 -1013.3799 L1149.9664 -1013.3799 L1149.9664 76.37 L-798.5336 76.37 L-798.5336 -1013.3799 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath59"
+      ><path d="M-1741.0015 -606.7285 L207.4985 -606.7285 L207.4985 483.0216 L-1741.0015 483.0216 L-1741.0015 -606.7285 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath60"
+      ><path d="M-1721.8672 -590.3843 L226.6328 -590.3843 L226.6328 499.3657 L-1721.8672 499.3657 L-1721.8672 -590.3843 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath61"
+      ><path d="M-1697.099 -623.0726 L251.401 -623.0726 L251.401 466.6775 L-1697.099 466.6775 L-1697.099 -623.0726 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath62"
+      ><path d="M-1716.1492 -535.1034 L232.3509 -535.1034 L232.3509 554.6466 L-1716.1492 554.6466 L-1716.1492 -535.1034 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath63"
+      ><path d="M-1706.5015 -551.4475 L241.9985 -551.4475 L241.9985 538.3025 L-1706.5015 538.3025 L-1706.5015 -551.4475 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath64"
+      ><path d="M-608.942 -920.678 L1339.558 -920.678 L1339.558 169.072 L-608.942 169.072 L-608.942 -920.678 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath65"
+      ><path d="M-569.942 -937.0221 L1378.558 -937.0221 L1378.558 152.7279 L-569.942 152.7279 L-569.942 -937.0221 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath66"
+      ><path d="M-1197.0482 -419.5067 L751.4518 -419.5067 L751.4518 670.2433 L-1197.0482 670.2433 L-1197.0482 -419.5067 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath67"
+      ><path d="M-1182.6819 -435.8508 L765.8182 -435.8508 L765.8182 653.8992 L-1182.6819 653.8992 L-1182.6819 -435.8508 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath68"
+      ><path d="M-346.0467 -928.2315 L1602.4532 -928.2315 L1602.4532 161.5185 L-346.0467 161.5185 L-346.0467 -928.2315 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath69"
+      ><path d="M-319.8925 -931.4036 L1628.6074 -931.4036 L1628.6074 158.3465 L-319.8925 158.3465 L-319.8925 -931.4036 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath70"
+      ><path d="M-608.942 -997.0352 L1339.558 -997.0352 L1339.558 92.7148 L-608.942 92.7148 L-608.942 -997.0352 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath71"
+      ><path d="M-560.8214 -1013.3793 L1387.6786 -1013.3793 L1387.6786 76.3707 L-560.8214 76.3707 L-560.8214 -1013.3793 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath72"
+      ><path d="M-341.4864 -963.1659 L1607.0135 -963.1659 L1607.0135 126.5841 L-341.4864 126.5841 L-341.4864 -963.1659 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath73"
+      ><path d="M-305.8506 -966.338 L1642.6494 -966.338 L1642.6494 123.412 L-305.8506 123.412 L-305.8506 -966.338 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath74"
+      ><path d="M-608.942 -830.7692 L1339.558 -830.7692 L1339.558 258.9808 L-608.942 258.9808 L-608.942 -830.7692 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath75"
+      ><path d="M-573.9495 -847.1133 L1374.5505 -847.1133 L1374.5505 242.6367 L-573.9495 242.6367 L-573.9495 -847.1133 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath76"
+      ><path d="M-348.0505 -886.0428 L1600.4496 -886.0428 L1600.4496 203.7072 L-348.0505 203.7072 L-348.0505 -886.0428 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath77"
+      ><path d="M-324.4146 -889.2149 L1624.0853 -889.2149 L1624.0853 200.5351 L-324.4146 200.5351 L-324.4146 -889.2149 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath78"
+      ><path d="M-1334.2633 -486.0497 L614.2367 -486.0497 L614.2367 603.7003 L-1334.2633 603.7003 L-1334.2633 -486.0497 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath79"
+      ><path d="M-1328.417 -502.3938 L620.0829 -502.3938 L620.0829 587.3562 L-1328.417 587.3562 L-1328.417 -502.3938 Z"
+      /></clipPath
+    ></defs
+    ><g style="fill:white; stroke:white;"
+    ><rect x="0" y="0" width="2598" style="clip-path:url(#clipPath1); stroke:none;" height="1453"
+    /></g
+    ><g transform="scale(1.3333,1.3333) translate(786.4452,941.4881)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; stroke-width:2; shape-rendering:crispEdges; stroke:rgb(255,255,204);"
+    ><rect x="-441.3309" y="-931.4881" width="637.4905" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-441.3309" y="-931.4881" width="637.4905" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-441.3309" y="-916.4881" width="1593.7262" style="clip-path:url(#clipPath2); stroke:none;" height="1054.7241"
+      /><rect x="-441.3309" y="-916.4881" width="1593.7262" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="1054.7241"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(339.3561,-897.4881)"
+    ><path d="M6.9531 -6.5469 L6.9531 0 L5.5781 0 L5.3438 -0.8438 L5.25 -0.8438 Q4.9375 -0.3438 4.3906 -0.1094 Q3.8438 0.125 3.2344 0.125 Q2.1719 0.125 1.5312 -0.4375 Q0.9062 -1.0156 0.9062 -2.2812 L0.9062 -6.5469 L2.6875 -6.5469 L2.6875 -2.7188 Q2.6875 -2.0312 2.9375 -1.6719 Q3.1875 -1.3125 3.75 -1.3125 Q4.5625 -1.3125 4.8594 -1.8594 Q5.1562 -2.4219 5.1562 -3.4688 L5.1562 -6.5469 L6.9531 -6.5469 ZM13.3997 -1.9375 Q13.3997 -0.9531 12.6965 -0.4062 Q11.9934 0.125 10.6028 0.125 Q9.9153 0.125 9.4153 0.0312 Q8.9309 -0.0625 8.4309 -0.2656 L8.4309 -1.7344 Q8.9622 -1.5 9.5715 -1.3438 Q10.1809 -1.1875 10.6497 -1.1875 Q11.1809 -1.1875 11.3997 -1.3438 Q11.634 -1.5 11.634 -1.75 Q11.634 -1.9219 11.5403 -2.0469 Q11.4465 -2.1875 11.1497 -2.3438 Q10.8528 -2.5156 10.2122 -2.7812 Q9.6028 -3.0469 9.1965 -3.2969 Q8.8059 -3.5625 8.6184 -3.9219 Q8.4309 -4.2969 8.4309 -4.8438 Q8.4309 -5.7656 9.134 -6.2188 Q9.8372 -6.6719 11.009 -6.6719 Q11.634 -6.6719 12.1809 -6.5469 Q12.7278 -6.4375 13.3215 -6.1562 L12.7747 -4.875 Q12.3059 -5.0781 11.8684 -5.2188 Q11.4309 -5.3594 10.9934 -5.3594 Q10.1965 -5.3594 10.1965 -4.9219 Q10.1965 -4.7656 10.2903 -4.6406 Q10.3997 -4.5156 10.6965 -4.3594 Q10.9934 -4.2188 11.5715 -3.9844 Q12.134 -3.75 12.5403 -3.5 Q12.9465 -3.2656 13.1653 -2.8906 Q13.3997 -2.5312 13.3997 -1.9375 ZM17.4887 -6.6719 Q18.8325 -6.6719 19.6293 -5.8906 Q20.4262 -5.125 20.4262 -3.7031 L20.4262 -2.8281 L16.2075 -2.8281 Q16.2231 -2.0781 16.645 -1.6406 Q17.0825 -1.2188 17.8325 -1.2188 Q18.4731 -1.2188 18.9887 -1.3438 Q19.5043 -1.4688 20.0512 -1.7344 L20.0512 -0.3438 Q19.5668 -0.1094 19.0356 0 Q18.5043 0.125 17.7543 0.125 Q16.77 0.125 16.0043 -0.2344 Q15.2543 -0.6094 14.8168 -1.3438 Q14.395 -2.0938 14.395 -3.2344 Q14.395 -4.375 14.77 -5.1406 Q15.1606 -5.9062 15.8637 -6.2812 Q16.5668 -6.6719 17.4887 -6.6719 ZM17.4887 -5.4062 Q16.9731 -5.4062 16.6293 -5.0625 Q16.3012 -4.7344 16.2387 -4.0156 L18.7387 -4.0156 Q18.7387 -4.625 18.4262 -5.0156 Q18.1293 -5.4062 17.4887 -5.4062 ZM25.5339 -6.6719 Q25.6745 -6.6719 25.8464 -6.6562 Q26.0339 -6.6406 26.1433 -6.625 L26.0026 -4.9375 Q25.9245 -4.9688 25.7526 -4.9844 Q25.5964 -5 25.4714 -5 Q25.0183 -5 24.5964 -4.8438 Q24.1745 -4.6875 23.9089 -4.3125 Q23.6589 -3.9531 23.6589 -3.3438 L23.6589 0 L21.8776 0 L21.8776 -6.5469 L23.237 -6.5469 L23.5026 -5.4531 L23.5808 -5.4531 Q23.862 -5.9531 24.362 -6.3125 Q24.8776 -6.6719 25.5339 -6.6719 ZM31.9038 -1.9375 Q31.9038 -0.9531 31.2007 -0.4062 Q30.4976 0.125 29.1069 0.125 Q28.4194 0.125 27.9194 0.0312 Q27.4351 -0.0625 26.9351 -0.2656 L26.9351 -1.7344 Q27.4663 -1.5 28.0757 -1.3438 Q28.6851 -1.1875 29.1538 -1.1875 Q29.6851 -1.1875 29.9038 -1.3438 Q30.1382 -1.5 30.1382 -1.75 Q30.1382 -1.9219 30.0444 -2.0469 Q29.9507 -2.1875 29.6538 -2.3438 Q29.3569 -2.5156 28.7163 -2.7812 Q28.1069 -3.0469 27.7007 -3.2969 Q27.3101 -3.5625 27.1226 -3.9219 Q26.9351 -4.2969 26.9351 -4.8438 Q26.9351 -5.7656 27.6382 -6.2188 Q28.3413 -6.6719 29.5132 -6.6719 Q30.1382 -6.6719 30.6851 -6.5469 Q31.2319 -6.4375 31.8257 -6.1562 L31.2788 -4.875 Q30.8101 -5.0781 30.3726 -5.2188 Q29.9351 -5.3594 29.4976 -5.3594 Q28.7007 -5.3594 28.7007 -4.9219 Q28.7007 -4.7656 28.7944 -4.6406 Q28.9038 -4.5156 29.2007 -4.3594 Q29.4976 -4.2188 30.0757 -3.9844 Q30.6382 -3.75 31.0444 -3.5 Q31.4507 -3.2656 31.6694 -2.8906 Q31.9038 -2.5312 31.9038 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath3);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-327.6262" y="-410.9078" width="174.1411" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-327.6262" y="-410.9078" width="174.1411" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-317.6262,-392.9078)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM19.7593 -2.2969 Q19.7593 -1.1562 18.9312 -0.5156 Q18.1031 0.125 16.6968 0.125 Q15.9781 0.125 15.3531 0.0156 Q14.7437 -0.0938 14.3375 -0.2812 L14.3375 -1.3125 Q14.775 -1.125 15.4156 -0.9688 Q16.0562 -0.8125 16.7437 -0.8125 Q17.6968 -0.8125 18.1812 -1.1875 Q18.6656 -1.5625 18.6656 -2.2031 Q18.6656 -2.6094 18.4781 -2.8906 Q18.3062 -3.1875 17.8687 -3.4375 Q17.4312 -3.6875 16.65 -3.9531 Q15.5718 -4.3594 15.0093 -4.9375 Q14.4468 -5.5156 14.4468 -6.5 Q14.4468 -7.1875 14.7906 -7.6719 Q15.15 -8.1562 15.7593 -8.4219 Q16.3843 -8.6875 17.1812 -8.6875 Q17.8843 -8.6875 18.4781 -8.5469 Q19.0718 -8.4219 19.5406 -8.2031 L19.2125 -7.2812 Q18.775 -7.4688 18.2437 -7.5938 Q17.7281 -7.7344 17.1656 -7.7344 Q16.3531 -7.7344 15.9468 -7.3906 Q15.5406 -7.0625 15.5406 -6.4844 Q15.5406 -6.0625 15.7125 -5.7656 Q15.9 -5.4844 16.3062 -5.25 Q16.7125 -5.0312 17.4156 -4.7656 Q18.1656 -4.4844 18.6812 -4.1719 Q19.2125 -3.8594 19.4781 -3.4062 Q19.7593 -2.9688 19.7593 -2.2969 ZM24.3943 -6.5469 Q25.5818 -6.5469 26.3005 -5.7188 Q27.0349 -4.8906 27.0349 -3.2344 Q27.0349 -1.5781 26.3005 -0.7188 Q25.5818 0.125 24.3786 0.125 Q23.6443 0.125 23.1599 -0.1562 Q22.6755 -0.4375 22.3943 -0.8125 L22.3161 -0.8125 Q22.3474 -0.6094 22.363 -0.2969 Q22.3943 0.0156 22.3943 0.2344 L22.3943 2.875 L21.3318 2.875 L21.3318 -6.4375 L22.2068 -6.4375 L22.3474 -5.5625 L22.3943 -5.5625 Q22.6755 -5.9688 23.1443 -6.25 Q23.613 -6.5469 24.3943 -6.5469 ZM24.2068 -5.6562 Q23.2224 -5.6562 22.8161 -5.1094 Q22.4099 -4.5625 22.3943 -3.4375 L22.3943 -3.2344 Q22.3943 -2.0469 22.7849 -1.3906 Q23.1755 -0.75 24.2224 -0.75 Q24.8161 -0.75 25.1911 -1.0781 Q25.5661 -1.4062 25.7536 -1.9531 Q25.9411 -2.5156 25.9411 -3.2344 Q25.9411 -4.3438 25.5193 -5 Q25.0974 -5.6562 24.2068 -5.6562 ZM31.7118 -6.5469 Q31.8993 -6.5469 32.1024 -6.5312 Q32.3212 -6.5156 32.4774 -6.4844 L32.3368 -5.5156 Q32.1806 -5.5469 31.9931 -5.5625 Q31.8056 -5.5938 31.6493 -5.5938 Q31.1493 -5.5938 30.7118 -5.3125 Q30.2899 -5.0469 30.0243 -4.5625 Q29.7743 -4.0781 29.7743 -3.4375 L29.7743 0 L28.7118 0 L28.7118 -6.4375 L29.5868 -6.4375 L29.6962 -5.25 L29.7431 -5.25 Q30.0556 -5.7812 30.5399 -6.1562 Q31.0399 -6.5469 31.7118 -6.5469 ZM34.2147 -8.8438 Q34.4491 -8.8438 34.6366 -8.6719 Q34.8241 -8.5156 34.8241 -8.1719 Q34.8241 -7.8438 34.6366 -7.6719 Q34.4491 -7.5 34.2147 -7.5 Q33.9491 -7.5 33.7616 -7.6719 Q33.5897 -7.8438 33.5897 -8.1719 Q33.5897 -8.5156 33.7616 -8.6719 Q33.9491 -8.8438 34.2147 -8.8438 ZM34.7303 -6.4375 L34.7303 0 L33.6678 0 L33.6678 -6.4375 L34.7303 -6.4375 ZM39.8576 -6.5469 Q41.0139 -6.5469 41.592 -5.9844 Q42.1857 -5.4375 42.1857 -4.1875 L42.1857 0 L41.1545 0 L41.1545 -4.1094 Q41.1545 -5.6562 39.7014 -5.6562 Q38.6389 -5.6562 38.2326 -5.0625 Q37.8264 -4.4688 37.8264 -3.3438 L37.8264 0 L36.7639 0 L36.7639 -6.4375 L37.6232 -6.4375 L37.7795 -5.5625 L37.842 -5.5625 Q38.1545 -6.0625 38.7014 -6.2969 Q39.2482 -6.5469 39.8576 -6.5469 ZM46.4612 -6.5469 Q47.1018 -6.5469 47.6018 -6.3125 Q48.1174 -6.0781 48.4768 -5.5781 L48.5393 -5.5781 L48.6799 -6.4375 L49.5237 -6.4375 L49.5237 0.1094 Q49.5237 1.4844 48.8205 2.1719 Q48.1174 2.875 46.6487 2.875 Q45.2268 2.875 44.3205 2.4688 L44.3205 1.5 Q45.2737 2 46.7112 2 Q47.5393 2 48.008 1.5156 Q48.4768 1.0312 48.4768 0.1875 L48.4768 -0.0625 Q48.4768 -0.2031 48.4924 -0.4688 Q48.508 -0.75 48.5237 -0.8594 L48.4612 -0.8594 Q47.8205 0.125 46.4768 0.125 Q45.2268 0.125 44.5237 -0.75 Q43.8205 -1.625 43.8205 -3.2031 Q43.8205 -4.7344 44.5237 -5.6406 Q45.2268 -6.5469 46.4612 -6.5469 ZM46.6018 -5.6562 Q45.8049 -5.6562 45.3518 -5.0156 Q44.9143 -4.375 44.9143 -3.1875 Q44.9143 -2 45.3518 -1.375 Q45.7893 -0.75 46.633 -0.75 Q47.6018 -0.75 48.0393 -1.2656 Q48.4924 -1.7812 48.4924 -2.9531 L48.4924 -3.2031 Q48.4924 -4.5312 48.0393 -5.0938 Q47.5862 -5.6562 46.6018 -5.6562 ZM54.1537 -8.5625 Q55.7631 -8.5625 56.5756 -8.0938 Q57.4037 -7.625 57.4037 -6.4375 Q57.4037 -5.6875 56.9818 -5.1875 Q56.5756 -4.6875 55.7787 -4.5469 L55.7787 -4.4844 Q56.31 -4.4062 56.7475 -4.1719 Q57.185 -3.9531 57.435 -3.5312 Q57.7006 -3.1094 57.7006 -2.4375 Q57.7006 -1.2656 56.9037 -0.625 Q56.1068 0 54.7162 0 L51.7006 0 L51.7006 -8.5625 L54.1537 -8.5625 ZM54.3725 -4.9219 Q55.4818 -4.9219 55.8881 -5.2656 Q56.2943 -5.625 56.2943 -6.3281 Q56.2943 -7.0312 55.7943 -7.3281 Q55.2943 -7.6406 54.2006 -7.6406 L52.7943 -7.6406 L52.7943 -4.9219 L54.3725 -4.9219 ZM52.7943 -4.0156 L52.7943 -0.9062 L54.5131 -0.9062 Q55.6537 -0.9062 56.0912 -1.3438 Q56.5443 -1.7969 56.5443 -2.5156 Q56.5443 -3.1875 56.0756 -3.5938 Q55.6225 -4.0156 54.435 -4.0156 L52.7943 -4.0156 ZM64.9538 -3.2344 Q64.9538 -1.625 64.1413 -0.75 Q63.3288 0.125 61.9538 0.125 Q61.11 0.125 60.4381 -0.2656 Q59.7663 -0.6562 59.3756 -1.4062 Q59.0006 -2.1562 59.0006 -3.2344 Q59.0006 -4.8281 59.7975 -5.6875 Q60.61 -6.5469 61.985 -6.5469 Q62.8756 -6.5469 63.5319 -6.1562 Q64.2038 -5.7656 64.5788 -5.0312 Q64.9538 -4.2969 64.9538 -3.2344 ZM60.0944 -3.2344 Q60.0944 -2.0938 60.5475 -1.4219 Q61.0006 -0.75 61.985 -0.75 Q62.9538 -0.75 63.4069 -1.4219 Q63.86 -2.0938 63.86 -3.2344 Q63.86 -4.375 63.4069 -5.0156 Q62.9538 -5.6562 61.9694 -5.6562 Q60.985 -5.6562 60.5319 -5.0156 Q60.0944 -4.375 60.0944 -3.2344 ZM72.2138 -3.2344 Q72.2138 -1.625 71.4013 -0.75 Q70.5888 0.125 69.2138 0.125 Q68.3701 0.125 67.6982 -0.2656 Q67.0263 -0.6562 66.6357 -1.4062 Q66.2607 -2.1562 66.2607 -3.2344 Q66.2607 -4.8281 67.0576 -5.6875 Q67.8701 -6.5469 69.2451 -6.5469 Q70.1357 -6.5469 70.7919 -6.1562 Q71.4638 -5.7656 71.8388 -5.0312 Q72.2138 -4.2969 72.2138 -3.2344 ZM67.3544 -3.2344 Q67.3544 -2.0938 67.8076 -1.4219 Q68.2607 -0.75 69.2451 -0.75 Q70.2138 -0.75 70.6669 -1.4219 Q71.1201 -2.0938 71.1201 -3.2344 Q71.1201 -4.375 70.6669 -5.0156 Q70.2138 -5.6562 69.2294 -5.6562 Q68.2451 -5.6562 67.7919 -5.0156 Q67.3544 -4.375 67.3544 -3.2344 ZM76.0364 -0.75 Q76.2708 -0.75 76.5208 -0.7812 Q76.7708 -0.8281 76.927 -0.875 L76.927 -0.0781 Q76.7708 0.0156 76.4583 0.0625 Q76.1458 0.125 75.8489 0.125 Q75.3489 0.125 74.9114 -0.0469 Q74.4895 -0.2344 74.2239 -0.6562 Q73.9739 -1.0938 73.9739 -1.875 L73.9739 -5.6094 L73.052 -5.6094 L73.052 -6.125 L73.9739 -6.5469 L74.3958 -7.9062 L75.0208 -7.9062 L75.0208 -6.4375 L76.8801 -6.4375 L76.8801 -5.6094 L75.0208 -5.6094 L75.0208 -1.8906 Q75.0208 -1.3125 75.302 -1.0312 Q75.5833 -0.75 76.0364 -0.75 ZM83.7434 0 L82.7122 -2.6562 L79.3059 -2.6562 L78.2903 0 L77.1965 0 L80.5403 -8.6094 L81.509 -8.6094 L84.8528 0 L83.7434 0 ZM81.4153 -6.2031 Q81.384 -6.2969 81.2903 -6.5469 Q81.2122 -6.7969 81.134 -7.0625 Q81.0559 -7.3438 81.009 -7.4844 Q80.9309 -7.1094 80.8215 -6.75 Q80.7122 -6.4062 80.634 -6.2031 L79.6653 -3.6094 L82.384 -3.6094 L81.4153 -6.2031 ZM88.9427 -6.5469 Q90.1302 -6.5469 90.849 -5.7188 Q91.5833 -4.8906 91.5833 -3.2344 Q91.5833 -1.5781 90.849 -0.7188 Q90.1302 0.125 88.9271 0.125 Q88.1927 0.125 87.7083 -0.1562 Q87.224 -0.4375 86.9427 -0.8125 L86.8646 -0.8125 Q86.8958 -0.6094 86.9115 -0.2969 Q86.9427 0.0156 86.9427 0.2344 L86.9427 2.875 L85.8802 2.875 L85.8802 -6.4375 L86.7552 -6.4375 L86.8958 -5.5625 L86.9427 -5.5625 Q87.224 -5.9688 87.6927 -6.25 Q88.1615 -6.5469 88.9427 -6.5469 ZM88.7552 -5.6562 Q87.7708 -5.6562 87.3646 -5.1094 Q86.9583 -4.5625 86.9427 -3.4375 L86.9427 -3.2344 Q86.9427 -2.0469 87.3333 -1.3906 Q87.724 -0.75 88.7708 -0.75 Q89.3646 -0.75 89.7396 -1.0781 Q90.1146 -1.4062 90.3021 -1.9531 Q90.4896 -2.5156 90.4896 -3.2344 Q90.4896 -4.3438 90.0677 -5 Q89.6458 -5.6562 88.7552 -5.6562 ZM96.3228 -6.5469 Q97.5103 -6.5469 98.229 -5.7188 Q98.9634 -4.8906 98.9634 -3.2344 Q98.9634 -1.5781 98.229 -0.7188 Q97.5103 0.125 96.3071 0.125 Q95.5728 0.125 95.0884 -0.1562 Q94.604 -0.4375 94.3228 -0.8125 L94.2446 -0.8125 Q94.2759 -0.6094 94.2915 -0.2969 Q94.3228 0.0156 94.3228 0.2344 L94.3228 2.875 L93.2603 2.875 L93.2603 -6.4375 L94.1353 -6.4375 L94.2759 -5.5625 L94.3228 -5.5625 Q94.604 -5.9688 95.0728 -6.25 Q95.5415 -6.5469 96.3228 -6.5469 ZM96.1353 -5.6562 Q95.1509 -5.6562 94.7446 -5.1094 Q94.3384 -4.5625 94.3228 -3.4375 L94.3228 -3.2344 Q94.3228 -2.0469 94.7134 -1.3906 Q95.104 -0.75 96.1509 -0.75 Q96.7446 -0.75 97.1196 -1.0781 Q97.4946 -1.4062 97.6821 -1.9531 Q97.8696 -2.5156 97.8696 -3.2344 Q97.8696 -4.3438 97.4478 -5 Q97.0259 -5.6562 96.1353 -5.6562 ZM101.7028 0 L100.6403 0 L100.6403 -9.125 L101.7028 -9.125 L101.7028 0 ZM104.2832 -8.8438 Q104.5176 -8.8438 104.7051 -8.6719 Q104.8926 -8.5156 104.8926 -8.1719 Q104.8926 -7.8438 104.7051 -7.6719 Q104.5176 -7.5 104.2832 -7.5 Q104.0176 -7.5 103.8301 -7.6719 Q103.6582 -7.8438 103.6582 -8.1719 Q103.6582 -8.5156 103.8301 -8.6719 Q104.0176 -8.8438 104.2832 -8.8438 ZM104.7988 -6.4375 L104.7988 0 L103.7363 0 L103.7363 -6.4375 L104.7988 -6.4375 ZM109.4105 0.125 Q108.5667 0.125 107.8949 -0.2188 Q107.2386 -0.5781 106.848 -1.3125 Q106.473 -2.0469 106.473 -3.1875 Q106.473 -4.375 106.8636 -5.1094 Q107.2699 -5.8594 107.9417 -6.2031 Q108.6292 -6.5469 109.4886 -6.5469 Q109.973 -6.5469 110.4261 -6.4375 Q110.8949 -6.3438 111.1761 -6.2031 L110.8636 -5.3281 Q110.5667 -5.4375 110.1761 -5.5312 Q109.8011 -5.625 109.4574 -5.625 Q107.5667 -5.625 107.5667 -3.1875 Q107.5667 -2.0312 108.0199 -1.4062 Q108.4886 -0.7969 109.4105 -0.7969 Q109.9261 -0.7969 110.3324 -0.9062 Q110.7386 -1.0156 111.0667 -1.1562 L111.0667 -0.2344 Q110.7542 -0.0625 110.3636 0.0312 Q109.973 0.125 109.4105 0.125 ZM115.0299 -6.5469 Q116.2018 -6.5469 116.7643 -6.0312 Q117.3424 -5.5156 117.3424 -4.375 L117.3424 0 L116.5612 0 L116.358 -0.9062 L116.3112 -0.9062 Q115.8893 -0.3906 115.4205 -0.125 Q114.9674 0.125 114.1549 0.125 Q113.2799 0.125 112.7018 -0.3281 Q112.1237 -0.7969 112.1237 -1.7812 Q112.1237 -2.75 112.8737 -3.2656 Q113.6393 -3.7969 115.2174 -3.8438 L116.3112 -3.875 L116.3112 -4.2656 Q116.3112 -5.0625 115.9518 -5.375 Q115.608 -5.6875 114.9674 -5.6875 Q114.4674 -5.6875 114.0143 -5.5312 Q113.5612 -5.3906 113.1549 -5.2031 L112.8424 -5.9844 Q113.2643 -6.2188 113.8268 -6.375 Q114.4049 -6.5469 115.0299 -6.5469 ZM115.3424 -3.1094 Q114.1393 -3.0625 113.6705 -2.7188 Q113.2174 -2.3906 113.2174 -1.7812 Q113.2174 -1.2344 113.5455 -0.9844 Q113.8737 -0.7344 114.3893 -0.7344 Q115.2174 -0.7344 115.7487 -1.1719 Q116.2955 -1.625 116.2955 -2.5625 L116.2955 -3.1406 L115.3424 -3.1094 ZM121.4807 -0.75 Q121.7151 -0.75 121.9651 -0.7812 Q122.2151 -0.8281 122.3713 -0.875 L122.3713 -0.0781 Q122.2151 0.0156 121.9026 0.0625 Q121.5901 0.125 121.2932 0.125 Q120.7932 0.125 120.3557 -0.0469 Q119.9338 -0.2344 119.6682 -0.6562 Q119.4182 -1.0938 119.4182 -1.875 L119.4182 -5.6094 L118.4963 -5.6094 L118.4963 -6.125 L119.4182 -6.5469 L119.8401 -7.9062 L120.4651 -7.9062 L120.4651 -6.4375 L122.3244 -6.4375 L122.3244 -5.6094 L120.4651 -5.6094 L120.4651 -1.8906 Q120.4651 -1.3125 120.7463 -1.0312 Q121.0276 -0.75 121.4807 -0.75 ZM124.2034 -8.8438 Q124.4377 -8.8438 124.6252 -8.6719 Q124.8127 -8.5156 124.8127 -8.1719 Q124.8127 -7.8438 124.6252 -7.6719 Q124.4377 -7.5 124.2034 -7.5 Q123.9377 -7.5 123.7502 -7.6719 Q123.5784 -7.8438 123.5784 -8.1719 Q123.5784 -8.5156 123.7502 -8.6719 Q123.9377 -8.8438 124.2034 -8.8438 ZM124.719 -6.4375 L124.719 0 L123.6565 0 L123.6565 -6.4375 L124.719 -6.4375 ZM132.3463 -3.2344 Q132.3463 -1.625 131.5338 -0.75 Q130.7213 0.125 129.3463 0.125 Q128.5025 0.125 127.8306 -0.2656 Q127.1588 -0.6562 126.7681 -1.4062 Q126.3931 -2.1562 126.3931 -3.2344 Q126.3931 -4.8281 127.19 -5.6875 Q128.0025 -6.5469 129.3775 -6.5469 Q130.2681 -6.5469 130.9244 -6.1562 Q131.5963 -5.7656 131.9713 -5.0312 Q132.3463 -4.2969 132.3463 -3.2344 ZM127.4869 -3.2344 Q127.4869 -2.0938 127.94 -1.4219 Q128.3931 -0.75 129.3775 -0.75 Q130.3463 -0.75 130.7994 -1.4219 Q131.2525 -2.0938 131.2525 -3.2344 Q131.2525 -4.375 130.7994 -5.0156 Q130.3463 -5.6562 129.3619 -5.6562 Q128.3775 -5.6562 127.9244 -5.0156 Q127.4869 -4.375 127.4869 -3.2344 ZM137.1063 -6.5469 Q138.2626 -6.5469 138.8407 -5.9844 Q139.4344 -5.4375 139.4344 -4.1875 L139.4344 0 L138.4032 0 L138.4032 -4.1094 Q138.4032 -5.6562 136.9501 -5.6562 Q135.8876 -5.6562 135.4813 -5.0625 Q135.0751 -4.4688 135.0751 -3.3438 L135.0751 0 L134.0126 0 L134.0126 -6.4375 L134.8719 -6.4375 L135.0282 -5.5625 L135.0907 -5.5625 Q135.4032 -6.0625 135.9501 -6.2969 Q136.4969 -6.5469 137.1063 -6.5469 ZM141.0067 -2.3281 L145.538 -4.2188 L141.0067 -6.3594 L141.0067 -7.2969 L146.663 -4.4688 L146.663 -3.875 L141.0067 -1.3906 L141.0067 -2.3281 ZM147.8708 -2.3281 L152.402 -4.2188 L147.8708 -6.3594 L147.8708 -7.2969 L153.527 -4.4688 L153.527 -3.875 L147.8708 -1.3906 L147.8708 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath4);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-288.5556,-376.5637)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM33.9043 0 L33.2793 -2.0469 L30.1543 -2.0469 L29.5293 0 L27.5762 0 L30.6075 -8.6094 L32.8262 -8.6094 L35.8575 0 L33.9043 0 ZM32.2168 -5.5625 Q32.1543 -5.7656 32.0606 -6.0781 Q31.9668 -6.3906 31.8731 -6.7031 Q31.7793 -7.0312 31.7168 -7.2656 Q31.6543 -7.0312 31.545 -6.6719 Q31.4512 -6.3281 31.3575 -6 Q31.2793 -5.6875 31.2168 -5.5625 L30.6075 -3.5625 L32.8418 -3.5625 L32.2168 -5.5625 ZM40.4344 -6.6719 Q41.5438 -6.6719 42.2313 -5.8125 Q42.9188 -4.9531 42.9188 -3.2812 Q42.9188 -1.625 42.2 -0.75 Q41.4969 0.125 40.3875 0.125 Q39.6844 0.125 39.2625 -0.125 Q38.8406 -0.3906 38.575 -0.7188 L38.4813 -0.7188 Q38.575 -0.2188 38.575 0.2344 L38.575 2.875 L36.7938 2.875 L36.7938 -6.5469 L38.2469 -6.5469 L38.4969 -5.7031 L38.575 -5.7031 Q38.8406 -6.0938 39.2781 -6.375 Q39.7313 -6.6719 40.4344 -6.6719 ZM39.8719 -5.25 Q39.1688 -5.25 38.8875 -4.8125 Q38.6063 -4.375 38.575 -3.4844 L38.575 -3.2969 Q38.575 -2.3594 38.8563 -1.8438 Q39.1375 -1.3281 39.8875 -1.3281 Q40.4969 -1.3281 40.7938 -1.8438 Q41.0906 -2.3594 41.0906 -3.3125 Q41.0906 -5.25 39.8719 -5.25 ZM48.0304 -6.6719 Q49.1398 -6.6719 49.8273 -5.8125 Q50.5148 -4.9531 50.5148 -3.2812 Q50.5148 -1.625 49.7961 -0.75 Q49.0929 0.125 47.9836 0.125 Q47.2804 0.125 46.8586 -0.125 Q46.4367 -0.3906 46.1711 -0.7188 L46.0773 -0.7188 Q46.1711 -0.2188 46.1711 0.2344 L46.1711 2.875 L44.3898 2.875 L44.3898 -6.5469 L45.8429 -6.5469 L46.0929 -5.7031 L46.1711 -5.7031 Q46.4367 -6.0938 46.8742 -6.375 Q47.3273 -6.6719 48.0304 -6.6719 ZM47.4679 -5.25 Q46.7648 -5.25 46.4836 -4.8125 Q46.2023 -4.375 46.1711 -3.4844 L46.1711 -3.2969 Q46.1711 -2.3594 46.4523 -1.8438 Q46.7336 -1.3281 47.4836 -1.3281 Q48.0929 -1.3281 48.3898 -1.8438 Q48.6867 -2.3594 48.6867 -3.3125 Q48.6867 -5.25 47.4679 -5.25 ZM53.7671 0 L51.9859 0 L51.9859 -9.125 L53.7671 -9.125 L53.7671 0 ZM56.5521 -9.125 Q56.9428 -9.125 57.224 -8.9375 Q57.5209 -8.75 57.5209 -8.25 Q57.5209 -7.75 57.224 -7.5625 Q56.9428 -7.375 56.5521 -7.375 Q56.1303 -7.375 55.849 -7.5625 Q55.5678 -7.75 55.5678 -8.25 Q55.5678 -8.75 55.849 -8.9375 Q56.1303 -9.125 56.5521 -9.125 ZM57.4271 -6.5469 L57.4271 0 L55.6459 0 L55.6459 -6.5469 L57.4271 -6.5469 ZM61.9622 0.125 Q60.509 0.125 59.7122 -0.6875 Q58.9153 -1.5 58.9153 -3.2344 Q58.9153 -4.4375 59.3215 -5.1875 Q59.7278 -5.9531 60.4465 -6.3125 Q61.1809 -6.6719 62.1184 -6.6719 Q62.7903 -6.6719 63.2903 -6.5312 Q63.7903 -6.4062 64.1653 -6.2344 L63.634 -4.8438 Q63.2122 -5.0156 62.8372 -5.125 Q62.4778 -5.2344 62.1184 -5.2344 Q60.7278 -5.2344 60.7278 -3.25 Q60.7278 -2.2656 61.0872 -1.7969 Q61.4622 -1.3281 62.1184 -1.3281 Q62.6809 -1.3281 63.1184 -1.4688 Q63.5559 -1.625 63.9622 -1.8906 L63.9622 -0.375 Q63.5559 -0.1094 63.1028 0 Q62.6497 0.125 61.9622 0.125 ZM68.1615 -6.6875 Q69.474 -6.6875 70.1771 -6.1094 Q70.8802 -5.5469 70.8802 -4.375 L70.8802 0 L69.6302 0 L69.2865 -0.8906 L69.2396 -0.8906 Q68.8177 -0.3594 68.349 -0.1094 Q67.8802 0.125 67.0677 0.125 Q66.1927 0.125 65.6146 -0.3906 Q65.0365 -0.9062 65.0365 -1.9531 Q65.0365 -3 65.7708 -3.5 Q66.5052 -4 67.974 -4.0469 L69.1146 -4.0781 L69.1146 -4.375 Q69.1146 -4.8906 68.8333 -5.125 Q68.5677 -5.3594 68.0833 -5.3594 Q67.6146 -5.3594 67.1458 -5.2188 Q66.6927 -5.0938 66.2396 -4.8906 L65.6458 -6.0938 Q66.1771 -6.375 66.8177 -6.5312 Q67.4583 -6.6875 68.1615 -6.6875 ZM68.4115 -3.0156 Q67.5521 -2.9844 67.2083 -2.6875 Q66.8802 -2.4062 66.8802 -1.9375 Q66.8802 -1.5312 67.1146 -1.3594 Q67.349 -1.1875 67.7396 -1.1875 Q68.3177 -1.1875 68.7083 -1.5312 Q69.1146 -1.875 69.1146 -2.5 L69.1146 -3.0312 L68.4115 -3.0156 ZM75.4876 -1.3125 Q75.7845 -1.3125 76.0501 -1.3594 Q76.3314 -1.4219 76.6126 -1.5156 L76.6126 -0.1875 Q76.3158 -0.0625 75.8939 0.0312 Q75.472 0.125 74.972 0.125 Q74.3783 0.125 73.9095 -0.0625 Q73.4564 -0.2656 73.1751 -0.7344 Q72.9095 -1.2188 72.9095 -2.0469 L72.9095 -5.2031 L72.0658 -5.2031 L72.0658 -5.9688 L73.0501 -6.5625 L73.5658 -7.9375 L74.7064 -7.9375 L74.7064 -6.5469 L76.5345 -6.5469 L76.5345 -5.2031 L74.7064 -5.2031 L74.7064 -2.0469 Q74.7064 -1.6875 74.9095 -1.5 Q75.1283 -1.3125 75.4876 -1.3125 ZM78.8363 -9.125 Q79.2269 -9.125 79.5082 -8.9375 Q79.805 -8.75 79.805 -8.25 Q79.805 -7.75 79.5082 -7.5625 Q79.2269 -7.375 78.8363 -7.375 Q78.4144 -7.375 78.1332 -7.5625 Q77.8519 -7.75 77.8519 -8.25 Q77.8519 -8.75 78.1332 -8.9375 Q78.4144 -9.125 78.8363 -9.125 ZM79.7113 -6.5469 L79.7113 0 L77.93 0 L77.93 -6.5469 L79.7113 -6.5469 ZM87.5432 -3.2812 Q87.5432 -1.6562 86.6838 -0.7656 Q85.8244 0.125 84.3557 0.125 Q83.4338 0.125 82.7151 -0.2656 Q82.0119 -0.6719 81.6057 -1.4375 Q81.1994 -2.2031 81.1994 -3.2812 Q81.1994 -4.9219 82.0432 -5.7969 Q82.9026 -6.6719 84.3869 -6.6719 Q85.3088 -6.6719 86.0119 -6.2656 Q86.7307 -5.875 87.1369 -5.125 Q87.5432 -4.375 87.5432 -3.2812 ZM83.0119 -3.2812 Q83.0119 -2.3125 83.3244 -1.8125 Q83.6526 -1.3125 84.3713 -1.3125 Q85.0744 -1.3125 85.3869 -1.8125 Q85.7151 -2.3125 85.7151 -3.2812 Q85.7151 -4.2656 85.3869 -4.75 Q85.0744 -5.2344 84.3557 -5.2344 Q83.6526 -5.2344 83.3244 -4.75 Q83.0119 -4.2656 83.0119 -3.2812 ZM92.7369 -6.6719 Q93.7994 -6.6719 94.4244 -6.0938 Q95.065 -5.5312 95.065 -4.2656 L95.065 0 L93.2837 0 L93.2837 -3.8281 Q93.2837 -4.5312 93.0181 -4.8906 Q92.7681 -5.25 92.2212 -5.25 Q91.4087 -5.25 91.0962 -4.6875 Q90.7994 -4.125 90.7994 -3.0781 L90.7994 0 L89.0181 0 L89.0181 -6.5469 L90.3775 -6.5469 L90.6275 -5.7188 L90.7212 -5.7188 Q91.0337 -6.2188 91.5806 -6.4375 Q92.1275 -6.6719 92.7369 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath5);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-281.3442" y="-233.5502" width="491.4202" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-281.3442" y="-233.5502" width="491.4202" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-281.3442" y="-218.5502" width="1228.5505" style="clip-path:url(#clipPath2); stroke:none;" height="341.7861"
+      /><rect x="-281.3442" y="-218.5502" width="1228.5505" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="341.7861"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(313.931,-199.5502)"
+    ><path d="M8.625 -6.6719 Q9.75 -6.6719 10.3125 -6.0938 Q10.8906 -5.5312 10.8906 -4.2656 L10.8906 0 L9.0938 0 L9.0938 -3.8281 Q9.0938 -5.25 8.1094 -5.25 Q7.4062 -5.25 7.0938 -4.7344 Q6.7969 -4.2344 6.7969 -3.2812 L6.7969 0 L5.0156 0 L5.0156 -3.8281 Q5.0156 -5.25 4.0312 -5.25 Q3.2812 -5.25 3 -4.6875 Q2.7188 -4.125 2.7188 -3.0781 L2.7188 0 L0.9375 0 L0.9375 -6.5469 L2.2969 -6.5469 L2.5469 -5.7188 L2.6406 -5.7188 Q2.9375 -6.2188 3.4531 -6.4375 Q3.9844 -6.6719 4.5469 -6.6719 Q5.2656 -6.6719 5.7656 -6.4375 Q6.2812 -6.2031 6.5469 -5.7188 L6.7031 -5.7188 Q7 -6.2188 7.5312 -6.4375 Q8.0625 -6.6719 8.625 -6.6719 ZM18.6747 -3.2812 Q18.6747 -1.6562 17.8153 -0.7656 Q16.956 0.125 15.4872 0.125 Q14.5653 0.125 13.8466 -0.2656 Q13.1435 -0.6719 12.7372 -1.4375 Q12.331 -2.2031 12.331 -3.2812 Q12.331 -4.9219 13.1747 -5.7969 Q14.0341 -6.6719 15.5185 -6.6719 Q16.4403 -6.6719 17.1435 -6.2656 Q17.8622 -5.875 18.2685 -5.125 Q18.6747 -4.375 18.6747 -3.2812 ZM14.1435 -3.2812 Q14.1435 -2.3125 14.456 -1.8125 Q14.7841 -1.3125 15.5028 -1.3125 Q16.206 -1.3125 16.5185 -1.8125 Q16.8466 -2.3125 16.8466 -3.2812 Q16.8466 -4.2656 16.5185 -4.75 Q16.206 -5.2344 15.4872 -5.2344 Q14.7841 -5.2344 14.456 -4.75 Q14.1435 -4.2656 14.1435 -3.2812 ZM22.2278 0.125 Q21.134 0.125 20.4465 -0.7344 Q19.759 -1.5938 19.759 -3.2656 Q19.759 -4.9375 20.4465 -5.7969 Q21.1496 -6.6719 22.2746 -6.6719 Q22.9778 -6.6719 23.4309 -6.3906 Q23.8996 -6.125 24.1496 -5.7188 L24.2121 -5.7188 Q24.1809 -5.9062 24.134 -6.2656 Q24.0871 -6.6406 24.0871 -7.0156 L24.0871 -9.125 L25.8684 -9.125 L25.8684 0 L24.509 0 L24.1496 -0.8594 L24.0871 -0.8594 Q23.8215 -0.4375 23.3684 -0.1562 Q22.9309 0.125 22.2278 0.125 ZM22.8528 -1.3125 Q23.5871 -1.3125 23.884 -1.75 Q24.1965 -2.1875 24.1965 -3.0625 L24.1965 -3.25 Q24.1965 -4.2188 23.8996 -4.7188 Q23.6184 -5.2188 22.8215 -5.2188 Q22.2434 -5.2188 21.8996 -4.7031 Q21.5715 -4.2031 21.5715 -3.2344 Q21.5715 -2.2812 21.8996 -1.7969 Q22.2434 -1.3125 22.8528 -1.3125 ZM30.4488 -6.6719 Q31.7926 -6.6719 32.5894 -5.8906 Q33.3863 -5.125 33.3863 -3.7031 L33.3863 -2.8281 L29.1676 -2.8281 Q29.1832 -2.0781 29.6051 -1.6406 Q30.0426 -1.2188 30.7926 -1.2188 Q31.4332 -1.2188 31.9488 -1.3438 Q32.4644 -1.4688 33.0113 -1.7344 L33.0113 -0.3438 Q32.5269 -0.1094 31.9957 0 Q31.4644 0.125 30.7144 0.125 Q29.7301 0.125 28.9644 -0.2344 Q28.2144 -0.6094 27.7769 -1.3438 Q27.3551 -2.0938 27.3551 -3.2344 Q27.3551 -4.375 27.7301 -5.1406 Q28.1207 -5.9062 28.8238 -6.2812 Q29.5269 -6.6719 30.4488 -6.6719 ZM30.4488 -5.4062 Q29.9332 -5.4062 29.5894 -5.0625 Q29.2613 -4.7344 29.1988 -4.0156 L31.6988 -4.0156 Q31.6988 -4.625 31.3863 -5.0156 Q31.0894 -5.4062 30.4488 -5.4062 ZM36.619 0 L34.8378 0 L34.8378 -9.125 L36.619 -9.125 L36.619 0 Z" style="stroke:none; clip-path:url(#clipPath6);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-266.3442" y="-200.8809" width="479.4202" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-266.3442" y="-200.8809" width="479.4202" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-266.3442" y="-185.8809" width="1198.5505" style="clip-path:url(#clipPath2); stroke:none;" height="294.1169"
+      /><rect x="-266.3442" y="-185.8809" width="1198.5505" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="294.1169"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(309.931,-166.8809)"
+    ><path d="M3.0156 0.125 Q1.9219 0.125 1.2344 -0.7344 Q0.5469 -1.5938 0.5469 -3.2656 Q0.5469 -4.9375 1.2344 -5.7969 Q1.9375 -6.6719 3.0625 -6.6719 Q3.7656 -6.6719 4.2188 -6.3906 Q4.6875 -6.125 4.9375 -5.7188 L5 -5.7188 Q4.9688 -5.9062 4.9219 -6.2656 Q4.875 -6.6406 4.875 -7.0156 L4.875 -9.125 L6.6562 -9.125 L6.6562 0 L5.2969 0 L4.9375 -0.8594 L4.875 -0.8594 Q4.6094 -0.4375 4.1562 -0.1562 Q3.7188 0.125 3.0156 0.125 ZM3.6406 -1.3125 Q4.375 -1.3125 4.6719 -1.75 Q4.9844 -2.1875 4.9844 -3.0625 L4.9844 -3.25 Q4.9844 -4.2188 4.6875 -4.7188 Q4.4062 -5.2188 3.6094 -5.2188 Q3.0312 -5.2188 2.6875 -4.7031 Q2.3594 -4.2031 2.3594 -3.2344 Q2.3594 -2.2812 2.6875 -1.7969 Q3.0312 -1.3125 3.6406 -1.3125 ZM14.4867 -3.2812 Q14.4867 -1.6562 13.6273 -0.7656 Q12.7679 0.125 11.2992 0.125 Q10.3773 0.125 9.6586 -0.2656 Q8.9554 -0.6719 8.5492 -1.4375 Q8.1429 -2.2031 8.1429 -3.2812 Q8.1429 -4.9219 8.9867 -5.7969 Q9.8461 -6.6719 11.3304 -6.6719 Q12.2523 -6.6719 12.9554 -6.2656 Q13.6742 -5.875 14.0804 -5.125 Q14.4867 -4.375 14.4867 -3.2812 ZM9.9554 -3.2812 Q9.9554 -2.3125 10.2679 -1.8125 Q10.5961 -1.3125 11.3148 -1.3125 Q12.0179 -1.3125 12.3304 -1.8125 Q12.6586 -2.3125 12.6586 -3.2812 Q12.6586 -4.2656 12.3304 -4.75 Q12.0179 -5.2344 11.2992 -5.2344 Q10.5961 -5.2344 10.2679 -4.75 Q9.9554 -4.2656 9.9554 -3.2812 ZM23.6491 -6.6719 Q24.7741 -6.6719 25.3366 -6.0938 Q25.9147 -5.5312 25.9147 -4.2656 L25.9147 0 L24.1179 0 L24.1179 -3.8281 Q24.1179 -5.25 23.1335 -5.25 Q22.4304 -5.25 22.1179 -4.7344 Q21.821 -4.2344 21.821 -3.2812 L21.821 0 L20.0397 0 L20.0397 -3.8281 Q20.0397 -5.25 19.0554 -5.25 Q18.3054 -5.25 18.0241 -4.6875 Q17.7429 -4.125 17.7429 -3.0781 L17.7429 0 L15.9616 0 L15.9616 -6.5469 L17.321 -6.5469 L17.571 -5.7188 L17.6647 -5.7188 Q17.9616 -6.2188 18.4772 -6.4375 Q19.0085 -6.6719 19.571 -6.6719 Q20.2897 -6.6719 20.7897 -6.4375 Q21.3054 -6.2031 21.571 -5.7188 L21.7272 -5.7188 Q22.0241 -6.2188 22.5554 -6.4375 Q23.0866 -6.6719 23.6491 -6.6719 ZM30.4332 -6.6875 Q31.7457 -6.6875 32.4488 -6.1094 Q33.1519 -5.5469 33.1519 -4.375 L33.1519 0 L31.9019 0 L31.5582 -0.8906 L31.5113 -0.8906 Q31.0894 -0.3594 30.6207 -0.1094 Q30.1519 0.125 29.3394 0.125 Q28.4644 0.125 27.8863 -0.3906 Q27.3082 -0.9062 27.3082 -1.9531 Q27.3082 -3 28.0426 -3.5 Q28.7769 -4 30.2457 -4.0469 L31.3863 -4.0781 L31.3863 -4.375 Q31.3863 -4.8906 31.1051 -5.125 Q30.8394 -5.3594 30.3551 -5.3594 Q29.8863 -5.3594 29.4176 -5.2188 Q28.9644 -5.0938 28.5113 -4.8906 L27.9176 -6.0938 Q28.4488 -6.375 29.0894 -6.5312 Q29.7301 -6.6875 30.4332 -6.6875 ZM30.6832 -3.0156 Q29.8238 -2.9844 29.4801 -2.6875 Q29.1519 -2.4062 29.1519 -1.9375 Q29.1519 -1.5312 29.3863 -1.3594 Q29.6207 -1.1875 30.0113 -1.1875 Q30.5894 -1.1875 30.9801 -1.5312 Q31.3863 -1.875 31.3863 -2.5 L31.3863 -3.0312 L30.6832 -3.0156 ZM35.9 -9.125 Q36.2906 -9.125 36.5719 -8.9375 Q36.8687 -8.75 36.8687 -8.25 Q36.8687 -7.75 36.5719 -7.5625 Q36.2906 -7.375 35.9 -7.375 Q35.4781 -7.375 35.1969 -7.5625 Q34.9156 -7.75 34.9156 -8.25 Q34.9156 -8.75 35.1969 -8.9375 Q35.4781 -9.125 35.9 -9.125 ZM36.775 -6.5469 L36.775 0 L34.9937 0 L34.9937 -6.5469 L36.775 -6.5469 ZM42.3725 -6.6719 Q43.435 -6.6719 44.06 -6.0938 Q44.7006 -5.5312 44.7006 -4.2656 L44.7006 0 L42.9194 0 L42.9194 -3.8281 Q42.9194 -4.5312 42.6538 -4.8906 Q42.4038 -5.25 41.8569 -5.25 Q41.0444 -5.25 40.7319 -4.6875 Q40.435 -4.125 40.435 -3.0781 L40.435 0 L38.6538 0 L38.6538 -6.5469 L40.0131 -6.5469 L40.2631 -5.7188 L40.3569 -5.7188 Q40.6694 -6.2188 41.2163 -6.4375 Q41.7631 -6.6719 42.3725 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="326.4054" y="-157.8087" width="142.7255" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="326.4054" y="-157.8087" width="142.7255" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="326.4054" y="-142.8087" width="356.8139" style="clip-path:url(#clipPath2); stroke:none;" height="136.1077"
+      /><rect x="326.4054" y="-142.8087" width="356.8139" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="136.1077"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(486.8124,-123.8087)"
+    ><path d="M3.6406 -6.6719 Q4.9844 -6.6719 5.7812 -5.8906 Q6.5781 -5.125 6.5781 -3.7031 L6.5781 -2.8281 L2.3594 -2.8281 Q2.375 -2.0781 2.7969 -1.6406 Q3.2344 -1.2188 3.9844 -1.2188 Q4.625 -1.2188 5.1406 -1.3438 Q5.6562 -1.4688 6.2031 -1.7344 L6.2031 -0.3438 Q5.7188 -0.1094 5.1875 0 Q4.6562 0.125 3.9062 0.125 Q2.9219 0.125 2.1562 -0.2344 Q1.4062 -0.6094 0.9688 -1.3438 Q0.5469 -2.0938 0.5469 -3.2344 Q0.5469 -4.375 0.9219 -5.1406 Q1.3125 -5.9062 2.0156 -6.2812 Q2.7188 -6.6719 3.6406 -6.6719 ZM3.6406 -5.4062 Q3.125 -5.4062 2.7812 -5.0625 Q2.4531 -4.7344 2.3906 -4.0156 L4.8906 -4.0156 Q4.8906 -4.625 4.5781 -5.0156 Q4.2812 -5.4062 3.6406 -5.4062 ZM11.7483 -6.6719 Q12.8108 -6.6719 13.4358 -6.0938 Q14.0764 -5.5312 14.0764 -4.2656 L14.0764 0 L12.2952 0 L12.2952 -3.8281 Q12.2952 -4.5312 12.0296 -4.8906 Q11.7796 -5.25 11.2327 -5.25 Q10.4202 -5.25 10.1077 -4.6875 Q9.8108 -4.125 9.8108 -3.0781 L9.8108 0 L8.0296 0 L8.0296 -6.5469 L9.3889 -6.5469 L9.6389 -5.7188 L9.7327 -5.7188 Q10.0452 -6.2188 10.5921 -6.4375 Q11.1389 -6.6719 11.7483 -6.6719 ZM18.6792 -1.3125 Q18.9761 -1.3125 19.2417 -1.3594 Q19.523 -1.4219 19.8042 -1.5156 L19.8042 -0.1875 Q19.5074 -0.0625 19.0855 0.0312 Q18.6636 0.125 18.1636 0.125 Q17.5699 0.125 17.1011 -0.0625 Q16.648 -0.2656 16.3667 -0.7344 Q16.1011 -1.2188 16.1011 -2.0469 L16.1011 -5.2031 L15.2574 -5.2031 L15.2574 -5.9688 L16.2417 -6.5625 L16.7574 -7.9375 L17.898 -7.9375 L17.898 -6.5469 L19.7261 -6.5469 L19.7261 -5.2031 L17.898 -5.2031 L17.898 -2.0469 Q17.898 -1.6875 18.1011 -1.5 Q18.3199 -1.3125 18.6792 -1.3125 ZM22.0279 -9.125 Q22.4185 -9.125 22.6998 -8.9375 Q22.9966 -8.75 22.9966 -8.25 Q22.9966 -7.75 22.6998 -7.5625 Q22.4185 -7.375 22.0279 -7.375 Q21.606 -7.375 21.3248 -7.5625 Q21.0435 -7.75 21.0435 -8.25 Q21.0435 -8.75 21.3248 -8.9375 Q21.606 -9.125 22.0279 -9.125 ZM22.9029 -6.5469 L22.9029 0 L21.1216 0 L21.1216 -6.5469 L22.9029 -6.5469 ZM27.5473 -1.3125 Q27.8442 -1.3125 28.1098 -1.3594 Q28.391 -1.4219 28.6723 -1.5156 L28.6723 -0.1875 Q28.3754 -0.0625 27.9535 0.0312 Q27.5317 0.125 27.0317 0.125 Q26.4379 0.125 25.9692 -0.0625 Q25.516 -0.2656 25.2348 -0.7344 Q24.9692 -1.2188 24.9692 -2.0469 L24.9692 -5.2031 L24.1254 -5.2031 L24.1254 -5.9688 L25.1098 -6.5625 L25.6254 -7.9375 L26.766 -7.9375 L26.766 -6.5469 L28.5942 -6.5469 L28.5942 -5.2031 L26.766 -5.2031 L26.766 -2.0469 Q26.766 -1.6875 26.9692 -1.5 Q27.1879 -1.3125 27.5473 -1.3125 ZM29.0522 -6.5469 L31.0053 -6.5469 L32.2397 -2.875 Q32.3335 -2.6094 32.3803 -2.3281 Q32.4428 -2.0469 32.4585 -1.7344 L32.4897 -1.7344 Q32.5366 -2.0469 32.5991 -2.3281 Q32.6616 -2.6094 32.7553 -2.875 L33.9585 -6.5469 L35.8803 -6.5469 L33.1147 0.8438 Q32.7397 1.8594 32.021 2.3594 Q31.3022 2.875 30.3647 2.875 Q30.0678 2.875 29.8491 2.8438 Q29.6303 2.8125 29.4585 2.7812 L29.4585 1.375 Q29.5991 1.3906 29.771 1.4062 Q29.9585 1.4375 30.1616 1.4375 Q30.7397 1.4375 31.0678 1.0938 Q31.396 0.75 31.5522 0.2812 L31.6616 -0.0469 L29.0522 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath8);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="588.6989" y="-97.2833" width="79.5204" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="588.6989" y="-97.2833" width="79.5204" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(598.6989,-79.2833)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM24.6055 -6.5469 Q25.7618 -6.5469 26.3399 -5.9844 Q26.9336 -5.4375 26.9336 -4.1875 L26.9336 0 L25.9024 0 L25.9024 -4.1094 Q25.9024 -5.6562 24.4493 -5.6562 Q23.3868 -5.6562 22.9805 -5.0625 Q22.5743 -4.4688 22.5743 -3.3438 L22.5743 0 L21.5118 0 L21.5118 -6.4375 L22.3711 -6.4375 L22.5274 -5.5625 L22.5899 -5.5625 Q22.9024 -6.0625 23.4493 -6.2969 Q23.9961 -6.5469 24.6055 -6.5469 ZM31.0841 -0.75 Q31.3184 -0.75 31.5684 -0.7812 Q31.8184 -0.8281 31.9747 -0.875 L31.9747 -0.0781 Q31.8184 0.0156 31.5059 0.0625 Q31.1934 0.125 30.8966 0.125 Q30.3966 0.125 29.9591 -0.0469 Q29.5372 -0.2344 29.2716 -0.6562 Q29.0216 -1.0938 29.0216 -1.875 L29.0216 -5.6094 L28.0997 -5.6094 L28.0997 -6.125 L29.0216 -6.5469 L29.4434 -7.9062 L30.0684 -7.9062 L30.0684 -6.4375 L31.9278 -6.4375 L31.9278 -5.6094 L30.0684 -5.6094 L30.0684 -1.8906 Q30.0684 -1.3125 30.3497 -1.0312 Q30.6309 -0.75 31.0841 -0.75 ZM33.8067 -8.8438 Q34.0411 -8.8438 34.2286 -8.6719 Q34.4161 -8.5156 34.4161 -8.1719 Q34.4161 -7.8438 34.2286 -7.6719 Q34.0411 -7.5 33.8067 -7.5 Q33.5411 -7.5 33.3536 -7.6719 Q33.1817 -7.8438 33.1817 -8.1719 Q33.1817 -8.5156 33.3536 -8.6719 Q33.5411 -8.8438 33.8067 -8.8438 ZM34.3223 -6.4375 L34.3223 0 L33.2598 0 L33.2598 -6.4375 L34.3223 -6.4375 ZM38.5121 -0.75 Q38.7465 -0.75 38.9965 -0.7812 Q39.2465 -0.8281 39.4027 -0.875 L39.4027 -0.0781 Q39.2465 0.0156 38.934 0.0625 Q38.6215 0.125 38.3246 0.125 Q37.8246 0.125 37.3871 -0.0469 Q36.9652 -0.2344 36.6996 -0.6562 Q36.4496 -1.0938 36.4496 -1.875 L36.4496 -5.6094 L35.5277 -5.6094 L35.5277 -6.125 L36.4496 -6.5469 L36.8715 -7.9062 L37.4965 -7.9062 L37.4965 -6.4375 L39.3559 -6.4375 L39.3559 -5.6094 L37.4965 -5.6094 L37.4965 -1.8906 Q37.4965 -1.3125 37.7777 -1.0312 Q38.059 -0.75 38.5121 -0.75 ZM39.6879 -6.4375 L40.8129 -6.4375 L42.2035 -2.7656 Q42.391 -2.2969 42.5316 -1.8594 Q42.6723 -1.4219 42.7504 -1.0156 L42.7973 -1.0156 Q42.8598 -1.3125 43.016 -1.7969 Q43.1723 -2.2969 43.3441 -2.7812 L44.6566 -6.4375 L45.7973 -6.4375 L43.016 0.8906 Q42.6879 1.7969 42.141 2.3281 Q41.6098 2.875 40.6879 2.875 Q40.391 2.875 40.1723 2.8438 Q39.9535 2.8125 39.7973 2.7812 L39.7973 1.9375 Q39.9379 1.9688 40.1254 1.9844 Q40.3129 2.0156 40.516 2.0156 Q41.0629 2.0156 41.4066 1.7031 Q41.7504 1.3906 41.9379 0.875 L42.2816 0.0312 L39.6879 -6.4375 ZM46.3861 -2.3281 L50.9173 -4.2188 L46.3861 -6.3594 L46.3861 -7.2969 L52.0423 -4.4688 L52.0423 -3.875 L46.3861 -1.3906 L46.3861 -2.3281 ZM53.2501 -2.3281 L57.7814 -4.2188 L53.2501 -6.3594 L53.2501 -7.2969 L58.9064 -4.4688 L58.9064 -3.875 L53.2501 -1.3906 L53.2501 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath9);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(601.5429,-62.9392)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath10);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="722.1485" y="-158.1333" width="50.2358" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="722.1485" y="-158.1333" width="50.2358" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="722.1485" y="-143.1333" width="125.5894" style="clip-path:url(#clipPath2); stroke:none;" height="136.1077"
+      /><rect x="722.1485" y="-143.1333" width="125.5894" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="136.1077"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(762.9171,-124.1333)"
+    ><path d="M4.5938 -6.6719 Q4.7344 -6.6719 4.9062 -6.6562 Q5.0938 -6.6406 5.2031 -6.625 L5.0625 -4.9375 Q4.9844 -4.9688 4.8125 -4.9844 Q4.6562 -5 4.5312 -5 Q4.0781 -5 3.6562 -4.8438 Q3.2344 -4.6875 2.9688 -4.3125 Q2.7188 -3.9531 2.7188 -3.3438 L2.7188 0 L0.9375 0 L0.9375 -6.5469 L2.2969 -6.5469 L2.5625 -5.4531 L2.6406 -5.4531 Q2.9219 -5.9531 3.4219 -6.3125 Q3.9375 -6.6719 4.5938 -6.6719 ZM9.0887 -6.6719 Q10.4324 -6.6719 11.2293 -5.8906 Q12.0262 -5.125 12.0262 -3.7031 L12.0262 -2.8281 L7.8074 -2.8281 Q7.823 -2.0781 8.2449 -1.6406 Q8.6824 -1.2188 9.4324 -1.2188 Q10.073 -1.2188 10.5887 -1.3438 Q11.1043 -1.4688 11.6512 -1.7344 L11.6512 -0.3438 Q11.1668 -0.1094 10.6355 0 Q10.1043 0.125 9.3543 0.125 Q8.3699 0.125 7.6043 -0.2344 Q6.8543 -0.6094 6.4168 -1.3438 Q5.9949 -2.0938 5.9949 -3.2344 Q5.9949 -4.375 6.3699 -5.1406 Q6.7605 -5.9062 7.4637 -6.2812 Q8.1668 -6.6719 9.0887 -6.6719 ZM9.0887 -5.4062 Q8.573 -5.4062 8.2293 -5.0625 Q7.9012 -4.7344 7.8387 -4.0156 L10.3387 -4.0156 Q10.3387 -4.625 10.0262 -5.0156 Q9.7293 -5.4062 9.0887 -5.4062 ZM21.1651 -6.6719 Q22.2901 -6.6719 22.8526 -6.0938 Q23.4307 -5.5312 23.4307 -4.2656 L23.4307 0 L21.6339 0 L21.6339 -3.8281 Q21.6339 -5.25 20.6495 -5.25 Q19.9464 -5.25 19.6339 -4.7344 Q19.337 -4.2344 19.337 -3.2812 L19.337 0 L17.5557 0 L17.5557 -3.8281 Q17.5557 -5.25 16.5714 -5.25 Q15.8214 -5.25 15.5401 -4.6875 Q15.2589 -4.125 15.2589 -3.0781 L15.2589 0 L13.4776 0 L13.4776 -6.5469 L14.837 -6.5469 L15.087 -5.7188 L15.1807 -5.7188 Q15.4776 -6.2188 15.9932 -6.4375 Q16.5245 -6.6719 17.087 -6.6719 Q17.8057 -6.6719 18.3057 -6.4375 Q18.8214 -6.2031 19.087 -5.7188 L19.2432 -5.7188 Q19.5401 -6.2188 20.0714 -6.4375 Q20.6026 -6.6719 21.1651 -6.6719 ZM31.2148 -3.2812 Q31.2148 -1.6562 30.3554 -0.7656 Q29.4961 0.125 28.0273 0.125 Q27.1054 0.125 26.3867 -0.2656 Q25.6836 -0.6719 25.2773 -1.4375 Q24.8711 -2.2031 24.8711 -3.2812 Q24.8711 -4.9219 25.7148 -5.7969 Q26.5742 -6.6719 28.0586 -6.6719 Q28.9804 -6.6719 29.6836 -6.2656 Q30.4023 -5.875 30.8086 -5.125 Q31.2148 -4.375 31.2148 -3.2812 ZM26.6836 -3.2812 Q26.6836 -2.3125 26.9961 -1.8125 Q27.3242 -1.3125 28.0429 -1.3125 Q28.7461 -1.3125 29.0586 -1.8125 Q29.3867 -2.3125 29.3867 -3.2812 Q29.3867 -4.2656 29.0586 -4.75 Q28.7461 -5.2344 28.0273 -5.2344 Q27.3242 -5.2344 26.9961 -4.75 Q26.6836 -4.2656 26.6836 -3.2812 ZM35.4554 -1.3125 Q35.7522 -1.3125 36.0179 -1.3594 Q36.2991 -1.4219 36.5804 -1.5156 L36.5804 -0.1875 Q36.2835 -0.0625 35.8616 0.0312 Q35.4397 0.125 34.9397 0.125 Q34.346 0.125 33.8772 -0.0625 Q33.4241 -0.2656 33.1429 -0.7344 Q32.8772 -1.2188 32.8772 -2.0469 L32.8772 -5.2031 L32.0335 -5.2031 L32.0335 -5.9688 L33.0179 -6.5625 L33.5335 -7.9375 L34.6741 -7.9375 L34.6741 -6.5469 L36.5022 -6.5469 L36.5022 -5.2031 L34.6741 -5.2031 L34.6741 -2.0469 Q34.6741 -1.6875 34.8772 -1.5 Q35.096 -1.3125 35.4554 -1.3125 ZM40.6009 -6.6719 Q41.9447 -6.6719 42.7415 -5.8906 Q43.5384 -5.125 43.5384 -3.7031 L43.5384 -2.8281 L39.3197 -2.8281 Q39.3353 -2.0781 39.7572 -1.6406 Q40.1947 -1.2188 40.9447 -1.2188 Q41.5853 -1.2188 42.1009 -1.3438 Q42.6165 -1.4688 43.1634 -1.7344 L43.1634 -0.3438 Q42.679 -0.1094 42.1478 0 Q41.6165 0.125 40.8665 0.125 Q39.8822 0.125 39.1165 -0.2344 Q38.3665 -0.6094 37.929 -1.3438 Q37.5072 -2.0938 37.5072 -3.2344 Q37.5072 -4.375 37.8822 -5.1406 Q38.2728 -5.9062 38.9759 -6.2812 Q39.679 -6.6719 40.6009 -6.6719 ZM40.6009 -5.4062 Q40.0853 -5.4062 39.7415 -5.0625 Q39.4134 -4.7344 39.3509 -4.0156 L41.8509 -4.0156 Q41.8509 -4.625 41.5384 -5.0156 Q41.2415 -5.4062 40.6009 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath11);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-251.3442" y="-175.638" width="162.735" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-251.3442" y="-175.638" width="162.735" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-251.3442" y="-160.638" width="406.8374" style="clip-path:url(#clipPath2); stroke:none;" height="253.874"
+      /><rect x="-251.3442" y="-160.638" width="406.8374" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="253.874"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-82.5098,-141.638)"
+    ><path d="M4.5781 -6.6719 Q5.6875 -6.6719 6.375 -5.8125 Q7.0625 -4.9531 7.0625 -3.2812 Q7.0625 -1.625 6.3438 -0.75 Q5.6406 0.125 4.5312 0.125 Q3.8281 0.125 3.4062 -0.125 Q2.9844 -0.3906 2.7188 -0.7188 L2.625 -0.7188 Q2.7188 -0.2188 2.7188 0.2344 L2.7188 2.875 L0.9375 2.875 L0.9375 -6.5469 L2.3906 -6.5469 L2.6406 -5.7031 L2.7188 -5.7031 Q2.9844 -6.0938 3.4219 -6.375 Q3.875 -6.6719 4.5781 -6.6719 ZM4.0156 -5.25 Q3.3125 -5.25 3.0312 -4.8125 Q2.75 -4.375 2.7188 -3.4844 L2.7188 -3.2969 Q2.7188 -2.3594 3 -1.8438 Q3.2812 -1.3281 4.0312 -1.3281 Q4.6406 -1.3281 4.9375 -1.8438 Q5.2344 -2.3594 5.2344 -3.3125 Q5.2344 -5.25 4.0156 -5.25 ZM11.2367 -6.6719 Q12.5804 -6.6719 13.3773 -5.8906 Q14.1742 -5.125 14.1742 -3.7031 L14.1742 -2.8281 L9.9554 -2.8281 Q9.9711 -2.0781 10.3929 -1.6406 Q10.8304 -1.2188 11.5804 -1.2188 Q12.2211 -1.2188 12.7367 -1.3438 Q13.2523 -1.4688 13.7992 -1.7344 L13.7992 -0.3438 Q13.3148 -0.1094 12.7836 0 Q12.2523 0.125 11.5023 0.125 Q10.5179 0.125 9.7523 -0.2344 Q9.0023 -0.6094 8.5648 -1.3438 Q8.1429 -2.0938 8.1429 -3.2344 Q8.1429 -4.375 8.5179 -5.1406 Q8.9086 -5.9062 9.6117 -6.2812 Q10.3148 -6.6719 11.2367 -6.6719 ZM11.2367 -5.4062 Q10.7211 -5.4062 10.3773 -5.0625 Q10.0492 -4.7344 9.9867 -4.0156 L12.4867 -4.0156 Q12.4867 -4.625 12.1742 -5.0156 Q11.8773 -5.4062 11.2367 -5.4062 ZM19.2819 -6.6719 Q19.4225 -6.6719 19.5944 -6.6562 Q19.7819 -6.6406 19.8912 -6.625 L19.7506 -4.9375 Q19.6725 -4.9688 19.5006 -4.9844 Q19.3444 -5 19.2194 -5 Q18.7662 -5 18.3444 -4.8438 Q17.9225 -4.6875 17.6569 -4.3125 Q17.4069 -3.9531 17.4069 -3.3438 L17.4069 0 L15.6256 0 L15.6256 -6.5469 L16.985 -6.5469 L17.2506 -5.4531 L17.3287 -5.4531 Q17.61 -5.9531 18.11 -6.3125 Q18.6256 -6.6719 19.2819 -6.6719 ZM25.6518 -1.9375 Q25.6518 -0.9531 24.9487 -0.4062 Q24.2455 0.125 22.8549 0.125 Q22.1674 0.125 21.6674 0.0312 Q21.183 -0.0625 20.683 -0.2656 L20.683 -1.7344 Q21.2143 -1.5 21.8237 -1.3438 Q22.433 -1.1875 22.9018 -1.1875 Q23.433 -1.1875 23.6518 -1.3438 Q23.8862 -1.5 23.8862 -1.75 Q23.8862 -1.9219 23.7924 -2.0469 Q23.6987 -2.1875 23.4018 -2.3438 Q23.1049 -2.5156 22.4643 -2.7812 Q21.8549 -3.0469 21.4487 -3.2969 Q21.058 -3.5625 20.8705 -3.9219 Q20.683 -4.2969 20.683 -4.8438 Q20.683 -5.7656 21.3862 -6.2188 Q22.0893 -6.6719 23.2612 -6.6719 Q23.8862 -6.6719 24.433 -6.5469 Q24.9799 -6.4375 25.5737 -6.1562 L25.0268 -4.875 Q24.558 -5.0781 24.1205 -5.2188 Q23.683 -5.3594 23.2455 -5.3594 Q22.4487 -5.3594 22.4487 -4.9219 Q22.4487 -4.7656 22.5424 -4.6406 Q22.6518 -4.5156 22.9487 -4.3594 Q23.2455 -4.2188 23.8237 -3.9844 Q24.3862 -3.75 24.7924 -3.5 Q25.1987 -3.2656 25.4174 -2.8906 Q25.6518 -2.5312 25.6518 -1.9375 ZM27.9439 -9.125 Q28.3346 -9.125 28.6158 -8.9375 Q28.9127 -8.75 28.9127 -8.25 Q28.9127 -7.75 28.6158 -7.5625 Q28.3346 -7.375 27.9439 -7.375 Q27.5221 -7.375 27.2408 -7.5625 Q26.9596 -7.75 26.9596 -8.25 Q26.9596 -8.75 27.2408 -8.9375 Q27.5221 -9.125 27.9439 -9.125 ZM28.8189 -6.5469 L28.8189 0 L27.0377 0 L27.0377 -6.5469 L28.8189 -6.5469 ZM35.2758 -1.9375 Q35.2758 -0.9531 34.5727 -0.4062 Q33.8696 0.125 32.479 0.125 Q31.7915 0.125 31.2915 0.0312 Q30.8071 -0.0625 30.3071 -0.2656 L30.3071 -1.7344 Q30.8383 -1.5 31.4477 -1.3438 Q32.0571 -1.1875 32.5258 -1.1875 Q33.0571 -1.1875 33.2758 -1.3438 Q33.5102 -1.5 33.5102 -1.75 Q33.5102 -1.9219 33.4165 -2.0469 Q33.3227 -2.1875 33.0258 -2.3438 Q32.729 -2.5156 32.0883 -2.7812 Q31.479 -3.0469 31.0727 -3.2969 Q30.6821 -3.5625 30.4946 -3.9219 Q30.3071 -4.2969 30.3071 -4.8438 Q30.3071 -5.7656 31.0102 -6.2188 Q31.7133 -6.6719 32.8852 -6.6719 Q33.5102 -6.6719 34.0571 -6.5469 Q34.604 -6.4375 35.1977 -6.1562 L34.6508 -4.875 Q34.1821 -5.0781 33.7446 -5.2188 Q33.3071 -5.3594 32.8696 -5.3594 Q32.0727 -5.3594 32.0727 -4.9219 Q32.0727 -4.7656 32.1665 -4.6406 Q32.2758 -4.5156 32.5727 -4.3594 Q32.8696 -4.2188 33.4477 -3.9844 Q34.0102 -3.75 34.4165 -3.5 Q34.8227 -3.2656 35.0415 -2.8906 Q35.2758 -2.5312 35.2758 -1.9375 ZM39.4274 -1.3125 Q39.7242 -1.3125 39.9899 -1.3594 Q40.2711 -1.4219 40.5524 -1.5156 L40.5524 -0.1875 Q40.2555 -0.0625 39.8336 0.0312 Q39.4117 0.125 38.9117 0.125 Q38.318 0.125 37.8492 -0.0625 Q37.3961 -0.2656 37.1149 -0.7344 Q36.8492 -1.2188 36.8492 -2.0469 L36.8492 -5.2031 L36.0055 -5.2031 L36.0055 -5.9688 L36.9899 -6.5625 L37.5055 -7.9375 L38.6461 -7.9375 L38.6461 -6.5469 L40.4742 -6.5469 L40.4742 -5.2031 L38.6461 -5.2031 L38.6461 -2.0469 Q38.6461 -1.6875 38.8492 -1.5 Q39.068 -1.3125 39.4274 -1.3125 ZM44.5729 -6.6719 Q45.9167 -6.6719 46.7135 -5.8906 Q47.5104 -5.125 47.5104 -3.7031 L47.5104 -2.8281 L43.2917 -2.8281 Q43.3073 -2.0781 43.7292 -1.6406 Q44.1667 -1.2188 44.9167 -1.2188 Q45.5573 -1.2188 46.0729 -1.3438 Q46.5885 -1.4688 47.1354 -1.7344 L47.1354 -0.3438 Q46.651 -0.1094 46.1198 0 Q45.5885 0.125 44.8385 0.125 Q43.8542 0.125 43.0885 -0.2344 Q42.3385 -0.6094 41.901 -1.3438 Q41.4792 -2.0938 41.4792 -3.2344 Q41.4792 -4.375 41.8542 -5.1406 Q42.2448 -5.9062 42.9479 -6.2812 Q43.651 -6.6719 44.5729 -6.6719 ZM44.5729 -5.4062 Q44.0573 -5.4062 43.7135 -5.0625 Q43.3854 -4.7344 43.3229 -4.0156 L45.8229 -4.0156 Q45.8229 -4.625 45.5104 -5.0156 Q45.2135 -5.4062 44.5729 -5.4062 ZM52.6806 -6.6719 Q53.7431 -6.6719 54.3681 -6.0938 Q55.0087 -5.5312 55.0087 -4.2656 L55.0087 0 L53.2275 0 L53.2275 -3.8281 Q53.2275 -4.5312 52.9618 -4.8906 Q52.7118 -5.25 52.165 -5.25 Q51.3525 -5.25 51.04 -4.6875 Q50.7431 -4.125 50.7431 -3.0781 L50.7431 0 L48.9618 0 L48.9618 -6.5469 L50.3212 -6.5469 L50.5712 -5.7188 L50.665 -5.7188 Q50.9775 -6.2188 51.5243 -6.4375 Q52.0712 -6.6719 52.6806 -6.6719 ZM59.5021 0.125 Q58.049 0.125 57.2521 -0.6875 Q56.4553 -1.5 56.4553 -3.2344 Q56.4553 -4.4375 56.8615 -5.1875 Q57.2678 -5.9531 57.9865 -6.3125 Q58.7209 -6.6719 59.6584 -6.6719 Q60.3303 -6.6719 60.8303 -6.5312 Q61.3303 -6.4062 61.7053 -6.2344 L61.174 -4.8438 Q60.7521 -5.0156 60.3771 -5.125 Q60.0178 -5.2344 59.6584 -5.2344 Q58.2678 -5.2344 58.2678 -3.25 Q58.2678 -2.2656 58.6271 -1.7969 Q59.0021 -1.3281 59.6584 -1.3281 Q60.2209 -1.3281 60.6584 -1.4688 Q61.0959 -1.625 61.5021 -1.8906 L61.5021 -0.375 Q61.0959 -0.1094 60.6428 0 Q60.1896 0.125 59.5021 0.125 ZM65.7171 -6.6719 Q67.0608 -6.6719 67.8577 -5.8906 Q68.6546 -5.125 68.6546 -3.7031 L68.6546 -2.8281 L64.4358 -2.8281 Q64.4514 -2.0781 64.8733 -1.6406 Q65.3108 -1.2188 66.0608 -1.2188 Q66.7014 -1.2188 67.2171 -1.3438 Q67.7327 -1.4688 68.2796 -1.7344 L68.2796 -0.3438 Q67.7952 -0.1094 67.2639 0 Q66.7327 0.125 65.9827 0.125 Q64.9983 0.125 64.2327 -0.2344 Q63.4827 -0.6094 63.0452 -1.3438 Q62.6233 -2.0938 62.6233 -3.2344 Q62.6233 -4.375 62.9983 -5.1406 Q63.3889 -5.9062 64.0921 -6.2812 Q64.7952 -6.6719 65.7171 -6.6719 ZM65.7171 -5.4062 Q65.2014 -5.4062 64.8577 -5.0625 Q64.5296 -4.7344 64.4671 -4.0156 L66.9671 -4.0156 Q66.9671 -4.625 66.6546 -5.0156 Q66.3577 -5.4062 65.7171 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath12);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="738.7401" y="-56.1923" width="75" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="738.7401" y="-56.1923" width="75" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(748.7401,-38.1923)"
+    ><path d="M6.3281 0 L5.7031 -2.0469 L2.5781 -2.0469 L1.9531 0 L0 0 L3.0312 -8.6094 L5.25 -8.6094 L8.2812 0 L6.3281 0 ZM4.6406 -5.5625 Q4.5781 -5.7656 4.4844 -6.0781 Q4.3906 -6.3906 4.2969 -6.7031 Q4.2031 -7.0312 4.1406 -7.2656 Q4.0781 -7.0312 3.9688 -6.6719 Q3.875 -6.3281 3.7812 -6 Q3.7031 -5.6875 3.6406 -5.5625 L3.0312 -3.5625 L5.2656 -3.5625 L4.6406 -5.5625 ZM15.2332 -6.5469 L15.2332 0 L13.8582 0 L13.6238 -0.8438 L13.5301 -0.8438 Q13.2176 -0.3438 12.6707 -0.1094 Q12.1238 0.125 11.5144 0.125 Q10.4519 0.125 9.8113 -0.4375 Q9.1863 -1.0156 9.1863 -2.2812 L9.1863 -6.5469 L10.9676 -6.5469 L10.9676 -2.7188 Q10.9676 -2.0312 11.2176 -1.6719 Q11.4676 -1.3125 12.0301 -1.3125 Q12.8426 -1.3125 13.1394 -1.8594 Q13.4363 -2.4219 13.4363 -3.4688 L13.4363 -6.5469 L15.2332 -6.5469 ZM19.8672 -1.3125 Q20.1641 -1.3125 20.4297 -1.3594 Q20.711 -1.4219 20.9922 -1.5156 L20.9922 -0.1875 Q20.6954 -0.0625 20.2735 0.0312 Q19.8516 0.125 19.3516 0.125 Q18.7579 0.125 18.2891 -0.0625 Q17.836 -0.2656 17.5547 -0.7344 Q17.2891 -1.2188 17.2891 -2.0469 L17.2891 -5.2031 L16.4454 -5.2031 L16.4454 -5.9688 L17.4297 -6.5625 L17.9454 -7.9375 L19.086 -7.9375 L19.086 -6.5469 L20.9141 -6.5469 L20.9141 -5.2031 L19.086 -5.2031 L19.086 -2.0469 Q19.086 -1.6875 19.2891 -1.5 Q19.5079 -1.3125 19.8672 -1.3125 ZM24.0909 -7.2656 Q24.0909 -6.7812 24.0596 -6.3281 Q24.0284 -5.8906 24.0128 -5.7188 L24.1065 -5.7188 Q24.419 -6.2188 24.9034 -6.4375 Q25.4034 -6.6719 25.9971 -6.6719 Q27.0753 -6.6719 27.7159 -6.0938 Q28.3565 -5.5312 28.3565 -4.2656 L28.3565 0 L26.5753 0 L26.5753 -3.8281 Q26.5753 -5.25 25.5128 -5.25 Q24.7159 -5.25 24.4034 -4.6875 Q24.0909 -4.125 24.0909 -3.0781 L24.0909 0 L22.3096 0 L22.3096 -9.125 L24.0909 -9.125 L24.0909 -7.2656 ZM37.4437 -4.375 Q37.4437 -2.2031 36.2093 -1.0938 Q34.9749 0 32.7562 0 L30.3343 0 L30.3343 -8.5625 L33.0218 -8.5625 Q34.3656 -8.5625 35.3499 -8.0781 Q36.3499 -7.6094 36.8968 -6.6719 Q37.4437 -5.75 37.4437 -4.375 ZM35.5531 -4.3125 Q35.5531 -5.75 34.9281 -6.4062 Q34.3031 -7.0781 33.1156 -7.0781 L32.1468 -7.0781 L32.1468 -1.5 L32.9281 -1.5 Q35.5531 -1.5 35.5531 -4.3125 ZM42.5113 0 L40.6988 0 L40.6988 -7.0625 L38.3706 -7.0625 L38.3706 -8.5625 L44.8394 -8.5625 L44.8394 -7.0625 L42.5113 -7.0625 L42.5113 0 ZM53.9437 -4.2969 Q53.9437 -2.9688 53.5062 -1.9688 Q53.0687 -0.9844 52.1624 -0.4219 Q51.2718 0.125 49.8656 0.125 Q48.4749 0.125 47.5687 -0.4219 Q46.6624 -0.9844 46.2249 -1.9688 Q45.7874 -2.9688 45.7874 -4.3125 Q45.7874 -5.6406 46.2249 -6.625 Q46.6624 -7.6094 47.5687 -8.1562 Q48.4749 -8.7031 49.8656 -8.7031 Q51.2718 -8.7031 52.1624 -8.1562 Q53.0687 -7.6094 53.5062 -6.6094 Q53.9437 -5.625 53.9437 -4.2969 ZM47.6937 -4.2969 Q47.6937 -2.9531 48.2093 -2.1719 Q48.7249 -1.4062 49.8656 -1.4062 Q51.0218 -1.4062 51.5218 -2.1719 Q52.0374 -2.9531 52.0374 -4.2969 Q52.0374 -5.6562 51.5218 -6.4219 Q51.0218 -7.1875 49.8656 -7.1875 Q48.7249 -7.1875 48.2093 -6.4219 Q47.6937 -5.6562 47.6937 -4.2969 Z" style="stroke:none; clip-path:url(#clipPath13);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="15.2164" y="-128.7862" width="112.1487" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="15.2164" y="-128.7862" width="112.1487" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(32.2908,-110.7862)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath14);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(25.2164,-94.4421)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM31.1543 -8.5625 Q32.9043 -8.5625 33.7325 -7.9219 Q34.5762 -7.2969 34.5762 -6 Q34.5762 -5.4062 34.3418 -4.9688 Q34.1231 -4.5312 33.7481 -4.2188 Q33.3887 -3.9219 32.9825 -3.7344 L35.4981 0 L33.4825 0 L31.4356 -3.2812 L30.4668 -3.2812 L30.4668 0 L28.6543 0 L28.6543 -8.5625 L31.1543 -8.5625 ZM31.0137 -7.0781 L30.4668 -7.0781 L30.4668 -4.7656 L31.0606 -4.7656 Q31.9512 -4.7656 32.3418 -5.0625 Q32.7325 -5.3594 32.7325 -5.9531 Q32.7325 -6.5625 32.3106 -6.8125 Q31.9043 -7.0781 31.0137 -7.0781 ZM39.1369 -6.6719 Q40.4806 -6.6719 41.2775 -5.8906 Q42.0744 -5.125 42.0744 -3.7031 L42.0744 -2.8281 L37.8556 -2.8281 Q37.8713 -2.0781 38.2931 -1.6406 Q38.7306 -1.2188 39.4806 -1.2188 Q40.1213 -1.2188 40.6369 -1.3438 Q41.1525 -1.4688 41.6994 -1.7344 L41.6994 -0.3438 Q41.215 -0.1094 40.6838 0 Q40.1525 0.125 39.4025 0.125 Q38.4181 0.125 37.6525 -0.2344 Q36.9025 -0.6094 36.465 -1.3438 Q36.0431 -2.0938 36.0431 -3.2344 Q36.0431 -4.375 36.4181 -5.1406 Q36.8088 -5.9062 37.5119 -6.2812 Q38.215 -6.6719 39.1369 -6.6719 ZM39.1369 -5.4062 Q38.6213 -5.4062 38.2775 -5.0625 Q37.9494 -4.7344 37.8869 -4.0156 L40.3869 -4.0156 Q40.3869 -4.625 40.0744 -5.0156 Q39.7775 -5.4062 39.1369 -5.4062 ZM47.1664 -6.6719 Q48.2758 -6.6719 48.9633 -5.8125 Q49.6508 -4.9531 49.6508 -3.2812 Q49.6508 -1.625 48.9321 -0.75 Q48.2289 0.125 47.1196 0.125 Q46.4164 0.125 45.9946 -0.125 Q45.5727 -0.3906 45.3071 -0.7188 L45.2133 -0.7188 Q45.3071 -0.2188 45.3071 0.2344 L45.3071 2.875 L43.5258 2.875 L43.5258 -6.5469 L44.9789 -6.5469 L45.2289 -5.7031 L45.3071 -5.7031 Q45.5727 -6.0938 46.0102 -6.375 Q46.4633 -6.6719 47.1664 -6.6719 ZM46.6039 -5.25 Q45.9008 -5.25 45.6196 -4.8125 Q45.3383 -4.375 45.3071 -3.4844 L45.3071 -3.2969 Q45.3071 -2.3594 45.5883 -1.8438 Q45.8696 -1.3281 46.6196 -1.3281 Q47.2289 -1.3281 47.5258 -1.8438 Q47.8227 -2.3594 47.8227 -3.3125 Q47.8227 -5.25 46.6039 -5.25 ZM57.075 -3.2812 Q57.075 -1.6562 56.2156 -0.7656 Q55.3562 0.125 53.8875 0.125 Q52.9656 0.125 52.2469 -0.2656 Q51.5437 -0.6719 51.1375 -1.4375 Q50.7312 -2.2031 50.7312 -3.2812 Q50.7312 -4.9219 51.575 -5.7969 Q52.4344 -6.6719 53.9187 -6.6719 Q54.8406 -6.6719 55.5437 -6.2656 Q56.2625 -5.875 56.6687 -5.125 Q57.075 -4.375 57.075 -3.2812 ZM52.5437 -3.2812 Q52.5437 -2.3125 52.8562 -1.8125 Q53.1844 -1.3125 53.9031 -1.3125 Q54.6062 -1.3125 54.9187 -1.8125 Q55.2469 -2.3125 55.2469 -3.2812 Q55.2469 -4.2656 54.9187 -4.75 Q54.6062 -5.2344 53.8875 -5.2344 Q53.1844 -5.2344 52.8562 -4.75 Q52.5437 -4.2656 52.5437 -3.2812 ZM63.1281 -1.9375 Q63.1281 -0.9531 62.4249 -0.4062 Q61.7218 0.125 60.3312 0.125 Q59.6437 0.125 59.1437 0.0312 Q58.6593 -0.0625 58.1593 -0.2656 L58.1593 -1.7344 Q58.6906 -1.5 59.2999 -1.3438 Q59.9093 -1.1875 60.3781 -1.1875 Q60.9093 -1.1875 61.1281 -1.3438 Q61.3624 -1.5 61.3624 -1.75 Q61.3624 -1.9219 61.2687 -2.0469 Q61.1749 -2.1875 60.8781 -2.3438 Q60.5812 -2.5156 59.9406 -2.7812 Q59.3312 -3.0469 58.9249 -3.2969 Q58.5343 -3.5625 58.3468 -3.9219 Q58.1593 -4.2969 58.1593 -4.8438 Q58.1593 -5.7656 58.8624 -6.2188 Q59.5656 -6.6719 60.7374 -6.6719 Q61.3624 -6.6719 61.9093 -6.5469 Q62.4562 -6.4375 63.0499 -6.1562 L62.5031 -4.875 Q62.0343 -5.0781 61.5968 -5.2188 Q61.1593 -5.3594 60.7218 -5.3594 Q59.9249 -5.3594 59.9249 -4.9219 Q59.9249 -4.7656 60.0187 -4.6406 Q60.1281 -4.5156 60.4249 -4.3594 Q60.7218 -4.2188 61.2999 -3.9844 Q61.8624 -3.75 62.2687 -3.5 Q62.6749 -3.2656 62.8937 -2.8906 Q63.1281 -2.5312 63.1281 -1.9375 ZM65.4202 -9.125 Q65.8108 -9.125 66.0921 -8.9375 Q66.389 -8.75 66.389 -8.25 Q66.389 -7.75 66.0921 -7.5625 Q65.8108 -7.375 65.4202 -7.375 Q64.9983 -7.375 64.7171 -7.5625 Q64.4358 -7.75 64.4358 -8.25 Q64.4358 -8.75 64.7171 -8.9375 Q64.9983 -9.125 65.4202 -9.125 ZM66.2952 -6.5469 L66.2952 0 L64.514 0 L64.514 -6.5469 L66.2952 -6.5469 ZM70.9396 -1.3125 Q71.2365 -1.3125 71.5021 -1.3594 Q71.7834 -1.4219 72.0646 -1.5156 L72.0646 -0.1875 Q71.7677 -0.0625 71.3459 0.0312 Q70.924 0.125 70.424 0.125 Q69.8302 0.125 69.3615 -0.0625 Q68.9084 -0.2656 68.6271 -0.7344 Q68.3615 -1.2188 68.3615 -2.0469 L68.3615 -5.2031 L67.5177 -5.2031 L67.5177 -5.9688 L68.5021 -6.5625 L69.0177 -7.9375 L70.1584 -7.9375 L70.1584 -6.5469 L71.9865 -6.5469 L71.9865 -5.2031 L70.1584 -5.2031 L70.1584 -2.0469 Q70.1584 -1.6875 70.3615 -1.5 Q70.5802 -1.3125 70.9396 -1.3125 ZM79.3351 -3.2812 Q79.3351 -1.6562 78.4758 -0.7656 Q77.6164 0.125 76.1476 0.125 Q75.2258 0.125 74.507 -0.2656 Q73.8039 -0.6719 73.3976 -1.4375 Q72.9914 -2.2031 72.9914 -3.2812 Q72.9914 -4.9219 73.8351 -5.7969 Q74.6945 -6.6719 76.1789 -6.6719 Q77.1008 -6.6719 77.8039 -6.2656 Q78.5226 -5.875 78.9289 -5.125 Q79.3351 -4.375 79.3351 -3.2812 ZM74.8039 -3.2812 Q74.8039 -2.3125 75.1164 -1.8125 Q75.4445 -1.3125 76.1633 -1.3125 Q76.8664 -1.3125 77.1789 -1.8125 Q77.507 -2.3125 77.507 -3.2812 Q77.507 -4.2656 77.1789 -4.75 Q76.8664 -5.2344 76.1476 -5.2344 Q75.4445 -5.2344 75.1164 -4.75 Q74.8039 -4.2656 74.8039 -3.2812 ZM84.4663 -6.6719 Q84.6069 -6.6719 84.7788 -6.6562 Q84.9663 -6.6406 85.0757 -6.625 L84.9351 -4.9375 Q84.8569 -4.9688 84.6851 -4.9844 Q84.5288 -5 84.4038 -5 Q83.9507 -5 83.5288 -4.8438 Q83.1069 -4.6875 82.8413 -4.3125 Q82.5913 -3.9531 82.5913 -3.3438 L82.5913 0 L80.8101 0 L80.8101 -6.5469 L82.1694 -6.5469 L82.4351 -5.4531 L82.5132 -5.4531 Q82.7944 -5.9531 83.2944 -6.3125 Q83.8101 -6.6719 84.4663 -6.6719 ZM85.3206 -6.5469 L87.2737 -6.5469 L88.5081 -2.875 Q88.6019 -2.6094 88.6487 -2.3281 Q88.7112 -2.0469 88.7269 -1.7344 L88.7581 -1.7344 Q88.805 -2.0469 88.8675 -2.3281 Q88.93 -2.6094 89.0237 -2.875 L90.2269 -6.5469 L92.1487 -6.5469 L89.3831 0.8438 Q89.0081 1.8594 88.2894 2.3594 Q87.5706 2.875 86.6331 2.875 Q86.3362 2.875 86.1175 2.8438 Q85.8987 2.8125 85.7269 2.7812 L85.7269 1.375 Q85.8675 1.3906 86.0394 1.4062 Q86.2269 1.4375 86.43 1.4375 Q87.0081 1.4375 87.3362 1.0938 Q87.6644 0.75 87.8206 0.2812 L87.93 -0.0469 L85.3206 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath15);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-776.4452" y="-72.448" width="116.1719" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-776.4452" y="-72.448" width="116.1719" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-776.4452" y="-57.448" width="290.4298" style="clip-path:url(#clipPath2); stroke:none;" height="92.8907"
+      /><rect x="-776.4452" y="-57.448" width="290.4298" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="92.8907"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-756.4452,-38.448)"
+    ><path d="M6.8906 -3.2812 Q6.8906 -1.6562 6.0312 -0.7656 Q5.1719 0.125 3.7031 0.125 Q2.7812 0.125 2.0625 -0.2656 Q1.3594 -0.6719 0.9531 -1.4375 Q0.5469 -2.2031 0.5469 -3.2812 Q0.5469 -4.9219 1.3906 -5.7969 Q2.25 -6.6719 3.7344 -6.6719 Q4.6562 -6.6719 5.3594 -6.2656 Q6.0781 -5.875 6.4844 -5.125 Q6.8906 -4.375 6.8906 -3.2812 ZM2.3594 -3.2812 Q2.3594 -2.3125 2.6719 -1.8125 Q3 -1.3125 3.7188 -1.3125 Q4.4219 -1.3125 4.7344 -1.8125 Q5.0625 -2.3125 5.0625 -3.2812 Q5.0625 -4.2656 4.7344 -4.75 Q4.4219 -5.2344 3.7031 -5.2344 Q3 -5.2344 2.6719 -4.75 Q2.3594 -4.2656 2.3594 -3.2812 ZM12.0218 -6.6719 Q12.1624 -6.6719 12.3343 -6.6562 Q12.5218 -6.6406 12.6312 -6.625 L12.4906 -4.9375 Q12.4124 -4.9688 12.2406 -4.9844 Q12.0843 -5 11.9593 -5 Q11.5062 -5 11.0843 -4.8438 Q10.6624 -4.6875 10.3968 -4.3125 Q10.1468 -3.9531 10.1468 -3.3438 L10.1468 0 L8.3656 0 L8.3656 -6.5469 L9.7249 -6.5469 L9.9906 -5.4531 L10.0687 -5.4531 Q10.3499 -5.9531 10.8499 -6.3125 Q11.3656 -6.6719 12.0218 -6.6719 ZM15.9386 -6.6719 Q17.1417 -6.6719 17.8292 -5.7188 L17.8761 -5.7188 L18.0167 -6.5469 L19.5323 -6.5469 L19.5323 0.0156 Q19.5323 1.4219 18.7042 2.1406 Q17.8761 2.875 16.2667 2.875 Q15.5636 2.875 14.9698 2.7969 Q14.3761 2.7188 13.8136 2.5 L13.8136 1.0625 Q15.0167 1.5781 16.3605 1.5781 Q17.7511 1.5781 17.7511 0.0781 L17.7511 -0.0469 Q17.7511 -0.25 17.7667 -0.4688 Q17.7823 -0.6875 17.798 -0.8594 L17.7511 -0.8594 Q17.4073 -0.3438 16.9386 -0.1094 Q16.4698 0.125 15.8917 0.125 Q14.7198 0.125 14.0636 -0.7656 Q13.423 -1.6719 13.423 -3.2656 Q13.423 -4.875 14.0948 -5.7656 Q14.7667 -6.6719 15.9386 -6.6719 ZM16.5011 -5.2188 Q15.2355 -5.2188 15.2355 -3.2344 Q15.2355 -1.2812 16.5167 -1.2812 Q17.2042 -1.2812 17.5323 -1.6719 Q17.8605 -2.0625 17.8605 -3.0312 L17.8605 -3.25 Q17.8605 -4.3125 17.5323 -4.7656 Q17.2198 -5.2188 16.5011 -5.2188 ZM21.1597 -0.8438 Q21.1597 -1.3906 21.4565 -1.6094 Q21.7534 -1.8438 22.1909 -1.8438 Q22.6128 -1.8438 22.9097 -1.6094 Q23.2065 -1.3906 23.2065 -0.8438 Q23.2065 -0.3125 22.9097 -0.0781 Q22.6128 0.1562 22.1909 0.1562 Q21.7534 0.1562 21.4565 -0.0781 Q21.1597 -0.3125 21.1597 -0.8438 ZM29.4078 -1.9375 Q29.4078 -0.9531 28.7047 -0.4062 Q28.0016 0.125 26.6109 0.125 Q25.9234 0.125 25.4234 0.0312 Q24.9391 -0.0625 24.4391 -0.2656 L24.4391 -1.7344 Q24.9703 -1.5 25.5797 -1.3438 Q26.1891 -1.1875 26.6578 -1.1875 Q27.1891 -1.1875 27.4078 -1.3438 Q27.6422 -1.5 27.6422 -1.75 Q27.6422 -1.9219 27.5484 -2.0469 Q27.4547 -2.1875 27.1578 -2.3438 Q26.8609 -2.5156 26.2203 -2.7812 Q25.6109 -3.0469 25.2047 -3.2969 Q24.8141 -3.5625 24.6266 -3.9219 Q24.4391 -4.2969 24.4391 -4.8438 Q24.4391 -5.7656 25.1422 -6.2188 Q25.8453 -6.6719 27.0172 -6.6719 Q27.6422 -6.6719 28.1891 -6.5469 Q28.7359 -6.4375 29.3297 -6.1562 L28.7828 -4.875 Q28.3141 -5.0781 27.8766 -5.2188 Q27.4391 -5.3594 27.0016 -5.3594 Q26.2047 -5.3594 26.2047 -4.9219 Q26.2047 -4.7656 26.2984 -4.6406 Q26.4078 -4.5156 26.7047 -4.3594 Q27.0016 -4.2188 27.5797 -3.9844 Q28.1422 -3.75 28.5484 -3.5 Q28.9547 -3.2656 29.1734 -2.8906 Q29.4078 -2.5312 29.4078 -1.9375 ZM34.4343 -6.6719 Q35.5437 -6.6719 36.2312 -5.8125 Q36.9187 -4.9531 36.9187 -3.2812 Q36.9187 -1.625 36.2 -0.75 Q35.4968 0.125 34.3875 0.125 Q33.6843 0.125 33.2625 -0.125 Q32.8406 -0.3906 32.575 -0.7188 L32.4812 -0.7188 Q32.575 -0.2188 32.575 0.2344 L32.575 2.875 L30.7937 2.875 L30.7937 -6.5469 L32.2468 -6.5469 L32.4968 -5.7031 L32.575 -5.7031 Q32.8406 -6.0938 33.2781 -6.375 Q33.7312 -6.6719 34.4343 -6.6719 ZM33.8718 -5.25 Q33.1687 -5.25 32.8875 -4.8125 Q32.6062 -4.375 32.575 -3.4844 L32.575 -3.2969 Q32.575 -2.3594 32.8562 -1.8438 Q33.1375 -1.3281 33.8875 -1.3281 Q34.4968 -1.3281 34.7937 -1.8438 Q35.0906 -2.3594 35.0906 -3.3125 Q35.0906 -5.25 33.8718 -5.25 ZM42.046 -6.6719 Q42.1866 -6.6719 42.3585 -6.6562 Q42.546 -6.6406 42.6554 -6.625 L42.5148 -4.9375 Q42.4366 -4.9688 42.2648 -4.9844 Q42.1085 -5 41.9835 -5 Q41.5304 -5 41.1085 -4.8438 Q40.6866 -4.6875 40.421 -4.3125 Q40.171 -3.9531 40.171 -3.3438 L40.171 0 L38.3898 0 L38.3898 -6.5469 L39.7491 -6.5469 L40.0148 -5.4531 L40.0929 -5.4531 Q40.3741 -5.9531 40.8741 -6.3125 Q41.3898 -6.6719 42.046 -6.6719 ZM44.7441 -9.125 Q45.1347 -9.125 45.4159 -8.9375 Q45.7128 -8.75 45.7128 -8.25 Q45.7128 -7.75 45.4159 -7.5625 Q45.1347 -7.375 44.7441 -7.375 Q44.3222 -7.375 44.0409 -7.5625 Q43.7597 -7.75 43.7597 -8.25 Q43.7597 -8.75 44.0409 -8.9375 Q44.3222 -9.125 44.7441 -9.125 ZM45.6191 -6.5469 L45.6191 0 L43.8378 0 L43.8378 -6.5469 L45.6191 -6.5469 ZM51.2166 -6.6719 Q52.2791 -6.6719 52.9041 -6.0938 Q53.5447 -5.5312 53.5447 -4.2656 L53.5447 0 L51.7635 0 L51.7635 -3.8281 Q51.7635 -4.5312 51.4978 -4.8906 Q51.2478 -5.25 50.701 -5.25 Q49.8885 -5.25 49.576 -4.6875 Q49.2791 -4.125 49.2791 -3.0781 L49.2791 0 L47.4978 0 L47.4978 -6.5469 L48.8572 -6.5469 L49.1072 -5.7188 L49.201 -5.7188 Q49.5135 -6.2188 50.0603 -6.4375 Q50.6072 -6.6719 51.2166 -6.6719 ZM57.5069 -6.6719 Q58.71 -6.6719 59.3975 -5.7188 L59.4444 -5.7188 L59.585 -6.5469 L61.1006 -6.5469 L61.1006 0.0156 Q61.1006 1.4219 60.2725 2.1406 Q59.4444 2.875 57.835 2.875 Q57.1319 2.875 56.5381 2.7969 Q55.9444 2.7188 55.3819 2.5 L55.3819 1.0625 Q56.585 1.5781 57.9288 1.5781 Q59.3194 1.5781 59.3194 0.0781 L59.3194 -0.0469 Q59.3194 -0.25 59.335 -0.4688 Q59.3506 -0.6875 59.3663 -0.8594 L59.3194 -0.8594 Q58.9756 -0.3438 58.5069 -0.1094 Q58.0381 0.125 57.46 0.125 Q56.2881 0.125 55.6319 -0.7656 Q54.9913 -1.6719 54.9913 -3.2656 Q54.9913 -4.875 55.6631 -5.7656 Q56.335 -6.6719 57.5069 -6.6719 ZM58.0694 -5.2188 Q56.8038 -5.2188 56.8038 -3.2344 Q56.8038 -1.2812 58.085 -1.2812 Q58.7725 -1.2812 59.1006 -1.6719 Q59.4288 -2.0625 59.4288 -3.0312 L59.4288 -3.25 Q59.4288 -4.3125 59.1006 -4.7656 Q58.7881 -5.2188 58.0694 -5.2188 ZM62.7279 -0.8438 Q62.7279 -1.3906 63.0248 -1.6094 Q63.3217 -1.8438 63.7592 -1.8438 Q64.1811 -1.8438 64.4779 -1.6094 Q64.7748 -1.3906 64.7748 -0.8438 Q64.7748 -0.3125 64.4779 -0.0781 Q64.1811 0.1562 63.7592 0.1562 Q63.3217 0.1562 63.0248 -0.0781 Q62.7279 -0.3125 62.7279 -0.8438 ZM70.023 -5.2031 L68.4761 -5.2031 L68.4761 0 L66.6792 0 L66.6792 -5.2031 L65.6948 -5.2031 L65.6948 -6.0781 L66.6792 -6.5469 L66.6792 -7.0312 Q66.6792 -7.875 66.9605 -8.3281 Q67.2417 -8.7969 67.7573 -8.9844 Q68.2886 -9.1875 69.0073 -9.1875 Q69.523 -9.1875 69.9448 -9.0938 Q70.3823 -9.0156 70.648 -8.9062 L70.1948 -7.5938 Q69.9917 -7.6562 69.7417 -7.7031 Q69.5073 -7.7656 69.1948 -7.7656 Q68.8198 -7.7656 68.648 -7.5312 Q68.4761 -7.3125 68.4761 -6.9531 L68.4761 -6.5469 L70.023 -6.5469 L70.023 -5.2031 ZM74.6982 -6.6719 Q74.8389 -6.6719 75.0107 -6.6562 Q75.1982 -6.6406 75.3076 -6.625 L75.167 -4.9375 Q75.0889 -4.9688 74.917 -4.9844 Q74.7607 -5 74.6357 -5 Q74.1826 -5 73.7607 -4.8438 Q73.3389 -4.6875 73.0732 -4.3125 Q72.8232 -3.9531 72.8232 -3.3438 L72.8232 0 L71.042 0 L71.042 -6.5469 L72.4014 -6.5469 L72.667 -5.4531 L72.7451 -5.4531 Q73.0264 -5.9531 73.5264 -6.3125 Q74.042 -6.6719 74.6982 -6.6719 ZM79.1775 -6.6875 Q80.49 -6.6875 81.1932 -6.1094 Q81.8963 -5.5469 81.8963 -4.375 L81.8963 0 L80.6463 0 L80.3025 -0.8906 L80.2557 -0.8906 Q79.8338 -0.3594 79.365 -0.1094 Q78.8963 0.125 78.0838 0.125 Q77.2088 0.125 76.6307 -0.3906 Q76.0525 -0.9062 76.0525 -1.9531 Q76.0525 -3 76.7869 -3.5 Q77.5213 -4 78.99 -4.0469 L80.1307 -4.0781 L80.1307 -4.375 Q80.1307 -4.8906 79.8494 -5.125 Q79.5838 -5.3594 79.0994 -5.3594 Q78.6307 -5.3594 78.1619 -5.2188 Q77.7088 -5.0938 77.2557 -4.8906 L76.6619 -6.0938 Q77.1932 -6.375 77.8338 -6.5312 Q78.4744 -6.6875 79.1775 -6.6875 ZM79.4275 -3.0156 Q78.5682 -2.9844 78.2244 -2.6875 Q77.8963 -2.4062 77.8963 -1.9375 Q77.8963 -1.5312 78.1307 -1.3594 Q78.365 -1.1875 78.7557 -1.1875 Q79.3338 -1.1875 79.7244 -1.5312 Q80.1307 -1.875 80.1307 -2.5 L80.1307 -3.0312 L79.4275 -3.0156 ZM91.4256 -6.6719 Q92.5506 -6.6719 93.1131 -6.0938 Q93.6912 -5.5312 93.6912 -4.2656 L93.6912 0 L91.8943 0 L91.8943 -3.8281 Q91.8943 -5.25 90.91 -5.25 Q90.2068 -5.25 89.8943 -4.7344 Q89.5975 -4.2344 89.5975 -3.2812 L89.5975 0 L87.8162 0 L87.8162 -3.8281 Q87.8162 -5.25 86.8318 -5.25 Q86.0818 -5.25 85.8006 -4.6875 Q85.5193 -4.125 85.5193 -3.0781 L85.5193 0 L83.7381 0 L83.7381 -6.5469 L85.0975 -6.5469 L85.3475 -5.7188 L85.4412 -5.7188 Q85.7381 -6.2188 86.2537 -6.4375 Q86.785 -6.6719 87.3475 -6.6719 Q88.0662 -6.6719 88.5662 -6.4375 Q89.0818 -6.2031 89.3475 -5.7188 L89.5037 -5.7188 Q89.8006 -6.2188 90.3318 -6.4375 Q90.8631 -6.6719 91.4256 -6.6719 ZM98.2253 -6.6719 Q99.569 -6.6719 100.3659 -5.8906 Q101.1628 -5.125 101.1628 -3.7031 L101.1628 -2.8281 L96.944 -2.8281 Q96.9597 -2.0781 97.3815 -1.6406 Q97.819 -1.2188 98.569 -1.2188 Q99.2097 -1.2188 99.7253 -1.3438 Q100.2409 -1.4688 100.7878 -1.7344 L100.7878 -0.3438 Q100.3034 -0.1094 99.7722 0 Q99.2409 0.125 98.4909 0.125 Q97.5065 0.125 96.7409 -0.2344 Q95.9909 -0.6094 95.5534 -1.3438 Q95.1315 -2.0938 95.1315 -3.2344 Q95.1315 -4.375 95.5065 -5.1406 Q95.8972 -5.9062 96.6003 -6.2812 Q97.3034 -6.6719 98.2253 -6.6719 ZM98.2253 -5.4062 Q97.7097 -5.4062 97.3659 -5.0625 Q97.0378 -4.7344 96.9753 -4.0156 L99.4753 -4.0156 Q99.4753 -4.625 99.1628 -5.0156 Q98.8659 -5.4062 98.2253 -5.4062 ZM107.4892 -2.2969 Q107.4424 -2.5 107.3486 -2.8906 Q107.2705 -3.2969 107.1611 -3.75 Q107.0517 -4.2188 106.958 -4.6094 Q106.8642 -5 106.8174 -5.1875 L106.7705 -5.1875 Q106.7392 -5 106.6455 -4.6094 Q106.5674 -4.2188 106.458 -3.75 Q106.3486 -3.2969 106.2392 -2.8906 Q106.1455 -2.4844 106.0986 -2.2656 L105.583 0 L103.6611 0 L101.8017 -6.5469 L103.5674 -6.5469 L104.333 -3.6406 Q104.4111 -3.3438 104.4736 -2.9219 Q104.5517 -2.5156 104.5986 -2.125 Q104.6611 -1.7344 104.6924 -1.5 L104.7392 -1.5 Q104.7549 -1.6719 104.7861 -1.9531 Q104.8174 -2.2344 104.8642 -2.5312 Q104.9267 -2.8281 104.9736 -3.0781 Q105.0205 -3.3281 105.0361 -3.4062 L105.833 -6.5469 L107.8017 -6.5469 L108.583 -3.4062 Q108.6299 -3.2344 108.6924 -2.8594 Q108.7549 -2.5 108.8017 -2.1094 Q108.8642 -1.7344 108.8642 -1.5 L108.9111 -1.5 Q108.9424 -1.7031 108.9892 -2.0938 Q109.0517 -2.4844 109.1299 -2.9062 Q109.208 -3.3438 109.3017 -3.6406 L110.083 -6.5469 L111.833 -6.5469 L109.9424 0 L108.0049 0 L107.4892 -2.2969 ZM118.8394 -3.2812 Q118.8394 -1.6562 117.9801 -0.7656 Q117.1207 0.125 115.6519 0.125 Q114.7301 0.125 114.0113 -0.2656 Q113.3082 -0.6719 112.9019 -1.4375 Q112.4957 -2.2031 112.4957 -3.2812 Q112.4957 -4.9219 113.3394 -5.7969 Q114.1988 -6.6719 115.6832 -6.6719 Q116.6051 -6.6719 117.3082 -6.2656 Q118.0269 -5.875 118.4332 -5.125 Q118.8394 -4.375 118.8394 -3.2812 ZM114.3082 -3.2812 Q114.3082 -2.3125 114.6207 -1.8125 Q114.9488 -1.3125 115.6676 -1.3125 Q116.3707 -1.3125 116.6832 -1.8125 Q117.0113 -2.3125 117.0113 -3.2812 Q117.0113 -4.2656 116.6832 -4.75 Q116.3707 -5.2344 115.6519 -5.2344 Q114.9488 -5.2344 114.6207 -4.75 Q114.3082 -4.2656 114.3082 -3.2812 ZM123.9706 -6.6719 Q124.1112 -6.6719 124.2831 -6.6562 Q124.4706 -6.6406 124.58 -6.625 L124.4394 -4.9375 Q124.3612 -4.9688 124.1894 -4.9844 Q124.0331 -5 123.9081 -5 Q123.455 -5 123.0331 -4.8438 Q122.6112 -4.6875 122.3456 -4.3125 Q122.0956 -3.9531 122.0956 -3.3438 L122.0956 0 L120.3144 0 L120.3144 -6.5469 L121.6737 -6.5469 L121.9394 -5.4531 L122.0175 -5.4531 Q122.2987 -5.9531 122.7987 -6.3125 Q123.3144 -6.6719 123.9706 -6.6719 ZM127.5437 -5.0469 Q127.5437 -4.6719 127.5124 -4.2969 Q127.4812 -3.9375 127.4499 -3.5625 L127.4812 -3.5625 Q127.653 -3.8125 127.8405 -4.0625 Q128.0437 -4.3281 128.2624 -4.5625 L130.0905 -6.5469 L132.1062 -6.5469 L129.5124 -3.7031 L132.2624 0 L130.1999 0 L128.3093 -2.6562 L127.5437 -2.0469 L127.5437 0 L125.7624 0 L125.7624 -9.125 L127.5437 -9.125 L127.5437 -5.0469 ZM132.9525 -0.8438 Q132.9525 -1.3906 133.2493 -1.6094 Q133.5462 -1.8438 133.9837 -1.8438 Q134.4056 -1.8438 134.7025 -1.6094 Q134.9993 -1.3906 134.9993 -0.8438 Q134.9993 -0.3125 134.7025 -0.0781 Q134.4056 0.1562 133.9837 0.1562 Q133.5462 0.1562 133.2493 -0.0781 Q132.9525 -0.3125 132.9525 -0.8438 ZM138.7006 0.125 Q137.6069 0.125 136.9194 -0.7344 Q136.2319 -1.5938 136.2319 -3.2656 Q136.2319 -4.9375 136.9194 -5.7969 Q137.6225 -6.6719 138.7475 -6.6719 Q139.4506 -6.6719 139.9037 -6.3906 Q140.3725 -6.125 140.6225 -5.7188 L140.685 -5.7188 Q140.6537 -5.9062 140.6069 -6.2656 Q140.56 -6.6406 140.56 -7.0156 L140.56 -9.125 L142.3412 -9.125 L142.3412 0 L140.9819 0 L140.6225 -0.8594 L140.56 -0.8594 Q140.2944 -0.4375 139.8412 -0.1562 Q139.4037 0.125 138.7006 0.125 ZM139.3256 -1.3125 Q140.06 -1.3125 140.3569 -1.75 Q140.6694 -2.1875 140.6694 -3.0625 L140.6694 -3.25 Q140.6694 -4.2188 140.3725 -4.7188 Q140.0912 -5.2188 139.2944 -5.2188 Q138.7162 -5.2188 138.3725 -4.7031 Q138.0444 -4.2031 138.0444 -3.2344 Q138.0444 -2.2812 138.3725 -1.7969 Q138.7162 -1.3125 139.3256 -1.3125 ZM146.906 -6.6875 Q148.2185 -6.6875 148.9217 -6.1094 Q149.6248 -5.5469 149.6248 -4.375 L149.6248 0 L148.3748 0 L148.031 -0.8906 L147.9842 -0.8906 Q147.5623 -0.3594 147.0935 -0.1094 Q146.6248 0.125 145.8123 0.125 Q144.9373 0.125 144.3592 -0.3906 Q143.781 -0.9062 143.781 -1.9531 Q143.781 -3 144.5154 -3.5 Q145.2498 -4 146.7185 -4.0469 L147.8592 -4.0781 L147.8592 -4.375 Q147.8592 -4.8906 147.5779 -5.125 Q147.3123 -5.3594 146.8279 -5.3594 Q146.3592 -5.3594 145.8904 -5.2188 Q145.4373 -5.0938 144.9842 -4.8906 L144.3904 -6.0938 Q144.9217 -6.375 145.5623 -6.5312 Q146.2029 -6.6875 146.906 -6.6875 ZM147.156 -3.0156 Q146.2967 -2.9844 145.9529 -2.6875 Q145.6248 -2.4062 145.6248 -1.9375 Q145.6248 -1.5312 145.8592 -1.3594 Q146.0935 -1.1875 146.4842 -1.1875 Q147.0623 -1.1875 147.4529 -1.5312 Q147.8592 -1.875 147.8592 -2.5 L147.8592 -3.0312 L147.156 -3.0156 ZM154.2322 -1.3125 Q154.5291 -1.3125 154.7947 -1.3594 Q155.076 -1.4219 155.3572 -1.5156 L155.3572 -0.1875 Q155.0603 -0.0625 154.6385 0.0312 Q154.2166 0.125 153.7166 0.125 Q153.1228 0.125 152.6541 -0.0625 Q152.201 -0.2656 151.9197 -0.7344 Q151.6541 -1.2188 151.6541 -2.0469 L151.6541 -5.2031 L150.8103 -5.2031 L150.8103 -5.9688 L151.7947 -6.5625 L152.3103 -7.9375 L153.451 -7.9375 L153.451 -6.5469 L155.2791 -6.5469 L155.2791 -5.2031 L153.451 -5.2031 L153.451 -2.0469 Q153.451 -1.6875 153.6541 -1.5 Q153.8728 -1.3125 154.2322 -1.3125 ZM159.3621 -6.6875 Q160.6746 -6.6875 161.3777 -6.1094 Q162.0809 -5.5469 162.0809 -4.375 L162.0809 0 L160.8309 0 L160.4871 -0.8906 L160.4402 -0.8906 Q160.0184 -0.3594 159.5496 -0.1094 Q159.0809 0.125 158.2684 0.125 Q157.3934 0.125 156.8152 -0.3906 Q156.2371 -0.9062 156.2371 -1.9531 Q156.2371 -3 156.9715 -3.5 Q157.7059 -4 159.1746 -4.0469 L160.3152 -4.0781 L160.3152 -4.375 Q160.3152 -4.8906 160.034 -5.125 Q159.7684 -5.3594 159.284 -5.3594 Q158.8152 -5.3594 158.3465 -5.2188 Q157.8934 -5.0938 157.4402 -4.8906 L156.8465 -6.0938 Q157.3777 -6.375 158.0184 -6.5312 Q158.659 -6.6875 159.3621 -6.6875 ZM159.6121 -3.0156 Q158.7527 -2.9844 158.409 -2.6875 Q158.0809 -2.4062 158.0809 -1.9375 Q158.0809 -1.5312 158.3152 -1.3594 Q158.5496 -1.1875 158.9402 -1.1875 Q159.5184 -1.1875 159.909 -1.5312 Q160.3152 -1.875 160.3152 -2.5 L160.3152 -3.0312 L159.6121 -3.0156 ZM163.6727 -0.8438 Q163.6727 -1.3906 163.9695 -1.6094 Q164.2664 -1.8438 164.7039 -1.8438 Q165.1258 -1.8438 165.4227 -1.6094 Q165.7195 -1.3906 165.7195 -0.8438 Q165.7195 -0.3125 165.4227 -0.0781 Q165.1258 0.1562 164.7039 0.1562 Q164.2664 0.1562 163.9695 -0.0781 Q163.6727 -0.3125 163.6727 -0.8438 ZM167.2646 -8.25 Q167.2646 -8.75 167.5458 -8.9375 Q167.8271 -9.125 168.2489 -9.125 Q168.6396 -9.125 168.9208 -8.9375 Q169.2177 -8.75 169.2177 -8.25 Q169.2177 -7.75 168.9208 -7.5625 Q168.6396 -7.375 168.2489 -7.375 Q167.8271 -7.375 167.5458 -7.5625 Q167.2646 -7.75 167.2646 -8.25 ZM166.8114 2.875 Q166.5146 2.875 166.1864 2.8281 Q165.8583 2.7969 165.6396 2.7344 L165.6396 1.3281 Q165.8583 1.375 166.0458 1.4062 Q166.2333 1.4375 166.4833 1.4375 Q166.8427 1.4375 167.0927 1.2344 Q167.3427 1.0312 167.3427 0.4375 L167.3427 -6.5469 L169.1239 -6.5469 L169.1239 0.7031 Q169.1239 1.3125 168.8896 1.7969 Q168.6708 2.2969 168.1552 2.5781 Q167.6552 2.875 166.8114 2.875 ZM174.6433 -6.6719 Q175.7527 -6.6719 176.4402 -5.8125 Q177.1277 -4.9531 177.1277 -3.2812 Q177.1277 -1.625 176.409 -0.75 Q175.7058 0.125 174.5965 0.125 Q173.8933 0.125 173.4715 -0.125 Q173.0496 -0.3906 172.784 -0.7188 L172.6902 -0.7188 Q172.784 -0.2188 172.784 0.2344 L172.784 2.875 L171.0027 2.875 L171.0027 -6.5469 L172.4558 -6.5469 L172.7058 -5.7031 L172.784 -5.7031 Q173.0496 -6.0938 173.4871 -6.375 Q173.9402 -6.6719 174.6433 -6.6719 ZM174.0808 -5.25 Q173.3777 -5.25 173.0965 -4.8125 Q172.8152 -4.375 172.784 -3.4844 L172.784 -3.2969 Q172.784 -2.3594 173.0652 -1.8438 Q173.3465 -1.3281 174.0965 -1.3281 Q174.7058 -1.3281 175.0027 -1.8438 Q175.2996 -2.3594 175.2996 -3.3125 Q175.2996 -5.25 174.0808 -5.25 ZM181.2863 -6.6875 Q182.5988 -6.6875 183.3019 -6.1094 Q184.005 -5.5469 184.005 -4.375 L184.005 0 L182.755 0 L182.4113 -0.8906 L182.3644 -0.8906 Q181.9425 -0.3594 181.4738 -0.1094 Q181.005 0.125 180.1925 0.125 Q179.3175 0.125 178.7394 -0.3906 Q178.1613 -0.9062 178.1613 -1.9531 Q178.1613 -3 178.8956 -3.5 Q179.63 -4 181.0988 -4.0469 L182.2394 -4.0781 L182.2394 -4.375 Q182.2394 -4.8906 181.9581 -5.125 Q181.6925 -5.3594 181.2081 -5.3594 Q180.7394 -5.3594 180.2706 -5.2188 Q179.8175 -5.0938 179.3644 -4.8906 L178.7706 -6.0938 Q179.3019 -6.375 179.9425 -6.5312 Q180.5831 -6.6875 181.2863 -6.6875 ZM181.5363 -3.0156 Q180.6769 -2.9844 180.3331 -2.6875 Q180.005 -2.4062 180.005 -1.9375 Q180.005 -1.5312 180.2394 -1.3594 Q180.4738 -1.1875 180.8644 -1.1875 Q181.4425 -1.1875 181.8331 -1.5312 Q182.2394 -1.875 182.2394 -2.5 L182.2394 -3.0312 L181.5363 -3.0156 ZM185.5968 -0.8438 Q185.5968 -1.3906 185.8937 -1.6094 Q186.1906 -1.8438 186.6281 -1.8438 Q187.0499 -1.8438 187.3468 -1.6094 Q187.6437 -1.3906 187.6437 -0.8438 Q187.6437 -0.3125 187.3468 -0.0781 Q187.0499 0.1562 186.6281 0.1562 Q186.1906 0.1562 185.8937 -0.0781 Q185.5968 -0.3125 185.5968 -0.8438 ZM192.9231 -6.6719 Q193.0637 -6.6719 193.2356 -6.6562 Q193.4231 -6.6406 193.5325 -6.625 L193.3918 -4.9375 Q193.3137 -4.9688 193.1418 -4.9844 Q192.9856 -5 192.8606 -5 Q192.4075 -5 191.9856 -4.8438 Q191.5637 -4.6875 191.2981 -4.3125 Q191.0481 -3.9531 191.0481 -3.3438 L191.0481 0 L189.2668 0 L189.2668 -6.5469 L190.6262 -6.5469 L190.8918 -5.4531 L190.97 -5.4531 Q191.2512 -5.9531 191.7512 -6.3125 Q192.2668 -6.6719 192.9231 -6.6719 ZM197.418 -6.6719 Q198.7618 -6.6719 199.5586 -5.8906 Q200.3555 -5.125 200.3555 -3.7031 L200.3555 -2.8281 L196.1368 -2.8281 Q196.1524 -2.0781 196.5743 -1.6406 Q197.0118 -1.2188 197.7618 -1.2188 Q198.4024 -1.2188 198.918 -1.3438 Q199.4336 -1.4688 199.9805 -1.7344 L199.9805 -0.3438 Q199.4961 -0.1094 198.9649 0 Q198.4336 0.125 197.6836 0.125 Q196.6993 0.125 195.9336 -0.2344 Q195.1836 -0.6094 194.7461 -1.3438 Q194.3243 -2.0938 194.3243 -3.2344 Q194.3243 -4.375 194.6993 -5.1406 Q195.0899 -5.9062 195.793 -6.2812 Q196.4961 -6.6719 197.418 -6.6719 ZM197.418 -5.4062 Q196.9024 -5.4062 196.5586 -5.0625 Q196.2305 -4.7344 196.168 -4.0156 L198.668 -4.0156 Q198.668 -4.625 198.3555 -5.0156 Q198.0586 -5.4062 197.418 -5.4062 ZM205.4476 -6.6719 Q206.5569 -6.6719 207.2444 -5.8125 Q207.9319 -4.9531 207.9319 -3.2812 Q207.9319 -1.625 207.2132 -0.75 Q206.5101 0.125 205.4007 0.125 Q204.6976 0.125 204.2757 -0.125 Q203.8538 -0.3906 203.5882 -0.7188 L203.4944 -0.7188 Q203.5882 -0.2188 203.5882 0.2344 L203.5882 2.875 L201.8069 2.875 L201.8069 -6.5469 L203.2601 -6.5469 L203.5101 -5.7031 L203.5882 -5.7031 Q203.8538 -6.0938 204.2913 -6.375 Q204.7444 -6.6719 205.4476 -6.6719 ZM204.8851 -5.25 Q204.1819 -5.25 203.9007 -4.8125 Q203.6194 -4.375 203.5882 -3.4844 L203.5882 -3.2969 Q203.5882 -2.3594 203.8694 -1.8438 Q204.1507 -1.3281 204.9007 -1.3281 Q205.5101 -1.3281 205.8069 -1.8438 Q206.1038 -2.3594 206.1038 -3.3125 Q206.1038 -5.25 204.8851 -5.25 ZM215.3561 -3.2812 Q215.3561 -1.6562 214.4967 -0.7656 Q213.6374 0.125 212.1686 0.125 Q211.2467 0.125 210.528 -0.2656 Q209.8249 -0.6719 209.4186 -1.4375 Q209.0124 -2.2031 209.0124 -3.2812 Q209.0124 -4.9219 209.8561 -5.7969 Q210.7155 -6.6719 212.1999 -6.6719 Q213.1217 -6.6719 213.8249 -6.2656 Q214.5436 -5.875 214.9499 -5.125 Q215.3561 -4.375 215.3561 -3.2812 ZM210.8249 -3.2812 Q210.8249 -2.3125 211.1374 -1.8125 Q211.4655 -1.3125 212.1842 -1.3125 Q212.8874 -1.3125 213.1999 -1.8125 Q213.528 -2.3125 213.528 -3.2812 Q213.528 -4.2656 213.1999 -4.75 Q212.8874 -5.2344 212.1686 -5.2344 Q211.4655 -5.2344 211.1374 -4.75 Q210.8249 -4.2656 210.8249 -3.2812 ZM221.4092 -1.9375 Q221.4092 -0.9531 220.7061 -0.4062 Q220.0029 0.125 218.6123 0.125 Q217.9248 0.125 217.4248 0.0312 Q216.9404 -0.0625 216.4404 -0.2656 L216.4404 -1.7344 Q216.9717 -1.5 217.5811 -1.3438 Q218.1904 -1.1875 218.6592 -1.1875 Q219.1904 -1.1875 219.4092 -1.3438 Q219.6436 -1.5 219.6436 -1.75 Q219.6436 -1.9219 219.5498 -2.0469 Q219.4561 -2.1875 219.1592 -2.3438 Q218.8623 -2.5156 218.2217 -2.7812 Q217.6123 -3.0469 217.2061 -3.2969 Q216.8154 -3.5625 216.6279 -3.9219 Q216.4404 -4.2969 216.4404 -4.8438 Q216.4404 -5.7656 217.1436 -6.2188 Q217.8467 -6.6719 219.0186 -6.6719 Q219.6436 -6.6719 220.1904 -6.5469 Q220.7373 -6.4375 221.3311 -6.1562 L220.7842 -4.875 Q220.3154 -5.0781 219.8779 -5.2188 Q219.4404 -5.3594 219.0029 -5.3594 Q218.2061 -5.3594 218.2061 -4.9219 Q218.2061 -4.7656 218.2998 -4.6406 Q218.4092 -4.5156 218.7061 -4.3594 Q219.0029 -4.2188 219.5811 -3.9844 Q220.1436 -3.75 220.5498 -3.5 Q220.9561 -3.2656 221.1748 -2.8906 Q221.4092 -2.5312 221.4092 -1.9375 ZM223.7013 -9.125 Q224.092 -9.125 224.3732 -8.9375 Q224.6701 -8.75 224.6701 -8.25 Q224.6701 -7.75 224.3732 -7.5625 Q224.092 -7.375 223.7013 -7.375 Q223.2795 -7.375 222.9982 -7.5625 Q222.717 -7.75 222.717 -8.25 Q222.717 -8.75 222.9982 -8.9375 Q223.2795 -9.125 223.7013 -9.125 ZM224.5763 -6.5469 L224.5763 0 L222.7951 0 L222.7951 -6.5469 L224.5763 -6.5469 ZM229.2207 -1.3125 Q229.5176 -1.3125 229.7832 -1.3594 Q230.0645 -1.4219 230.3457 -1.5156 L230.3457 -0.1875 Q230.0489 -0.0625 229.627 0.0312 Q229.2051 0.125 228.7051 0.125 Q228.1114 0.125 227.6426 -0.0625 Q227.1895 -0.2656 226.9082 -0.7344 Q226.6426 -1.2188 226.6426 -2.0469 L226.6426 -5.2031 L225.7989 -5.2031 L225.7989 -5.9688 L226.7832 -6.5625 L227.2989 -7.9375 L228.4395 -7.9375 L228.4395 -6.5469 L230.2676 -6.5469 L230.2676 -5.2031 L228.4395 -5.2031 L228.4395 -2.0469 Q228.4395 -1.6875 228.6426 -1.5 Q228.8614 -1.3125 229.2207 -1.3125 ZM237.6163 -3.2812 Q237.6163 -1.6562 236.7569 -0.7656 Q235.8975 0.125 234.4288 0.125 Q233.5069 0.125 232.7881 -0.2656 Q232.085 -0.6719 231.6788 -1.4375 Q231.2725 -2.2031 231.2725 -3.2812 Q231.2725 -4.9219 232.1163 -5.7969 Q232.9756 -6.6719 234.46 -6.6719 Q235.3819 -6.6719 236.085 -6.2656 Q236.8038 -5.875 237.21 -5.125 Q237.6163 -4.375 237.6163 -3.2812 ZM233.085 -3.2812 Q233.085 -2.3125 233.3975 -1.8125 Q233.7256 -1.3125 234.4444 -1.3125 Q235.1475 -1.3125 235.46 -1.8125 Q235.7881 -2.3125 235.7881 -3.2812 Q235.7881 -4.2656 235.46 -4.75 Q235.1475 -5.2344 234.4288 -5.2344 Q233.7256 -5.2344 233.3975 -4.75 Q233.085 -4.2656 233.085 -3.2812 ZM242.7475 -6.6719 Q242.8881 -6.6719 243.06 -6.6562 Q243.2475 -6.6406 243.3568 -6.625 L243.2162 -4.9375 Q243.1381 -4.9688 242.9662 -4.9844 Q242.81 -5 242.685 -5 Q242.2318 -5 241.81 -4.8438 Q241.3881 -4.6875 241.1225 -4.3125 Q240.8725 -3.9531 240.8725 -3.3438 L240.8725 0 L239.0912 0 L239.0912 -6.5469 L240.4506 -6.5469 L240.7162 -5.4531 L240.7943 -5.4531 Q241.0756 -5.9531 241.5756 -6.3125 Q242.0912 -6.6719 242.7475 -6.6719 ZM243.6017 -6.5469 L245.5549 -6.5469 L246.7892 -2.875 Q246.883 -2.6094 246.9299 -2.3281 Q246.9924 -2.0469 247.008 -1.7344 L247.0392 -1.7344 Q247.0861 -2.0469 247.1486 -2.3281 Q247.2111 -2.6094 247.3049 -2.875 L248.508 -6.5469 L250.4299 -6.5469 L247.6642 0.8438 Q247.2892 1.8594 246.5705 2.3594 Q245.8517 2.875 244.9142 2.875 Q244.6174 2.875 244.3986 2.8438 Q244.1799 2.8125 244.008 2.7812 L244.008 1.375 Q244.1486 1.3906 244.3205 1.4062 Q244.508 1.4375 244.7111 1.4375 Q245.2892 1.4375 245.6174 1.0938 Q245.9455 0.75 246.1017 0.2812 L246.2111 -0.0469 L243.6017 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath16);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-704.954" y="-26.0264" width="103.3886" style="clip-path:url(#clipPath2); stroke:none;" height="43.3441"
+      /><rect x="-704.954" y="-26.0264" width="103.3886" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="43.3441"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><line x1="-704.954" x2="-601.5654" y1="6.3177" style="fill:none; clip-path:url(#clipPath2);" y2="6.3177"
+      /><line x1="-704.954" x2="-601.5654" y1="-1.6823" style="fill:none; clip-path:url(#clipPath2);" y2="-1.6823"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-694.954,-8.0264)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath17);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="stroke-linecap:butt; fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke-dasharray:3,3; stroke:rgb(255,255,204); font-weight:bold;"
+    ><rect x="-628.7654" y="-41.3705" width="34" style="clip-path:url(#clipPath2); stroke:none;" height="20.3441"
+      /><rect x="-628.7654" y="-41.3705" width="34" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="20.3441"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:3,3; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-611.7573,-25.3705)"
+    ><path d="M3.5781 0 L0.4844 0 L0.4844 -0.625 L1.4844 -0.8594 L1.4844 -7.7031 L0.4844 -7.9375 L0.4844 -8.5625 L3.5781 -8.5625 L3.5781 -7.9375 L2.5625 -7.7031 L2.5625 -0.8594 L3.5781 -0.625 L3.5781 0 ZM12.0993 -4.375 Q12.0993 -2.2031 10.9118 -1.0938 Q9.7243 0 7.6149 0 L5.2243 0 L5.2243 -8.5625 L7.8649 -8.5625 Q9.1618 -8.5625 10.1149 -8.0781 Q11.068 -7.6094 11.5836 -6.6719 Q12.0993 -5.75 12.0993 -4.375 ZM10.9586 -4.3281 Q10.9586 -6.0469 10.1149 -6.8438 Q9.2711 -7.6406 7.7086 -7.6406 L6.318 -7.6406 L6.318 -0.9219 L7.4743 -0.9219 Q10.9586 -0.9219 10.9586 -4.3281 Z" style="stroke:none; clip-path:url(#clipPath18);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:3,3; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-624.7654,-25.3705)"
+    ><path d="M3.875 0 L2.7969 0 L2.7969 -7.625 L0.125 -7.625 L0.125 -8.5625 L6.5469 -8.5625 L6.5469 -7.625 L3.875 -7.625 L3.875 0 ZM8.9689 -1.2656 Q8.8127 -0.625 8.5158 0.1406 Q8.2345 0.9062 7.9377 1.5469 L7.1564 1.5469 Q7.3283 0.8594 7.5002 0.0469 Q7.6877 -0.7656 7.7658 -1.3906 L8.8908 -1.3906 L8.9689 -1.2656 Z" style="stroke:none; clip-path:url(#clipPath19);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="698.1206" y="-865.4389" width="61.3895" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="698.1206" y="-865.4389" width="61.3895" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="698.1206" y="-850.4389" width="153.4738" style="clip-path:url(#clipPath2); stroke:none;" height="182.1484"
+      /><rect x="698.1206" y="-850.4389" width="153.4738" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="182.1484"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(765.3575,-831.4389)"
+    ><path d="M3.625 -6.6875 Q4.9375 -6.6875 5.6406 -6.1094 Q6.3438 -5.5469 6.3438 -4.375 L6.3438 0 L5.0938 0 L4.75 -0.8906 L4.7031 -0.8906 Q4.2812 -0.3594 3.8125 -0.1094 Q3.3438 0.125 2.5312 0.125 Q1.6562 0.125 1.0781 -0.3906 Q0.5 -0.9062 0.5 -1.9531 Q0.5 -3 1.2344 -3.5 Q1.9688 -4 3.4375 -4.0469 L4.5781 -4.0781 L4.5781 -4.375 Q4.5781 -4.8906 4.2969 -5.125 Q4.0312 -5.3594 3.5469 -5.3594 Q3.0781 -5.3594 2.6094 -5.2188 Q2.1562 -5.0938 1.7031 -4.8906 L1.1094 -6.0938 Q1.6406 -6.375 2.2812 -6.5312 Q2.9219 -6.6875 3.625 -6.6875 ZM3.875 -3.0156 Q3.0156 -2.9844 2.6719 -2.6875 Q2.3438 -2.4062 2.3438 -1.9375 Q2.3438 -1.5312 2.5781 -1.3594 Q2.8125 -1.1875 3.2031 -1.1875 Q3.7812 -1.1875 4.1719 -1.5312 Q4.5781 -1.875 4.5781 -2.5 L4.5781 -3.0312 L3.875 -3.0156 ZM11.8262 -6.6719 Q12.9355 -6.6719 13.623 -5.8125 Q14.3105 -4.9531 14.3105 -3.2812 Q14.3105 -1.625 13.5918 -0.75 Q12.8887 0.125 11.7793 0.125 Q11.0762 0.125 10.6543 -0.125 Q10.2324 -0.3906 9.9668 -0.7188 L9.873 -0.7188 Q9.9668 -0.2188 9.9668 0.2344 L9.9668 2.875 L8.1855 2.875 L8.1855 -6.5469 L9.6387 -6.5469 L9.8887 -5.7031 L9.9668 -5.7031 Q10.2324 -6.0938 10.6699 -6.375 Q11.123 -6.6719 11.8262 -6.6719 ZM11.2637 -5.25 Q10.5605 -5.25 10.2793 -4.8125 Q9.998 -4.375 9.9668 -3.4844 L9.9668 -3.2969 Q9.9668 -2.3594 10.248 -1.8438 Q10.5293 -1.3281 11.2793 -1.3281 Q11.8887 -1.3281 12.1855 -1.8438 Q12.4824 -2.3594 12.4824 -3.3125 Q12.4824 -5.25 11.2637 -5.25 ZM16.6879 -9.125 Q17.0785 -9.125 17.3597 -8.9375 Q17.6566 -8.75 17.6566 -8.25 Q17.6566 -7.75 17.3597 -7.5625 Q17.0785 -7.375 16.6879 -7.375 Q16.266 -7.375 15.9847 -7.5625 Q15.7035 -7.75 15.7035 -8.25 Q15.7035 -8.75 15.9847 -8.9375 Q16.266 -9.125 16.6879 -9.125 ZM17.5629 -6.5469 L17.5629 0 L15.7816 0 L15.7816 -6.5469 L17.5629 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath20);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="736.6933" y="-713.2905" width="76.3284" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="736.6933" y="-713.2905" width="76.3284" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(746.6933,-695.2905)"
+    ><path d="M4.375 0 L2.5625 0 L2.5625 -7.0625 L0.2344 -7.0625 L0.2344 -8.5625 L6.7031 -8.5625 L6.7031 -7.0625 L4.375 -7.0625 L4.375 0 ZM13.8387 -3.2812 Q13.8387 -1.6562 12.9793 -0.7656 Q12.1199 0.125 10.6512 0.125 Q9.7293 0.125 9.0105 -0.2656 Q8.3074 -0.6719 7.9012 -1.4375 Q7.4949 -2.2031 7.4949 -3.2812 Q7.4949 -4.9219 8.3387 -5.7969 Q9.198 -6.6719 10.6824 -6.6719 Q11.6043 -6.6719 12.3074 -6.2656 Q13.0262 -5.875 13.4324 -5.125 Q13.8387 -4.375 13.8387 -3.2812 ZM9.3074 -3.2812 Q9.3074 -2.3125 9.6199 -1.8125 Q9.948 -1.3125 10.6668 -1.3125 Q11.3699 -1.3125 11.6824 -1.8125 Q12.0105 -2.3125 12.0105 -3.2812 Q12.0105 -4.2656 11.6824 -4.75 Q11.3699 -5.2344 10.6512 -5.2344 Q9.948 -5.2344 9.6199 -4.75 Q9.3074 -4.2656 9.3074 -3.2812 ZM17.0948 -5.0469 Q17.0948 -4.6719 17.0636 -4.2969 Q17.0323 -3.9375 17.0011 -3.5625 L17.0323 -3.5625 Q17.2042 -3.8125 17.3917 -4.0625 Q17.5948 -4.3281 17.8136 -4.5625 L19.6417 -6.5469 L21.6573 -6.5469 L19.0636 -3.7031 L21.8136 0 L19.7511 0 L17.8605 -2.6562 L17.0948 -2.0469 L17.0948 0 L15.3136 0 L15.3136 -9.125 L17.0948 -9.125 L17.0948 -5.0469 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1911 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4411 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0036 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1286 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9411 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM33.5645 -6.6719 Q34.627 -6.6719 35.252 -6.0938 Q35.8926 -5.5312 35.8926 -4.2656 L35.8926 0 L34.1113 0 L34.1113 -3.8281 Q34.1113 -4.5312 33.8457 -4.8906 Q33.5957 -5.25 33.0488 -5.25 Q32.2363 -5.25 31.9238 -4.6875 Q31.627 -4.125 31.627 -3.0781 L31.627 0 L29.8457 0 L29.8457 -6.5469 L31.2051 -6.5469 L31.4551 -5.7188 L31.5488 -5.7188 Q31.8613 -6.2188 32.4082 -6.4375 Q32.9551 -6.6719 33.5645 -6.6719 ZM43.1204 0 L42.4954 -2.0469 L39.3704 -2.0469 L38.7454 0 L36.7923 0 L39.8235 -8.6094 L42.0423 -8.6094 L45.0735 0 L43.1204 0 ZM41.4329 -5.5625 Q41.3704 -5.7656 41.2766 -6.0781 Q41.1829 -6.3906 41.0891 -6.7031 Q40.9954 -7.0312 40.9329 -7.2656 Q40.8704 -7.0312 40.761 -6.6719 Q40.6673 -6.3281 40.5735 -6 Q40.4954 -5.6875 40.4329 -5.5625 L39.8235 -3.5625 L42.0579 -3.5625 L41.4329 -5.5625 ZM49.6504 -6.6719 Q50.7598 -6.6719 51.4473 -5.8125 Q52.1348 -4.9531 52.1348 -3.2812 Q52.1348 -1.625 51.4161 -0.75 Q50.7129 0.125 49.6036 0.125 Q48.9004 0.125 48.4786 -0.125 Q48.0567 -0.3906 47.7911 -0.7188 L47.6973 -0.7188 Q47.7911 -0.2188 47.7911 0.2344 L47.7911 2.875 L46.0098 2.875 L46.0098 -6.5469 L47.4629 -6.5469 L47.7129 -5.7031 L47.7911 -5.7031 Q48.0567 -6.0938 48.4942 -6.375 Q48.9473 -6.6719 49.6504 -6.6719 ZM49.0879 -5.25 Q48.3848 -5.25 48.1036 -4.8125 Q47.8223 -4.375 47.7911 -3.4844 L47.7911 -3.2969 Q47.7911 -2.3594 48.0723 -1.8438 Q48.3536 -1.3281 49.1036 -1.3281 Q49.7129 -1.3281 50.0098 -1.8438 Q50.3067 -2.3594 50.3067 -3.3125 Q50.3067 -5.25 49.0879 -5.25 ZM54.5121 -9.125 Q54.9027 -9.125 55.184 -8.9375 Q55.4809 -8.75 55.4809 -8.25 Q55.4809 -7.75 55.184 -7.5625 Q54.9027 -7.375 54.5121 -7.375 Q54.0902 -7.375 53.809 -7.5625 Q53.5277 -7.75 53.5277 -8.25 Q53.5277 -8.75 53.809 -8.9375 Q54.0902 -9.125 54.5121 -9.125 ZM55.3871 -6.5469 L55.3871 0 L53.6059 0 L53.6059 -6.5469 L55.3871 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath21);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="774.5626" x2="774.5626" y1="-233.5502" style="fill:none; clip-path:url(#clipPath2);" y2="-668.2905"
+      /><line x1="774.5626" x2="768.5626" y1="-233.5502" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-243.9425"
+      /><line x1="774.5626" x2="780.5626" y1="-233.5502" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-243.9425"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="61.9222" y="-864.5778" width="186.258" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="61.9222" y="-864.5778" width="186.258" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="61.9222" y="-849.5778" width="465.645" style="clip-path:url(#clipPath2); stroke:none;" height="125.1772"
+      /><rect x="61.9222" y="-849.5778" width="465.645" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="125.1772"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(262.0504,-830.5778)"
+    ><path d="M3.5938 0.125 Q2.1406 0.125 1.3438 -0.6875 Q0.5469 -1.5 0.5469 -3.2344 Q0.5469 -4.4375 0.9531 -5.1875 Q1.3594 -5.9531 2.0781 -6.3125 Q2.8125 -6.6719 3.75 -6.6719 Q4.4219 -6.6719 4.9219 -6.5312 Q5.4219 -6.4062 5.7969 -6.2344 L5.2656 -4.8438 Q4.8438 -5.0156 4.4688 -5.125 Q4.1094 -5.2344 3.75 -5.2344 Q2.3594 -5.2344 2.3594 -3.25 Q2.3594 -2.2656 2.7188 -1.7969 Q3.0938 -1.3281 3.75 -1.3281 Q4.3125 -1.3281 4.75 -1.4688 Q5.1875 -1.625 5.5938 -1.8906 L5.5938 -0.375 Q5.1875 -0.1094 4.7344 0 Q4.2812 0.125 3.5938 0.125 ZM13.0587 -3.2812 Q13.0587 -1.6562 12.1993 -0.7656 Q11.3399 0.125 9.8712 0.125 Q8.9493 0.125 8.2305 -0.2656 Q7.5274 -0.6719 7.1212 -1.4375 Q6.7149 -2.2031 6.7149 -3.2812 Q6.7149 -4.9219 7.5587 -5.7969 Q8.418 -6.6719 9.9024 -6.6719 Q10.8243 -6.6719 11.5274 -6.2656 Q12.2462 -5.875 12.6524 -5.125 Q13.0587 -4.375 13.0587 -3.2812 ZM8.5274 -3.2812 Q8.5274 -2.3125 8.8399 -1.8125 Q9.168 -1.3125 9.8868 -1.3125 Q10.5899 -1.3125 10.9024 -1.8125 Q11.2305 -2.3125 11.2305 -3.2812 Q11.2305 -4.2656 10.9024 -4.75 Q10.5899 -5.2344 9.8712 -5.2344 Q9.168 -5.2344 8.8399 -4.75 Q8.5274 -4.2656 8.5274 -3.2812 ZM18.2523 -6.6719 Q19.3148 -6.6719 19.9398 -6.0938 Q20.5805 -5.5312 20.5805 -4.2656 L20.5805 0 L18.7992 0 L18.7992 -3.8281 Q18.7992 -4.5312 18.5336 -4.8906 Q18.2836 -5.25 17.7367 -5.25 Q16.9242 -5.25 16.6117 -4.6875 Q16.3148 -4.125 16.3148 -3.0781 L16.3148 0 L14.5336 0 L14.5336 -6.5469 L15.893 -6.5469 L16.143 -5.7188 L16.2367 -5.7188 Q16.5492 -6.2188 17.0961 -6.4375 Q17.643 -6.6719 18.2523 -6.6719 ZM25.1833 -1.3125 Q25.4801 -1.3125 25.7458 -1.3594 Q26.027 -1.4219 26.3083 -1.5156 L26.3083 -0.1875 Q26.0114 -0.0625 25.5895 0.0312 Q25.1676 0.125 24.6676 0.125 Q24.0739 0.125 23.6051 -0.0625 Q23.152 -0.2656 22.8708 -0.7344 Q22.6051 -1.2188 22.6051 -2.0469 L22.6051 -5.2031 L21.7614 -5.2031 L21.7614 -5.9688 L22.7458 -6.5625 L23.2614 -7.9375 L24.402 -7.9375 L24.402 -6.5469 L26.2301 -6.5469 L26.2301 -5.2031 L24.402 -5.2031 L24.402 -2.0469 Q24.402 -1.6875 24.6051 -1.5 Q24.8239 -1.3125 25.1833 -1.3125 ZM31.2819 -6.6719 Q31.4226 -6.6719 31.5944 -6.6562 Q31.7819 -6.6406 31.8913 -6.625 L31.7507 -4.9375 Q31.6726 -4.9688 31.5007 -4.9844 Q31.3444 -5 31.2194 -5 Q30.7663 -5 30.3444 -4.8438 Q29.9226 -4.6875 29.6569 -4.3125 Q29.4069 -3.9531 29.4069 -3.3438 L29.4069 0 L27.6257 0 L27.6257 -6.5469 L28.9851 -6.5469 L29.2507 -5.4531 L29.3288 -5.4531 Q29.6101 -5.9531 30.1101 -6.3125 Q30.6257 -6.6719 31.2819 -6.6719 ZM39.0269 -3.2812 Q39.0269 -1.6562 38.1675 -0.7656 Q37.3081 0.125 35.8394 0.125 Q34.9175 0.125 34.1987 -0.2656 Q33.4956 -0.6719 33.0894 -1.4375 Q32.6831 -2.2031 32.6831 -3.2812 Q32.6831 -4.9219 33.5269 -5.7969 Q34.3862 -6.6719 35.8706 -6.6719 Q36.7925 -6.6719 37.4956 -6.2656 Q38.2144 -5.875 38.6206 -5.125 Q39.0269 -4.375 39.0269 -3.2812 ZM34.4956 -3.2812 Q34.4956 -2.3125 34.8081 -1.8125 Q35.1362 -1.3125 35.855 -1.3125 Q36.5581 -1.3125 36.8706 -1.8125 Q37.1987 -2.3125 37.1987 -3.2812 Q37.1987 -4.2656 36.8706 -4.75 Q36.5581 -5.2344 35.8394 -5.2344 Q35.1362 -5.2344 34.8081 -4.75 Q34.4956 -4.2656 34.4956 -3.2812 ZM42.283 0 L40.5018 0 L40.5018 -9.125 L42.283 -9.125 L42.283 0 ZM45.9431 0 L44.1618 0 L44.1618 -9.125 L45.9431 -9.125 L45.9431 0 ZM50.5249 -6.6719 Q51.8687 -6.6719 52.6656 -5.8906 Q53.4624 -5.125 53.4624 -3.7031 L53.4624 -2.8281 L49.2437 -2.8281 Q49.2593 -2.0781 49.6812 -1.6406 Q50.1187 -1.2188 50.8687 -1.2188 Q51.5093 -1.2188 52.0249 -1.3438 Q52.5406 -1.4688 53.0874 -1.7344 L53.0874 -0.3438 Q52.6031 -0.1094 52.0718 0 Q51.5406 0.125 50.7906 0.125 Q49.8062 0.125 49.0406 -0.2344 Q48.2906 -0.6094 47.8531 -1.3438 Q47.4312 -2.0938 47.4312 -3.2344 Q47.4312 -4.375 47.8062 -5.1406 Q48.1968 -5.9062 48.8999 -6.2812 Q49.6031 -6.6719 50.5249 -6.6719 ZM50.5249 -5.4062 Q50.0093 -5.4062 49.6656 -5.0625 Q49.3374 -4.7344 49.2749 -4.0156 L51.7749 -4.0156 Q51.7749 -4.625 51.4624 -5.0156 Q51.1656 -5.4062 50.5249 -5.4062 ZM58.5701 -6.6719 Q58.7108 -6.6719 58.8826 -6.6562 Q59.0701 -6.6406 59.1795 -6.625 L59.0389 -4.9375 Q58.9608 -4.9688 58.7889 -4.9844 Q58.6326 -5 58.5076 -5 Q58.0545 -5 57.6326 -4.8438 Q57.2108 -4.6875 56.9451 -4.3125 Q56.6951 -3.9531 56.6951 -3.3438 L56.6951 0 L54.9139 0 L54.9139 -6.5469 L56.2733 -6.5469 L56.5389 -5.4531 L56.617 -5.4531 Q56.8983 -5.9531 57.3983 -6.3125 Q57.9139 -6.6719 58.5701 -6.6719 ZM64.94 -1.9375 Q64.94 -0.9531 64.2369 -0.4062 Q63.5338 0.125 62.1432 0.125 Q61.4557 0.125 60.9557 0.0312 Q60.4713 -0.0625 59.9713 -0.2656 L59.9713 -1.7344 Q60.5025 -1.5 61.1119 -1.3438 Q61.7213 -1.1875 62.19 -1.1875 Q62.7213 -1.1875 62.94 -1.3438 Q63.1744 -1.5 63.1744 -1.75 Q63.1744 -1.9219 63.0807 -2.0469 Q62.9869 -2.1875 62.69 -2.3438 Q62.3932 -2.5156 61.7525 -2.7812 Q61.1432 -3.0469 60.7369 -3.2969 Q60.3463 -3.5625 60.1588 -3.9219 Q59.9713 -4.2969 59.9713 -4.8438 Q59.9713 -5.7656 60.6744 -6.2188 Q61.3775 -6.6719 62.5494 -6.6719 Q63.1744 -6.6719 63.7213 -6.5469 Q64.2682 -6.4375 64.8619 -6.1562 L64.315 -4.875 Q63.8463 -5.0781 63.4088 -5.2188 Q62.9713 -5.3594 62.5338 -5.3594 Q61.7369 -5.3594 61.7369 -4.9219 Q61.7369 -4.7656 61.8307 -4.6406 Q61.94 -4.5156 62.2369 -4.3594 Q62.5338 -4.2188 63.1119 -3.9844 Q63.6744 -3.75 64.0807 -3.5 Q64.4869 -3.2656 64.7057 -2.8906 Q64.94 -2.5312 64.94 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath22);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="223.5897" y="-780.3166" width="116.0487" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="223.5897" y="-780.3166" width="116.0487" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(240.4358,-762.3166)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM30.8576 -6.5469 Q32.0138 -6.5469 32.5919 -5.9844 Q33.1857 -5.4375 33.1857 -4.1875 L33.1857 0 L32.1544 0 L32.1544 -4.1094 Q32.1544 -5.6562 30.7013 -5.6562 Q29.6388 -5.6562 29.2326 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1544 -6.0625 29.7013 -6.2969 Q30.2482 -6.5469 30.8576 -6.5469 ZM37.3361 -0.75 Q37.5705 -0.75 37.8205 -0.7812 Q38.0705 -0.8281 38.2267 -0.875 L38.2267 -0.0781 Q38.0705 0.0156 37.758 0.0625 Q37.4455 0.125 37.1486 0.125 Q36.6486 0.125 36.2111 -0.0469 Q35.7892 -0.2344 35.5236 -0.6562 Q35.2736 -1.0938 35.2736 -1.875 L35.2736 -5.6094 L34.3517 -5.6094 L34.3517 -6.125 L35.2736 -6.5469 L35.6955 -7.9062 L36.3205 -7.9062 L36.3205 -6.4375 L38.1799 -6.4375 L38.1799 -5.6094 L36.3205 -5.6094 L36.3205 -1.8906 Q36.3205 -1.3125 36.6017 -1.0312 Q36.883 -0.75 37.3361 -0.75 ZM42.5119 -6.5469 Q42.6994 -6.5469 42.9025 -6.5312 Q43.1213 -6.5156 43.2775 -6.4844 L43.1369 -5.5156 Q42.9806 -5.5469 42.7931 -5.5625 Q42.6056 -5.5938 42.4494 -5.5938 Q41.9494 -5.5938 41.5119 -5.3125 Q41.09 -5.0469 40.8244 -4.5625 Q40.5744 -4.0781 40.5744 -3.4375 L40.5744 0 L39.5119 0 L39.5119 -6.4375 L40.3869 -6.4375 L40.4963 -5.25 L40.5431 -5.25 Q40.8556 -5.7812 41.34 -6.1562 Q41.84 -6.5469 42.5119 -6.5469 ZM50.0617 -3.2344 Q50.0617 -1.625 49.2492 -0.75 Q48.4367 0.125 47.0617 0.125 Q46.2179 0.125 45.5461 -0.2656 Q44.8742 -0.6562 44.4836 -1.4062 Q44.1086 -2.1562 44.1086 -3.2344 Q44.1086 -4.8281 44.9054 -5.6875 Q45.7179 -6.5469 47.0929 -6.5469 Q47.9836 -6.5469 48.6398 -6.1562 Q49.3117 -5.7656 49.6867 -5.0312 Q50.0617 -4.2969 50.0617 -3.2344 ZM45.2023 -3.2344 Q45.2023 -2.0938 45.6554 -1.4219 Q46.1086 -0.75 47.0929 -0.75 Q48.0617 -0.75 48.5148 -1.4219 Q48.9679 -2.0938 48.9679 -3.2344 Q48.9679 -4.375 48.5148 -5.0156 Q48.0617 -5.6562 47.0773 -5.6562 Q46.0929 -5.6562 45.6398 -5.0156 Q45.2023 -4.375 45.2023 -3.2344 ZM52.7905 0 L51.728 0 L51.728 -9.125 L52.7905 -9.125 L52.7905 0 ZM55.8865 0 L54.824 0 L54.824 -9.125 L55.8865 -9.125 L55.8865 0 ZM60.4044 -6.5469 Q61.2325 -6.5469 61.8263 -6.1875 Q62.42 -5.8281 62.7325 -5.1719 Q63.0607 -4.5312 63.0607 -3.6406 L63.0607 -3.0156 L58.6544 -3.0156 Q58.6857 -1.9219 59.2169 -1.3438 Q59.7482 -0.7812 60.7013 -0.7812 Q61.3263 -0.7812 61.795 -0.8906 Q62.2638 -1.0156 62.7794 -1.2188 L62.7794 -0.2969 Q62.2794 -0.0781 61.795 0.0156 Q61.3263 0.125 60.6544 0.125 Q59.7482 0.125 59.045 -0.25 Q58.3419 -0.625 57.9513 -1.3594 Q57.5607 -2.0938 57.5607 -3.1719 Q57.5607 -4.2188 57.92 -4.9688 Q58.2794 -5.7344 58.92 -6.1406 Q59.5607 -6.5469 60.4044 -6.5469 ZM60.3888 -5.6875 Q59.6388 -5.6875 59.2013 -5.2031 Q58.7638 -4.7188 58.6857 -3.8594 L61.9513 -3.8594 Q61.9513 -4.6719 61.5763 -5.1719 Q61.2013 -5.6875 60.3888 -5.6875 ZM67.6881 -6.5469 Q67.8756 -6.5469 68.0787 -6.5312 Q68.2975 -6.5156 68.4537 -6.4844 L68.3131 -5.5156 Q68.1568 -5.5469 67.9693 -5.5625 Q67.7818 -5.5938 67.6256 -5.5938 Q67.1256 -5.5938 66.6881 -5.3125 Q66.2662 -5.0469 66.0006 -4.5625 Q65.7506 -4.0781 65.7506 -3.4375 L65.7506 0 L64.6881 0 L64.6881 -6.4375 L65.5631 -6.4375 L65.6725 -5.25 L65.7193 -5.25 Q66.0318 -5.7812 66.5162 -6.1562 Q67.0162 -6.5469 67.6881 -6.5469 ZM69.2222 -2.3281 L73.7535 -4.2188 L69.2222 -6.3594 L69.2222 -7.2969 L74.8785 -4.4688 L74.8785 -3.875 L69.2222 -1.3906 L69.2222 -2.3281 ZM76.0863 -2.3281 L80.6175 -4.2188 L76.0863 -6.3594 L76.0863 -7.2969 L81.7425 -4.4688 L81.7425 -3.875 L76.0863 -1.3906 L76.0863 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath23);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(233.5897,-745.9725)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 ZM39.867 -7.1719 Q38.8201 -7.1719 38.2576 -6.3906 Q37.7107 -5.6094 37.7107 -4.2656 Q37.7107 -2.8906 38.2264 -2.1406 Q38.742 -1.3906 39.867 -1.3906 Q40.3982 -1.3906 40.9139 -1.5 Q41.4295 -1.625 42.0545 -1.8438 L42.0545 -0.3281 Q41.492 -0.0938 40.9295 0.0156 Q40.3826 0.125 39.6951 0.125 Q38.3826 0.125 37.5232 -0.4219 Q36.6639 -0.9688 36.2576 -1.9531 Q35.8514 -2.9531 35.8514 -4.2656 Q35.8514 -5.5625 36.3045 -6.5625 Q36.7732 -7.5625 37.6639 -8.125 Q38.5701 -8.6875 39.867 -8.6875 Q40.5076 -8.6875 41.1482 -8.5156 Q41.7889 -8.3594 42.367 -8.0938 L41.7889 -6.6094 Q41.3045 -6.8438 40.8201 -7 Q40.3357 -7.1719 39.867 -7.1719 ZM49.6829 -3.2812 Q49.6829 -1.6562 48.8235 -0.7656 Q47.9642 0.125 46.4954 0.125 Q45.5735 0.125 44.8548 -0.2656 Q44.1517 -0.6719 43.7454 -1.4375 Q43.3392 -2.2031 43.3392 -3.2812 Q43.3392 -4.9219 44.1829 -5.7969 Q45.0423 -6.6719 46.5267 -6.6719 Q47.4485 -6.6719 48.1517 -6.2656 Q48.8704 -5.875 49.2767 -5.125 Q49.6829 -4.375 49.6829 -3.2812 ZM45.1517 -3.2812 Q45.1517 -2.3125 45.4642 -1.8125 Q45.7923 -1.3125 46.511 -1.3125 Q47.2142 -1.3125 47.5267 -1.8125 Q47.8548 -2.3125 47.8548 -3.2812 Q47.8548 -4.2656 47.5267 -4.75 Q47.2142 -5.2344 46.4954 -5.2344 Q45.7923 -5.2344 45.4642 -4.75 Q45.1517 -4.2656 45.1517 -3.2812 ZM54.8766 -6.6719 Q55.9391 -6.6719 56.5641 -6.0938 Q57.2047 -5.5312 57.2047 -4.2656 L57.2047 0 L55.4235 0 L55.4235 -3.8281 Q55.4235 -4.5312 55.1579 -4.8906 Q54.9079 -5.25 54.361 -5.25 Q53.5485 -5.25 53.236 -4.6875 Q52.9391 -4.125 52.9391 -3.0781 L52.9391 0 L51.1579 0 L51.1579 -6.5469 L52.5172 -6.5469 L52.7672 -5.7188 L52.861 -5.7188 Q53.1735 -6.2188 53.7204 -6.4375 Q54.2672 -6.6719 54.8766 -6.6719 ZM61.8075 -1.3125 Q62.1044 -1.3125 62.37 -1.3594 Q62.6513 -1.4219 62.9325 -1.5156 L62.9325 -0.1875 Q62.6357 -0.0625 62.2138 0.0312 Q61.7919 0.125 61.2919 0.125 Q60.6982 0.125 60.2294 -0.0625 Q59.7763 -0.2656 59.495 -0.7344 Q59.2294 -1.2188 59.2294 -2.0469 L59.2294 -5.2031 L58.3857 -5.2031 L58.3857 -5.9688 L59.37 -6.5625 L59.8857 -7.9375 L61.0263 -7.9375 L61.0263 -6.5469 L62.8544 -6.5469 L62.8544 -5.2031 L61.0263 -5.2031 L61.0263 -2.0469 Q61.0263 -1.6875 61.2294 -1.5 Q61.4482 -1.3125 61.8075 -1.3125 ZM67.9062 -6.6719 Q68.0468 -6.6719 68.2187 -6.6562 Q68.4062 -6.6406 68.5156 -6.625 L68.3749 -4.9375 Q68.2968 -4.9688 68.1249 -4.9844 Q67.9687 -5 67.8437 -5 Q67.3906 -5 66.9687 -4.8438 Q66.5468 -4.6875 66.2812 -4.3125 Q66.0312 -3.9531 66.0312 -3.3438 L66.0312 0 L64.2499 0 L64.2499 -6.5469 L65.6093 -6.5469 L65.8749 -5.4531 L65.9531 -5.4531 Q66.2343 -5.9531 66.7343 -6.3125 Q67.2499 -6.6719 67.9062 -6.6719 ZM75.6511 -3.2812 Q75.6511 -1.6562 74.7917 -0.7656 Q73.9324 0.125 72.4636 0.125 Q71.5417 0.125 70.823 -0.2656 Q70.1199 -0.6719 69.7136 -1.4375 Q69.3074 -2.2031 69.3074 -3.2812 Q69.3074 -4.9219 70.1511 -5.7969 Q71.0105 -6.6719 72.4949 -6.6719 Q73.4167 -6.6719 74.1199 -6.2656 Q74.8386 -5.875 75.2449 -5.125 Q75.6511 -4.375 75.6511 -3.2812 ZM71.1199 -3.2812 Q71.1199 -2.3125 71.4324 -1.8125 Q71.7605 -1.3125 72.4792 -1.3125 Q73.1824 -1.3125 73.4949 -1.8125 Q73.823 -2.3125 73.823 -3.2812 Q73.823 -4.2656 73.4949 -4.75 Q73.1824 -5.2344 72.4636 -5.2344 Q71.7605 -5.2344 71.4324 -4.75 Q71.1199 -4.2656 71.1199 -3.2812 ZM78.9073 0 L77.126 0 L77.126 -9.125 L78.9073 -9.125 L78.9073 0 ZM82.5673 0 L80.7861 0 L80.7861 -9.125 L82.5673 -9.125 L82.5673 0 ZM87.1492 -6.6719 Q88.493 -6.6719 89.2898 -5.8906 Q90.0867 -5.125 90.0867 -3.7031 L90.0867 -2.8281 L85.868 -2.8281 Q85.8836 -2.0781 86.3055 -1.6406 Q86.743 -1.2188 87.493 -1.2188 Q88.1336 -1.2188 88.6492 -1.3438 Q89.1648 -1.4688 89.7117 -1.7344 L89.7117 -0.3438 Q89.2273 -0.1094 88.6961 0 Q88.1648 0.125 87.4148 0.125 Q86.4305 0.125 85.6648 -0.2344 Q84.9148 -0.6094 84.4773 -1.3438 Q84.0555 -2.0938 84.0555 -3.2344 Q84.0555 -4.375 84.4305 -5.1406 Q84.8211 -5.9062 85.5242 -6.2812 Q86.2273 -6.6719 87.1492 -6.6719 ZM87.1492 -5.4062 Q86.6336 -5.4062 86.2898 -5.0625 Q85.9617 -4.7344 85.8992 -4.0156 L88.3992 -4.0156 Q88.3992 -4.625 88.0867 -5.0156 Q87.7898 -5.4062 87.1492 -5.4062 ZM95.1944 -6.6719 Q95.335 -6.6719 95.5069 -6.6562 Q95.6944 -6.6406 95.8038 -6.625 L95.6631 -4.9375 Q95.585 -4.9688 95.4131 -4.9844 Q95.2569 -5 95.1319 -5 Q94.6788 -5 94.2569 -4.8438 Q93.835 -4.6875 93.5694 -4.3125 Q93.3194 -3.9531 93.3194 -3.3438 L93.3194 0 L91.5381 0 L91.5381 -6.5469 L92.8975 -6.5469 L93.1631 -5.4531 L93.2413 -5.4531 Q93.5225 -5.9531 94.0225 -6.3125 Q94.5381 -6.6719 95.1944 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath24);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="866.1694" y="-627.3288" width="92.3095" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="866.1694" y="-627.3288" width="92.3095" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="866.1694" y="-612.3288" width="230.7737" style="clip-path:url(#clipPath2); stroke:none;" height="315.2574"
+      /><rect x="866.1694" y="-612.3288" width="230.7737" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="315.2574"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(962.5563,-593.3288)"
+    ><path d="M3.5938 0.125 Q2.1406 0.125 1.3438 -0.6875 Q0.5469 -1.5 0.5469 -3.2344 Q0.5469 -4.4375 0.9531 -5.1875 Q1.3594 -5.9531 2.0781 -6.3125 Q2.8125 -6.6719 3.75 -6.6719 Q4.4219 -6.6719 4.9219 -6.5312 Q5.4219 -6.4062 5.7969 -6.2344 L5.2656 -4.8438 Q4.8438 -5.0156 4.4688 -5.125 Q4.1094 -5.2344 3.75 -5.2344 Q2.3594 -5.2344 2.3594 -3.25 Q2.3594 -2.2656 2.7188 -1.7969 Q3.0938 -1.3281 3.75 -1.3281 Q4.3125 -1.3281 4.75 -1.4688 Q5.1875 -1.625 5.5938 -1.8906 L5.5938 -0.375 Q5.1875 -0.1094 4.7344 0 Q4.2812 0.125 3.5938 0.125 ZM13.0587 -3.2812 Q13.0587 -1.6562 12.1993 -0.7656 Q11.3399 0.125 9.8712 0.125 Q8.9493 0.125 8.2305 -0.2656 Q7.5274 -0.6719 7.1212 -1.4375 Q6.7149 -2.2031 6.7149 -3.2812 Q6.7149 -4.9219 7.5587 -5.7969 Q8.418 -6.6719 9.9024 -6.6719 Q10.8243 -6.6719 11.5274 -6.2656 Q12.2462 -5.875 12.6524 -5.125 Q13.0587 -4.375 13.0587 -3.2812 ZM8.5274 -3.2812 Q8.5274 -2.3125 8.8399 -1.8125 Q9.168 -1.3125 9.8868 -1.3125 Q10.5899 -1.3125 10.9024 -1.8125 Q11.2305 -2.3125 11.2305 -3.2812 Q11.2305 -4.2656 10.9024 -4.75 Q10.5899 -5.2344 9.8712 -5.2344 Q9.168 -5.2344 8.8399 -4.75 Q8.5274 -4.2656 8.5274 -3.2812 ZM18.2523 -6.6719 Q19.3148 -6.6719 19.9398 -6.0938 Q20.5805 -5.5312 20.5805 -4.2656 L20.5805 0 L18.7992 0 L18.7992 -3.8281 Q18.7992 -4.5312 18.5336 -4.8906 Q18.2836 -5.25 17.7367 -5.25 Q16.9242 -5.25 16.6117 -4.6875 Q16.3148 -4.125 16.3148 -3.0781 L16.3148 0 L14.5336 0 L14.5336 -6.5469 L15.893 -6.5469 L16.143 -5.7188 L16.2367 -5.7188 Q16.5492 -6.2188 17.0961 -6.4375 Q17.643 -6.6719 18.2523 -6.6719 ZM26.0426 -5.2031 L24.4958 -5.2031 L24.4958 0 L22.6989 0 L22.6989 -5.2031 L21.7145 -5.2031 L21.7145 -6.0781 L22.6989 -6.5469 L22.6989 -7.0312 Q22.6989 -7.875 22.9801 -8.3281 Q23.2614 -8.7969 23.777 -8.9844 Q24.3083 -9.1875 25.027 -9.1875 Q25.5426 -9.1875 25.9645 -9.0938 Q26.402 -9.0156 26.6676 -8.9062 L26.2145 -7.5938 Q26.0114 -7.6562 25.7614 -7.7031 Q25.527 -7.7656 25.2145 -7.7656 Q24.8395 -7.7656 24.6676 -7.5312 Q24.4958 -7.3125 24.4958 -6.9531 L24.4958 -6.5469 L26.0426 -6.5469 L26.0426 -5.2031 ZM27.9679 -9.125 Q28.3586 -9.125 28.6398 -8.9375 Q28.9367 -8.75 28.9367 -8.25 Q28.9367 -7.75 28.6398 -7.5625 Q28.3586 -7.375 27.9679 -7.375 Q27.5461 -7.375 27.2648 -7.5625 Q26.9836 -7.75 26.9836 -8.25 Q26.9836 -8.75 27.2648 -8.9375 Q27.5461 -9.125 27.9679 -9.125 ZM28.8429 -6.5469 L28.8429 0 L27.0617 0 L27.0617 -6.5469 L28.8429 -6.5469 ZM32.8467 -6.6719 Q34.0498 -6.6719 34.7373 -5.7188 L34.7842 -5.7188 L34.9248 -6.5469 L36.4404 -6.5469 L36.4404 0.0156 Q36.4404 1.4219 35.6123 2.1406 Q34.7842 2.875 33.1748 2.875 Q32.4717 2.875 31.8779 2.7969 Q31.2842 2.7188 30.7217 2.5 L30.7217 1.0625 Q31.9248 1.5781 33.2686 1.5781 Q34.6592 1.5781 34.6592 0.0781 L34.6592 -0.0469 Q34.6592 -0.25 34.6748 -0.4688 Q34.6904 -0.6875 34.7061 -0.8594 L34.6592 -0.8594 Q34.3154 -0.3438 33.8467 -0.1094 Q33.3779 0.125 32.7998 0.125 Q31.6279 0.125 30.9717 -0.7656 Q30.3311 -1.6719 30.3311 -3.2656 Q30.3311 -4.875 31.0029 -5.7656 Q31.6748 -6.6719 32.8467 -6.6719 ZM33.4092 -5.2188 Q32.1436 -5.2188 32.1436 -3.2344 Q32.1436 -1.2812 33.4248 -1.2812 Q34.1123 -1.2812 34.4404 -1.6719 Q34.7686 -2.0625 34.7686 -3.0312 L34.7686 -3.25 Q34.7686 -4.3125 34.4404 -4.7656 Q34.1279 -5.2188 33.4092 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath25);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="895.5297" y="-497.0545" width="172.0531" style="clip-path:url(#clipPath2); stroke:none;" height="57.0323"
+      /><rect x="895.5297" y="-497.0545" width="172.0531" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="57.0323"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(936.316,-462.7104)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM43.89 0.125 Q43.0463 0.125 42.3744 -0.2188 Q41.7182 -0.5781 41.3275 -1.3125 Q40.9525 -2.0469 40.9525 -3.1875 Q40.9525 -4.375 41.3432 -5.1094 Q41.7494 -5.8594 42.4213 -6.2031 Q43.1088 -6.5469 43.9682 -6.5469 Q44.4525 -6.5469 44.9057 -6.4375 Q45.3744 -6.3438 45.6557 -6.2031 L45.3432 -5.3281 Q45.0463 -5.4375 44.6557 -5.5312 Q44.2807 -5.625 43.9369 -5.625 Q42.0463 -5.625 42.0463 -3.1875 Q42.0463 -2.0312 42.4994 -1.4062 Q42.9682 -0.7969 43.89 -0.7969 Q44.4057 -0.7969 44.8119 -0.9062 Q45.2182 -1.0156 45.5463 -1.1562 L45.5463 -0.2344 Q45.2338 -0.0625 44.8432 0.0312 Q44.4525 0.125 43.89 0.125 ZM49.5563 -6.5469 Q50.3844 -6.5469 50.9782 -6.1875 Q51.5719 -5.8281 51.8844 -5.1719 Q52.2126 -4.5312 52.2126 -3.6406 L52.2126 -3.0156 L47.8063 -3.0156 Q47.8376 -1.9219 48.3688 -1.3438 Q48.9001 -0.7812 49.8532 -0.7812 Q50.4782 -0.7812 50.9469 -0.8906 Q51.4157 -1.0156 51.9313 -1.2188 L51.9313 -0.2969 Q51.4313 -0.0781 50.9469 0.0156 Q50.4782 0.125 49.8063 0.125 Q48.9001 0.125 48.1969 -0.25 Q47.4938 -0.625 47.1032 -1.3594 Q46.7126 -2.0938 46.7126 -3.1719 Q46.7126 -4.2188 47.0719 -4.9688 Q47.4313 -5.7344 48.0719 -6.1406 Q48.7126 -6.5469 49.5563 -6.5469 ZM49.5407 -5.6875 Q48.7907 -5.6875 48.3532 -5.2031 Q47.9157 -4.7188 47.8376 -3.8594 L51.1032 -3.8594 Q51.1032 -4.6719 50.7282 -5.1719 Q50.3532 -5.6875 49.5407 -5.6875 ZM56.9025 -6.5469 Q58.09 -6.5469 58.8087 -5.7188 Q59.5431 -4.8906 59.5431 -3.2344 Q59.5431 -1.5781 58.8087 -0.7188 Q58.09 0.125 56.8869 0.125 Q56.1525 0.125 55.6681 -0.1562 Q55.1837 -0.4375 54.9025 -0.8125 L54.8244 -0.8125 Q54.8556 -0.6094 54.8712 -0.2969 Q54.9025 0.0156 54.9025 0.2344 L54.9025 2.875 L53.84 2.875 L53.84 -6.4375 L54.715 -6.4375 L54.8556 -5.5625 L54.9025 -5.5625 Q55.1837 -5.9688 55.6525 -6.25 Q56.1212 -6.5469 56.9025 -6.5469 ZM56.715 -5.6562 Q55.7306 -5.6562 55.3244 -5.1094 Q54.9181 -4.5625 54.9025 -3.4375 L54.9025 -3.2344 Q54.9025 -2.0469 55.2931 -1.3906 Q55.6837 -0.75 56.7306 -0.75 Q57.3244 -0.75 57.6994 -1.0781 Q58.0744 -1.4062 58.2619 -1.9531 Q58.4494 -2.5156 58.4494 -3.2344 Q58.4494 -4.3438 58.0275 -5 Q57.6056 -5.6562 56.715 -5.6562 ZM63.3763 -0.75 Q63.6107 -0.75 63.8607 -0.7812 Q64.1107 -0.8281 64.2669 -0.875 L64.2669 -0.0781 Q64.1107 0.0156 63.7982 0.0625 Q63.4857 0.125 63.1888 0.125 Q62.6888 0.125 62.2513 -0.0469 Q61.8294 -0.2344 61.5638 -0.6562 Q61.3138 -1.0938 61.3138 -1.875 L61.3138 -5.6094 L60.3919 -5.6094 L60.3919 -6.125 L61.3138 -6.5469 L61.7357 -7.9062 L62.3607 -7.9062 L62.3607 -6.4375 L64.22 -6.4375 L64.22 -5.6094 L62.3607 -5.6094 L62.3607 -1.8906 Q62.3607 -1.3125 62.6419 -1.0312 Q62.9232 -0.75 63.3763 -0.75 ZM71.1458 -3.2344 Q71.1458 -1.625 70.3333 -0.75 Q69.5208 0.125 68.1458 0.125 Q67.3021 0.125 66.6302 -0.2656 Q65.9583 -0.6562 65.5677 -1.4062 Q65.1927 -2.1562 65.1927 -3.2344 Q65.1927 -4.8281 65.9896 -5.6875 Q66.8021 -6.5469 68.1771 -6.5469 Q69.0677 -6.5469 69.724 -6.1562 Q70.3958 -5.7656 70.7708 -5.0312 Q71.1458 -4.2969 71.1458 -3.2344 ZM66.2865 -3.2344 Q66.2865 -2.0938 66.7396 -1.4219 Q67.1927 -0.75 68.1771 -0.75 Q69.1458 -0.75 69.599 -1.4219 Q70.0521 -2.0938 70.0521 -3.2344 Q70.0521 -4.375 69.599 -5.0156 Q69.1458 -5.6562 68.1615 -5.6562 Q67.1771 -5.6562 66.724 -5.0156 Q66.2865 -4.375 66.2865 -3.2344 ZM75.8121 -6.5469 Q75.9996 -6.5469 76.2028 -6.5312 Q76.4215 -6.5156 76.5778 -6.4844 L76.4371 -5.5156 Q76.2809 -5.5469 76.0934 -5.5625 Q75.9059 -5.5938 75.7496 -5.5938 Q75.2496 -5.5938 74.8121 -5.3125 Q74.3903 -5.0469 74.1246 -4.5625 Q73.8746 -4.0781 73.8746 -3.4375 L73.8746 0 L72.8121 0 L72.8121 -6.4375 L73.6871 -6.4375 L73.7965 -5.25 L73.8434 -5.25 Q74.1559 -5.7812 74.6403 -6.1562 Q75.1403 -6.5469 75.8121 -6.5469 ZM77.3463 -2.3281 L81.8775 -4.2188 L77.3463 -6.3594 L77.3463 -7.2969 L83.0025 -4.4688 L83.0025 -3.875 L77.3463 -1.3906 L77.3463 -2.3281 ZM84.2103 -2.3281 L88.7416 -4.2188 L84.2103 -6.3594 L84.2103 -7.2969 L89.8666 -4.4688 L89.8666 -3.875 L84.2103 -1.3906 L84.2103 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath26);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(935.422,-479.0545)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath27);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(905.5297,-446.3663)"
+    ><path d="M3.5781 -8.5625 Q5.3281 -8.5625 6.1562 -7.9219 Q7 -7.2969 7 -6 Q7 -5.4062 6.7656 -4.9688 Q6.5469 -4.5312 6.1719 -4.2188 Q5.8125 -3.9219 5.4062 -3.7344 L7.9219 0 L5.9062 0 L3.8594 -3.2812 L2.8906 -3.2812 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L3.5781 -8.5625 ZM3.4375 -7.0781 L2.8906 -7.0781 L2.8906 -4.7656 L3.4844 -4.7656 Q4.375 -4.7656 4.7656 -5.0625 Q5.1562 -5.3594 5.1562 -5.9531 Q5.1562 -6.5625 4.7344 -6.8125 Q4.3281 -7.0781 3.4375 -7.0781 ZM11.5607 -6.6719 Q12.9044 -6.6719 13.7013 -5.8906 Q14.4982 -5.125 14.4982 -3.7031 L14.4982 -2.8281 L10.2794 -2.8281 Q10.2951 -2.0781 10.7169 -1.6406 Q11.1544 -1.2188 11.9044 -1.2188 Q12.5451 -1.2188 13.0607 -1.3438 Q13.5763 -1.4688 14.1232 -1.7344 L14.1232 -0.3438 Q13.6388 -0.1094 13.1076 0 Q12.5763 0.125 11.8263 0.125 Q10.8419 0.125 10.0763 -0.2344 Q9.3263 -0.6094 8.8888 -1.3438 Q8.4669 -2.0938 8.4669 -3.2344 Q8.4669 -4.375 8.8419 -5.1406 Q9.2326 -5.9062 9.9357 -6.2812 Q10.6388 -6.6719 11.5607 -6.6719 ZM11.5607 -5.4062 Q11.0451 -5.4062 10.7013 -5.0625 Q10.3732 -4.7344 10.3107 -4.0156 L12.8107 -4.0156 Q12.8107 -4.625 12.4982 -5.0156 Q12.2013 -5.4062 11.5607 -5.4062 ZM20.5277 -1.9375 Q20.5277 -0.9531 19.8246 -0.4062 Q19.1215 0.125 17.7309 0.125 Q17.0434 0.125 16.5434 0.0312 Q16.059 -0.0625 15.559 -0.2656 L15.559 -1.7344 Q16.0902 -1.5 16.6996 -1.3438 Q17.309 -1.1875 17.7777 -1.1875 Q18.309 -1.1875 18.5277 -1.3438 Q18.7621 -1.5 18.7621 -1.75 Q18.7621 -1.9219 18.6684 -2.0469 Q18.5746 -2.1875 18.2777 -2.3438 Q17.9809 -2.5156 17.3402 -2.7812 Q16.7309 -3.0469 16.3246 -3.2969 Q15.934 -3.5625 15.7465 -3.9219 Q15.559 -4.2969 15.559 -4.8438 Q15.559 -5.7656 16.2621 -6.2188 Q16.9652 -6.6719 18.1371 -6.6719 Q18.7621 -6.6719 19.309 -6.5469 Q19.8559 -6.4375 20.4496 -6.1562 L19.9027 -4.875 Q19.434 -5.0781 18.9965 -5.2188 Q18.559 -5.3594 18.1215 -5.3594 Q17.3246 -5.3594 17.3246 -4.9219 Q17.3246 -4.7656 17.4184 -4.6406 Q17.5277 -4.5156 17.8246 -4.3594 Q18.1215 -4.2188 18.6996 -3.9844 Q19.2621 -3.75 19.6684 -3.5 Q20.0746 -3.2656 20.2934 -2.8906 Q20.5277 -2.5312 20.5277 -1.9375 ZM24.6793 -1.3125 Q24.9762 -1.3125 25.2418 -1.3594 Q25.523 -1.4219 25.8043 -1.5156 L25.8043 -0.1875 Q25.5074 -0.0625 25.0855 0.0312 Q24.6637 0.125 24.1637 0.125 Q23.5699 0.125 23.1012 -0.0625 Q22.648 -0.2656 22.3668 -0.7344 Q22.1012 -1.2188 22.1012 -2.0469 L22.1012 -5.2031 L21.2574 -5.2031 L21.2574 -5.9688 L22.2418 -6.5625 L22.7574 -7.9375 L23.898 -7.9375 L23.898 -6.5469 L25.7262 -6.5469 L25.7262 -5.2031 L23.898 -5.2031 L23.898 -2.0469 Q23.898 -1.6875 24.1012 -1.5 Q24.3199 -1.3125 24.6793 -1.3125 ZM30.5592 0 L28.7467 0 L28.7467 -7.0625 L26.4186 -7.0625 L26.4186 -8.5625 L32.8873 -8.5625 L32.8873 -7.0625 L30.5592 -7.0625 L30.5592 0 ZM36.7729 -6.6719 Q38.1166 -6.6719 38.9135 -5.8906 Q39.7104 -5.125 39.7104 -3.7031 L39.7104 -2.8281 L35.4916 -2.8281 Q35.5072 -2.0781 35.9291 -1.6406 Q36.3666 -1.2188 37.1166 -1.2188 Q37.7572 -1.2188 38.2729 -1.3438 Q38.7885 -1.4688 39.3354 -1.7344 L39.3354 -0.3438 Q38.851 -0.1094 38.3197 0 Q37.7885 0.125 37.0385 0.125 Q36.0541 0.125 35.2885 -0.2344 Q34.5385 -0.6094 34.101 -1.3438 Q33.6791 -2.0938 33.6791 -3.2344 Q33.6791 -4.375 34.0541 -5.1406 Q34.4447 -5.9062 35.1479 -6.2812 Q35.851 -6.6719 36.7729 -6.6719 ZM36.7729 -5.4062 Q36.2572 -5.4062 35.9135 -5.0625 Q35.5854 -4.7344 35.5229 -4.0156 L38.0229 -4.0156 Q38.0229 -4.625 37.7104 -5.0156 Q37.4135 -5.4062 36.7729 -5.4062 ZM48.8493 -6.6719 Q49.9743 -6.6719 50.5368 -6.0938 Q51.1149 -5.5312 51.1149 -4.2656 L51.1149 0 L49.318 0 L49.318 -3.8281 Q49.318 -5.25 48.3337 -5.25 Q47.6305 -5.25 47.318 -4.7344 Q47.0212 -4.2344 47.0212 -3.2812 L47.0212 0 L45.2399 0 L45.2399 -3.8281 Q45.2399 -5.25 44.2555 -5.25 Q43.5055 -5.25 43.2243 -4.6875 Q42.943 -4.125 42.943 -3.0781 L42.943 0 L41.1618 0 L41.1618 -6.5469 L42.5212 -6.5469 L42.7712 -5.7188 L42.8649 -5.7188 Q43.1618 -6.2188 43.6774 -6.4375 Q44.2087 -6.6719 44.7712 -6.6719 Q45.4899 -6.6719 45.9899 -6.4375 Q46.5055 -6.2031 46.7712 -5.7188 L46.9274 -5.7188 Q47.2243 -6.2188 47.7555 -6.4375 Q48.2868 -6.6719 48.8493 -6.6719 ZM56.5865 -6.6719 Q57.6959 -6.6719 58.3834 -5.8125 Q59.0709 -4.9531 59.0709 -3.2812 Q59.0709 -1.625 58.3521 -0.75 Q57.649 0.125 56.5396 0.125 Q55.8365 0.125 55.4146 -0.125 Q54.9928 -0.3906 54.7271 -0.7188 L54.6334 -0.7188 Q54.7271 -0.2188 54.7271 0.2344 L54.7271 2.875 L52.9459 2.875 L52.9459 -6.5469 L54.399 -6.5469 L54.649 -5.7031 L54.7271 -5.7031 Q54.9928 -6.0938 55.4303 -6.375 Q55.8834 -6.6719 56.5865 -6.6719 ZM56.024 -5.25 Q55.3209 -5.25 55.0396 -4.8125 Q54.7584 -4.375 54.7271 -3.4844 L54.7271 -3.2969 Q54.7271 -2.3594 55.0084 -1.8438 Q55.2896 -1.3281 56.0396 -1.3281 Q56.649 -1.3281 56.9459 -1.8438 Q57.2428 -2.3594 57.2428 -3.3125 Q57.2428 -5.25 56.024 -5.25 ZM62.3232 0 L60.5419 0 L60.5419 -9.125 L62.3232 -9.125 L62.3232 0 ZM66.8895 -6.6875 Q68.202 -6.6875 68.9051 -6.1094 Q69.6082 -5.5469 69.6082 -4.375 L69.6082 0 L68.3582 0 L68.0145 -0.8906 L67.9676 -0.8906 Q67.5457 -0.3594 67.077 -0.1094 Q66.6082 0.125 65.7957 0.125 Q64.9207 0.125 64.3426 -0.3906 Q63.7645 -0.9062 63.7645 -1.9531 Q63.7645 -3 64.4988 -3.5 Q65.2332 -4 66.702 -4.0469 L67.8426 -4.0781 L67.8426 -4.375 Q67.8426 -4.8906 67.5613 -5.125 Q67.2957 -5.3594 66.8113 -5.3594 Q66.3426 -5.3594 65.8738 -5.2188 Q65.4207 -5.0938 64.9676 -4.8906 L64.3738 -6.0938 Q64.9051 -6.375 65.5457 -6.5312 Q66.1863 -6.6875 66.8895 -6.6875 ZM67.1395 -3.0156 Q66.2801 -2.9844 65.9363 -2.6875 Q65.6082 -2.4062 65.6082 -1.9375 Q65.6082 -1.5312 65.8426 -1.3594 Q66.077 -1.1875 66.4676 -1.1875 Q67.0457 -1.1875 67.4363 -1.5312 Q67.8426 -1.875 67.8426 -2.5 L67.8426 -3.0312 L67.1395 -3.0156 ZM74.2156 -1.3125 Q74.5125 -1.3125 74.7781 -1.3594 Q75.0594 -1.4219 75.3406 -1.5156 L75.3406 -0.1875 Q75.0437 -0.0625 74.6219 0.0312 Q74.2 0.125 73.7 0.125 Q73.1062 0.125 72.6375 -0.0625 Q72.1844 -0.2656 71.9031 -0.7344 Q71.6375 -1.2188 71.6375 -2.0469 L71.6375 -5.2031 L70.7937 -5.2031 L70.7937 -5.9688 L71.7781 -6.5625 L72.2937 -7.9375 L73.4344 -7.9375 L73.4344 -6.5469 L75.2625 -6.5469 L75.2625 -5.2031 L73.4344 -5.2031 L73.4344 -2.0469 Q73.4344 -1.6875 73.6375 -1.5 Q73.8562 -1.3125 74.2156 -1.3125 ZM79.3612 -6.6719 Q80.7049 -6.6719 81.5018 -5.8906 Q82.2987 -5.125 82.2987 -3.7031 L82.2987 -2.8281 L78.0799 -2.8281 Q78.0955 -2.0781 78.5174 -1.6406 Q78.9549 -1.2188 79.7049 -1.2188 Q80.3455 -1.2188 80.8612 -1.3438 Q81.3768 -1.4688 81.9237 -1.7344 L81.9237 -0.3438 Q81.4393 -0.1094 80.908 0 Q80.3768 0.125 79.6268 0.125 Q78.6424 0.125 77.8768 -0.2344 Q77.1268 -0.6094 76.6893 -1.3438 Q76.2674 -2.0938 76.2674 -3.2344 Q76.2674 -4.375 76.6424 -5.1406 Q77.033 -5.9062 77.7362 -6.2812 Q78.4393 -6.6719 79.3612 -6.6719 ZM79.3612 -5.4062 Q78.8455 -5.4062 78.5018 -5.0625 Q78.1737 -4.7344 78.1112 -4.0156 L80.6112 -4.0156 Q80.6112 -4.625 80.2987 -5.0156 Q80.0018 -5.4062 79.3612 -5.4062 ZM87.0938 0 L83.2032 0 L83.2032 -1.0312 L84.2345 -1.5156 L84.2345 -7.0625 L83.2032 -7.5312 L83.2032 -8.5625 L87.0938 -8.5625 L87.0938 -7.5312 L86.047 -7.0625 L86.047 -1.5156 L87.0938 -1.0312 L87.0938 0 ZM92.1369 -6.6719 Q93.1994 -6.6719 93.8244 -6.0938 Q94.465 -5.5312 94.465 -4.2656 L94.465 0 L92.6837 0 L92.6837 -3.8281 Q92.6837 -4.5312 92.4181 -4.8906 Q92.1681 -5.25 91.6212 -5.25 Q90.8087 -5.25 90.4962 -4.6875 Q90.1994 -4.125 90.1994 -3.0781 L90.1994 0 L88.4181 0 L88.4181 -6.5469 L89.7775 -6.5469 L90.0275 -5.7188 L90.1212 -5.7188 Q90.4337 -6.2188 90.9806 -6.4375 Q91.5275 -6.6719 92.1369 -6.6719 ZM99.0678 -1.3125 Q99.3647 -1.3125 99.6303 -1.3594 Q99.9115 -1.4219 100.1928 -1.5156 L100.1928 -0.1875 Q99.8959 -0.0625 99.474 0.0312 Q99.0522 0.125 98.5522 0.125 Q97.9584 0.125 97.4897 -0.0625 Q97.0365 -0.2656 96.7553 -0.7344 Q96.4897 -1.2188 96.4897 -2.0469 L96.4897 -5.2031 L95.6459 -5.2031 L95.6459 -5.9688 L96.6303 -6.5625 L97.1459 -7.9375 L98.2865 -7.9375 L98.2865 -6.5469 L100.1147 -6.5469 L100.1147 -5.2031 L98.2865 -5.2031 L98.2865 -2.0469 Q98.2865 -1.6875 98.4897 -1.5 Q98.7084 -1.3125 99.0678 -1.3125 ZM104.2133 -6.6719 Q105.5571 -6.6719 106.354 -5.8906 Q107.1508 -5.125 107.1508 -3.7031 L107.1508 -2.8281 L102.9321 -2.8281 Q102.9477 -2.0781 103.3696 -1.6406 Q103.8071 -1.2188 104.5571 -1.2188 Q105.1977 -1.2188 105.7133 -1.3438 Q106.229 -1.4688 106.7758 -1.7344 L106.7758 -0.3438 Q106.2915 -0.1094 105.7602 0 Q105.229 0.125 104.479 0.125 Q103.4946 0.125 102.729 -0.2344 Q101.979 -0.6094 101.5415 -1.3438 Q101.1196 -2.0938 101.1196 -3.2344 Q101.1196 -4.375 101.4946 -5.1406 Q101.8852 -5.9062 102.5883 -6.2812 Q103.2915 -6.6719 104.2133 -6.6719 ZM104.2133 -5.4062 Q103.6977 -5.4062 103.354 -5.0625 Q103.0258 -4.7344 102.9633 -4.0156 L105.4633 -4.0156 Q105.4633 -4.625 105.1508 -5.0156 Q104.854 -5.4062 104.2133 -5.4062 ZM112.2585 -6.6719 Q112.3991 -6.6719 112.571 -6.6562 Q112.7585 -6.6406 112.8679 -6.625 L112.7273 -4.9375 Q112.6491 -4.9688 112.4773 -4.9844 Q112.321 -5 112.196 -5 Q111.7429 -5 111.321 -4.8438 Q110.8991 -4.6875 110.6335 -4.3125 Q110.3835 -3.9531 110.3835 -3.3438 L110.3835 0 L108.6023 0 L108.6023 -6.5469 L109.9616 -6.5469 L110.2273 -5.4531 L110.3054 -5.4531 Q110.5866 -5.9531 111.0866 -6.3125 Q111.6023 -6.6719 112.2585 -6.6719 ZM116.7066 0.125 Q115.2534 0.125 114.4566 -0.6875 Q113.6597 -1.5 113.6597 -3.2344 Q113.6597 -4.4375 114.0659 -5.1875 Q114.4722 -5.9531 115.1909 -6.3125 Q115.9253 -6.6719 116.8628 -6.6719 Q117.5347 -6.6719 118.0347 -6.5312 Q118.5347 -6.4062 118.9097 -6.2344 L118.3784 -4.8438 Q117.9566 -5.0156 117.5816 -5.125 Q117.2222 -5.2344 116.8628 -5.2344 Q115.4722 -5.2344 115.4722 -3.25 Q115.4722 -2.2656 115.8316 -1.7969 Q116.2066 -1.3281 116.8628 -1.3281 Q117.4253 -1.3281 117.8628 -1.4688 Q118.3003 -1.625 118.7066 -1.8906 L118.7066 -0.375 Q118.3003 -0.1094 117.8472 0 Q117.3941 0.125 116.7066 0.125 ZM122.9215 -6.6719 Q124.2652 -6.6719 125.0621 -5.8906 Q125.859 -5.125 125.859 -3.7031 L125.859 -2.8281 L121.6402 -2.8281 Q121.6559 -2.0781 122.0777 -1.6406 Q122.5152 -1.2188 123.2652 -1.2188 Q123.9059 -1.2188 124.4215 -1.3438 Q124.9371 -1.4688 125.484 -1.7344 L125.484 -0.3438 Q124.9996 -0.1094 124.4684 0 Q123.9371 0.125 123.1871 0.125 Q122.2027 0.125 121.4371 -0.2344 Q120.6871 -0.6094 120.2496 -1.3438 Q119.8277 -2.0938 119.8277 -3.2344 Q119.8277 -4.375 120.2027 -5.1406 Q120.5934 -5.9062 121.2965 -6.2812 Q121.9996 -6.6719 122.9215 -6.6719 ZM122.9215 -5.4062 Q122.4059 -5.4062 122.0621 -5.0625 Q121.734 -4.7344 121.6715 -4.0156 L124.1715 -4.0156 Q124.1715 -4.625 123.859 -5.0156 Q123.5621 -5.4062 122.9215 -5.4062 ZM130.951 -6.6719 Q132.0604 -6.6719 132.7479 -5.8125 Q133.4354 -4.9531 133.4354 -3.2812 Q133.4354 -1.625 132.7167 -0.75 Q132.0135 0.125 130.9042 0.125 Q130.201 0.125 129.7792 -0.125 Q129.3573 -0.3906 129.0917 -0.7188 L128.9979 -0.7188 Q129.0917 -0.2188 129.0917 0.2344 L129.0917 2.875 L127.3104 2.875 L127.3104 -6.5469 L128.7635 -6.5469 L129.0135 -5.7031 L129.0917 -5.7031 Q129.3573 -6.0938 129.7948 -6.375 Q130.2479 -6.6719 130.951 -6.6719 ZM130.3885 -5.25 Q129.6854 -5.25 129.4042 -4.8125 Q129.1229 -4.375 129.0917 -3.4844 L129.0917 -3.2969 Q129.0917 -2.3594 129.3729 -1.8438 Q129.6542 -1.3281 130.4042 -1.3281 Q131.0135 -1.3281 131.3104 -1.8438 Q131.6073 -2.3594 131.6073 -3.3125 Q131.6073 -5.25 130.3885 -5.25 ZM137.6721 -1.3125 Q137.969 -1.3125 138.2346 -1.3594 Q138.5158 -1.4219 138.7971 -1.5156 L138.7971 -0.1875 Q138.5002 -0.0625 138.0783 0.0312 Q137.6565 0.125 137.1565 0.125 Q136.5627 0.125 136.094 -0.0625 Q135.6408 -0.2656 135.3596 -0.7344 Q135.094 -1.2188 135.094 -2.0469 L135.094 -5.2031 L134.2502 -5.2031 L134.2502 -5.9688 L135.2346 -6.5625 L135.7502 -7.9375 L136.8908 -7.9375 L136.8908 -6.5469 L138.719 -6.5469 L138.719 -5.2031 L136.8908 -5.2031 L136.8908 -2.0469 Q136.8908 -1.6875 137.094 -1.5 Q137.3127 -1.3125 137.6721 -1.3125 ZM146.0676 -3.2812 Q146.0676 -1.6562 145.2083 -0.7656 Q144.3489 0.125 142.8801 0.125 Q141.9583 0.125 141.2395 -0.2656 Q140.5364 -0.6719 140.1301 -1.4375 Q139.7239 -2.2031 139.7239 -3.2812 Q139.7239 -4.9219 140.5676 -5.7969 Q141.427 -6.6719 142.9114 -6.6719 Q143.8333 -6.6719 144.5364 -6.2656 Q145.2551 -5.875 145.6614 -5.125 Q146.0676 -4.375 146.0676 -3.2812 ZM141.5364 -3.2812 Q141.5364 -2.3125 141.8489 -1.8125 Q142.177 -1.3125 142.8958 -1.3125 Q143.5989 -1.3125 143.9114 -1.8125 Q144.2395 -2.3125 144.2395 -3.2812 Q144.2395 -4.2656 143.9114 -4.75 Q143.5989 -5.2344 142.8801 -5.2344 Q142.177 -5.2344 141.8489 -4.75 Q141.5364 -4.2656 141.5364 -3.2812 ZM151.1988 -6.6719 Q151.3394 -6.6719 151.5113 -6.6562 Q151.6988 -6.6406 151.8082 -6.625 L151.6676 -4.9375 Q151.5894 -4.9688 151.4176 -4.9844 Q151.2613 -5 151.1363 -5 Q150.6832 -5 150.2613 -4.8438 Q149.8394 -4.6875 149.5738 -4.3125 Q149.3238 -3.9531 149.3238 -3.3438 L149.3238 0 L147.5426 0 L147.5426 -6.5469 L148.9019 -6.5469 L149.1676 -5.4531 L149.2457 -5.4531 Q149.5269 -5.9531 150.0269 -6.3125 Q150.5426 -6.6719 151.1988 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath28);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="947.2062" x2="981.5563" y1="-161.5929" style="fill:none; clip-path:url(#clipPath2);" y2="-161.5929"
+      /><line x1="981.5563" x2="981.5563" y1="-161.5929" style="fill:none; clip-path:url(#clipPath2);" y2="-297.0715"
+      /><line x1="947.2062" x2="957.5985" y1="-161.5929" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-167.5929"
+      /><line x1="947.2062" x2="957.5985" y1="-161.5929" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-155.5929"
+      /><line x1="851.5943" x2="981.5563" y1="-766.8647" style="fill:none; clip-path:url(#clipPath2);" y2="-766.8647"
+      /><line x1="981.5563" x2="981.5563" y1="-766.8647" style="fill:none; clip-path:url(#clipPath2);" y2="-627.3288"
+      /><line x1="851.5943" x2="861.9866" y1="-766.8647" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-772.8647"
+      /><line x1="851.5943" x2="861.9866" y1="-766.8647" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-760.8647"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-426.3309" y="-811.5151" width="167.249" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-426.3309" y="-811.5151" width="167.249" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-426.3309" y="-796.5151" width="418.1225" style="clip-path:url(#clipPath2); stroke:none;" height="248.6444"
+      /><rect x="-426.3309" y="-796.5151" width="418.1225" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="248.6444"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-243.5078,-777.5151)"
+    ><path d="M3.5938 0.125 Q2.1406 0.125 1.3438 -0.6875 Q0.5469 -1.5 0.5469 -3.2344 Q0.5469 -4.4375 0.9531 -5.1875 Q1.3594 -5.9531 2.0781 -6.3125 Q2.8125 -6.6719 3.75 -6.6719 Q4.4219 -6.6719 4.9219 -6.5312 Q5.4219 -6.4062 5.7969 -6.2344 L5.2656 -4.8438 Q4.8438 -5.0156 4.4688 -5.125 Q4.1094 -5.2344 3.75 -5.2344 Q2.3594 -5.2344 2.3594 -3.25 Q2.3594 -2.2656 2.7188 -1.7969 Q3.0938 -1.3281 3.75 -1.3281 Q4.3125 -1.3281 4.75 -1.4688 Q5.1875 -1.625 5.5938 -1.8906 L5.5938 -0.375 Q5.1875 -0.1094 4.7344 0 Q4.2812 0.125 3.5938 0.125 ZM13.0587 -3.2812 Q13.0587 -1.6562 12.1993 -0.7656 Q11.3399 0.125 9.8712 0.125 Q8.9493 0.125 8.2305 -0.2656 Q7.5274 -0.6719 7.1212 -1.4375 Q6.7149 -2.2031 6.7149 -3.2812 Q6.7149 -4.9219 7.5587 -5.7969 Q8.418 -6.6719 9.9024 -6.6719 Q10.8243 -6.6719 11.5274 -6.2656 Q12.2462 -5.875 12.6524 -5.125 Q13.0587 -4.375 13.0587 -3.2812 ZM8.5274 -3.2812 Q8.5274 -2.3125 8.8399 -1.8125 Q9.168 -1.3125 9.8868 -1.3125 Q10.5899 -1.3125 10.9024 -1.8125 Q11.2305 -2.3125 11.2305 -3.2812 Q11.2305 -4.2656 10.9024 -4.75 Q10.5899 -5.2344 9.8712 -5.2344 Q9.168 -5.2344 8.8399 -4.75 Q8.5274 -4.2656 8.5274 -3.2812 ZM22.2211 -6.6719 Q23.3461 -6.6719 23.9086 -6.0938 Q24.4867 -5.5312 24.4867 -4.2656 L24.4867 0 L22.6898 0 L22.6898 -3.8281 Q22.6898 -5.25 21.7055 -5.25 Q21.0023 -5.25 20.6898 -4.7344 Q20.393 -4.2344 20.393 -3.2812 L20.393 0 L18.6117 0 L18.6117 -3.8281 Q18.6117 -5.25 17.6273 -5.25 Q16.8773 -5.25 16.5961 -4.6875 Q16.3148 -4.125 16.3148 -3.0781 L16.3148 0 L14.5336 0 L14.5336 -6.5469 L15.893 -6.5469 L16.143 -5.7188 L16.2367 -5.7188 Q16.5336 -6.2188 17.0492 -6.4375 Q17.5805 -6.6719 18.143 -6.6719 Q18.8617 -6.6719 19.3617 -6.4375 Q19.8773 -6.2031 20.143 -5.7188 L20.2992 -5.7188 Q20.5961 -6.2188 21.1273 -6.4375 Q21.6586 -6.6719 22.2211 -6.6719 ZM34.0052 -6.6719 Q35.1302 -6.6719 35.6927 -6.0938 Q36.2708 -5.5312 36.2708 -4.2656 L36.2708 0 L34.4739 0 L34.4739 -3.8281 Q34.4739 -5.25 33.4896 -5.25 Q32.7864 -5.25 32.4739 -4.7344 Q32.1771 -4.2344 32.1771 -3.2812 L32.1771 0 L30.3958 0 L30.3958 -3.8281 Q30.3958 -5.25 29.4114 -5.25 Q28.6614 -5.25 28.3802 -4.6875 Q28.0989 -4.125 28.0989 -3.0781 L28.0989 0 L26.3177 0 L26.3177 -6.5469 L27.6771 -6.5469 L27.9271 -5.7188 L28.0208 -5.7188 Q28.3177 -6.2188 28.8333 -6.4375 Q29.3646 -6.6719 29.9271 -6.6719 Q30.6458 -6.6719 31.1458 -6.4375 Q31.6614 -6.2031 31.9271 -5.7188 L32.0833 -5.7188 Q32.3802 -6.2188 32.9114 -6.4375 Q33.4427 -6.6719 34.0052 -6.6719 ZM44.0549 -3.2812 Q44.0549 -1.6562 43.1955 -0.7656 Q42.3362 0.125 40.8674 0.125 Q39.9455 0.125 39.2268 -0.2656 Q38.5237 -0.6719 38.1174 -1.4375 Q37.7112 -2.2031 37.7112 -3.2812 Q37.7112 -4.9219 38.5549 -5.7969 Q39.4143 -6.6719 40.8987 -6.6719 Q41.8205 -6.6719 42.5237 -6.2656 Q43.2424 -5.875 43.6487 -5.125 Q44.0549 -4.375 44.0549 -3.2812 ZM39.5237 -3.2812 Q39.5237 -2.3125 39.8362 -1.8125 Q40.1643 -1.3125 40.883 -1.3125 Q41.5862 -1.3125 41.8987 -1.8125 Q42.2268 -2.3125 42.2268 -3.2812 Q42.2268 -4.2656 41.8987 -4.75 Q41.5862 -5.2344 40.8674 -5.2344 Q40.1643 -5.2344 39.8362 -4.75 Q39.5237 -4.2656 39.5237 -3.2812 ZM49.2486 -6.6719 Q50.3111 -6.6719 50.9361 -6.0938 Q51.5767 -5.5312 51.5767 -4.2656 L51.5767 0 L49.7955 0 L49.7955 -3.8281 Q49.7955 -4.5312 49.5298 -4.8906 Q49.2798 -5.25 48.733 -5.25 Q47.9205 -5.25 47.608 -4.6875 Q47.3111 -4.125 47.3111 -3.0781 L47.3111 0 L45.5298 0 L45.5298 -6.5469 L46.8892 -6.5469 L47.1392 -5.7188 L47.233 -5.7188 Q47.5455 -6.2188 48.0923 -6.4375 Q48.6392 -6.6719 49.2486 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath29);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-406.6139" y="-771.8925" width="80.9547" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-406.6139" y="-771.8925" width="80.9547" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-406.6139" y="-756.8925" width="202.3868" style="clip-path:url(#clipPath2); stroke:none;" height="194.0218"
+      /><rect x="-406.6139" y="-756.8925" width="202.3868" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="194.0218"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-337.9347,-737.8925)"
+    ><path d="M3.6406 -6.6719 Q4.9844 -6.6719 5.7812 -5.8906 Q6.5781 -5.125 6.5781 -3.7031 L6.5781 -2.8281 L2.3594 -2.8281 Q2.375 -2.0781 2.7969 -1.6406 Q3.2344 -1.2188 3.9844 -1.2188 Q4.625 -1.2188 5.1406 -1.3438 Q5.6562 -1.4688 6.2031 -1.7344 L6.2031 -0.3438 Q5.7188 -0.1094 5.1875 0 Q4.6562 0.125 3.9062 0.125 Q2.9219 0.125 2.1562 -0.2344 Q1.4062 -0.6094 0.9688 -1.3438 Q0.5469 -2.0938 0.5469 -3.2344 Q0.5469 -4.375 0.9219 -5.1406 Q1.3125 -5.9062 2.0156 -6.2812 Q2.7188 -6.6719 3.6406 -6.6719 ZM3.6406 -5.4062 Q3.125 -5.4062 2.7812 -5.0625 Q2.4531 -4.7344 2.3906 -4.0156 L4.8906 -4.0156 Q4.8906 -4.625 4.5781 -5.0156 Q4.2812 -5.4062 3.6406 -5.4062 ZM9.3733 -3.3438 L7.2639 -6.5469 L9.2952 -6.5469 L10.5608 -4.4688 L11.8421 -6.5469 L13.8733 -6.5469 L11.7327 -3.3438 L13.9671 0 L11.9358 0 L10.5608 -2.25 L9.1858 0 L7.1546 0 L9.3733 -3.3438 ZM17.6219 0.125 Q16.1687 0.125 15.3719 -0.6875 Q14.575 -1.5 14.575 -3.2344 Q14.575 -4.4375 14.9812 -5.1875 Q15.3875 -5.9531 16.1062 -6.3125 Q16.8406 -6.6719 17.7781 -6.6719 Q18.45 -6.6719 18.95 -6.5312 Q19.45 -6.4062 19.825 -6.2344 L19.2937 -4.8438 Q18.8719 -5.0156 18.4969 -5.125 Q18.1375 -5.2344 17.7781 -5.2344 Q16.3875 -5.2344 16.3875 -3.25 Q16.3875 -2.2656 16.7469 -1.7969 Q17.1219 -1.3281 17.7781 -1.3281 Q18.3406 -1.3281 18.7781 -1.4688 Q19.2156 -1.625 19.6219 -1.8906 L19.6219 -0.375 Q19.2156 -0.1094 18.7625 0 Q18.3094 0.125 17.6219 0.125 ZM23.8368 -6.6719 Q25.1805 -6.6719 25.9774 -5.8906 Q26.7743 -5.125 26.7743 -3.7031 L26.7743 -2.8281 L22.5555 -2.8281 Q22.5712 -2.0781 22.993 -1.6406 Q23.4305 -1.2188 24.1805 -1.2188 Q24.8212 -1.2188 25.3368 -1.3438 Q25.8524 -1.4688 26.3993 -1.7344 L26.3993 -0.3438 Q25.9149 -0.1094 25.3837 0 Q24.8524 0.125 24.1024 0.125 Q23.118 0.125 22.3524 -0.2344 Q21.6024 -0.6094 21.1649 -1.3438 Q20.743 -2.0938 20.743 -3.2344 Q20.743 -4.375 21.118 -5.1406 Q21.5087 -5.9062 22.2118 -6.2812 Q22.9149 -6.6719 23.8368 -6.6719 ZM23.8368 -5.4062 Q23.3212 -5.4062 22.9774 -5.0625 Q22.6493 -4.7344 22.5868 -4.0156 L25.0868 -4.0156 Q25.0868 -4.625 24.7743 -5.0156 Q24.4774 -5.4062 23.8368 -5.4062 ZM31.8663 -6.6719 Q32.9757 -6.6719 33.6632 -5.8125 Q34.3507 -4.9531 34.3507 -3.2812 Q34.3507 -1.625 33.632 -0.75 Q32.9288 0.125 31.8195 0.125 Q31.1163 0.125 30.6945 -0.125 Q30.2726 -0.3906 30.007 -0.7188 L29.9132 -0.7188 Q30.007 -0.2188 30.007 0.2344 L30.007 2.875 L28.2257 2.875 L28.2257 -6.5469 L29.6788 -6.5469 L29.9288 -5.7031 L30.007 -5.7031 Q30.2726 -6.0938 30.7101 -6.375 Q31.1632 -6.6719 31.8663 -6.6719 ZM31.3038 -5.25 Q30.6007 -5.25 30.3195 -4.8125 Q30.0382 -4.375 30.007 -3.4844 L30.007 -3.2969 Q30.007 -2.3594 30.2882 -1.8438 Q30.5695 -1.3281 31.3195 -1.3281 Q31.9288 -1.3281 32.2257 -1.8438 Q32.5226 -2.3594 32.5226 -3.3125 Q32.5226 -5.25 31.3038 -5.25 ZM38.5874 -1.3125 Q38.8843 -1.3125 39.1499 -1.3594 Q39.4311 -1.4219 39.7124 -1.5156 L39.7124 -0.1875 Q39.4155 -0.0625 38.9936 0.0312 Q38.5718 0.125 38.0718 0.125 Q37.478 0.125 37.0093 -0.0625 Q36.5561 -0.2656 36.2749 -0.7344 Q36.0093 -1.2188 36.0093 -2.0469 L36.0093 -5.2031 L35.1655 -5.2031 L35.1655 -5.9688 L36.1499 -6.5625 L36.6655 -7.9375 L37.8061 -7.9375 L37.8061 -6.5469 L39.6343 -6.5469 L39.6343 -5.2031 L37.8061 -5.2031 L37.8061 -2.0469 Q37.8061 -1.6875 38.0093 -1.5 Q38.228 -1.3125 38.5874 -1.3125 ZM41.9361 -9.125 Q42.3267 -9.125 42.6079 -8.9375 Q42.9048 -8.75 42.9048 -8.25 Q42.9048 -7.75 42.6079 -7.5625 Q42.3267 -7.375 41.9361 -7.375 Q41.5142 -7.375 41.2329 -7.5625 Q40.9517 -7.75 40.9517 -8.25 Q40.9517 -8.75 41.2329 -8.9375 Q41.5142 -9.125 41.9361 -9.125 ZM42.8111 -6.5469 L42.8111 0 L41.0298 0 L41.0298 -6.5469 L42.8111 -6.5469 ZM50.6429 -3.2812 Q50.6429 -1.6562 49.7836 -0.7656 Q48.9242 0.125 47.4554 0.125 Q46.5336 0.125 45.8148 -0.2656 Q45.1117 -0.6719 44.7054 -1.4375 Q44.2992 -2.2031 44.2992 -3.2812 Q44.2992 -4.9219 45.1429 -5.7969 Q46.0023 -6.6719 47.4867 -6.6719 Q48.4086 -6.6719 49.1117 -6.2656 Q49.8304 -5.875 50.2367 -5.125 Q50.6429 -4.375 50.6429 -3.2812 ZM46.1117 -3.2812 Q46.1117 -2.3125 46.4242 -1.8125 Q46.7523 -1.3125 47.4711 -1.3125 Q48.1742 -1.3125 48.4867 -1.8125 Q48.8148 -2.3125 48.8148 -3.2812 Q48.8148 -4.2656 48.4867 -4.75 Q48.1742 -5.2344 47.4554 -5.2344 Q46.7523 -5.2344 46.4242 -4.75 Q46.1117 -4.2656 46.1117 -3.2812 ZM55.8366 -6.6719 Q56.8991 -6.6719 57.5241 -6.0938 Q58.1647 -5.5312 58.1647 -4.2656 L58.1647 0 L56.3835 0 L56.3835 -3.8281 Q56.3835 -4.5312 56.1179 -4.8906 Q55.8679 -5.25 55.321 -5.25 Q54.5085 -5.25 54.196 -4.6875 Q53.8991 -4.125 53.8991 -3.0781 L53.8991 0 L52.1179 0 L52.1179 -6.5469 L53.4772 -6.5469 L53.7272 -5.7188 L53.821 -5.7188 Q54.1335 -6.2188 54.6804 -6.4375 Q55.2272 -6.6719 55.8366 -6.6719 ZM64.58 -1.9375 Q64.58 -0.9531 63.8769 -0.4062 Q63.1738 0.125 61.7832 0.125 Q61.0957 0.125 60.5957 0.0312 Q60.1113 -0.0625 59.6113 -0.2656 L59.6113 -1.7344 Q60.1425 -1.5 60.7519 -1.3438 Q61.3613 -1.1875 61.83 -1.1875 Q62.3613 -1.1875 62.58 -1.3438 Q62.8144 -1.5 62.8144 -1.75 Q62.8144 -1.9219 62.7207 -2.0469 Q62.6269 -2.1875 62.33 -2.3438 Q62.0332 -2.5156 61.3925 -2.7812 Q60.7832 -3.0469 60.3769 -3.2969 Q59.9863 -3.5625 59.7988 -3.9219 Q59.6113 -4.2969 59.6113 -4.8438 Q59.6113 -5.7656 60.3144 -6.2188 Q61.0175 -6.6719 62.1894 -6.6719 Q62.8144 -6.6719 63.3613 -6.5469 Q63.9082 -6.4375 64.5019 -6.1562 L63.955 -4.875 Q63.4863 -5.0781 63.0488 -5.2188 Q62.6113 -5.3594 62.1738 -5.3594 Q61.3769 -5.3594 61.3769 -4.9219 Q61.3769 -4.7656 61.4707 -4.6406 Q61.58 -4.5156 61.8769 -4.3594 Q62.1738 -4.2188 62.7519 -3.9844 Q63.3144 -3.75 63.7207 -3.5 Q64.1269 -3.2656 64.3457 -2.8906 Q64.58 -2.5312 64.58 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath30);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-149.3024" y="-754.5091" width="39.1123" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-149.3024" y="-754.5091" width="39.1123" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-149.3024" y="-739.5091" width="97.7807" style="clip-path:url(#clipPath2); stroke:none;" height="92.8907"
+      /><rect x="-149.3024" y="-739.5091" width="97.7807" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="92.8907"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-113.912,-720.5091)"
+    ><path d="M6.9531 -6.5469 L6.9531 0 L5.5781 0 L5.3438 -0.8438 L5.25 -0.8438 Q4.9375 -0.3438 4.3906 -0.1094 Q3.8438 0.125 3.2344 0.125 Q2.1719 0.125 1.5312 -0.4375 Q0.9062 -1.0156 0.9062 -2.2812 L0.9062 -6.5469 L2.6875 -6.5469 L2.6875 -2.7188 Q2.6875 -2.0312 2.9375 -1.6719 Q3.1875 -1.3125 3.75 -1.3125 Q4.5625 -1.3125 4.8594 -1.8594 Q5.1562 -2.4219 5.1562 -3.4688 L5.1562 -6.5469 L6.9531 -6.5469 ZM11.5872 -1.3125 Q11.884 -1.3125 12.1497 -1.3594 Q12.4309 -1.4219 12.7122 -1.5156 L12.7122 -0.1875 Q12.4153 -0.0625 11.9934 0.0312 Q11.5715 0.125 11.0715 0.125 Q10.4778 0.125 10.009 -0.0625 Q9.5559 -0.2656 9.2747 -0.7344 Q9.009 -1.2188 9.009 -2.0469 L9.009 -5.2031 L8.1653 -5.2031 L8.1653 -5.9688 L9.1497 -6.5625 L9.6653 -7.9375 L10.8059 -7.9375 L10.8059 -6.5469 L12.634 -6.5469 L12.634 -5.2031 L10.8059 -5.2031 L10.8059 -2.0469 Q10.8059 -1.6875 11.009 -1.5 Q11.2278 -1.3125 11.5872 -1.3125 ZM14.9358 -9.125 Q15.3265 -9.125 15.6077 -8.9375 Q15.9046 -8.75 15.9046 -8.25 Q15.9046 -7.75 15.6077 -7.5625 Q15.3265 -7.375 14.9358 -7.375 Q14.514 -7.375 14.2327 -7.5625 Q13.9515 -7.75 13.9515 -8.25 Q13.9515 -8.75 14.2327 -8.9375 Q14.514 -9.125 14.9358 -9.125 ZM15.8108 -6.5469 L15.8108 0 L14.0296 0 L14.0296 -6.5469 L15.8108 -6.5469 ZM19.4709 0 L17.6896 0 L17.6896 -9.125 L19.4709 -9.125 L19.4709 0 ZM25.9277 -1.9375 Q25.9277 -0.9531 25.2246 -0.4062 Q24.5215 0.125 23.1309 0.125 Q22.4434 0.125 21.9434 0.0312 Q21.459 -0.0625 20.959 -0.2656 L20.959 -1.7344 Q21.4902 -1.5 22.0996 -1.3438 Q22.709 -1.1875 23.1777 -1.1875 Q23.709 -1.1875 23.9277 -1.3438 Q24.1621 -1.5 24.1621 -1.75 Q24.1621 -1.9219 24.0684 -2.0469 Q23.9746 -2.1875 23.6777 -2.3438 Q23.3809 -2.5156 22.7402 -2.7812 Q22.1309 -3.0469 21.7246 -3.2969 Q21.334 -3.5625 21.1465 -3.9219 Q20.959 -4.2969 20.959 -4.8438 Q20.959 -5.7656 21.6621 -6.2188 Q22.3652 -6.6719 23.5371 -6.6719 Q24.1621 -6.6719 24.709 -6.5469 Q25.2559 -6.4375 25.8496 -6.1562 L25.3027 -4.875 Q24.834 -5.0781 24.3965 -5.2188 Q23.959 -5.3594 23.5215 -5.3594 Q22.7246 -5.3594 22.7246 -4.9219 Q22.7246 -4.7656 22.8184 -4.6406 Q22.9277 -4.5156 23.2246 -4.3594 Q23.5215 -4.2188 24.0996 -3.9844 Q24.6621 -3.75 25.0684 -3.5 Q25.4746 -3.2656 25.6934 -2.8906 Q25.9277 -2.5312 25.9277 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath31);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-388.441" y="-706.5107" width="166.041" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-388.441" y="-706.5107" width="166.041" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-346.7128,-688.5107)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.4379 0.125 Q29.5942 0.125 28.9223 -0.2188 Q28.2661 -0.5781 27.8754 -1.3125 Q27.5004 -2.0469 27.5004 -3.1875 Q27.5004 -4.375 27.8911 -5.1094 Q28.2973 -5.8594 28.9692 -6.2031 Q29.6567 -6.5469 30.5161 -6.5469 Q31.0004 -6.5469 31.4536 -6.4375 Q31.9223 -6.3438 32.2036 -6.2031 L31.8911 -5.3281 Q31.5942 -5.4375 31.2036 -5.5312 Q30.8286 -5.625 30.4848 -5.625 Q28.5942 -5.625 28.5942 -3.1875 Q28.5942 -2.0312 29.0473 -1.4062 Q29.5161 -0.7969 30.4379 -0.7969 Q30.9536 -0.7969 31.3598 -0.9062 Q31.7661 -1.0156 32.0942 -1.1562 L32.0942 -0.2344 Q31.7817 -0.0625 31.3911 0.0312 Q31.0004 0.125 30.4379 0.125 ZM36.1042 -6.5469 Q36.9323 -6.5469 37.5261 -6.1875 Q38.1198 -5.8281 38.4323 -5.1719 Q38.7605 -4.5312 38.7605 -3.6406 L38.7605 -3.0156 L34.3542 -3.0156 Q34.3855 -1.9219 34.9167 -1.3438 Q35.448 -0.7812 36.4011 -0.7812 Q37.0261 -0.7812 37.4948 -0.8906 Q37.9636 -1.0156 38.4792 -1.2188 L38.4792 -0.2969 Q37.9792 -0.0781 37.4948 0.0156 Q37.0261 0.125 36.3542 0.125 Q35.448 0.125 34.7448 -0.25 Q34.0417 -0.625 33.6511 -1.3594 Q33.2605 -2.0938 33.2605 -3.1719 Q33.2605 -4.2188 33.6198 -4.9688 Q33.9792 -5.7344 34.6198 -6.1406 Q35.2605 -6.5469 36.1042 -6.5469 ZM36.0886 -5.6875 Q35.3386 -5.6875 34.9011 -5.2031 Q34.4636 -4.7188 34.3855 -3.8594 L37.6511 -3.8594 Q37.6511 -4.6719 37.2761 -5.1719 Q36.9011 -5.6875 36.0886 -5.6875 ZM43.4504 -6.5469 Q44.6379 -6.5469 45.3566 -5.7188 Q46.091 -4.8906 46.091 -3.2344 Q46.091 -1.5781 45.3566 -0.7188 Q44.6379 0.125 43.4348 0.125 Q42.7004 0.125 42.216 -0.1562 Q41.7316 -0.4375 41.4504 -0.8125 L41.3723 -0.8125 Q41.4035 -0.6094 41.4191 -0.2969 Q41.4504 0.0156 41.4504 0.2344 L41.4504 2.875 L40.3879 2.875 L40.3879 -6.4375 L41.2629 -6.4375 L41.4035 -5.5625 L41.4504 -5.5625 Q41.7316 -5.9688 42.2004 -6.25 Q42.6691 -6.5469 43.4504 -6.5469 ZM43.2629 -5.6562 Q42.2785 -5.6562 41.8723 -5.1094 Q41.466 -4.5625 41.4504 -3.4375 L41.4504 -3.2344 Q41.4504 -2.0469 41.841 -1.3906 Q42.2316 -0.75 43.2785 -0.75 Q43.8723 -0.75 44.2473 -1.0781 Q44.6223 -1.4062 44.8098 -1.9531 Q44.9973 -2.5156 44.9973 -3.2344 Q44.9973 -4.3438 44.5754 -5 Q44.1535 -5.6562 43.2629 -5.6562 ZM49.9242 -0.75 Q50.1586 -0.75 50.4086 -0.7812 Q50.6586 -0.8281 50.8148 -0.875 L50.8148 -0.0781 Q50.6586 0.0156 50.3461 0.0625 Q50.0336 0.125 49.7367 0.125 Q49.2367 0.125 48.7992 -0.0469 Q48.3773 -0.2344 48.1117 -0.6562 Q47.8617 -1.0938 47.8617 -1.875 L47.8617 -5.6094 L46.9398 -5.6094 L46.9398 -6.125 L47.8617 -6.5469 L48.2836 -7.9062 L48.9086 -7.9062 L48.9086 -6.4375 L50.7679 -6.4375 L50.7679 -5.6094 L48.9086 -5.6094 L48.9086 -1.8906 Q48.9086 -1.3125 49.1898 -1.0312 Q49.4711 -0.75 49.9242 -0.75 ZM52.6469 -8.8438 Q52.8812 -8.8438 53.0687 -8.6719 Q53.2562 -8.5156 53.2562 -8.1719 Q53.2562 -7.8438 53.0687 -7.6719 Q52.8812 -7.5 52.6469 -7.5 Q52.3812 -7.5 52.1937 -7.6719 Q52.0219 -7.8438 52.0219 -8.1719 Q52.0219 -8.5156 52.1937 -8.6719 Q52.3812 -8.8438 52.6469 -8.8438 ZM53.1625 -6.4375 L53.1625 0 L52.1 0 L52.1 -6.4375 L53.1625 -6.4375 ZM60.7897 -3.2344 Q60.7897 -1.625 59.9772 -0.75 Q59.1647 0.125 57.7897 0.125 Q56.946 0.125 56.2741 -0.2656 Q55.6022 -0.6562 55.2116 -1.4062 Q54.8366 -2.1562 54.8366 -3.2344 Q54.8366 -4.8281 55.6335 -5.6875 Q56.446 -6.5469 57.821 -6.5469 Q58.7116 -6.5469 59.3679 -6.1562 Q60.0397 -5.7656 60.4147 -5.0312 Q60.7897 -4.2969 60.7897 -3.2344 ZM55.9304 -3.2344 Q55.9304 -2.0938 56.3835 -1.4219 Q56.8366 -0.75 57.821 -0.75 Q58.7897 -0.75 59.2429 -1.4219 Q59.696 -2.0938 59.696 -3.2344 Q59.696 -4.375 59.2429 -5.0156 Q58.7897 -5.6562 57.8054 -5.6562 Q56.821 -5.6562 56.3679 -5.0156 Q55.9304 -4.375 55.9304 -3.2344 ZM65.5498 -6.5469 Q66.7061 -6.5469 67.2842 -5.9844 Q67.8779 -5.4375 67.8779 -4.1875 L67.8779 0 L66.8467 0 L66.8467 -4.1094 Q66.8467 -5.6562 65.3936 -5.6562 Q64.3311 -5.6562 63.9248 -5.0625 Q63.5186 -4.4688 63.5186 -3.3438 L63.5186 0 L62.4561 0 L62.4561 -6.4375 L63.3154 -6.4375 L63.4717 -5.5625 L63.5342 -5.5625 Q63.8467 -6.0625 64.3936 -6.2969 Q64.9404 -6.5469 65.5498 -6.5469 ZM69.4502 -2.3281 L73.9815 -4.2188 L69.4502 -6.3594 L69.4502 -7.2969 L75.1065 -4.4688 L75.1065 -3.875 L69.4502 -1.3906 L69.4502 -2.3281 ZM76.3143 -2.3281 L80.8455 -4.2188 L76.3143 -6.3594 L76.3143 -7.2969 L81.9705 -4.4688 L81.9705 -3.875 L76.3143 -1.3906 L76.3143 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath32);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-378.441,-672.1666)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM36.2481 0 L33.9512 0 L30.2168 -6.4844 L30.17 -6.4844 Q30.1856 -5.875 30.2168 -5.25 Q30.2481 -4.6406 30.2793 -4.0312 L30.2793 0 L28.6543 0 L28.6543 -8.5625 L30.9512 -8.5625 L34.67 -2.1406 L34.7012 -2.1406 Q34.6856 -2.75 34.6543 -3.3281 Q34.6387 -3.9219 34.6231 -4.5156 L34.6231 -8.5625 L36.2481 -8.5625 L36.2481 0 ZM44.2229 -3.2812 Q44.2229 -1.6562 43.3635 -0.7656 Q42.5042 0.125 41.0354 0.125 Q40.1135 0.125 39.3948 -0.2656 Q38.6917 -0.6719 38.2854 -1.4375 Q37.8792 -2.2031 37.8792 -3.2812 Q37.8792 -4.9219 38.7229 -5.7969 Q39.5823 -6.6719 41.0667 -6.6719 Q41.9885 -6.6719 42.6917 -6.2656 Q43.4104 -5.875 43.8167 -5.125 Q44.2229 -4.375 44.2229 -3.2812 ZM39.6917 -3.2812 Q39.6917 -2.3125 40.0042 -1.8125 Q40.3323 -1.3125 41.051 -1.3125 Q41.7542 -1.3125 42.0667 -1.8125 Q42.3948 -2.3125 42.3948 -3.2812 Q42.3948 -4.2656 42.0667 -4.75 Q41.7542 -5.2344 41.0354 -5.2344 Q40.3323 -5.2344 40.0042 -4.75 Q39.6917 -4.2656 39.6917 -3.2812 ZM48.4635 -1.3125 Q48.7603 -1.3125 49.026 -1.3594 Q49.3072 -1.4219 49.5885 -1.5156 L49.5885 -0.1875 Q49.2916 -0.0625 48.8697 0.0312 Q48.4478 0.125 47.9478 0.125 Q47.3541 0.125 46.8853 -0.0625 Q46.4322 -0.2656 46.151 -0.7344 Q45.8853 -1.2188 45.8853 -2.0469 L45.8853 -5.2031 L45.0416 -5.2031 L45.0416 -5.9688 L46.026 -6.5625 L46.5416 -7.9375 L47.6822 -7.9375 L47.6822 -6.5469 L49.5103 -6.5469 L49.5103 -5.2031 L47.6822 -5.2031 L47.6822 -2.0469 Q47.6822 -1.6875 47.8853 -1.5 Q48.1041 -1.3125 48.4635 -1.3125 ZM52.8434 0 L51.0465 0 L51.0465 -8.5625 L55.9527 -8.5625 L55.9527 -7.0781 L52.8434 -7.0781 L52.8434 -4.875 L55.734 -4.875 L55.734 -3.3906 L52.8434 -3.3906 L52.8434 0 ZM63.447 -3.2812 Q63.447 -1.6562 62.5877 -0.7656 Q61.7283 0.125 60.2595 0.125 Q59.3377 0.125 58.6189 -0.2656 Q57.9158 -0.6719 57.5095 -1.4375 Q57.1033 -2.2031 57.1033 -3.2812 Q57.1033 -4.9219 57.947 -5.7969 Q58.8064 -6.6719 60.2908 -6.6719 Q61.2127 -6.6719 61.9158 -6.2656 Q62.6345 -5.875 63.0408 -5.125 Q63.447 -4.375 63.447 -3.2812 ZM58.9158 -3.2812 Q58.9158 -2.3125 59.2283 -1.8125 Q59.5564 -1.3125 60.2752 -1.3125 Q60.9783 -1.3125 61.2908 -1.8125 Q61.6189 -2.3125 61.6189 -3.2812 Q61.6189 -4.2656 61.2908 -4.75 Q60.9783 -5.2344 60.2595 -5.2344 Q59.5564 -5.2344 59.2283 -4.75 Q58.9158 -4.2656 58.9158 -3.2812 ZM70.9376 -6.5469 L70.9376 0 L69.5626 0 L69.3282 -0.8438 L69.2345 -0.8438 Q68.922 -0.3438 68.3751 -0.1094 Q67.8282 0.125 67.2188 0.125 Q66.1563 0.125 65.5157 -0.4375 Q64.8907 -1.0156 64.8907 -2.2812 L64.8907 -6.5469 L66.672 -6.5469 L66.672 -2.7188 Q66.672 -2.0312 66.922 -1.6719 Q67.172 -1.3125 67.7345 -1.3125 Q68.547 -1.3125 68.8438 -1.8594 Q69.1407 -2.4219 69.1407 -3.4688 L69.1407 -6.5469 L70.9376 -6.5469 ZM76.5248 -6.6719 Q77.5873 -6.6719 78.2123 -6.0938 Q78.8529 -5.5312 78.8529 -4.2656 L78.8529 0 L77.0716 0 L77.0716 -3.8281 Q77.0716 -4.5312 76.806 -4.8906 Q76.556 -5.25 76.0091 -5.25 Q75.1966 -5.25 74.8841 -4.6875 Q74.5873 -4.125 74.5873 -3.0781 L74.5873 0 L72.806 0 L72.806 -6.5469 L74.1654 -6.5469 L74.4154 -5.7188 L74.5091 -5.7188 Q74.8216 -6.2188 75.3685 -6.4375 Q75.9154 -6.6719 76.5248 -6.6719 ZM82.7682 0.125 Q81.6744 0.125 80.9869 -0.7344 Q80.2994 -1.5938 80.2994 -3.2656 Q80.2994 -4.9375 80.9869 -5.7969 Q81.6901 -6.6719 82.8151 -6.6719 Q83.5182 -6.6719 83.9713 -6.3906 Q84.4401 -6.125 84.6901 -5.7188 L84.7526 -5.7188 Q84.7213 -5.9062 84.6744 -6.2656 Q84.6276 -6.6406 84.6276 -7.0156 L84.6276 -9.125 L86.4088 -9.125 L86.4088 0 L85.0494 0 L84.6901 -0.8594 L84.6276 -0.8594 Q84.3619 -0.4375 83.9088 -0.1562 Q83.4713 0.125 82.7682 0.125 ZM83.3932 -1.3125 Q84.1276 -1.3125 84.4244 -1.75 Q84.7369 -2.1875 84.7369 -3.0625 L84.7369 -3.25 Q84.7369 -4.2188 84.4401 -4.7188 Q84.1588 -5.2188 83.3619 -5.2188 Q82.7838 -5.2188 82.4401 -4.7031 Q82.1119 -4.2031 82.1119 -3.2344 Q82.1119 -2.2812 82.4401 -1.7969 Q82.7838 -1.3125 83.3932 -1.3125 ZM93.3642 0 L88.4267 0 L88.4267 -8.5625 L93.3642 -8.5625 L93.3642 -7.0781 L90.2392 -7.0781 L90.2392 -5.2031 L93.1455 -5.2031 L93.1455 -3.7031 L90.2392 -3.7031 L90.2392 -1.5 L93.3642 -1.5 L93.3642 0 ZM96.3499 -3.3438 L94.2405 -6.5469 L96.2718 -6.5469 L97.5374 -4.4688 L98.8187 -6.5469 L100.8499 -6.5469 L98.7093 -3.3438 L100.9437 0 L98.9124 0 L97.5374 -2.25 L96.1624 0 L94.1312 0 L96.3499 -3.3438 ZM104.5985 0.125 Q103.1453 0.125 102.3485 -0.6875 Q101.5516 -1.5 101.5516 -3.2344 Q101.5516 -4.4375 101.9578 -5.1875 Q102.3641 -5.9531 103.0828 -6.3125 Q103.8172 -6.6719 104.7547 -6.6719 Q105.4266 -6.6719 105.9266 -6.5312 Q106.4266 -6.4062 106.8016 -6.2344 L106.2703 -4.8438 Q105.8485 -5.0156 105.4735 -5.125 Q105.1141 -5.2344 104.7547 -5.2344 Q103.3641 -5.2344 103.3641 -3.25 Q103.3641 -2.2656 103.7235 -1.7969 Q104.0985 -1.3281 104.7547 -1.3281 Q105.3172 -1.3281 105.7547 -1.4688 Q106.1922 -1.625 106.5985 -1.8906 L106.5985 -0.375 Q106.1922 -0.1094 105.7391 0 Q105.286 0.125 104.5985 0.125 ZM110.8134 -6.6719 Q112.1571 -6.6719 112.954 -5.8906 Q113.7509 -5.125 113.7509 -3.7031 L113.7509 -2.8281 L109.5321 -2.8281 Q109.5478 -2.0781 109.9696 -1.6406 Q110.4071 -1.2188 111.1571 -1.2188 Q111.7978 -1.2188 112.3134 -1.3438 Q112.829 -1.4688 113.3759 -1.7344 L113.3759 -0.3438 Q112.8915 -0.1094 112.3603 0 Q111.829 0.125 111.079 0.125 Q110.0946 0.125 109.329 -0.2344 Q108.579 -0.6094 108.1415 -1.3438 Q107.7196 -2.0938 107.7196 -3.2344 Q107.7196 -4.375 108.0946 -5.1406 Q108.4853 -5.9062 109.1884 -6.2812 Q109.8915 -6.6719 110.8134 -6.6719 ZM110.8134 -5.4062 Q110.2978 -5.4062 109.954 -5.0625 Q109.6259 -4.7344 109.5634 -4.0156 L112.0634 -4.0156 Q112.0634 -4.625 111.7509 -5.0156 Q111.454 -5.4062 110.8134 -5.4062 ZM118.8429 -6.6719 Q119.9523 -6.6719 120.6398 -5.8125 Q121.3273 -4.9531 121.3273 -3.2812 Q121.3273 -1.625 120.6086 -0.75 Q119.9054 0.125 118.7961 0.125 Q118.0929 0.125 117.6711 -0.125 Q117.2492 -0.3906 116.9836 -0.7188 L116.8898 -0.7188 Q116.9836 -0.2188 116.9836 0.2344 L116.9836 2.875 L115.2023 2.875 L115.2023 -6.5469 L116.6554 -6.5469 L116.9054 -5.7031 L116.9836 -5.7031 Q117.2492 -6.0938 117.6867 -6.375 Q118.1398 -6.6719 118.8429 -6.6719 ZM118.2804 -5.25 Q117.5773 -5.25 117.2961 -4.8125 Q117.0148 -4.375 116.9836 -3.4844 L116.9836 -3.2969 Q116.9836 -2.3594 117.2648 -1.8438 Q117.5461 -1.3281 118.2961 -1.3281 Q118.9054 -1.3281 119.2023 -1.8438 Q119.4992 -2.3594 119.4992 -3.3125 Q119.4992 -5.25 118.2804 -5.25 ZM125.564 -1.3125 Q125.8609 -1.3125 126.1265 -1.3594 Q126.4077 -1.4219 126.689 -1.5156 L126.689 -0.1875 Q126.3921 -0.0625 125.9702 0.0312 Q125.5484 0.125 125.0484 0.125 Q124.4546 0.125 123.9859 -0.0625 Q123.5327 -0.2656 123.2515 -0.7344 Q122.9859 -1.2188 122.9859 -2.0469 L122.9859 -5.2031 L122.1421 -5.2031 L122.1421 -5.9688 L123.1265 -6.5625 L123.6421 -7.9375 L124.7827 -7.9375 L124.7827 -6.5469 L126.6109 -6.5469 L126.6109 -5.2031 L124.7827 -5.2031 L124.7827 -2.0469 Q124.7827 -1.6875 124.9859 -1.5 Q125.2046 -1.3125 125.564 -1.3125 ZM128.9127 -9.125 Q129.3033 -9.125 129.5845 -8.9375 Q129.8814 -8.75 129.8814 -8.25 Q129.8814 -7.75 129.5845 -7.5625 Q129.3033 -7.375 128.9127 -7.375 Q128.4908 -7.375 128.2095 -7.5625 Q127.9283 -7.75 127.9283 -8.25 Q127.9283 -8.75 128.2095 -8.9375 Q128.4908 -9.125 128.9127 -9.125 ZM129.7877 -6.5469 L129.7877 0 L128.0064 0 L128.0064 -6.5469 L129.7877 -6.5469 ZM137.6196 -3.2812 Q137.6196 -1.6562 136.7602 -0.7656 Q135.9008 0.125 134.4321 0.125 Q133.5102 0.125 132.7914 -0.2656 Q132.0883 -0.6719 131.6821 -1.4375 Q131.2758 -2.2031 131.2758 -3.2812 Q131.2758 -4.9219 132.1196 -5.7969 Q132.9789 -6.6719 134.4633 -6.6719 Q135.3852 -6.6719 136.0883 -6.2656 Q136.8071 -5.875 137.2133 -5.125 Q137.6196 -4.375 137.6196 -3.2812 ZM133.0883 -3.2812 Q133.0883 -2.3125 133.4008 -1.8125 Q133.7289 -1.3125 134.4477 -1.3125 Q135.1508 -1.3125 135.4633 -1.8125 Q135.7914 -2.3125 135.7914 -3.2812 Q135.7914 -4.2656 135.4633 -4.75 Q135.1508 -5.2344 134.4321 -5.2344 Q133.7289 -5.2344 133.4008 -4.75 Q133.0883 -4.2656 133.0883 -3.2812 ZM142.8132 -6.6719 Q143.8757 -6.6719 144.5007 -6.0938 Q145.1414 -5.5312 145.1414 -4.2656 L145.1414 0 L143.3601 0 L143.3601 -3.8281 Q143.3601 -4.5312 143.0945 -4.8906 Q142.8445 -5.25 142.2976 -5.25 Q141.4851 -5.25 141.1726 -4.6875 Q140.8757 -4.125 140.8757 -3.0781 L140.8757 0 L139.0945 0 L139.0945 -6.5469 L140.4539 -6.5469 L140.7039 -5.7188 L140.7976 -5.7188 Q141.1101 -6.2188 141.657 -6.4375 Q142.2039 -6.6719 142.8132 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath33);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="-8.2084" x2="21.4707" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-679.6929"
+      /><line x1="21.4707" x2="21.4707" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-794.4893"
+      /><line x1="21.4707" x2="61.9222" y1="-794.4893" style="fill:none; clip-path:url(#clipPath2);" y2="-794.4893"
+      /><line x1="-8.2084" x2="2.1839" y1="-679.6929" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-685.6929"
+      /><line x1="-8.2084" x2="2.1839" y1="-679.6929" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-673.6929"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="51.1497" y="-642.5076" width="241.9286" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="51.1497" y="-642.5076" width="241.9286" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="51.1497" y="-627.5076" width="604.8216" style="clip-path:url(#clipPath2); stroke:none;" height="215.7895"
+      /><rect x="51.1497" y="-627.5076" width="604.8216" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="215.7895"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(329.4523,-608.5076)"
+    ><path d="M5.5156 -1.9375 Q5.5156 -0.9531 4.8125 -0.4062 Q4.1094 0.125 2.7188 0.125 Q2.0312 0.125 1.5312 0.0312 Q1.0469 -0.0625 0.5469 -0.2656 L0.5469 -1.7344 Q1.0781 -1.5 1.6875 -1.3438 Q2.2969 -1.1875 2.7656 -1.1875 Q3.2969 -1.1875 3.5156 -1.3438 Q3.75 -1.5 3.75 -1.75 Q3.75 -1.9219 3.6562 -2.0469 Q3.5625 -2.1875 3.2656 -2.3438 Q2.9688 -2.5156 2.3281 -2.7812 Q1.7188 -3.0469 1.3125 -3.2969 Q0.9219 -3.5625 0.7344 -3.9219 Q0.5469 -4.2969 0.5469 -4.8438 Q0.5469 -5.7656 1.25 -6.2188 Q1.9531 -6.6719 3.125 -6.6719 Q3.75 -6.6719 4.2969 -6.5469 Q4.8438 -6.4375 5.4375 -6.1562 L4.8906 -4.875 Q4.4219 -5.0781 3.9844 -5.2188 Q3.5469 -5.3594 3.1094 -5.3594 Q2.3125 -5.3594 2.3125 -4.9219 Q2.3125 -4.7656 2.4062 -4.6406 Q2.5156 -4.5156 2.8125 -4.3594 Q3.1094 -4.2188 3.6875 -3.9844 Q4.25 -3.75 4.6562 -3.5 Q5.0625 -3.2656 5.2812 -2.8906 Q5.5156 -2.5312 5.5156 -1.9375 ZM9.6047 -6.6719 Q10.9484 -6.6719 11.7453 -5.8906 Q12.5422 -5.125 12.5422 -3.7031 L12.5422 -2.8281 L8.3234 -2.8281 Q8.339 -2.0781 8.7609 -1.6406 Q9.1984 -1.2188 9.9484 -1.2188 Q10.589 -1.2188 11.1047 -1.3438 Q11.6203 -1.4688 12.1672 -1.7344 L12.1672 -0.3438 Q11.6828 -0.1094 11.1515 0 Q10.6203 0.125 9.8703 0.125 Q8.8859 0.125 8.1203 -0.2344 Q7.3703 -0.6094 6.9328 -1.3438 Q6.5109 -2.0938 6.5109 -3.2344 Q6.5109 -4.375 6.8859 -5.1406 Q7.2765 -5.9062 7.9797 -6.2812 Q8.6828 -6.6719 9.6047 -6.6719 ZM9.6047 -5.4062 Q9.089 -5.4062 8.7453 -5.0625 Q8.4172 -4.7344 8.3547 -4.0156 L10.8547 -4.0156 Q10.8547 -4.625 10.5422 -5.0156 Q10.2453 -5.4062 9.6047 -5.4062 ZM17.6498 -6.6719 Q17.7905 -6.6719 17.9623 -6.6562 Q18.1498 -6.6406 18.2592 -6.625 L18.1186 -4.9375 Q18.0405 -4.9688 17.8686 -4.9844 Q17.7123 -5 17.5873 -5 Q17.1342 -5 16.7123 -4.8438 Q16.2905 -4.6875 16.0248 -4.3125 Q15.7748 -3.9531 15.7748 -3.3438 L15.7748 0 L13.9936 0 L13.9936 -6.5469 L15.353 -6.5469 L15.6186 -5.4531 L15.6967 -5.4531 Q15.978 -5.9531 16.478 -6.3125 Q16.9936 -6.6719 17.6498 -6.6719 ZM21.0041 0 L18.5041 -6.5469 L20.3791 -6.5469 L21.6291 -2.8125 Q21.7385 -2.4844 21.801 -2.125 Q21.8791 -1.7656 21.8948 -1.4688 L21.9416 -1.4688 Q21.9729 -2.125 22.2073 -2.8125 L23.4573 -6.5469 L25.3323 -6.5469 L22.8323 0 L21.0041 0 ZM27.1759 -9.125 Q27.5666 -9.125 27.8478 -8.9375 Q28.1447 -8.75 28.1447 -8.25 Q28.1447 -7.75 27.8478 -7.5625 Q27.5666 -7.375 27.1759 -7.375 Q26.7541 -7.375 26.4728 -7.5625 Q26.1916 -7.75 26.1916 -8.25 Q26.1916 -8.75 26.4728 -8.9375 Q26.7541 -9.125 27.1759 -9.125 ZM28.0509 -6.5469 L28.0509 0 L26.2697 0 L26.2697 -6.5469 L28.0509 -6.5469 ZM32.586 0.125 Q31.1328 0.125 30.336 -0.6875 Q29.5391 -1.5 29.5391 -3.2344 Q29.5391 -4.4375 29.9453 -5.1875 Q30.3516 -5.9531 31.0703 -6.3125 Q31.8047 -6.6719 32.7422 -6.6719 Q33.4141 -6.6719 33.9141 -6.5312 Q34.4141 -6.4062 34.7891 -6.2344 L34.2578 -4.8438 Q33.836 -5.0156 33.461 -5.125 Q33.1016 -5.2344 32.7422 -5.2344 Q31.3516 -5.2344 31.3516 -3.25 Q31.3516 -2.2656 31.711 -1.7969 Q32.086 -1.3281 32.7422 -1.3281 Q33.3047 -1.3281 33.7422 -1.4688 Q34.1797 -1.625 34.586 -1.8906 L34.586 -0.375 Q34.1797 -0.1094 33.7266 0 Q33.2735 0.125 32.586 0.125 ZM38.8009 -6.6719 Q40.1446 -6.6719 40.9415 -5.8906 Q41.7384 -5.125 41.7384 -3.7031 L41.7384 -2.8281 L37.5196 -2.8281 Q37.5352 -2.0781 37.9571 -1.6406 Q38.3946 -1.2188 39.1446 -1.2188 Q39.7852 -1.2188 40.3009 -1.3438 Q40.8165 -1.4688 41.3634 -1.7344 L41.3634 -0.3438 Q40.879 -0.1094 40.3477 0 Q39.8165 0.125 39.0665 0.125 Q38.0821 0.125 37.3165 -0.2344 Q36.5665 -0.6094 36.129 -1.3438 Q35.7071 -2.0938 35.7071 -3.2344 Q35.7071 -4.375 36.0821 -5.1406 Q36.4727 -5.9062 37.1759 -6.2812 Q37.879 -6.6719 38.8009 -6.6719 ZM38.8009 -5.4062 Q38.2852 -5.4062 37.9415 -5.0625 Q37.6134 -4.7344 37.5509 -4.0156 L40.0509 -4.0156 Q40.0509 -4.625 39.7384 -5.0156 Q39.4415 -5.4062 38.8009 -5.4062 ZM47.7679 -1.9375 Q47.7679 -0.9531 47.0648 -0.4062 Q46.3617 0.125 44.9711 0.125 Q44.2836 0.125 43.7836 0.0312 Q43.2992 -0.0625 42.7992 -0.2656 L42.7992 -1.7344 Q43.3304 -1.5 43.9398 -1.3438 Q44.5492 -1.1875 45.0179 -1.1875 Q45.5492 -1.1875 45.7679 -1.3438 Q46.0023 -1.5 46.0023 -1.75 Q46.0023 -1.9219 45.9086 -2.0469 Q45.8148 -2.1875 45.5179 -2.3438 Q45.2211 -2.5156 44.5804 -2.7812 Q43.9711 -3.0469 43.5648 -3.2969 Q43.1742 -3.5625 42.9867 -3.9219 Q42.7992 -4.2969 42.7992 -4.8438 Q42.7992 -5.7656 43.5023 -6.2188 Q44.2054 -6.6719 45.3773 -6.6719 Q46.0023 -6.6719 46.5492 -6.5469 Q47.0961 -6.4375 47.6898 -6.1562 L47.1429 -4.875 Q46.6742 -5.0781 46.2367 -5.2188 Q45.7992 -5.3594 45.3617 -5.3594 Q44.5648 -5.3594 44.5648 -4.9219 Q44.5648 -4.7656 44.6586 -4.6406 Q44.7679 -4.5156 45.0648 -4.3594 Q45.3617 -4.2188 45.9398 -3.9844 Q46.5023 -3.75 46.9086 -3.5 Q47.3148 -3.2656 47.5336 -2.8906 Q47.7679 -2.5312 47.7679 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath34);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-134.3024" y="-698.2905" width="48" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="-134.3024" y="-698.2905" width="48" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-124.3024,-680.2905)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM12.7752 -1.3125 Q13.0721 -1.3125 13.3377 -1.3594 Q13.6189 -1.4219 13.9002 -1.5156 L13.9002 -0.1875 Q13.6033 -0.0625 13.1814 0.0312 Q12.7596 0.125 12.2596 0.125 Q11.6658 0.125 11.1971 -0.0625 Q10.7439 -0.2656 10.4627 -0.7344 Q10.1971 -1.2188 10.1971 -2.0469 L10.1971 -5.2031 L9.3533 -5.2031 L9.3533 -5.9688 L10.3377 -6.5625 L10.8533 -7.9375 L11.9939 -7.9375 L11.9939 -6.5469 L13.8221 -6.5469 L13.8221 -5.2031 L11.9939 -5.2031 L11.9939 -2.0469 Q11.9939 -1.6875 12.1971 -1.5 Q12.4158 -1.3125 12.7752 -1.3125 ZM16.1239 -9.125 Q16.5145 -9.125 16.7957 -8.9375 Q17.0926 -8.75 17.0926 -8.25 Q17.0926 -7.75 16.7957 -7.5625 Q16.5145 -7.375 16.1239 -7.375 Q15.702 -7.375 15.4207 -7.5625 Q15.1395 -7.75 15.1395 -8.25 Q15.1395 -8.75 15.4207 -8.9375 Q15.702 -9.125 16.1239 -9.125 ZM16.9989 -6.5469 L16.9989 0 L15.2176 0 L15.2176 -6.5469 L16.9989 -6.5469 ZM20.6589 0 L18.8776 0 L18.8776 -9.125 L20.6589 -9.125 L20.6589 0 ZM27.1158 -1.9375 Q27.1158 -0.9531 26.4126 -0.4062 Q25.7095 0.125 24.3189 0.125 Q23.6314 0.125 23.1314 0.0312 Q22.647 -0.0625 22.147 -0.2656 L22.147 -1.7344 Q22.6783 -1.5 23.2876 -1.3438 Q23.897 -1.1875 24.3658 -1.1875 Q24.897 -1.1875 25.1158 -1.3438 Q25.3501 -1.5 25.3501 -1.75 Q25.3501 -1.9219 25.2564 -2.0469 Q25.1626 -2.1875 24.8658 -2.3438 Q24.5689 -2.5156 23.9283 -2.7812 Q23.3189 -3.0469 22.9126 -3.2969 Q22.522 -3.5625 22.3345 -3.9219 Q22.147 -4.2969 22.147 -4.8438 Q22.147 -5.7656 22.8501 -6.2188 Q23.5533 -6.6719 24.7251 -6.6719 Q25.3501 -6.6719 25.897 -6.5469 Q26.4439 -6.4375 27.0376 -6.1562 L26.4908 -4.875 Q26.022 -5.0781 25.5845 -5.2188 Q25.147 -5.3594 24.7095 -5.3594 Q23.9126 -5.3594 23.9126 -4.9219 Q23.9126 -4.7656 24.0064 -4.6406 Q24.1158 -4.5156 24.4126 -4.3594 Q24.7095 -4.2188 25.2876 -3.9844 Q25.8501 -3.75 26.2564 -3.5 Q26.6626 -3.2656 26.8814 -2.8906 Q27.1158 -2.5312 27.1158 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath35);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="85.5466" y="-539.827" width="90.4765" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="85.5466" y="-539.827" width="90.4765" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(96.7848,-521.827)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath36);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(95.5466,-505.4829)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM33.7012 -2.375 Q33.7012 -1.2344 32.8731 -0.5469 Q32.0606 0.125 30.545 0.125 Q29.2012 0.125 28.1231 -0.3906 L28.1231 -2.0938 Q28.7325 -1.8281 29.3887 -1.5938 Q30.045 -1.375 30.7012 -1.375 Q31.3731 -1.375 31.6543 -1.625 Q31.9356 -1.8906 31.9356 -2.2969 Q31.9356 -2.6094 31.7012 -2.8438 Q31.4825 -3.0781 31.1075 -3.2656 Q30.7481 -3.4688 30.2637 -3.7031 Q29.9668 -3.8438 29.6075 -4.0312 Q29.2637 -4.2344 28.9512 -4.5312 Q28.6387 -4.8281 28.42 -5.2344 Q28.2168 -5.6562 28.2168 -6.25 Q28.2168 -7.4062 28.9981 -8.0469 Q29.7793 -8.6875 31.1231 -8.6875 Q31.795 -8.6875 32.4043 -8.5312 Q33.0137 -8.375 33.67 -8.0938 L33.0918 -6.6719 Q32.4981 -6.9062 32.0293 -7.0312 Q31.5606 -7.1719 31.0606 -7.1719 Q30.545 -7.1719 30.2637 -6.9375 Q29.9981 -6.7031 29.9981 -6.3125 Q29.9981 -5.8594 30.4043 -5.5938 Q30.8106 -5.3281 31.6231 -4.9375 Q32.2793 -4.625 32.7325 -4.2812 Q33.2012 -3.9531 33.4512 -3.5 Q33.7012 -3.0469 33.7012 -2.375 ZM37.8289 -6.6719 Q39.1726 -6.6719 39.9695 -5.8906 Q40.7664 -5.125 40.7664 -3.7031 L40.7664 -2.8281 L36.5476 -2.8281 Q36.5632 -2.0781 36.9851 -1.6406 Q37.4226 -1.2188 38.1726 -1.2188 Q38.8132 -1.2188 39.3289 -1.3438 Q39.8445 -1.4688 40.3914 -1.7344 L40.3914 -0.3438 Q39.907 -0.1094 39.3757 0 Q38.8445 0.125 38.0945 0.125 Q37.1101 0.125 36.3445 -0.2344 Q35.5945 -0.6094 35.157 -1.3438 Q34.7351 -2.0938 34.7351 -3.2344 Q34.7351 -4.375 35.1101 -5.1406 Q35.5007 -5.9062 36.2039 -6.2812 Q36.907 -6.6719 37.8289 -6.6719 ZM37.8289 -5.4062 Q37.3132 -5.4062 36.9695 -5.0625 Q36.6414 -4.7344 36.5789 -4.0156 L39.0789 -4.0156 Q39.0789 -4.625 38.7664 -5.0156 Q38.4695 -5.4062 37.8289 -5.4062 ZM45.8741 -6.6719 Q46.0147 -6.6719 46.1866 -6.6562 Q46.3741 -6.6406 46.4834 -6.625 L46.3428 -4.9375 Q46.2647 -4.9688 46.0928 -4.9844 Q45.9366 -5 45.8116 -5 Q45.3584 -5 44.9366 -4.8438 Q44.5147 -4.6875 44.2491 -4.3125 Q43.9991 -3.9531 43.9991 -3.3438 L43.9991 0 L42.2178 0 L42.2178 -6.5469 L43.5772 -6.5469 L43.8428 -5.4531 L43.9209 -5.4531 Q44.2022 -5.9531 44.7022 -6.3125 Q45.2178 -6.6719 45.8741 -6.6719 ZM49.2283 0 L46.7283 -6.5469 L48.6033 -6.5469 L49.8533 -2.8125 Q49.9627 -2.4844 50.0252 -2.125 Q50.1033 -1.7656 50.119 -1.4688 L50.1658 -1.4688 Q50.1971 -2.125 50.4315 -2.8125 L51.6815 -6.5469 L53.5565 -6.5469 L51.0565 0 L49.2283 0 ZM55.4001 -9.125 Q55.7908 -9.125 56.072 -8.9375 Q56.3689 -8.75 56.3689 -8.25 Q56.3689 -7.75 56.072 -7.5625 Q55.7908 -7.375 55.4001 -7.375 Q54.9783 -7.375 54.697 -7.5625 Q54.4158 -7.75 54.4158 -8.25 Q54.4158 -8.75 54.697 -8.9375 Q54.9783 -9.125 55.4001 -9.125 ZM56.2751 -6.5469 L56.2751 0 L54.4939 0 L54.4939 -6.5469 L56.2751 -6.5469 ZM60.8102 0.125 Q59.357 0.125 58.5602 -0.6875 Q57.7633 -1.5 57.7633 -3.2344 Q57.7633 -4.4375 58.1695 -5.1875 Q58.5758 -5.9531 59.2945 -6.3125 Q60.0289 -6.6719 60.9664 -6.6719 Q61.6383 -6.6719 62.1383 -6.5312 Q62.6383 -6.4062 63.0133 -6.2344 L62.482 -4.8438 Q62.0602 -5.0156 61.6852 -5.125 Q61.3258 -5.2344 60.9664 -5.2344 Q59.5758 -5.2344 59.5758 -3.25 Q59.5758 -2.2656 59.9352 -1.7969 Q60.3102 -1.3281 60.9664 -1.3281 Q61.5289 -1.3281 61.9664 -1.4688 Q62.4039 -1.625 62.8102 -1.8906 L62.8102 -0.375 Q62.4039 -0.1094 61.9508 0 Q61.4977 0.125 60.8102 0.125 ZM67.0251 -6.6719 Q68.3688 -6.6719 69.1657 -5.8906 Q69.9626 -5.125 69.9626 -3.7031 L69.9626 -2.8281 L65.7438 -2.8281 Q65.7595 -2.0781 66.1813 -1.6406 Q66.6188 -1.2188 67.3688 -1.2188 Q68.0095 -1.2188 68.5251 -1.3438 Q69.0407 -1.4688 69.5876 -1.7344 L69.5876 -0.3438 Q69.1032 -0.1094 68.572 0 Q68.0407 0.125 67.2907 0.125 Q66.3063 0.125 65.5407 -0.2344 Q64.7907 -0.6094 64.3532 -1.3438 Q63.9313 -2.0938 63.9313 -3.2344 Q63.9313 -4.375 64.3063 -5.1406 Q64.697 -5.9062 65.4001 -6.2812 Q66.1032 -6.6719 67.0251 -6.6719 ZM67.0251 -5.4062 Q66.5095 -5.4062 66.1657 -5.0625 Q65.8376 -4.7344 65.7751 -4.0156 L68.2751 -4.0156 Q68.2751 -4.625 67.9626 -5.0156 Q67.6657 -5.4062 67.0251 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath37);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="57.198" x2="57.198" y1="-233.5502" style="fill:none; clip-path:url(#clipPath2);" y2="-411.718"
+      /><line x1="57.198" x2="51.198" y1="-233.5502" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-243.9425"
+      /><line x1="57.198" x2="63.198" y1="-233.5502" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-243.9425"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-388.4205" y="-642.5462" width="166" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-388.4205" y="-642.5462" width="166" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-370.1549,-624.5462)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.4379 0.125 Q29.5942 0.125 28.9223 -0.2188 Q28.2661 -0.5781 27.8754 -1.3125 Q27.5004 -2.0469 27.5004 -3.1875 Q27.5004 -4.375 27.8911 -5.1094 Q28.2973 -5.8594 28.9692 -6.2031 Q29.6567 -6.5469 30.5161 -6.5469 Q31.0004 -6.5469 31.4536 -6.4375 Q31.9223 -6.3438 32.2036 -6.2031 L31.8911 -5.3281 Q31.5942 -5.4375 31.2036 -5.5312 Q30.8286 -5.625 30.4848 -5.625 Q28.5942 -5.625 28.5942 -3.1875 Q28.5942 -2.0312 29.0473 -1.4062 Q29.5161 -0.7969 30.4379 -0.7969 Q30.9536 -0.7969 31.3598 -0.9062 Q31.7661 -1.0156 32.0942 -1.1562 L32.0942 -0.2344 Q31.7817 -0.0625 31.3911 0.0312 Q31.0004 0.125 30.4379 0.125 ZM36.1042 -6.5469 Q36.9323 -6.5469 37.5261 -6.1875 Q38.1198 -5.8281 38.4323 -5.1719 Q38.7605 -4.5312 38.7605 -3.6406 L38.7605 -3.0156 L34.3542 -3.0156 Q34.3855 -1.9219 34.9167 -1.3438 Q35.448 -0.7812 36.4011 -0.7812 Q37.0261 -0.7812 37.4948 -0.8906 Q37.9636 -1.0156 38.4792 -1.2188 L38.4792 -0.2969 Q37.9792 -0.0781 37.4948 0.0156 Q37.0261 0.125 36.3542 0.125 Q35.448 0.125 34.7448 -0.25 Q34.0417 -0.625 33.6511 -1.3594 Q33.2605 -2.0938 33.2605 -3.1719 Q33.2605 -4.2188 33.6198 -4.9688 Q33.9792 -5.7344 34.6198 -6.1406 Q35.2605 -6.5469 36.1042 -6.5469 ZM36.0886 -5.6875 Q35.3386 -5.6875 34.9011 -5.2031 Q34.4636 -4.7188 34.3855 -3.8594 L37.6511 -3.8594 Q37.6511 -4.6719 37.2761 -5.1719 Q36.9011 -5.6875 36.0886 -5.6875 ZM43.4504 -6.5469 Q44.6379 -6.5469 45.3566 -5.7188 Q46.091 -4.8906 46.091 -3.2344 Q46.091 -1.5781 45.3566 -0.7188 Q44.6379 0.125 43.4348 0.125 Q42.7004 0.125 42.216 -0.1562 Q41.7316 -0.4375 41.4504 -0.8125 L41.3723 -0.8125 Q41.4035 -0.6094 41.4191 -0.2969 Q41.4504 0.0156 41.4504 0.2344 L41.4504 2.875 L40.3879 2.875 L40.3879 -6.4375 L41.2629 -6.4375 L41.4035 -5.5625 L41.4504 -5.5625 Q41.7316 -5.9688 42.2004 -6.25 Q42.6691 -6.5469 43.4504 -6.5469 ZM43.2629 -5.6562 Q42.2785 -5.6562 41.8723 -5.1094 Q41.466 -4.5625 41.4504 -3.4375 L41.4504 -3.2344 Q41.4504 -2.0469 41.841 -1.3906 Q42.2316 -0.75 43.2785 -0.75 Q43.8723 -0.75 44.2473 -1.0781 Q44.6223 -1.4062 44.8098 -1.9531 Q44.9973 -2.5156 44.9973 -3.2344 Q44.9973 -4.3438 44.5754 -5 Q44.1535 -5.6562 43.2629 -5.6562 ZM49.9242 -0.75 Q50.1586 -0.75 50.4086 -0.7812 Q50.6586 -0.8281 50.8148 -0.875 L50.8148 -0.0781 Q50.6586 0.0156 50.3461 0.0625 Q50.0336 0.125 49.7367 0.125 Q49.2367 0.125 48.7992 -0.0469 Q48.3773 -0.2344 48.1117 -0.6562 Q47.8617 -1.0938 47.8617 -1.875 L47.8617 -5.6094 L46.9398 -5.6094 L46.9398 -6.125 L47.8617 -6.5469 L48.2836 -7.9062 L48.9086 -7.9062 L48.9086 -6.4375 L50.7679 -6.4375 L50.7679 -5.6094 L48.9086 -5.6094 L48.9086 -1.8906 Q48.9086 -1.3125 49.1898 -1.0312 Q49.4711 -0.75 49.9242 -0.75 ZM52.6469 -8.8438 Q52.8812 -8.8438 53.0687 -8.6719 Q53.2562 -8.5156 53.2562 -8.1719 Q53.2562 -7.8438 53.0687 -7.6719 Q52.8812 -7.5 52.6469 -7.5 Q52.3812 -7.5 52.1937 -7.6719 Q52.0219 -7.8438 52.0219 -8.1719 Q52.0219 -8.5156 52.1937 -8.6719 Q52.3812 -8.8438 52.6469 -8.8438 ZM53.1625 -6.4375 L53.1625 0 L52.1 0 L52.1 -6.4375 L53.1625 -6.4375 ZM60.7897 -3.2344 Q60.7897 -1.625 59.9772 -0.75 Q59.1647 0.125 57.7897 0.125 Q56.946 0.125 56.2741 -0.2656 Q55.6022 -0.6562 55.2116 -1.4062 Q54.8366 -2.1562 54.8366 -3.2344 Q54.8366 -4.8281 55.6335 -5.6875 Q56.446 -6.5469 57.821 -6.5469 Q58.7116 -6.5469 59.3679 -6.1562 Q60.0397 -5.7656 60.4147 -5.0312 Q60.7897 -4.2969 60.7897 -3.2344 ZM55.9304 -3.2344 Q55.9304 -2.0938 56.3835 -1.4219 Q56.8366 -0.75 57.821 -0.75 Q58.7897 -0.75 59.2429 -1.4219 Q59.696 -2.0938 59.696 -3.2344 Q59.696 -4.375 59.2429 -5.0156 Q58.7897 -5.6562 57.8054 -5.6562 Q56.821 -5.6562 56.3679 -5.0156 Q55.9304 -4.375 55.9304 -3.2344 ZM65.5498 -6.5469 Q66.7061 -6.5469 67.2842 -5.9844 Q67.8779 -5.4375 67.8779 -4.1875 L67.8779 0 L66.8467 0 L66.8467 -4.1094 Q66.8467 -5.6562 65.3936 -5.6562 Q64.3311 -5.6562 63.9248 -5.0625 Q63.5186 -4.4688 63.5186 -3.3438 L63.5186 0 L62.4561 0 L62.4561 -6.4375 L63.3154 -6.4375 L63.4717 -5.5625 L63.5342 -5.5625 Q63.8467 -6.0625 64.3936 -6.2969 Q64.9404 -6.5469 65.5498 -6.5469 ZM74.0546 -6.4375 Q74.0546 -5.9688 73.9921 -5.5469 L74.0703 -5.5469 Q74.3828 -6.0312 74.914 -6.2812 Q75.4453 -6.5469 76.0703 -6.5469 Q77.2421 -6.5469 77.8203 -5.9844 Q78.414 -5.4219 78.414 -4.1875 L78.414 0 L77.3828 0 L77.3828 -4.1094 Q77.3828 -5.6562 75.9296 -5.6562 Q74.8515 -5.6562 74.4453 -5.0469 Q74.0546 -4.4531 74.0546 -3.3281 L74.0546 0 L72.9921 0 L72.9921 -9.125 L74.0546 -9.125 L74.0546 -6.4375 ZM82.8457 -6.5469 Q84.0175 -6.5469 84.58 -6.0312 Q85.1582 -5.5156 85.1582 -4.375 L85.1582 0 L84.3769 0 L84.1738 -0.9062 L84.1269 -0.9062 Q83.705 -0.3906 83.2363 -0.125 Q82.7832 0.125 81.9707 0.125 Q81.0957 0.125 80.5175 -0.3281 Q79.9394 -0.7969 79.9394 -1.7812 Q79.9394 -2.75 80.6894 -3.2656 Q81.455 -3.7969 83.0332 -3.8438 L84.1269 -3.875 L84.1269 -4.2656 Q84.1269 -5.0625 83.7675 -5.375 Q83.4238 -5.6875 82.7832 -5.6875 Q82.2832 -5.6875 81.83 -5.5312 Q81.3769 -5.3906 80.9707 -5.2031 L80.6582 -5.9844 Q81.08 -6.2188 81.6425 -6.375 Q82.2207 -6.5469 82.8457 -6.5469 ZM83.1582 -3.1094 Q81.955 -3.0625 81.4863 -2.7188 Q81.0332 -2.3906 81.0332 -1.7812 Q81.0332 -1.2344 81.3613 -0.9844 Q81.6894 -0.7344 82.205 -0.7344 Q83.0332 -0.7344 83.5644 -1.1719 Q84.1113 -1.625 84.1113 -2.5625 L84.1113 -3.1406 L83.1582 -3.1094 ZM90.234 -6.5469 Q91.3902 -6.5469 91.9683 -5.9844 Q92.5621 -5.4375 92.5621 -4.1875 L92.5621 0 L91.5308 0 L91.5308 -4.1094 Q91.5308 -5.6562 90.0777 -5.6562 Q89.0152 -5.6562 88.609 -5.0625 Q88.2027 -4.4688 88.2027 -3.3438 L88.2027 0 L87.1402 0 L87.1402 -6.4375 L87.9996 -6.4375 L88.1558 -5.5625 L88.2183 -5.5625 Q88.5308 -6.0625 89.0777 -6.2969 Q89.6246 -6.5469 90.234 -6.5469 ZM96.8375 0.125 Q95.6344 0.125 94.9156 -0.7031 Q94.1969 -1.5469 94.1969 -3.2031 Q94.1969 -4.8594 94.9156 -5.7031 Q95.65 -6.5469 96.8531 -6.5469 Q97.6031 -6.5469 98.0719 -6.2656 Q98.5406 -6 98.8375 -5.6094 L98.9156 -5.6094 Q98.9 -5.7656 98.8688 -6.0625 Q98.8375 -6.375 98.8375 -6.5469 L98.8375 -9.125 L99.9 -9.125 L99.9 0 L99.0563 0 L98.9 -0.8594 L98.8375 -0.8594 Q98.5563 -0.4531 98.0719 -0.1562 Q97.6031 0.125 96.8375 0.125 ZM97.0094 -0.75 Q98.025 -0.75 98.4313 -1.3125 Q98.8531 -1.875 98.8531 -3 L98.8531 -3.1875 Q98.8531 -4.3906 98.4625 -5.0312 Q98.0719 -5.6719 96.9938 -5.6719 Q96.15 -5.6719 95.7125 -4.9844 Q95.2906 -4.3125 95.2906 -3.1875 Q95.2906 -2.0312 95.7125 -1.3906 Q96.15 -0.75 97.0094 -0.75 ZM102.9988 0 L101.9363 0 L101.9363 -9.125 L102.9988 -9.125 L102.9988 0 ZM107.5167 -6.5469 Q108.3448 -6.5469 108.9386 -6.1875 Q109.5323 -5.8281 109.8448 -5.1719 Q110.173 -4.5312 110.173 -3.6406 L110.173 -3.0156 L105.7667 -3.0156 Q105.798 -1.9219 106.3292 -1.3438 Q106.8605 -0.7812 107.8136 -0.7812 Q108.4386 -0.7812 108.9073 -0.8906 Q109.3761 -1.0156 109.8917 -1.2188 L109.8917 -0.2969 Q109.3917 -0.0781 108.9073 0.0156 Q108.4386 0.125 107.7667 0.125 Q106.8605 0.125 106.1573 -0.25 Q105.4542 -0.625 105.0636 -1.3594 Q104.673 -2.0938 104.673 -3.1719 Q104.673 -4.2188 105.0323 -4.9688 Q105.3917 -5.7344 106.0323 -6.1406 Q106.673 -6.5469 107.5167 -6.5469 ZM107.5011 -5.6875 Q106.7511 -5.6875 106.3136 -5.2031 Q105.8761 -4.7188 105.798 -3.8594 L109.0636 -3.8594 Q109.0636 -4.6719 108.6886 -5.1719 Q108.3136 -5.6875 107.5011 -5.6875 ZM114.8004 -6.5469 Q114.9879 -6.5469 115.191 -6.5312 Q115.4098 -6.5156 115.566 -6.4844 L115.4254 -5.5156 Q115.2691 -5.5469 115.0816 -5.5625 Q114.8941 -5.5938 114.7379 -5.5938 Q114.2379 -5.5938 113.8004 -5.3125 Q113.3785 -5.0469 113.1129 -4.5625 Q112.8629 -4.0781 112.8629 -3.4375 L112.8629 0 L111.8004 0 L111.8004 -6.4375 L112.6754 -6.4375 L112.7848 -5.25 L112.8316 -5.25 Q113.1441 -5.7812 113.6285 -6.1562 Q114.1285 -6.5469 114.8004 -6.5469 ZM116.3345 -2.3281 L120.8658 -4.2188 L116.3345 -6.3594 L116.3345 -7.2969 L121.9908 -4.4688 L121.9908 -3.875 L116.3345 -1.3906 L116.3345 -2.3281 ZM123.1986 -2.3281 L127.7298 -4.2188 L123.1986 -6.3594 L123.1986 -7.2969 L128.8548 -4.4688 L128.8548 -3.875 L123.1986 -1.3906 L123.1986 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath38);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-378.4205,-608.2021)"
+    ><path d="M4.3281 -4.8125 L7.7344 -4.8125 L7.7344 -0.375 Q7.0625 -0.1406 6.3281 0 Q5.6094 0.125 4.6875 0.125 Q2.7656 0.125 1.7344 -1 Q0.7031 -2.1406 0.7031 -4.2969 Q0.7031 -5.6406 1.2188 -6.625 Q1.7344 -7.6094 2.7344 -8.1406 Q3.7344 -8.6875 5.1719 -8.6875 Q5.8594 -8.6875 6.5156 -8.5469 Q7.1719 -8.4062 7.7188 -8.1562 L7.1094 -6.7031 Q6.7188 -6.9062 6.2188 -7.0312 Q5.7188 -7.1719 5.1562 -7.1719 Q4.375 -7.1719 3.7812 -6.8125 Q3.2031 -6.4531 2.875 -5.7969 Q2.5625 -5.1406 2.5625 -4.2656 Q2.5625 -3.4219 2.7969 -2.7656 Q3.0312 -2.125 3.5156 -1.75 Q4.0156 -1.3906 4.7969 -1.3906 Q5.1875 -1.3906 5.4531 -1.4219 Q5.7188 -1.4688 5.9531 -1.5156 L5.9531 -3.2969 L4.3281 -3.2969 L4.3281 -4.8125 ZM11.4068 0 L9.6256 0 L9.6256 -9.125 L11.4068 -9.125 L11.4068 0 ZM19.2387 -3.2812 Q19.2387 -1.6562 18.3793 -0.7656 Q17.52 0.125 16.0512 0.125 Q15.1293 0.125 14.4106 -0.2656 Q13.7075 -0.6719 13.3012 -1.4375 Q12.895 -2.2031 12.895 -3.2812 Q12.895 -4.9219 13.7387 -5.7969 Q14.5981 -6.6719 16.0825 -6.6719 Q17.0043 -6.6719 17.7075 -6.2656 Q18.4262 -5.875 18.8325 -5.125 Q19.2387 -4.375 19.2387 -3.2812 ZM14.7075 -3.2812 Q14.7075 -2.3125 15.02 -1.8125 Q15.3481 -1.3125 16.0668 -1.3125 Q16.77 -1.3125 17.0825 -1.8125 Q17.4106 -2.3125 17.4106 -3.2812 Q17.4106 -4.2656 17.0825 -4.75 Q16.77 -5.2344 16.0512 -5.2344 Q15.3481 -5.2344 15.02 -4.75 Q14.7075 -4.2656 14.7075 -3.2812 ZM22.4949 -7 Q22.4949 -6.625 22.4636 -6.2656 Q22.448 -5.9062 22.4324 -5.7031 L22.4949 -5.7031 Q22.7605 -6.1094 23.198 -6.3906 Q23.6511 -6.6719 24.3543 -6.6719 Q25.4636 -6.6719 26.1511 -5.8125 Q26.8386 -4.9531 26.8386 -3.2812 Q26.8386 -1.6094 26.1355 -0.7344 Q25.4324 0.125 24.3074 0.125 Q23.5886 0.125 23.1668 -0.125 Q22.7605 -0.3906 22.4949 -0.7188 L22.3855 -0.7188 L22.073 0 L20.7136 0 L20.7136 -9.125 L22.4949 -9.125 L22.4949 -7 ZM23.7918 -5.25 Q23.0886 -5.25 22.8074 -4.8125 Q22.5261 -4.375 22.4949 -3.4844 L22.4949 -3.2969 Q22.4949 -2.3594 22.7761 -1.8438 Q23.0574 -1.3281 23.8074 -1.3281 Q24.3543 -1.3281 24.6824 -1.8438 Q25.0105 -2.3594 25.0105 -3.3125 Q25.0105 -4.2656 24.6824 -4.75 Q24.3543 -5.25 23.7918 -5.25 ZM30.9972 -6.6875 Q32.3097 -6.6875 33.0128 -6.1094 Q33.7159 -5.5469 33.7159 -4.375 L33.7159 0 L32.4659 0 L32.1222 -0.8906 L32.0753 -0.8906 Q31.6534 -0.3594 31.1847 -0.1094 Q30.7159 0.125 29.9034 0.125 Q29.0284 0.125 28.4503 -0.3906 Q27.8722 -0.9062 27.8722 -1.9531 Q27.8722 -3 28.6066 -3.5 Q29.3409 -4 30.8097 -4.0469 L31.9503 -4.0781 L31.9503 -4.375 Q31.9503 -4.8906 31.6691 -5.125 Q31.4034 -5.3594 30.9191 -5.3594 Q30.4503 -5.3594 29.9816 -5.2188 Q29.5284 -5.0938 29.0753 -4.8906 L28.4816 -6.0938 Q29.0128 -6.375 29.6534 -6.5312 Q30.2941 -6.6875 30.9972 -6.6875 ZM31.2472 -3.0156 Q30.3878 -2.9844 30.0441 -2.6875 Q29.7159 -2.4062 29.7159 -1.9375 Q29.7159 -1.5312 29.9503 -1.3594 Q30.1847 -1.1875 30.5753 -1.1875 Q31.1534 -1.1875 31.5441 -1.5312 Q31.9503 -1.875 31.9503 -2.5 L31.9503 -3.0312 L31.2472 -3.0156 ZM37.339 0 L35.5577 0 L35.5577 -9.125 L37.339 -9.125 L37.339 0 ZM44.2959 0 L39.3584 0 L39.3584 -8.5625 L44.2959 -8.5625 L44.2959 -7.0781 L41.1709 -7.0781 L41.1709 -5.2031 L44.0771 -5.2031 L44.0771 -3.7031 L41.1709 -3.7031 L41.1709 -1.5 L44.2959 -1.5 L44.2959 0 ZM47.2816 -3.3438 L45.1722 -6.5469 L47.2034 -6.5469 L48.4691 -4.4688 L49.7503 -6.5469 L51.7816 -6.5469 L49.6409 -3.3438 L51.8753 0 L49.8441 0 L48.4691 -2.25 L47.0941 0 L45.0628 0 L47.2816 -3.3438 ZM55.5301 0.125 Q54.077 0.125 53.2801 -0.6875 Q52.4832 -1.5 52.4832 -3.2344 Q52.4832 -4.4375 52.8895 -5.1875 Q53.2957 -5.9531 54.0145 -6.3125 Q54.7489 -6.6719 55.6864 -6.6719 Q56.3582 -6.6719 56.8582 -6.5312 Q57.3582 -6.4062 57.7332 -6.2344 L57.202 -4.8438 Q56.7801 -5.0156 56.4051 -5.125 Q56.0457 -5.2344 55.6864 -5.2344 Q54.2957 -5.2344 54.2957 -3.25 Q54.2957 -2.2656 54.6551 -1.7969 Q55.0301 -1.3281 55.6864 -1.3281 Q56.2489 -1.3281 56.6864 -1.4688 Q57.1239 -1.625 57.5301 -1.8906 L57.5301 -0.375 Q57.1239 -0.1094 56.6707 0 Q56.2176 0.125 55.5301 0.125 ZM61.745 -6.6719 Q63.0888 -6.6719 63.8857 -5.8906 Q64.6825 -5.125 64.6825 -3.7031 L64.6825 -2.8281 L60.4638 -2.8281 Q60.4794 -2.0781 60.9013 -1.6406 Q61.3388 -1.2188 62.0888 -1.2188 Q62.7294 -1.2188 63.245 -1.3438 Q63.7607 -1.4688 64.3075 -1.7344 L64.3075 -0.3438 Q63.8232 -0.1094 63.2919 0 Q62.7607 0.125 62.0107 0.125 Q61.0263 0.125 60.2607 -0.2344 Q59.5107 -0.6094 59.0732 -1.3438 Q58.6513 -2.0938 58.6513 -3.2344 Q58.6513 -4.375 59.0263 -5.1406 Q59.4169 -5.9062 60.12 -6.2812 Q60.8232 -6.6719 61.745 -6.6719 ZM61.745 -5.4062 Q61.2294 -5.4062 60.8857 -5.0625 Q60.5575 -4.7344 60.495 -4.0156 L62.995 -4.0156 Q62.995 -4.625 62.6825 -5.0156 Q62.3857 -5.4062 61.745 -5.4062 ZM69.7746 -6.6719 Q70.884 -6.6719 71.5715 -5.8125 Q72.259 -4.9531 72.259 -3.2812 Q72.259 -1.625 71.5402 -0.75 Q70.8371 0.125 69.7277 0.125 Q69.0246 0.125 68.6027 -0.125 Q68.1808 -0.3906 67.9152 -0.7188 L67.8215 -0.7188 Q67.9152 -0.2188 67.9152 0.2344 L67.9152 2.875 L66.134 2.875 L66.134 -6.5469 L67.5871 -6.5469 L67.8371 -5.7031 L67.9152 -5.7031 Q68.1808 -6.0938 68.6183 -6.375 Q69.0715 -6.6719 69.7746 -6.6719 ZM69.2121 -5.25 Q68.509 -5.25 68.2277 -4.8125 Q67.9465 -4.375 67.9152 -3.4844 L67.9152 -3.2969 Q67.9152 -2.3594 68.1965 -1.8438 Q68.4777 -1.3281 69.2277 -1.3281 Q69.8371 -1.3281 70.134 -1.8438 Q70.4308 -2.3594 70.4308 -3.3125 Q70.4308 -5.25 69.2121 -5.25 ZM76.4956 -1.3125 Q76.7925 -1.3125 77.0581 -1.3594 Q77.3394 -1.4219 77.6206 -1.5156 L77.6206 -0.1875 Q77.3238 -0.0625 76.9019 0.0312 Q76.48 0.125 75.98 0.125 Q75.3863 0.125 74.9175 -0.0625 Q74.4644 -0.2656 74.1831 -0.7344 Q73.9175 -1.2188 73.9175 -2.0469 L73.9175 -5.2031 L73.0738 -5.2031 L73.0738 -5.9688 L74.0581 -6.5625 L74.5738 -7.9375 L75.7144 -7.9375 L75.7144 -6.5469 L77.5425 -6.5469 L77.5425 -5.2031 L75.7144 -5.2031 L75.7144 -2.0469 Q75.7144 -1.6875 75.9175 -1.5 Q76.1363 -1.3125 76.4956 -1.3125 ZM79.8443 -9.125 Q80.2349 -9.125 80.5162 -8.9375 Q80.813 -8.75 80.813 -8.25 Q80.813 -7.75 80.5162 -7.5625 Q80.2349 -7.375 79.8443 -7.375 Q79.4224 -7.375 79.1412 -7.5625 Q78.8599 -7.75 78.8599 -8.25 Q78.8599 -8.75 79.1412 -8.9375 Q79.4224 -9.125 79.8443 -9.125 ZM80.7193 -6.5469 L80.7193 0 L78.938 0 L78.938 -6.5469 L80.7193 -6.5469 ZM88.5512 -3.2812 Q88.5512 -1.6562 87.6918 -0.7656 Q86.8324 0.125 85.3637 0.125 Q84.4418 0.125 83.7231 -0.2656 Q83.0199 -0.6719 82.6137 -1.4375 Q82.2074 -2.2031 82.2074 -3.2812 Q82.2074 -4.9219 83.0512 -5.7969 Q83.9106 -6.6719 85.3949 -6.6719 Q86.3168 -6.6719 87.0199 -6.2656 Q87.7387 -5.875 88.1449 -5.125 Q88.5512 -4.375 88.5512 -3.2812 ZM84.0199 -3.2812 Q84.0199 -2.3125 84.3324 -1.8125 Q84.6606 -1.3125 85.3793 -1.3125 Q86.0824 -1.3125 86.3949 -1.8125 Q86.7231 -2.3125 86.7231 -3.2812 Q86.7231 -4.2656 86.3949 -4.75 Q86.0824 -5.2344 85.3637 -5.2344 Q84.6606 -5.2344 84.3324 -4.75 Q84.0199 -4.2656 84.0199 -3.2812 ZM93.7449 -6.6719 Q94.8074 -6.6719 95.4324 -6.0938 Q96.073 -5.5312 96.073 -4.2656 L96.073 0 L94.2917 0 L94.2917 -3.8281 Q94.2917 -4.5312 94.0261 -4.8906 Q93.7761 -5.25 93.2292 -5.25 Q92.4167 -5.25 92.1042 -4.6875 Q91.8074 -4.125 91.8074 -3.0781 L91.8074 0 L90.0261 0 L90.0261 -6.5469 L91.3855 -6.5469 L91.6355 -5.7188 L91.7292 -5.7188 Q92.0417 -6.2188 92.5886 -6.4375 Q93.1355 -6.6719 93.7449 -6.6719 ZM105.0664 0 L103.2539 0 L103.2539 -3.7031 L99.8633 -3.7031 L99.8633 0 L98.0508 0 L98.0508 -8.5625 L99.8633 -8.5625 L99.8633 -5.2031 L103.2539 -5.2031 L103.2539 -8.5625 L105.0664 -8.5625 L105.0664 0 ZM109.7777 -6.6875 Q111.0902 -6.6875 111.7934 -6.1094 Q112.4965 -5.5469 112.4965 -4.375 L112.4965 0 L111.2465 0 L110.9027 -0.8906 L110.8559 -0.8906 Q110.434 -0.3594 109.9652 -0.1094 Q109.4965 0.125 108.684 0.125 Q107.809 0.125 107.2309 -0.3906 Q106.6527 -0.9062 106.6527 -1.9531 Q106.6527 -3 107.3871 -3.5 Q108.1215 -4 109.5902 -4.0469 L110.7309 -4.0781 L110.7309 -4.375 Q110.7309 -4.8906 110.4496 -5.125 Q110.184 -5.3594 109.6996 -5.3594 Q109.2309 -5.3594 108.7621 -5.2188 Q108.309 -5.0938 107.8559 -4.8906 L107.2621 -6.0938 Q107.7934 -6.375 108.434 -6.5312 Q109.0746 -6.6875 109.7777 -6.6875 ZM110.0277 -3.0156 Q109.1684 -2.9844 108.8246 -2.6875 Q108.4965 -2.4062 108.4965 -1.9375 Q108.4965 -1.5312 108.7309 -1.3594 Q108.9652 -1.1875 109.3559 -1.1875 Q109.934 -1.1875 110.3246 -1.5312 Q110.7309 -1.875 110.7309 -2.5 L110.7309 -3.0312 L110.0277 -3.0156 ZM118.057 -6.6719 Q119.1195 -6.6719 119.7445 -6.0938 Q120.3852 -5.5312 120.3852 -4.2656 L120.3852 0 L118.6039 0 L118.6039 -3.8281 Q118.6039 -4.5312 118.3383 -4.8906 Q118.0883 -5.25 117.5414 -5.25 Q116.7289 -5.25 116.4164 -4.6875 Q116.1195 -4.125 116.1195 -3.0781 L116.1195 0 L114.3383 0 L114.3383 -6.5469 L115.6977 -6.5469 L115.9477 -5.7188 L116.0414 -5.7188 Q116.3539 -6.2188 116.9008 -6.4375 Q117.4477 -6.6719 118.057 -6.6719 ZM124.3005 0.125 Q123.2067 0.125 122.5192 -0.7344 Q121.8317 -1.5938 121.8317 -3.2656 Q121.8317 -4.9375 122.5192 -5.7969 Q123.2223 -6.6719 124.3473 -6.6719 Q125.0505 -6.6719 125.5036 -6.3906 Q125.9723 -6.125 126.2223 -5.7188 L126.2848 -5.7188 Q126.2536 -5.9062 126.2067 -6.2656 Q126.1598 -6.6406 126.1598 -7.0156 L126.1598 -9.125 L127.9411 -9.125 L127.9411 0 L126.5817 0 L126.2223 -0.8594 L126.1598 -0.8594 Q125.8942 -0.4375 125.4411 -0.1562 Q125.0036 0.125 124.3005 0.125 ZM124.9255 -1.3125 Q125.6598 -1.3125 125.9567 -1.75 Q126.2692 -2.1875 126.2692 -3.0625 L126.2692 -3.25 Q126.2692 -4.2188 125.9723 -4.7188 Q125.6911 -5.2188 124.8942 -5.2188 Q124.3161 -5.2188 123.9723 -4.7031 Q123.6442 -4.2031 123.6442 -3.2344 Q123.6442 -2.2812 123.9723 -1.7969 Q124.3161 -1.3125 124.9255 -1.3125 ZM131.5996 0 L129.8184 0 L129.8184 -9.125 L131.5996 -9.125 L131.5996 0 ZM136.1815 -6.6719 Q137.5253 -6.6719 138.3222 -5.8906 Q139.119 -5.125 139.119 -3.7031 L139.119 -2.8281 L134.9003 -2.8281 Q134.9159 -2.0781 135.3378 -1.6406 Q135.7753 -1.2188 136.5253 -1.2188 Q137.1659 -1.2188 137.6815 -1.3438 Q138.1972 -1.4688 138.744 -1.7344 L138.744 -0.3438 Q138.2597 -0.1094 137.7284 0 Q137.1972 0.125 136.4472 0.125 Q135.4628 0.125 134.6972 -0.2344 Q133.9472 -0.6094 133.5097 -1.3438 Q133.0878 -2.0938 133.0878 -3.2344 Q133.0878 -4.375 133.4628 -5.1406 Q133.8534 -5.9062 134.5565 -6.2812 Q135.2597 -6.6719 136.1815 -6.6719 ZM136.1815 -5.4062 Q135.6659 -5.4062 135.3222 -5.0625 Q134.994 -4.7344 134.9315 -4.0156 L137.4315 -4.0156 Q137.4315 -4.625 137.119 -5.0156 Q136.8222 -5.4062 136.1815 -5.4062 ZM144.2267 -6.6719 Q144.3673 -6.6719 144.5392 -6.6562 Q144.7267 -6.6406 144.8361 -6.625 L144.6955 -4.9375 Q144.6173 -4.9688 144.4455 -4.9844 Q144.2892 -5 144.1642 -5 Q143.7111 -5 143.2892 -4.8438 Q142.8673 -4.6875 142.6017 -4.3125 Q142.3517 -3.9531 142.3517 -3.3438 L142.3517 0 L140.5705 0 L140.5705 -6.5469 L141.9298 -6.5469 L142.1955 -5.4531 L142.2736 -5.4531 Q142.5548 -5.9531 143.0548 -6.3125 Q143.5705 -6.6719 144.2267 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath39);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><line x1="101.3634" x2="101.3634" y1="-499.1388" style="fill:none; clip-path:url(#clipPath2);" y2="-128.7862"
+      /><line x1="101.3634" x2="95.3634" y1="-128.7862" style="fill:none; clip-path:url(#clipPath2);" y2="-139.1785"
+      /><line x1="101.3634" x2="107.3634" y1="-128.7862" style="fill:none; clip-path:url(#clipPath2);" y2="-139.1785"
+      /><line x1="81.9969" x2="82.0333" y1="-642.5076" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-724.4007"
+      /><line x1="81.9969" x2="76.0015" y1="-642.5076" style="fill:none; clip-path:url(#clipPath2);" y2="-652.9025"
+      /><line x1="81.9969" x2="88.0015" y1="-642.5076" style="fill:none; clip-path:url(#clipPath2);" y2="-652.8972"
+      /><line x1="-110.3024" x2="-110.3024" y1="-698.2905" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-819.2005"
+      /><line x1="-110.3024" x2="281.614" y1="-819.2005" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-819.2005"
+      /><line x1="281.614" x2="281.614" y1="-819.2005" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-780.3166"
+      /><line x1="-110.3024" x2="-116.3024" y1="-698.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-708.6828"
+      /><line x1="-110.3024" x2="-104.3024" y1="-698.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-708.6828"
+      /><line x1="738.7401" x2="698.1624" y1="-41.1923" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-41.1923"
+      /><line x1="698.1624" x2="698.1624" y1="-41.1923" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-653.4835"
+      /><line x1="698.1624" x2="142.5542" y1="-653.4835" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-653.4835"
+      /><line x1="142.5542" x2="142.5542" y1="-653.4835" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-539.827"
+      /><line x1="738.7401" x2="728.3477" y1="-41.1923" style="fill:none; clip-path:url(#clipPath2);" y2="-35.1923"
+      /><line x1="738.7401" x2="728.3477" y1="-41.1923" style="fill:none; clip-path:url(#clipPath2);" y2="-47.1923"
+      /><path d="M780.5626 -411.9229 A6 6 0 0 0 768.5626 -411.9229" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M704.1624 -427.1403 A6 6 0 0 0 692.1624 -427.1403" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="655.9713" x2="692.1624" y1="-427.1403" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-427.1403"
+      /><line x1="704.1624" x2="730.2635" y1="-427.1403" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-427.1403"
+      /><line x1="730.2635" x2="730.2635" y1="-427.1403" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-411.9229"
+      /><line x1="730.2635" x2="768.5626" y1="-411.9229" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-411.9229"
+      /><line x1="780.5626" x2="866.1694" y1="-411.9229" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-411.9229"
+      /><line x1="655.9713" x2="666.3636" y1="-427.1403" style="fill:none; clip-path:url(#clipPath2);" y2="-433.1403"
+      /><line x1="655.9713" x2="666.3636" y1="-427.1403" style="fill:none; clip-path:url(#clipPath2);" y2="-421.1403"
+      /><line x1="-222.4" x2="-134.3024" y1="-684.9429" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-683.6443"
+      /><line x1="-222.4" x2="-211.9204" y1="-684.9429" style="fill:none; clip-path:url(#clipPath2);" y2="-690.789"
+      /><line x1="-222.4" x2="-212.0972" y1="-684.9429" style="fill:none; clip-path:url(#clipPath2);" y2="-678.7903"
+      /><line x1="628.4591" x2="628.4591" y1="-97.2833" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-366.5134"
+      /><line x1="628.4591" x2="130.7848" y1="-366.5134" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-366.5134"
+      /><line x1="130.7848" x2="130.7848" y1="-366.5134" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-499.1388"
+      /><line x1="628.4591" x2="622.4591" y1="-97.2833" style="fill:none; clip-path:url(#clipPath2);" y2="-107.6756"
+      /><line x1="628.4591" x2="634.4591" y1="-97.2833" style="fill:none; clip-path:url(#clipPath2);" y2="-107.6756"
+      /><line x1="-8.2084" x2="21.4707" y1="-679.6929" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-679.6929"
+      /><line x1="21.4707" x2="21.4707" y1="-679.6929" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-527.1128"
+      /><line x1="21.4707" x2="51.1497" y1="-527.1128" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-527.1128"
+      /><line x1="-8.2084" x2="2.1839" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-685.6929"
+      /><line x1="-8.2084" x2="2.1839" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-673.6929"
+      /><path d="M27.4707 -592.2692 A6 6 0 0 0 15.4707 -592.2692" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="-110.3024" x2="-110.3024" y1="-668.2905" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="-110.3024" x2="15.4707" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="27.4707" x2="101.3634" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="101.3634" x2="101.3634" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-539.827"
+      /><line x1="-110.3024" x2="-104.3024" y1="-668.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-657.8982"
+      /><line x1="-110.3024" x2="-116.3024" y1="-668.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-657.8982"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="737.1485" y="-109.4144" width="68.0363" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="737.1485" y="-109.4144" width="68.0363" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(747.1485,-91.4144)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM9.7845 -2.2969 Q9.7377 -2.5 9.6439 -2.8906 Q9.5658 -3.2969 9.4564 -3.75 Q9.347 -4.2188 9.2533 -4.6094 Q9.1595 -5 9.1127 -5.1875 L9.0658 -5.1875 Q9.0345 -5 8.9408 -4.6094 Q8.8627 -4.2188 8.7533 -3.75 Q8.6439 -3.2969 8.5345 -2.8906 Q8.4408 -2.4844 8.3939 -2.2656 L7.8783 0 L5.9564 0 L4.097 -6.5469 L5.8627 -6.5469 L6.6283 -3.6406 Q6.7064 -3.3438 6.7689 -2.9219 Q6.847 -2.5156 6.8939 -2.125 Q6.9564 -1.7344 6.9877 -1.5 L7.0345 -1.5 Q7.0502 -1.6719 7.0814 -1.9531 Q7.1127 -2.2344 7.1595 -2.5312 Q7.222 -2.8281 7.2689 -3.0781 Q7.3158 -3.3281 7.3314 -3.4062 L8.1283 -6.5469 L10.097 -6.5469 L10.8783 -3.4062 Q10.9252 -3.2344 10.9877 -2.8594 Q11.0502 -2.5 11.097 -2.1094 Q11.1595 -1.7344 11.1595 -1.5 L11.2064 -1.5 Q11.2377 -1.7031 11.2845 -2.0938 Q11.347 -2.4844 11.4252 -2.9062 Q11.5033 -3.3438 11.597 -3.6406 L12.3783 -6.5469 L14.1283 -6.5469 L12.2377 0 L10.3002 0 L9.7845 -2.2969 ZM17.9472 -1.3125 Q18.2441 -1.3125 18.5097 -1.3594 Q18.791 -1.4219 19.0722 -1.5156 L19.0722 -0.1875 Q18.7754 -0.0625 18.3535 0.0312 Q17.9316 0.125 17.4316 0.125 Q16.8379 0.125 16.3691 -0.0625 Q15.916 -0.2656 15.6347 -0.7344 Q15.3691 -1.2188 15.3691 -2.0469 L15.3691 -5.2031 L14.5254 -5.2031 L14.5254 -5.9688 L15.5097 -6.5625 L16.0254 -7.9375 L17.166 -7.9375 L17.166 -6.5469 L18.9941 -6.5469 L18.9941 -5.2031 L17.166 -5.2031 L17.166 -2.0469 Q17.166 -1.6875 17.3691 -1.5 Q17.5879 -1.3125 17.9472 -1.3125 ZM27.6396 -4.375 Q27.6396 -2.2031 26.4053 -1.0938 Q25.1709 0 22.9521 0 L20.5303 0 L20.5303 -8.5625 L23.2178 -8.5625 Q24.5615 -8.5625 25.5459 -8.0781 Q26.5459 -7.6094 27.0928 -6.6719 Q27.6396 -5.75 27.6396 -4.375 ZM25.749 -4.3125 Q25.749 -5.75 25.124 -6.4062 Q24.499 -7.0781 23.3115 -7.0781 L22.3428 -7.0781 L22.3428 -1.5 L23.124 -1.5 Q25.749 -1.5 25.749 -4.3125 ZM31.9572 -6.6875 Q33.2697 -6.6875 33.9728 -6.1094 Q34.676 -5.5469 34.676 -4.375 L34.676 0 L33.426 0 L33.0822 -0.8906 L33.0353 -0.8906 Q32.6135 -0.3594 32.1447 -0.1094 Q31.676 0.125 30.8635 0.125 Q29.9885 0.125 29.4103 -0.3906 Q28.8322 -0.9062 28.8322 -1.9531 Q28.8322 -3 29.5666 -3.5 Q30.301 -4 31.7697 -4.0469 L32.9103 -4.0781 L32.9103 -4.375 Q32.9103 -4.8906 32.6291 -5.125 Q32.3635 -5.3594 31.8791 -5.3594 Q31.4103 -5.3594 30.9416 -5.2188 Q30.4885 -5.0938 30.0353 -4.8906 L29.4416 -6.0938 Q29.9728 -6.375 30.6135 -6.5312 Q31.2541 -6.6875 31.9572 -6.6875 ZM32.2072 -3.0156 Q31.3478 -2.9844 31.0041 -2.6875 Q30.676 -2.4062 30.676 -1.9375 Q30.676 -1.5312 30.9103 -1.3594 Q31.1447 -1.1875 31.5353 -1.1875 Q32.1135 -1.1875 32.5041 -1.5312 Q32.9103 -1.875 32.9103 -2.5 L32.9103 -3.0312 L32.2072 -3.0156 ZM39.2834 -1.3125 Q39.5803 -1.3125 39.8459 -1.3594 Q40.1271 -1.4219 40.4084 -1.5156 L40.4084 -0.1875 Q40.1115 -0.0625 39.6896 0.0312 Q39.2678 0.125 38.7678 0.125 Q38.174 0.125 37.7053 -0.0625 Q37.2521 -0.2656 36.9709 -0.7344 Q36.7053 -1.2188 36.7053 -2.0469 L36.7053 -5.2031 L35.8615 -5.2031 L35.8615 -5.9688 L36.8459 -6.5625 L37.3615 -7.9375 L38.5021 -7.9375 L38.5021 -6.5469 L40.3303 -6.5469 L40.3303 -5.2031 L38.5021 -5.2031 L38.5021 -2.0469 Q38.5021 -1.6875 38.7053 -1.5 Q38.924 -1.3125 39.2834 -1.3125 ZM44.4133 -6.6875 Q45.7258 -6.6875 46.4289 -6.1094 Q47.132 -5.5469 47.132 -4.375 L47.132 0 L45.882 0 L45.5383 -0.8906 L45.4914 -0.8906 Q45.0695 -0.3594 44.6008 -0.1094 Q44.132 0.125 43.3195 0.125 Q42.4445 0.125 41.8664 -0.3906 Q41.2883 -0.9062 41.2883 -1.9531 Q41.2883 -3 42.0227 -3.5 Q42.757 -4 44.2258 -4.0469 L45.3664 -4.0781 L45.3664 -4.375 Q45.3664 -4.8906 45.0852 -5.125 Q44.8195 -5.3594 44.3352 -5.3594 Q43.8664 -5.3594 43.3977 -5.2188 Q42.9445 -5.0938 42.4914 -4.8906 L41.8977 -6.0938 Q42.4289 -6.375 43.0695 -6.5312 Q43.7102 -6.6875 44.4133 -6.6875 ZM44.6633 -3.0156 Q43.8039 -2.9844 43.4602 -2.6875 Q43.132 -2.4062 43.132 -1.9375 Q43.132 -1.5312 43.3664 -1.3594 Q43.6008 -1.1875 43.9914 -1.1875 Q44.5695 -1.1875 44.9602 -1.5312 Q45.3664 -1.875 45.3664 -2.5 L45.3664 -3.0312 L44.6633 -3.0156 Z" style="stroke:none; clip-path:url(#clipPath40);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M761.0704 -405.9229 A6 6 0 0 0 761.0704 -417.9229" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="761.0704" x2="761.0704" y1="-109.4144" style="fill:none; clip-path:url(#clipPath2);" y2="-405.9229"
+      /><line x1="761.0704" x2="761.0704" y1="-417.9229" style="fill:none; clip-path:url(#clipPath2);" y2="-683.2905"
+      /><line x1="761.0704" x2="755.0704" y1="-109.4144" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-119.8067"
+      /><line x1="761.0704" x2="767.0704" y1="-109.4144" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-119.8067"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="76.9222" y="-780.3166" width="108.4766" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="76.9222" y="-780.3166" width="108.4766" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(89.9822,-762.3166)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM30.8576 -6.5469 Q32.0138 -6.5469 32.5919 -5.9844 Q33.1857 -5.4375 33.1857 -4.1875 L33.1857 0 L32.1544 0 L32.1544 -4.1094 Q32.1544 -5.6562 30.7013 -5.6562 Q29.6388 -5.6562 29.2326 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1544 -6.0625 29.7013 -6.2969 Q30.2482 -6.5469 30.8576 -6.5469 ZM37.3361 -0.75 Q37.5705 -0.75 37.8205 -0.7812 Q38.0705 -0.8281 38.2267 -0.875 L38.2267 -0.0781 Q38.0705 0.0156 37.758 0.0625 Q37.4455 0.125 37.1486 0.125 Q36.6486 0.125 36.2111 -0.0469 Q35.7892 -0.2344 35.5236 -0.6562 Q35.2736 -1.0938 35.2736 -1.875 L35.2736 -5.6094 L34.3517 -5.6094 L34.3517 -6.125 L35.2736 -6.5469 L35.6955 -7.9062 L36.3205 -7.9062 L36.3205 -6.4375 L38.1799 -6.4375 L38.1799 -5.6094 L36.3205 -5.6094 L36.3205 -1.8906 Q36.3205 -1.3125 36.6017 -1.0312 Q36.883 -0.75 37.3361 -0.75 ZM42.5119 -6.5469 Q42.6994 -6.5469 42.9025 -6.5312 Q43.1213 -6.5156 43.2775 -6.4844 L43.1369 -5.5156 Q42.9806 -5.5469 42.7931 -5.5625 Q42.6056 -5.5938 42.4494 -5.5938 Q41.9494 -5.5938 41.5119 -5.3125 Q41.09 -5.0469 40.8244 -4.5625 Q40.5744 -4.0781 40.5744 -3.4375 L40.5744 0 L39.5119 0 L39.5119 -6.4375 L40.3869 -6.4375 L40.4963 -5.25 L40.5431 -5.25 Q40.8556 -5.7812 41.34 -6.1562 Q41.84 -6.5469 42.5119 -6.5469 ZM50.0617 -3.2344 Q50.0617 -1.625 49.2492 -0.75 Q48.4367 0.125 47.0617 0.125 Q46.2179 0.125 45.5461 -0.2656 Q44.8742 -0.6562 44.4836 -1.4062 Q44.1086 -2.1562 44.1086 -3.2344 Q44.1086 -4.8281 44.9054 -5.6875 Q45.7179 -6.5469 47.0929 -6.5469 Q47.9836 -6.5469 48.6398 -6.1562 Q49.3117 -5.7656 49.6867 -5.0312 Q50.0617 -4.2969 50.0617 -3.2344 ZM45.2023 -3.2344 Q45.2023 -2.0938 45.6554 -1.4219 Q46.1086 -0.75 47.0929 -0.75 Q48.0617 -0.75 48.5148 -1.4219 Q48.9679 -2.0938 48.9679 -3.2344 Q48.9679 -4.375 48.5148 -5.0156 Q48.0617 -5.6562 47.0773 -5.6562 Q46.0929 -5.6562 45.6398 -5.0156 Q45.2023 -4.375 45.2023 -3.2344 ZM52.7905 0 L51.728 0 L51.728 -9.125 L52.7905 -9.125 L52.7905 0 ZM55.8865 0 L54.824 0 L54.824 -9.125 L55.8865 -9.125 L55.8865 0 ZM60.4044 -6.5469 Q61.2325 -6.5469 61.8263 -6.1875 Q62.42 -5.8281 62.7325 -5.1719 Q63.0607 -4.5312 63.0607 -3.6406 L63.0607 -3.0156 L58.6544 -3.0156 Q58.6857 -1.9219 59.2169 -1.3438 Q59.7482 -0.7812 60.7013 -0.7812 Q61.3263 -0.7812 61.795 -0.8906 Q62.2638 -1.0156 62.7794 -1.2188 L62.7794 -0.2969 Q62.2794 -0.0781 61.795 0.0156 Q61.3263 0.125 60.6544 0.125 Q59.7482 0.125 59.045 -0.25 Q58.3419 -0.625 57.9513 -1.3594 Q57.5607 -2.0938 57.5607 -3.1719 Q57.5607 -4.2188 57.92 -4.9688 Q58.2794 -5.7344 58.92 -6.1406 Q59.5607 -6.5469 60.4044 -6.5469 ZM60.3888 -5.6875 Q59.6388 -5.6875 59.2013 -5.2031 Q58.7638 -4.7188 58.6857 -3.8594 L61.9513 -3.8594 Q61.9513 -4.6719 61.5763 -5.1719 Q61.2013 -5.6875 60.3888 -5.6875 ZM67.6881 -6.5469 Q67.8756 -6.5469 68.0787 -6.5312 Q68.2975 -6.5156 68.4537 -6.4844 L68.3131 -5.5156 Q68.1568 -5.5469 67.9693 -5.5625 Q67.7818 -5.5938 67.6256 -5.5938 Q67.1256 -5.5938 66.6881 -5.3125 Q66.2662 -5.0469 66.0006 -4.5625 Q65.7506 -4.0781 65.7506 -3.4375 L65.7506 0 L64.6881 0 L64.6881 -6.4375 L65.5631 -6.4375 L65.6725 -5.25 L65.7193 -5.25 Q66.0318 -5.7812 66.5162 -6.1562 Q67.0162 -6.5469 67.6881 -6.5469 ZM69.2222 -2.3281 L73.7535 -4.2188 L69.2222 -6.3594 L69.2222 -7.2969 L74.8785 -4.4688 L74.8785 -3.875 L69.2222 -1.3906 L69.2222 -2.3281 ZM76.0863 -2.3281 L80.6175 -4.2188 L76.0863 -6.3594 L76.0863 -7.2969 L81.7425 -4.4688 L81.7425 -3.875 L76.0863 -1.3906 L76.0863 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath41);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(86.9222,-745.9725)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM32.295 -7.1719 Q31.2481 -7.1719 30.6856 -6.3906 Q30.1387 -5.6094 30.1387 -4.2656 Q30.1387 -2.8906 30.6543 -2.1406 Q31.17 -1.3906 32.295 -1.3906 Q32.8262 -1.3906 33.3418 -1.5 Q33.8575 -1.625 34.4825 -1.8438 L34.4825 -0.3281 Q33.92 -0.0938 33.3575 0.0156 Q32.8106 0.125 32.1231 0.125 Q30.8106 0.125 29.9512 -0.4219 Q29.0918 -0.9688 28.6856 -1.9531 Q28.2793 -2.9531 28.2793 -4.2656 Q28.2793 -5.5625 28.7325 -6.5625 Q29.2012 -7.5625 30.0918 -8.125 Q30.9981 -8.6875 32.295 -8.6875 Q32.9356 -8.6875 33.5762 -8.5156 Q34.2168 -8.3594 34.795 -8.0938 L34.2168 -6.6094 Q33.7325 -6.8438 33.2481 -7 Q32.7637 -7.1719 32.295 -7.1719 ZM42.1109 -3.2812 Q42.1109 -1.6562 41.2515 -0.7656 Q40.3921 0.125 38.9234 0.125 Q38.0015 0.125 37.2828 -0.2656 Q36.5796 -0.6719 36.1734 -1.4375 Q35.7671 -2.2031 35.7671 -3.2812 Q35.7671 -4.9219 36.6109 -5.7969 Q37.4703 -6.6719 38.9546 -6.6719 Q39.8765 -6.6719 40.5796 -6.2656 Q41.2984 -5.875 41.7046 -5.125 Q42.1109 -4.375 42.1109 -3.2812 ZM37.5796 -3.2812 Q37.5796 -2.3125 37.8921 -1.8125 Q38.2203 -1.3125 38.939 -1.3125 Q39.6421 -1.3125 39.9546 -1.8125 Q40.2828 -2.3125 40.2828 -3.2812 Q40.2828 -4.2656 39.9546 -4.75 Q39.6421 -5.2344 38.9234 -5.2344 Q38.2203 -5.2344 37.8921 -4.75 Q37.5796 -4.2656 37.5796 -3.2812 ZM47.3046 -6.6719 Q48.3671 -6.6719 48.9921 -6.0938 Q49.6327 -5.5312 49.6327 -4.2656 L49.6327 0 L47.8514 0 L47.8514 -3.8281 Q47.8514 -4.5312 47.5858 -4.8906 Q47.3358 -5.25 46.7889 -5.25 Q45.9764 -5.25 45.6639 -4.6875 Q45.3671 -4.125 45.3671 -3.0781 L45.3671 0 L43.5858 0 L43.5858 -6.5469 L44.9452 -6.5469 L45.1952 -5.7188 L45.2889 -5.7188 Q45.6014 -6.2188 46.1483 -6.4375 Q46.6952 -6.6719 47.3046 -6.6719 ZM54.2355 -1.3125 Q54.5324 -1.3125 54.798 -1.3594 Q55.0792 -1.4219 55.3605 -1.5156 L55.3605 -0.1875 Q55.0636 -0.0625 54.6417 0.0312 Q54.2199 0.125 53.7199 0.125 Q53.1261 0.125 52.6574 -0.0625 Q52.2042 -0.2656 51.923 -0.7344 Q51.6574 -1.2188 51.6574 -2.0469 L51.6574 -5.2031 L50.8136 -5.2031 L50.8136 -5.9688 L51.798 -6.5625 L52.3136 -7.9375 L53.4542 -7.9375 L53.4542 -6.5469 L55.2824 -6.5469 L55.2824 -5.2031 L53.4542 -5.2031 L53.4542 -2.0469 Q53.4542 -1.6875 53.6574 -1.5 Q53.8761 -1.3125 54.2355 -1.3125 ZM60.3342 -6.6719 Q60.4748 -6.6719 60.6467 -6.6562 Q60.8342 -6.6406 60.9435 -6.625 L60.8029 -4.9375 Q60.7248 -4.9688 60.5529 -4.9844 Q60.3967 -5 60.2717 -5 Q59.8185 -5 59.3967 -4.8438 Q58.9748 -4.6875 58.7092 -4.3125 Q58.4592 -3.9531 58.4592 -3.3438 L58.4592 0 L56.6779 0 L56.6779 -6.5469 L58.0373 -6.5469 L58.3029 -5.4531 L58.381 -5.4531 Q58.6623 -5.9531 59.1623 -6.3125 Q59.6779 -6.6719 60.3342 -6.6719 ZM68.0791 -3.2812 Q68.0791 -1.6562 67.2197 -0.7656 Q66.3603 0.125 64.8916 0.125 Q63.9697 0.125 63.2509 -0.2656 Q62.5478 -0.6719 62.1416 -1.4375 Q61.7353 -2.2031 61.7353 -3.2812 Q61.7353 -4.9219 62.5791 -5.7969 Q63.4384 -6.6719 64.9228 -6.6719 Q65.8447 -6.6719 66.5478 -6.2656 Q67.2666 -5.875 67.6728 -5.125 Q68.0791 -4.375 68.0791 -3.2812 ZM63.5478 -3.2812 Q63.5478 -2.3125 63.8603 -1.8125 Q64.1884 -1.3125 64.9072 -1.3125 Q65.6103 -1.3125 65.9228 -1.8125 Q66.2509 -2.3125 66.2509 -3.2812 Q66.2509 -4.2656 65.9228 -4.75 Q65.6103 -5.2344 64.8916 -5.2344 Q64.1884 -5.2344 63.8603 -4.75 Q63.5478 -4.2656 63.5478 -3.2812 ZM71.3353 0 L69.554 0 L69.554 -9.125 L71.3353 -9.125 L71.3353 0 ZM74.9953 0 L73.214 0 L73.214 -9.125 L74.9953 -9.125 L74.9953 0 ZM79.5772 -6.6719 Q80.9209 -6.6719 81.7178 -5.8906 Q82.5147 -5.125 82.5147 -3.7031 L82.5147 -2.8281 L78.2959 -2.8281 Q78.3115 -2.0781 78.7334 -1.6406 Q79.1709 -1.2188 79.9209 -1.2188 Q80.5615 -1.2188 81.0772 -1.3438 Q81.5928 -1.4688 82.1397 -1.7344 L82.1397 -0.3438 Q81.6553 -0.1094 81.124 0 Q80.5928 0.125 79.8428 0.125 Q78.8584 0.125 78.0928 -0.2344 Q77.3428 -0.6094 76.9053 -1.3438 Q76.4834 -2.0938 76.4834 -3.2344 Q76.4834 -4.375 76.8584 -5.1406 Q77.249 -5.9062 77.9522 -6.2812 Q78.6553 -6.6719 79.5772 -6.6719 ZM79.5772 -5.4062 Q79.0615 -5.4062 78.7178 -5.0625 Q78.3897 -4.7344 78.3272 -4.0156 L80.8272 -4.0156 Q80.8272 -4.625 80.5147 -5.0156 Q80.2178 -5.4062 79.5772 -5.4062 ZM87.6223 -6.6719 Q87.763 -6.6719 87.9348 -6.6562 Q88.1223 -6.6406 88.2317 -6.625 L88.0911 -4.9375 Q88.013 -4.9688 87.8411 -4.9844 Q87.6848 -5 87.5598 -5 Q87.1067 -5 86.6848 -4.8438 Q86.263 -4.6875 85.9973 -4.3125 Q85.7473 -3.9531 85.7473 -3.3438 L85.7473 0 L83.9661 0 L83.9661 -6.5469 L85.3255 -6.5469 L85.5911 -5.4531 L85.6692 -5.4531 Q85.9505 -5.9531 86.4505 -6.3125 Q86.9661 -6.6719 87.6223 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath42);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><line x1="131.1605" x2="131.1605" y1="-739.6284" style="fill:none; clip-path:url(#clipPath2);" y2="-539.827"
+      /><line x1="131.1605" x2="125.1605" y1="-539.827" style="fill:none; clip-path:url(#clipPath2);" y2="-550.2193"
+      /><line x1="131.1605" x2="137.1605" y1="-539.827" style="fill:none; clip-path:url(#clipPath2);" y2="-550.2193"
+      /><line x1="-110.3024" x2="-110.3024" y1="-698.2905" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-819.2005"
+      /><line x1="-110.3024" x2="131.1605" y1="-819.2005" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-819.2005"
+      /><line x1="131.1605" x2="131.1605" y1="-819.2005" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-780.3166"
+      /><line x1="-110.3024" x2="-116.3024" y1="-698.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-708.6828"
+      /><line x1="-110.3024" x2="-104.3024" y1="-698.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-708.6828"
+      /><path d="M152.5206 -813.2005 A6 6 0 0 0 152.5206 -825.2005" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="813.7401" x2="1128.8659" y1="-41.1923" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-41.1923"
+      /><line x1="1128.8659" x2="1128.8659" y1="-41.1923" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-873.6644"
+      /><line x1="1128.8659" x2="152.5206" y1="-873.6644" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-873.6644"
+      /><line x1="152.5206" x2="152.5206" y1="-873.6644" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-825.2005"
+      /><line x1="152.5206" x2="152.5206" y1="-813.2005" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-780.3166"
+      /><line x1="813.7401" x2="824.1324" y1="-41.1923" style="fill:none; clip-path:url(#clipPath2);" y2="-47.1923"
+      /><line x1="813.7401" x2="824.1324" y1="-41.1923" style="fill:none; clip-path:url(#clipPath2);" y2="-35.1923"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="377.8343" y="-780.3166" width="134.7328" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="377.8343" y="-780.3166" width="134.7328" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(404.0224,-762.3166)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM30.8576 -6.5469 Q32.0138 -6.5469 32.5919 -5.9844 Q33.1857 -5.4375 33.1857 -4.1875 L33.1857 0 L32.1544 0 L32.1544 -4.1094 Q32.1544 -5.6562 30.7013 -5.6562 Q29.6388 -5.6562 29.2326 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1544 -6.0625 29.7013 -6.2969 Q30.2482 -6.5469 30.8576 -6.5469 ZM37.3361 -0.75 Q37.5705 -0.75 37.8205 -0.7812 Q38.0705 -0.8281 38.2267 -0.875 L38.2267 -0.0781 Q38.0705 0.0156 37.758 0.0625 Q37.4455 0.125 37.1486 0.125 Q36.6486 0.125 36.2111 -0.0469 Q35.7892 -0.2344 35.5236 -0.6562 Q35.2736 -1.0938 35.2736 -1.875 L35.2736 -5.6094 L34.3517 -5.6094 L34.3517 -6.125 L35.2736 -6.5469 L35.6955 -7.9062 L36.3205 -7.9062 L36.3205 -6.4375 L38.1799 -6.4375 L38.1799 -5.6094 L36.3205 -5.6094 L36.3205 -1.8906 Q36.3205 -1.3125 36.6017 -1.0312 Q36.883 -0.75 37.3361 -0.75 ZM42.5119 -6.5469 Q42.6994 -6.5469 42.9025 -6.5312 Q43.1213 -6.5156 43.2775 -6.4844 L43.1369 -5.5156 Q42.9806 -5.5469 42.7931 -5.5625 Q42.6056 -5.5938 42.4494 -5.5938 Q41.9494 -5.5938 41.5119 -5.3125 Q41.09 -5.0469 40.8244 -4.5625 Q40.5744 -4.0781 40.5744 -3.4375 L40.5744 0 L39.5119 0 L39.5119 -6.4375 L40.3869 -6.4375 L40.4963 -5.25 L40.5431 -5.25 Q40.8556 -5.7812 41.34 -6.1562 Q41.84 -6.5469 42.5119 -6.5469 ZM50.0617 -3.2344 Q50.0617 -1.625 49.2492 -0.75 Q48.4367 0.125 47.0617 0.125 Q46.2179 0.125 45.5461 -0.2656 Q44.8742 -0.6562 44.4836 -1.4062 Q44.1086 -2.1562 44.1086 -3.2344 Q44.1086 -4.8281 44.9054 -5.6875 Q45.7179 -6.5469 47.0929 -6.5469 Q47.9836 -6.5469 48.6398 -6.1562 Q49.3117 -5.7656 49.6867 -5.0312 Q50.0617 -4.2969 50.0617 -3.2344 ZM45.2023 -3.2344 Q45.2023 -2.0938 45.6554 -1.4219 Q46.1086 -0.75 47.0929 -0.75 Q48.0617 -0.75 48.5148 -1.4219 Q48.9679 -2.0938 48.9679 -3.2344 Q48.9679 -4.375 48.5148 -5.0156 Q48.0617 -5.6562 47.0773 -5.6562 Q46.0929 -5.6562 45.6398 -5.0156 Q45.2023 -4.375 45.2023 -3.2344 ZM52.7905 0 L51.728 0 L51.728 -9.125 L52.7905 -9.125 L52.7905 0 ZM55.8865 0 L54.824 0 L54.824 -9.125 L55.8865 -9.125 L55.8865 0 ZM60.4044 -6.5469 Q61.2325 -6.5469 61.8263 -6.1875 Q62.42 -5.8281 62.7325 -5.1719 Q63.0607 -4.5312 63.0607 -3.6406 L63.0607 -3.0156 L58.6544 -3.0156 Q58.6857 -1.9219 59.2169 -1.3438 Q59.7482 -0.7812 60.7013 -0.7812 Q61.3263 -0.7812 61.795 -0.8906 Q62.2638 -1.0156 62.7794 -1.2188 L62.7794 -0.2969 Q62.2794 -0.0781 61.795 0.0156 Q61.3263 0.125 60.6544 0.125 Q59.7482 0.125 59.045 -0.25 Q58.3419 -0.625 57.9513 -1.3594 Q57.5607 -2.0938 57.5607 -3.1719 Q57.5607 -4.2188 57.92 -4.9688 Q58.2794 -5.7344 58.92 -6.1406 Q59.5607 -6.5469 60.4044 -6.5469 ZM60.3888 -5.6875 Q59.6388 -5.6875 59.2013 -5.2031 Q58.7638 -4.7188 58.6857 -3.8594 L61.9513 -3.8594 Q61.9513 -4.6719 61.5763 -5.1719 Q61.2013 -5.6875 60.3888 -5.6875 ZM67.6881 -6.5469 Q67.8756 -6.5469 68.0787 -6.5312 Q68.2975 -6.5156 68.4537 -6.4844 L68.3131 -5.5156 Q68.1568 -5.5469 67.9693 -5.5625 Q67.7818 -5.5938 67.6256 -5.5938 Q67.1256 -5.5938 66.6881 -5.3125 Q66.2662 -5.0469 66.0006 -4.5625 Q65.7506 -4.0781 65.7506 -3.4375 L65.7506 0 L64.6881 0 L64.6881 -6.4375 L65.5631 -6.4375 L65.6725 -5.25 L65.7193 -5.25 Q66.0318 -5.7812 66.5162 -6.1562 Q67.0162 -6.5469 67.6881 -6.5469 ZM69.2222 -2.3281 L73.7535 -4.2188 L69.2222 -6.3594 L69.2222 -7.2969 L74.8785 -4.4688 L74.8785 -3.875 L69.2222 -1.3906 L69.2222 -2.3281 ZM76.0863 -2.3281 L80.6175 -4.2188 L76.0863 -6.3594 L76.0863 -7.2969 L81.7425 -4.4688 L81.7425 -3.875 L76.0863 -1.3906 L76.0863 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath43);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(387.8343,-745.9725)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 ZM58.5511 -7.1719 Q57.5043 -7.1719 56.9418 -6.3906 Q56.3949 -5.6094 56.3949 -4.2656 Q56.3949 -2.8906 56.9105 -2.1406 Q57.4261 -1.3906 58.5511 -1.3906 Q59.0824 -1.3906 59.598 -1.5 Q60.1136 -1.625 60.7386 -1.8438 L60.7386 -0.3281 Q60.1761 -0.0938 59.6136 0.0156 Q59.0668 0.125 58.3793 0.125 Q57.0668 0.125 56.2074 -0.4219 Q55.348 -0.9688 54.9418 -1.9531 Q54.5355 -2.9531 54.5355 -4.2656 Q54.5355 -5.5625 54.9886 -6.5625 Q55.4574 -7.5625 56.348 -8.125 Q57.2543 -8.6875 58.5511 -8.6875 Q59.1918 -8.6875 59.8324 -8.5156 Q60.473 -8.3594 61.0511 -8.0938 L60.473 -6.6094 Q59.9886 -6.8438 59.5043 -7 Q59.0199 -7.1719 58.5511 -7.1719 ZM68.3671 -3.2812 Q68.3671 -1.6562 67.5077 -0.7656 Q66.6483 0.125 65.1796 0.125 Q64.2577 0.125 63.5389 -0.2656 Q62.8358 -0.6719 62.4296 -1.4375 Q62.0233 -2.2031 62.0233 -3.2812 Q62.0233 -4.9219 62.8671 -5.7969 Q63.7264 -6.6719 65.2108 -6.6719 Q66.1327 -6.6719 66.8358 -6.2656 Q67.5546 -5.875 67.9608 -5.125 Q68.3671 -4.375 68.3671 -3.2812 ZM63.8358 -3.2812 Q63.8358 -2.3125 64.1483 -1.8125 Q64.4764 -1.3125 65.1952 -1.3125 Q65.8983 -1.3125 66.2108 -1.8125 Q66.5389 -2.3125 66.5389 -3.2812 Q66.5389 -4.2656 66.2108 -4.75 Q65.8983 -5.2344 65.1796 -5.2344 Q64.4764 -5.2344 64.1483 -4.75 Q63.8358 -4.2656 63.8358 -3.2812 ZM73.5607 -6.6719 Q74.6232 -6.6719 75.2482 -6.0938 Q75.8889 -5.5312 75.8889 -4.2656 L75.8889 0 L74.1076 0 L74.1076 -3.8281 Q74.1076 -4.5312 73.842 -4.8906 Q73.592 -5.25 73.0451 -5.25 Q72.2326 -5.25 71.9201 -4.6875 Q71.6232 -4.125 71.6232 -3.0781 L71.6232 0 L69.842 0 L69.842 -6.5469 L71.2014 -6.5469 L71.4514 -5.7188 L71.5451 -5.7188 Q71.8576 -6.2188 72.4045 -6.4375 Q72.9514 -6.6719 73.5607 -6.6719 ZM80.4917 -1.3125 Q80.7885 -1.3125 81.0542 -1.3594 Q81.3354 -1.4219 81.6167 -1.5156 L81.6167 -0.1875 Q81.3198 -0.0625 80.8979 0.0312 Q80.476 0.125 79.976 0.125 Q79.3823 0.125 78.9135 -0.0625 Q78.4604 -0.2656 78.1792 -0.7344 Q77.9135 -1.2188 77.9135 -2.0469 L77.9135 -5.2031 L77.0698 -5.2031 L77.0698 -5.9688 L78.0542 -6.5625 L78.5698 -7.9375 L79.7104 -7.9375 L79.7104 -6.5469 L81.5385 -6.5469 L81.5385 -5.2031 L79.7104 -5.2031 L79.7104 -2.0469 Q79.7104 -1.6875 79.9135 -1.5 Q80.1323 -1.3125 80.4917 -1.3125 ZM86.5903 -6.6719 Q86.731 -6.6719 86.9028 -6.6562 Q87.0903 -6.6406 87.1997 -6.625 L87.0591 -4.9375 Q86.981 -4.9688 86.8091 -4.9844 Q86.6528 -5 86.5278 -5 Q86.0747 -5 85.6528 -4.8438 Q85.231 -4.6875 84.9653 -4.3125 Q84.7153 -3.9531 84.7153 -3.3438 L84.7153 0 L82.9341 0 L82.9341 -6.5469 L84.2935 -6.5469 L84.5591 -5.4531 L84.6372 -5.4531 Q84.9185 -5.9531 85.4185 -6.3125 Q85.9341 -6.6719 86.5903 -6.6719 ZM94.3353 -3.2812 Q94.3353 -1.6562 93.4759 -0.7656 Q92.6165 0.125 91.1478 0.125 Q90.2259 0.125 89.5071 -0.2656 Q88.804 -0.6719 88.3978 -1.4375 Q87.9915 -2.2031 87.9915 -3.2812 Q87.9915 -4.9219 88.8353 -5.7969 Q89.6946 -6.6719 91.179 -6.6719 Q92.1009 -6.6719 92.804 -6.2656 Q93.5228 -5.875 93.929 -5.125 Q94.3353 -4.375 94.3353 -3.2812 ZM89.804 -3.2812 Q89.804 -2.3125 90.1165 -1.8125 Q90.4446 -1.3125 91.1634 -1.3125 Q91.8665 -1.3125 92.179 -1.8125 Q92.5071 -2.3125 92.5071 -3.2812 Q92.5071 -4.2656 92.179 -4.75 Q91.8665 -5.2344 91.1478 -5.2344 Q90.4446 -5.2344 90.1165 -4.75 Q89.804 -4.2656 89.804 -3.2812 ZM97.5914 0 L95.8102 0 L95.8102 -9.125 L97.5914 -9.125 L97.5914 0 ZM101.2514 0 L99.4702 0 L99.4702 -9.125 L101.2514 -9.125 L101.2514 0 ZM105.8333 -6.6719 Q107.1771 -6.6719 107.974 -5.8906 Q108.7708 -5.125 108.7708 -3.7031 L108.7708 -2.8281 L104.5521 -2.8281 Q104.5677 -2.0781 104.9896 -1.6406 Q105.4271 -1.2188 106.1771 -1.2188 Q106.8177 -1.2188 107.3333 -1.3438 Q107.849 -1.4688 108.3958 -1.7344 L108.3958 -0.3438 Q107.9115 -0.1094 107.3802 0 Q106.849 0.125 106.099 0.125 Q105.1146 0.125 104.349 -0.2344 Q103.599 -0.6094 103.1615 -1.3438 Q102.7396 -2.0938 102.7396 -3.2344 Q102.7396 -4.375 103.1146 -5.1406 Q103.5052 -5.9062 104.2083 -6.2812 Q104.9115 -6.6719 105.8333 -6.6719 ZM105.8333 -5.4062 Q105.3177 -5.4062 104.974 -5.0625 Q104.6458 -4.7344 104.5833 -4.0156 L107.0833 -4.0156 Q107.0833 -4.625 106.7708 -5.0156 Q106.474 -5.4062 105.8333 -5.4062 ZM113.8785 -6.6719 Q114.0191 -6.6719 114.191 -6.6562 Q114.3785 -6.6406 114.4879 -6.625 L114.3473 -4.9375 Q114.2691 -4.9688 114.0973 -4.9844 Q113.941 -5 113.816 -5 Q113.3629 -5 112.941 -4.8438 Q112.5191 -4.6875 112.2535 -4.3125 Q112.0035 -3.9531 112.0035 -3.3438 L112.0035 0 L110.2223 0 L110.2223 -6.5469 L111.5816 -6.5469 L111.8473 -5.4531 L111.9254 -5.4531 Q112.2066 -5.9531 112.7066 -6.3125 Q113.2223 -6.6719 113.8785 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath44);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="-110.3024" x2="-110.3024" y1="-698.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-819.2005"
+      /><line x1="-110.3024" x2="445.2007" y1="-819.2005" style="fill:none; clip-path:url(#clipPath2);" y2="-819.2005"
+      /><line x1="445.2007" x2="445.2007" y1="-819.2005" style="fill:none; clip-path:url(#clipPath2);" y2="-780.3166"
+      /><line x1="-110.3024" x2="-116.3024" y1="-698.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-708.6828"
+      /><line x1="-110.3024" x2="-104.3024" y1="-698.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-708.6828"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="465.1224" y="-97.548" width="79.5204" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="465.1224" y="-97.548" width="79.5204" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(475.1224,-79.548)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM24.6055 -6.5469 Q25.7618 -6.5469 26.3399 -5.9844 Q26.9336 -5.4375 26.9336 -4.1875 L26.9336 0 L25.9024 0 L25.9024 -4.1094 Q25.9024 -5.6562 24.4493 -5.6562 Q23.3868 -5.6562 22.9805 -5.0625 Q22.5743 -4.4688 22.5743 -3.3438 L22.5743 0 L21.5118 0 L21.5118 -6.4375 L22.3711 -6.4375 L22.5274 -5.5625 L22.5899 -5.5625 Q22.9024 -6.0625 23.4493 -6.2969 Q23.9961 -6.5469 24.6055 -6.5469 ZM31.0841 -0.75 Q31.3184 -0.75 31.5684 -0.7812 Q31.8184 -0.8281 31.9747 -0.875 L31.9747 -0.0781 Q31.8184 0.0156 31.5059 0.0625 Q31.1934 0.125 30.8966 0.125 Q30.3966 0.125 29.9591 -0.0469 Q29.5372 -0.2344 29.2716 -0.6562 Q29.0216 -1.0938 29.0216 -1.875 L29.0216 -5.6094 L28.0997 -5.6094 L28.0997 -6.125 L29.0216 -6.5469 L29.4434 -7.9062 L30.0684 -7.9062 L30.0684 -6.4375 L31.9278 -6.4375 L31.9278 -5.6094 L30.0684 -5.6094 L30.0684 -1.8906 Q30.0684 -1.3125 30.3497 -1.0312 Q30.6309 -0.75 31.0841 -0.75 ZM33.8067 -8.8438 Q34.0411 -8.8438 34.2286 -8.6719 Q34.4161 -8.5156 34.4161 -8.1719 Q34.4161 -7.8438 34.2286 -7.6719 Q34.0411 -7.5 33.8067 -7.5 Q33.5411 -7.5 33.3536 -7.6719 Q33.1817 -7.8438 33.1817 -8.1719 Q33.1817 -8.5156 33.3536 -8.6719 Q33.5411 -8.8438 33.8067 -8.8438 ZM34.3223 -6.4375 L34.3223 0 L33.2598 0 L33.2598 -6.4375 L34.3223 -6.4375 ZM38.5121 -0.75 Q38.7465 -0.75 38.9965 -0.7812 Q39.2465 -0.8281 39.4027 -0.875 L39.4027 -0.0781 Q39.2465 0.0156 38.934 0.0625 Q38.6215 0.125 38.3246 0.125 Q37.8246 0.125 37.3871 -0.0469 Q36.9652 -0.2344 36.6996 -0.6562 Q36.4496 -1.0938 36.4496 -1.875 L36.4496 -5.6094 L35.5277 -5.6094 L35.5277 -6.125 L36.4496 -6.5469 L36.8715 -7.9062 L37.4965 -7.9062 L37.4965 -6.4375 L39.3559 -6.4375 L39.3559 -5.6094 L37.4965 -5.6094 L37.4965 -1.8906 Q37.4965 -1.3125 37.7777 -1.0312 Q38.059 -0.75 38.5121 -0.75 ZM39.6879 -6.4375 L40.8129 -6.4375 L42.2035 -2.7656 Q42.391 -2.2969 42.5316 -1.8594 Q42.6723 -1.4219 42.7504 -1.0156 L42.7973 -1.0156 Q42.8598 -1.3125 43.016 -1.7969 Q43.1723 -2.2969 43.3441 -2.7812 L44.6566 -6.4375 L45.7973 -6.4375 L43.016 0.8906 Q42.6879 1.7969 42.141 2.3281 Q41.6098 2.875 40.6879 2.875 Q40.391 2.875 40.1723 2.8438 Q39.9535 2.8125 39.7973 2.7812 L39.7973 1.9375 Q39.9379 1.9688 40.1254 1.9844 Q40.3129 2.0156 40.516 2.0156 Q41.0629 2.0156 41.4066 1.7031 Q41.7504 1.3906 41.9379 0.875 L42.2816 0.0312 L39.6879 -6.4375 ZM46.3861 -2.3281 L50.9173 -4.2188 L46.3861 -6.3594 L46.3861 -7.2969 L52.0423 -4.4688 L52.0423 -3.875 L46.3861 -1.3906 L46.3861 -2.3281 ZM53.2501 -2.3281 L57.7814 -4.2188 L53.2501 -6.3594 L53.2501 -7.2969 L58.9064 -4.4688 L58.9064 -3.875 L53.2501 -1.3906 L53.2501 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath45);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(486.8826,-63.2039)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 Z" style="stroke:none; clip-path:url(#clipPath46);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="504.8826" x2="504.8826" y1="-97.548" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="504.8826" x2="130.7848" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="130.7848" x2="130.7848" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-499.1388"
+      /><line x1="504.8826" x2="498.8826" y1="-97.548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.9403"
+      /><line x1="504.8826" x2="510.8826" y1="-97.548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.9403"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="352.7262" y="-97.109" width="79.5204" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="352.7262" y="-97.109" width="79.5204" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(362.7262,-79.109)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM24.6055 -6.5469 Q25.7618 -6.5469 26.3399 -5.9844 Q26.9336 -5.4375 26.9336 -4.1875 L26.9336 0 L25.9024 0 L25.9024 -4.1094 Q25.9024 -5.6562 24.4493 -5.6562 Q23.3868 -5.6562 22.9805 -5.0625 Q22.5743 -4.4688 22.5743 -3.3438 L22.5743 0 L21.5118 0 L21.5118 -6.4375 L22.3711 -6.4375 L22.5274 -5.5625 L22.5899 -5.5625 Q22.9024 -6.0625 23.4493 -6.2969 Q23.9961 -6.5469 24.6055 -6.5469 ZM31.0841 -0.75 Q31.3184 -0.75 31.5684 -0.7812 Q31.8184 -0.8281 31.9747 -0.875 L31.9747 -0.0781 Q31.8184 0.0156 31.5059 0.0625 Q31.1934 0.125 30.8966 0.125 Q30.3966 0.125 29.9591 -0.0469 Q29.5372 -0.2344 29.2716 -0.6562 Q29.0216 -1.0938 29.0216 -1.875 L29.0216 -5.6094 L28.0997 -5.6094 L28.0997 -6.125 L29.0216 -6.5469 L29.4434 -7.9062 L30.0684 -7.9062 L30.0684 -6.4375 L31.9278 -6.4375 L31.9278 -5.6094 L30.0684 -5.6094 L30.0684 -1.8906 Q30.0684 -1.3125 30.3497 -1.0312 Q30.6309 -0.75 31.0841 -0.75 ZM33.8067 -8.8438 Q34.0411 -8.8438 34.2286 -8.6719 Q34.4161 -8.5156 34.4161 -8.1719 Q34.4161 -7.8438 34.2286 -7.6719 Q34.0411 -7.5 33.8067 -7.5 Q33.5411 -7.5 33.3536 -7.6719 Q33.1817 -7.8438 33.1817 -8.1719 Q33.1817 -8.5156 33.3536 -8.6719 Q33.5411 -8.8438 33.8067 -8.8438 ZM34.3223 -6.4375 L34.3223 0 L33.2598 0 L33.2598 -6.4375 L34.3223 -6.4375 ZM38.5121 -0.75 Q38.7465 -0.75 38.9965 -0.7812 Q39.2465 -0.8281 39.4027 -0.875 L39.4027 -0.0781 Q39.2465 0.0156 38.934 0.0625 Q38.6215 0.125 38.3246 0.125 Q37.8246 0.125 37.3871 -0.0469 Q36.9652 -0.2344 36.6996 -0.6562 Q36.4496 -1.0938 36.4496 -1.875 L36.4496 -5.6094 L35.5277 -5.6094 L35.5277 -6.125 L36.4496 -6.5469 L36.8715 -7.9062 L37.4965 -7.9062 L37.4965 -6.4375 L39.3559 -6.4375 L39.3559 -5.6094 L37.4965 -5.6094 L37.4965 -1.8906 Q37.4965 -1.3125 37.7777 -1.0312 Q38.059 -0.75 38.5121 -0.75 ZM39.6879 -6.4375 L40.8129 -6.4375 L42.2035 -2.7656 Q42.391 -2.2969 42.5316 -1.8594 Q42.6723 -1.4219 42.7504 -1.0156 L42.7973 -1.0156 Q42.8598 -1.3125 43.016 -1.7969 Q43.1723 -2.2969 43.3441 -2.7812 L44.6566 -6.4375 L45.7973 -6.4375 L43.016 0.8906 Q42.6879 1.7969 42.141 2.3281 Q41.6098 2.875 40.6879 2.875 Q40.391 2.875 40.1723 2.8438 Q39.9535 2.8125 39.7973 2.7812 L39.7973 1.9375 Q39.9379 1.9688 40.1254 1.9844 Q40.3129 2.0156 40.516 2.0156 Q41.0629 2.0156 41.4066 1.7031 Q41.7504 1.3906 41.9379 0.875 L42.2816 0.0312 L39.6879 -6.4375 ZM46.3861 -2.3281 L50.9173 -4.2188 L46.3861 -6.3594 L46.3861 -7.2969 L52.0423 -4.4688 L52.0423 -3.875 L46.3861 -1.3906 L46.3861 -2.3281 ZM53.2501 -2.3281 L57.7814 -4.2188 L53.2501 -6.3594 L53.2501 -7.2969 L58.9064 -4.4688 L58.9064 -3.875 L53.2501 -1.3906 L53.2501 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath47);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(378.6983,-62.7649)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath48);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="394.8539" x2="394.8539" y1="-97.109" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="394.8539" x2="130.7848" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="130.7848" x2="130.7848" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-499.1388"
+      /><line x1="394.8539" x2="388.8539" y1="-97.109" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.5014"
+      /><line x1="394.8539" x2="400.8539" y1="-97.109" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.5014"
+      /><line x1="352.7262" x2="237.8398" y1="-76.7649" style="fill:none; clip-path:url(#clipPath2);" y2="-76.7649"
+      /><line x1="237.8398" x2="237.8398" y1="-76.7649" style="fill:none; clip-path:url(#clipPath2);" y2="-108.4421"
+      /><line x1="237.8398" x2="127.3651" y1="-108.4421" style="fill:none; clip-path:url(#clipPath2);" y2="-108.4421"
+      /><line x1="352.7262" x2="342.3339" y1="-76.7649" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-70.7649"
+      /><line x1="352.7262" x2="342.3339" y1="-76.7649" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-82.7649"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="11.2908" y="-38.7619" width="120" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="11.2908" y="-38.7619" width="120" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(32.2908,-20.7619)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath49);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(21.2908,-4.4178)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 ZM38.7264 -8.5625 Q40.4764 -8.5625 41.3045 -7.9219 Q42.1482 -7.2969 42.1482 -6 Q42.1482 -5.4062 41.9139 -4.9688 Q41.6951 -4.5312 41.3201 -4.2188 Q40.9607 -3.9219 40.5545 -3.7344 L43.0701 0 L41.0545 0 L39.0076 -3.2812 L38.0389 -3.2812 L38.0389 0 L36.2264 0 L36.2264 -8.5625 L38.7264 -8.5625 ZM38.5857 -7.0781 L38.0389 -7.0781 L38.0389 -4.7656 L38.6326 -4.7656 Q39.5232 -4.7656 39.9139 -5.0625 Q40.3045 -5.3594 40.3045 -5.9531 Q40.3045 -6.5625 39.8826 -6.8125 Q39.4764 -7.0781 38.5857 -7.0781 ZM46.7089 -6.6719 Q48.0527 -6.6719 48.8495 -5.8906 Q49.6464 -5.125 49.6464 -3.7031 L49.6464 -2.8281 L45.4277 -2.8281 Q45.4433 -2.0781 45.8652 -1.6406 Q46.3027 -1.2188 47.0527 -1.2188 Q47.6933 -1.2188 48.2089 -1.3438 Q48.7245 -1.4688 49.2714 -1.7344 L49.2714 -0.3438 Q48.787 -0.1094 48.2558 0 Q47.7245 0.125 46.9745 0.125 Q45.9902 0.125 45.2245 -0.2344 Q44.4745 -0.6094 44.037 -1.3438 Q43.6152 -2.0938 43.6152 -3.2344 Q43.6152 -4.375 43.9902 -5.1406 Q44.3808 -5.9062 45.0839 -6.2812 Q45.787 -6.6719 46.7089 -6.6719 ZM46.7089 -5.4062 Q46.1933 -5.4062 45.8495 -5.0625 Q45.5214 -4.7344 45.4589 -4.0156 L47.9589 -4.0156 Q47.9589 -4.625 47.6464 -5.0156 Q47.3495 -5.4062 46.7089 -5.4062 ZM54.7385 -6.6719 Q55.8479 -6.6719 56.5354 -5.8125 Q57.2229 -4.9531 57.2229 -3.2812 Q57.2229 -1.625 56.5041 -0.75 Q55.801 0.125 54.6916 0.125 Q53.9885 0.125 53.5666 -0.125 Q53.1447 -0.3906 52.8791 -0.7188 L52.7854 -0.7188 Q52.8791 -0.2188 52.8791 0.2344 L52.8791 2.875 L51.0979 2.875 L51.0979 -6.5469 L52.551 -6.5469 L52.801 -5.7031 L52.8791 -5.7031 Q53.1447 -6.0938 53.5822 -6.375 Q54.0354 -6.6719 54.7385 -6.6719 ZM54.176 -5.25 Q53.4729 -5.25 53.1916 -4.8125 Q52.9104 -4.375 52.8791 -3.4844 L52.8791 -3.2969 Q52.8791 -2.3594 53.1604 -1.8438 Q53.4416 -1.3281 54.1916 -1.3281 Q54.801 -1.3281 55.0979 -1.8438 Q55.3947 -2.3594 55.3947 -3.3125 Q55.3947 -5.25 54.176 -5.25 ZM64.647 -3.2812 Q64.647 -1.6562 63.7877 -0.7656 Q62.9283 0.125 61.4595 0.125 Q60.5377 0.125 59.8189 -0.2656 Q59.1158 -0.6719 58.7095 -1.4375 Q58.3033 -2.2031 58.3033 -3.2812 Q58.3033 -4.9219 59.147 -5.7969 Q60.0064 -6.6719 61.4908 -6.6719 Q62.4127 -6.6719 63.1158 -6.2656 Q63.8345 -5.875 64.2408 -5.125 Q64.647 -4.375 64.647 -3.2812 ZM60.1158 -3.2812 Q60.1158 -2.3125 60.4283 -1.8125 Q60.7564 -1.3125 61.4752 -1.3125 Q62.1783 -1.3125 62.4908 -1.8125 Q62.8189 -2.3125 62.8189 -3.2812 Q62.8189 -4.2656 62.4908 -4.75 Q62.1783 -5.2344 61.4595 -5.2344 Q60.7564 -5.2344 60.4283 -4.75 Q60.1158 -4.2656 60.1158 -3.2812 ZM70.7001 -1.9375 Q70.7001 -0.9531 69.997 -0.4062 Q69.2938 0.125 67.9032 0.125 Q67.2157 0.125 66.7157 0.0312 Q66.2313 -0.0625 65.7313 -0.2656 L65.7313 -1.7344 Q66.2626 -1.5 66.872 -1.3438 Q67.4813 -1.1875 67.9501 -1.1875 Q68.4813 -1.1875 68.7001 -1.3438 Q68.9345 -1.5 68.9345 -1.75 Q68.9345 -1.9219 68.8407 -2.0469 Q68.747 -2.1875 68.4501 -2.3438 Q68.1532 -2.5156 67.5126 -2.7812 Q66.9032 -3.0469 66.497 -3.2969 Q66.1063 -3.5625 65.9188 -3.9219 Q65.7313 -4.2969 65.7313 -4.8438 Q65.7313 -5.7656 66.4345 -6.2188 Q67.1376 -6.6719 68.3095 -6.6719 Q68.9345 -6.6719 69.4813 -6.5469 Q70.0282 -6.4375 70.622 -6.1562 L70.0751 -4.875 Q69.6063 -5.0781 69.1688 -5.2188 Q68.7313 -5.3594 68.2938 -5.3594 Q67.497 -5.3594 67.497 -4.9219 Q67.497 -4.7656 67.5907 -4.6406 Q67.7001 -4.5156 67.997 -4.3594 Q68.2938 -4.2188 68.872 -3.9844 Q69.4345 -3.75 69.8407 -3.5 Q70.247 -3.2656 70.4657 -2.8906 Q70.7001 -2.5312 70.7001 -1.9375 ZM72.9922 -9.125 Q73.3829 -9.125 73.6641 -8.9375 Q73.961 -8.75 73.961 -8.25 Q73.961 -7.75 73.6641 -7.5625 Q73.3829 -7.375 72.9922 -7.375 Q72.5704 -7.375 72.2891 -7.5625 Q72.0079 -7.75 72.0079 -8.25 Q72.0079 -8.75 72.2891 -8.9375 Q72.5704 -9.125 72.9922 -9.125 ZM73.8672 -6.5469 L73.8672 0 L72.086 0 L72.086 -6.5469 L73.8672 -6.5469 ZM78.5116 -1.3125 Q78.8085 -1.3125 79.0741 -1.3594 Q79.3554 -1.4219 79.6366 -1.5156 L79.6366 -0.1875 Q79.3398 -0.0625 78.9179 0.0312 Q78.496 0.125 77.996 0.125 Q77.4023 0.125 76.9335 -0.0625 Q76.4804 -0.2656 76.1991 -0.7344 Q75.9335 -1.2188 75.9335 -2.0469 L75.9335 -5.2031 L75.0898 -5.2031 L75.0898 -5.9688 L76.0741 -6.5625 L76.5898 -7.9375 L77.7304 -7.9375 L77.7304 -6.5469 L79.5585 -6.5469 L79.5585 -5.2031 L77.7304 -5.2031 L77.7304 -2.0469 Q77.7304 -1.6875 77.9335 -1.5 Q78.1523 -1.3125 78.5116 -1.3125 ZM86.9072 -3.2812 Q86.9072 -1.6562 86.0478 -0.7656 Q85.1884 0.125 83.7197 0.125 Q82.7978 0.125 82.0791 -0.2656 Q81.3759 -0.6719 80.9697 -1.4375 Q80.5634 -2.2031 80.5634 -3.2812 Q80.5634 -4.9219 81.4072 -5.7969 Q82.2666 -6.6719 83.7509 -6.6719 Q84.6728 -6.6719 85.3759 -6.2656 Q86.0947 -5.875 86.5009 -5.125 Q86.9072 -4.375 86.9072 -3.2812 ZM82.3759 -3.2812 Q82.3759 -2.3125 82.6884 -1.8125 Q83.0166 -1.3125 83.7353 -1.3125 Q84.4384 -1.3125 84.7509 -1.8125 Q85.0791 -2.3125 85.0791 -3.2812 Q85.0791 -4.2656 84.7509 -4.75 Q84.4384 -5.2344 83.7197 -5.2344 Q83.0166 -5.2344 82.6884 -4.75 Q82.3759 -4.2656 82.3759 -3.2812 ZM92.0384 -6.6719 Q92.179 -6.6719 92.3509 -6.6562 Q92.5384 -6.6406 92.6477 -6.625 L92.5071 -4.9375 Q92.429 -4.9688 92.2571 -4.9844 Q92.1009 -5 91.9759 -5 Q91.5227 -5 91.1009 -4.8438 Q90.679 -4.6875 90.4134 -4.3125 Q90.1634 -3.9531 90.1634 -3.3438 L90.1634 0 L88.3821 0 L88.3821 -6.5469 L89.7415 -6.5469 L90.0071 -5.4531 L90.0852 -5.4531 Q90.3665 -5.9531 90.8665 -6.3125 Q91.3821 -6.6719 92.0384 -6.6719 ZM92.8927 -6.5469 L94.8458 -6.5469 L96.0802 -2.875 Q96.1739 -2.6094 96.2208 -2.3281 Q96.2833 -2.0469 96.2989 -1.7344 L96.3302 -1.7344 Q96.377 -2.0469 96.4395 -2.3281 Q96.502 -2.6094 96.5958 -2.875 L97.7989 -6.5469 L99.7208 -6.5469 L96.9552 0.8438 Q96.5802 1.8594 95.8614 2.3594 Q95.1427 2.875 94.2052 2.875 Q93.9083 2.875 93.6895 2.8438 Q93.4708 2.8125 93.2989 2.7812 L93.2989 1.375 Q93.4395 1.3906 93.6114 1.4062 Q93.7989 1.4375 94.002 1.4375 Q94.5802 1.4375 94.9083 1.0938 Q95.2364 0.75 95.3927 0.2812 L95.502 -0.0469 L92.8927 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath50);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="231.6676" y="-540.0107" width="99" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="231.6676" y="-540.0107" width="99" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(247.1676,-522.0107)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath51);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(241.6676,-505.6666)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 ZM41.2732 -2.375 Q41.2732 -1.2344 40.4451 -0.5469 Q39.6326 0.125 38.117 0.125 Q36.7732 0.125 35.6951 -0.3906 L35.6951 -2.0938 Q36.3045 -1.8281 36.9607 -1.5938 Q37.617 -1.375 38.2732 -1.375 Q38.9451 -1.375 39.2264 -1.625 Q39.5076 -1.8906 39.5076 -2.2969 Q39.5076 -2.6094 39.2732 -2.8438 Q39.0545 -3.0781 38.6795 -3.2656 Q38.3201 -3.4688 37.8357 -3.7031 Q37.5389 -3.8438 37.1795 -4.0312 Q36.8357 -4.2344 36.5232 -4.5312 Q36.2107 -4.8281 35.992 -5.2344 Q35.7889 -5.6562 35.7889 -6.25 Q35.7889 -7.4062 36.5701 -8.0469 Q37.3514 -8.6875 38.6951 -8.6875 Q39.367 -8.6875 39.9764 -8.5312 Q40.5857 -8.375 41.242 -8.0938 L40.6639 -6.6719 Q40.0701 -6.9062 39.6014 -7.0312 Q39.1326 -7.1719 38.6326 -7.1719 Q38.117 -7.1719 37.8357 -6.9375 Q37.5701 -6.7031 37.5701 -6.3125 Q37.5701 -5.8594 37.9764 -5.5938 Q38.3826 -5.3281 39.1951 -4.9375 Q39.8514 -4.625 40.3045 -4.2812 Q40.7732 -3.9531 41.0232 -3.5 Q41.2732 -3.0469 41.2732 -2.375 ZM45.4009 -6.6719 Q46.7447 -6.6719 47.5415 -5.8906 Q48.3384 -5.125 48.3384 -3.7031 L48.3384 -2.8281 L44.1197 -2.8281 Q44.1353 -2.0781 44.5572 -1.6406 Q44.9947 -1.2188 45.7447 -1.2188 Q46.3853 -1.2188 46.9009 -1.3438 Q47.4165 -1.4688 47.9634 -1.7344 L47.9634 -0.3438 Q47.479 -0.1094 46.9478 0 Q46.4165 0.125 45.6665 0.125 Q44.6822 0.125 43.9165 -0.2344 Q43.1665 -0.6094 42.729 -1.3438 Q42.3072 -2.0938 42.3072 -3.2344 Q42.3072 -4.375 42.6822 -5.1406 Q43.0728 -5.9062 43.7759 -6.2812 Q44.479 -6.6719 45.4009 -6.6719 ZM45.4009 -5.4062 Q44.8853 -5.4062 44.5415 -5.0625 Q44.2134 -4.7344 44.1509 -4.0156 L46.6509 -4.0156 Q46.6509 -4.625 46.3384 -5.0156 Q46.0415 -5.4062 45.4009 -5.4062 ZM53.4461 -6.6719 Q53.5867 -6.6719 53.7586 -6.6562 Q53.9461 -6.6406 54.0555 -6.625 L53.9148 -4.9375 Q53.8367 -4.9688 53.6648 -4.9844 Q53.5086 -5 53.3836 -5 Q52.9305 -5 52.5086 -4.8438 Q52.0867 -4.6875 51.8211 -4.3125 Q51.5711 -3.9531 51.5711 -3.3438 L51.5711 0 L49.7898 0 L49.7898 -6.5469 L51.1492 -6.5469 L51.4148 -5.4531 L51.493 -5.4531 Q51.7742 -5.9531 52.2742 -6.3125 Q52.7898 -6.6719 53.4461 -6.6719 ZM56.8004 0 L54.3004 -6.5469 L56.1754 -6.5469 L57.4254 -2.8125 Q57.5348 -2.4844 57.5973 -2.125 Q57.6754 -1.7656 57.691 -1.4688 L57.7379 -1.4688 Q57.7691 -2.125 58.0035 -2.8125 L59.2535 -6.5469 L61.1285 -6.5469 L58.6285 0 L56.8004 0 ZM62.9722 -9.125 Q63.3628 -9.125 63.6441 -8.9375 Q63.9409 -8.75 63.9409 -8.25 Q63.9409 -7.75 63.6441 -7.5625 Q63.3628 -7.375 62.9722 -7.375 Q62.5503 -7.375 62.2691 -7.5625 Q61.9878 -7.75 61.9878 -8.25 Q61.9878 -8.75 62.2691 -8.9375 Q62.5503 -9.125 62.9722 -9.125 ZM63.8472 -6.5469 L63.8472 0 L62.0659 0 L62.0659 -6.5469 L63.8472 -6.5469 ZM68.3822 0.125 Q66.9291 0.125 66.1322 -0.6875 Q65.3353 -1.5 65.3353 -3.2344 Q65.3353 -4.4375 65.7416 -5.1875 Q66.1478 -5.9531 66.8666 -6.3125 Q67.601 -6.6719 68.5385 -6.6719 Q69.2103 -6.6719 69.7103 -6.5312 Q70.2103 -6.4062 70.5853 -6.2344 L70.0541 -4.8438 Q69.6322 -5.0156 69.2572 -5.125 Q68.8978 -5.2344 68.5385 -5.2344 Q67.1478 -5.2344 67.1478 -3.25 Q67.1478 -2.2656 67.5072 -1.7969 Q67.8822 -1.3281 68.5385 -1.3281 Q69.101 -1.3281 69.5385 -1.4688 Q69.976 -1.625 70.3822 -1.8906 L70.3822 -0.375 Q69.976 -0.1094 69.5228 0 Q69.0697 0.125 68.3822 0.125 ZM74.5971 -6.6719 Q75.9409 -6.6719 76.7377 -5.8906 Q77.5346 -5.125 77.5346 -3.7031 L77.5346 -2.8281 L73.3159 -2.8281 Q73.3315 -2.0781 73.7534 -1.6406 Q74.1909 -1.2188 74.9409 -1.2188 Q75.5815 -1.2188 76.0971 -1.3438 Q76.6127 -1.4688 77.1596 -1.7344 L77.1596 -0.3438 Q76.6752 -0.1094 76.144 0 Q75.6127 0.125 74.8627 0.125 Q73.8784 0.125 73.1127 -0.2344 Q72.3627 -0.6094 71.9252 -1.3438 Q71.5034 -2.0938 71.5034 -3.2344 Q71.5034 -4.375 71.8784 -5.1406 Q72.269 -5.9062 72.9721 -6.2812 Q73.6752 -6.6719 74.5971 -6.6719 ZM74.5971 -5.4062 Q74.0815 -5.4062 73.7377 -5.0625 Q73.4096 -4.7344 73.3471 -4.0156 L75.8471 -4.0156 Q75.8471 -4.625 75.5346 -5.0156 Q75.2377 -5.4062 74.5971 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath52);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="919.7039" y="-556.8982" width="123.7047" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="919.7039" y="-556.8982" width="123.7047" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(929.7039,-538.8982)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM30.8576 -6.5469 Q32.0138 -6.5469 32.5919 -5.9844 Q33.1857 -5.4375 33.1857 -4.1875 L33.1857 0 L32.1544 0 L32.1544 -4.1094 Q32.1544 -5.6562 30.7013 -5.6562 Q29.6388 -5.6562 29.2326 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1544 -6.0625 29.7013 -6.2969 Q30.2482 -6.5469 30.8576 -6.5469 ZM38.1486 -5.6094 L36.5236 -5.6094 L36.5236 0 L35.4767 0 L35.4767 -5.6094 L34.3517 -5.6094 L34.3517 -6.1094 L35.4767 -6.4688 L35.4767 -6.8438 Q35.4767 -8.0938 36.0236 -8.6406 Q36.5705 -9.1875 37.5549 -9.1875 Q37.9455 -9.1875 38.258 -9.1094 Q38.5861 -9.0469 38.8049 -8.9688 L38.5392 -8.1406 Q38.3361 -8.2031 38.0861 -8.25 Q37.8361 -8.3125 37.5705 -8.3125 Q37.0392 -8.3125 36.7736 -7.9531 Q36.5236 -7.6094 36.5236 -6.8594 L36.5236 -6.4375 L38.1486 -6.4375 L38.1486 -5.6094 ZM39.8548 -8.8438 Q40.0891 -8.8438 40.2766 -8.6719 Q40.4641 -8.5156 40.4641 -8.1719 Q40.4641 -7.8438 40.2766 -7.6719 Q40.0891 -7.5 39.8548 -7.5 Q39.5891 -7.5 39.4016 -7.6719 Q39.2298 -7.8438 39.2298 -8.1719 Q39.2298 -8.5156 39.4016 -8.6719 Q39.5891 -8.8438 39.8548 -8.8438 ZM40.3704 -6.4375 L40.3704 0 L39.3079 0 L39.3079 -6.4375 L40.3704 -6.4375 ZM44.6852 -6.5469 Q45.3258 -6.5469 45.8258 -6.3125 Q46.3414 -6.0781 46.7008 -5.5781 L46.7633 -5.5781 L46.9039 -6.4375 L47.7477 -6.4375 L47.7477 0.1094 Q47.7477 1.4844 47.0445 2.1719 Q46.3414 2.875 44.8727 2.875 Q43.4508 2.875 42.5445 2.4688 L42.5445 1.5 Q43.4977 2 44.9352 2 Q45.7633 2 46.232 1.5156 Q46.7008 1.0312 46.7008 0.1875 L46.7008 -0.0625 Q46.7008 -0.2031 46.7164 -0.4688 Q46.732 -0.75 46.7477 -0.8594 L46.6852 -0.8594 Q46.0445 0.125 44.7008 0.125 Q43.4508 0.125 42.7477 -0.75 Q42.0445 -1.625 42.0445 -3.2031 Q42.0445 -4.7344 42.7477 -5.6406 Q43.4508 -6.5469 44.6852 -6.5469 ZM44.8258 -5.6562 Q44.0289 -5.6562 43.5758 -5.0156 Q43.1383 -4.375 43.1383 -3.1875 Q43.1383 -2 43.5758 -1.375 Q44.0133 -0.75 44.857 -0.75 Q45.8258 -0.75 46.2633 -1.2656 Q46.7164 -1.7812 46.7164 -2.9531 L46.7164 -3.2031 Q46.7164 -4.5312 46.2633 -5.0938 Q45.8102 -5.6562 44.8258 -5.6562 ZM55.159 -6.4375 L55.159 0 L54.2996 0 L54.1433 -0.8594 L54.0965 -0.8594 Q53.784 -0.3438 53.2215 -0.1094 Q52.6746 0.125 52.0496 0.125 Q50.8933 0.125 50.2996 -0.4375 Q49.7215 -1 49.7215 -2.2188 L49.7215 -6.4375 L50.784 -6.4375 L50.784 -2.2969 Q50.784 -0.75 52.2058 -0.75 Q53.284 -0.75 53.6902 -1.3438 Q54.1121 -1.9531 54.1121 -3.0781 L54.1121 -6.4375 L55.159 -6.4375 ZM60.2 -6.5469 Q60.3875 -6.5469 60.5906 -6.5312 Q60.8094 -6.5156 60.9656 -6.4844 L60.825 -5.5156 Q60.6688 -5.5469 60.4813 -5.5625 Q60.2938 -5.5938 60.1375 -5.5938 Q59.6375 -5.5938 59.2 -5.3125 Q58.7781 -5.0469 58.5125 -4.5625 Q58.2625 -4.0781 58.2625 -3.4375 L58.2625 0 L57.2 0 L57.2 -6.4375 L58.075 -6.4375 L58.1844 -5.25 L58.2313 -5.25 Q58.5438 -5.7812 59.0281 -6.1562 Q59.5281 -6.5469 60.2 -6.5469 ZM64.5936 -6.5469 Q65.7654 -6.5469 66.3279 -6.0312 Q66.9061 -5.5156 66.9061 -4.375 L66.9061 0 L66.1248 0 L65.9217 -0.9062 L65.8748 -0.9062 Q65.4529 -0.3906 64.9842 -0.125 Q64.5311 0.125 63.7186 0.125 Q62.8436 0.125 62.2654 -0.3281 Q61.6873 -0.7969 61.6873 -1.7812 Q61.6873 -2.75 62.4373 -3.2656 Q63.2029 -3.7969 64.7811 -3.8438 L65.8748 -3.875 L65.8748 -4.2656 Q65.8748 -5.0625 65.5154 -5.375 Q65.1717 -5.6875 64.5311 -5.6875 Q64.0311 -5.6875 63.5779 -5.5312 Q63.1248 -5.3906 62.7186 -5.2031 L62.4061 -5.9844 Q62.8279 -6.2188 63.3904 -6.375 Q63.9686 -6.5469 64.5936 -6.5469 ZM64.9061 -3.1094 Q63.7029 -3.0625 63.2342 -2.7188 Q62.7811 -2.3906 62.7811 -1.7812 Q62.7811 -1.2344 63.1092 -0.9844 Q63.4373 -0.7344 63.9529 -0.7344 Q64.7811 -0.7344 65.3123 -1.1719 Q65.8592 -1.625 65.8592 -2.5625 L65.8592 -3.1406 L64.9061 -3.1094 ZM71.0443 -0.75 Q71.2787 -0.75 71.5287 -0.7812 Q71.7787 -0.8281 71.935 -0.875 L71.935 -0.0781 Q71.7787 0.0156 71.4662 0.0625 Q71.1537 0.125 70.8568 0.125 Q70.3568 0.125 69.9193 -0.0469 Q69.4975 -0.2344 69.2318 -0.6562 Q68.9818 -1.0938 68.9818 -1.875 L68.9818 -5.6094 L68.06 -5.6094 L68.06 -6.125 L68.9818 -6.5469 L69.4037 -7.9062 L70.0287 -7.9062 L70.0287 -6.4375 L71.8881 -6.4375 L71.8881 -5.6094 L70.0287 -5.6094 L70.0287 -1.8906 Q70.0287 -1.3125 70.31 -1.0312 Q70.5912 -0.75 71.0443 -0.75 ZM73.767 -8.8438 Q74.0014 -8.8438 74.1889 -8.6719 Q74.3764 -8.5156 74.3764 -8.1719 Q74.3764 -7.8438 74.1889 -7.6719 Q74.0014 -7.5 73.767 -7.5 Q73.5014 -7.5 73.3139 -7.6719 Q73.142 -7.8438 73.142 -8.1719 Q73.142 -8.5156 73.3139 -8.6719 Q73.5014 -8.8438 73.767 -8.8438 ZM74.2826 -6.4375 L74.2826 0 L73.2201 0 L73.2201 -6.4375 L74.2826 -6.4375 ZM81.9099 -3.2344 Q81.9099 -1.625 81.0974 -0.75 Q80.2849 0.125 78.9099 0.125 Q78.0661 0.125 77.3943 -0.2656 Q76.7224 -0.6562 76.3318 -1.4062 Q75.9568 -2.1562 75.9568 -3.2344 Q75.9568 -4.8281 76.7536 -5.6875 Q77.5661 -6.5469 78.9411 -6.5469 Q79.8318 -6.5469 80.488 -6.1562 Q81.1599 -5.7656 81.5349 -5.0312 Q81.9099 -4.2969 81.9099 -3.2344 ZM77.0505 -3.2344 Q77.0505 -2.0938 77.5036 -1.4219 Q77.9568 -0.75 78.9411 -0.75 Q79.9099 -0.75 80.363 -1.4219 Q80.8161 -2.0938 80.8161 -3.2344 Q80.8161 -4.375 80.363 -5.0156 Q79.9099 -5.6562 78.9255 -5.6562 Q77.9411 -5.6562 77.488 -5.0156 Q77.0505 -4.375 77.0505 -3.2344 ZM86.67 -6.5469 Q87.8262 -6.5469 88.4043 -5.9844 Q88.9981 -5.4375 88.9981 -4.1875 L88.9981 0 L87.9668 0 L87.9668 -4.1094 Q87.9668 -5.6562 86.5137 -5.6562 Q85.4512 -5.6562 85.045 -5.0625 Q84.6387 -4.4688 84.6387 -3.3438 L84.6387 0 L83.5762 0 L83.5762 -6.4375 L84.4356 -6.4375 L84.5918 -5.5625 L84.6543 -5.5625 Q84.9668 -6.0625 85.5137 -6.2969 Q86.0606 -6.5469 86.67 -6.5469 ZM90.5704 -2.3281 L95.1016 -4.2188 L90.5704 -6.3594 L90.5704 -7.2969 L96.2266 -4.4688 L96.2266 -3.875 L90.5704 -1.3906 L90.5704 -2.3281 ZM97.4344 -2.3281 L101.9657 -4.2188 L97.4344 -6.3594 L97.4344 -7.2969 L103.0907 -4.4688 L103.0907 -3.875 L97.4344 -1.3906 L97.4344 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath53);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(937.0563,-522.5541)"
+    ><path d="M6.125 -2.375 Q6.125 -1.2344 5.2969 -0.5469 Q4.4844 0.125 2.9688 0.125 Q1.625 0.125 0.5469 -0.3906 L0.5469 -2.0938 Q1.1562 -1.8281 1.8125 -1.5938 Q2.4688 -1.375 3.125 -1.375 Q3.7969 -1.375 4.0781 -1.625 Q4.3594 -1.8906 4.3594 -2.2969 Q4.3594 -2.6094 4.125 -2.8438 Q3.9062 -3.0781 3.5312 -3.2656 Q3.1719 -3.4688 2.6875 -3.7031 Q2.3906 -3.8438 2.0312 -4.0312 Q1.6875 -4.2344 1.375 -4.5312 Q1.0625 -4.8281 0.8438 -5.2344 Q0.6406 -5.6562 0.6406 -6.25 Q0.6406 -7.4062 1.4219 -8.0469 Q2.2031 -8.6875 3.5469 -8.6875 Q4.2188 -8.6875 4.8281 -8.5312 Q5.4375 -8.375 6.0938 -8.0938 L5.5156 -6.6719 Q4.9219 -6.9062 4.4531 -7.0312 Q3.9844 -7.1719 3.4844 -7.1719 Q2.9688 -7.1719 2.6875 -6.9375 Q2.4219 -6.7031 2.4219 -6.3125 Q2.4219 -5.8594 2.8281 -5.5938 Q3.2344 -5.3281 4.0469 -4.9375 Q4.7031 -4.625 5.1562 -4.2812 Q5.625 -3.9531 5.875 -3.5 Q6.125 -3.0469 6.125 -2.375 ZM10.2527 -6.6719 Q11.5964 -6.6719 12.3933 -5.8906 Q13.1902 -5.125 13.1902 -3.7031 L13.1902 -2.8281 L8.9714 -2.8281 Q8.987 -2.0781 9.4089 -1.6406 Q9.8464 -1.2188 10.5964 -1.2188 Q11.237 -1.2188 11.7527 -1.3438 Q12.2683 -1.4688 12.8152 -1.7344 L12.8152 -0.3438 Q12.3308 -0.1094 11.7995 0 Q11.2683 0.125 10.5183 0.125 Q9.5339 0.125 8.7683 -0.2344 Q8.0183 -0.6094 7.5808 -1.3438 Q7.1589 -2.0938 7.1589 -3.2344 Q7.1589 -4.375 7.5339 -5.1406 Q7.9245 -5.9062 8.6277 -6.2812 Q9.3308 -6.6719 10.2527 -6.6719 ZM10.2527 -5.4062 Q9.737 -5.4062 9.3933 -5.0625 Q9.0652 -4.7344 9.0027 -4.0156 L11.5027 -4.0156 Q11.5027 -4.625 11.1902 -5.0156 Q10.8933 -5.4062 10.2527 -5.4062 ZM17.2979 0.125 Q15.8447 0.125 15.0479 -0.6875 Q14.251 -1.5 14.251 -3.2344 Q14.251 -4.4375 14.6572 -5.1875 Q15.0635 -5.9531 15.7822 -6.3125 Q16.5166 -6.6719 17.4541 -6.6719 Q18.126 -6.6719 18.626 -6.5312 Q19.126 -6.4062 19.501 -6.2344 L18.9697 -4.8438 Q18.5479 -5.0156 18.1729 -5.125 Q17.8135 -5.2344 17.4541 -5.2344 Q16.0635 -5.2344 16.0635 -3.25 Q16.0635 -2.2656 16.4229 -1.7969 Q16.7979 -1.3281 17.4541 -1.3281 Q18.0166 -1.3281 18.4541 -1.4688 Q18.8916 -1.625 19.2979 -1.8906 L19.2979 -0.375 Q18.8916 -0.1094 18.4385 0 Q17.9854 0.125 17.2979 0.125 ZM26.8253 -6.5469 L26.8253 0 L25.4503 0 L25.2159 -0.8438 L25.1221 -0.8438 Q24.8096 -0.3438 24.2628 -0.1094 Q23.7159 0.125 23.1065 0.125 Q22.044 0.125 21.4034 -0.4375 Q20.7784 -1.0156 20.7784 -2.2812 L20.7784 -6.5469 L22.5596 -6.5469 L22.5596 -2.7188 Q22.5596 -2.0312 22.8096 -1.6719 Q23.0596 -1.3125 23.6221 -1.3125 Q24.4346 -1.3125 24.7315 -1.8594 Q25.0284 -2.4219 25.0284 -3.4688 L25.0284 -6.5469 L26.8253 -6.5469 ZM32.3499 -6.6719 Q32.4906 -6.6719 32.6624 -6.6562 Q32.8499 -6.6406 32.9593 -6.625 L32.8187 -4.9375 Q32.7406 -4.9688 32.5687 -4.9844 Q32.4124 -5 32.2874 -5 Q31.8343 -5 31.4124 -4.8438 Q30.9906 -4.6875 30.7249 -4.3125 Q30.4749 -3.9531 30.4749 -3.3438 L30.4749 0 L28.6937 0 L28.6937 -6.5469 L30.0531 -6.5469 L30.3187 -5.4531 L30.3968 -5.4531 Q30.6781 -5.9531 31.1781 -6.3125 Q31.6937 -6.6719 32.3499 -6.6719 ZM35.048 -9.125 Q35.4386 -9.125 35.7199 -8.9375 Q36.0167 -8.75 36.0167 -8.25 Q36.0167 -7.75 35.7199 -7.5625 Q35.4386 -7.375 35.048 -7.375 Q34.6261 -7.375 34.3449 -7.5625 Q34.0636 -7.75 34.0636 -8.25 Q34.0636 -8.75 34.3449 -8.9375 Q34.6261 -9.125 35.048 -9.125 ZM35.923 -6.5469 L35.923 0 L34.1417 0 L34.1417 -6.5469 L35.923 -6.5469 ZM40.5674 -1.3125 Q40.8643 -1.3125 41.1299 -1.3594 Q41.4111 -1.4219 41.6924 -1.5156 L41.6924 -0.1875 Q41.3955 -0.0625 40.9736 0.0312 Q40.5518 0.125 40.0518 0.125 Q39.458 0.125 38.9893 -0.0625 Q38.5361 -0.2656 38.2549 -0.7344 Q37.9893 -1.2188 37.9893 -2.0469 L37.9893 -5.2031 L37.1455 -5.2031 L37.1455 -5.9688 L38.1299 -6.5625 L38.6455 -7.9375 L39.7861 -7.9375 L39.7861 -6.5469 L41.6143 -6.5469 L41.6143 -5.2031 L39.7861 -5.2031 L39.7861 -2.0469 Q39.7861 -1.6875 39.9893 -1.5 Q40.208 -1.3125 40.5674 -1.3125 ZM42.0723 -6.5469 L44.0254 -6.5469 L45.2598 -2.875 Q45.3535 -2.6094 45.4004 -2.3281 Q45.4629 -2.0469 45.4785 -1.7344 L45.5098 -1.7344 Q45.5567 -2.0469 45.6192 -2.3281 Q45.6817 -2.6094 45.7754 -2.875 L46.9785 -6.5469 L48.9004 -6.5469 L46.1348 0.8438 Q45.7598 1.8594 45.041 2.3594 Q44.3223 2.875 43.3848 2.875 Q43.0879 2.875 42.8692 2.8438 Q42.6504 2.8125 42.4785 2.7812 L42.4785 1.375 Q42.6192 1.3906 42.791 1.4062 Q42.9785 1.4375 43.1817 1.4375 Q43.7598 1.4375 44.0879 1.0938 Q44.416 0.75 44.5723 0.2812 L44.6817 -0.0469 L42.0723 -6.5469 ZM53.6191 -7.1719 Q52.5722 -7.1719 52.0097 -6.3906 Q51.4628 -5.6094 51.4628 -4.2656 Q51.4628 -2.8906 51.9785 -2.1406 Q52.4941 -1.3906 53.6191 -1.3906 Q54.1503 -1.3906 54.666 -1.5 Q55.1816 -1.625 55.8066 -1.8438 L55.8066 -0.3281 Q55.2441 -0.0938 54.6816 0.0156 Q54.1347 0.125 53.4472 0.125 Q52.1347 0.125 51.2753 -0.4219 Q50.416 -0.9688 50.0097 -1.9531 Q49.6035 -2.9531 49.6035 -4.2656 Q49.6035 -5.5625 50.0566 -6.5625 Q50.5253 -7.5625 51.416 -8.125 Q52.3222 -8.6875 53.6191 -8.6875 Q54.2597 -8.6875 54.9003 -8.5156 Q55.541 -8.3594 56.1191 -8.0938 L55.541 -6.6094 Q55.0566 -6.8438 54.5722 -7 Q54.0878 -7.1719 53.6191 -7.1719 ZM63.435 -3.2812 Q63.435 -1.6562 62.5757 -0.7656 Q61.7163 0.125 60.2475 0.125 Q59.3257 0.125 58.6069 -0.2656 Q57.9038 -0.6719 57.4975 -1.4375 Q57.0913 -2.2031 57.0913 -3.2812 Q57.0913 -4.9219 57.935 -5.7969 Q58.7944 -6.6719 60.2788 -6.6719 Q61.2007 -6.6719 61.9038 -6.2656 Q62.6225 -5.875 63.0288 -5.125 Q63.435 -4.375 63.435 -3.2812 ZM58.9038 -3.2812 Q58.9038 -2.3125 59.2163 -1.8125 Q59.5444 -1.3125 60.2632 -1.3125 Q60.9663 -1.3125 61.2788 -1.8125 Q61.6069 -2.3125 61.6069 -3.2812 Q61.6069 -4.2656 61.2788 -4.75 Q60.9663 -5.2344 60.2475 -5.2344 Q59.5444 -5.2344 59.2163 -4.75 Q58.9038 -4.2656 58.9038 -3.2812 ZM68.6287 -6.6719 Q69.6912 -6.6719 70.3162 -6.0938 Q70.9568 -5.5312 70.9568 -4.2656 L70.9568 0 L69.1756 0 L69.1756 -3.8281 Q69.1756 -4.5312 68.91 -4.8906 Q68.66 -5.25 68.1131 -5.25 Q67.3006 -5.25 66.9881 -4.6875 Q66.6912 -4.125 66.6912 -3.0781 L66.6912 0 L64.91 0 L64.91 -6.5469 L66.2693 -6.5469 L66.5193 -5.7188 L66.6131 -5.7188 Q66.9256 -6.2188 67.4725 -6.4375 Q68.0193 -6.6719 68.6287 -6.6719 ZM76.419 -5.2031 L74.8721 -5.2031 L74.8721 0 L73.0753 0 L73.0753 -5.2031 L72.0909 -5.2031 L72.0909 -6.0781 L73.0753 -6.5469 L73.0753 -7.0312 Q73.0753 -7.875 73.3565 -8.3281 Q73.6378 -8.7969 74.1534 -8.9844 Q74.6846 -9.1875 75.4034 -9.1875 Q75.919 -9.1875 76.3409 -9.0938 Q76.7784 -9.0156 77.044 -8.9062 L76.5909 -7.5938 Q76.3878 -7.6562 76.1378 -7.7031 Q75.9034 -7.7656 75.5909 -7.7656 Q75.2159 -7.7656 75.044 -7.5312 Q74.8721 -7.3125 74.8721 -6.9531 L74.8721 -6.5469 L76.419 -6.5469 L76.419 -5.2031 ZM78.3443 -9.125 Q78.7349 -9.125 79.0162 -8.9375 Q79.313 -8.75 79.313 -8.25 Q79.313 -7.75 79.0162 -7.5625 Q78.7349 -7.375 78.3443 -7.375 Q77.9224 -7.375 77.6412 -7.5625 Q77.3599 -7.75 77.3599 -8.25 Q77.3599 -8.75 77.6412 -8.9375 Q77.9224 -9.125 78.3443 -9.125 ZM79.2193 -6.5469 L79.2193 0 L77.438 0 L77.438 -6.5469 L79.2193 -6.5469 ZM83.2231 -6.6719 Q84.4262 -6.6719 85.1137 -5.7188 L85.1606 -5.7188 L85.3012 -6.5469 L86.8168 -6.5469 L86.8168 0.0156 Q86.8168 1.4219 85.9887 2.1406 Q85.1606 2.875 83.5512 2.875 Q82.8481 2.875 82.2543 2.7969 Q81.6606 2.7188 81.0981 2.5 L81.0981 1.0625 Q82.3012 1.5781 83.6449 1.5781 Q85.0356 1.5781 85.0356 0.0781 L85.0356 -0.0469 Q85.0356 -0.25 85.0512 -0.4688 Q85.0668 -0.6875 85.0824 -0.8594 L85.0356 -0.8594 Q84.6918 -0.3438 84.2231 -0.1094 Q83.7543 0.125 83.1762 0.125 Q82.0043 0.125 81.3481 -0.7656 Q80.7074 -1.6719 80.7074 -3.2656 Q80.7074 -4.875 81.3793 -5.7656 Q82.0512 -6.6719 83.2231 -6.6719 ZM83.7856 -5.2188 Q82.5199 -5.2188 82.5199 -3.2344 Q82.5199 -1.2812 83.8012 -1.2812 Q84.4887 -1.2812 84.8168 -1.6719 Q85.1449 -2.0625 85.1449 -3.0312 L85.1449 -3.25 Q85.1449 -4.3125 84.8168 -4.7656 Q84.5043 -5.2188 83.7856 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath54);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="730.3392" y="-818.1363" width="89.0365" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="730.3392" y="-818.1363" width="89.0365" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(740.3392,-800.1363)"
+    ><path d="M3.75 -8.5625 Q5.4531 -8.5625 6.3281 -8.0781 Q7.2188 -7.6094 7.2188 -6.3906 Q7.2188 -5.6562 6.875 -5.1562 Q6.5312 -4.6562 5.8906 -4.5469 L5.8906 -4.4844 Q6.3281 -4.4062 6.6719 -4.1875 Q7.0156 -3.9688 7.2188 -3.5625 Q7.4219 -3.1562 7.4219 -2.4844 Q7.4219 -1.3125 6.5781 -0.6562 Q5.75 0 4.2812 0 L1.0781 0 L1.0781 -8.5625 L3.75 -8.5625 ZM3.9531 -5.1719 Q4.7344 -5.1719 5.0469 -5.4219 Q5.3594 -5.6719 5.3594 -6.1562 Q5.3594 -6.6406 4.9844 -6.8594 Q4.625 -7.0781 3.8594 -7.0781 L2.8906 -7.0781 L2.8906 -5.1719 L3.9531 -5.1719 ZM2.8906 -3.7344 L2.8906 -1.5 L4.0781 -1.5 Q4.8906 -1.5 5.2188 -1.8125 Q5.5469 -2.1406 5.5469 -2.6562 Q5.5469 -3.1406 5.2188 -3.4375 Q4.8906 -3.7344 4.0156 -3.7344 L2.8906 -3.7344 ZM14.9547 -3.2812 Q14.9547 -1.6562 14.0953 -0.7656 Q13.2359 0.125 11.7672 0.125 Q10.8453 0.125 10.1266 -0.2656 Q9.4234 -0.6719 9.0172 -1.4375 Q8.6109 -2.2031 8.6109 -3.2812 Q8.6109 -4.9219 9.4547 -5.7969 Q10.3141 -6.6719 11.7984 -6.6719 Q12.7203 -6.6719 13.4234 -6.2656 Q14.1422 -5.875 14.5484 -5.125 Q14.9547 -4.375 14.9547 -3.2812 ZM10.4234 -3.2812 Q10.4234 -2.3125 10.7359 -1.8125 Q11.0641 -1.3125 11.7828 -1.3125 Q12.4859 -1.3125 12.7984 -1.8125 Q13.1266 -2.3125 13.1266 -3.2812 Q13.1266 -4.2656 12.7984 -4.75 Q12.4859 -5.2344 11.7672 -5.2344 Q11.0641 -5.2344 10.7359 -4.75 Q10.4234 -4.2656 10.4234 -3.2812 ZM22.3827 -3.2812 Q22.3827 -1.6562 21.5234 -0.7656 Q20.664 0.125 19.1952 0.125 Q18.2734 0.125 17.5546 -0.2656 Q16.8515 -0.6719 16.4452 -1.4375 Q16.039 -2.2031 16.039 -3.2812 Q16.039 -4.9219 16.8827 -5.7969 Q17.7421 -6.6719 19.2265 -6.6719 Q20.1484 -6.6719 20.8515 -6.2656 Q21.5702 -5.875 21.9765 -5.125 Q22.3827 -4.375 22.3827 -3.2812 ZM17.8515 -3.2812 Q17.8515 -2.3125 18.164 -1.8125 Q18.4921 -1.3125 19.2109 -1.3125 Q19.914 -1.3125 20.2265 -1.8125 Q20.5546 -2.3125 20.5546 -3.2812 Q20.5546 -4.2656 20.2265 -4.75 Q19.914 -5.2344 19.1952 -5.2344 Q18.4921 -5.2344 18.164 -4.75 Q17.8515 -4.2656 17.8515 -3.2812 ZM25.6389 -5.0469 Q25.6389 -4.6719 25.6077 -4.2969 Q25.5764 -3.9375 25.5452 -3.5625 L25.5764 -3.5625 Q25.7483 -3.8125 25.9358 -4.0625 Q26.1389 -4.3281 26.3577 -4.5625 L28.1858 -6.5469 L30.2014 -6.5469 L27.6077 -3.7031 L30.3577 0 L28.2952 0 L26.4045 -2.6562 L25.6389 -2.0469 L25.6389 0 L23.8577 0 L23.8577 -9.125 L25.6389 -9.125 L25.6389 -5.0469 ZM32.204 -9.125 Q32.5946 -9.125 32.8758 -8.9375 Q33.1727 -8.75 33.1727 -8.25 Q33.1727 -7.75 32.8758 -7.5625 Q32.5946 -7.375 32.204 -7.375 Q31.7821 -7.375 31.5008 -7.5625 Q31.2196 -7.75 31.2196 -8.25 Q31.2196 -8.75 31.5008 -8.9375 Q31.7821 -9.125 32.204 -9.125 ZM33.079 -6.5469 L33.079 0 L31.2977 0 L31.2977 -6.5469 L33.079 -6.5469 ZM38.6765 -6.6719 Q39.739 -6.6719 40.364 -6.0938 Q41.0046 -5.5312 41.0046 -4.2656 L41.0046 0 L39.2234 0 L39.2234 -3.8281 Q39.2234 -4.5312 38.9577 -4.8906 Q38.7077 -5.25 38.1609 -5.25 Q37.3484 -5.25 37.0359 -4.6875 Q36.739 -4.125 36.739 -3.0781 L36.739 0 L34.9577 0 L34.9577 -6.5469 L36.3171 -6.5469 L36.5671 -5.7188 L36.6609 -5.7188 Q36.9734 -6.2188 37.5202 -6.4375 Q38.0671 -6.6719 38.6765 -6.6719 ZM44.9668 -6.6719 Q46.1699 -6.6719 46.8574 -5.7188 L46.9043 -5.7188 L47.0449 -6.5469 L48.5605 -6.5469 L48.5605 0.0156 Q48.5605 1.4219 47.7324 2.1406 Q46.9043 2.875 45.2949 2.875 Q44.5918 2.875 43.998 2.7969 Q43.4043 2.7188 42.8418 2.5 L42.8418 1.0625 Q44.0449 1.5781 45.3887 1.5781 Q46.7793 1.5781 46.7793 0.0781 L46.7793 -0.0469 Q46.7793 -0.25 46.7949 -0.4688 Q46.8105 -0.6875 46.8262 -0.8594 L46.7793 -0.8594 Q46.4355 -0.3438 45.9668 -0.1094 Q45.498 0.125 44.9199 0.125 Q43.748 0.125 43.0918 -0.7656 Q42.4512 -1.6719 42.4512 -3.2656 Q42.4512 -4.875 43.123 -5.7656 Q43.7949 -6.6719 44.9668 -6.6719 ZM45.5293 -5.2188 Q44.2637 -5.2188 44.2637 -3.2344 Q44.2637 -1.2812 45.5449 -1.2812 Q46.2324 -1.2812 46.5605 -1.6719 Q46.8887 -2.0625 46.8887 -3.0312 L46.8887 -3.25 Q46.8887 -4.3125 46.5605 -4.7656 Q46.248 -5.2188 45.5293 -5.2188 ZM55.8285 0 L55.2035 -2.0469 L52.0785 -2.0469 L51.4535 0 L49.5003 0 L52.5316 -8.6094 L54.7503 -8.6094 L57.7816 0 L55.8285 0 ZM54.141 -5.5625 Q54.0785 -5.7656 53.9847 -6.0781 Q53.891 -6.3906 53.7972 -6.7031 Q53.7035 -7.0312 53.641 -7.2656 Q53.5785 -7.0312 53.4691 -6.6719 Q53.3753 -6.3281 53.2816 -6 Q53.2035 -5.6875 53.141 -5.5625 L52.5316 -3.5625 L54.766 -3.5625 L54.141 -5.5625 ZM62.3585 -6.6719 Q63.4679 -6.6719 64.1554 -5.8125 Q64.8429 -4.9531 64.8429 -3.2812 Q64.8429 -1.625 64.1241 -0.75 Q63.421 0.125 62.3116 0.125 Q61.6085 0.125 61.1866 -0.125 Q60.7648 -0.3906 60.4991 -0.7188 L60.4054 -0.7188 Q60.4991 -0.2188 60.4991 0.2344 L60.4991 2.875 L58.7179 2.875 L58.7179 -6.5469 L60.171 -6.5469 L60.421 -5.7031 L60.4991 -5.7031 Q60.7648 -6.0938 61.2023 -6.375 Q61.6554 -6.6719 62.3585 -6.6719 ZM61.796 -5.25 Q61.0929 -5.25 60.8116 -4.8125 Q60.5304 -4.375 60.4991 -3.4844 L60.4991 -3.2969 Q60.4991 -2.3594 60.7804 -1.8438 Q61.0616 -1.3281 61.8116 -1.3281 Q62.421 -1.3281 62.7179 -1.8438 Q63.0148 -2.3594 63.0148 -3.3125 Q63.0148 -5.25 61.796 -5.25 ZM67.2202 -9.125 Q67.6108 -9.125 67.8921 -8.9375 Q68.1889 -8.75 68.1889 -8.25 Q68.1889 -7.75 67.8921 -7.5625 Q67.6108 -7.375 67.2202 -7.375 Q66.7983 -7.375 66.5171 -7.5625 Q66.2358 -7.75 66.2358 -8.25 Q66.2358 -8.75 66.5171 -8.9375 Q66.7983 -9.125 67.2202 -9.125 ZM68.0952 -6.5469 L68.0952 0 L66.3139 0 L66.3139 -6.5469 L68.0952 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath55);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><line x1="392.4864" x2="392.4864" y1="-56.4208" style="fill:none; clip-path:url(#clipPath2);" y2="-26.033"
+      /><line x1="392.4864" x2="628.4591" y1="-26.033" style="fill:none; clip-path:url(#clipPath2);" y2="-26.033"
+      /><line x1="628.4591" x2="628.4591" y1="-26.033" style="fill:none; clip-path:url(#clipPath2);" y2="-56.5951"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" 392 -56 386 -45 399 -45"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" 392 -56 386 -45 399 -45"
+      /><path d="M289.6517 -647.4835 A6 6 0 0 0 289.6517 -659.4835" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="289.6517" x2="289.6517" y1="-739.6284" style="fill:none; clip-path:url(#clipPath2);" y2="-659.4835"
+      /><line x1="289.6517" x2="289.6517" y1="-647.4835" style="fill:none; clip-path:url(#clipPath2);" y2="-540.0107"
+      /><line x1="289.6517" x2="283.6517" y1="-540.0107" style="fill:none; clip-path:url(#clipPath2);" y2="-550.403"
+      /><line x1="289.6517" x2="295.6517" y1="-540.0107" style="fill:none; clip-path:url(#clipPath2);" y2="-550.403"
+      /><line x1="797.3267" x2="956.014" y1="-683.2905" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-556.8982"
+      /><line x1="797.3267" x2="809.1938" y1="-683.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-681.5092"
+      /><line x1="797.3267" x2="801.7176" y1="-683.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-672.1227"
+      /><line x1="392.4864" x2="392.4864" y1="-56.4208" style="fill:none; clip-path:url(#clipPath2);" y2="-26.033"
+      /><line x1="392.4864" x2="504.8826" y1="-26.033" style="fill:none; clip-path:url(#clipPath2);" y2="-26.033"
+      /><line x1="504.8826" x2="504.8826" y1="-26.033" style="fill:none; clip-path:url(#clipPath2);" y2="-56.8598"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" 392 -56 386 -45 399 -45"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" 392 -56 386 -45 399 -45"
+      /><path d="M148.5542 -592.2692 A11.6969 11.6969 0 0 0 125.1605 -592.2692" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M27.4707 -592.2692 A6 6 0 0 0 15.4707 -592.2692" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="-110.3024" x2="-110.3024" y1="-668.2905" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="-110.3024" x2="15.4707" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="27.4707" x2="125.1605" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="148.5542" x2="256.3184" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="256.3184" x2="256.3184" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-540.0107"
+      /><line x1="-110.3024" x2="-104.3024" y1="-668.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-657.8982"
+      /><line x1="-110.3024" x2="-116.3024" y1="-668.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-657.8982"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="738.8053" y="-761.4406" width="72.1044" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="738.8053" y="-761.4406" width="72.1044" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(748.8053,-743.4406)"
+    ><path d="M8.0938 0 L6.2812 0 L6.2812 -3.7031 L2.8906 -3.7031 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -5.2031 L6.2812 -5.2031 L6.2812 -8.5625 L8.0938 -8.5625 L8.0938 0 ZM16.0707 -3.2812 Q16.0707 -1.6562 15.2113 -0.7656 Q14.3519 0.125 12.8832 0.125 Q11.9613 0.125 11.2426 -0.2656 Q10.5394 -0.6719 10.1332 -1.4375 Q9.7269 -2.2031 9.7269 -3.2812 Q9.7269 -4.9219 10.5707 -5.7969 Q11.4301 -6.6719 12.9144 -6.6719 Q13.8363 -6.6719 14.5394 -6.2656 Q15.2582 -5.875 15.6644 -5.125 Q16.0707 -4.375 16.0707 -3.2812 ZM11.5394 -3.2812 Q11.5394 -2.3125 11.8519 -1.8125 Q12.1801 -1.3125 12.8988 -1.3125 Q13.6019 -1.3125 13.9144 -1.8125 Q14.2426 -2.3125 14.2426 -3.2812 Q14.2426 -4.2656 13.9144 -4.75 Q13.6019 -5.2344 12.8832 -5.2344 Q12.1801 -5.2344 11.8519 -4.75 Q11.5394 -4.2656 11.5394 -3.2812 ZM20.3112 -1.3125 Q20.6081 -1.3125 20.8737 -1.3594 Q21.155 -1.4219 21.4362 -1.5156 L21.4362 -0.1875 Q21.1394 -0.0625 20.7175 0.0312 Q20.2956 0.125 19.7956 0.125 Q19.2019 0.125 18.7331 -0.0625 Q18.28 -0.2656 17.9987 -0.7344 Q17.7331 -1.2188 17.7331 -2.0469 L17.7331 -5.2031 L16.8894 -5.2031 L16.8894 -5.9688 L17.8737 -6.5625 L18.3894 -7.9375 L19.53 -7.9375 L19.53 -6.5469 L21.3581 -6.5469 L21.3581 -5.2031 L19.53 -5.2031 L19.53 -2.0469 Q19.53 -1.6875 19.7331 -1.5 Q19.9519 -1.3125 20.3112 -1.3125 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1912 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4412 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0037 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1287 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9412 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM31.627 0 L29.8457 0 L29.8457 -9.125 L31.627 -9.125 L31.627 0 ZM38.8964 0 L38.2714 -2.0469 L35.1464 -2.0469 L34.5214 0 L32.5682 0 L35.5995 -8.6094 L37.8182 -8.6094 L40.8495 0 L38.8964 0 ZM37.2089 -5.5625 Q37.1464 -5.7656 37.0526 -6.0781 Q36.9589 -6.3906 36.8651 -6.7031 Q36.7714 -7.0312 36.7089 -7.2656 Q36.6464 -7.0312 36.537 -6.6719 Q36.4432 -6.3281 36.3495 -6 Q36.2714 -5.6875 36.2089 -5.5625 L35.5995 -3.5625 L37.8339 -3.5625 L37.2089 -5.5625 ZM45.4264 -6.6719 Q46.5358 -6.6719 47.2233 -5.8125 Q47.9108 -4.9531 47.9108 -3.2812 Q47.9108 -1.625 47.192 -0.75 Q46.4889 0.125 45.3795 0.125 Q44.6764 0.125 44.2545 -0.125 Q43.8327 -0.3906 43.567 -0.7188 L43.4733 -0.7188 Q43.567 -0.2188 43.567 0.2344 L43.567 2.875 L41.7858 2.875 L41.7858 -6.5469 L43.2389 -6.5469 L43.4889 -5.7031 L43.567 -5.7031 Q43.8327 -6.0938 44.2702 -6.375 Q44.7233 -6.6719 45.4264 -6.6719 ZM44.8639 -5.25 Q44.1608 -5.25 43.8795 -4.8125 Q43.5983 -4.375 43.567 -3.4844 L43.567 -3.2969 Q43.567 -2.3594 43.8483 -1.8438 Q44.1295 -1.3281 44.8795 -1.3281 Q45.4889 -1.3281 45.7858 -1.8438 Q46.0827 -2.3594 46.0827 -3.3125 Q46.0827 -5.25 44.8639 -5.25 ZM50.2881 -9.125 Q50.6787 -9.125 50.96 -8.9375 Q51.2569 -8.75 51.2569 -8.25 Q51.2569 -7.75 50.96 -7.5625 Q50.6787 -7.375 50.2881 -7.375 Q49.8662 -7.375 49.585 -7.5625 Q49.3037 -7.75 49.3037 -8.25 Q49.3037 -8.75 49.585 -8.9375 Q49.8662 -9.125 50.2881 -9.125 ZM51.1631 -6.5469 L51.1631 0 L49.3819 0 L49.3819 -6.5469 L51.1631 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath56);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M484.3464 -20.033 A6 6 0 0 0 484.3464 -32.033" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="484.3464" x2="484.3464" y1="-56.8598" style="fill:none; clip-path:url(#clipPath2);" y2="-32.033"
+      /><line x1="484.3464" x2="484.3464" y1="-20.033" style="fill:none; clip-path:url(#clipPath2);" y2="12.0854"
+      /><line x1="484.3464" x2="71.2908" y1="12.0854" style="fill:none; clip-path:url(#clipPath2);" y2="12.0854"
+      /><line x1="71.2908" x2="71.2908" y1="12.0854" style="fill:none; clip-path:url(#clipPath2);" y2="1.9263"
+      /><line x1="484.3464" x2="490.3464" y1="-56.8598" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-46.4674"
+      /><line x1="484.3464" x2="478.3464" y1="-56.8598" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-46.4674"
+      /><line x1="176.0231" x2="231.6676" y1="-519.5382" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-519.6061"
+      /><line x1="231.6676" x2="221.2826" y1="-519.6061" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-513.5934"
+      /><line x1="231.6676" x2="221.268" y1="-519.6061" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-525.5934"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="2.0883" y="37.5477" width="138.4048" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="2.0883" y="37.5477" width="138.4048" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(32.2908,55.5477)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath57);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(12.0883,71.8918)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 ZM57.4105 -8.5625 Q59.1605 -8.5625 59.9886 -7.9219 Q60.8324 -7.2969 60.8324 -6 Q60.8324 -5.4062 60.598 -4.9688 Q60.3793 -4.5312 60.0043 -4.2188 Q59.6449 -3.9219 59.2386 -3.7344 L61.7543 0 L59.7386 0 L57.6918 -3.2812 L56.723 -3.2812 L56.723 0 L54.9105 0 L54.9105 -8.5625 L57.4105 -8.5625 ZM57.2699 -7.0781 L56.723 -7.0781 L56.723 -4.7656 L57.3168 -4.7656 Q58.2074 -4.7656 58.598 -5.0625 Q58.9886 -5.3594 58.9886 -5.9531 Q58.9886 -6.5625 58.5668 -6.8125 Q58.1605 -7.0781 57.2699 -7.0781 ZM65.3931 -6.6719 Q66.7368 -6.6719 67.5337 -5.8906 Q68.3306 -5.125 68.3306 -3.7031 L68.3306 -2.8281 L64.1118 -2.8281 Q64.1274 -2.0781 64.5493 -1.6406 Q64.9868 -1.2188 65.7368 -1.2188 Q66.3774 -1.2188 66.8931 -1.3438 Q67.4087 -1.4688 67.9556 -1.7344 L67.9556 -0.3438 Q67.4712 -0.1094 66.9399 0 Q66.4087 0.125 65.6587 0.125 Q64.6743 0.125 63.9087 -0.2344 Q63.1587 -0.6094 62.7212 -1.3438 Q62.2993 -2.0938 62.2993 -3.2344 Q62.2993 -4.375 62.6743 -5.1406 Q63.0649 -5.9062 63.7681 -6.2812 Q64.4712 -6.6719 65.3931 -6.6719 ZM65.3931 -5.4062 Q64.8774 -5.4062 64.5337 -5.0625 Q64.2056 -4.7344 64.1431 -4.0156 L66.6431 -4.0156 Q66.6431 -4.625 66.3306 -5.0156 Q66.0337 -5.4062 65.3931 -5.4062 ZM73.4226 -6.6719 Q74.532 -6.6719 75.2195 -5.8125 Q75.907 -4.9531 75.907 -3.2812 Q75.907 -1.625 75.1882 -0.75 Q74.4851 0.125 73.3757 0.125 Q72.6726 0.125 72.2507 -0.125 Q71.8289 -0.3906 71.5632 -0.7188 L71.4695 -0.7188 Q71.5632 -0.2188 71.5632 0.2344 L71.5632 2.875 L69.782 2.875 L69.782 -6.5469 L71.2351 -6.5469 L71.4851 -5.7031 L71.5632 -5.7031 Q71.8289 -6.0938 72.2664 -6.375 Q72.7195 -6.6719 73.4226 -6.6719 ZM72.8601 -5.25 Q72.157 -5.25 71.8757 -4.8125 Q71.5945 -4.375 71.5632 -3.4844 L71.5632 -3.2969 Q71.5632 -2.3594 71.8445 -1.8438 Q72.1257 -1.3281 72.8757 -1.3281 Q73.4851 -1.3281 73.782 -1.8438 Q74.0789 -2.3594 74.0789 -3.3125 Q74.0789 -5.25 72.8601 -5.25 ZM83.3312 -3.2812 Q83.3312 -1.6562 82.4718 -0.7656 Q81.6124 0.125 80.1437 0.125 Q79.2218 0.125 78.5031 -0.2656 Q77.7999 -0.6719 77.3937 -1.4375 Q76.9874 -2.2031 76.9874 -3.2812 Q76.9874 -4.9219 77.8312 -5.7969 Q78.6906 -6.6719 80.1749 -6.6719 Q81.0968 -6.6719 81.7999 -6.2656 Q82.5187 -5.875 82.9249 -5.125 Q83.3312 -4.375 83.3312 -3.2812 ZM78.7999 -3.2812 Q78.7999 -2.3125 79.1124 -1.8125 Q79.4406 -1.3125 80.1593 -1.3125 Q80.8624 -1.3125 81.1749 -1.8125 Q81.5031 -2.3125 81.5031 -3.2812 Q81.5031 -4.2656 81.1749 -4.75 Q80.8624 -5.2344 80.1437 -5.2344 Q79.4406 -5.2344 79.1124 -4.75 Q78.7999 -4.2656 78.7999 -3.2812 ZM89.3842 -1.9375 Q89.3842 -0.9531 88.6811 -0.4062 Q87.978 0.125 86.5874 0.125 Q85.8999 0.125 85.3999 0.0312 Q84.9155 -0.0625 84.4155 -0.2656 L84.4155 -1.7344 Q84.9467 -1.5 85.5561 -1.3438 Q86.1655 -1.1875 86.6342 -1.1875 Q87.1655 -1.1875 87.3842 -1.3438 Q87.6186 -1.5 87.6186 -1.75 Q87.6186 -1.9219 87.5249 -2.0469 Q87.4311 -2.1875 87.1342 -2.3438 Q86.8374 -2.5156 86.1967 -2.7812 Q85.5874 -3.0469 85.1811 -3.2969 Q84.7905 -3.5625 84.603 -3.9219 Q84.4155 -4.2969 84.4155 -4.8438 Q84.4155 -5.7656 85.1186 -6.2188 Q85.8217 -6.6719 86.9936 -6.6719 Q87.6186 -6.6719 88.1655 -6.5469 Q88.7124 -6.4375 89.3061 -6.1562 L88.7592 -4.875 Q88.2905 -5.0781 87.853 -5.2188 Q87.4155 -5.3594 86.978 -5.3594 Q86.1811 -5.3594 86.1811 -4.9219 Q86.1811 -4.7656 86.2749 -4.6406 Q86.3842 -4.5156 86.6811 -4.3594 Q86.978 -4.2188 87.5561 -3.9844 Q88.1186 -3.75 88.5249 -3.5 Q88.9311 -3.2656 89.1499 -2.8906 Q89.3842 -2.5312 89.3842 -1.9375 ZM91.6764 -9.125 Q92.067 -9.125 92.3483 -8.9375 Q92.6451 -8.75 92.6451 -8.25 Q92.6451 -7.75 92.3483 -7.5625 Q92.067 -7.375 91.6764 -7.375 Q91.2545 -7.375 90.9733 -7.5625 Q90.692 -7.75 90.692 -8.25 Q90.692 -8.75 90.9733 -8.9375 Q91.2545 -9.125 91.6764 -9.125 ZM92.5514 -6.5469 L92.5514 0 L90.7701 0 L90.7701 -6.5469 L92.5514 -6.5469 ZM97.1958 -1.3125 Q97.4927 -1.3125 97.7583 -1.3594 Q98.0395 -1.4219 98.3208 -1.5156 L98.3208 -0.1875 Q98.0239 -0.0625 97.602 0.0312 Q97.1802 0.125 96.6802 0.125 Q96.0864 0.125 95.6177 -0.0625 Q95.1645 -0.2656 94.8833 -0.7344 Q94.6177 -1.2188 94.6177 -2.0469 L94.6177 -5.2031 L93.7739 -5.2031 L93.7739 -5.9688 L94.7583 -6.5625 L95.2739 -7.9375 L96.4145 -7.9375 L96.4145 -6.5469 L98.2427 -6.5469 L98.2427 -5.2031 L96.4145 -5.2031 L96.4145 -2.0469 Q96.4145 -1.6875 96.6177 -1.5 Q96.8364 -1.3125 97.1958 -1.3125 ZM105.5913 -3.2812 Q105.5913 -1.6562 104.7319 -0.7656 Q103.8726 0.125 102.4038 0.125 Q101.4819 0.125 100.7632 -0.2656 Q100.0601 -0.6719 99.6538 -1.4375 Q99.2476 -2.2031 99.2476 -3.2812 Q99.2476 -4.9219 100.0913 -5.7969 Q100.9507 -6.6719 102.4351 -6.6719 Q103.3569 -6.6719 104.0601 -6.2656 Q104.7788 -5.875 105.1851 -5.125 Q105.5913 -4.375 105.5913 -3.2812 ZM101.0601 -3.2812 Q101.0601 -2.3125 101.3726 -1.8125 Q101.7007 -1.3125 102.4194 -1.3125 Q103.1226 -1.3125 103.4351 -1.8125 Q103.7632 -2.3125 103.7632 -3.2812 Q103.7632 -4.2656 103.4351 -4.75 Q103.1226 -5.2344 102.4038 -5.2344 Q101.7007 -5.2344 101.3726 -4.75 Q101.0601 -4.2656 101.0601 -3.2812 ZM110.7225 -6.6719 Q110.8631 -6.6719 111.035 -6.6562 Q111.2225 -6.6406 111.3319 -6.625 L111.1913 -4.9375 Q111.1131 -4.9688 110.9413 -4.9844 Q110.785 -5 110.66 -5 Q110.2069 -5 109.785 -4.8438 Q109.3631 -4.6875 109.0975 -4.3125 Q108.8475 -3.9531 108.8475 -3.3438 L108.8475 0 L107.0663 0 L107.0663 -6.5469 L108.4256 -6.5469 L108.6913 -5.4531 L108.7694 -5.4531 Q109.0506 -5.9531 109.5506 -6.3125 Q110.0663 -6.6719 110.7225 -6.6719 ZM111.5768 -6.5469 L113.5299 -6.5469 L114.7643 -2.875 Q114.858 -2.6094 114.9049 -2.3281 Q114.9674 -2.0469 114.983 -1.7344 L115.0143 -1.7344 Q115.0612 -2.0469 115.1237 -2.3281 Q115.1862 -2.6094 115.2799 -2.875 L116.483 -6.5469 L118.4049 -6.5469 L115.6393 0.8438 Q115.2643 1.8594 114.5455 2.3594 Q113.8268 2.875 112.8893 2.875 Q112.5924 2.875 112.3737 2.8438 Q112.1549 2.8125 111.983 2.7812 L111.983 1.375 Q112.1237 1.3906 112.2955 1.4062 Q112.483 1.4375 112.6862 1.4375 Q113.2643 1.4375 113.5924 1.0938 Q113.9205 0.75 114.0768 0.2812 L114.1862 -0.0469 L111.5768 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath58);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M281.1676 -360.5134 A6 6 0 0 0 281.1676 -372.5134" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="504.8826" x2="504.8826" y1="-97.548" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="504.8826" x2="281.1676" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="281.1676" x2="281.1676" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-360.5134"
+      /><line x1="281.1676" x2="281.1676" y1="-372.5134" style="fill:none; clip-path:url(#clipPath2);" y2="-499.3225"
+      /><line x1="504.8826" x2="498.8826" y1="-97.548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.9403"
+      /><line x1="504.8826" x2="510.8826" y1="-97.548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.9403"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="900.6538" y="-369.1038" width="161.805" style="clip-path:url(#clipPath2); stroke:none;" height="57.0323"
+      /><rect x="900.6538" y="-369.1038" width="161.805" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="57.0323"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(954.5563,-334.7597)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.7125 -5.6094 L16.0875 -5.6094 L16.0875 0 L15.0406 0 L15.0406 -5.6094 L13.9156 -5.6094 L13.9156 -6.1094 L15.0406 -6.4688 L15.0406 -6.8438 Q15.0406 -8.0938 15.5875 -8.6406 Q16.1343 -9.1875 17.1187 -9.1875 Q17.5093 -9.1875 17.8218 -9.1094 Q18.15 -9.0469 18.3687 -8.9688 L18.1031 -8.1406 Q17.9 -8.2031 17.65 -8.25 Q17.4 -8.3125 17.1343 -8.3125 Q16.6031 -8.3125 16.3375 -7.9531 Q16.0875 -7.6094 16.0875 -6.8594 L16.0875 -6.4375 L17.7125 -6.4375 L17.7125 -5.6094 ZM19.4186 -8.8438 Q19.653 -8.8438 19.8405 -8.6719 Q20.028 -8.5156 20.028 -8.1719 Q20.028 -7.8438 19.8405 -7.6719 Q19.653 -7.5 19.4186 -7.5 Q19.153 -7.5 18.9655 -7.6719 Q18.7936 -7.8438 18.7936 -8.1719 Q18.7936 -8.5156 18.9655 -8.6719 Q19.153 -8.8438 19.4186 -8.8438 ZM19.9342 -6.4375 L19.9342 0 L18.8717 0 L18.8717 -6.4375 L19.9342 -6.4375 ZM23.0303 0 L21.9678 0 L21.9678 -9.125 L23.0303 -9.125 L23.0303 0 ZM27.22 -0.75 Q27.4544 -0.75 27.7044 -0.7812 Q27.9544 -0.8281 28.1107 -0.875 L28.1107 -0.0781 Q27.9544 0.0156 27.6419 0.0625 Q27.3294 0.125 27.0325 0.125 Q26.5325 0.125 26.095 -0.0469 Q25.6732 -0.2344 25.4075 -0.6562 Q25.1575 -1.0938 25.1575 -1.875 L25.1575 -5.6094 L24.2357 -5.6094 L24.2357 -6.125 L25.1575 -6.5469 L25.5794 -7.9062 L26.2044 -7.9062 L26.2044 -6.4375 L28.0638 -6.4375 L28.0638 -5.6094 L26.2044 -5.6094 L26.2044 -1.8906 Q26.2044 -1.3125 26.4857 -1.0312 Q26.7669 -0.75 27.22 -0.75 ZM31.8802 -6.5469 Q32.7083 -6.5469 33.3021 -6.1875 Q33.8958 -5.8281 34.2083 -5.1719 Q34.5365 -4.5312 34.5365 -3.6406 L34.5365 -3.0156 L30.1302 -3.0156 Q30.1615 -1.9219 30.6927 -1.3438 Q31.224 -0.7812 32.1771 -0.7812 Q32.8021 -0.7812 33.2708 -0.8906 Q33.7396 -1.0156 34.2552 -1.2188 L34.2552 -0.2969 Q33.7552 -0.0781 33.2708 0.0156 Q32.8021 0.125 32.1302 0.125 Q31.224 0.125 30.5208 -0.25 Q29.8177 -0.625 29.4271 -1.3594 Q29.0365 -2.0938 29.0365 -3.1719 Q29.0365 -4.2188 29.3958 -4.9688 Q29.7552 -5.7344 30.3958 -6.1406 Q31.0365 -6.5469 31.8802 -6.5469 ZM31.8646 -5.6875 Q31.1146 -5.6875 30.6771 -5.2031 Q30.2396 -4.7188 30.1615 -3.8594 L33.4271 -3.8594 Q33.4271 -4.6719 33.0521 -5.1719 Q32.6771 -5.6875 31.8646 -5.6875 ZM39.1639 -6.5469 Q39.3514 -6.5469 39.5545 -6.5312 Q39.7733 -6.5156 39.9295 -6.4844 L39.7889 -5.5156 Q39.6326 -5.5469 39.4451 -5.5625 Q39.2576 -5.5938 39.1014 -5.5938 Q38.6014 -5.5938 38.1639 -5.3125 Q37.742 -5.0469 37.4764 -4.5625 Q37.2264 -4.0781 37.2264 -3.4375 L37.2264 0 L36.1639 0 L36.1639 -6.4375 L37.0389 -6.4375 L37.1483 -5.25 L37.1951 -5.25 Q37.5076 -5.7812 37.992 -6.1562 Q38.492 -6.5469 39.1639 -6.5469 ZM40.698 -2.3281 L45.2293 -4.2188 L40.698 -6.3594 L40.698 -7.2969 L46.3543 -4.4688 L46.3543 -3.875 L40.698 -1.3906 L40.698 -2.3281 ZM47.5621 -2.3281 L52.0933 -4.2188 L47.5621 -6.3594 L47.5621 -7.2969 L53.2183 -4.4688 L53.2183 -3.875 L47.5621 -1.3906 L47.5621 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath59);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(935.422,-351.1038)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath60);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(910.6538,-318.4156)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM9.7845 -2.2969 Q9.7377 -2.5 9.6439 -2.8906 Q9.5658 -3.2969 9.4564 -3.75 Q9.347 -4.2188 9.2533 -4.6094 Q9.1595 -5 9.1127 -5.1875 L9.0658 -5.1875 Q9.0345 -5 8.9408 -4.6094 Q8.8627 -4.2188 8.7533 -3.75 Q8.6439 -3.2969 8.5345 -2.8906 Q8.4408 -2.4844 8.3939 -2.2656 L7.8783 0 L5.9564 0 L4.097 -6.5469 L5.8627 -6.5469 L6.6283 -3.6406 Q6.7064 -3.3438 6.7689 -2.9219 Q6.847 -2.5156 6.8939 -2.125 Q6.9564 -1.7344 6.9877 -1.5 L7.0345 -1.5 Q7.0502 -1.6719 7.0814 -1.9531 Q7.1127 -2.2344 7.1595 -2.5312 Q7.222 -2.8281 7.2689 -3.0781 Q7.3158 -3.3281 7.3314 -3.4062 L8.1283 -6.5469 L10.097 -6.5469 L10.8783 -3.4062 Q10.9252 -3.2344 10.9877 -2.8594 Q11.0502 -2.5 11.097 -2.1094 Q11.1595 -1.7344 11.1595 -1.5 L11.2064 -1.5 Q11.2377 -1.7031 11.2845 -2.0938 Q11.347 -2.4844 11.4252 -2.9062 Q11.5033 -3.3438 11.597 -3.6406 L12.3783 -6.5469 L14.1283 -6.5469 L12.2377 0 L10.3002 0 L9.7845 -2.2969 ZM17.9472 -1.3125 Q18.2441 -1.3125 18.5097 -1.3594 Q18.791 -1.4219 19.0722 -1.5156 L19.0722 -0.1875 Q18.7754 -0.0625 18.3535 0.0312 Q17.9316 0.125 17.4316 0.125 Q16.8379 0.125 16.3691 -0.0625 Q15.916 -0.2656 15.6347 -0.7344 Q15.3691 -1.2188 15.3691 -2.0469 L15.3691 -5.2031 L14.5254 -5.2031 L14.5254 -5.9688 L15.5097 -6.5625 L16.0254 -7.9375 L17.166 -7.9375 L17.166 -6.5469 L18.9941 -6.5469 L18.9941 -5.2031 L17.166 -5.2031 L17.166 -2.0469 Q17.166 -1.6875 17.3691 -1.5 Q17.5879 -1.3125 17.9472 -1.3125 ZM25.7803 0 L25.1553 -2.0469 L22.0303 -2.0469 L21.4053 0 L19.4521 0 L22.4834 -8.6094 L24.7021 -8.6094 L27.7334 0 L25.7803 0 ZM24.0928 -5.5625 Q24.0303 -5.7656 23.9365 -6.0781 Q23.8428 -6.3906 23.749 -6.7031 Q23.6553 -7.0312 23.5928 -7.2656 Q23.5303 -7.0312 23.4209 -6.6719 Q23.3271 -6.3281 23.2334 -6 Q23.1553 -5.6875 23.0928 -5.5625 L22.4834 -3.5625 L24.7178 -3.5625 L24.0928 -5.5625 ZM34.6853 -6.5469 L34.6853 0 L33.3103 0 L33.076 -0.8438 L32.9822 -0.8438 Q32.6697 -0.3438 32.1228 -0.1094 Q31.576 0.125 30.9666 0.125 Q29.9041 0.125 29.2635 -0.4375 Q28.6385 -1.0156 28.6385 -2.2812 L28.6385 -6.5469 L30.4197 -6.5469 L30.4197 -2.7188 Q30.4197 -2.0312 30.6697 -1.6719 Q30.9197 -1.3125 31.4822 -1.3125 Q32.2947 -1.3125 32.5916 -1.8594 Q32.8885 -2.4219 32.8885 -3.4688 L32.8885 -6.5469 L34.6853 -6.5469 ZM39.3194 -1.3125 Q39.6163 -1.3125 39.8819 -1.3594 Q40.1631 -1.4219 40.4444 -1.5156 L40.4444 -0.1875 Q40.1475 -0.0625 39.7256 0.0312 Q39.3038 0.125 38.8038 0.125 Q38.21 0.125 37.7413 -0.0625 Q37.2881 -0.2656 37.0069 -0.7344 Q36.7413 -1.2188 36.7413 -2.0469 L36.7413 -5.2031 L35.8975 -5.2031 L35.8975 -5.9688 L36.8819 -6.5625 L37.3975 -7.9375 L38.5381 -7.9375 L38.5381 -6.5469 L40.3663 -6.5469 L40.3663 -5.2031 L38.5381 -5.2031 L38.5381 -2.0469 Q38.5381 -1.6875 38.7413 -1.5 Q38.96 -1.3125 39.3194 -1.3125 ZM43.543 -7.2656 Q43.543 -6.7812 43.5118 -6.3281 Q43.4805 -5.8906 43.4649 -5.7188 L43.5587 -5.7188 Q43.8712 -6.2188 44.3555 -6.4375 Q44.8555 -6.6719 45.4493 -6.6719 Q46.5274 -6.6719 47.168 -6.0938 Q47.8087 -5.5312 47.8087 -4.2656 L47.8087 0 L46.0274 0 L46.0274 -3.8281 Q46.0274 -5.25 44.9649 -5.25 Q44.168 -5.25 43.8555 -4.6875 Q43.543 -4.125 43.543 -3.0781 L43.543 0 L41.7618 0 L41.7618 -9.125 L43.543 -9.125 L43.543 -7.2656 ZM52.349 -6.6719 Q53.6927 -6.6719 54.4896 -5.8906 Q55.2865 -5.125 55.2865 -3.7031 L55.2865 -2.8281 L51.0677 -2.8281 Q51.0833 -2.0781 51.5052 -1.6406 Q51.9427 -1.2188 52.6927 -1.2188 Q53.3333 -1.2188 53.849 -1.3438 Q54.3646 -1.4688 54.9115 -1.7344 L54.9115 -0.3438 Q54.4271 -0.1094 53.8958 0 Q53.3646 0.125 52.6146 0.125 Q51.6302 0.125 50.8646 -0.2344 Q50.1146 -0.6094 49.6771 -1.3438 Q49.2552 -2.0938 49.2552 -3.2344 Q49.2552 -4.375 49.6302 -5.1406 Q50.0208 -5.9062 50.724 -6.2812 Q51.4271 -6.6719 52.349 -6.6719 ZM52.349 -5.4062 Q51.8333 -5.4062 51.4896 -5.0625 Q51.1615 -4.7344 51.099 -4.0156 L53.599 -4.0156 Q53.599 -4.625 53.2865 -5.0156 Q52.9896 -5.4062 52.349 -5.4062 ZM60.4566 -6.6719 Q61.5191 -6.6719 62.1441 -6.0938 Q62.7848 -5.5312 62.7848 -4.2656 L62.7848 0 L61.0035 0 L61.0035 -3.8281 Q61.0035 -4.5312 60.7379 -4.8906 Q60.4879 -5.25 59.941 -5.25 Q59.1285 -5.25 58.816 -4.6875 Q58.5191 -4.125 58.5191 -3.0781 L58.5191 0 L56.7379 0 L56.7379 -6.5469 L58.0973 -6.5469 L58.3473 -5.7188 L58.441 -5.7188 Q58.7535 -6.2188 59.3004 -6.4375 Q59.8473 -6.6719 60.4566 -6.6719 ZM67.3876 -1.3125 Q67.6844 -1.3125 67.9501 -1.3594 Q68.2313 -1.4219 68.5126 -1.5156 L68.5126 -0.1875 Q68.2157 -0.0625 67.7938 0.0312 Q67.3719 0.125 66.8719 0.125 Q66.2782 0.125 65.8094 -0.0625 Q65.3563 -0.2656 65.0751 -0.7344 Q64.8094 -1.2188 64.8094 -2.0469 L64.8094 -5.2031 L63.9657 -5.2031 L63.9657 -5.9688 L64.9501 -6.5625 L65.4657 -7.9375 L66.6063 -7.9375 L66.6063 -6.5469 L68.4344 -6.5469 L68.4344 -5.2031 L66.6063 -5.2031 L66.6063 -2.0469 Q66.6063 -1.6875 66.8094 -1.5 Q67.0282 -1.3125 67.3876 -1.3125 ZM70.7362 -9.125 Q71.1269 -9.125 71.4081 -8.9375 Q71.705 -8.75 71.705 -8.25 Q71.705 -7.75 71.4081 -7.5625 Q71.1269 -7.375 70.7362 -7.375 Q70.3144 -7.375 70.0331 -7.5625 Q69.7519 -7.75 69.7519 -8.25 Q69.7519 -8.75 70.0331 -8.9375 Q70.3144 -9.125 70.7362 -9.125 ZM71.6112 -6.5469 L71.6112 0 L69.83 0 L69.83 -6.5469 L71.6112 -6.5469 ZM76.1463 0.125 Q74.6931 0.125 73.8963 -0.6875 Q73.0994 -1.5 73.0994 -3.2344 Q73.0994 -4.4375 73.5056 -5.1875 Q73.9119 -5.9531 74.6306 -6.3125 Q75.365 -6.6719 76.3025 -6.6719 Q76.9744 -6.6719 77.4744 -6.5312 Q77.9744 -6.4062 78.3494 -6.2344 L77.8181 -4.8438 Q77.3963 -5.0156 77.0213 -5.125 Q76.6619 -5.2344 76.3025 -5.2344 Q74.9119 -5.2344 74.9119 -3.25 Q74.9119 -2.2656 75.2713 -1.7969 Q75.6463 -1.3281 76.3025 -1.3281 Q76.865 -1.3281 77.3025 -1.4688 Q77.74 -1.625 78.1463 -1.8906 L78.1463 -0.375 Q77.74 -0.1094 77.2869 0 Q76.8338 0.125 76.1463 0.125 ZM82.3456 -6.6875 Q83.6581 -6.6875 84.3612 -6.1094 Q85.0643 -5.5469 85.0643 -4.375 L85.0643 0 L83.8143 0 L83.4706 -0.8906 L83.4237 -0.8906 Q83.0018 -0.3594 82.5331 -0.1094 Q82.0643 0.125 81.2518 0.125 Q80.3768 0.125 79.7987 -0.3906 Q79.2206 -0.9062 79.2206 -1.9531 Q79.2206 -3 79.9549 -3.5 Q80.6893 -4 82.1581 -4.0469 L83.2987 -4.0781 L83.2987 -4.375 Q83.2987 -4.8906 83.0174 -5.125 Q82.7518 -5.3594 82.2674 -5.3594 Q81.7987 -5.3594 81.3299 -5.2188 Q80.8768 -5.0938 80.4237 -4.8906 L79.8299 -6.0938 Q80.3612 -6.375 81.0018 -6.5312 Q81.6424 -6.6875 82.3456 -6.6875 ZM82.5956 -3.0156 Q81.7362 -2.9844 81.3924 -2.6875 Q81.0643 -2.4062 81.0643 -1.9375 Q81.0643 -1.5312 81.2987 -1.3594 Q81.5331 -1.1875 81.9237 -1.1875 Q82.5018 -1.1875 82.8924 -1.5312 Q83.2987 -1.875 83.2987 -2.5 L83.2987 -3.0312 L82.5956 -3.0156 ZM89.6717 -1.3125 Q89.9686 -1.3125 90.2342 -1.3594 Q90.5155 -1.4219 90.7967 -1.5156 L90.7967 -0.1875 Q90.4998 -0.0625 90.078 0.0312 Q89.6561 0.125 89.1561 0.125 Q88.5623 0.125 88.0936 -0.0625 Q87.6405 -0.2656 87.3592 -0.7344 Q87.0936 -1.2188 87.0936 -2.0469 L87.0936 -5.2031 L86.2498 -5.2031 L86.2498 -5.9688 L87.2342 -6.5625 L87.7498 -7.9375 L88.8905 -7.9375 L88.8905 -6.5469 L90.7186 -6.5469 L90.7186 -5.2031 L88.8905 -5.2031 L88.8905 -2.0469 Q88.8905 -1.6875 89.0936 -1.5 Q89.3123 -1.3125 89.6717 -1.3125 ZM93.0204 -9.125 Q93.411 -9.125 93.6923 -8.9375 Q93.9891 -8.75 93.9891 -8.25 Q93.9891 -7.75 93.6923 -7.5625 Q93.411 -7.375 93.0204 -7.375 Q92.5985 -7.375 92.3173 -7.5625 Q92.036 -7.75 92.036 -8.25 Q92.036 -8.75 92.3173 -8.9375 Q92.5985 -9.125 93.0204 -9.125 ZM93.8954 -6.5469 L93.8954 0 L92.1141 0 L92.1141 -6.5469 L93.8954 -6.5469 ZM101.7273 -3.2812 Q101.7273 -1.6562 100.8679 -0.7656 Q100.0085 0.125 98.5398 0.125 Q97.6179 0.125 96.8992 -0.2656 Q96.196 -0.6719 95.7898 -1.4375 Q95.3835 -2.2031 95.3835 -3.2812 Q95.3835 -4.9219 96.2273 -5.7969 Q97.0867 -6.6719 98.571 -6.6719 Q99.4929 -6.6719 100.196 -6.2656 Q100.9148 -5.875 101.321 -5.125 Q101.7273 -4.375 101.7273 -3.2812 ZM97.196 -3.2812 Q97.196 -2.3125 97.5085 -1.8125 Q97.8367 -1.3125 98.5554 -1.3125 Q99.2585 -1.3125 99.571 -1.8125 Q99.8992 -2.3125 99.8992 -3.2812 Q99.8992 -4.2656 99.571 -4.75 Q99.2585 -5.2344 98.5398 -5.2344 Q97.8367 -5.2344 97.5085 -4.75 Q97.196 -4.2656 97.196 -3.2812 ZM106.921 -6.6719 Q107.9835 -6.6719 108.6085 -6.0938 Q109.2491 -5.5312 109.2491 -4.2656 L109.2491 0 L107.4678 0 L107.4678 -3.8281 Q107.4678 -4.5312 107.2022 -4.8906 Q106.9522 -5.25 106.4053 -5.25 Q105.5928 -5.25 105.2803 -4.6875 Q104.9835 -4.125 104.9835 -3.0781 L104.9835 0 L103.2022 0 L103.2022 -6.5469 L104.5616 -6.5469 L104.8116 -5.7188 L104.9053 -5.7188 Q105.2178 -6.2188 105.7647 -6.4375 Q106.3116 -6.6719 106.921 -6.6719 ZM113.0238 0 L111.2269 0 L111.2269 -8.5625 L116.1331 -8.5625 L116.1331 -7.0781 L113.0238 -7.0781 L113.0238 -4.875 L115.9144 -4.875 L115.9144 -3.3906 L113.0238 -3.3906 L113.0238 0 ZM118.5806 -9.125 Q118.9712 -9.125 119.2524 -8.9375 Q119.5493 -8.75 119.5493 -8.25 Q119.5493 -7.75 119.2524 -7.5625 Q118.9712 -7.375 118.5806 -7.375 Q118.1587 -7.375 117.8774 -7.5625 Q117.5962 -7.75 117.5962 -8.25 Q117.5962 -8.75 117.8774 -8.9375 Q118.1587 -9.125 118.5806 -9.125 ZM119.4556 -6.5469 L119.4556 0 L117.6743 0 L117.6743 -6.5469 L119.4556 -6.5469 ZM123.1156 0 L121.3343 0 L121.3343 -9.125 L123.1156 -9.125 L123.1156 0 ZM127.76 -1.3125 Q128.0568 -1.3125 128.3225 -1.3594 Q128.6037 -1.4219 128.885 -1.5156 L128.885 -0.1875 Q128.5881 -0.0625 128.1662 0.0312 Q127.7443 0.125 127.2443 0.125 Q126.6506 0.125 126.1818 -0.0625 Q125.7287 -0.2656 125.4475 -0.7344 Q125.1818 -1.2188 125.1818 -2.0469 L125.1818 -5.2031 L124.3381 -5.2031 L124.3381 -5.9688 L125.3225 -6.5625 L125.8381 -7.9375 L126.9787 -7.9375 L126.9787 -6.5469 L128.8068 -6.5469 L128.8068 -5.2031 L126.9787 -5.2031 L126.9787 -2.0469 Q126.9787 -1.6875 127.1818 -1.5 Q127.4006 -1.3125 127.76 -1.3125 ZM132.9055 -6.6719 Q134.2493 -6.6719 135.0461 -5.8906 Q135.843 -5.125 135.843 -3.7031 L135.843 -2.8281 L131.6243 -2.8281 Q131.6399 -2.0781 132.0618 -1.6406 Q132.4993 -1.2188 133.2493 -1.2188 Q133.8899 -1.2188 134.4055 -1.3438 Q134.9211 -1.4688 135.468 -1.7344 L135.468 -0.3438 Q134.9836 -0.1094 134.4524 0 Q133.9211 0.125 133.1711 0.125 Q132.1868 0.125 131.4211 -0.2344 Q130.6711 -0.6094 130.2336 -1.3438 Q129.8118 -2.0938 129.8118 -3.2344 Q129.8118 -4.375 130.1868 -5.1406 Q130.5774 -5.9062 131.2805 -6.2812 Q131.9836 -6.6719 132.9055 -6.6719 ZM132.9055 -5.4062 Q132.3899 -5.4062 132.0461 -5.0625 Q131.718 -4.7344 131.6555 -4.0156 L134.1555 -4.0156 Q134.1555 -4.625 133.843 -5.0156 Q133.5461 -5.4062 132.9055 -5.4062 ZM140.9507 -6.6719 Q141.0913 -6.6719 141.2632 -6.6562 Q141.4507 -6.6406 141.5601 -6.625 L141.4194 -4.9375 Q141.3413 -4.9688 141.1694 -4.9844 Q141.0132 -5 140.8882 -5 Q140.4351 -5 140.0132 -4.8438 Q139.5913 -4.6875 139.3257 -4.3125 Q139.0757 -3.9531 139.0757 -3.3438 L139.0757 0 L137.2944 0 L137.2944 -6.5469 L138.6538 -6.5469 L138.9194 -5.4531 L138.9976 -5.4531 Q139.2788 -5.9531 139.7788 -6.3125 Q140.2944 -6.6719 140.9507 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath61);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="638.526" x2="638.526" y1="-56.5951" style="fill:none; clip-path:url(#clipPath2);" y2="64.7831"
+      /><line x1="638.526" x2="140.4932" y1="64.7831" style="fill:none; clip-path:url(#clipPath2);" y2="64.7831"
+      /><line x1="638.526" x2="644.526" y1="-56.5951" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-46.2028"
+      /><line x1="638.526" x2="632.526" y1="-56.5951" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-46.2028"
+      /><path d="M269.8536 -70.7649 A6 6 0 0 0 269.8536 -82.7649" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><path d="M269.8536 -294.9465 A6 6 0 0 0 269.8536 -306.9465" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><path d="M269.8536 -360.5134 A6 6 0 0 0 269.8536 -372.5134" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><line x1="269.8536" x2="269.8536" y1="-499.3225" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-372.5134"
+      /><line x1="269.8536" x2="269.8536" y1="-360.5134" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-306.9465"
+      /><line x1="269.8536" x2="269.8536" y1="-294.9465" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-82.7649"
+      /><line x1="269.8536" x2="269.8536" y1="-70.7649" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-23.1201"
+      /><line x1="269.8536" x2="131.2908" y1="-23.1201" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-23.1201"
+      /><line x1="131.2908" x2="141.6831" y1="-23.1201" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-29.1201"
+      /><line x1="131.2908" x2="141.6831" y1="-23.1201" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-17.1201"
+      /><path d="M780.5626 -340.5876 A6 6 0 0 0 768.5626 -340.5876" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="761.0704" x2="761.0704" y1="-109.4144" style="fill:none; clip-path:url(#clipPath2);" y2="-340.5876"
+      /><line x1="761.0704" x2="768.5626" y1="-340.5876" style="fill:none; clip-path:url(#clipPath2);" y2="-340.5876"
+      /><line x1="780.5626" x2="900.6538" y1="-340.5876" style="fill:none; clip-path:url(#clipPath2);" y2="-340.5876"
+      /><line x1="761.0704" x2="755.0704" y1="-109.4144" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-119.8067"
+      /><line x1="761.0704" x2="767.0704" y1="-109.4144" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-119.8067"
+      /><path d="M296.4085 -647.4835 A6 6 0 0 0 296.4085 -659.4835" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><line x1="296.4085" x2="296.4085" y1="-540.0107" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-647.4835"
+      /><line x1="296.4085" x2="296.4085" y1="-659.4835" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-706.5906"
+      /><line x1="296.4085" x2="580.1079" y1="-706.5906" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-706.5906"
+      /><line x1="580.1079" x2="580.1079" y1="-706.5906" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-804.2861"
+      /><line x1="580.1079" x2="730.3392" y1="-804.2861" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-804.2861"
+      /><line x1="730.3392" x2="719.9469" y1="-804.2861" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-798.2861"
+      /><line x1="730.3392" x2="719.9469" y1="-804.2861" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-810.2861"
+      /><line x1="1062.4588" x2="1082.8251" y1="-340.5876" style="fill:none; clip-path:url(#clipPath2);" y2="-340.5876"
+      /><line x1="1082.8251" x2="1082.8251" y1="-340.5876" style="fill:none; clip-path:url(#clipPath2);" y2="-542.4128"
+      /><line x1="1082.8251" x2="1043.4086" y1="-542.4128" style="fill:none; clip-path:url(#clipPath2);" y2="-542.4128"
+      /><line x1="1062.4588" x2="1072.8511" y1="-340.5876" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-346.5876"
+      /><line x1="1062.4588" x2="1072.8511" y1="-340.5876" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-334.5876"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="910.0563" y="-424.3847" width="143" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="910.0563" y="-424.3847" width="143" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(929.7039,-406.3847)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM30.8576 -6.5469 Q32.0138 -6.5469 32.5919 -5.9844 Q33.1857 -5.4375 33.1857 -4.1875 L33.1857 0 L32.1544 0 L32.1544 -4.1094 Q32.1544 -5.6562 30.7013 -5.6562 Q29.6388 -5.6562 29.2326 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1544 -6.0625 29.7013 -6.2969 Q30.2482 -6.5469 30.8576 -6.5469 ZM38.1486 -5.6094 L36.5236 -5.6094 L36.5236 0 L35.4767 0 L35.4767 -5.6094 L34.3517 -5.6094 L34.3517 -6.1094 L35.4767 -6.4688 L35.4767 -6.8438 Q35.4767 -8.0938 36.0236 -8.6406 Q36.5705 -9.1875 37.5549 -9.1875 Q37.9455 -9.1875 38.258 -9.1094 Q38.5861 -9.0469 38.8049 -8.9688 L38.5392 -8.1406 Q38.3361 -8.2031 38.0861 -8.25 Q37.8361 -8.3125 37.5705 -8.3125 Q37.0392 -8.3125 36.7736 -7.9531 Q36.5236 -7.6094 36.5236 -6.8594 L36.5236 -6.4375 L38.1486 -6.4375 L38.1486 -5.6094 ZM39.8548 -8.8438 Q40.0891 -8.8438 40.2766 -8.6719 Q40.4641 -8.5156 40.4641 -8.1719 Q40.4641 -7.8438 40.2766 -7.6719 Q40.0891 -7.5 39.8548 -7.5 Q39.5891 -7.5 39.4016 -7.6719 Q39.2298 -7.8438 39.2298 -8.1719 Q39.2298 -8.5156 39.4016 -8.6719 Q39.5891 -8.8438 39.8548 -8.8438 ZM40.3704 -6.4375 L40.3704 0 L39.3079 0 L39.3079 -6.4375 L40.3704 -6.4375 ZM44.6852 -6.5469 Q45.3258 -6.5469 45.8258 -6.3125 Q46.3414 -6.0781 46.7008 -5.5781 L46.7633 -5.5781 L46.9039 -6.4375 L47.7477 -6.4375 L47.7477 0.1094 Q47.7477 1.4844 47.0445 2.1719 Q46.3414 2.875 44.8727 2.875 Q43.4508 2.875 42.5445 2.4688 L42.5445 1.5 Q43.4977 2 44.9352 2 Q45.7633 2 46.232 1.5156 Q46.7008 1.0312 46.7008 0.1875 L46.7008 -0.0625 Q46.7008 -0.2031 46.7164 -0.4688 Q46.732 -0.75 46.7477 -0.8594 L46.6852 -0.8594 Q46.0445 0.125 44.7008 0.125 Q43.4508 0.125 42.7477 -0.75 Q42.0445 -1.625 42.0445 -3.2031 Q42.0445 -4.7344 42.7477 -5.6406 Q43.4508 -6.5469 44.6852 -6.5469 ZM44.8258 -5.6562 Q44.0289 -5.6562 43.5758 -5.0156 Q43.1383 -4.375 43.1383 -3.1875 Q43.1383 -2 43.5758 -1.375 Q44.0133 -0.75 44.857 -0.75 Q45.8258 -0.75 46.2633 -1.2656 Q46.7164 -1.7812 46.7164 -2.9531 L46.7164 -3.2031 Q46.7164 -4.5312 46.2633 -5.0938 Q45.8102 -5.6562 44.8258 -5.6562 ZM55.159 -6.4375 L55.159 0 L54.2996 0 L54.1433 -0.8594 L54.0965 -0.8594 Q53.784 -0.3438 53.2215 -0.1094 Q52.6746 0.125 52.0496 0.125 Q50.8933 0.125 50.2996 -0.4375 Q49.7215 -1 49.7215 -2.2188 L49.7215 -6.4375 L50.784 -6.4375 L50.784 -2.2969 Q50.784 -0.75 52.2058 -0.75 Q53.284 -0.75 53.6902 -1.3438 Q54.1121 -1.9531 54.1121 -3.0781 L54.1121 -6.4375 L55.159 -6.4375 ZM60.2 -6.5469 Q60.3875 -6.5469 60.5906 -6.5312 Q60.8094 -6.5156 60.9656 -6.4844 L60.825 -5.5156 Q60.6688 -5.5469 60.4813 -5.5625 Q60.2938 -5.5938 60.1375 -5.5938 Q59.6375 -5.5938 59.2 -5.3125 Q58.7781 -5.0469 58.5125 -4.5625 Q58.2625 -4.0781 58.2625 -3.4375 L58.2625 0 L57.2 0 L57.2 -6.4375 L58.075 -6.4375 L58.1844 -5.25 L58.2313 -5.25 Q58.5438 -5.7812 59.0281 -6.1562 Q59.5281 -6.5469 60.2 -6.5469 ZM64.5936 -6.5469 Q65.7654 -6.5469 66.3279 -6.0312 Q66.9061 -5.5156 66.9061 -4.375 L66.9061 0 L66.1248 0 L65.9217 -0.9062 L65.8748 -0.9062 Q65.4529 -0.3906 64.9842 -0.125 Q64.5311 0.125 63.7186 0.125 Q62.8436 0.125 62.2654 -0.3281 Q61.6873 -0.7969 61.6873 -1.7812 Q61.6873 -2.75 62.4373 -3.2656 Q63.2029 -3.7969 64.7811 -3.8438 L65.8748 -3.875 L65.8748 -4.2656 Q65.8748 -5.0625 65.5154 -5.375 Q65.1717 -5.6875 64.5311 -5.6875 Q64.0311 -5.6875 63.5779 -5.5312 Q63.1248 -5.3906 62.7186 -5.2031 L62.4061 -5.9844 Q62.8279 -6.2188 63.3904 -6.375 Q63.9686 -6.5469 64.5936 -6.5469 ZM64.9061 -3.1094 Q63.7029 -3.0625 63.2342 -2.7188 Q62.7811 -2.3906 62.7811 -1.7812 Q62.7811 -1.2344 63.1092 -0.9844 Q63.4373 -0.7344 63.9529 -0.7344 Q64.7811 -0.7344 65.3123 -1.1719 Q65.8592 -1.625 65.8592 -2.5625 L65.8592 -3.1406 L64.9061 -3.1094 ZM71.0443 -0.75 Q71.2787 -0.75 71.5287 -0.7812 Q71.7787 -0.8281 71.935 -0.875 L71.935 -0.0781 Q71.7787 0.0156 71.4662 0.0625 Q71.1537 0.125 70.8568 0.125 Q70.3568 0.125 69.9193 -0.0469 Q69.4975 -0.2344 69.2318 -0.6562 Q68.9818 -1.0938 68.9818 -1.875 L68.9818 -5.6094 L68.06 -5.6094 L68.06 -6.125 L68.9818 -6.5469 L69.4037 -7.9062 L70.0287 -7.9062 L70.0287 -6.4375 L71.8881 -6.4375 L71.8881 -5.6094 L70.0287 -5.6094 L70.0287 -1.8906 Q70.0287 -1.3125 70.31 -1.0312 Q70.5912 -0.75 71.0443 -0.75 ZM73.767 -8.8438 Q74.0014 -8.8438 74.1889 -8.6719 Q74.3764 -8.5156 74.3764 -8.1719 Q74.3764 -7.8438 74.1889 -7.6719 Q74.0014 -7.5 73.767 -7.5 Q73.5014 -7.5 73.3139 -7.6719 Q73.142 -7.8438 73.142 -8.1719 Q73.142 -8.5156 73.3139 -8.6719 Q73.5014 -8.8438 73.767 -8.8438 ZM74.2826 -6.4375 L74.2826 0 L73.2201 0 L73.2201 -6.4375 L74.2826 -6.4375 ZM81.9099 -3.2344 Q81.9099 -1.625 81.0974 -0.75 Q80.2849 0.125 78.9099 0.125 Q78.0661 0.125 77.3943 -0.2656 Q76.7224 -0.6562 76.3318 -1.4062 Q75.9568 -2.1562 75.9568 -3.2344 Q75.9568 -4.8281 76.7536 -5.6875 Q77.5661 -6.5469 78.9411 -6.5469 Q79.8318 -6.5469 80.488 -6.1562 Q81.1599 -5.7656 81.5349 -5.0312 Q81.9099 -4.2969 81.9099 -3.2344 ZM77.0505 -3.2344 Q77.0505 -2.0938 77.5036 -1.4219 Q77.9568 -0.75 78.9411 -0.75 Q79.9099 -0.75 80.363 -1.4219 Q80.8161 -2.0938 80.8161 -3.2344 Q80.8161 -4.375 80.363 -5.0156 Q79.9099 -5.6562 78.9255 -5.6562 Q77.9411 -5.6562 77.488 -5.0156 Q77.0505 -4.375 77.0505 -3.2344 ZM86.67 -6.5469 Q87.8262 -6.5469 88.4043 -5.9844 Q88.9981 -5.4375 88.9981 -4.1875 L88.9981 0 L87.9668 0 L87.9668 -4.1094 Q87.9668 -5.6562 86.5137 -5.6562 Q85.4512 -5.6562 85.045 -5.0625 Q84.6387 -4.4688 84.6387 -3.3438 L84.6387 0 L83.5762 0 L83.5762 -6.4375 L84.4356 -6.4375 L84.5918 -5.5625 L84.6543 -5.5625 Q84.9668 -6.0625 85.5137 -6.2969 Q86.0606 -6.5469 86.67 -6.5469 ZM90.5704 -2.3281 L95.1016 -4.2188 L90.5704 -6.3594 L90.5704 -7.2969 L96.2266 -4.4688 L96.2266 -3.875 L90.5704 -1.3906 L90.5704 -2.3281 ZM97.4344 -2.3281 L101.9657 -4.2188 L97.4344 -6.3594 L97.4344 -7.2969 L103.0907 -4.4688 L103.0907 -3.875 L97.4344 -1.3906 L97.4344 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath62);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(920.0563,-390.0406)"
+    ><path d="M3.5781 -8.5625 Q5.3281 -8.5625 6.1562 -7.9219 Q7 -7.2969 7 -6 Q7 -5.4062 6.7656 -4.9688 Q6.5469 -4.5312 6.1719 -4.2188 Q5.8125 -3.9219 5.4062 -3.7344 L7.9219 0 L5.9062 0 L3.8594 -3.2812 L2.8906 -3.2812 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L3.5781 -8.5625 ZM3.4375 -7.0781 L2.8906 -7.0781 L2.8906 -4.7656 L3.4844 -4.7656 Q4.375 -4.7656 4.7656 -5.0625 Q5.1562 -5.3594 5.1562 -5.9531 Q5.1562 -6.5625 4.7344 -6.8125 Q4.3281 -7.0781 3.4375 -7.0781 ZM11.5607 -6.6719 Q12.9044 -6.6719 13.7013 -5.8906 Q14.4982 -5.125 14.4982 -3.7031 L14.4982 -2.8281 L10.2794 -2.8281 Q10.2951 -2.0781 10.7169 -1.6406 Q11.1544 -1.2188 11.9044 -1.2188 Q12.5451 -1.2188 13.0607 -1.3438 Q13.5763 -1.4688 14.1232 -1.7344 L14.1232 -0.3438 Q13.6388 -0.1094 13.1076 0 Q12.5763 0.125 11.8263 0.125 Q10.8419 0.125 10.0763 -0.2344 Q9.3263 -0.6094 8.8888 -1.3438 Q8.4669 -2.0938 8.4669 -3.2344 Q8.4669 -4.375 8.8419 -5.1406 Q9.2326 -5.9062 9.9357 -6.2812 Q10.6388 -6.6719 11.5607 -6.6719 ZM11.5607 -5.4062 Q11.0451 -5.4062 10.7013 -5.0625 Q10.3732 -4.7344 10.3107 -4.0156 L12.8107 -4.0156 Q12.8107 -4.625 12.4982 -5.0156 Q12.2013 -5.4062 11.5607 -5.4062 ZM20.5277 -1.9375 Q20.5277 -0.9531 19.8246 -0.4062 Q19.1215 0.125 17.7309 0.125 Q17.0434 0.125 16.5434 0.0312 Q16.059 -0.0625 15.559 -0.2656 L15.559 -1.7344 Q16.0902 -1.5 16.6996 -1.3438 Q17.309 -1.1875 17.7777 -1.1875 Q18.309 -1.1875 18.5277 -1.3438 Q18.7621 -1.5 18.7621 -1.75 Q18.7621 -1.9219 18.6684 -2.0469 Q18.5746 -2.1875 18.2777 -2.3438 Q17.9809 -2.5156 17.3402 -2.7812 Q16.7309 -3.0469 16.3246 -3.2969 Q15.934 -3.5625 15.7465 -3.9219 Q15.559 -4.2969 15.559 -4.8438 Q15.559 -5.7656 16.2621 -6.2188 Q16.9652 -6.6719 18.1371 -6.6719 Q18.7621 -6.6719 19.309 -6.5469 Q19.8559 -6.4375 20.4496 -6.1562 L19.9027 -4.875 Q19.434 -5.0781 18.9965 -5.2188 Q18.559 -5.3594 18.1215 -5.3594 Q17.3246 -5.3594 17.3246 -4.9219 Q17.3246 -4.7656 17.4184 -4.6406 Q17.5277 -4.5156 17.8246 -4.3594 Q18.1215 -4.2188 18.6996 -3.9844 Q19.2621 -3.75 19.6684 -3.5 Q20.0746 -3.2656 20.2934 -2.8906 Q20.5277 -2.5312 20.5277 -1.9375 ZM24.6793 -1.3125 Q24.9762 -1.3125 25.2418 -1.3594 Q25.523 -1.4219 25.8043 -1.5156 L25.8043 -0.1875 Q25.5074 -0.0625 25.0855 0.0312 Q24.6637 0.125 24.1637 0.125 Q23.5699 0.125 23.1012 -0.0625 Q22.648 -0.2656 22.3668 -0.7344 Q22.1012 -1.2188 22.1012 -2.0469 L22.1012 -5.2031 L21.2574 -5.2031 L21.2574 -5.9688 L22.2418 -6.5625 L22.7574 -7.9375 L23.898 -7.9375 L23.898 -6.5469 L25.7262 -6.5469 L25.7262 -5.2031 L23.898 -5.2031 L23.898 -2.0469 Q23.898 -1.6875 24.1012 -1.5 Q24.3199 -1.3125 24.6793 -1.3125 ZM30.5592 0 L28.7467 0 L28.7467 -7.0625 L26.4186 -7.0625 L26.4186 -8.5625 L32.8873 -8.5625 L32.8873 -7.0625 L30.5592 -7.0625 L30.5592 0 ZM36.7729 -6.6719 Q38.1166 -6.6719 38.9135 -5.8906 Q39.7104 -5.125 39.7104 -3.7031 L39.7104 -2.8281 L35.4916 -2.8281 Q35.5072 -2.0781 35.9291 -1.6406 Q36.3666 -1.2188 37.1166 -1.2188 Q37.7572 -1.2188 38.2729 -1.3438 Q38.7885 -1.4688 39.3354 -1.7344 L39.3354 -0.3438 Q38.851 -0.1094 38.3197 0 Q37.7885 0.125 37.0385 0.125 Q36.0541 0.125 35.2885 -0.2344 Q34.5385 -0.6094 34.101 -1.3438 Q33.6791 -2.0938 33.6791 -3.2344 Q33.6791 -4.375 34.0541 -5.1406 Q34.4447 -5.9062 35.1479 -6.2812 Q35.851 -6.6719 36.7729 -6.6719 ZM36.7729 -5.4062 Q36.2572 -5.4062 35.9135 -5.0625 Q35.5854 -4.7344 35.5229 -4.0156 L38.0229 -4.0156 Q38.0229 -4.625 37.7104 -5.0156 Q37.4135 -5.4062 36.7729 -5.4062 ZM48.8493 -6.6719 Q49.9743 -6.6719 50.5368 -6.0938 Q51.1149 -5.5312 51.1149 -4.2656 L51.1149 0 L49.318 0 L49.318 -3.8281 Q49.318 -5.25 48.3337 -5.25 Q47.6305 -5.25 47.318 -4.7344 Q47.0212 -4.2344 47.0212 -3.2812 L47.0212 0 L45.2399 0 L45.2399 -3.8281 Q45.2399 -5.25 44.2555 -5.25 Q43.5055 -5.25 43.2243 -4.6875 Q42.943 -4.125 42.943 -3.0781 L42.943 0 L41.1618 0 L41.1618 -6.5469 L42.5212 -6.5469 L42.7712 -5.7188 L42.8649 -5.7188 Q43.1618 -6.2188 43.6774 -6.4375 Q44.2087 -6.6719 44.7712 -6.6719 Q45.4899 -6.6719 45.9899 -6.4375 Q46.5055 -6.2031 46.7712 -5.7188 L46.9274 -5.7188 Q47.2243 -6.2188 47.7555 -6.4375 Q48.2868 -6.6719 48.8493 -6.6719 ZM56.5865 -6.6719 Q57.6959 -6.6719 58.3834 -5.8125 Q59.0709 -4.9531 59.0709 -3.2812 Q59.0709 -1.625 58.3521 -0.75 Q57.649 0.125 56.5396 0.125 Q55.8365 0.125 55.4146 -0.125 Q54.9928 -0.3906 54.7271 -0.7188 L54.6334 -0.7188 Q54.7271 -0.2188 54.7271 0.2344 L54.7271 2.875 L52.9459 2.875 L52.9459 -6.5469 L54.399 -6.5469 L54.649 -5.7031 L54.7271 -5.7031 Q54.9928 -6.0938 55.4303 -6.375 Q55.8834 -6.6719 56.5865 -6.6719 ZM56.024 -5.25 Q55.3209 -5.25 55.0396 -4.8125 Q54.7584 -4.375 54.7271 -3.4844 L54.7271 -3.2969 Q54.7271 -2.3594 55.0084 -1.8438 Q55.2896 -1.3281 56.0396 -1.3281 Q56.649 -1.3281 56.9459 -1.8438 Q57.2428 -2.3594 57.2428 -3.3125 Q57.2428 -5.25 56.024 -5.25 ZM63.2294 -6.6875 Q64.5419 -6.6875 65.2451 -6.1094 Q65.9482 -5.5469 65.9482 -4.375 L65.9482 0 L64.6982 0 L64.3544 -0.8906 L64.3076 -0.8906 Q63.8857 -0.3594 63.4169 -0.1094 Q62.9482 0.125 62.1357 0.125 Q61.2607 0.125 60.6826 -0.3906 Q60.1044 -0.9062 60.1044 -1.9531 Q60.1044 -3 60.8388 -3.5 Q61.5732 -4 63.0419 -4.0469 L64.1826 -4.0781 L64.1826 -4.375 Q64.1826 -4.8906 63.9013 -5.125 Q63.6357 -5.3594 63.1513 -5.3594 Q62.6826 -5.3594 62.2138 -5.2188 Q61.7607 -5.0938 61.3076 -4.8906 L60.7138 -6.0938 Q61.2451 -6.375 61.8857 -6.5312 Q62.5263 -6.6875 63.2294 -6.6875 ZM63.4794 -3.0156 Q62.6201 -2.9844 62.2763 -2.6875 Q61.9482 -2.4062 61.9482 -1.9375 Q61.9482 -1.5312 62.1826 -1.3594 Q62.4169 -1.1875 62.8076 -1.1875 Q63.3857 -1.1875 63.7763 -1.5312 Q64.1826 -1.875 64.1826 -2.5 L64.1826 -3.0312 L63.4794 -3.0156 ZM69.5712 0 L67.79 0 L67.79 -9.125 L69.5712 -9.125 L69.5712 0 ZM74.2156 -1.3125 Q74.5125 -1.3125 74.7781 -1.3594 Q75.0594 -1.4219 75.3406 -1.5156 L75.3406 -0.1875 Q75.0437 -0.0625 74.6219 0.0312 Q74.2 0.125 73.7 0.125 Q73.1062 0.125 72.6375 -0.0625 Q72.1844 -0.2656 71.9031 -0.7344 Q71.6375 -1.2188 71.6375 -2.0469 L71.6375 -5.2031 L70.7937 -5.2031 L70.7937 -5.9688 L71.7781 -6.5625 L72.2937 -7.9375 L73.4344 -7.9375 L73.4344 -6.5469 L75.2625 -6.5469 L75.2625 -5.2031 L73.4344 -5.2031 L73.4344 -2.0469 Q73.4344 -1.6875 73.6375 -1.5 Q73.8562 -1.3125 74.2156 -1.3125 ZM79.3612 -6.6719 Q80.7049 -6.6719 81.5018 -5.8906 Q82.2987 -5.125 82.2987 -3.7031 L82.2987 -2.8281 L78.0799 -2.8281 Q78.0955 -2.0781 78.5174 -1.6406 Q78.9549 -1.2188 79.7049 -1.2188 Q80.3455 -1.2188 80.8612 -1.3438 Q81.3768 -1.4688 81.9237 -1.7344 L81.9237 -0.3438 Q81.4393 -0.1094 80.908 0 Q80.3768 0.125 79.6268 0.125 Q78.6424 0.125 77.8768 -0.2344 Q77.1268 -0.6094 76.6893 -1.3438 Q76.2674 -2.0938 76.2674 -3.2344 Q76.2674 -4.375 76.6424 -5.1406 Q77.033 -5.9062 77.7362 -6.2812 Q78.4393 -6.6719 79.3612 -6.6719 ZM79.3612 -5.4062 Q78.8455 -5.4062 78.5018 -5.0625 Q78.1737 -4.7344 78.1112 -4.0156 L80.6112 -4.0156 Q80.6112 -4.625 80.2987 -5.0156 Q80.0018 -5.4062 79.3612 -5.4062 ZM87.5313 -7.1719 Q86.4845 -7.1719 85.922 -6.3906 Q85.3751 -5.6094 85.3751 -4.2656 Q85.3751 -2.8906 85.8907 -2.1406 Q86.4063 -1.3906 87.5313 -1.3906 Q88.0626 -1.3906 88.5782 -1.5 Q89.0938 -1.625 89.7188 -1.8438 L89.7188 -0.3281 Q89.1563 -0.0938 88.5938 0.0156 Q88.047 0.125 87.3595 0.125 Q86.047 0.125 85.1876 -0.4219 Q84.3282 -0.9688 83.922 -1.9531 Q83.5157 -2.9531 83.5157 -4.2656 Q83.5157 -5.5625 83.9688 -6.5625 Q84.4376 -7.5625 85.3282 -8.125 Q86.2345 -8.6875 87.5313 -8.6875 Q88.172 -8.6875 88.8126 -8.5156 Q89.4532 -8.3594 90.0313 -8.0938 L89.4532 -6.6094 Q88.9688 -6.8438 88.4845 -7 Q88.0001 -7.1719 87.5313 -7.1719 ZM97.3473 -3.2812 Q97.3473 -1.6562 96.4879 -0.7656 Q95.6285 0.125 94.1598 0.125 Q93.2379 0.125 92.5191 -0.2656 Q91.816 -0.6719 91.4098 -1.4375 Q91.0035 -2.2031 91.0035 -3.2812 Q91.0035 -4.9219 91.8473 -5.7969 Q92.7066 -6.6719 94.191 -6.6719 Q95.1129 -6.6719 95.816 -6.2656 Q96.5348 -5.875 96.941 -5.125 Q97.3473 -4.375 97.3473 -3.2812 ZM92.816 -3.2812 Q92.816 -2.3125 93.1285 -1.8125 Q93.4566 -1.3125 94.1754 -1.3125 Q94.8785 -1.3125 95.191 -1.8125 Q95.5191 -2.3125 95.5191 -3.2812 Q95.5191 -4.2656 95.191 -4.75 Q94.8785 -5.2344 94.1598 -5.2344 Q93.4566 -5.2344 93.1285 -4.75 Q92.816 -4.2656 92.816 -3.2812 ZM102.541 -6.6719 Q103.6035 -6.6719 104.2285 -6.0938 Q104.8691 -5.5312 104.8691 -4.2656 L104.8691 0 L103.0878 0 L103.0878 -3.8281 Q103.0878 -4.5312 102.8222 -4.8906 Q102.5722 -5.25 102.0253 -5.25 Q101.2128 -5.25 100.9003 -4.6875 Q100.6035 -4.125 100.6035 -3.0781 L100.6035 0 L98.8222 0 L98.8222 -6.5469 L100.1816 -6.5469 L100.4316 -5.7188 L100.5253 -5.7188 Q100.8378 -6.2188 101.3847 -6.4375 Q101.9316 -6.6719 102.541 -6.6719 ZM110.3313 -5.2031 L108.7844 -5.2031 L108.7844 0 L106.9875 0 L106.9875 -5.2031 L106.0031 -5.2031 L106.0031 -6.0781 L106.9875 -6.5469 L106.9875 -7.0312 Q106.9875 -7.875 107.2688 -8.3281 Q107.55 -8.7969 108.0656 -8.9844 Q108.5969 -9.1875 109.3156 -9.1875 Q109.8313 -9.1875 110.2531 -9.0938 Q110.6906 -9.0156 110.9563 -8.9062 L110.5031 -7.5938 Q110.3 -7.6562 110.05 -7.7031 Q109.8156 -7.7656 109.5031 -7.7656 Q109.1281 -7.7656 108.9563 -7.5312 Q108.7844 -7.3125 108.7844 -6.9531 L108.7844 -6.5469 L110.3313 -6.5469 L110.3313 -5.2031 ZM112.2565 -9.125 Q112.6472 -9.125 112.9284 -8.9375 Q113.2253 -8.75 113.2253 -8.25 Q113.2253 -7.75 112.9284 -7.5625 Q112.6472 -7.375 112.2565 -7.375 Q111.8347 -7.375 111.5534 -7.5625 Q111.2722 -7.75 111.2722 -8.25 Q111.2722 -8.75 111.5534 -8.9375 Q111.8347 -9.125 112.2565 -9.125 ZM113.1315 -6.5469 L113.1315 0 L111.3503 0 L111.3503 -6.5469 L113.1315 -6.5469 ZM117.1353 -6.6719 Q118.3384 -6.6719 119.0259 -5.7188 L119.0728 -5.7188 L119.2134 -6.5469 L120.729 -6.5469 L120.729 0.0156 Q120.729 1.4219 119.9009 2.1406 Q119.0728 2.875 117.4634 2.875 Q116.7603 2.875 116.1665 2.7969 Q115.5728 2.7188 115.0103 2.5 L115.0103 1.0625 Q116.2134 1.5781 117.5572 1.5781 Q118.9478 1.5781 118.9478 0.0781 L118.9478 -0.0469 Q118.9478 -0.25 118.9634 -0.4688 Q118.979 -0.6875 118.9947 -0.8594 L118.9478 -0.8594 Q118.604 -0.3438 118.1353 -0.1094 Q117.6665 0.125 117.0884 0.125 Q115.9165 0.125 115.2603 -0.7656 Q114.6197 -1.6719 114.6197 -3.2656 Q114.6197 -4.875 115.2915 -5.7656 Q115.9634 -6.6719 117.1353 -6.6719 ZM117.6978 -5.2188 Q116.4322 -5.2188 116.4322 -3.2344 Q116.4322 -1.2812 117.7134 -1.2812 Q118.4009 -1.2812 118.729 -1.6719 Q119.0572 -2.0625 119.0572 -3.0312 L119.0572 -3.25 Q119.0572 -4.3125 118.729 -4.7656 Q118.4165 -5.2188 117.6978 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath63);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-226.5032" y="-38.8101" width="176" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-226.5032" y="-38.8101" width="176" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-177.5032,-20.8101)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath64);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-216.5032,-4.466)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 ZM89.7323 -1.1875 L83.9042 -3.75 L83.9042 -4.5938 L89.7323 -7.5 L89.7323 -6.0938 L85.7167 -4.2344 L89.7323 -2.5938 L89.7323 -1.1875 ZM94.9714 -7.1719 Q93.9245 -7.1719 93.362 -6.3906 Q92.8151 -5.6094 92.8151 -4.2656 Q92.8151 -2.8906 93.3308 -2.1406 Q93.8464 -1.3906 94.9714 -1.3906 Q95.5026 -1.3906 96.0183 -1.5 Q96.5339 -1.625 97.1589 -1.8438 L97.1589 -0.3281 Q96.5964 -0.0938 96.0339 0.0156 Q95.487 0.125 94.7995 0.125 Q93.487 0.125 92.6276 -0.4219 Q91.7683 -0.9688 91.362 -1.9531 Q90.9558 -2.9531 90.9558 -4.2656 Q90.9558 -5.5625 91.4089 -6.5625 Q91.8776 -7.5625 92.7683 -8.125 Q93.6745 -8.6875 94.9714 -8.6875 Q95.612 -8.6875 96.2526 -8.5156 Q96.8933 -8.3594 97.4714 -8.0938 L96.8933 -6.6094 Q96.4089 -6.8438 95.9245 -7 Q95.4401 -7.1719 94.9714 -7.1719 ZM100.6154 0 L98.8342 0 L98.8342 -9.125 L100.6154 -9.125 L100.6154 0 ZM103.4005 -9.125 Q103.7911 -9.125 104.0723 -8.9375 Q104.3692 -8.75 104.3692 -8.25 Q104.3692 -7.75 104.0723 -7.5625 Q103.7911 -7.375 103.4005 -7.375 Q102.9786 -7.375 102.6973 -7.5625 Q102.4161 -7.75 102.4161 -8.25 Q102.4161 -8.75 102.6973 -8.9375 Q102.9786 -9.125 103.4005 -9.125 ZM104.2755 -6.5469 L104.2755 0 L102.4942 0 L102.4942 -6.5469 L104.2755 -6.5469 ZM108.8574 -6.6719 Q110.2011 -6.6719 110.998 -5.8906 Q111.7949 -5.125 111.7949 -3.7031 L111.7949 -2.8281 L107.5761 -2.8281 Q107.5917 -2.0781 108.0136 -1.6406 Q108.4511 -1.2188 109.2011 -1.2188 Q109.8417 -1.2188 110.3574 -1.3438 Q110.873 -1.4688 111.4199 -1.7344 L111.4199 -0.3438 Q110.9355 -0.1094 110.4042 0 Q109.873 0.125 109.123 0.125 Q108.1386 0.125 107.373 -0.2344 Q106.623 -0.6094 106.1855 -1.3438 Q105.7636 -2.0938 105.7636 -3.2344 Q105.7636 -4.375 106.1386 -5.1406 Q106.5292 -5.9062 107.2324 -6.2812 Q107.9355 -6.6719 108.8574 -6.6719 ZM108.8574 -5.4062 Q108.3417 -5.4062 107.998 -5.0625 Q107.6699 -4.7344 107.6074 -4.0156 L110.1074 -4.0156 Q110.1074 -4.625 109.7949 -5.0156 Q109.498 -5.4062 108.8574 -5.4062 ZM116.965 -6.6719 Q118.0275 -6.6719 118.6525 -6.0938 Q119.2932 -5.5312 119.2932 -4.2656 L119.2932 0 L117.5119 0 L117.5119 -3.8281 Q117.5119 -4.5312 117.2463 -4.8906 Q116.9963 -5.25 116.4494 -5.25 Q115.6369 -5.25 115.3244 -4.6875 Q115.0275 -4.125 115.0275 -3.0781 L115.0275 0 L113.2463 0 L113.2463 -6.5469 L114.6057 -6.5469 L114.8557 -5.7188 L114.9494 -5.7188 Q115.2619 -6.2188 115.8088 -6.4375 Q116.3557 -6.6719 116.965 -6.6719 ZM123.896 -1.3125 Q124.1928 -1.3125 124.4585 -1.3594 Q124.7397 -1.4219 125.021 -1.5156 L125.021 -0.1875 Q124.7241 -0.0625 124.3022 0.0312 Q123.8803 0.125 123.3803 0.125 Q122.7866 0.125 122.3178 -0.0625 Q121.8647 -0.2656 121.5835 -0.7344 Q121.3178 -1.2188 121.3178 -2.0469 L121.3178 -5.2031 L120.4741 -5.2031 L120.4741 -5.9688 L121.4585 -6.5625 L121.9741 -7.9375 L123.1147 -7.9375 L123.1147 -6.5469 L124.9428 -6.5469 L124.9428 -5.2031 L123.1147 -5.2031 L123.1147 -2.0469 Q123.1147 -1.6875 123.3178 -1.5 Q123.5366 -1.3125 123.896 -1.3125 ZM128.0884 -1.2656 Q127.9321 -0.625 127.6353 0.125 Q127.354 0.8906 127.0571 1.5469 L125.7759 1.5469 Q125.9478 0.8438 126.104 0.0312 Q126.2759 -0.7656 126.354 -1.3906 L128.0103 -1.3906 L128.0884 -1.2656 ZM133.7847 -9.125 Q134.1753 -9.125 134.4566 -8.9375 Q134.7534 -8.75 134.7534 -8.25 Q134.7534 -7.75 134.4566 -7.5625 Q134.1753 -7.375 133.7847 -7.375 Q133.3628 -7.375 133.0816 -7.5625 Q132.8003 -7.75 132.8003 -8.25 Q132.8003 -8.75 133.0816 -8.9375 Q133.3628 -9.125 133.7847 -9.125 ZM134.6597 -6.5469 L134.6597 0 L132.8784 0 L132.8784 -6.5469 L134.6597 -6.5469 ZM140.2572 -6.6719 Q141.3197 -6.6719 141.9447 -6.0938 Q142.5853 -5.5312 142.5853 -4.2656 L142.5853 0 L140.8041 0 L140.8041 -3.8281 Q140.8041 -4.5312 140.5385 -4.8906 Q140.2885 -5.25 139.7416 -5.25 Q138.9291 -5.25 138.6166 -4.6875 Q138.3197 -4.125 138.3197 -3.0781 L138.3197 0 L136.5385 0 L136.5385 -6.5469 L137.8978 -6.5469 L138.1478 -5.7188 L138.2416 -5.7188 Q138.5541 -6.2188 139.101 -6.4375 Q139.6478 -6.6719 140.2572 -6.6719 ZM147.1881 -1.3125 Q147.485 -1.3125 147.7506 -1.3594 Q148.0319 -1.4219 148.3131 -1.5156 L148.3131 -0.1875 Q148.0163 -0.0625 147.5944 0.0312 Q147.1725 0.125 146.6725 0.125 Q146.0788 0.125 145.61 -0.0625 Q145.1569 -0.2656 144.8756 -0.7344 Q144.61 -1.2188 144.61 -2.0469 L144.61 -5.2031 L143.7663 -5.2031 L143.7663 -5.9688 L144.7506 -6.5625 L145.2663 -7.9375 L146.4069 -7.9375 L146.4069 -6.5469 L148.235 -6.5469 L148.235 -5.2031 L146.4069 -5.2031 L146.4069 -2.0469 Q146.4069 -1.6875 146.61 -1.5 Q146.8288 -1.3125 147.1881 -1.3125 ZM149.2087 -2.5938 L153.2243 -4.2344 L149.2087 -6.0938 L149.2087 -7.5 L155.0368 -4.5938 L155.0368 -3.75 L149.2087 -1.1875 L149.2087 -2.5938 Z" style="stroke:none; clip-path:url(#clipPath65);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="386.2366" y="-539.9815" width="116.7327" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="386.2366" y="-539.9815" width="116.7327" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(410.603,-521.9815)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath66);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(396.2366,-505.6374)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 ZM59.9574 -2.375 Q59.9574 -1.2344 59.1293 -0.5469 Q58.3168 0.125 56.8011 0.125 Q55.4574 0.125 54.3793 -0.3906 L54.3793 -2.0938 Q54.9886 -1.8281 55.6449 -1.5938 Q56.3011 -1.375 56.9574 -1.375 Q57.6293 -1.375 57.9105 -1.625 Q58.1918 -1.8906 58.1918 -2.2969 Q58.1918 -2.6094 57.9574 -2.8438 Q57.7386 -3.0781 57.3636 -3.2656 Q57.0043 -3.4688 56.5199 -3.7031 Q56.223 -3.8438 55.8636 -4.0312 Q55.5199 -4.2344 55.2074 -4.5312 Q54.8949 -4.8281 54.6761 -5.2344 Q54.473 -5.6562 54.473 -6.25 Q54.473 -7.4062 55.2543 -8.0469 Q56.0355 -8.6875 57.3793 -8.6875 Q58.0511 -8.6875 58.6605 -8.5312 Q59.2699 -8.375 59.9261 -8.0938 L59.348 -6.6719 Q58.7543 -6.9062 58.2855 -7.0312 Q57.8168 -7.1719 57.3168 -7.1719 Q56.8011 -7.1719 56.5199 -6.9375 Q56.2543 -6.7031 56.2543 -6.3125 Q56.2543 -5.8594 56.6605 -5.5938 Q57.0668 -5.3281 57.8793 -4.9375 Q58.5355 -4.625 58.9886 -4.2812 Q59.4574 -3.9531 59.7074 -3.5 Q59.9574 -3.0469 59.9574 -2.375 ZM64.0851 -6.6719 Q65.4288 -6.6719 66.2257 -5.8906 Q67.0226 -5.125 67.0226 -3.7031 L67.0226 -2.8281 L62.8038 -2.8281 Q62.8194 -2.0781 63.2413 -1.6406 Q63.6788 -1.2188 64.4288 -1.2188 Q65.0694 -1.2188 65.5851 -1.3438 Q66.1007 -1.4688 66.6476 -1.7344 L66.6476 -0.3438 Q66.1632 -0.1094 65.6319 0 Q65.1007 0.125 64.3507 0.125 Q63.3663 0.125 62.6007 -0.2344 Q61.8507 -0.6094 61.4132 -1.3438 Q60.9913 -2.0938 60.9913 -3.2344 Q60.9913 -4.375 61.3663 -5.1406 Q61.7569 -5.9062 62.4601 -6.2812 Q63.1632 -6.6719 64.0851 -6.6719 ZM64.0851 -5.4062 Q63.5694 -5.4062 63.2257 -5.0625 Q62.8976 -4.7344 62.8351 -4.0156 L65.3351 -4.0156 Q65.3351 -4.625 65.0226 -5.0156 Q64.7257 -5.4062 64.0851 -5.4062 ZM72.1302 -6.6719 Q72.2709 -6.6719 72.4427 -6.6562 Q72.6302 -6.6406 72.7396 -6.625 L72.599 -4.9375 Q72.5209 -4.9688 72.349 -4.9844 Q72.1927 -5 72.0677 -5 Q71.6146 -5 71.1927 -4.8438 Q70.7709 -4.6875 70.5052 -4.3125 Q70.2552 -3.9531 70.2552 -3.3438 L70.2552 0 L68.474 0 L68.474 -6.5469 L69.8334 -6.5469 L70.099 -5.4531 L70.1771 -5.4531 Q70.4584 -5.9531 70.9584 -6.3125 Q71.474 -6.6719 72.1302 -6.6719 ZM75.4845 0 L72.9845 -6.5469 L74.8595 -6.5469 L76.1095 -2.8125 Q76.2189 -2.4844 76.2814 -2.125 Q76.3595 -1.7656 76.3752 -1.4688 L76.422 -1.4688 Q76.4533 -2.125 76.6877 -2.8125 L77.9377 -6.5469 L79.8127 -6.5469 L77.3127 0 L75.4845 0 ZM81.6563 -9.125 Q82.047 -9.125 82.3282 -8.9375 Q82.6251 -8.75 82.6251 -8.25 Q82.6251 -7.75 82.3282 -7.5625 Q82.047 -7.375 81.6563 -7.375 Q81.2345 -7.375 80.9532 -7.5625 Q80.672 -7.75 80.672 -8.25 Q80.672 -8.75 80.9532 -8.9375 Q81.2345 -9.125 81.6563 -9.125 ZM82.5313 -6.5469 L82.5313 0 L80.7501 0 L80.7501 -6.5469 L82.5313 -6.5469 ZM87.0663 0.125 Q85.6132 0.125 84.8163 -0.6875 Q84.0195 -1.5 84.0195 -3.2344 Q84.0195 -4.4375 84.4257 -5.1875 Q84.832 -5.9531 85.5507 -6.3125 Q86.2851 -6.6719 87.2226 -6.6719 Q87.8945 -6.6719 88.3945 -6.5312 Q88.8945 -6.4062 89.2695 -6.2344 L88.7382 -4.8438 Q88.3163 -5.0156 87.9413 -5.125 Q87.582 -5.2344 87.2226 -5.2344 Q85.832 -5.2344 85.832 -3.25 Q85.832 -2.2656 86.1913 -1.7969 Q86.5663 -1.3281 87.2226 -1.3281 Q87.7851 -1.3281 88.2226 -1.4688 Q88.6601 -1.625 89.0663 -1.8906 L89.0663 -0.375 Q88.6601 -0.1094 88.207 0 Q87.7538 0.125 87.0663 0.125 ZM93.2813 -6.6719 Q94.625 -6.6719 95.4219 -5.8906 Q96.2188 -5.125 96.2188 -3.7031 L96.2188 -2.8281 L92 -2.8281 Q92.0156 -2.0781 92.4375 -1.6406 Q92.875 -1.2188 93.625 -1.2188 Q94.2656 -1.2188 94.7813 -1.3438 Q95.2969 -1.4688 95.8438 -1.7344 L95.8438 -0.3438 Q95.3594 -0.1094 94.8281 0 Q94.2969 0.125 93.5469 0.125 Q92.5625 0.125 91.7969 -0.2344 Q91.0469 -0.6094 90.6094 -1.3438 Q90.1875 -2.0938 90.1875 -3.2344 Q90.1875 -4.375 90.5625 -5.1406 Q90.9531 -5.9062 91.6563 -6.2812 Q92.3594 -6.6719 93.2813 -6.6719 ZM93.2813 -5.4062 Q92.7656 -5.4062 92.4219 -5.0625 Q92.0938 -4.7344 92.0313 -4.0156 L94.5313 -4.0156 Q94.5313 -4.625 94.2188 -5.0156 Q93.9219 -5.4062 93.2813 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath67);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="-226.5032" x2="-601.5654" y1="-16.0536" style="fill:none; clip-path:url(#clipPath2);" y2="-5.7715"
+      /><line x1="-601.5654" x2="-591.3415" y1="-5.7715" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-12.054"
+      /><line x1="-601.5654" x2="-591.0126" y1="-5.7715" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-0.0585"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-440.3985,-13.2566)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath68);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-466.5527,-10.0846)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM29.1079 5.0937 Q27.7173 5.0937 26.9204 6.0156 Q26.1392 6.9375 26.1392 8.5468 Q26.1392 10.1406 26.8735 11.0781 Q27.6079 12 29.0923 12 Q29.6548 12 30.1548 11.9062 Q30.6548 11.8125 31.1392 11.6718 L31.1392 12.5937 Q30.6548 12.7812 30.1392 12.8593 Q29.6392 12.9531 28.936 12.9531 Q27.6235 12.9531 26.7485 12.4218 Q25.8735 11.875 25.436 10.875 Q24.9985 9.875 24.9985 8.5312 Q24.9985 7.2343 25.4673 6.25 Q25.9517 5.25 26.8735 4.7031 Q27.7954 4.1406 29.1079 4.1406 Q30.4673 4.1406 31.4829 4.6406 L31.0454 5.5625 Q30.6548 5.375 30.1548 5.2343 Q29.6704 5.0937 29.1079 5.0937 ZM33.9263 12.8281 L32.8638 12.8281 L32.8638 3.7031 L33.9263 3.7031 L33.9263 12.8281 ZM36.5067 3.9843 Q36.7411 3.9843 36.9286 4.1562 Q37.1161 4.3125 37.1161 4.6562 Q37.1161 4.9843 36.9286 5.1562 Q36.7411 5.3281 36.5067 5.3281 Q36.2411 5.3281 36.0536 5.1562 Q35.8817 4.9843 35.8817 4.6562 Q35.8817 4.3125 36.0536 4.1562 Q36.2411 3.9843 36.5067 3.9843 ZM37.0224 6.3906 L37.0224 12.8281 L35.9599 12.8281 L35.9599 6.3906 L37.0224 6.3906 ZM41.5403 6.2812 Q42.3684 6.2812 42.9621 6.6406 Q43.5559 7 43.8684 7.6562 Q44.1965 8.2968 44.1965 9.1875 L44.1965 9.8125 L39.7903 9.8125 Q39.8215 10.9062 40.3528 11.4843 Q40.884 12.0468 41.8371 12.0468 Q42.4621 12.0468 42.9309 11.9375 Q43.3996 11.8125 43.9153 11.6093 L43.9153 12.5312 Q43.4153 12.75 42.9309 12.8437 Q42.4621 12.9531 41.7903 12.9531 Q40.884 12.9531 40.1809 12.5781 Q39.4778 12.2031 39.0871 11.4687 Q38.6965 10.7343 38.6965 9.6562 Q38.6965 8.6093 39.0559 7.8593 Q39.4153 7.0937 40.0559 6.6875 Q40.6965 6.2812 41.5403 6.2812 ZM41.5246 7.1406 Q40.7746 7.1406 40.3371 7.625 Q39.8996 8.1093 39.8215 8.9687 L43.0871 8.9687 Q43.0871 8.1562 42.7121 7.6562 Q42.3371 7.1406 41.5246 7.1406 ZM48.9177 6.2812 Q50.0739 6.2812 50.6521 6.8437 Q51.2458 7.3906 51.2458 8.6406 L51.2458 12.8281 L50.2146 12.8281 L50.2146 8.7187 Q50.2146 7.1718 48.7614 7.1718 Q47.6989 7.1718 47.2927 7.7656 Q46.8864 8.3593 46.8864 9.4843 L46.8864 12.8281 L45.8239 12.8281 L45.8239 6.3906 L46.6833 6.3906 L46.8396 7.2656 L46.9021 7.2656 Q47.2146 6.7656 47.7614 6.5312 Q48.3083 6.2812 48.9177 6.2812 ZM55.3962 12.0781 Q55.6306 12.0781 55.8806 12.0468 Q56.1306 12 56.2869 11.9531 L56.2869 12.75 Q56.1306 12.8437 55.8181 12.8906 Q55.5056 12.9531 55.2087 12.9531 Q54.7087 12.9531 54.2712 12.7812 Q53.8494 12.5937 53.5837 12.1718 Q53.3337 11.7343 53.3337 10.9531 L53.3337 7.2187 L52.4119 7.2187 L52.4119 6.7031 L53.3337 6.2812 L53.7556 4.9218 L54.3806 4.9218 L54.3806 6.3906 L56.24 6.3906 L56.24 7.2187 L54.3806 7.2187 L54.3806 10.9375 Q54.3806 11.5156 54.6619 11.7968 Q54.9431 12.0781 55.3962 12.0781 ZM58.8533 11.5625 Q58.697 12.2031 58.4001 12.9687 Q58.1189 13.7343 57.822 14.375 L57.0408 14.375 Q57.2126 13.6875 57.3845 12.875 Q57.572 12.0625 57.6501 11.4375 L58.7751 11.4375 L58.8533 11.5625 ZM63.3505 12.8281 L60.2568 12.8281 L60.2568 12.2031 L61.2568 11.9687 L61.2568 5.125 L60.2568 4.8906 L60.2568 4.2656 L63.3505 4.2656 L63.3505 4.8906 L62.3349 5.125 L62.3349 11.9687 L63.3505 12.2031 L63.3505 12.8281 ZM71.8717 8.4531 Q71.8717 10.625 70.6842 11.7343 Q69.4967 12.8281 67.3873 12.8281 L64.9967 12.8281 L64.9967 4.2656 L67.6373 4.2656 Q68.9342 4.2656 69.8873 4.75 Q70.8404 5.2187 71.3561 6.1562 Q71.8717 7.0781 71.8717 8.4531 ZM70.7311 8.5 Q70.7311 6.7812 69.8873 5.9843 Q69.0436 5.1875 67.4811 5.1875 L66.0904 5.1875 L66.0904 11.9062 L67.2467 11.9062 Q70.7311 11.9062 70.7311 8.5 ZM73.0849 10.0781 L73.0849 9.1406 L75.9911 9.1406 L75.9911 10.0781 L73.0849 10.0781 ZM77.0583 10.5 L81.5895 8.6093 L77.0583 6.4687 L77.0583 5.5312 L82.7145 8.3593 L82.7145 8.9531 L77.0583 11.4375 L77.0583 10.5 ZM84.8911 3.9843 Q85.1254 3.9843 85.3129 4.1562 Q85.5004 4.3125 85.5004 4.6562 Q85.5004 4.9843 85.3129 5.1562 Q85.1254 5.3281 84.8911 5.3281 Q84.6254 5.3281 84.4379 5.1562 Q84.2661 4.9843 84.2661 4.6562 Q84.2661 4.3125 84.4379 4.1562 Q84.6254 3.9843 84.8911 3.9843 ZM85.4067 6.3906 L85.4067 12.8281 L84.3442 12.8281 L84.3442 6.3906 L85.4067 6.3906 ZM90.534 6.2812 Q91.6902 6.2812 92.2683 6.8437 Q92.8621 7.3906 92.8621 8.6406 L92.8621 12.8281 L91.8308 12.8281 L91.8308 8.7187 Q91.8308 7.1718 90.3777 7.1718 Q89.3152 7.1718 88.909 7.7656 Q88.5027 8.3593 88.5027 9.4843 L88.5027 12.8281 L87.4402 12.8281 L87.4402 6.3906 L88.2996 6.3906 L88.4558 7.2656 L88.5183 7.2656 Q88.8308 6.7656 89.3777 6.5312 Q89.9246 6.2812 90.534 6.2812 ZM97.0125 12.0781 Q97.2469 12.0781 97.4969 12.0468 Q97.7469 12 97.9031 11.9531 L97.9031 12.75 Q97.7469 12.8437 97.4344 12.8906 Q97.1219 12.9531 96.825 12.9531 Q96.325 12.9531 95.8875 12.7812 Q95.4656 12.5937 95.2 12.1718 Q94.95 11.7343 94.95 10.9531 L94.95 7.2187 L94.0281 7.2187 L94.0281 6.7031 L94.95 6.2812 L95.3719 4.9218 L95.9969 4.9218 L95.9969 6.3906 L97.8563 6.3906 L97.8563 7.2187 L95.9969 7.2187 L95.9969 10.9375 Q95.9969 11.5156 96.2781 11.7968 Q96.5594 12.0781 97.0125 12.0781 ZM98.7664 10.5 L103.2977 8.6093 L98.7664 6.4687 L98.7664 5.5312 L104.4227 8.3593 L104.4227 8.9531 L98.7664 11.4375 L98.7664 10.5 Z" style="stroke:none; clip-path:url(#clipPath69);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><path d="M445.0208 -659.4835 A6 6 0 0 0 444.9994 -647.4836" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M445.1159 -712.5906 A6 6 0 0 0 445.0944 -700.5906" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="445.1643" x2="445.1159" y1="-739.6284" style="fill:none; clip-path:url(#clipPath2);" y2="-712.5906"
+      /><line x1="445.0944" x2="445.0208" y1="-700.5906" style="fill:none; clip-path:url(#clipPath2);" y2="-659.4835"
+      /><line x1="444.9994" x2="444.8069" y1="-647.4836" style="fill:none; clip-path:url(#clipPath2);" y2="-539.9815"
+      /><line x1="444.8069" x2="438.8255" y1="-539.9815" style="fill:none; clip-path:url(#clipPath2);" y2="-550.3845"
+      /><line x1="444.8069" x2="450.8255" y1="-539.9815" style="fill:none; clip-path:url(#clipPath2);" y2="-550.363"
+      /><line x1="-50.5032" x2="11.2908" y1="-18.4458" style="fill:none; clip-path:url(#clipPath2);" y2="-18.4316"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" -51 -18 -39 -12 -39 -25"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" -51 -18 -39 -12 -39 -25"
+      /><line x1="628.4591" x2="628.4591" y1="-97.2833" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-366.5134"
+      /><line x1="628.4591" x2="429.3131" y1="-366.5134" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-366.5134"
+      /><line x1="429.3131" x2="429.3131" y1="-366.5134" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-499.2932"
+      /><line x1="628.4591" x2="622.4591" y1="-97.2833" style="fill:none; clip-path:url(#clipPath2);" y2="-107.6756"
+      /><line x1="628.4591" x2="634.4591" y1="-97.2833" style="fill:none; clip-path:url(#clipPath2);" y2="-107.6756"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-235.6238" y="37.5471" width="194.2412" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-235.6238" y="37.5471" width="194.2412" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-177.5032,55.5471)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath70);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-225.6238,71.8912)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 ZM89.7323 -1.1875 L83.9042 -3.75 L83.9042 -4.5938 L89.7323 -7.5 L89.7323 -6.0938 L85.7167 -4.2344 L89.7323 -2.5938 L89.7323 -1.1875 ZM94.9558 0 L92.8933 -6.7188 L92.8464 -6.7188 Q92.862 -6.4844 92.8776 -6 Q92.9089 -5.5156 92.9245 -4.9688 Q92.9558 -4.4219 92.9558 -3.9844 L92.9558 0 L91.3308 0 L91.3308 -8.5625 L93.7995 -8.5625 L95.8308 -2.0156 L95.862 -2.0156 L98.0183 -8.5625 L100.487 -8.5625 L100.487 0 L98.7995 0 L98.7995 -4.0625 Q98.7995 -4.4688 98.8151 -4.9844 Q98.8308 -5.5156 98.8464 -5.9844 Q98.862 -6.4688 98.8776 -6.7031 L98.8308 -6.7031 L96.6276 0 L94.9558 0 ZM105.1937 -6.6875 Q106.5062 -6.6875 107.2094 -6.1094 Q107.9125 -5.5469 107.9125 -4.375 L107.9125 0 L106.6625 0 L106.3187 -0.8906 L106.2719 -0.8906 Q105.85 -0.3594 105.3812 -0.1094 Q104.9125 0.125 104.1 0.125 Q103.225 0.125 102.6469 -0.3906 Q102.0687 -0.9062 102.0687 -1.9531 Q102.0687 -3 102.8031 -3.5 Q103.5375 -4 105.0062 -4.0469 L106.1469 -4.0781 L106.1469 -4.375 Q106.1469 -4.8906 105.8656 -5.125 Q105.6 -5.3594 105.1156 -5.3594 Q104.6469 -5.3594 104.1781 -5.2188 Q103.725 -5.0938 103.2719 -4.8906 L102.6781 -6.0938 Q103.2094 -6.375 103.85 -6.5312 Q104.4906 -6.6875 105.1937 -6.6875 ZM105.4437 -3.0156 Q104.5844 -2.9844 104.2406 -2.6875 Q103.9125 -2.4062 103.9125 -1.9375 Q103.9125 -1.5312 104.1469 -1.3594 Q104.3812 -1.1875 104.7719 -1.1875 Q105.35 -1.1875 105.7406 -1.5312 Q106.1469 -1.875 106.1469 -2.5 L106.1469 -3.0312 L105.4437 -3.0156 ZM113.473 -6.6719 Q114.5355 -6.6719 115.1605 -6.0938 Q115.8011 -5.5312 115.8011 -4.2656 L115.8011 0 L114.0199 0 L114.0199 -3.8281 Q114.0199 -4.5312 113.7543 -4.8906 Q113.5043 -5.25 112.9574 -5.25 Q112.1449 -5.25 111.8324 -4.6875 Q111.5355 -4.125 111.5355 -3.0781 L111.5355 0 L109.7543 0 L109.7543 -6.5469 L111.1136 -6.5469 L111.3636 -5.7188 L111.4574 -5.7188 Q111.7699 -6.2188 112.3168 -6.4375 Q112.8636 -6.6719 113.473 -6.6719 ZM120.3258 -6.6875 Q121.6383 -6.6875 122.3414 -6.1094 Q123.0446 -5.5469 123.0446 -4.375 L123.0446 0 L121.7946 0 L121.4508 -0.8906 L121.4039 -0.8906 Q120.9821 -0.3594 120.5133 -0.1094 Q120.0446 0.125 119.2321 0.125 Q118.3571 0.125 117.7789 -0.3906 Q117.2008 -0.9062 117.2008 -1.9531 Q117.2008 -3 117.9352 -3.5 Q118.6696 -4 120.1383 -4.0469 L121.2789 -4.0781 L121.2789 -4.375 Q121.2789 -4.8906 120.9977 -5.125 Q120.7321 -5.3594 120.2477 -5.3594 Q119.7789 -5.3594 119.3102 -5.2188 Q118.8571 -5.0938 118.4039 -4.8906 L117.8102 -6.0938 Q118.3414 -6.375 118.9821 -6.5312 Q119.6227 -6.6875 120.3258 -6.6875 ZM120.5758 -3.0156 Q119.7164 -2.9844 119.3727 -2.6875 Q119.0446 -2.4062 119.0446 -1.9375 Q119.0446 -1.5312 119.2789 -1.3594 Q119.5133 -1.1875 119.9039 -1.1875 Q120.4821 -1.1875 120.8727 -1.5312 Q121.2789 -1.875 121.2789 -2.5 L121.2789 -3.0312 L120.5758 -3.0156 ZM127.0114 -6.6719 Q128.2145 -6.6719 128.902 -5.7188 L128.9489 -5.7188 L129.0895 -6.5469 L130.6051 -6.5469 L130.6051 0.0156 Q130.6051 1.4219 129.777 2.1406 Q128.9489 2.875 127.3395 2.875 Q126.6364 2.875 126.0426 2.7969 Q125.4489 2.7188 124.8864 2.5 L124.8864 1.0625 Q126.0895 1.5781 127.4332 1.5781 Q128.8239 1.5781 128.8239 0.0781 L128.8239 -0.0469 Q128.8239 -0.25 128.8395 -0.4688 Q128.8551 -0.6875 128.8707 -0.8594 L128.8239 -0.8594 Q128.4801 -0.3438 128.0114 -0.1094 Q127.5426 0.125 126.9645 0.125 Q125.7926 0.125 125.1364 -0.7656 Q124.4957 -1.6719 124.4957 -3.2656 Q124.4957 -4.875 125.1676 -5.7656 Q125.8395 -6.6719 127.0114 -6.6719 ZM127.5739 -5.2188 Q126.3082 -5.2188 126.3082 -3.2344 Q126.3082 -1.2812 127.5895 -1.2812 Q128.277 -1.2812 128.6051 -1.6719 Q128.9332 -2.0625 128.9332 -3.0312 L128.9332 -3.25 Q128.9332 -4.3125 128.6051 -4.7656 Q128.2926 -5.2188 127.5739 -5.2188 ZM135.1855 -6.6719 Q136.5293 -6.6719 137.3262 -5.8906 Q138.123 -5.125 138.123 -3.7031 L138.123 -2.8281 L133.9043 -2.8281 Q133.9199 -2.0781 134.3418 -1.6406 Q134.7793 -1.2188 135.5293 -1.2188 Q136.1699 -1.2188 136.6855 -1.3438 Q137.2012 -1.4688 137.748 -1.7344 L137.748 -0.3438 Q137.2637 -0.1094 136.7324 0 Q136.2012 0.125 135.4512 0.125 Q134.4668 0.125 133.7012 -0.2344 Q132.9512 -0.6094 132.5137 -1.3438 Q132.0918 -2.0938 132.0918 -3.2344 Q132.0918 -4.375 132.4668 -5.1406 Q132.8574 -5.9062 133.5605 -6.2812 Q134.2637 -6.6719 135.1855 -6.6719 ZM135.1855 -5.4062 Q134.6699 -5.4062 134.3262 -5.0625 Q133.998 -4.7344 133.9355 -4.0156 L136.4355 -4.0156 Q136.4355 -4.625 136.123 -5.0156 Q135.8262 -5.4062 135.1855 -5.4062 ZM143.2307 -6.6719 Q143.3714 -6.6719 143.5432 -6.6562 Q143.7307 -6.6406 143.8401 -6.625 L143.6995 -4.9375 Q143.6214 -4.9688 143.4495 -4.9844 Q143.2932 -5 143.1682 -5 Q142.7151 -5 142.2932 -4.8438 Q141.8714 -4.6875 141.6057 -4.3125 Q141.3557 -3.9531 141.3557 -3.3438 L141.3557 0 L139.5745 0 L139.5745 -6.5469 L140.9339 -6.5469 L141.1995 -5.4531 L141.2776 -5.4531 Q141.5589 -5.9531 142.0589 -6.3125 Q142.5745 -6.6719 143.2307 -6.6719 ZM146.7725 -1.2656 Q146.6163 -0.625 146.3194 0.125 Q146.0381 0.8906 145.7413 1.5469 L144.46 1.5469 Q144.6319 0.8438 144.7881 0.0312 Q144.96 -0.7656 145.0381 -1.3906 L146.6944 -1.3906 L146.7725 -1.2656 ZM152.4688 -9.125 Q152.8595 -9.125 153.1407 -8.9375 Q153.4376 -8.75 153.4376 -8.25 Q153.4376 -7.75 153.1407 -7.5625 Q152.8595 -7.375 152.4688 -7.375 Q152.047 -7.375 151.7657 -7.5625 Q151.4845 -7.75 151.4845 -8.25 Q151.4845 -8.75 151.7657 -8.9375 Q152.047 -9.125 152.4688 -9.125 ZM153.3438 -6.5469 L153.3438 0 L151.5626 0 L151.5626 -6.5469 L153.3438 -6.5469 ZM158.9413 -6.6719 Q160.0038 -6.6719 160.6288 -6.0938 Q161.2695 -5.5312 161.2695 -4.2656 L161.2695 0 L159.4882 0 L159.4882 -3.8281 Q159.4882 -4.5312 159.2226 -4.8906 Q158.9726 -5.25 158.4257 -5.25 Q157.6132 -5.25 157.3007 -4.6875 Q157.0038 -4.125 157.0038 -3.0781 L157.0038 0 L155.2226 0 L155.2226 -6.5469 L156.582 -6.5469 L156.832 -5.7188 L156.9257 -5.7188 Q157.2382 -6.2188 157.7851 -6.4375 Q158.332 -6.6719 158.9413 -6.6719 ZM165.8723 -1.3125 Q166.1691 -1.3125 166.4348 -1.3594 Q166.716 -1.4219 166.9973 -1.5156 L166.9973 -0.1875 Q166.7004 -0.0625 166.2785 0.0312 Q165.8566 0.125 165.3566 0.125 Q164.7629 0.125 164.2941 -0.0625 Q163.841 -0.2656 163.5598 -0.7344 Q163.2941 -1.2188 163.2941 -2.0469 L163.2941 -5.2031 L162.4504 -5.2031 L162.4504 -5.9688 L163.4348 -6.5625 L163.9504 -7.9375 L165.091 -7.9375 L165.091 -6.5469 L166.9191 -6.5469 L166.9191 -5.2031 L165.091 -5.2031 L165.091 -2.0469 Q165.091 -1.6875 165.2941 -1.5 Q165.5129 -1.3125 165.8723 -1.3125 ZM167.8928 -2.5938 L171.9084 -4.2344 L167.8928 -6.0938 L167.8928 -7.5 L173.7209 -4.5938 L173.7209 -3.75 L167.8928 -1.1875 L167.8928 -2.5938 Z" style="stroke:none; clip-path:url(#clipPath71);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M302.4085 -592.2692 A9.3784 9.3784 0 0 0 283.6517 -592.2692" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M148.5542 -592.2692 A11.6969 11.6969 0 0 0 125.1605 -592.2692" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M27.4707 -592.2692 A6 6 0 0 0 15.4707 -592.2692" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-110.3024" x2="-110.3024" y1="-668.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="-110.3024" x2="15.4707" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="27.4707" x2="125.1605" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="148.5542" x2="283.6517" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="302.4085" x2="408.4187" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="408.4187" x2="408.4187" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-539.9815"
+      /><line x1="-110.3024" x2="-104.3024" y1="-668.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-657.8982"
+      /><line x1="-110.3024" x2="-116.3024" y1="-668.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-657.8982"
+      /><line x1="-235.6238" x2="-601.5654" y1="46.1471" style="fill:none; clip-path:url(#clipPath2);" y2="1.8967"
+      /><line x1="-601.5654" x2="-590.528" y1="1.8967" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-2.8124"
+      /><line x1="-601.5654" x2="-591.9686" y1="1.8967" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="9.1009"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-444.9588,21.6778)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath72);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-480.5946,24.8499)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM29.2017 12.8281 L26.3892 5.3125 L26.3423 5.3125 Q26.3735 5.6875 26.3892 6.3281 Q26.4204 6.9531 26.4204 7.625 L26.4204 12.8281 L25.4204 12.8281 L25.4204 4.2656 L27.0298 4.2656 L29.6704 11.2812 L29.7173 11.2812 L32.4048 4.2656 L33.9829 4.2656 L33.9829 12.8281 L32.9204 12.8281 L32.9204 7.5625 Q32.9204 6.9375 32.9517 6.3281 Q32.9829 5.7187 32.9985 5.3281 L32.9517 5.3281 L30.0923 12.8281 L29.2017 12.8281 ZM38.6014 6.2812 Q39.7732 6.2812 40.3357 6.7968 Q40.9139 7.3125 40.9139 8.4531 L40.9139 12.8281 L40.1326 12.8281 L39.9295 11.9218 L39.8826 11.9218 Q39.4607 12.4375 38.992 12.7031 Q38.5389 12.9531 37.7264 12.9531 Q36.8514 12.9531 36.2732 12.5 Q35.6951 12.0312 35.6951 11.0468 Q35.6951 10.0781 36.4451 9.5625 Q37.2107 9.0312 38.7889 8.9843 L39.8826 8.9531 L39.8826 8.5625 Q39.8826 7.7656 39.5232 7.4531 Q39.1795 7.1406 38.5389 7.1406 Q38.0389 7.1406 37.5857 7.2968 Q37.1326 7.4375 36.7264 7.625 L36.4139 6.8437 Q36.8357 6.6093 37.3982 6.4531 Q37.9764 6.2812 38.6014 6.2812 ZM38.9139 9.7187 Q37.7107 9.7656 37.242 10.1093 Q36.7889 10.4375 36.7889 11.0468 Q36.7889 11.5937 37.117 11.8437 Q37.4451 12.0937 37.9607 12.0937 Q38.7889 12.0937 39.3201 11.6562 Q39.867 11.2031 39.867 10.2656 L39.867 9.6875 L38.9139 9.7187 ZM45.9897 6.2812 Q47.1459 6.2812 47.724 6.8437 Q48.3178 7.3906 48.3178 8.6406 L48.3178 12.8281 L47.2865 12.8281 L47.2865 8.7187 Q47.2865 7.1718 45.8334 7.1718 Q44.7709 7.1718 44.3647 7.7656 Q43.9584 8.3593 43.9584 9.4843 L43.9584 12.8281 L42.8959 12.8281 L42.8959 6.3906 L43.7553 6.3906 L43.9115 7.2656 L43.974 7.2656 Q44.2865 6.7656 44.8334 6.5312 Q45.3803 6.2812 45.9897 6.2812 ZM52.7495 6.2812 Q53.9213 6.2812 54.4838 6.7968 Q55.062 7.3125 55.062 8.4531 L55.062 12.8281 L54.2807 12.8281 L54.0776 11.9218 L54.0307 11.9218 Q53.6088 12.4375 53.1401 12.7031 Q52.687 12.9531 51.8745 12.9531 Q50.9995 12.9531 50.4213 12.5 Q49.8432 12.0312 49.8432 11.0468 Q49.8432 10.0781 50.5932 9.5625 Q51.3588 9.0312 52.937 8.9843 L54.0307 8.9531 L54.0307 8.5625 Q54.0307 7.7656 53.6713 7.4531 Q53.3276 7.1406 52.687 7.1406 Q52.187 7.1406 51.7338 7.2968 Q51.2807 7.4375 50.8745 7.625 L50.562 6.8437 Q50.9838 6.6093 51.5463 6.4531 Q52.1245 6.2812 52.7495 6.2812 ZM53.062 9.7187 Q51.8588 9.7656 51.3901 10.1093 Q50.937 10.4375 50.937 11.0468 Q50.937 11.5937 51.2651 11.8437 Q51.5932 12.0937 52.1088 12.0937 Q52.937 12.0937 53.4682 11.6562 Q54.0151 11.2031 54.0151 10.2656 L54.0151 9.6875 L53.062 9.7187 ZM59.3252 6.2812 Q59.9659 6.2812 60.4659 6.5156 Q60.9815 6.75 61.3409 7.25 L61.4034 7.25 L61.544 6.3906 L62.3877 6.3906 L62.3877 12.9375 Q62.3877 14.3125 61.6846 15 Q60.9815 15.7031 59.5127 15.7031 Q58.0909 15.7031 57.1846 15.2968 L57.1846 14.3281 Q58.1377 14.8281 59.5752 14.8281 Q60.4034 14.8281 60.8721 14.3437 Q61.3409 13.8593 61.3409 13.0156 L61.3409 12.7656 Q61.3409 12.625 61.3565 12.3593 Q61.3721 12.0781 61.3877 11.9687 L61.3252 11.9687 Q60.6846 12.9531 59.3409 12.9531 Q58.0909 12.9531 57.3877 12.0781 Q56.6846 11.2031 56.6846 9.625 Q56.6846 8.0937 57.3877 7.1875 Q58.0909 6.2812 59.3252 6.2812 ZM59.4659 7.1718 Q58.669 7.1718 58.2159 7.8125 Q57.7784 8.4531 57.7784 9.6406 Q57.7784 10.8281 58.2159 11.4531 Q58.6534 12.0781 59.4971 12.0781 Q60.4659 12.0781 60.9034 11.5625 Q61.3565 11.0468 61.3565 9.875 L61.3565 9.625 Q61.3565 8.2968 60.9034 7.7343 Q60.4502 7.1718 59.4659 7.1718 ZM66.9084 6.2812 Q67.7365 6.2812 68.3303 6.6406 Q68.924 7 69.2365 7.6562 Q69.5647 8.2968 69.5647 9.1875 L69.5647 9.8125 L65.1584 9.8125 Q65.1897 10.9062 65.7209 11.4843 Q66.2522 12.0468 67.2053 12.0468 Q67.8303 12.0468 68.299 11.9375 Q68.7678 11.8125 69.2834 11.6093 L69.2834 12.5312 Q68.7834 12.75 68.299 12.8437 Q67.8303 12.9531 67.1584 12.9531 Q66.2522 12.9531 65.549 12.5781 Q64.8459 12.2031 64.4553 11.4687 Q64.0647 10.7343 64.0647 9.6562 Q64.0647 8.6093 64.424 7.8593 Q64.7834 7.0937 65.424 6.6875 Q66.0647 6.2812 66.9084 6.2812 ZM66.8928 7.1406 Q66.1428 7.1406 65.7053 7.625 Q65.2678 8.1093 65.1897 8.9687 L68.4553 8.9687 Q68.4553 8.1562 68.0803 7.6562 Q67.7053 7.1406 66.8928 7.1406 ZM74.1921 6.2812 Q74.3796 6.2812 74.5827 6.2968 Q74.8015 6.3125 74.9577 6.3437 L74.8171 7.3125 Q74.6608 7.2812 74.4733 7.2656 Q74.2858 7.2343 74.1296 7.2343 Q73.6296 7.2343 73.1921 7.5156 Q72.7702 7.7812 72.5046 8.2656 Q72.2546 8.75 72.2546 9.3906 L72.2546 12.8281 L71.1921 12.8281 L71.1921 6.3906 L72.0671 6.3906 L72.1765 7.5781 L72.2233 7.5781 Q72.5358 7.0468 73.0202 6.6718 Q73.5202 6.2812 74.1921 6.2812 ZM77.4294 11.5625 Q77.2731 12.2031 76.9763 12.9687 Q76.695 13.7343 76.3981 14.375 L75.6169 14.375 Q75.7888 13.6875 75.9606 12.875 Q76.1481 12.0625 76.2263 11.4375 L77.3513 11.4375 L77.4294 11.5625 ZM81.9267 12.8281 L78.8329 12.8281 L78.8329 12.2031 L79.8329 11.9687 L79.8329 5.125 L78.8329 4.8906 L78.8329 4.2656 L81.9267 4.2656 L81.9267 4.8906 L80.911 5.125 L80.911 11.9687 L81.9267 12.2031 L81.9267 12.8281 ZM90.4478 8.4531 Q90.4478 10.625 89.2603 11.7343 Q88.0728 12.8281 85.9634 12.8281 L83.5728 12.8281 L83.5728 4.2656 L86.2134 4.2656 Q87.5103 4.2656 88.4634 4.75 Q89.4165 5.2187 89.9322 6.1562 Q90.4478 7.0781 90.4478 8.4531 ZM89.3072 8.5 Q89.3072 6.7812 88.4634 5.9843 Q87.6197 5.1875 86.0572 5.1875 L84.6665 5.1875 L84.6665 11.9062 L85.8228 11.9062 Q89.3072 11.9062 89.3072 8.5 ZM91.661 10.0781 L91.661 9.1406 L94.5672 9.1406 L94.5672 10.0781 L91.661 10.0781 ZM95.6344 10.5 L100.1656 8.6093 L95.6344 6.4687 L95.6344 5.5312 L101.2906 8.3593 L101.2906 8.9531 L95.6344 11.4375 L95.6344 10.5 ZM103.4672 3.9843 Q103.7016 3.9843 103.8891 4.1562 Q104.0766 4.3125 104.0766 4.6562 Q104.0766 4.9843 103.8891 5.1562 Q103.7016 5.3281 103.4672 5.3281 Q103.2016 5.3281 103.0141 5.1562 Q102.8422 4.9843 102.8422 4.6562 Q102.8422 4.3125 103.0141 4.1562 Q103.2016 3.9843 103.4672 3.9843 ZM103.9828 6.3906 L103.9828 12.8281 L102.9203 12.8281 L102.9203 6.3906 L103.9828 6.3906 ZM109.1101 6.2812 Q110.2663 6.2812 110.8445 6.8437 Q111.4382 7.3906 111.4382 8.6406 L111.4382 12.8281 L110.407 12.8281 L110.407 8.7187 Q110.407 7.1718 108.9538 7.1718 Q107.8913 7.1718 107.4851 7.7656 Q107.0788 8.3593 107.0788 9.4843 L107.0788 12.8281 L106.0163 12.8281 L106.0163 6.3906 L106.8757 6.3906 L107.032 7.2656 L107.0945 7.2656 Q107.407 6.7656 107.9538 6.5312 Q108.5007 6.2812 109.1101 6.2812 ZM115.5886 12.0781 Q115.823 12.0781 116.073 12.0468 Q116.323 12 116.4792 11.9531 L116.4792 12.75 Q116.323 12.8437 116.0105 12.8906 Q115.698 12.9531 115.4011 12.9531 Q114.9011 12.9531 114.4636 12.7812 Q114.0417 12.5937 113.7761 12.1718 Q113.5261 11.7343 113.5261 10.9531 L113.5261 7.2187 L112.6042 7.2187 L112.6042 6.7031 L113.5261 6.2812 L113.948 4.9218 L114.573 4.9218 L114.573 6.3906 L116.4324 6.3906 L116.4324 7.2187 L114.573 7.2187 L114.573 10.9375 Q114.573 11.5156 114.8542 11.7968 Q115.1355 12.0781 115.5886 12.0781 ZM117.3425 10.5 L121.8738 8.6093 L117.3425 6.4687 L117.3425 5.5312 L122.9988 8.3593 L122.9988 8.9531 L117.3425 11.4375 L117.3425 10.5 Z" style="stroke:none; clip-path:url(#clipPath73);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><path d="M414.4187 -563.3105 A6 6 0 0 0 402.4187 -563.3105" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M302.4085 -563.3105 A9.3784 9.3784 0 0 0 283.6517 -563.3105" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M262.3184 -563.3105 A6 6 0 0 0 250.3184 -563.3105" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="152.5206" x2="152.5206" y1="-539.827" style="fill:none; clip-path:url(#clipPath2);" y2="-563.3105"
+      /><line x1="152.5206" x2="250.3184" y1="-563.3105" style="fill:none; clip-path:url(#clipPath2);" y2="-563.3105"
+      /><line x1="262.3184" x2="283.6517" y1="-563.3105" style="fill:none; clip-path:url(#clipPath2);" y2="-563.3105"
+      /><line x1="302.4085" x2="402.4187" y1="-563.3105" style="fill:none; clip-path:url(#clipPath2);" y2="-563.3105"
+      /><line x1="414.4187" x2="444.603" y1="-563.3105" style="fill:none; clip-path:url(#clipPath2);" y2="-563.3105"
+      /><line x1="444.603" x2="444.603" y1="-563.3105" style="fill:none; clip-path:url(#clipPath2);" y2="-539.9815"
+      /><line x1="444.603" x2="438.603" y1="-539.9815" style="fill:none; clip-path:url(#clipPath2);" y2="-550.3738"
+      /><line x1="444.603" x2="450.603" y1="-539.9815" style="fill:none; clip-path:url(#clipPath2);" y2="-550.3738"
+      /><line x1="-41.3826" x2="2.0883" y1="57.8915" style="fill:none; clip-path:url(#clipPath2);" y2="57.8916"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" -41 58 -30 64 -30 51"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" -41 58 -30 64 -30 51"
+      /><path d="M474.7245 -647.4835 A6 6 0 0 0 474.7245 -659.4835" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="474.7245" x2="474.7245" y1="-539.9815" style="fill:none; clip-path:url(#clipPath2);" y2="-647.4835"
+      /><line x1="474.7245" x2="474.7245" y1="-659.4835" style="fill:none; clip-path:url(#clipPath2);" y2="-679.6929"
+      /><line x1="474.7245" x2="610.7531" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-679.6929"
+      /><line x1="610.7531" x2="610.7531" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-744.9593"
+      /><line x1="610.7531" x2="738.8053" y1="-744.9593" style="fill:none; clip-path:url(#clipPath2);" y2="-744.9593"
+      /><line x1="738.8053" x2="728.413" y1="-744.9593" style="fill:none; clip-path:url(#clipPath2);" y2="-738.9593"
+      /><line x1="738.8053" x2="728.413" y1="-744.9593" style="fill:none; clip-path:url(#clipPath2);" y2="-750.9593"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-222.4957" y="-128.7189" width="167.985" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-222.4957" y="-128.7189" width="167.985" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-177.5032,-110.7189)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath74);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-212.4957,-94.3748)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 ZM89.7323 -1.1875 L83.9042 -3.75 L83.9042 -4.5938 L89.7323 -7.5 L89.7323 -6.0938 L85.7167 -4.2344 L89.7323 -2.5938 L89.7323 -1.1875 ZM98.2995 -3.0312 Q98.2995 -2.1406 97.9089 -1.4219 Q97.5183 -0.7031 96.737 -0.2812 Q95.9558 0.125 94.7526 0.125 Q93.0495 0.125 92.1589 -0.75 Q91.2683 -1.625 91.2683 -3.0469 L91.2683 -8.5625 L93.0808 -8.5625 L93.0808 -3.3281 Q93.0808 -2.2656 93.5183 -1.8281 Q93.9558 -1.4062 94.7995 -1.4062 Q95.6901 -1.4062 96.0808 -1.875 Q96.487 -2.3438 96.487 -3.3438 L96.487 -8.5625 L98.2995 -8.5625 L98.2995 -3.0312 ZM104.8403 -1.9375 Q104.8403 -0.9531 104.1372 -0.4062 Q103.4341 0.125 102.0435 0.125 Q101.356 0.125 100.856 0.0312 Q100.3716 -0.0625 99.8716 -0.2656 L99.8716 -1.7344 Q100.4028 -1.5 101.0122 -1.3438 Q101.6216 -1.1875 102.0903 -1.1875 Q102.6216 -1.1875 102.8403 -1.3438 Q103.0747 -1.5 103.0747 -1.75 Q103.0747 -1.9219 102.981 -2.0469 Q102.8872 -2.1875 102.5903 -2.3438 Q102.2935 -2.5156 101.6528 -2.7812 Q101.0435 -3.0469 100.6372 -3.2969 Q100.2466 -3.5625 100.0591 -3.9219 Q99.8716 -4.2969 99.8716 -4.8438 Q99.8716 -5.7656 100.5747 -6.2188 Q101.2778 -6.6719 102.4497 -6.6719 Q103.0747 -6.6719 103.6216 -6.5469 Q104.1685 -6.4375 104.7622 -6.1562 L104.2153 -4.875 Q103.7466 -5.0781 103.3091 -5.2188 Q102.8716 -5.3594 102.4341 -5.3594 Q101.6372 -5.3594 101.6372 -4.9219 Q101.6372 -4.7656 101.731 -4.6406 Q101.8403 -4.5156 102.1372 -4.3594 Q102.4341 -4.2188 103.0122 -3.9844 Q103.5747 -3.75 103.981 -3.5 Q104.3872 -3.2656 104.606 -2.8906 Q104.8403 -2.5312 104.8403 -1.9375 ZM108.9294 -6.6719 Q110.2731 -6.6719 111.07 -5.8906 Q111.8669 -5.125 111.8669 -3.7031 L111.8669 -2.8281 L107.6481 -2.8281 Q107.6637 -2.0781 108.0856 -1.6406 Q108.5231 -1.2188 109.2731 -1.2188 Q109.9137 -1.2188 110.4294 -1.3438 Q110.945 -1.4688 111.4919 -1.7344 L111.4919 -0.3438 Q111.0075 -0.1094 110.4762 0 Q109.945 0.125 109.195 0.125 Q108.2106 0.125 107.445 -0.2344 Q106.695 -0.6094 106.2575 -1.3438 Q105.8356 -2.0938 105.8356 -3.2344 Q105.8356 -4.375 106.2106 -5.1406 Q106.6012 -5.9062 107.3044 -6.2812 Q108.0075 -6.6719 108.9294 -6.6719 ZM108.9294 -5.4062 Q108.4137 -5.4062 108.07 -5.0625 Q107.7419 -4.7344 107.6794 -4.0156 L110.1794 -4.0156 Q110.1794 -4.625 109.8669 -5.0156 Q109.57 -5.4062 108.9294 -5.4062 ZM116.9745 -6.6719 Q117.1152 -6.6719 117.287 -6.6562 Q117.4745 -6.6406 117.5839 -6.625 L117.4433 -4.9375 Q117.3652 -4.9688 117.1933 -4.9844 Q117.037 -5 116.912 -5 Q116.4589 -5 116.037 -4.8438 Q115.6152 -4.6875 115.3495 -4.3125 Q115.0995 -3.9531 115.0995 -3.3438 L115.0995 0 L113.3183 0 L113.3183 -6.5469 L114.6777 -6.5469 L114.9433 -5.4531 L115.0214 -5.4531 Q115.3027 -5.9531 115.8027 -6.3125 Q116.3183 -6.6719 116.9745 -6.6719 ZM120.5163 -1.2656 Q120.3601 -0.625 120.0632 0.125 Q119.782 0.8906 119.4851 1.5469 L118.2038 1.5469 Q118.3757 0.8438 118.532 0.0312 Q118.7038 -0.7656 118.782 -1.3906 L120.4382 -1.3906 L120.5163 -1.2656 ZM126.2126 -9.125 Q126.6033 -9.125 126.8845 -8.9375 Q127.1814 -8.75 127.1814 -8.25 Q127.1814 -7.75 126.8845 -7.5625 Q126.6033 -7.375 126.2126 -7.375 Q125.7908 -7.375 125.5095 -7.5625 Q125.2283 -7.75 125.2283 -8.25 Q125.2283 -8.75 125.5095 -8.9375 Q125.7908 -9.125 126.2126 -9.125 ZM127.0876 -6.5469 L127.0876 0 L125.3064 0 L125.3064 -6.5469 L127.0876 -6.5469 ZM132.6852 -6.6719 Q133.7477 -6.6719 134.3727 -6.0938 Q135.0133 -5.5312 135.0133 -4.2656 L135.0133 0 L133.232 0 L133.232 -3.8281 Q133.232 -4.5312 132.9664 -4.8906 Q132.7164 -5.25 132.1695 -5.25 Q131.357 -5.25 131.0445 -4.6875 Q130.7477 -4.125 130.7477 -3.0781 L130.7477 0 L128.9664 0 L128.9664 -6.5469 L130.3258 -6.5469 L130.5758 -5.7188 L130.6695 -5.7188 Q130.982 -6.2188 131.5289 -6.4375 Q132.0758 -6.6719 132.6852 -6.6719 ZM139.6161 -1.3125 Q139.913 -1.3125 140.1786 -1.3594 Q140.4598 -1.4219 140.7411 -1.5156 L140.7411 -0.1875 Q140.4442 -0.0625 140.0223 0.0312 Q139.6005 0.125 139.1005 0.125 Q138.5067 0.125 138.038 -0.0625 Q137.5848 -0.2656 137.3036 -0.7344 Q137.038 -1.2188 137.038 -2.0469 L137.038 -5.2031 L136.1942 -5.2031 L136.1942 -5.9688 L137.1786 -6.5625 L137.6942 -7.9375 L138.8348 -7.9375 L138.8348 -6.5469 L140.663 -6.5469 L140.663 -5.2031 L138.8348 -5.2031 L138.8348 -2.0469 Q138.8348 -1.6875 139.038 -1.5 Q139.2567 -1.3125 139.6161 -1.3125 ZM141.6366 -2.5938 L145.6523 -4.2344 L141.6366 -6.0938 L141.6366 -7.5 L147.4648 -4.5938 L147.4648 -3.75 L141.6366 -1.1875 L141.6366 -2.5938 Z" style="stroke:none; clip-path:url(#clipPath75);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="-222.4957" x2="-601.5654" y1="-91.4018" style="fill:none; clip-path:url(#clipPath2);" y2="-14.8005"
+      /><line x1="-601.5654" x2="-592.5675" y1="-14.8005" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-22.7401"
+      /><line x1="-601.5654" x2="-590.1906" y1="-14.8005" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-10.9779"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-438.3948,-55.4453)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath76);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-462.0306,-52.2732)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM31.9517 9.7968 Q31.9517 10.6875 31.5767 11.4062 Q31.2173 12.125 30.4829 12.5468 Q29.7485 12.9531 28.6079 12.9531 Q27.0142 12.9531 26.1704 12.0781 Q25.3423 11.2031 25.3423 9.7812 L25.3423 4.2656 L26.4204 4.2656 L26.4204 9.8125 Q26.4204 10.8593 26.9829 11.4375 Q27.5454 12.0156 28.6704 12.0156 Q29.8267 12.0156 30.3423 11.4062 Q30.8735 10.7812 30.8735 9.7968 L30.8735 4.2656 L31.9517 4.2656 L31.9517 9.7968 ZM38.2393 11.0468 Q38.2393 11.9843 37.5362 12.4687 Q36.8487 12.9531 35.6768 12.9531 Q35.005 12.9531 34.5206 12.8437 Q34.0362 12.7343 33.6612 12.5468 L33.6612 11.5781 Q34.0518 11.7656 34.5831 11.9375 Q35.13 12.0937 35.6925 12.0937 Q36.505 12.0937 36.8643 11.8437 Q37.2237 11.5781 37.2237 11.1406 Q37.2237 10.9062 37.0831 10.7187 Q36.9581 10.5312 36.6143 10.3437 Q36.2706 10.1406 35.6456 9.9062 Q35.0206 9.6562 34.5675 9.4218 Q34.13 9.1875 33.88 8.8593 Q33.6456 8.5156 33.6456 7.9843 Q33.6456 7.1718 34.3018 6.7343 Q34.9737 6.2812 36.0675 6.2812 Q36.6456 6.2812 37.1456 6.3906 Q37.6612 6.5 38.1143 6.7031 L37.755 7.5468 Q37.3487 7.375 36.8956 7.2656 Q36.4581 7.1406 35.9893 7.1406 Q35.3331 7.1406 34.9893 7.3593 Q34.6612 7.5625 34.6612 7.9218 Q34.6612 8.1875 34.8175 8.375 Q34.9737 8.5625 35.3331 8.7343 Q35.6925 8.9062 36.3175 9.1406 Q36.9268 9.375 37.3487 9.625 Q37.7862 9.8593 38.005 10.2031 Q38.2393 10.5312 38.2393 11.0468 ZM42.2843 6.2812 Q43.1124 6.2812 43.7061 6.6406 Q44.2999 7 44.6124 7.6562 Q44.9405 8.2968 44.9405 9.1875 L44.9405 9.8125 L40.5343 9.8125 Q40.5655 10.9062 41.0968 11.4843 Q41.628 12.0468 42.5811 12.0468 Q43.2061 12.0468 43.6749 11.9375 Q44.1436 11.8125 44.6593 11.6093 L44.6593 12.5312 Q44.1593 12.75 43.6749 12.8437 Q43.2061 12.9531 42.5343 12.9531 Q41.628 12.9531 40.9249 12.5781 Q40.2218 12.2031 39.8311 11.4687 Q39.4405 10.7343 39.4405 9.6562 Q39.4405 8.6093 39.7999 7.8593 Q40.1593 7.0937 40.7999 6.6875 Q41.4405 6.2812 42.2843 6.2812 ZM42.2686 7.1406 Q41.5186 7.1406 41.0811 7.625 Q40.6436 8.1093 40.5655 8.9687 L43.8311 8.9687 Q43.8311 8.1562 43.4561 7.6562 Q43.0811 7.1406 42.2686 7.1406 ZM49.5679 6.2812 Q49.7554 6.2812 49.9586 6.2968 Q50.1773 6.3125 50.3336 6.3437 L50.1929 7.3125 Q50.0367 7.2812 49.8492 7.2656 Q49.6617 7.2343 49.5054 7.2343 Q49.0054 7.2343 48.5679 7.5156 Q48.1461 7.7812 47.8804 8.2656 Q47.6304 8.75 47.6304 9.3906 L47.6304 12.8281 L46.5679 12.8281 L46.5679 6.3906 L47.4429 6.3906 L47.5523 7.5781 L47.5992 7.5781 Q47.9117 7.0468 48.3961 6.6718 Q48.8961 6.2812 49.5679 6.2812 ZM52.8052 11.5625 Q52.649 12.2031 52.3521 12.9687 Q52.0709 13.7343 51.774 14.375 L50.9927 14.375 Q51.1646 13.6875 51.3365 12.875 Q51.524 12.0625 51.6021 11.4375 L52.7271 11.4375 L52.8052 11.5625 ZM57.3025 12.8281 L54.2088 12.8281 L54.2088 12.2031 L55.2088 11.9687 L55.2088 5.125 L54.2088 4.8906 L54.2088 4.2656 L57.3025 4.2656 L57.3025 4.8906 L56.2869 5.125 L56.2869 11.9687 L57.3025 12.2031 L57.3025 12.8281 ZM65.8237 8.4531 Q65.8237 10.625 64.6362 11.7343 Q63.4487 12.8281 61.3393 12.8281 L58.9487 12.8281 L58.9487 4.2656 L61.5893 4.2656 Q62.8862 4.2656 63.8393 4.75 Q64.7924 5.2187 65.308 6.1562 Q65.8237 7.0781 65.8237 8.4531 ZM64.683 8.5 Q64.683 6.7812 63.8393 5.9843 Q62.9955 5.1875 61.433 5.1875 L60.0424 5.1875 L60.0424 11.9062 L61.1987 11.9062 Q64.683 11.9062 64.683 8.5 ZM67.0368 10.0781 L67.0368 9.1406 L69.9431 9.1406 L69.9431 10.0781 L67.0368 10.0781 ZM71.0102 10.5 L75.5415 8.6093 L71.0102 6.4687 L71.0102 5.5312 L76.6665 8.3593 L76.6665 8.9531 L71.0102 11.4375 L71.0102 10.5 ZM78.843 3.9843 Q79.0774 3.9843 79.2649 4.1562 Q79.4524 4.3125 79.4524 4.6562 Q79.4524 4.9843 79.2649 5.1562 Q79.0774 5.3281 78.843 5.3281 Q78.5774 5.3281 78.3899 5.1562 Q78.218 4.9843 78.218 4.6562 Q78.218 4.3125 78.3899 4.1562 Q78.5774 3.9843 78.843 3.9843 ZM79.3587 6.3906 L79.3587 12.8281 L78.2962 12.8281 L78.2962 6.3906 L79.3587 6.3906 ZM84.4859 6.2812 Q85.6422 6.2812 86.2203 6.8437 Q86.8141 7.3906 86.8141 8.6406 L86.8141 12.8281 L85.7828 12.8281 L85.7828 8.7187 Q85.7828 7.1718 84.3297 7.1718 Q83.2672 7.1718 82.8609 7.7656 Q82.4547 8.3593 82.4547 9.4843 L82.4547 12.8281 L81.3922 12.8281 L81.3922 6.3906 L82.2516 6.3906 L82.4078 7.2656 L82.4703 7.2656 Q82.7828 6.7656 83.3297 6.5312 Q83.8766 6.2812 84.4859 6.2812 ZM90.9645 12.0781 Q91.1989 12.0781 91.4489 12.0468 Q91.6989 12 91.8551 11.9531 L91.8551 12.75 Q91.6989 12.8437 91.3864 12.8906 Q91.0739 12.9531 90.777 12.9531 Q90.277 12.9531 89.8395 12.7812 Q89.4176 12.5937 89.152 12.1718 Q88.902 11.7343 88.902 10.9531 L88.902 7.2187 L87.9801 7.2187 L87.9801 6.7031 L88.902 6.2812 L89.3239 4.9218 L89.9489 4.9218 L89.9489 6.3906 L91.8082 6.3906 L91.8082 7.2187 L89.9489 7.2187 L89.9489 10.9375 Q89.9489 11.5156 90.2301 11.7968 Q90.5114 12.0781 90.9645 12.0781 ZM92.7184 10.5 L97.2496 8.6093 L92.7184 6.4687 L92.7184 5.5312 L98.3746 8.3593 L98.3746 8.9531 L92.7184 11.4375 L92.7184 10.5 Z" style="stroke:none; clip-path:url(#clipPath77);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><path d="M296.4085 18.0854 A6 6 0 0 0 296.4085 6.0854" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M296.4085 -70.7649 A6 6 0 0 0 296.4085 -82.7649" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M400.8539 -264.6373 A6 6 0 0 0 388.8539 -264.6373" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M435.3942 -294.9465 A6 6 0 0 0 435.3942 -306.9465" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M435.3942 -360.5134 A6 6 0 0 0 435.3942 -372.5134" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="435.3942" x2="435.3942" y1="-499.2932" style="fill:none; clip-path:url(#clipPath2);" y2="-372.5134"
+      /><line x1="435.3942" x2="435.3942" y1="-360.5134" style="fill:none; clip-path:url(#clipPath2);" y2="-306.9465"
+      /><line x1="435.3942" x2="435.3942" y1="-294.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-264.6373"
+      /><line x1="435.3942" x2="400.8539" y1="-264.6373" style="fill:none; clip-path:url(#clipPath2);" y2="-264.6373"
+      /><line x1="388.8539" x2="296.4085" y1="-264.6373" style="fill:none; clip-path:url(#clipPath2);" y2="-264.6373"
+      /><line x1="296.4085" x2="296.4085" y1="-264.6373" style="fill:none; clip-path:url(#clipPath2);" y2="-82.7649"
+      /><line x1="296.4085" x2="296.4085" y1="-70.7649" style="fill:none; clip-path:url(#clipPath2);" y2="6.0854"
+      /><line x1="296.4085" x2="296.4085" y1="18.0854" style="fill:none; clip-path:url(#clipPath2);" y2="47.8476"
+      /><line x1="296.4085" x2="140.4932" y1="47.8476" style="fill:none; clip-path:url(#clipPath2);" y2="47.8476"
+      /><line x1="140.4932" x2="150.8855" y1="47.8476" style="fill:none; clip-path:url(#clipPath2);" y2="41.8476"
+      /><line x1="140.4932" x2="150.8855" y1="47.8476" style="fill:none; clip-path:url(#clipPath2);" y2="53.8476"
+      /><line x1="-54.5107" x2="15.2164" y1="-108.4017" style="fill:none; clip-path:url(#clipPath2);" y2="-108.4241"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" -55 -108 -43 -102 -43 -115"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" -55 -108 -43 -102 -43 -115"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="531.9718" y="-473.4385" width="99.6926" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="531.9718" y="-473.4385" width="99.6926" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(547.8181,-455.4385)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath78);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(541.9718,-439.0943)"
+    ><path d="M4.375 0 L2.5625 0 L2.5625 -7.0625 L0.2344 -7.0625 L0.2344 -8.5625 L6.7031 -8.5625 L6.7031 -7.0625 L4.375 -7.0625 L4.375 0 ZM13.8387 -3.2812 Q13.8387 -1.6562 12.9793 -0.7656 Q12.1199 0.125 10.6512 0.125 Q9.7293 0.125 9.0105 -0.2656 Q8.3074 -0.6719 7.9012 -1.4375 Q7.4949 -2.2031 7.4949 -3.2812 Q7.4949 -4.9219 8.3387 -5.7969 Q9.198 -6.6719 10.6824 -6.6719 Q11.6043 -6.6719 12.3074 -6.2656 Q13.0262 -5.875 13.4324 -5.125 Q13.8387 -4.375 13.8387 -3.2812 ZM9.3074 -3.2812 Q9.3074 -2.3125 9.6199 -1.8125 Q9.948 -1.3125 10.6668 -1.3125 Q11.3699 -1.3125 11.6824 -1.8125 Q12.0105 -2.3125 12.0105 -3.2812 Q12.0105 -4.2656 11.6824 -4.75 Q11.3699 -5.2344 10.6512 -5.2344 Q9.948 -5.2344 9.6199 -4.75 Q9.3074 -4.2656 9.3074 -3.2812 ZM17.0948 -5.0469 Q17.0948 -4.6719 17.0636 -4.2969 Q17.0323 -3.9375 17.0011 -3.5625 L17.0323 -3.5625 Q17.2042 -3.8125 17.3917 -4.0625 Q17.5948 -4.3281 17.8136 -4.5625 L19.6417 -6.5469 L21.6573 -6.5469 L19.0636 -3.7031 L21.8136 0 L19.7511 0 L17.8605 -2.6562 L17.0948 -2.0469 L17.0948 0 L15.3136 0 L15.3136 -9.125 L17.0948 -9.125 L17.0948 -5.0469 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1911 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4411 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0036 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1286 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9411 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM33.5645 -6.6719 Q34.627 -6.6719 35.252 -6.0938 Q35.8926 -5.5312 35.8926 -4.2656 L35.8926 0 L34.1113 0 L34.1113 -3.8281 Q34.1113 -4.5312 33.8457 -4.8906 Q33.5957 -5.25 33.0488 -5.25 Q32.2363 -5.25 31.9238 -4.6875 Q31.627 -4.125 31.627 -3.0781 L31.627 0 L29.8457 0 L29.8457 -6.5469 L31.2051 -6.5469 L31.4551 -5.7188 L31.5488 -5.7188 Q31.8613 -6.2188 32.4082 -6.4375 Q32.9551 -6.6719 33.5645 -6.6719 ZM42.9173 -2.375 Q42.9173 -1.2344 42.0891 -0.5469 Q41.2766 0.125 39.761 0.125 Q38.4173 0.125 37.3391 -0.3906 L37.3391 -2.0938 Q37.9485 -1.8281 38.6048 -1.5938 Q39.261 -1.375 39.9173 -1.375 Q40.5891 -1.375 40.8704 -1.625 Q41.1516 -1.8906 41.1516 -2.2969 Q41.1516 -2.6094 40.9173 -2.8438 Q40.6985 -3.0781 40.3235 -3.2656 Q39.9641 -3.4688 39.4798 -3.7031 Q39.1829 -3.8438 38.8235 -4.0312 Q38.4798 -4.2344 38.1673 -4.5312 Q37.8548 -4.8281 37.636 -5.2344 Q37.4329 -5.6562 37.4329 -6.25 Q37.4329 -7.4062 38.2141 -8.0469 Q38.9954 -8.6875 40.3391 -8.6875 Q41.011 -8.6875 41.6204 -8.5312 Q42.2298 -8.375 42.886 -8.0938 L42.3079 -6.6719 Q41.7141 -6.9062 41.2454 -7.0312 Q40.7766 -7.1719 40.2766 -7.1719 Q39.761 -7.1719 39.4798 -6.9375 Q39.2141 -6.7031 39.2141 -6.3125 Q39.2141 -5.8594 39.6204 -5.5938 Q40.0266 -5.3281 40.8391 -4.9375 Q41.4954 -4.625 41.9485 -4.2812 Q42.4173 -3.9531 42.6673 -3.5 Q42.9173 -3.0469 42.9173 -2.375 ZM47.0449 -6.6719 Q48.3887 -6.6719 49.1855 -5.8906 Q49.9824 -5.125 49.9824 -3.7031 L49.9824 -2.8281 L45.7637 -2.8281 Q45.7793 -2.0781 46.2012 -1.6406 Q46.6387 -1.2188 47.3887 -1.2188 Q48.0293 -1.2188 48.5449 -1.3438 Q49.0605 -1.4688 49.6074 -1.7344 L49.6074 -0.3438 Q49.123 -0.1094 48.5918 0 Q48.0605 0.125 47.3105 0.125 Q46.3262 0.125 45.5605 -0.2344 Q44.8105 -0.6094 44.373 -1.3438 Q43.9512 -2.0938 43.9512 -3.2344 Q43.9512 -4.375 44.3262 -5.1406 Q44.7168 -5.9062 45.4199 -6.2812 Q46.123 -6.6719 47.0449 -6.6719 ZM47.0449 -5.4062 Q46.5293 -5.4062 46.1855 -5.0625 Q45.8574 -4.7344 45.7949 -4.0156 L48.2949 -4.0156 Q48.2949 -4.625 47.9824 -5.0156 Q47.6855 -5.4062 47.0449 -5.4062 ZM55.0901 -6.6719 Q55.2307 -6.6719 55.4026 -6.6562 Q55.5901 -6.6406 55.6995 -6.625 L55.5589 -4.9375 Q55.4807 -4.9688 55.3089 -4.9844 Q55.1526 -5 55.0276 -5 Q54.5745 -5 54.1526 -4.8438 Q53.7307 -4.6875 53.4651 -4.3125 Q53.2151 -3.9531 53.2151 -3.3438 L53.2151 0 L51.4339 0 L51.4339 -6.5469 L52.7932 -6.5469 L53.0589 -5.4531 L53.137 -5.4531 Q53.4182 -5.9531 53.9182 -6.3125 Q54.4339 -6.6719 55.0901 -6.6719 ZM58.4444 0 L55.9444 -6.5469 L57.8194 -6.5469 L59.0694 -2.8125 Q59.1788 -2.4844 59.2413 -2.125 Q59.3194 -1.7656 59.335 -1.4688 L59.3819 -1.4688 Q59.4131 -2.125 59.6475 -2.8125 L60.8975 -6.5469 L62.7725 -6.5469 L60.2725 0 L58.4444 0 ZM64.6162 -9.125 Q65.0068 -9.125 65.2881 -8.9375 Q65.5849 -8.75 65.5849 -8.25 Q65.5849 -7.75 65.2881 -7.5625 Q65.0068 -7.375 64.6162 -7.375 Q64.1943 -7.375 63.9131 -7.5625 Q63.6318 -7.75 63.6318 -8.25 Q63.6318 -8.75 63.9131 -8.9375 Q64.1943 -9.125 64.6162 -9.125 ZM65.4912 -6.5469 L65.4912 0 L63.7099 0 L63.7099 -6.5469 L65.4912 -6.5469 ZM70.0262 0.125 Q68.5731 0.125 67.7762 -0.6875 Q66.9793 -1.5 66.9793 -3.2344 Q66.9793 -4.4375 67.3856 -5.1875 Q67.7918 -5.9531 68.5106 -6.3125 Q69.245 -6.6719 70.1825 -6.6719 Q70.8543 -6.6719 71.3543 -6.5312 Q71.8543 -6.4062 72.2293 -6.2344 L71.6981 -4.8438 Q71.2762 -5.0156 70.9012 -5.125 Q70.5418 -5.2344 70.1825 -5.2344 Q68.7918 -5.2344 68.7918 -3.25 Q68.7918 -2.2656 69.1512 -1.7969 Q69.5262 -1.3281 70.1825 -1.3281 Q70.745 -1.3281 71.1825 -1.4688 Q71.62 -1.625 72.0262 -1.8906 L72.0262 -0.375 Q71.62 -0.1094 71.1668 0 Q70.7137 0.125 70.0262 0.125 ZM76.2411 -6.6719 Q77.5849 -6.6719 78.3818 -5.8906 Q79.1786 -5.125 79.1786 -3.7031 L79.1786 -2.8281 L74.9599 -2.8281 Q74.9755 -2.0781 75.3974 -1.6406 Q75.8349 -1.2188 76.5849 -1.2188 Q77.2255 -1.2188 77.7411 -1.3438 Q78.2568 -1.4688 78.8036 -1.7344 L78.8036 -0.3438 Q78.3193 -0.1094 77.788 0 Q77.2568 0.125 76.5068 0.125 Q75.5224 0.125 74.7568 -0.2344 Q74.0068 -0.6094 73.5693 -1.3438 Q73.1474 -2.0938 73.1474 -3.2344 Q73.1474 -4.375 73.5224 -5.1406 Q73.913 -5.9062 74.6161 -6.2812 Q75.3193 -6.6719 76.2411 -6.6719 ZM76.2411 -5.4062 Q75.7255 -5.4062 75.3818 -5.0625 Q75.0536 -4.7344 74.9911 -4.0156 L77.4911 -4.0156 Q77.4911 -4.625 77.1786 -5.0156 Q76.8818 -5.4062 76.2411 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath79);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="-222.4957" x2="-601.5654" y1="-91.4018" style="fill:none; clip-path:url(#clipPath2);" y2="-14.8005"
+      /><line x1="-601.5654" x2="-592.5675" y1="-14.8005" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-22.7401"
+      /><line x1="-601.5654" x2="-590.1906" y1="-14.8005" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-10.9779"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-438.3948,-55.4453)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath76);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-462.0306,-52.2732)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM31.9517 9.7968 Q31.9517 10.6875 31.5767 11.4062 Q31.2173 12.125 30.4829 12.5468 Q29.7485 12.9531 28.6079 12.9531 Q27.0142 12.9531 26.1704 12.0781 Q25.3423 11.2031 25.3423 9.7812 L25.3423 4.2656 L26.4204 4.2656 L26.4204 9.8125 Q26.4204 10.8593 26.9829 11.4375 Q27.5454 12.0156 28.6704 12.0156 Q29.8267 12.0156 30.3423 11.4062 Q30.8735 10.7812 30.8735 9.7968 L30.8735 4.2656 L31.9517 4.2656 L31.9517 9.7968 ZM38.2393 11.0468 Q38.2393 11.9843 37.5362 12.4687 Q36.8487 12.9531 35.6768 12.9531 Q35.005 12.9531 34.5206 12.8437 Q34.0362 12.7343 33.6612 12.5468 L33.6612 11.5781 Q34.0518 11.7656 34.5831 11.9375 Q35.13 12.0937 35.6925 12.0937 Q36.505 12.0937 36.8643 11.8437 Q37.2237 11.5781 37.2237 11.1406 Q37.2237 10.9062 37.0831 10.7187 Q36.9581 10.5312 36.6143 10.3437 Q36.2706 10.1406 35.6456 9.9062 Q35.0206 9.6562 34.5675 9.4218 Q34.13 9.1875 33.88 8.8593 Q33.6456 8.5156 33.6456 7.9843 Q33.6456 7.1718 34.3018 6.7343 Q34.9737 6.2812 36.0675 6.2812 Q36.6456 6.2812 37.1456 6.3906 Q37.6612 6.5 38.1143 6.7031 L37.755 7.5468 Q37.3487 7.375 36.8956 7.2656 Q36.4581 7.1406 35.9893 7.1406 Q35.3331 7.1406 34.9893 7.3593 Q34.6612 7.5625 34.6612 7.9218 Q34.6612 8.1875 34.8175 8.375 Q34.9737 8.5625 35.3331 8.7343 Q35.6925 8.9062 36.3175 9.1406 Q36.9268 9.375 37.3487 9.625 Q37.7862 9.8593 38.005 10.2031 Q38.2393 10.5312 38.2393 11.0468 ZM42.2843 6.2812 Q43.1124 6.2812 43.7061 6.6406 Q44.2999 7 44.6124 7.6562 Q44.9405 8.2968 44.9405 9.1875 L44.9405 9.8125 L40.5343 9.8125 Q40.5655 10.9062 41.0968 11.4843 Q41.628 12.0468 42.5811 12.0468 Q43.2061 12.0468 43.6749 11.9375 Q44.1436 11.8125 44.6593 11.6093 L44.6593 12.5312 Q44.1593 12.75 43.6749 12.8437 Q43.2061 12.9531 42.5343 12.9531 Q41.628 12.9531 40.9249 12.5781 Q40.2218 12.2031 39.8311 11.4687 Q39.4405 10.7343 39.4405 9.6562 Q39.4405 8.6093 39.7999 7.8593 Q40.1593 7.0937 40.7999 6.6875 Q41.4405 6.2812 42.2843 6.2812 ZM42.2686 7.1406 Q41.5186 7.1406 41.0811 7.625 Q40.6436 8.1093 40.5655 8.9687 L43.8311 8.9687 Q43.8311 8.1562 43.4561 7.6562 Q43.0811 7.1406 42.2686 7.1406 ZM49.5679 6.2812 Q49.7554 6.2812 49.9586 6.2968 Q50.1773 6.3125 50.3336 6.3437 L50.1929 7.3125 Q50.0367 7.2812 49.8492 7.2656 Q49.6617 7.2343 49.5054 7.2343 Q49.0054 7.2343 48.5679 7.5156 Q48.1461 7.7812 47.8804 8.2656 Q47.6304 8.75 47.6304 9.3906 L47.6304 12.8281 L46.5679 12.8281 L46.5679 6.3906 L47.4429 6.3906 L47.5523 7.5781 L47.5992 7.5781 Q47.9117 7.0468 48.3961 6.6718 Q48.8961 6.2812 49.5679 6.2812 ZM52.8052 11.5625 Q52.649 12.2031 52.3521 12.9687 Q52.0709 13.7343 51.774 14.375 L50.9927 14.375 Q51.1646 13.6875 51.3365 12.875 Q51.524 12.0625 51.6021 11.4375 L52.7271 11.4375 L52.8052 11.5625 ZM57.3025 12.8281 L54.2088 12.8281 L54.2088 12.2031 L55.2088 11.9687 L55.2088 5.125 L54.2088 4.8906 L54.2088 4.2656 L57.3025 4.2656 L57.3025 4.8906 L56.2869 5.125 L56.2869 11.9687 L57.3025 12.2031 L57.3025 12.8281 ZM65.8237 8.4531 Q65.8237 10.625 64.6362 11.7343 Q63.4487 12.8281 61.3393 12.8281 L58.9487 12.8281 L58.9487 4.2656 L61.5893 4.2656 Q62.8862 4.2656 63.8393 4.75 Q64.7924 5.2187 65.308 6.1562 Q65.8237 7.0781 65.8237 8.4531 ZM64.683 8.5 Q64.683 6.7812 63.8393 5.9843 Q62.9955 5.1875 61.433 5.1875 L60.0424 5.1875 L60.0424 11.9062 L61.1987 11.9062 Q64.683 11.9062 64.683 8.5 ZM67.0368 10.0781 L67.0368 9.1406 L69.9431 9.1406 L69.9431 10.0781 L67.0368 10.0781 ZM71.0102 10.5 L75.5415 8.6093 L71.0102 6.4687 L71.0102 5.5312 L76.6665 8.3593 L76.6665 8.9531 L71.0102 11.4375 L71.0102 10.5 ZM78.843 3.9843 Q79.0774 3.9843 79.2649 4.1562 Q79.4524 4.3125 79.4524 4.6562 Q79.4524 4.9843 79.2649 5.1562 Q79.0774 5.3281 78.843 5.3281 Q78.5774 5.3281 78.3899 5.1562 Q78.218 4.9843 78.218 4.6562 Q78.218 4.3125 78.3899 4.1562 Q78.5774 3.9843 78.843 3.9843 ZM79.3587 6.3906 L79.3587 12.8281 L78.2962 12.8281 L78.2962 6.3906 L79.3587 6.3906 ZM84.4859 6.2812 Q85.6422 6.2812 86.2203 6.8437 Q86.8141 7.3906 86.8141 8.6406 L86.8141 12.8281 L85.7828 12.8281 L85.7828 8.7187 Q85.7828 7.1718 84.3297 7.1718 Q83.2672 7.1718 82.8609 7.7656 Q82.4547 8.3593 82.4547 9.4843 L82.4547 12.8281 L81.3922 12.8281 L81.3922 6.3906 L82.2516 6.3906 L82.4078 7.2656 L82.4703 7.2656 Q82.7828 6.7656 83.3297 6.5312 Q83.8766 6.2812 84.4859 6.2812 ZM90.9645 12.0781 Q91.1989 12.0781 91.4489 12.0468 Q91.6989 12 91.8551 11.9531 L91.8551 12.75 Q91.6989 12.8437 91.3864 12.8906 Q91.0739 12.9531 90.777 12.9531 Q90.277 12.9531 89.8395 12.7812 Q89.4176 12.5937 89.152 12.1718 Q88.902 11.7343 88.902 10.9531 L88.902 7.2187 L87.9801 7.2187 L87.9801 6.7031 L88.902 6.2812 L89.3239 4.9218 L89.9489 4.9218 L89.9489 6.3906 L91.8082 6.3906 L91.8082 7.2187 L89.9489 7.2187 L89.9489 10.9375 Q89.9489 11.5156 90.2301 11.7968 Q90.5114 12.0781 90.9645 12.0781 ZM92.7184 10.5 L97.2496 8.6093 L92.7184 6.4687 L92.7184 5.5312 L98.3746 8.3593 L98.3746 8.9531 L92.7184 11.4375 L92.7184 10.5 Z" style="stroke:none; clip-path:url(#clipPath77);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><path d="M581.8181 -647.4835 A6 6 0 0 0 581.8181 -659.4835" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="581.8181" x2="581.8181" y1="-473.4385" style="fill:none; clip-path:url(#clipPath2);" y2="-647.4835"
+      /><line x1="581.8181" x2="581.8181" y1="-659.4835" style="fill:none; clip-path:url(#clipPath2);" y2="-666.2165"
+      /><line x1="581.8181" x2="653.2707" y1="-666.2165" style="fill:none; clip-path:url(#clipPath2);" y2="-666.2165"
+      /><line x1="653.2707" x2="653.2707" y1="-666.2165" style="fill:none; clip-path:url(#clipPath2);" y2="-695.0376"
+      /><line x1="653.2707" x2="736.6933" y1="-695.0376" style="fill:none; clip-path:url(#clipPath2);" y2="-695.0376"
+      /><line x1="736.6933" x2="726.301" y1="-695.0376" style="fill:none; clip-path:url(#clipPath2);" y2="-689.0376"
+      /><line x1="736.6933" x2="726.301" y1="-695.0376" style="fill:none; clip-path:url(#clipPath2);" y2="-701.0376"
+      /><path d="M704.1624 -384.411 A6 6 0 0 0 692.1624 -384.411" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="761.0704" x2="761.0704" y1="-109.4144" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-384.411"
+      /><line x1="761.0704" x2="704.1624" y1="-384.411" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-384.411"
+      /><line x1="692.1624" x2="581.8181" y1="-384.411" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-384.411"
+      /><line x1="581.8181" x2="581.8181" y1="-384.411" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-432.7502"
+      /><line x1="761.0704" x2="755.0704" y1="-109.4144" style="fill:none; clip-path:url(#clipPath2);" y2="-119.8067"
+      /><line x1="761.0704" x2="767.0704" y1="-109.4144" style="fill:none; clip-path:url(#clipPath2);" y2="-119.8067"
+      /><path d="M780.5626 -464.9666 A6 6 0 0 0 768.5626 -464.9666" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M767.0704 -464.9666 A6 6 0 0 0 755.0704 -464.9666" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M704.1624 -464.9666 A6 6 0 0 0 692.1624 -464.9666" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="631.6644" x2="692.1624" y1="-464.9666" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-464.9666"
+      /><line x1="704.1624" x2="755.0704" y1="-464.9666" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-464.9666"
+      /><line x1="767.0704" x2="768.5626" y1="-464.9666" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-464.9666"
+      /><line x1="780.5626" x2="895.5297" y1="-464.9666" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-464.9666"
+      /><line x1="631.6644" x2="642.0567" y1="-464.9666" style="fill:none; clip-path:url(#clipPath2);" y2="-470.9666"
+      /><line x1="631.6644" x2="642.0567" y1="-464.9666" style="fill:none; clip-path:url(#clipPath2);" y2="-458.9666"
+      /><path d="M441.3942 -453.0943 A9.0405 9.0405 0 0 0 423.3131 -453.0943" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M287.1676 -453.0943 A11.657 11.657 0 0 0 263.8536 -453.0943" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="152.5206" x2="152.5206" y1="-499.1388" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="152.5206" x2="263.8536" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="287.1676" x2="423.3131" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="441.3942" x2="531.9718" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-447.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-459.0943"
+      /><path d="M780.5626 -464.9666 A6 6 0 0 0 768.5626 -464.9666" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M767.0704 -464.9666 A6 6 0 0 0 755.0704 -464.9666" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M704.1624 -464.9666 A6 6 0 0 0 692.1624 -464.9666" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="631.6644" x2="692.1624" y1="-464.9666" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-464.9666"
+      /><line x1="704.1624" x2="755.0704" y1="-464.9666" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-464.9666"
+      /><line x1="767.0704" x2="768.5626" y1="-464.9666" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-464.9666"
+      /><line x1="780.5626" x2="804.4237" y1="-464.9666" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-464.9666"
+      /><line x1="804.4237" x2="804.4237" y1="-464.9666" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-536.5541"
+      /><line x1="804.4237" x2="919.7039" y1="-536.5541" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-536.5541"
+      /><line x1="631.6644" x2="642.0567" y1="-464.9666" style="fill:none; clip-path:url(#clipPath2);" y2="-470.9666"
+      /><line x1="631.6644" x2="642.0567" y1="-464.9666" style="fill:none; clip-path:url(#clipPath2);" y2="-458.9666"
+      /><path d="M441.3942 -453.0943 A9.0405 9.0405 0 0 0 423.3131 -453.0943" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="309.0428" x2="309.0428" y1="-499.3225" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="309.0428" x2="423.3131" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="441.3942" x2="531.9718" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-447.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-459.0943"
+      /><line x1="474.7245" x2="474.7245" y1="-499.2932" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="474.7245" x2="531.9718" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-447.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-459.0943"
+    /></g
+  ></g
+></svg
+>
diff --git a/diagramas/User.svg b/diagramas/User.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0450fa0fe99e38cbd670c4512d252f7e422a0a37
--- /dev/null
+++ b/diagramas/User.svg
@@ -0,0 +1,1048 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
+          'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
+<svg xmlns:xlink="http://www.w3.org/1999/xlink" style="fill-opacity:1; color-rendering:auto; color-interpolation:auto; text-rendering:auto; stroke:black; stroke-linecap:square; stroke-miterlimit:10; shape-rendering:auto; stroke-opacity:1; fill:black; stroke-dasharray:none; font-weight:normal; stroke-width:1; font-family:'Dialog'; font-style:normal; stroke-linejoin:miter; font-size:12px; stroke-dashoffset:0; image-rendering:auto;" width="2598" height="1453" xmlns="http://www.w3.org/2000/svg"
+><!--Generated by the Batik Graphics2D SVG Generator--><defs id="genericDefs"
+  /><g
+  ><defs id="defs1"
+    ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath1"
+      ><path d="M0 0 L2598 0 L2598 1453 L0 1453 L0 0 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2"
+      ><path d="M-786.4453 -941.4882 L1162.0548 -941.4882 L1162.0548 148.2619 L-786.4453 148.2619 L-786.4453 -941.4882 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath3"
+      ><path d="M-1125.8013 -44 L822.6987 -44 L822.6987 1045.75 L-1125.8013 1045.75 L-1125.8013 -44 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath4"
+      ><path d="M-468.819 -548.5803 L1479.6809 -548.5803 L1479.6809 541.1697 L-468.819 541.1697 L-468.819 -548.5803 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath5"
+      ><path d="M-497.8896 -564.9244 L1450.6105 -564.9244 L1450.6105 524.8256 L-497.8896 524.8256 L-497.8896 -564.9244 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath6"
+      ><path d="M-1100.3762 -741.938 L848.1238 -741.938 L848.1238 347.812 L-1100.3762 347.812 L-1100.3762 -741.938 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath7"
+      ><path d="M-1096.3762 -774.6072 L852.1238 -774.6072 L852.1238 315.1428 L-1096.3762 315.1428 L-1096.3762 -774.6072 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath8"
+      ><path d="M-1273.2576 -817.6795 L675.2424 -817.6795 L675.2424 272.0705 L-1273.2576 272.0705 L-1273.2576 -817.6795 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath9"
+      ><path d="M-1385.1442 -862.2048 L563.3559 -862.2048 L563.3559 227.5452 L-1385.1442 227.5452 L-1385.1442 -862.2048 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath10"
+      ><path d="M-1387.9882 -878.5489 L560.5118 -878.5489 L560.5118 211.2011 L-1387.9882 211.2011 L-1387.9882 -878.5489 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath11"
+      ><path d="M-1563.2512 -822.2159 L385.2488 -822.2159 L385.2488 267.5341 L-1563.2512 267.5341 L-1563.2512 -822.2159 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath12"
+      ><path d="M-703.9354 -799.8501 L1244.5646 -799.8501 L1244.5646 289.8999 L-703.9354 289.8999 L-703.9354 -799.8501 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath13"
+      ><path d="M-1567.1298 -912.3236 L381.3703 -912.3236 L381.3703 177.4264 L-1567.1298 177.4264 L-1567.1298 -912.3236 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath14"
+      ><path d="M-818.736 -830.7019 L1129.764 -830.7019 L1129.764 259.0481 L-818.736 259.0481 L-818.736 -830.7019 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath15"
+      ><path d="M-811.6616 -847.046 L1136.8384 -847.046 L1136.8384 242.704 L-811.6616 242.704 L-811.6616 -847.046 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath16"
+      ><path d="M-30 -903.0402 L1918.5 -903.0402 L1918.5 186.7098 L-30 186.7098 L-30 -903.0402 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath17"
+      ><path d="M-91.4912 -933.4617 L1857.0088 -933.4617 L1857.0088 156.2882 L-91.4912 156.2882 L-91.4912 -933.4617 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath18"
+      ><path d="M-174.6879 -916.1176 L1773.8121 -916.1176 L1773.8121 173.6324 L-174.6879 173.6324 L-174.6879 -916.1176 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath19"
+      ><path d="M-161.6798 -916.1176 L1786.8202 -916.1176 L1786.8202 173.6324 L-161.6798 173.6324 L-161.6798 -916.1176 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath20"
+      ><path d="M-1551.8027 -110.0492 L396.6973 -110.0492 L396.6973 979.7007 L-1551.8027 979.7007 L-1551.8027 -110.0492 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath21"
+      ><path d="M-1533.1384 -246.1976 L415.3615 -246.1976 L415.3615 843.5524 L-1533.1384 843.5524 L-1533.1384 -246.1976 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath22"
+      ><path d="M-1048.4956 -110.9103 L900.0043 -110.9103 L900.0043 978.8397 L-1048.4956 978.8397 L-1048.4956 -110.9103 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath23"
+      ><path d="M-1026.881 -179.1715 L921.619 -179.1715 L921.619 910.5785 L-1026.881 910.5785 L-1026.881 -179.1715 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath24"
+      ><path d="M-1020.0349 -195.5156 L928.4651 -195.5156 L928.4651 894.2344 L-1020.0349 894.2344 L-1020.0349 -195.5156 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath25"
+      ><path d="M-1749.0015 -348.1593 L199.4985 -348.1593 L199.4985 741.5907 L-1749.0015 741.5907 L-1749.0015 -348.1593 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath26"
+      ><path d="M-1722.7612 -478.7777 L225.7388 -478.7777 L225.7388 610.9723 L-1722.7612 610.9723 L-1722.7612 -478.7777 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath27"
+      ><path d="M-1721.8672 -462.4336 L226.6328 -462.4336 L226.6328 627.3164 L-1721.8672 627.3164 L-1721.8672 -462.4336 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath28"
+      ><path d="M-1691.975 -495.1219 L256.5251 -495.1219 L256.5251 594.6282 L-1691.975 594.6282 L-1691.975 -495.1219 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath29"
+      ><path d="M-542.9374 -163.973 L1405.5626 -163.973 L1405.5626 925.777 L-542.9374 925.777 L-542.9374 -163.973 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath30"
+      ><path d="M-448.5105 -203.5957 L1499.9895 -203.5957 L1499.9895 886.1544 L-448.5105 886.1544 L-448.5105 -203.5957 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath31"
+      ><path d="M-672.5332 -220.979 L1275.9668 -220.979 L1275.9668 868.771 L-672.5332 868.771 L-672.5332 -220.979 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath32"
+      ><path d="M-439.7325 -252.9774 L1508.7676 -252.9774 L1508.7676 836.7726 L-439.7325 836.7726 L-439.7325 -252.9774 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath33"
+      ><path d="M-408.0042 -269.3215 L1540.4957 -269.3215 L1540.4957 820.4285 L-408.0042 820.4285 L-408.0042 -269.3215 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath34"
+      ><path d="M-1115.8976 -332.9806 L832.6024 -332.9806 L832.6024 756.7694 L-1115.8976 756.7694 L-1115.8976 -332.9806 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath35"
+      ><path d="M-662.1428 -261.1976 L1286.3572 -261.1976 L1286.3572 828.5524 L-662.1428 828.5524 L-662.1428 -261.1976 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath36"
+      ><path d="M-883.23 -419.6611 L1065.2699 -419.6611 L1065.2699 670.0889 L-883.23 670.0889 L-883.23 -419.6611 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath37"
+      ><path d="M-881.9918 -436.0052 L1066.5082 -436.0052 L1066.5082 653.7448 L-881.9918 653.7448 L-881.9918 -436.0052 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath38"
+      ><path d="M-416.2903 -316.9419 L1532.2097 -316.9419 L1532.2097 772.8081 L-416.2903 772.8081 L-416.2903 -316.9419 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath39"
+      ><path d="M-408.0247 -333.286 L1540.4752 -333.286 L1540.4752 756.464 L-408.0247 756.464 L-408.0247 -333.286 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath40"
+      ><path d="M-1566.9271 -855.6293 L381.5729 -855.6293 L381.5729 234.1207 L-1566.9271 234.1207 L-1566.9271 -855.6293 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath41"
+      ><path d="M-876.4274 -179.1715 L1072.0726 -179.1715 L1072.0726 910.5785 L-876.4274 910.5785 L-876.4274 -179.1715 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath42"
+      ><path d="M-873.3674 -195.5156 L1075.1326 -195.5156 L1075.1326 894.2344 L-873.3674 894.2344 L-873.3674 -195.5156 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath43"
+      ><path d="M-1190.4677 -179.1715 L758.0323 -179.1715 L758.0323 910.5785 L-1190.4677 910.5785 L-1190.4677 -179.1715 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath44"
+      ><path d="M-1174.2795 -195.5156 L774.2205 -195.5156 L774.2205 894.2344 L-1174.2795 894.2344 L-1174.2795 -195.5156 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath45"
+      ><path d="M-1261.5676 -861.9401 L686.9324 -861.9401 L686.9324 227.8098 L-1261.5676 227.8098 L-1261.5676 -861.9401 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath46"
+      ><path d="M-1273.3279 -878.2842 L675.1722 -878.2842 L675.1722 211.4657 L-1273.3279 211.4657 L-1273.3279 -878.2842 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath47"
+      ><path d="M-1149.1714 -862.3791 L799.3286 -862.3791 L799.3286 227.3709 L-1149.1714 227.3709 L-1149.1714 -862.3791 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath48"
+      ><path d="M-1165.1436 -878.7232 L783.3565 -878.7232 L783.3565 211.0268 L-1165.1436 211.0268 L-1165.1436 -878.7232 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath49"
+      ><path d="M-818.736 -920.7263 L1129.764 -920.7263 L1129.764 169.0238 L-818.736 169.0238 L-818.736 -920.7263 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath50"
+      ><path d="M-807.736 -937.0704 L1140.764 -937.0704 L1140.764 152.6797 L-807.736 152.6797 L-807.736 -937.0704 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath51"
+      ><path d="M-1033.6128 -419.4774 L914.8871 -419.4774 L914.8871 670.2726 L-1033.6128 670.2726 L-1033.6128 -419.4774 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath52"
+      ><path d="M-1028.1128 -435.8216 L920.3871 -435.8216 L920.3871 653.9285 L-1028.1128 653.9285 L-1028.1128 -435.8216 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath53"
+      ><path d="M-1716.1492 -402.59 L232.3509 -402.59 L232.3509 687.16 L-1716.1492 687.16 L-1716.1492 -402.59 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath54"
+      ><path d="M-1723.5015 -418.9341 L224.9985 -418.9341 L224.9985 670.8159 L-1723.5015 670.8159 L-1723.5015 -418.9341 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath55"
+      ><path d="M-1526.7844 -141.3519 L421.7155 -141.3519 L421.7155 948.3981 L-1526.7844 948.3981 L-1526.7844 -141.3519 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath56"
+      ><path d="M-1535.2505 -198.0475 L413.2495 -198.0475 L413.2495 891.7025 L-1535.2505 891.7025 L-1535.2505 -198.0475 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath57"
+      ><path d="M-818.736 -997.0358 L1129.764 -997.0358 L1129.764 92.7141 L-818.736 92.7141 L-818.736 -997.0358 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath58"
+      ><path d="M-798.5336 -1013.3799 L1149.9664 -1013.3799 L1149.9664 76.37 L-798.5336 76.37 L-798.5336 -1013.3799 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath59"
+      ><path d="M-1741.0015 -606.7285 L207.4985 -606.7285 L207.4985 483.0216 L-1741.0015 483.0216 L-1741.0015 -606.7285 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath60"
+      ><path d="M-1721.8672 -590.3843 L226.6328 -590.3843 L226.6328 499.3657 L-1721.8672 499.3657 L-1721.8672 -590.3843 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath61"
+      ><path d="M-1697.099 -623.0726 L251.401 -623.0726 L251.401 466.6775 L-1697.099 466.6775 L-1697.099 -623.0726 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath62"
+      ><path d="M-1716.1492 -535.1034 L232.3509 -535.1034 L232.3509 554.6466 L-1716.1492 554.6466 L-1716.1492 -535.1034 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath63"
+      ><path d="M-1706.5015 -551.4475 L241.9985 -551.4475 L241.9985 538.3025 L-1706.5015 538.3025 L-1706.5015 -551.4475 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath64"
+      ><path d="M-608.942 -920.678 L1339.558 -920.678 L1339.558 169.072 L-608.942 169.072 L-608.942 -920.678 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath65"
+      ><path d="M-569.942 -937.0221 L1378.558 -937.0221 L1378.558 152.7279 L-569.942 152.7279 L-569.942 -937.0221 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath66"
+      ><path d="M-1197.0482 -419.5067 L751.4518 -419.5067 L751.4518 670.2433 L-1197.0482 670.2433 L-1197.0482 -419.5067 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath67"
+      ><path d="M-1182.6819 -435.8508 L765.8182 -435.8508 L765.8182 653.8992 L-1182.6819 653.8992 L-1182.6819 -435.8508 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath68"
+      ><path d="M-346.0467 -928.2315 L1602.4532 -928.2315 L1602.4532 161.5185 L-346.0467 161.5185 L-346.0467 -928.2315 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath69"
+      ><path d="M-319.8925 -931.4036 L1628.6074 -931.4036 L1628.6074 158.3465 L-319.8925 158.3465 L-319.8925 -931.4036 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath70"
+      ><path d="M-608.942 -997.0352 L1339.558 -997.0352 L1339.558 92.7148 L-608.942 92.7148 L-608.942 -997.0352 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath71"
+      ><path d="M-560.8214 -1013.3793 L1387.6786 -1013.3793 L1387.6786 76.3707 L-560.8214 76.3707 L-560.8214 -1013.3793 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath72"
+      ><path d="M-341.4864 -963.1659 L1607.0135 -963.1659 L1607.0135 126.5841 L-341.4864 126.5841 L-341.4864 -963.1659 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath73"
+      ><path d="M-305.8506 -966.338 L1642.6494 -966.338 L1642.6494 123.412 L-305.8506 123.412 L-305.8506 -966.338 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath74"
+      ><path d="M-608.942 -830.7692 L1339.558 -830.7692 L1339.558 258.9808 L-608.942 258.9808 L-608.942 -830.7692 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath75"
+      ><path d="M-573.9495 -847.1133 L1374.5505 -847.1133 L1374.5505 242.6367 L-573.9495 242.6367 L-573.9495 -847.1133 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath76"
+      ><path d="M-348.0505 -886.0428 L1600.4496 -886.0428 L1600.4496 203.7072 L-348.0505 203.7072 L-348.0505 -886.0428 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath77"
+      ><path d="M-324.4146 -889.2149 L1624.0853 -889.2149 L1624.0853 200.5351 L-324.4146 200.5351 L-324.4146 -889.2149 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath78"
+      ><path d="M-1334.2633 -486.0497 L614.2367 -486.0497 L614.2367 603.7003 L-1334.2633 603.7003 L-1334.2633 -486.0497 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath79"
+      ><path d="M-1328.417 -502.3938 L620.0829 -502.3938 L620.0829 587.3562 L-1328.417 587.3562 L-1328.417 -502.3938 Z"
+      /></clipPath
+    ></defs
+    ><g style="fill:white; stroke:white;"
+    ><rect x="0" y="0" width="2598" style="clip-path:url(#clipPath1); stroke:none;" height="1453"
+    /></g
+    ><g transform="scale(1.3333,1.3333) translate(786.4452,941.4881)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; stroke-width:2; shape-rendering:crispEdges; stroke:rgb(255,255,204);"
+    ><rect x="-441.3309" y="-931.4881" width="637.4905" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-441.3309" y="-931.4881" width="637.4905" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-441.3309" y="-916.4881" width="1593.7262" style="clip-path:url(#clipPath2); stroke:none;" height="1054.7241"
+      /><rect x="-441.3309" y="-916.4881" width="1593.7262" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="1054.7241"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(339.3561,-897.4881)"
+    ><path d="M6.9531 -6.5469 L6.9531 0 L5.5781 0 L5.3438 -0.8438 L5.25 -0.8438 Q4.9375 -0.3438 4.3906 -0.1094 Q3.8438 0.125 3.2344 0.125 Q2.1719 0.125 1.5312 -0.4375 Q0.9062 -1.0156 0.9062 -2.2812 L0.9062 -6.5469 L2.6875 -6.5469 L2.6875 -2.7188 Q2.6875 -2.0312 2.9375 -1.6719 Q3.1875 -1.3125 3.75 -1.3125 Q4.5625 -1.3125 4.8594 -1.8594 Q5.1562 -2.4219 5.1562 -3.4688 L5.1562 -6.5469 L6.9531 -6.5469 ZM13.3997 -1.9375 Q13.3997 -0.9531 12.6965 -0.4062 Q11.9934 0.125 10.6028 0.125 Q9.9153 0.125 9.4153 0.0312 Q8.9309 -0.0625 8.4309 -0.2656 L8.4309 -1.7344 Q8.9622 -1.5 9.5715 -1.3438 Q10.1809 -1.1875 10.6497 -1.1875 Q11.1809 -1.1875 11.3997 -1.3438 Q11.634 -1.5 11.634 -1.75 Q11.634 -1.9219 11.5403 -2.0469 Q11.4465 -2.1875 11.1497 -2.3438 Q10.8528 -2.5156 10.2122 -2.7812 Q9.6028 -3.0469 9.1965 -3.2969 Q8.8059 -3.5625 8.6184 -3.9219 Q8.4309 -4.2969 8.4309 -4.8438 Q8.4309 -5.7656 9.134 -6.2188 Q9.8372 -6.6719 11.009 -6.6719 Q11.634 -6.6719 12.1809 -6.5469 Q12.7278 -6.4375 13.3215 -6.1562 L12.7747 -4.875 Q12.3059 -5.0781 11.8684 -5.2188 Q11.4309 -5.3594 10.9934 -5.3594 Q10.1965 -5.3594 10.1965 -4.9219 Q10.1965 -4.7656 10.2903 -4.6406 Q10.3997 -4.5156 10.6965 -4.3594 Q10.9934 -4.2188 11.5715 -3.9844 Q12.134 -3.75 12.5403 -3.5 Q12.9465 -3.2656 13.1653 -2.8906 Q13.3997 -2.5312 13.3997 -1.9375 ZM17.4887 -6.6719 Q18.8325 -6.6719 19.6293 -5.8906 Q20.4262 -5.125 20.4262 -3.7031 L20.4262 -2.8281 L16.2075 -2.8281 Q16.2231 -2.0781 16.645 -1.6406 Q17.0825 -1.2188 17.8325 -1.2188 Q18.4731 -1.2188 18.9887 -1.3438 Q19.5043 -1.4688 20.0512 -1.7344 L20.0512 -0.3438 Q19.5668 -0.1094 19.0356 0 Q18.5043 0.125 17.7543 0.125 Q16.77 0.125 16.0043 -0.2344 Q15.2543 -0.6094 14.8168 -1.3438 Q14.395 -2.0938 14.395 -3.2344 Q14.395 -4.375 14.77 -5.1406 Q15.1606 -5.9062 15.8637 -6.2812 Q16.5668 -6.6719 17.4887 -6.6719 ZM17.4887 -5.4062 Q16.9731 -5.4062 16.6293 -5.0625 Q16.3012 -4.7344 16.2387 -4.0156 L18.7387 -4.0156 Q18.7387 -4.625 18.4262 -5.0156 Q18.1293 -5.4062 17.4887 -5.4062 ZM25.5339 -6.6719 Q25.6745 -6.6719 25.8464 -6.6562 Q26.0339 -6.6406 26.1433 -6.625 L26.0026 -4.9375 Q25.9245 -4.9688 25.7526 -4.9844 Q25.5964 -5 25.4714 -5 Q25.0183 -5 24.5964 -4.8438 Q24.1745 -4.6875 23.9089 -4.3125 Q23.6589 -3.9531 23.6589 -3.3438 L23.6589 0 L21.8776 0 L21.8776 -6.5469 L23.237 -6.5469 L23.5026 -5.4531 L23.5808 -5.4531 Q23.862 -5.9531 24.362 -6.3125 Q24.8776 -6.6719 25.5339 -6.6719 ZM31.9038 -1.9375 Q31.9038 -0.9531 31.2007 -0.4062 Q30.4976 0.125 29.1069 0.125 Q28.4194 0.125 27.9194 0.0312 Q27.4351 -0.0625 26.9351 -0.2656 L26.9351 -1.7344 Q27.4663 -1.5 28.0757 -1.3438 Q28.6851 -1.1875 29.1538 -1.1875 Q29.6851 -1.1875 29.9038 -1.3438 Q30.1382 -1.5 30.1382 -1.75 Q30.1382 -1.9219 30.0444 -2.0469 Q29.9507 -2.1875 29.6538 -2.3438 Q29.3569 -2.5156 28.7163 -2.7812 Q28.1069 -3.0469 27.7007 -3.2969 Q27.3101 -3.5625 27.1226 -3.9219 Q26.9351 -4.2969 26.9351 -4.8438 Q26.9351 -5.7656 27.6382 -6.2188 Q28.3413 -6.6719 29.5132 -6.6719 Q30.1382 -6.6719 30.6851 -6.5469 Q31.2319 -6.4375 31.8257 -6.1562 L31.2788 -4.875 Q30.8101 -5.0781 30.3726 -5.2188 Q29.9351 -5.3594 29.4976 -5.3594 Q28.7007 -5.3594 28.7007 -4.9219 Q28.7007 -4.7656 28.7944 -4.6406 Q28.9038 -4.5156 29.2007 -4.3594 Q29.4976 -4.2188 30.0757 -3.9844 Q30.6382 -3.75 31.0444 -3.5 Q31.4507 -3.2656 31.6694 -2.8906 Q31.9038 -2.5312 31.9038 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath3);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-327.6262" y="-410.9078" width="174.1411" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-327.6262" y="-410.9078" width="174.1411" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-317.6262,-392.9078)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM19.7593 -2.2969 Q19.7593 -1.1562 18.9312 -0.5156 Q18.1031 0.125 16.6968 0.125 Q15.9781 0.125 15.3531 0.0156 Q14.7437 -0.0938 14.3375 -0.2812 L14.3375 -1.3125 Q14.775 -1.125 15.4156 -0.9688 Q16.0562 -0.8125 16.7437 -0.8125 Q17.6968 -0.8125 18.1812 -1.1875 Q18.6656 -1.5625 18.6656 -2.2031 Q18.6656 -2.6094 18.4781 -2.8906 Q18.3062 -3.1875 17.8687 -3.4375 Q17.4312 -3.6875 16.65 -3.9531 Q15.5718 -4.3594 15.0093 -4.9375 Q14.4468 -5.5156 14.4468 -6.5 Q14.4468 -7.1875 14.7906 -7.6719 Q15.15 -8.1562 15.7593 -8.4219 Q16.3843 -8.6875 17.1812 -8.6875 Q17.8843 -8.6875 18.4781 -8.5469 Q19.0718 -8.4219 19.5406 -8.2031 L19.2125 -7.2812 Q18.775 -7.4688 18.2437 -7.5938 Q17.7281 -7.7344 17.1656 -7.7344 Q16.3531 -7.7344 15.9468 -7.3906 Q15.5406 -7.0625 15.5406 -6.4844 Q15.5406 -6.0625 15.7125 -5.7656 Q15.9 -5.4844 16.3062 -5.25 Q16.7125 -5.0312 17.4156 -4.7656 Q18.1656 -4.4844 18.6812 -4.1719 Q19.2125 -3.8594 19.4781 -3.4062 Q19.7593 -2.9688 19.7593 -2.2969 ZM24.3943 -6.5469 Q25.5818 -6.5469 26.3005 -5.7188 Q27.0349 -4.8906 27.0349 -3.2344 Q27.0349 -1.5781 26.3005 -0.7188 Q25.5818 0.125 24.3786 0.125 Q23.6443 0.125 23.1599 -0.1562 Q22.6755 -0.4375 22.3943 -0.8125 L22.3161 -0.8125 Q22.3474 -0.6094 22.363 -0.2969 Q22.3943 0.0156 22.3943 0.2344 L22.3943 2.875 L21.3318 2.875 L21.3318 -6.4375 L22.2068 -6.4375 L22.3474 -5.5625 L22.3943 -5.5625 Q22.6755 -5.9688 23.1443 -6.25 Q23.613 -6.5469 24.3943 -6.5469 ZM24.2068 -5.6562 Q23.2224 -5.6562 22.8161 -5.1094 Q22.4099 -4.5625 22.3943 -3.4375 L22.3943 -3.2344 Q22.3943 -2.0469 22.7849 -1.3906 Q23.1755 -0.75 24.2224 -0.75 Q24.8161 -0.75 25.1911 -1.0781 Q25.5661 -1.4062 25.7536 -1.9531 Q25.9411 -2.5156 25.9411 -3.2344 Q25.9411 -4.3438 25.5193 -5 Q25.0974 -5.6562 24.2068 -5.6562 ZM31.7118 -6.5469 Q31.8993 -6.5469 32.1024 -6.5312 Q32.3212 -6.5156 32.4774 -6.4844 L32.3368 -5.5156 Q32.1806 -5.5469 31.9931 -5.5625 Q31.8056 -5.5938 31.6493 -5.5938 Q31.1493 -5.5938 30.7118 -5.3125 Q30.2899 -5.0469 30.0243 -4.5625 Q29.7743 -4.0781 29.7743 -3.4375 L29.7743 0 L28.7118 0 L28.7118 -6.4375 L29.5868 -6.4375 L29.6962 -5.25 L29.7431 -5.25 Q30.0556 -5.7812 30.5399 -6.1562 Q31.0399 -6.5469 31.7118 -6.5469 ZM34.2147 -8.8438 Q34.4491 -8.8438 34.6366 -8.6719 Q34.8241 -8.5156 34.8241 -8.1719 Q34.8241 -7.8438 34.6366 -7.6719 Q34.4491 -7.5 34.2147 -7.5 Q33.9491 -7.5 33.7616 -7.6719 Q33.5897 -7.8438 33.5897 -8.1719 Q33.5897 -8.5156 33.7616 -8.6719 Q33.9491 -8.8438 34.2147 -8.8438 ZM34.7303 -6.4375 L34.7303 0 L33.6678 0 L33.6678 -6.4375 L34.7303 -6.4375 ZM39.8576 -6.5469 Q41.0139 -6.5469 41.592 -5.9844 Q42.1857 -5.4375 42.1857 -4.1875 L42.1857 0 L41.1545 0 L41.1545 -4.1094 Q41.1545 -5.6562 39.7014 -5.6562 Q38.6389 -5.6562 38.2326 -5.0625 Q37.8264 -4.4688 37.8264 -3.3438 L37.8264 0 L36.7639 0 L36.7639 -6.4375 L37.6232 -6.4375 L37.7795 -5.5625 L37.842 -5.5625 Q38.1545 -6.0625 38.7014 -6.2969 Q39.2482 -6.5469 39.8576 -6.5469 ZM46.4612 -6.5469 Q47.1018 -6.5469 47.6018 -6.3125 Q48.1174 -6.0781 48.4768 -5.5781 L48.5393 -5.5781 L48.6799 -6.4375 L49.5237 -6.4375 L49.5237 0.1094 Q49.5237 1.4844 48.8205 2.1719 Q48.1174 2.875 46.6487 2.875 Q45.2268 2.875 44.3205 2.4688 L44.3205 1.5 Q45.2737 2 46.7112 2 Q47.5393 2 48.008 1.5156 Q48.4768 1.0312 48.4768 0.1875 L48.4768 -0.0625 Q48.4768 -0.2031 48.4924 -0.4688 Q48.508 -0.75 48.5237 -0.8594 L48.4612 -0.8594 Q47.8205 0.125 46.4768 0.125 Q45.2268 0.125 44.5237 -0.75 Q43.8205 -1.625 43.8205 -3.2031 Q43.8205 -4.7344 44.5237 -5.6406 Q45.2268 -6.5469 46.4612 -6.5469 ZM46.6018 -5.6562 Q45.8049 -5.6562 45.3518 -5.0156 Q44.9143 -4.375 44.9143 -3.1875 Q44.9143 -2 45.3518 -1.375 Q45.7893 -0.75 46.633 -0.75 Q47.6018 -0.75 48.0393 -1.2656 Q48.4924 -1.7812 48.4924 -2.9531 L48.4924 -3.2031 Q48.4924 -4.5312 48.0393 -5.0938 Q47.5862 -5.6562 46.6018 -5.6562 ZM54.1537 -8.5625 Q55.7631 -8.5625 56.5756 -8.0938 Q57.4037 -7.625 57.4037 -6.4375 Q57.4037 -5.6875 56.9818 -5.1875 Q56.5756 -4.6875 55.7787 -4.5469 L55.7787 -4.4844 Q56.31 -4.4062 56.7475 -4.1719 Q57.185 -3.9531 57.435 -3.5312 Q57.7006 -3.1094 57.7006 -2.4375 Q57.7006 -1.2656 56.9037 -0.625 Q56.1068 0 54.7162 0 L51.7006 0 L51.7006 -8.5625 L54.1537 -8.5625 ZM54.3725 -4.9219 Q55.4818 -4.9219 55.8881 -5.2656 Q56.2943 -5.625 56.2943 -6.3281 Q56.2943 -7.0312 55.7943 -7.3281 Q55.2943 -7.6406 54.2006 -7.6406 L52.7943 -7.6406 L52.7943 -4.9219 L54.3725 -4.9219 ZM52.7943 -4.0156 L52.7943 -0.9062 L54.5131 -0.9062 Q55.6537 -0.9062 56.0912 -1.3438 Q56.5443 -1.7969 56.5443 -2.5156 Q56.5443 -3.1875 56.0756 -3.5938 Q55.6225 -4.0156 54.435 -4.0156 L52.7943 -4.0156 ZM64.9538 -3.2344 Q64.9538 -1.625 64.1413 -0.75 Q63.3288 0.125 61.9538 0.125 Q61.11 0.125 60.4381 -0.2656 Q59.7663 -0.6562 59.3756 -1.4062 Q59.0006 -2.1562 59.0006 -3.2344 Q59.0006 -4.8281 59.7975 -5.6875 Q60.61 -6.5469 61.985 -6.5469 Q62.8756 -6.5469 63.5319 -6.1562 Q64.2038 -5.7656 64.5788 -5.0312 Q64.9538 -4.2969 64.9538 -3.2344 ZM60.0944 -3.2344 Q60.0944 -2.0938 60.5475 -1.4219 Q61.0006 -0.75 61.985 -0.75 Q62.9538 -0.75 63.4069 -1.4219 Q63.86 -2.0938 63.86 -3.2344 Q63.86 -4.375 63.4069 -5.0156 Q62.9538 -5.6562 61.9694 -5.6562 Q60.985 -5.6562 60.5319 -5.0156 Q60.0944 -4.375 60.0944 -3.2344 ZM72.2138 -3.2344 Q72.2138 -1.625 71.4013 -0.75 Q70.5888 0.125 69.2138 0.125 Q68.3701 0.125 67.6982 -0.2656 Q67.0263 -0.6562 66.6357 -1.4062 Q66.2607 -2.1562 66.2607 -3.2344 Q66.2607 -4.8281 67.0576 -5.6875 Q67.8701 -6.5469 69.2451 -6.5469 Q70.1357 -6.5469 70.7919 -6.1562 Q71.4638 -5.7656 71.8388 -5.0312 Q72.2138 -4.2969 72.2138 -3.2344 ZM67.3544 -3.2344 Q67.3544 -2.0938 67.8076 -1.4219 Q68.2607 -0.75 69.2451 -0.75 Q70.2138 -0.75 70.6669 -1.4219 Q71.1201 -2.0938 71.1201 -3.2344 Q71.1201 -4.375 70.6669 -5.0156 Q70.2138 -5.6562 69.2294 -5.6562 Q68.2451 -5.6562 67.7919 -5.0156 Q67.3544 -4.375 67.3544 -3.2344 ZM76.0364 -0.75 Q76.2708 -0.75 76.5208 -0.7812 Q76.7708 -0.8281 76.927 -0.875 L76.927 -0.0781 Q76.7708 0.0156 76.4583 0.0625 Q76.1458 0.125 75.8489 0.125 Q75.3489 0.125 74.9114 -0.0469 Q74.4895 -0.2344 74.2239 -0.6562 Q73.9739 -1.0938 73.9739 -1.875 L73.9739 -5.6094 L73.052 -5.6094 L73.052 -6.125 L73.9739 -6.5469 L74.3958 -7.9062 L75.0208 -7.9062 L75.0208 -6.4375 L76.8801 -6.4375 L76.8801 -5.6094 L75.0208 -5.6094 L75.0208 -1.8906 Q75.0208 -1.3125 75.302 -1.0312 Q75.5833 -0.75 76.0364 -0.75 ZM83.7434 0 L82.7122 -2.6562 L79.3059 -2.6562 L78.2903 0 L77.1965 0 L80.5403 -8.6094 L81.509 -8.6094 L84.8528 0 L83.7434 0 ZM81.4153 -6.2031 Q81.384 -6.2969 81.2903 -6.5469 Q81.2122 -6.7969 81.134 -7.0625 Q81.0559 -7.3438 81.009 -7.4844 Q80.9309 -7.1094 80.8215 -6.75 Q80.7122 -6.4062 80.634 -6.2031 L79.6653 -3.6094 L82.384 -3.6094 L81.4153 -6.2031 ZM88.9427 -6.5469 Q90.1302 -6.5469 90.849 -5.7188 Q91.5833 -4.8906 91.5833 -3.2344 Q91.5833 -1.5781 90.849 -0.7188 Q90.1302 0.125 88.9271 0.125 Q88.1927 0.125 87.7083 -0.1562 Q87.224 -0.4375 86.9427 -0.8125 L86.8646 -0.8125 Q86.8958 -0.6094 86.9115 -0.2969 Q86.9427 0.0156 86.9427 0.2344 L86.9427 2.875 L85.8802 2.875 L85.8802 -6.4375 L86.7552 -6.4375 L86.8958 -5.5625 L86.9427 -5.5625 Q87.224 -5.9688 87.6927 -6.25 Q88.1615 -6.5469 88.9427 -6.5469 ZM88.7552 -5.6562 Q87.7708 -5.6562 87.3646 -5.1094 Q86.9583 -4.5625 86.9427 -3.4375 L86.9427 -3.2344 Q86.9427 -2.0469 87.3333 -1.3906 Q87.724 -0.75 88.7708 -0.75 Q89.3646 -0.75 89.7396 -1.0781 Q90.1146 -1.4062 90.3021 -1.9531 Q90.4896 -2.5156 90.4896 -3.2344 Q90.4896 -4.3438 90.0677 -5 Q89.6458 -5.6562 88.7552 -5.6562 ZM96.3228 -6.5469 Q97.5103 -6.5469 98.229 -5.7188 Q98.9634 -4.8906 98.9634 -3.2344 Q98.9634 -1.5781 98.229 -0.7188 Q97.5103 0.125 96.3071 0.125 Q95.5728 0.125 95.0884 -0.1562 Q94.604 -0.4375 94.3228 -0.8125 L94.2446 -0.8125 Q94.2759 -0.6094 94.2915 -0.2969 Q94.3228 0.0156 94.3228 0.2344 L94.3228 2.875 L93.2603 2.875 L93.2603 -6.4375 L94.1353 -6.4375 L94.2759 -5.5625 L94.3228 -5.5625 Q94.604 -5.9688 95.0728 -6.25 Q95.5415 -6.5469 96.3228 -6.5469 ZM96.1353 -5.6562 Q95.1509 -5.6562 94.7446 -5.1094 Q94.3384 -4.5625 94.3228 -3.4375 L94.3228 -3.2344 Q94.3228 -2.0469 94.7134 -1.3906 Q95.104 -0.75 96.1509 -0.75 Q96.7446 -0.75 97.1196 -1.0781 Q97.4946 -1.4062 97.6821 -1.9531 Q97.8696 -2.5156 97.8696 -3.2344 Q97.8696 -4.3438 97.4478 -5 Q97.0259 -5.6562 96.1353 -5.6562 ZM101.7028 0 L100.6403 0 L100.6403 -9.125 L101.7028 -9.125 L101.7028 0 ZM104.2832 -8.8438 Q104.5176 -8.8438 104.7051 -8.6719 Q104.8926 -8.5156 104.8926 -8.1719 Q104.8926 -7.8438 104.7051 -7.6719 Q104.5176 -7.5 104.2832 -7.5 Q104.0176 -7.5 103.8301 -7.6719 Q103.6582 -7.8438 103.6582 -8.1719 Q103.6582 -8.5156 103.8301 -8.6719 Q104.0176 -8.8438 104.2832 -8.8438 ZM104.7988 -6.4375 L104.7988 0 L103.7363 0 L103.7363 -6.4375 L104.7988 -6.4375 ZM109.4105 0.125 Q108.5667 0.125 107.8949 -0.2188 Q107.2386 -0.5781 106.848 -1.3125 Q106.473 -2.0469 106.473 -3.1875 Q106.473 -4.375 106.8636 -5.1094 Q107.2699 -5.8594 107.9417 -6.2031 Q108.6292 -6.5469 109.4886 -6.5469 Q109.973 -6.5469 110.4261 -6.4375 Q110.8949 -6.3438 111.1761 -6.2031 L110.8636 -5.3281 Q110.5667 -5.4375 110.1761 -5.5312 Q109.8011 -5.625 109.4574 -5.625 Q107.5667 -5.625 107.5667 -3.1875 Q107.5667 -2.0312 108.0199 -1.4062 Q108.4886 -0.7969 109.4105 -0.7969 Q109.9261 -0.7969 110.3324 -0.9062 Q110.7386 -1.0156 111.0667 -1.1562 L111.0667 -0.2344 Q110.7542 -0.0625 110.3636 0.0312 Q109.973 0.125 109.4105 0.125 ZM115.0299 -6.5469 Q116.2018 -6.5469 116.7643 -6.0312 Q117.3424 -5.5156 117.3424 -4.375 L117.3424 0 L116.5612 0 L116.358 -0.9062 L116.3112 -0.9062 Q115.8893 -0.3906 115.4205 -0.125 Q114.9674 0.125 114.1549 0.125 Q113.2799 0.125 112.7018 -0.3281 Q112.1237 -0.7969 112.1237 -1.7812 Q112.1237 -2.75 112.8737 -3.2656 Q113.6393 -3.7969 115.2174 -3.8438 L116.3112 -3.875 L116.3112 -4.2656 Q116.3112 -5.0625 115.9518 -5.375 Q115.608 -5.6875 114.9674 -5.6875 Q114.4674 -5.6875 114.0143 -5.5312 Q113.5612 -5.3906 113.1549 -5.2031 L112.8424 -5.9844 Q113.2643 -6.2188 113.8268 -6.375 Q114.4049 -6.5469 115.0299 -6.5469 ZM115.3424 -3.1094 Q114.1393 -3.0625 113.6705 -2.7188 Q113.2174 -2.3906 113.2174 -1.7812 Q113.2174 -1.2344 113.5455 -0.9844 Q113.8737 -0.7344 114.3893 -0.7344 Q115.2174 -0.7344 115.7487 -1.1719 Q116.2955 -1.625 116.2955 -2.5625 L116.2955 -3.1406 L115.3424 -3.1094 ZM121.4807 -0.75 Q121.7151 -0.75 121.9651 -0.7812 Q122.2151 -0.8281 122.3713 -0.875 L122.3713 -0.0781 Q122.2151 0.0156 121.9026 0.0625 Q121.5901 0.125 121.2932 0.125 Q120.7932 0.125 120.3557 -0.0469 Q119.9338 -0.2344 119.6682 -0.6562 Q119.4182 -1.0938 119.4182 -1.875 L119.4182 -5.6094 L118.4963 -5.6094 L118.4963 -6.125 L119.4182 -6.5469 L119.8401 -7.9062 L120.4651 -7.9062 L120.4651 -6.4375 L122.3244 -6.4375 L122.3244 -5.6094 L120.4651 -5.6094 L120.4651 -1.8906 Q120.4651 -1.3125 120.7463 -1.0312 Q121.0276 -0.75 121.4807 -0.75 ZM124.2034 -8.8438 Q124.4377 -8.8438 124.6252 -8.6719 Q124.8127 -8.5156 124.8127 -8.1719 Q124.8127 -7.8438 124.6252 -7.6719 Q124.4377 -7.5 124.2034 -7.5 Q123.9377 -7.5 123.7502 -7.6719 Q123.5784 -7.8438 123.5784 -8.1719 Q123.5784 -8.5156 123.7502 -8.6719 Q123.9377 -8.8438 124.2034 -8.8438 ZM124.719 -6.4375 L124.719 0 L123.6565 0 L123.6565 -6.4375 L124.719 -6.4375 ZM132.3463 -3.2344 Q132.3463 -1.625 131.5338 -0.75 Q130.7213 0.125 129.3463 0.125 Q128.5025 0.125 127.8306 -0.2656 Q127.1588 -0.6562 126.7681 -1.4062 Q126.3931 -2.1562 126.3931 -3.2344 Q126.3931 -4.8281 127.19 -5.6875 Q128.0025 -6.5469 129.3775 -6.5469 Q130.2681 -6.5469 130.9244 -6.1562 Q131.5963 -5.7656 131.9713 -5.0312 Q132.3463 -4.2969 132.3463 -3.2344 ZM127.4869 -3.2344 Q127.4869 -2.0938 127.94 -1.4219 Q128.3931 -0.75 129.3775 -0.75 Q130.3463 -0.75 130.7994 -1.4219 Q131.2525 -2.0938 131.2525 -3.2344 Q131.2525 -4.375 130.7994 -5.0156 Q130.3463 -5.6562 129.3619 -5.6562 Q128.3775 -5.6562 127.9244 -5.0156 Q127.4869 -4.375 127.4869 -3.2344 ZM137.1063 -6.5469 Q138.2626 -6.5469 138.8407 -5.9844 Q139.4344 -5.4375 139.4344 -4.1875 L139.4344 0 L138.4032 0 L138.4032 -4.1094 Q138.4032 -5.6562 136.9501 -5.6562 Q135.8876 -5.6562 135.4813 -5.0625 Q135.0751 -4.4688 135.0751 -3.3438 L135.0751 0 L134.0126 0 L134.0126 -6.4375 L134.8719 -6.4375 L135.0282 -5.5625 L135.0907 -5.5625 Q135.4032 -6.0625 135.9501 -6.2969 Q136.4969 -6.5469 137.1063 -6.5469 ZM141.0067 -2.3281 L145.538 -4.2188 L141.0067 -6.3594 L141.0067 -7.2969 L146.663 -4.4688 L146.663 -3.875 L141.0067 -1.3906 L141.0067 -2.3281 ZM147.8708 -2.3281 L152.402 -4.2188 L147.8708 -6.3594 L147.8708 -7.2969 L153.527 -4.4688 L153.527 -3.875 L147.8708 -1.3906 L147.8708 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath4);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-288.5556,-376.5637)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM33.9043 0 L33.2793 -2.0469 L30.1543 -2.0469 L29.5293 0 L27.5762 0 L30.6075 -8.6094 L32.8262 -8.6094 L35.8575 0 L33.9043 0 ZM32.2168 -5.5625 Q32.1543 -5.7656 32.0606 -6.0781 Q31.9668 -6.3906 31.8731 -6.7031 Q31.7793 -7.0312 31.7168 -7.2656 Q31.6543 -7.0312 31.545 -6.6719 Q31.4512 -6.3281 31.3575 -6 Q31.2793 -5.6875 31.2168 -5.5625 L30.6075 -3.5625 L32.8418 -3.5625 L32.2168 -5.5625 ZM40.4344 -6.6719 Q41.5438 -6.6719 42.2313 -5.8125 Q42.9188 -4.9531 42.9188 -3.2812 Q42.9188 -1.625 42.2 -0.75 Q41.4969 0.125 40.3875 0.125 Q39.6844 0.125 39.2625 -0.125 Q38.8406 -0.3906 38.575 -0.7188 L38.4813 -0.7188 Q38.575 -0.2188 38.575 0.2344 L38.575 2.875 L36.7938 2.875 L36.7938 -6.5469 L38.2469 -6.5469 L38.4969 -5.7031 L38.575 -5.7031 Q38.8406 -6.0938 39.2781 -6.375 Q39.7313 -6.6719 40.4344 -6.6719 ZM39.8719 -5.25 Q39.1688 -5.25 38.8875 -4.8125 Q38.6063 -4.375 38.575 -3.4844 L38.575 -3.2969 Q38.575 -2.3594 38.8563 -1.8438 Q39.1375 -1.3281 39.8875 -1.3281 Q40.4969 -1.3281 40.7938 -1.8438 Q41.0906 -2.3594 41.0906 -3.3125 Q41.0906 -5.25 39.8719 -5.25 ZM48.0304 -6.6719 Q49.1398 -6.6719 49.8273 -5.8125 Q50.5148 -4.9531 50.5148 -3.2812 Q50.5148 -1.625 49.7961 -0.75 Q49.0929 0.125 47.9836 0.125 Q47.2804 0.125 46.8586 -0.125 Q46.4367 -0.3906 46.1711 -0.7188 L46.0773 -0.7188 Q46.1711 -0.2188 46.1711 0.2344 L46.1711 2.875 L44.3898 2.875 L44.3898 -6.5469 L45.8429 -6.5469 L46.0929 -5.7031 L46.1711 -5.7031 Q46.4367 -6.0938 46.8742 -6.375 Q47.3273 -6.6719 48.0304 -6.6719 ZM47.4679 -5.25 Q46.7648 -5.25 46.4836 -4.8125 Q46.2023 -4.375 46.1711 -3.4844 L46.1711 -3.2969 Q46.1711 -2.3594 46.4523 -1.8438 Q46.7336 -1.3281 47.4836 -1.3281 Q48.0929 -1.3281 48.3898 -1.8438 Q48.6867 -2.3594 48.6867 -3.3125 Q48.6867 -5.25 47.4679 -5.25 ZM53.7671 0 L51.9859 0 L51.9859 -9.125 L53.7671 -9.125 L53.7671 0 ZM56.5521 -9.125 Q56.9428 -9.125 57.224 -8.9375 Q57.5209 -8.75 57.5209 -8.25 Q57.5209 -7.75 57.224 -7.5625 Q56.9428 -7.375 56.5521 -7.375 Q56.1303 -7.375 55.849 -7.5625 Q55.5678 -7.75 55.5678 -8.25 Q55.5678 -8.75 55.849 -8.9375 Q56.1303 -9.125 56.5521 -9.125 ZM57.4271 -6.5469 L57.4271 0 L55.6459 0 L55.6459 -6.5469 L57.4271 -6.5469 ZM61.9622 0.125 Q60.509 0.125 59.7122 -0.6875 Q58.9153 -1.5 58.9153 -3.2344 Q58.9153 -4.4375 59.3215 -5.1875 Q59.7278 -5.9531 60.4465 -6.3125 Q61.1809 -6.6719 62.1184 -6.6719 Q62.7903 -6.6719 63.2903 -6.5312 Q63.7903 -6.4062 64.1653 -6.2344 L63.634 -4.8438 Q63.2122 -5.0156 62.8372 -5.125 Q62.4778 -5.2344 62.1184 -5.2344 Q60.7278 -5.2344 60.7278 -3.25 Q60.7278 -2.2656 61.0872 -1.7969 Q61.4622 -1.3281 62.1184 -1.3281 Q62.6809 -1.3281 63.1184 -1.4688 Q63.5559 -1.625 63.9622 -1.8906 L63.9622 -0.375 Q63.5559 -0.1094 63.1028 0 Q62.6497 0.125 61.9622 0.125 ZM68.1615 -6.6875 Q69.474 -6.6875 70.1771 -6.1094 Q70.8802 -5.5469 70.8802 -4.375 L70.8802 0 L69.6302 0 L69.2865 -0.8906 L69.2396 -0.8906 Q68.8177 -0.3594 68.349 -0.1094 Q67.8802 0.125 67.0677 0.125 Q66.1927 0.125 65.6146 -0.3906 Q65.0365 -0.9062 65.0365 -1.9531 Q65.0365 -3 65.7708 -3.5 Q66.5052 -4 67.974 -4.0469 L69.1146 -4.0781 L69.1146 -4.375 Q69.1146 -4.8906 68.8333 -5.125 Q68.5677 -5.3594 68.0833 -5.3594 Q67.6146 -5.3594 67.1458 -5.2188 Q66.6927 -5.0938 66.2396 -4.8906 L65.6458 -6.0938 Q66.1771 -6.375 66.8177 -6.5312 Q67.4583 -6.6875 68.1615 -6.6875 ZM68.4115 -3.0156 Q67.5521 -2.9844 67.2083 -2.6875 Q66.8802 -2.4062 66.8802 -1.9375 Q66.8802 -1.5312 67.1146 -1.3594 Q67.349 -1.1875 67.7396 -1.1875 Q68.3177 -1.1875 68.7083 -1.5312 Q69.1146 -1.875 69.1146 -2.5 L69.1146 -3.0312 L68.4115 -3.0156 ZM75.4876 -1.3125 Q75.7845 -1.3125 76.0501 -1.3594 Q76.3314 -1.4219 76.6126 -1.5156 L76.6126 -0.1875 Q76.3158 -0.0625 75.8939 0.0312 Q75.472 0.125 74.972 0.125 Q74.3783 0.125 73.9095 -0.0625 Q73.4564 -0.2656 73.1751 -0.7344 Q72.9095 -1.2188 72.9095 -2.0469 L72.9095 -5.2031 L72.0658 -5.2031 L72.0658 -5.9688 L73.0501 -6.5625 L73.5658 -7.9375 L74.7064 -7.9375 L74.7064 -6.5469 L76.5345 -6.5469 L76.5345 -5.2031 L74.7064 -5.2031 L74.7064 -2.0469 Q74.7064 -1.6875 74.9095 -1.5 Q75.1283 -1.3125 75.4876 -1.3125 ZM78.8363 -9.125 Q79.2269 -9.125 79.5082 -8.9375 Q79.805 -8.75 79.805 -8.25 Q79.805 -7.75 79.5082 -7.5625 Q79.2269 -7.375 78.8363 -7.375 Q78.4144 -7.375 78.1332 -7.5625 Q77.8519 -7.75 77.8519 -8.25 Q77.8519 -8.75 78.1332 -8.9375 Q78.4144 -9.125 78.8363 -9.125 ZM79.7113 -6.5469 L79.7113 0 L77.93 0 L77.93 -6.5469 L79.7113 -6.5469 ZM87.5432 -3.2812 Q87.5432 -1.6562 86.6838 -0.7656 Q85.8244 0.125 84.3557 0.125 Q83.4338 0.125 82.7151 -0.2656 Q82.0119 -0.6719 81.6057 -1.4375 Q81.1994 -2.2031 81.1994 -3.2812 Q81.1994 -4.9219 82.0432 -5.7969 Q82.9026 -6.6719 84.3869 -6.6719 Q85.3088 -6.6719 86.0119 -6.2656 Q86.7307 -5.875 87.1369 -5.125 Q87.5432 -4.375 87.5432 -3.2812 ZM83.0119 -3.2812 Q83.0119 -2.3125 83.3244 -1.8125 Q83.6526 -1.3125 84.3713 -1.3125 Q85.0744 -1.3125 85.3869 -1.8125 Q85.7151 -2.3125 85.7151 -3.2812 Q85.7151 -4.2656 85.3869 -4.75 Q85.0744 -5.2344 84.3557 -5.2344 Q83.6526 -5.2344 83.3244 -4.75 Q83.0119 -4.2656 83.0119 -3.2812 ZM92.7369 -6.6719 Q93.7994 -6.6719 94.4244 -6.0938 Q95.065 -5.5312 95.065 -4.2656 L95.065 0 L93.2837 0 L93.2837 -3.8281 Q93.2837 -4.5312 93.0181 -4.8906 Q92.7681 -5.25 92.2212 -5.25 Q91.4087 -5.25 91.0962 -4.6875 Q90.7994 -4.125 90.7994 -3.0781 L90.7994 0 L89.0181 0 L89.0181 -6.5469 L90.3775 -6.5469 L90.6275 -5.7188 L90.7212 -5.7188 Q91.0337 -6.2188 91.5806 -6.4375 Q92.1275 -6.6719 92.7369 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath5);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-281.3442" y="-233.5502" width="491.4202" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-281.3442" y="-233.5502" width="491.4202" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-281.3442" y="-218.5502" width="1228.5505" style="clip-path:url(#clipPath2); stroke:none;" height="341.7861"
+      /><rect x="-281.3442" y="-218.5502" width="1228.5505" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="341.7861"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(313.931,-199.5502)"
+    ><path d="M8.625 -6.6719 Q9.75 -6.6719 10.3125 -6.0938 Q10.8906 -5.5312 10.8906 -4.2656 L10.8906 0 L9.0938 0 L9.0938 -3.8281 Q9.0938 -5.25 8.1094 -5.25 Q7.4062 -5.25 7.0938 -4.7344 Q6.7969 -4.2344 6.7969 -3.2812 L6.7969 0 L5.0156 0 L5.0156 -3.8281 Q5.0156 -5.25 4.0312 -5.25 Q3.2812 -5.25 3 -4.6875 Q2.7188 -4.125 2.7188 -3.0781 L2.7188 0 L0.9375 0 L0.9375 -6.5469 L2.2969 -6.5469 L2.5469 -5.7188 L2.6406 -5.7188 Q2.9375 -6.2188 3.4531 -6.4375 Q3.9844 -6.6719 4.5469 -6.6719 Q5.2656 -6.6719 5.7656 -6.4375 Q6.2812 -6.2031 6.5469 -5.7188 L6.7031 -5.7188 Q7 -6.2188 7.5312 -6.4375 Q8.0625 -6.6719 8.625 -6.6719 ZM18.6747 -3.2812 Q18.6747 -1.6562 17.8153 -0.7656 Q16.956 0.125 15.4872 0.125 Q14.5653 0.125 13.8466 -0.2656 Q13.1435 -0.6719 12.7372 -1.4375 Q12.331 -2.2031 12.331 -3.2812 Q12.331 -4.9219 13.1747 -5.7969 Q14.0341 -6.6719 15.5185 -6.6719 Q16.4403 -6.6719 17.1435 -6.2656 Q17.8622 -5.875 18.2685 -5.125 Q18.6747 -4.375 18.6747 -3.2812 ZM14.1435 -3.2812 Q14.1435 -2.3125 14.456 -1.8125 Q14.7841 -1.3125 15.5028 -1.3125 Q16.206 -1.3125 16.5185 -1.8125 Q16.8466 -2.3125 16.8466 -3.2812 Q16.8466 -4.2656 16.5185 -4.75 Q16.206 -5.2344 15.4872 -5.2344 Q14.7841 -5.2344 14.456 -4.75 Q14.1435 -4.2656 14.1435 -3.2812 ZM22.2278 0.125 Q21.134 0.125 20.4465 -0.7344 Q19.759 -1.5938 19.759 -3.2656 Q19.759 -4.9375 20.4465 -5.7969 Q21.1496 -6.6719 22.2746 -6.6719 Q22.9778 -6.6719 23.4309 -6.3906 Q23.8996 -6.125 24.1496 -5.7188 L24.2121 -5.7188 Q24.1809 -5.9062 24.134 -6.2656 Q24.0871 -6.6406 24.0871 -7.0156 L24.0871 -9.125 L25.8684 -9.125 L25.8684 0 L24.509 0 L24.1496 -0.8594 L24.0871 -0.8594 Q23.8215 -0.4375 23.3684 -0.1562 Q22.9309 0.125 22.2278 0.125 ZM22.8528 -1.3125 Q23.5871 -1.3125 23.884 -1.75 Q24.1965 -2.1875 24.1965 -3.0625 L24.1965 -3.25 Q24.1965 -4.2188 23.8996 -4.7188 Q23.6184 -5.2188 22.8215 -5.2188 Q22.2434 -5.2188 21.8996 -4.7031 Q21.5715 -4.2031 21.5715 -3.2344 Q21.5715 -2.2812 21.8996 -1.7969 Q22.2434 -1.3125 22.8528 -1.3125 ZM30.4488 -6.6719 Q31.7926 -6.6719 32.5894 -5.8906 Q33.3863 -5.125 33.3863 -3.7031 L33.3863 -2.8281 L29.1676 -2.8281 Q29.1832 -2.0781 29.6051 -1.6406 Q30.0426 -1.2188 30.7926 -1.2188 Q31.4332 -1.2188 31.9488 -1.3438 Q32.4644 -1.4688 33.0113 -1.7344 L33.0113 -0.3438 Q32.5269 -0.1094 31.9957 0 Q31.4644 0.125 30.7144 0.125 Q29.7301 0.125 28.9644 -0.2344 Q28.2144 -0.6094 27.7769 -1.3438 Q27.3551 -2.0938 27.3551 -3.2344 Q27.3551 -4.375 27.7301 -5.1406 Q28.1207 -5.9062 28.8238 -6.2812 Q29.5269 -6.6719 30.4488 -6.6719 ZM30.4488 -5.4062 Q29.9332 -5.4062 29.5894 -5.0625 Q29.2613 -4.7344 29.1988 -4.0156 L31.6988 -4.0156 Q31.6988 -4.625 31.3863 -5.0156 Q31.0894 -5.4062 30.4488 -5.4062 ZM36.619 0 L34.8378 0 L34.8378 -9.125 L36.619 -9.125 L36.619 0 Z" style="stroke:none; clip-path:url(#clipPath6);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-266.3442" y="-200.8809" width="479.4202" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-266.3442" y="-200.8809" width="479.4202" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-266.3442" y="-185.8809" width="1198.5505" style="clip-path:url(#clipPath2); stroke:none;" height="294.1169"
+      /><rect x="-266.3442" y="-185.8809" width="1198.5505" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="294.1169"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(309.931,-166.8809)"
+    ><path d="M3.0156 0.125 Q1.9219 0.125 1.2344 -0.7344 Q0.5469 -1.5938 0.5469 -3.2656 Q0.5469 -4.9375 1.2344 -5.7969 Q1.9375 -6.6719 3.0625 -6.6719 Q3.7656 -6.6719 4.2188 -6.3906 Q4.6875 -6.125 4.9375 -5.7188 L5 -5.7188 Q4.9688 -5.9062 4.9219 -6.2656 Q4.875 -6.6406 4.875 -7.0156 L4.875 -9.125 L6.6562 -9.125 L6.6562 0 L5.2969 0 L4.9375 -0.8594 L4.875 -0.8594 Q4.6094 -0.4375 4.1562 -0.1562 Q3.7188 0.125 3.0156 0.125 ZM3.6406 -1.3125 Q4.375 -1.3125 4.6719 -1.75 Q4.9844 -2.1875 4.9844 -3.0625 L4.9844 -3.25 Q4.9844 -4.2188 4.6875 -4.7188 Q4.4062 -5.2188 3.6094 -5.2188 Q3.0312 -5.2188 2.6875 -4.7031 Q2.3594 -4.2031 2.3594 -3.2344 Q2.3594 -2.2812 2.6875 -1.7969 Q3.0312 -1.3125 3.6406 -1.3125 ZM14.4867 -3.2812 Q14.4867 -1.6562 13.6273 -0.7656 Q12.7679 0.125 11.2992 0.125 Q10.3773 0.125 9.6586 -0.2656 Q8.9554 -0.6719 8.5492 -1.4375 Q8.1429 -2.2031 8.1429 -3.2812 Q8.1429 -4.9219 8.9867 -5.7969 Q9.8461 -6.6719 11.3304 -6.6719 Q12.2523 -6.6719 12.9554 -6.2656 Q13.6742 -5.875 14.0804 -5.125 Q14.4867 -4.375 14.4867 -3.2812 ZM9.9554 -3.2812 Q9.9554 -2.3125 10.2679 -1.8125 Q10.5961 -1.3125 11.3148 -1.3125 Q12.0179 -1.3125 12.3304 -1.8125 Q12.6586 -2.3125 12.6586 -3.2812 Q12.6586 -4.2656 12.3304 -4.75 Q12.0179 -5.2344 11.2992 -5.2344 Q10.5961 -5.2344 10.2679 -4.75 Q9.9554 -4.2656 9.9554 -3.2812 ZM23.6491 -6.6719 Q24.7741 -6.6719 25.3366 -6.0938 Q25.9147 -5.5312 25.9147 -4.2656 L25.9147 0 L24.1179 0 L24.1179 -3.8281 Q24.1179 -5.25 23.1335 -5.25 Q22.4304 -5.25 22.1179 -4.7344 Q21.821 -4.2344 21.821 -3.2812 L21.821 0 L20.0397 0 L20.0397 -3.8281 Q20.0397 -5.25 19.0554 -5.25 Q18.3054 -5.25 18.0241 -4.6875 Q17.7429 -4.125 17.7429 -3.0781 L17.7429 0 L15.9616 0 L15.9616 -6.5469 L17.321 -6.5469 L17.571 -5.7188 L17.6647 -5.7188 Q17.9616 -6.2188 18.4772 -6.4375 Q19.0085 -6.6719 19.571 -6.6719 Q20.2897 -6.6719 20.7897 -6.4375 Q21.3054 -6.2031 21.571 -5.7188 L21.7272 -5.7188 Q22.0241 -6.2188 22.5554 -6.4375 Q23.0866 -6.6719 23.6491 -6.6719 ZM30.4332 -6.6875 Q31.7457 -6.6875 32.4488 -6.1094 Q33.1519 -5.5469 33.1519 -4.375 L33.1519 0 L31.9019 0 L31.5582 -0.8906 L31.5113 -0.8906 Q31.0894 -0.3594 30.6207 -0.1094 Q30.1519 0.125 29.3394 0.125 Q28.4644 0.125 27.8863 -0.3906 Q27.3082 -0.9062 27.3082 -1.9531 Q27.3082 -3 28.0426 -3.5 Q28.7769 -4 30.2457 -4.0469 L31.3863 -4.0781 L31.3863 -4.375 Q31.3863 -4.8906 31.1051 -5.125 Q30.8394 -5.3594 30.3551 -5.3594 Q29.8863 -5.3594 29.4176 -5.2188 Q28.9644 -5.0938 28.5113 -4.8906 L27.9176 -6.0938 Q28.4488 -6.375 29.0894 -6.5312 Q29.7301 -6.6875 30.4332 -6.6875 ZM30.6832 -3.0156 Q29.8238 -2.9844 29.4801 -2.6875 Q29.1519 -2.4062 29.1519 -1.9375 Q29.1519 -1.5312 29.3863 -1.3594 Q29.6207 -1.1875 30.0113 -1.1875 Q30.5894 -1.1875 30.9801 -1.5312 Q31.3863 -1.875 31.3863 -2.5 L31.3863 -3.0312 L30.6832 -3.0156 ZM35.9 -9.125 Q36.2906 -9.125 36.5719 -8.9375 Q36.8687 -8.75 36.8687 -8.25 Q36.8687 -7.75 36.5719 -7.5625 Q36.2906 -7.375 35.9 -7.375 Q35.4781 -7.375 35.1969 -7.5625 Q34.9156 -7.75 34.9156 -8.25 Q34.9156 -8.75 35.1969 -8.9375 Q35.4781 -9.125 35.9 -9.125 ZM36.775 -6.5469 L36.775 0 L34.9937 0 L34.9937 -6.5469 L36.775 -6.5469 ZM42.3725 -6.6719 Q43.435 -6.6719 44.06 -6.0938 Q44.7006 -5.5312 44.7006 -4.2656 L44.7006 0 L42.9194 0 L42.9194 -3.8281 Q42.9194 -4.5312 42.6538 -4.8906 Q42.4038 -5.25 41.8569 -5.25 Q41.0444 -5.25 40.7319 -4.6875 Q40.435 -4.125 40.435 -3.0781 L40.435 0 L38.6538 0 L38.6538 -6.5469 L40.0131 -6.5469 L40.2631 -5.7188 L40.3569 -5.7188 Q40.6694 -6.2188 41.2163 -6.4375 Q41.7631 -6.6719 42.3725 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="326.4054" y="-157.8087" width="142.7255" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="326.4054" y="-157.8087" width="142.7255" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="326.4054" y="-142.8087" width="356.8139" style="clip-path:url(#clipPath2); stroke:none;" height="136.1077"
+      /><rect x="326.4054" y="-142.8087" width="356.8139" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="136.1077"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(486.8124,-123.8087)"
+    ><path d="M3.6406 -6.6719 Q4.9844 -6.6719 5.7812 -5.8906 Q6.5781 -5.125 6.5781 -3.7031 L6.5781 -2.8281 L2.3594 -2.8281 Q2.375 -2.0781 2.7969 -1.6406 Q3.2344 -1.2188 3.9844 -1.2188 Q4.625 -1.2188 5.1406 -1.3438 Q5.6562 -1.4688 6.2031 -1.7344 L6.2031 -0.3438 Q5.7188 -0.1094 5.1875 0 Q4.6562 0.125 3.9062 0.125 Q2.9219 0.125 2.1562 -0.2344 Q1.4062 -0.6094 0.9688 -1.3438 Q0.5469 -2.0938 0.5469 -3.2344 Q0.5469 -4.375 0.9219 -5.1406 Q1.3125 -5.9062 2.0156 -6.2812 Q2.7188 -6.6719 3.6406 -6.6719 ZM3.6406 -5.4062 Q3.125 -5.4062 2.7812 -5.0625 Q2.4531 -4.7344 2.3906 -4.0156 L4.8906 -4.0156 Q4.8906 -4.625 4.5781 -5.0156 Q4.2812 -5.4062 3.6406 -5.4062 ZM11.7483 -6.6719 Q12.8108 -6.6719 13.4358 -6.0938 Q14.0764 -5.5312 14.0764 -4.2656 L14.0764 0 L12.2952 0 L12.2952 -3.8281 Q12.2952 -4.5312 12.0296 -4.8906 Q11.7796 -5.25 11.2327 -5.25 Q10.4202 -5.25 10.1077 -4.6875 Q9.8108 -4.125 9.8108 -3.0781 L9.8108 0 L8.0296 0 L8.0296 -6.5469 L9.3889 -6.5469 L9.6389 -5.7188 L9.7327 -5.7188 Q10.0452 -6.2188 10.5921 -6.4375 Q11.1389 -6.6719 11.7483 -6.6719 ZM18.6792 -1.3125 Q18.9761 -1.3125 19.2417 -1.3594 Q19.523 -1.4219 19.8042 -1.5156 L19.8042 -0.1875 Q19.5074 -0.0625 19.0855 0.0312 Q18.6636 0.125 18.1636 0.125 Q17.5699 0.125 17.1011 -0.0625 Q16.648 -0.2656 16.3667 -0.7344 Q16.1011 -1.2188 16.1011 -2.0469 L16.1011 -5.2031 L15.2574 -5.2031 L15.2574 -5.9688 L16.2417 -6.5625 L16.7574 -7.9375 L17.898 -7.9375 L17.898 -6.5469 L19.7261 -6.5469 L19.7261 -5.2031 L17.898 -5.2031 L17.898 -2.0469 Q17.898 -1.6875 18.1011 -1.5 Q18.3199 -1.3125 18.6792 -1.3125 ZM22.0279 -9.125 Q22.4185 -9.125 22.6998 -8.9375 Q22.9966 -8.75 22.9966 -8.25 Q22.9966 -7.75 22.6998 -7.5625 Q22.4185 -7.375 22.0279 -7.375 Q21.606 -7.375 21.3248 -7.5625 Q21.0435 -7.75 21.0435 -8.25 Q21.0435 -8.75 21.3248 -8.9375 Q21.606 -9.125 22.0279 -9.125 ZM22.9029 -6.5469 L22.9029 0 L21.1216 0 L21.1216 -6.5469 L22.9029 -6.5469 ZM27.5473 -1.3125 Q27.8442 -1.3125 28.1098 -1.3594 Q28.391 -1.4219 28.6723 -1.5156 L28.6723 -0.1875 Q28.3754 -0.0625 27.9535 0.0312 Q27.5317 0.125 27.0317 0.125 Q26.4379 0.125 25.9692 -0.0625 Q25.516 -0.2656 25.2348 -0.7344 Q24.9692 -1.2188 24.9692 -2.0469 L24.9692 -5.2031 L24.1254 -5.2031 L24.1254 -5.9688 L25.1098 -6.5625 L25.6254 -7.9375 L26.766 -7.9375 L26.766 -6.5469 L28.5942 -6.5469 L28.5942 -5.2031 L26.766 -5.2031 L26.766 -2.0469 Q26.766 -1.6875 26.9692 -1.5 Q27.1879 -1.3125 27.5473 -1.3125 ZM29.0522 -6.5469 L31.0053 -6.5469 L32.2397 -2.875 Q32.3335 -2.6094 32.3803 -2.3281 Q32.4428 -2.0469 32.4585 -1.7344 L32.4897 -1.7344 Q32.5366 -2.0469 32.5991 -2.3281 Q32.6616 -2.6094 32.7553 -2.875 L33.9585 -6.5469 L35.8803 -6.5469 L33.1147 0.8438 Q32.7397 1.8594 32.021 2.3594 Q31.3022 2.875 30.3647 2.875 Q30.0678 2.875 29.8491 2.8438 Q29.6303 2.8125 29.4585 2.7812 L29.4585 1.375 Q29.5991 1.3906 29.771 1.4062 Q29.9585 1.4375 30.1616 1.4375 Q30.7397 1.4375 31.0678 1.0938 Q31.396 0.75 31.5522 0.2812 L31.6616 -0.0469 L29.0522 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath8);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="588.6989" y="-97.2833" width="79.5204" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="588.6989" y="-97.2833" width="79.5204" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(598.6989,-79.2833)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM24.6055 -6.5469 Q25.7618 -6.5469 26.3399 -5.9844 Q26.9336 -5.4375 26.9336 -4.1875 L26.9336 0 L25.9024 0 L25.9024 -4.1094 Q25.9024 -5.6562 24.4493 -5.6562 Q23.3868 -5.6562 22.9805 -5.0625 Q22.5743 -4.4688 22.5743 -3.3438 L22.5743 0 L21.5118 0 L21.5118 -6.4375 L22.3711 -6.4375 L22.5274 -5.5625 L22.5899 -5.5625 Q22.9024 -6.0625 23.4493 -6.2969 Q23.9961 -6.5469 24.6055 -6.5469 ZM31.0841 -0.75 Q31.3184 -0.75 31.5684 -0.7812 Q31.8184 -0.8281 31.9747 -0.875 L31.9747 -0.0781 Q31.8184 0.0156 31.5059 0.0625 Q31.1934 0.125 30.8966 0.125 Q30.3966 0.125 29.9591 -0.0469 Q29.5372 -0.2344 29.2716 -0.6562 Q29.0216 -1.0938 29.0216 -1.875 L29.0216 -5.6094 L28.0997 -5.6094 L28.0997 -6.125 L29.0216 -6.5469 L29.4434 -7.9062 L30.0684 -7.9062 L30.0684 -6.4375 L31.9278 -6.4375 L31.9278 -5.6094 L30.0684 -5.6094 L30.0684 -1.8906 Q30.0684 -1.3125 30.3497 -1.0312 Q30.6309 -0.75 31.0841 -0.75 ZM33.8067 -8.8438 Q34.0411 -8.8438 34.2286 -8.6719 Q34.4161 -8.5156 34.4161 -8.1719 Q34.4161 -7.8438 34.2286 -7.6719 Q34.0411 -7.5 33.8067 -7.5 Q33.5411 -7.5 33.3536 -7.6719 Q33.1817 -7.8438 33.1817 -8.1719 Q33.1817 -8.5156 33.3536 -8.6719 Q33.5411 -8.8438 33.8067 -8.8438 ZM34.3223 -6.4375 L34.3223 0 L33.2598 0 L33.2598 -6.4375 L34.3223 -6.4375 ZM38.5121 -0.75 Q38.7465 -0.75 38.9965 -0.7812 Q39.2465 -0.8281 39.4027 -0.875 L39.4027 -0.0781 Q39.2465 0.0156 38.934 0.0625 Q38.6215 0.125 38.3246 0.125 Q37.8246 0.125 37.3871 -0.0469 Q36.9652 -0.2344 36.6996 -0.6562 Q36.4496 -1.0938 36.4496 -1.875 L36.4496 -5.6094 L35.5277 -5.6094 L35.5277 -6.125 L36.4496 -6.5469 L36.8715 -7.9062 L37.4965 -7.9062 L37.4965 -6.4375 L39.3559 -6.4375 L39.3559 -5.6094 L37.4965 -5.6094 L37.4965 -1.8906 Q37.4965 -1.3125 37.7777 -1.0312 Q38.059 -0.75 38.5121 -0.75 ZM39.6879 -6.4375 L40.8129 -6.4375 L42.2035 -2.7656 Q42.391 -2.2969 42.5316 -1.8594 Q42.6723 -1.4219 42.7504 -1.0156 L42.7973 -1.0156 Q42.8598 -1.3125 43.016 -1.7969 Q43.1723 -2.2969 43.3441 -2.7812 L44.6566 -6.4375 L45.7973 -6.4375 L43.016 0.8906 Q42.6879 1.7969 42.141 2.3281 Q41.6098 2.875 40.6879 2.875 Q40.391 2.875 40.1723 2.8438 Q39.9535 2.8125 39.7973 2.7812 L39.7973 1.9375 Q39.9379 1.9688 40.1254 1.9844 Q40.3129 2.0156 40.516 2.0156 Q41.0629 2.0156 41.4066 1.7031 Q41.7504 1.3906 41.9379 0.875 L42.2816 0.0312 L39.6879 -6.4375 ZM46.3861 -2.3281 L50.9173 -4.2188 L46.3861 -6.3594 L46.3861 -7.2969 L52.0423 -4.4688 L52.0423 -3.875 L46.3861 -1.3906 L46.3861 -2.3281 ZM53.2501 -2.3281 L57.7814 -4.2188 L53.2501 -6.3594 L53.2501 -7.2969 L58.9064 -4.4688 L58.9064 -3.875 L53.2501 -1.3906 L53.2501 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath9);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(601.5429,-62.9392)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath10);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="736.9798" y="-153.2722" width="49.4819" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="736.9798" y="-153.2722" width="49.4819" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="736.9798" y="-138.2722" width="123.7047" style="clip-path:url(#clipPath2); stroke:none;" height="136.1077"
+      /><rect x="736.9798" y="-138.2722" width="123.7047" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="136.1077"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(776.806,-119.2722)"
+    ><path d="M4.5938 -6.6719 Q4.7344 -6.6719 4.9062 -6.6562 Q5.0938 -6.6406 5.2031 -6.625 L5.0625 -4.9375 Q4.9844 -4.9688 4.8125 -4.9844 Q4.6562 -5 4.5312 -5 Q4.0781 -5 3.6562 -4.8438 Q3.2344 -4.6875 2.9688 -4.3125 Q2.7188 -3.9531 2.7188 -3.3438 L2.7188 0 L0.9375 0 L0.9375 -6.5469 L2.2969 -6.5469 L2.5625 -5.4531 L2.6406 -5.4531 Q2.9219 -5.9531 3.4219 -6.3125 Q3.9375 -6.6719 4.5938 -6.6719 ZM9.0887 -6.6719 Q10.4324 -6.6719 11.2293 -5.8906 Q12.0262 -5.125 12.0262 -3.7031 L12.0262 -2.8281 L7.8074 -2.8281 Q7.823 -2.0781 8.2449 -1.6406 Q8.6824 -1.2188 9.4324 -1.2188 Q10.073 -1.2188 10.5887 -1.3438 Q11.1043 -1.4688 11.6512 -1.7344 L11.6512 -0.3438 Q11.1668 -0.1094 10.6355 0 Q10.1043 0.125 9.3543 0.125 Q8.3699 0.125 7.6043 -0.2344 Q6.8543 -0.6094 6.4168 -1.3438 Q5.9949 -2.0938 5.9949 -3.2344 Q5.9949 -4.375 6.3699 -5.1406 Q6.7605 -5.9062 7.4637 -6.2812 Q8.1668 -6.6719 9.0887 -6.6719 ZM9.0887 -5.4062 Q8.573 -5.4062 8.2293 -5.0625 Q7.9012 -4.7344 7.8387 -4.0156 L10.3387 -4.0156 Q10.3387 -4.625 10.0262 -5.0156 Q9.7293 -5.4062 9.0887 -5.4062 ZM21.1651 -6.6719 Q22.2901 -6.6719 22.8526 -6.0938 Q23.4307 -5.5312 23.4307 -4.2656 L23.4307 0 L21.6339 0 L21.6339 -3.8281 Q21.6339 -5.25 20.6495 -5.25 Q19.9464 -5.25 19.6339 -4.7344 Q19.337 -4.2344 19.337 -3.2812 L19.337 0 L17.5557 0 L17.5557 -3.8281 Q17.5557 -5.25 16.5714 -5.25 Q15.8214 -5.25 15.5401 -4.6875 Q15.2589 -4.125 15.2589 -3.0781 L15.2589 0 L13.4776 0 L13.4776 -6.5469 L14.837 -6.5469 L15.087 -5.7188 L15.1807 -5.7188 Q15.4776 -6.2188 15.9932 -6.4375 Q16.5245 -6.6719 17.087 -6.6719 Q17.8057 -6.6719 18.3057 -6.4375 Q18.8214 -6.2031 19.087 -5.7188 L19.2432 -5.7188 Q19.5401 -6.2188 20.0714 -6.4375 Q20.6026 -6.6719 21.1651 -6.6719 ZM31.2148 -3.2812 Q31.2148 -1.6562 30.3554 -0.7656 Q29.4961 0.125 28.0273 0.125 Q27.1054 0.125 26.3867 -0.2656 Q25.6836 -0.6719 25.2773 -1.4375 Q24.8711 -2.2031 24.8711 -3.2812 Q24.8711 -4.9219 25.7148 -5.7969 Q26.5742 -6.6719 28.0586 -6.6719 Q28.9804 -6.6719 29.6836 -6.2656 Q30.4023 -5.875 30.8086 -5.125 Q31.2148 -4.375 31.2148 -3.2812 ZM26.6836 -3.2812 Q26.6836 -2.3125 26.9961 -1.8125 Q27.3242 -1.3125 28.0429 -1.3125 Q28.7461 -1.3125 29.0586 -1.8125 Q29.3867 -2.3125 29.3867 -3.2812 Q29.3867 -4.2656 29.0586 -4.75 Q28.7461 -5.2344 28.0273 -5.2344 Q27.3242 -5.2344 26.9961 -4.75 Q26.6836 -4.2656 26.6836 -3.2812 ZM35.4554 -1.3125 Q35.7522 -1.3125 36.0179 -1.3594 Q36.2991 -1.4219 36.5804 -1.5156 L36.5804 -0.1875 Q36.2835 -0.0625 35.8616 0.0312 Q35.4397 0.125 34.9397 0.125 Q34.346 0.125 33.8772 -0.0625 Q33.4241 -0.2656 33.1429 -0.7344 Q32.8772 -1.2188 32.8772 -2.0469 L32.8772 -5.2031 L32.0335 -5.2031 L32.0335 -5.9688 L33.0179 -6.5625 L33.5335 -7.9375 L34.6741 -7.9375 L34.6741 -6.5469 L36.5022 -6.5469 L36.5022 -5.2031 L34.6741 -5.2031 L34.6741 -2.0469 Q34.6741 -1.6875 34.8772 -1.5 Q35.096 -1.3125 35.4554 -1.3125 ZM40.6009 -6.6719 Q41.9447 -6.6719 42.7415 -5.8906 Q43.5384 -5.125 43.5384 -3.7031 L43.5384 -2.8281 L39.3197 -2.8281 Q39.3353 -2.0781 39.7572 -1.6406 Q40.1947 -1.2188 40.9447 -1.2188 Q41.5853 -1.2188 42.1009 -1.3438 Q42.6165 -1.4688 43.1634 -1.7344 L43.1634 -0.3438 Q42.679 -0.1094 42.1478 0 Q41.6165 0.125 40.8665 0.125 Q39.8822 0.125 39.1165 -0.2344 Q38.3665 -0.6094 37.929 -1.3438 Q37.5072 -2.0938 37.5072 -3.2344 Q37.5072 -4.375 37.8822 -5.1406 Q38.2728 -5.9062 38.9759 -6.2812 Q39.679 -6.6719 40.6009 -6.6719 ZM40.6009 -5.4062 Q40.0853 -5.4062 39.7415 -5.0625 Q39.4134 -4.7344 39.3509 -4.0156 L41.8509 -4.0156 Q41.8509 -4.625 41.5384 -5.0156 Q41.2415 -5.4062 40.6009 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath11);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-251.3442" y="-175.638" width="162.735" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-251.3442" y="-175.638" width="162.735" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-251.3442" y="-160.638" width="406.8374" style="clip-path:url(#clipPath2); stroke:none;" height="253.874"
+      /><rect x="-251.3442" y="-160.638" width="406.8374" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="253.874"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-82.5098,-141.638)"
+    ><path d="M4.5781 -6.6719 Q5.6875 -6.6719 6.375 -5.8125 Q7.0625 -4.9531 7.0625 -3.2812 Q7.0625 -1.625 6.3438 -0.75 Q5.6406 0.125 4.5312 0.125 Q3.8281 0.125 3.4062 -0.125 Q2.9844 -0.3906 2.7188 -0.7188 L2.625 -0.7188 Q2.7188 -0.2188 2.7188 0.2344 L2.7188 2.875 L0.9375 2.875 L0.9375 -6.5469 L2.3906 -6.5469 L2.6406 -5.7031 L2.7188 -5.7031 Q2.9844 -6.0938 3.4219 -6.375 Q3.875 -6.6719 4.5781 -6.6719 ZM4.0156 -5.25 Q3.3125 -5.25 3.0312 -4.8125 Q2.75 -4.375 2.7188 -3.4844 L2.7188 -3.2969 Q2.7188 -2.3594 3 -1.8438 Q3.2812 -1.3281 4.0312 -1.3281 Q4.6406 -1.3281 4.9375 -1.8438 Q5.2344 -2.3594 5.2344 -3.3125 Q5.2344 -5.25 4.0156 -5.25 ZM11.2367 -6.6719 Q12.5804 -6.6719 13.3773 -5.8906 Q14.1742 -5.125 14.1742 -3.7031 L14.1742 -2.8281 L9.9554 -2.8281 Q9.9711 -2.0781 10.3929 -1.6406 Q10.8304 -1.2188 11.5804 -1.2188 Q12.2211 -1.2188 12.7367 -1.3438 Q13.2523 -1.4688 13.7992 -1.7344 L13.7992 -0.3438 Q13.3148 -0.1094 12.7836 0 Q12.2523 0.125 11.5023 0.125 Q10.5179 0.125 9.7523 -0.2344 Q9.0023 -0.6094 8.5648 -1.3438 Q8.1429 -2.0938 8.1429 -3.2344 Q8.1429 -4.375 8.5179 -5.1406 Q8.9086 -5.9062 9.6117 -6.2812 Q10.3148 -6.6719 11.2367 -6.6719 ZM11.2367 -5.4062 Q10.7211 -5.4062 10.3773 -5.0625 Q10.0492 -4.7344 9.9867 -4.0156 L12.4867 -4.0156 Q12.4867 -4.625 12.1742 -5.0156 Q11.8773 -5.4062 11.2367 -5.4062 ZM19.2819 -6.6719 Q19.4225 -6.6719 19.5944 -6.6562 Q19.7819 -6.6406 19.8912 -6.625 L19.7506 -4.9375 Q19.6725 -4.9688 19.5006 -4.9844 Q19.3444 -5 19.2194 -5 Q18.7662 -5 18.3444 -4.8438 Q17.9225 -4.6875 17.6569 -4.3125 Q17.4069 -3.9531 17.4069 -3.3438 L17.4069 0 L15.6256 0 L15.6256 -6.5469 L16.985 -6.5469 L17.2506 -5.4531 L17.3287 -5.4531 Q17.61 -5.9531 18.11 -6.3125 Q18.6256 -6.6719 19.2819 -6.6719 ZM25.6518 -1.9375 Q25.6518 -0.9531 24.9487 -0.4062 Q24.2455 0.125 22.8549 0.125 Q22.1674 0.125 21.6674 0.0312 Q21.183 -0.0625 20.683 -0.2656 L20.683 -1.7344 Q21.2143 -1.5 21.8237 -1.3438 Q22.433 -1.1875 22.9018 -1.1875 Q23.433 -1.1875 23.6518 -1.3438 Q23.8862 -1.5 23.8862 -1.75 Q23.8862 -1.9219 23.7924 -2.0469 Q23.6987 -2.1875 23.4018 -2.3438 Q23.1049 -2.5156 22.4643 -2.7812 Q21.8549 -3.0469 21.4487 -3.2969 Q21.058 -3.5625 20.8705 -3.9219 Q20.683 -4.2969 20.683 -4.8438 Q20.683 -5.7656 21.3862 -6.2188 Q22.0893 -6.6719 23.2612 -6.6719 Q23.8862 -6.6719 24.433 -6.5469 Q24.9799 -6.4375 25.5737 -6.1562 L25.0268 -4.875 Q24.558 -5.0781 24.1205 -5.2188 Q23.683 -5.3594 23.2455 -5.3594 Q22.4487 -5.3594 22.4487 -4.9219 Q22.4487 -4.7656 22.5424 -4.6406 Q22.6518 -4.5156 22.9487 -4.3594 Q23.2455 -4.2188 23.8237 -3.9844 Q24.3862 -3.75 24.7924 -3.5 Q25.1987 -3.2656 25.4174 -2.8906 Q25.6518 -2.5312 25.6518 -1.9375 ZM27.9439 -9.125 Q28.3346 -9.125 28.6158 -8.9375 Q28.9127 -8.75 28.9127 -8.25 Q28.9127 -7.75 28.6158 -7.5625 Q28.3346 -7.375 27.9439 -7.375 Q27.5221 -7.375 27.2408 -7.5625 Q26.9596 -7.75 26.9596 -8.25 Q26.9596 -8.75 27.2408 -8.9375 Q27.5221 -9.125 27.9439 -9.125 ZM28.8189 -6.5469 L28.8189 0 L27.0377 0 L27.0377 -6.5469 L28.8189 -6.5469 ZM35.2758 -1.9375 Q35.2758 -0.9531 34.5727 -0.4062 Q33.8696 0.125 32.479 0.125 Q31.7915 0.125 31.2915 0.0312 Q30.8071 -0.0625 30.3071 -0.2656 L30.3071 -1.7344 Q30.8383 -1.5 31.4477 -1.3438 Q32.0571 -1.1875 32.5258 -1.1875 Q33.0571 -1.1875 33.2758 -1.3438 Q33.5102 -1.5 33.5102 -1.75 Q33.5102 -1.9219 33.4165 -2.0469 Q33.3227 -2.1875 33.0258 -2.3438 Q32.729 -2.5156 32.0883 -2.7812 Q31.479 -3.0469 31.0727 -3.2969 Q30.6821 -3.5625 30.4946 -3.9219 Q30.3071 -4.2969 30.3071 -4.8438 Q30.3071 -5.7656 31.0102 -6.2188 Q31.7133 -6.6719 32.8852 -6.6719 Q33.5102 -6.6719 34.0571 -6.5469 Q34.604 -6.4375 35.1977 -6.1562 L34.6508 -4.875 Q34.1821 -5.0781 33.7446 -5.2188 Q33.3071 -5.3594 32.8696 -5.3594 Q32.0727 -5.3594 32.0727 -4.9219 Q32.0727 -4.7656 32.1665 -4.6406 Q32.2758 -4.5156 32.5727 -4.3594 Q32.8696 -4.2188 33.4477 -3.9844 Q34.0102 -3.75 34.4165 -3.5 Q34.8227 -3.2656 35.0415 -2.8906 Q35.2758 -2.5312 35.2758 -1.9375 ZM39.4274 -1.3125 Q39.7242 -1.3125 39.9899 -1.3594 Q40.2711 -1.4219 40.5524 -1.5156 L40.5524 -0.1875 Q40.2555 -0.0625 39.8336 0.0312 Q39.4117 0.125 38.9117 0.125 Q38.318 0.125 37.8492 -0.0625 Q37.3961 -0.2656 37.1149 -0.7344 Q36.8492 -1.2188 36.8492 -2.0469 L36.8492 -5.2031 L36.0055 -5.2031 L36.0055 -5.9688 L36.9899 -6.5625 L37.5055 -7.9375 L38.6461 -7.9375 L38.6461 -6.5469 L40.4742 -6.5469 L40.4742 -5.2031 L38.6461 -5.2031 L38.6461 -2.0469 Q38.6461 -1.6875 38.8492 -1.5 Q39.068 -1.3125 39.4274 -1.3125 ZM44.5729 -6.6719 Q45.9167 -6.6719 46.7135 -5.8906 Q47.5104 -5.125 47.5104 -3.7031 L47.5104 -2.8281 L43.2917 -2.8281 Q43.3073 -2.0781 43.7292 -1.6406 Q44.1667 -1.2188 44.9167 -1.2188 Q45.5573 -1.2188 46.0729 -1.3438 Q46.5885 -1.4688 47.1354 -1.7344 L47.1354 -0.3438 Q46.651 -0.1094 46.1198 0 Q45.5885 0.125 44.8385 0.125 Q43.8542 0.125 43.0885 -0.2344 Q42.3385 -0.6094 41.901 -1.3438 Q41.4792 -2.0938 41.4792 -3.2344 Q41.4792 -4.375 41.8542 -5.1406 Q42.2448 -5.9062 42.9479 -6.2812 Q43.651 -6.6719 44.5729 -6.6719 ZM44.5729 -5.4062 Q44.0573 -5.4062 43.7135 -5.0625 Q43.3854 -4.7344 43.3229 -4.0156 L45.8229 -4.0156 Q45.8229 -4.625 45.5104 -5.0156 Q45.2135 -5.4062 44.5729 -5.4062 ZM52.6806 -6.6719 Q53.7431 -6.6719 54.3681 -6.0938 Q55.0087 -5.5312 55.0087 -4.2656 L55.0087 0 L53.2275 0 L53.2275 -3.8281 Q53.2275 -4.5312 52.9618 -4.8906 Q52.7118 -5.25 52.165 -5.25 Q51.3525 -5.25 51.04 -4.6875 Q50.7431 -4.125 50.7431 -3.0781 L50.7431 0 L48.9618 0 L48.9618 -6.5469 L50.3212 -6.5469 L50.5712 -5.7188 L50.665 -5.7188 Q50.9775 -6.2188 51.5243 -6.4375 Q52.0712 -6.6719 52.6806 -6.6719 ZM59.5021 0.125 Q58.049 0.125 57.2521 -0.6875 Q56.4553 -1.5 56.4553 -3.2344 Q56.4553 -4.4375 56.8615 -5.1875 Q57.2678 -5.9531 57.9865 -6.3125 Q58.7209 -6.6719 59.6584 -6.6719 Q60.3303 -6.6719 60.8303 -6.5312 Q61.3303 -6.4062 61.7053 -6.2344 L61.174 -4.8438 Q60.7521 -5.0156 60.3771 -5.125 Q60.0178 -5.2344 59.6584 -5.2344 Q58.2678 -5.2344 58.2678 -3.25 Q58.2678 -2.2656 58.6271 -1.7969 Q59.0021 -1.3281 59.6584 -1.3281 Q60.2209 -1.3281 60.6584 -1.4688 Q61.0959 -1.625 61.5021 -1.8906 L61.5021 -0.375 Q61.0959 -0.1094 60.6428 0 Q60.1896 0.125 59.5021 0.125 ZM65.7171 -6.6719 Q67.0608 -6.6719 67.8577 -5.8906 Q68.6546 -5.125 68.6546 -3.7031 L68.6546 -2.8281 L64.4358 -2.8281 Q64.4514 -2.0781 64.8733 -1.6406 Q65.3108 -1.2188 66.0608 -1.2188 Q66.7014 -1.2188 67.2171 -1.3438 Q67.7327 -1.4688 68.2796 -1.7344 L68.2796 -0.3438 Q67.7952 -0.1094 67.2639 0 Q66.7327 0.125 65.9827 0.125 Q64.9983 0.125 64.2327 -0.2344 Q63.4827 -0.6094 63.0452 -1.3438 Q62.6233 -2.0938 62.6233 -3.2344 Q62.6233 -4.375 62.9983 -5.1406 Q63.3889 -5.9062 64.0921 -6.2812 Q64.7952 -6.6719 65.7171 -6.6719 ZM65.7171 -5.4062 Q65.2014 -5.4062 64.8577 -5.0625 Q64.5296 -4.7344 64.4671 -4.0156 L66.9671 -4.0156 Q66.9671 -4.625 66.6546 -5.0156 Q66.3577 -5.4062 65.7171 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath12);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="770.6845" y="-47.1645" width="75" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="770.6845" y="-47.1645" width="75" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(780.6845,-29.1645)"
+    ><path d="M6.3281 0 L5.7031 -2.0469 L2.5781 -2.0469 L1.9531 0 L0 0 L3.0312 -8.6094 L5.25 -8.6094 L8.2812 0 L6.3281 0 ZM4.6406 -5.5625 Q4.5781 -5.7656 4.4844 -6.0781 Q4.3906 -6.3906 4.2969 -6.7031 Q4.2031 -7.0312 4.1406 -7.2656 Q4.0781 -7.0312 3.9688 -6.6719 Q3.875 -6.3281 3.7812 -6 Q3.7031 -5.6875 3.6406 -5.5625 L3.0312 -3.5625 L5.2656 -3.5625 L4.6406 -5.5625 ZM15.2332 -6.5469 L15.2332 0 L13.8582 0 L13.6238 -0.8438 L13.5301 -0.8438 Q13.2176 -0.3438 12.6707 -0.1094 Q12.1238 0.125 11.5144 0.125 Q10.4519 0.125 9.8113 -0.4375 Q9.1863 -1.0156 9.1863 -2.2812 L9.1863 -6.5469 L10.9676 -6.5469 L10.9676 -2.7188 Q10.9676 -2.0312 11.2176 -1.6719 Q11.4676 -1.3125 12.0301 -1.3125 Q12.8426 -1.3125 13.1394 -1.8594 Q13.4363 -2.4219 13.4363 -3.4688 L13.4363 -6.5469 L15.2332 -6.5469 ZM19.8672 -1.3125 Q20.1641 -1.3125 20.4297 -1.3594 Q20.711 -1.4219 20.9922 -1.5156 L20.9922 -0.1875 Q20.6954 -0.0625 20.2735 0.0312 Q19.8516 0.125 19.3516 0.125 Q18.7579 0.125 18.2891 -0.0625 Q17.836 -0.2656 17.5547 -0.7344 Q17.2891 -1.2188 17.2891 -2.0469 L17.2891 -5.2031 L16.4454 -5.2031 L16.4454 -5.9688 L17.4297 -6.5625 L17.9454 -7.9375 L19.086 -7.9375 L19.086 -6.5469 L20.9141 -6.5469 L20.9141 -5.2031 L19.086 -5.2031 L19.086 -2.0469 Q19.086 -1.6875 19.2891 -1.5 Q19.5079 -1.3125 19.8672 -1.3125 ZM24.0909 -7.2656 Q24.0909 -6.7812 24.0596 -6.3281 Q24.0284 -5.8906 24.0128 -5.7188 L24.1065 -5.7188 Q24.419 -6.2188 24.9034 -6.4375 Q25.4034 -6.6719 25.9971 -6.6719 Q27.0753 -6.6719 27.7159 -6.0938 Q28.3565 -5.5312 28.3565 -4.2656 L28.3565 0 L26.5753 0 L26.5753 -3.8281 Q26.5753 -5.25 25.5128 -5.25 Q24.7159 -5.25 24.4034 -4.6875 Q24.0909 -4.125 24.0909 -3.0781 L24.0909 0 L22.3096 0 L22.3096 -9.125 L24.0909 -9.125 L24.0909 -7.2656 ZM37.4437 -4.375 Q37.4437 -2.2031 36.2093 -1.0938 Q34.9749 0 32.7562 0 L30.3343 0 L30.3343 -8.5625 L33.0218 -8.5625 Q34.3656 -8.5625 35.3499 -8.0781 Q36.3499 -7.6094 36.8968 -6.6719 Q37.4437 -5.75 37.4437 -4.375 ZM35.5531 -4.3125 Q35.5531 -5.75 34.9281 -6.4062 Q34.3031 -7.0781 33.1156 -7.0781 L32.1468 -7.0781 L32.1468 -1.5 L32.9281 -1.5 Q35.5531 -1.5 35.5531 -4.3125 ZM42.5113 0 L40.6988 0 L40.6988 -7.0625 L38.3706 -7.0625 L38.3706 -8.5625 L44.8394 -8.5625 L44.8394 -7.0625 L42.5113 -7.0625 L42.5113 0 ZM53.9437 -4.2969 Q53.9437 -2.9688 53.5062 -1.9688 Q53.0687 -0.9844 52.1624 -0.4219 Q51.2718 0.125 49.8656 0.125 Q48.4749 0.125 47.5687 -0.4219 Q46.6624 -0.9844 46.2249 -1.9688 Q45.7874 -2.9688 45.7874 -4.3125 Q45.7874 -5.6406 46.2249 -6.625 Q46.6624 -7.6094 47.5687 -8.1562 Q48.4749 -8.7031 49.8656 -8.7031 Q51.2718 -8.7031 52.1624 -8.1562 Q53.0687 -7.6094 53.5062 -6.6094 Q53.9437 -5.625 53.9437 -4.2969 ZM47.6937 -4.2969 Q47.6937 -2.9531 48.2093 -2.1719 Q48.7249 -1.4062 49.8656 -1.4062 Q51.0218 -1.4062 51.5218 -2.1719 Q52.0374 -2.9531 52.0374 -4.2969 Q52.0374 -5.6562 51.5218 -6.4219 Q51.0218 -7.1875 49.8656 -7.1875 Q48.7249 -7.1875 48.2093 -6.4219 Q47.6937 -5.6562 47.6937 -4.2969 Z" style="stroke:none; clip-path:url(#clipPath13);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="15.2164" y="-128.7862" width="112.1487" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="15.2164" y="-128.7862" width="112.1487" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(32.2908,-110.7862)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath14);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(25.2164,-94.4421)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM31.1543 -8.5625 Q32.9043 -8.5625 33.7325 -7.9219 Q34.5762 -7.2969 34.5762 -6 Q34.5762 -5.4062 34.3418 -4.9688 Q34.1231 -4.5312 33.7481 -4.2188 Q33.3887 -3.9219 32.9825 -3.7344 L35.4981 0 L33.4825 0 L31.4356 -3.2812 L30.4668 -3.2812 L30.4668 0 L28.6543 0 L28.6543 -8.5625 L31.1543 -8.5625 ZM31.0137 -7.0781 L30.4668 -7.0781 L30.4668 -4.7656 L31.0606 -4.7656 Q31.9512 -4.7656 32.3418 -5.0625 Q32.7325 -5.3594 32.7325 -5.9531 Q32.7325 -6.5625 32.3106 -6.8125 Q31.9043 -7.0781 31.0137 -7.0781 ZM39.1369 -6.6719 Q40.4806 -6.6719 41.2775 -5.8906 Q42.0744 -5.125 42.0744 -3.7031 L42.0744 -2.8281 L37.8556 -2.8281 Q37.8713 -2.0781 38.2931 -1.6406 Q38.7306 -1.2188 39.4806 -1.2188 Q40.1213 -1.2188 40.6369 -1.3438 Q41.1525 -1.4688 41.6994 -1.7344 L41.6994 -0.3438 Q41.215 -0.1094 40.6838 0 Q40.1525 0.125 39.4025 0.125 Q38.4181 0.125 37.6525 -0.2344 Q36.9025 -0.6094 36.465 -1.3438 Q36.0431 -2.0938 36.0431 -3.2344 Q36.0431 -4.375 36.4181 -5.1406 Q36.8088 -5.9062 37.5119 -6.2812 Q38.215 -6.6719 39.1369 -6.6719 ZM39.1369 -5.4062 Q38.6213 -5.4062 38.2775 -5.0625 Q37.9494 -4.7344 37.8869 -4.0156 L40.3869 -4.0156 Q40.3869 -4.625 40.0744 -5.0156 Q39.7775 -5.4062 39.1369 -5.4062 ZM47.1664 -6.6719 Q48.2758 -6.6719 48.9633 -5.8125 Q49.6508 -4.9531 49.6508 -3.2812 Q49.6508 -1.625 48.9321 -0.75 Q48.2289 0.125 47.1196 0.125 Q46.4164 0.125 45.9946 -0.125 Q45.5727 -0.3906 45.3071 -0.7188 L45.2133 -0.7188 Q45.3071 -0.2188 45.3071 0.2344 L45.3071 2.875 L43.5258 2.875 L43.5258 -6.5469 L44.9789 -6.5469 L45.2289 -5.7031 L45.3071 -5.7031 Q45.5727 -6.0938 46.0102 -6.375 Q46.4633 -6.6719 47.1664 -6.6719 ZM46.6039 -5.25 Q45.9008 -5.25 45.6196 -4.8125 Q45.3383 -4.375 45.3071 -3.4844 L45.3071 -3.2969 Q45.3071 -2.3594 45.5883 -1.8438 Q45.8696 -1.3281 46.6196 -1.3281 Q47.2289 -1.3281 47.5258 -1.8438 Q47.8227 -2.3594 47.8227 -3.3125 Q47.8227 -5.25 46.6039 -5.25 ZM57.075 -3.2812 Q57.075 -1.6562 56.2156 -0.7656 Q55.3562 0.125 53.8875 0.125 Q52.9656 0.125 52.2469 -0.2656 Q51.5437 -0.6719 51.1375 -1.4375 Q50.7312 -2.2031 50.7312 -3.2812 Q50.7312 -4.9219 51.575 -5.7969 Q52.4344 -6.6719 53.9187 -6.6719 Q54.8406 -6.6719 55.5437 -6.2656 Q56.2625 -5.875 56.6687 -5.125 Q57.075 -4.375 57.075 -3.2812 ZM52.5437 -3.2812 Q52.5437 -2.3125 52.8562 -1.8125 Q53.1844 -1.3125 53.9031 -1.3125 Q54.6062 -1.3125 54.9187 -1.8125 Q55.2469 -2.3125 55.2469 -3.2812 Q55.2469 -4.2656 54.9187 -4.75 Q54.6062 -5.2344 53.8875 -5.2344 Q53.1844 -5.2344 52.8562 -4.75 Q52.5437 -4.2656 52.5437 -3.2812 ZM63.1281 -1.9375 Q63.1281 -0.9531 62.4249 -0.4062 Q61.7218 0.125 60.3312 0.125 Q59.6437 0.125 59.1437 0.0312 Q58.6593 -0.0625 58.1593 -0.2656 L58.1593 -1.7344 Q58.6906 -1.5 59.2999 -1.3438 Q59.9093 -1.1875 60.3781 -1.1875 Q60.9093 -1.1875 61.1281 -1.3438 Q61.3624 -1.5 61.3624 -1.75 Q61.3624 -1.9219 61.2687 -2.0469 Q61.1749 -2.1875 60.8781 -2.3438 Q60.5812 -2.5156 59.9406 -2.7812 Q59.3312 -3.0469 58.9249 -3.2969 Q58.5343 -3.5625 58.3468 -3.9219 Q58.1593 -4.2969 58.1593 -4.8438 Q58.1593 -5.7656 58.8624 -6.2188 Q59.5656 -6.6719 60.7374 -6.6719 Q61.3624 -6.6719 61.9093 -6.5469 Q62.4562 -6.4375 63.0499 -6.1562 L62.5031 -4.875 Q62.0343 -5.0781 61.5968 -5.2188 Q61.1593 -5.3594 60.7218 -5.3594 Q59.9249 -5.3594 59.9249 -4.9219 Q59.9249 -4.7656 60.0187 -4.6406 Q60.1281 -4.5156 60.4249 -4.3594 Q60.7218 -4.2188 61.2999 -3.9844 Q61.8624 -3.75 62.2687 -3.5 Q62.6749 -3.2656 62.8937 -2.8906 Q63.1281 -2.5312 63.1281 -1.9375 ZM65.4202 -9.125 Q65.8108 -9.125 66.0921 -8.9375 Q66.389 -8.75 66.389 -8.25 Q66.389 -7.75 66.0921 -7.5625 Q65.8108 -7.375 65.4202 -7.375 Q64.9983 -7.375 64.7171 -7.5625 Q64.4358 -7.75 64.4358 -8.25 Q64.4358 -8.75 64.7171 -8.9375 Q64.9983 -9.125 65.4202 -9.125 ZM66.2952 -6.5469 L66.2952 0 L64.514 0 L64.514 -6.5469 L66.2952 -6.5469 ZM70.9396 -1.3125 Q71.2365 -1.3125 71.5021 -1.3594 Q71.7834 -1.4219 72.0646 -1.5156 L72.0646 -0.1875 Q71.7677 -0.0625 71.3459 0.0312 Q70.924 0.125 70.424 0.125 Q69.8302 0.125 69.3615 -0.0625 Q68.9084 -0.2656 68.6271 -0.7344 Q68.3615 -1.2188 68.3615 -2.0469 L68.3615 -5.2031 L67.5177 -5.2031 L67.5177 -5.9688 L68.5021 -6.5625 L69.0177 -7.9375 L70.1584 -7.9375 L70.1584 -6.5469 L71.9865 -6.5469 L71.9865 -5.2031 L70.1584 -5.2031 L70.1584 -2.0469 Q70.1584 -1.6875 70.3615 -1.5 Q70.5802 -1.3125 70.9396 -1.3125 ZM79.3351 -3.2812 Q79.3351 -1.6562 78.4758 -0.7656 Q77.6164 0.125 76.1476 0.125 Q75.2258 0.125 74.507 -0.2656 Q73.8039 -0.6719 73.3976 -1.4375 Q72.9914 -2.2031 72.9914 -3.2812 Q72.9914 -4.9219 73.8351 -5.7969 Q74.6945 -6.6719 76.1789 -6.6719 Q77.1008 -6.6719 77.8039 -6.2656 Q78.5226 -5.875 78.9289 -5.125 Q79.3351 -4.375 79.3351 -3.2812 ZM74.8039 -3.2812 Q74.8039 -2.3125 75.1164 -1.8125 Q75.4445 -1.3125 76.1633 -1.3125 Q76.8664 -1.3125 77.1789 -1.8125 Q77.507 -2.3125 77.507 -3.2812 Q77.507 -4.2656 77.1789 -4.75 Q76.8664 -5.2344 76.1476 -5.2344 Q75.4445 -5.2344 75.1164 -4.75 Q74.8039 -4.2656 74.8039 -3.2812 ZM84.4663 -6.6719 Q84.6069 -6.6719 84.7788 -6.6562 Q84.9663 -6.6406 85.0757 -6.625 L84.9351 -4.9375 Q84.8569 -4.9688 84.6851 -4.9844 Q84.5288 -5 84.4038 -5 Q83.9507 -5 83.5288 -4.8438 Q83.1069 -4.6875 82.8413 -4.3125 Q82.5913 -3.9531 82.5913 -3.3438 L82.5913 0 L80.8101 0 L80.8101 -6.5469 L82.1694 -6.5469 L82.4351 -5.4531 L82.5132 -5.4531 Q82.7944 -5.9531 83.2944 -6.3125 Q83.8101 -6.6719 84.4663 -6.6719 ZM85.3206 -6.5469 L87.2737 -6.5469 L88.5081 -2.875 Q88.6019 -2.6094 88.6487 -2.3281 Q88.7112 -2.0469 88.7269 -1.7344 L88.7581 -1.7344 Q88.805 -2.0469 88.8675 -2.3281 Q88.93 -2.6094 89.0237 -2.875 L90.2269 -6.5469 L92.1487 -6.5469 L89.3831 0.8438 Q89.0081 1.8594 88.2894 2.3594 Q87.5706 2.875 86.6331 2.875 Q86.3362 2.875 86.1175 2.8438 Q85.8987 2.8125 85.7269 2.7812 L85.7269 1.375 Q85.8675 1.3906 86.0394 1.4062 Q86.2269 1.4375 86.43 1.4375 Q87.0081 1.4375 87.3362 1.0938 Q87.6644 0.75 87.8206 0.2812 L87.93 -0.0469 L85.3206 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath15);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-776.4452" y="-72.448" width="116.1719" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-776.4452" y="-72.448" width="116.1719" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-776.4452" y="-57.448" width="290.4298" style="clip-path:url(#clipPath2); stroke:none;" height="92.8907"
+      /><rect x="-776.4452" y="-57.448" width="290.4298" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="92.8907"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-756.4452,-38.448)"
+    ><path d="M6.8906 -3.2812 Q6.8906 -1.6562 6.0312 -0.7656 Q5.1719 0.125 3.7031 0.125 Q2.7812 0.125 2.0625 -0.2656 Q1.3594 -0.6719 0.9531 -1.4375 Q0.5469 -2.2031 0.5469 -3.2812 Q0.5469 -4.9219 1.3906 -5.7969 Q2.25 -6.6719 3.7344 -6.6719 Q4.6562 -6.6719 5.3594 -6.2656 Q6.0781 -5.875 6.4844 -5.125 Q6.8906 -4.375 6.8906 -3.2812 ZM2.3594 -3.2812 Q2.3594 -2.3125 2.6719 -1.8125 Q3 -1.3125 3.7188 -1.3125 Q4.4219 -1.3125 4.7344 -1.8125 Q5.0625 -2.3125 5.0625 -3.2812 Q5.0625 -4.2656 4.7344 -4.75 Q4.4219 -5.2344 3.7031 -5.2344 Q3 -5.2344 2.6719 -4.75 Q2.3594 -4.2656 2.3594 -3.2812 ZM12.0218 -6.6719 Q12.1624 -6.6719 12.3343 -6.6562 Q12.5218 -6.6406 12.6312 -6.625 L12.4906 -4.9375 Q12.4124 -4.9688 12.2406 -4.9844 Q12.0843 -5 11.9593 -5 Q11.5062 -5 11.0843 -4.8438 Q10.6624 -4.6875 10.3968 -4.3125 Q10.1468 -3.9531 10.1468 -3.3438 L10.1468 0 L8.3656 0 L8.3656 -6.5469 L9.7249 -6.5469 L9.9906 -5.4531 L10.0687 -5.4531 Q10.3499 -5.9531 10.8499 -6.3125 Q11.3656 -6.6719 12.0218 -6.6719 ZM15.9386 -6.6719 Q17.1417 -6.6719 17.8292 -5.7188 L17.8761 -5.7188 L18.0167 -6.5469 L19.5323 -6.5469 L19.5323 0.0156 Q19.5323 1.4219 18.7042 2.1406 Q17.8761 2.875 16.2667 2.875 Q15.5636 2.875 14.9698 2.7969 Q14.3761 2.7188 13.8136 2.5 L13.8136 1.0625 Q15.0167 1.5781 16.3605 1.5781 Q17.7511 1.5781 17.7511 0.0781 L17.7511 -0.0469 Q17.7511 -0.25 17.7667 -0.4688 Q17.7823 -0.6875 17.798 -0.8594 L17.7511 -0.8594 Q17.4073 -0.3438 16.9386 -0.1094 Q16.4698 0.125 15.8917 0.125 Q14.7198 0.125 14.0636 -0.7656 Q13.423 -1.6719 13.423 -3.2656 Q13.423 -4.875 14.0948 -5.7656 Q14.7667 -6.6719 15.9386 -6.6719 ZM16.5011 -5.2188 Q15.2355 -5.2188 15.2355 -3.2344 Q15.2355 -1.2812 16.5167 -1.2812 Q17.2042 -1.2812 17.5323 -1.6719 Q17.8605 -2.0625 17.8605 -3.0312 L17.8605 -3.25 Q17.8605 -4.3125 17.5323 -4.7656 Q17.2198 -5.2188 16.5011 -5.2188 ZM21.1597 -0.8438 Q21.1597 -1.3906 21.4565 -1.6094 Q21.7534 -1.8438 22.1909 -1.8438 Q22.6128 -1.8438 22.9097 -1.6094 Q23.2065 -1.3906 23.2065 -0.8438 Q23.2065 -0.3125 22.9097 -0.0781 Q22.6128 0.1562 22.1909 0.1562 Q21.7534 0.1562 21.4565 -0.0781 Q21.1597 -0.3125 21.1597 -0.8438 ZM29.4078 -1.9375 Q29.4078 -0.9531 28.7047 -0.4062 Q28.0016 0.125 26.6109 0.125 Q25.9234 0.125 25.4234 0.0312 Q24.9391 -0.0625 24.4391 -0.2656 L24.4391 -1.7344 Q24.9703 -1.5 25.5797 -1.3438 Q26.1891 -1.1875 26.6578 -1.1875 Q27.1891 -1.1875 27.4078 -1.3438 Q27.6422 -1.5 27.6422 -1.75 Q27.6422 -1.9219 27.5484 -2.0469 Q27.4547 -2.1875 27.1578 -2.3438 Q26.8609 -2.5156 26.2203 -2.7812 Q25.6109 -3.0469 25.2047 -3.2969 Q24.8141 -3.5625 24.6266 -3.9219 Q24.4391 -4.2969 24.4391 -4.8438 Q24.4391 -5.7656 25.1422 -6.2188 Q25.8453 -6.6719 27.0172 -6.6719 Q27.6422 -6.6719 28.1891 -6.5469 Q28.7359 -6.4375 29.3297 -6.1562 L28.7828 -4.875 Q28.3141 -5.0781 27.8766 -5.2188 Q27.4391 -5.3594 27.0016 -5.3594 Q26.2047 -5.3594 26.2047 -4.9219 Q26.2047 -4.7656 26.2984 -4.6406 Q26.4078 -4.5156 26.7047 -4.3594 Q27.0016 -4.2188 27.5797 -3.9844 Q28.1422 -3.75 28.5484 -3.5 Q28.9547 -3.2656 29.1734 -2.8906 Q29.4078 -2.5312 29.4078 -1.9375 ZM34.4343 -6.6719 Q35.5437 -6.6719 36.2312 -5.8125 Q36.9187 -4.9531 36.9187 -3.2812 Q36.9187 -1.625 36.2 -0.75 Q35.4968 0.125 34.3875 0.125 Q33.6843 0.125 33.2625 -0.125 Q32.8406 -0.3906 32.575 -0.7188 L32.4812 -0.7188 Q32.575 -0.2188 32.575 0.2344 L32.575 2.875 L30.7937 2.875 L30.7937 -6.5469 L32.2468 -6.5469 L32.4968 -5.7031 L32.575 -5.7031 Q32.8406 -6.0938 33.2781 -6.375 Q33.7312 -6.6719 34.4343 -6.6719 ZM33.8718 -5.25 Q33.1687 -5.25 32.8875 -4.8125 Q32.6062 -4.375 32.575 -3.4844 L32.575 -3.2969 Q32.575 -2.3594 32.8562 -1.8438 Q33.1375 -1.3281 33.8875 -1.3281 Q34.4968 -1.3281 34.7937 -1.8438 Q35.0906 -2.3594 35.0906 -3.3125 Q35.0906 -5.25 33.8718 -5.25 ZM42.046 -6.6719 Q42.1866 -6.6719 42.3585 -6.6562 Q42.546 -6.6406 42.6554 -6.625 L42.5148 -4.9375 Q42.4366 -4.9688 42.2648 -4.9844 Q42.1085 -5 41.9835 -5 Q41.5304 -5 41.1085 -4.8438 Q40.6866 -4.6875 40.421 -4.3125 Q40.171 -3.9531 40.171 -3.3438 L40.171 0 L38.3898 0 L38.3898 -6.5469 L39.7491 -6.5469 L40.0148 -5.4531 L40.0929 -5.4531 Q40.3741 -5.9531 40.8741 -6.3125 Q41.3898 -6.6719 42.046 -6.6719 ZM44.7441 -9.125 Q45.1347 -9.125 45.4159 -8.9375 Q45.7128 -8.75 45.7128 -8.25 Q45.7128 -7.75 45.4159 -7.5625 Q45.1347 -7.375 44.7441 -7.375 Q44.3222 -7.375 44.0409 -7.5625 Q43.7597 -7.75 43.7597 -8.25 Q43.7597 -8.75 44.0409 -8.9375 Q44.3222 -9.125 44.7441 -9.125 ZM45.6191 -6.5469 L45.6191 0 L43.8378 0 L43.8378 -6.5469 L45.6191 -6.5469 ZM51.2166 -6.6719 Q52.2791 -6.6719 52.9041 -6.0938 Q53.5447 -5.5312 53.5447 -4.2656 L53.5447 0 L51.7635 0 L51.7635 -3.8281 Q51.7635 -4.5312 51.4978 -4.8906 Q51.2478 -5.25 50.701 -5.25 Q49.8885 -5.25 49.576 -4.6875 Q49.2791 -4.125 49.2791 -3.0781 L49.2791 0 L47.4978 0 L47.4978 -6.5469 L48.8572 -6.5469 L49.1072 -5.7188 L49.201 -5.7188 Q49.5135 -6.2188 50.0603 -6.4375 Q50.6072 -6.6719 51.2166 -6.6719 ZM57.5069 -6.6719 Q58.71 -6.6719 59.3975 -5.7188 L59.4444 -5.7188 L59.585 -6.5469 L61.1006 -6.5469 L61.1006 0.0156 Q61.1006 1.4219 60.2725 2.1406 Q59.4444 2.875 57.835 2.875 Q57.1319 2.875 56.5381 2.7969 Q55.9444 2.7188 55.3819 2.5 L55.3819 1.0625 Q56.585 1.5781 57.9288 1.5781 Q59.3194 1.5781 59.3194 0.0781 L59.3194 -0.0469 Q59.3194 -0.25 59.335 -0.4688 Q59.3506 -0.6875 59.3663 -0.8594 L59.3194 -0.8594 Q58.9756 -0.3438 58.5069 -0.1094 Q58.0381 0.125 57.46 0.125 Q56.2881 0.125 55.6319 -0.7656 Q54.9913 -1.6719 54.9913 -3.2656 Q54.9913 -4.875 55.6631 -5.7656 Q56.335 -6.6719 57.5069 -6.6719 ZM58.0694 -5.2188 Q56.8038 -5.2188 56.8038 -3.2344 Q56.8038 -1.2812 58.085 -1.2812 Q58.7725 -1.2812 59.1006 -1.6719 Q59.4288 -2.0625 59.4288 -3.0312 L59.4288 -3.25 Q59.4288 -4.3125 59.1006 -4.7656 Q58.7881 -5.2188 58.0694 -5.2188 ZM62.7279 -0.8438 Q62.7279 -1.3906 63.0248 -1.6094 Q63.3217 -1.8438 63.7592 -1.8438 Q64.1811 -1.8438 64.4779 -1.6094 Q64.7748 -1.3906 64.7748 -0.8438 Q64.7748 -0.3125 64.4779 -0.0781 Q64.1811 0.1562 63.7592 0.1562 Q63.3217 0.1562 63.0248 -0.0781 Q62.7279 -0.3125 62.7279 -0.8438 ZM70.023 -5.2031 L68.4761 -5.2031 L68.4761 0 L66.6792 0 L66.6792 -5.2031 L65.6948 -5.2031 L65.6948 -6.0781 L66.6792 -6.5469 L66.6792 -7.0312 Q66.6792 -7.875 66.9605 -8.3281 Q67.2417 -8.7969 67.7573 -8.9844 Q68.2886 -9.1875 69.0073 -9.1875 Q69.523 -9.1875 69.9448 -9.0938 Q70.3823 -9.0156 70.648 -8.9062 L70.1948 -7.5938 Q69.9917 -7.6562 69.7417 -7.7031 Q69.5073 -7.7656 69.1948 -7.7656 Q68.8198 -7.7656 68.648 -7.5312 Q68.4761 -7.3125 68.4761 -6.9531 L68.4761 -6.5469 L70.023 -6.5469 L70.023 -5.2031 ZM74.6982 -6.6719 Q74.8389 -6.6719 75.0107 -6.6562 Q75.1982 -6.6406 75.3076 -6.625 L75.167 -4.9375 Q75.0889 -4.9688 74.917 -4.9844 Q74.7607 -5 74.6357 -5 Q74.1826 -5 73.7607 -4.8438 Q73.3389 -4.6875 73.0732 -4.3125 Q72.8232 -3.9531 72.8232 -3.3438 L72.8232 0 L71.042 0 L71.042 -6.5469 L72.4014 -6.5469 L72.667 -5.4531 L72.7451 -5.4531 Q73.0264 -5.9531 73.5264 -6.3125 Q74.042 -6.6719 74.6982 -6.6719 ZM79.1775 -6.6875 Q80.49 -6.6875 81.1932 -6.1094 Q81.8963 -5.5469 81.8963 -4.375 L81.8963 0 L80.6463 0 L80.3025 -0.8906 L80.2557 -0.8906 Q79.8338 -0.3594 79.365 -0.1094 Q78.8963 0.125 78.0838 0.125 Q77.2088 0.125 76.6307 -0.3906 Q76.0525 -0.9062 76.0525 -1.9531 Q76.0525 -3 76.7869 -3.5 Q77.5213 -4 78.99 -4.0469 L80.1307 -4.0781 L80.1307 -4.375 Q80.1307 -4.8906 79.8494 -5.125 Q79.5838 -5.3594 79.0994 -5.3594 Q78.6307 -5.3594 78.1619 -5.2188 Q77.7088 -5.0938 77.2557 -4.8906 L76.6619 -6.0938 Q77.1932 -6.375 77.8338 -6.5312 Q78.4744 -6.6875 79.1775 -6.6875 ZM79.4275 -3.0156 Q78.5682 -2.9844 78.2244 -2.6875 Q77.8963 -2.4062 77.8963 -1.9375 Q77.8963 -1.5312 78.1307 -1.3594 Q78.365 -1.1875 78.7557 -1.1875 Q79.3338 -1.1875 79.7244 -1.5312 Q80.1307 -1.875 80.1307 -2.5 L80.1307 -3.0312 L79.4275 -3.0156 ZM91.4256 -6.6719 Q92.5506 -6.6719 93.1131 -6.0938 Q93.6912 -5.5312 93.6912 -4.2656 L93.6912 0 L91.8943 0 L91.8943 -3.8281 Q91.8943 -5.25 90.91 -5.25 Q90.2068 -5.25 89.8943 -4.7344 Q89.5975 -4.2344 89.5975 -3.2812 L89.5975 0 L87.8162 0 L87.8162 -3.8281 Q87.8162 -5.25 86.8318 -5.25 Q86.0818 -5.25 85.8006 -4.6875 Q85.5193 -4.125 85.5193 -3.0781 L85.5193 0 L83.7381 0 L83.7381 -6.5469 L85.0975 -6.5469 L85.3475 -5.7188 L85.4412 -5.7188 Q85.7381 -6.2188 86.2537 -6.4375 Q86.785 -6.6719 87.3475 -6.6719 Q88.0662 -6.6719 88.5662 -6.4375 Q89.0818 -6.2031 89.3475 -5.7188 L89.5037 -5.7188 Q89.8006 -6.2188 90.3318 -6.4375 Q90.8631 -6.6719 91.4256 -6.6719 ZM98.2253 -6.6719 Q99.569 -6.6719 100.3659 -5.8906 Q101.1628 -5.125 101.1628 -3.7031 L101.1628 -2.8281 L96.944 -2.8281 Q96.9597 -2.0781 97.3815 -1.6406 Q97.819 -1.2188 98.569 -1.2188 Q99.2097 -1.2188 99.7253 -1.3438 Q100.2409 -1.4688 100.7878 -1.7344 L100.7878 -0.3438 Q100.3034 -0.1094 99.7722 0 Q99.2409 0.125 98.4909 0.125 Q97.5065 0.125 96.7409 -0.2344 Q95.9909 -0.6094 95.5534 -1.3438 Q95.1315 -2.0938 95.1315 -3.2344 Q95.1315 -4.375 95.5065 -5.1406 Q95.8972 -5.9062 96.6003 -6.2812 Q97.3034 -6.6719 98.2253 -6.6719 ZM98.2253 -5.4062 Q97.7097 -5.4062 97.3659 -5.0625 Q97.0378 -4.7344 96.9753 -4.0156 L99.4753 -4.0156 Q99.4753 -4.625 99.1628 -5.0156 Q98.8659 -5.4062 98.2253 -5.4062 ZM107.4892 -2.2969 Q107.4424 -2.5 107.3486 -2.8906 Q107.2705 -3.2969 107.1611 -3.75 Q107.0517 -4.2188 106.958 -4.6094 Q106.8642 -5 106.8174 -5.1875 L106.7705 -5.1875 Q106.7392 -5 106.6455 -4.6094 Q106.5674 -4.2188 106.458 -3.75 Q106.3486 -3.2969 106.2392 -2.8906 Q106.1455 -2.4844 106.0986 -2.2656 L105.583 0 L103.6611 0 L101.8017 -6.5469 L103.5674 -6.5469 L104.333 -3.6406 Q104.4111 -3.3438 104.4736 -2.9219 Q104.5517 -2.5156 104.5986 -2.125 Q104.6611 -1.7344 104.6924 -1.5 L104.7392 -1.5 Q104.7549 -1.6719 104.7861 -1.9531 Q104.8174 -2.2344 104.8642 -2.5312 Q104.9267 -2.8281 104.9736 -3.0781 Q105.0205 -3.3281 105.0361 -3.4062 L105.833 -6.5469 L107.8017 -6.5469 L108.583 -3.4062 Q108.6299 -3.2344 108.6924 -2.8594 Q108.7549 -2.5 108.8017 -2.1094 Q108.8642 -1.7344 108.8642 -1.5 L108.9111 -1.5 Q108.9424 -1.7031 108.9892 -2.0938 Q109.0517 -2.4844 109.1299 -2.9062 Q109.208 -3.3438 109.3017 -3.6406 L110.083 -6.5469 L111.833 -6.5469 L109.9424 0 L108.0049 0 L107.4892 -2.2969 ZM118.8394 -3.2812 Q118.8394 -1.6562 117.9801 -0.7656 Q117.1207 0.125 115.6519 0.125 Q114.7301 0.125 114.0113 -0.2656 Q113.3082 -0.6719 112.9019 -1.4375 Q112.4957 -2.2031 112.4957 -3.2812 Q112.4957 -4.9219 113.3394 -5.7969 Q114.1988 -6.6719 115.6832 -6.6719 Q116.6051 -6.6719 117.3082 -6.2656 Q118.0269 -5.875 118.4332 -5.125 Q118.8394 -4.375 118.8394 -3.2812 ZM114.3082 -3.2812 Q114.3082 -2.3125 114.6207 -1.8125 Q114.9488 -1.3125 115.6676 -1.3125 Q116.3707 -1.3125 116.6832 -1.8125 Q117.0113 -2.3125 117.0113 -3.2812 Q117.0113 -4.2656 116.6832 -4.75 Q116.3707 -5.2344 115.6519 -5.2344 Q114.9488 -5.2344 114.6207 -4.75 Q114.3082 -4.2656 114.3082 -3.2812 ZM123.9706 -6.6719 Q124.1112 -6.6719 124.2831 -6.6562 Q124.4706 -6.6406 124.58 -6.625 L124.4394 -4.9375 Q124.3612 -4.9688 124.1894 -4.9844 Q124.0331 -5 123.9081 -5 Q123.455 -5 123.0331 -4.8438 Q122.6112 -4.6875 122.3456 -4.3125 Q122.0956 -3.9531 122.0956 -3.3438 L122.0956 0 L120.3144 0 L120.3144 -6.5469 L121.6737 -6.5469 L121.9394 -5.4531 L122.0175 -5.4531 Q122.2987 -5.9531 122.7987 -6.3125 Q123.3144 -6.6719 123.9706 -6.6719 ZM127.5437 -5.0469 Q127.5437 -4.6719 127.5124 -4.2969 Q127.4812 -3.9375 127.4499 -3.5625 L127.4812 -3.5625 Q127.653 -3.8125 127.8405 -4.0625 Q128.0437 -4.3281 128.2624 -4.5625 L130.0905 -6.5469 L132.1062 -6.5469 L129.5124 -3.7031 L132.2624 0 L130.1999 0 L128.3093 -2.6562 L127.5437 -2.0469 L127.5437 0 L125.7624 0 L125.7624 -9.125 L127.5437 -9.125 L127.5437 -5.0469 ZM132.9525 -0.8438 Q132.9525 -1.3906 133.2493 -1.6094 Q133.5462 -1.8438 133.9837 -1.8438 Q134.4056 -1.8438 134.7025 -1.6094 Q134.9993 -1.3906 134.9993 -0.8438 Q134.9993 -0.3125 134.7025 -0.0781 Q134.4056 0.1562 133.9837 0.1562 Q133.5462 0.1562 133.2493 -0.0781 Q132.9525 -0.3125 132.9525 -0.8438 ZM138.7006 0.125 Q137.6069 0.125 136.9194 -0.7344 Q136.2319 -1.5938 136.2319 -3.2656 Q136.2319 -4.9375 136.9194 -5.7969 Q137.6225 -6.6719 138.7475 -6.6719 Q139.4506 -6.6719 139.9037 -6.3906 Q140.3725 -6.125 140.6225 -5.7188 L140.685 -5.7188 Q140.6537 -5.9062 140.6069 -6.2656 Q140.56 -6.6406 140.56 -7.0156 L140.56 -9.125 L142.3412 -9.125 L142.3412 0 L140.9819 0 L140.6225 -0.8594 L140.56 -0.8594 Q140.2944 -0.4375 139.8412 -0.1562 Q139.4037 0.125 138.7006 0.125 ZM139.3256 -1.3125 Q140.06 -1.3125 140.3569 -1.75 Q140.6694 -2.1875 140.6694 -3.0625 L140.6694 -3.25 Q140.6694 -4.2188 140.3725 -4.7188 Q140.0912 -5.2188 139.2944 -5.2188 Q138.7162 -5.2188 138.3725 -4.7031 Q138.0444 -4.2031 138.0444 -3.2344 Q138.0444 -2.2812 138.3725 -1.7969 Q138.7162 -1.3125 139.3256 -1.3125 ZM146.906 -6.6875 Q148.2185 -6.6875 148.9217 -6.1094 Q149.6248 -5.5469 149.6248 -4.375 L149.6248 0 L148.3748 0 L148.031 -0.8906 L147.9842 -0.8906 Q147.5623 -0.3594 147.0935 -0.1094 Q146.6248 0.125 145.8123 0.125 Q144.9373 0.125 144.3592 -0.3906 Q143.781 -0.9062 143.781 -1.9531 Q143.781 -3 144.5154 -3.5 Q145.2498 -4 146.7185 -4.0469 L147.8592 -4.0781 L147.8592 -4.375 Q147.8592 -4.8906 147.5779 -5.125 Q147.3123 -5.3594 146.8279 -5.3594 Q146.3592 -5.3594 145.8904 -5.2188 Q145.4373 -5.0938 144.9842 -4.8906 L144.3904 -6.0938 Q144.9217 -6.375 145.5623 -6.5312 Q146.2029 -6.6875 146.906 -6.6875 ZM147.156 -3.0156 Q146.2967 -2.9844 145.9529 -2.6875 Q145.6248 -2.4062 145.6248 -1.9375 Q145.6248 -1.5312 145.8592 -1.3594 Q146.0935 -1.1875 146.4842 -1.1875 Q147.0623 -1.1875 147.4529 -1.5312 Q147.8592 -1.875 147.8592 -2.5 L147.8592 -3.0312 L147.156 -3.0156 ZM154.2322 -1.3125 Q154.5291 -1.3125 154.7947 -1.3594 Q155.076 -1.4219 155.3572 -1.5156 L155.3572 -0.1875 Q155.0603 -0.0625 154.6385 0.0312 Q154.2166 0.125 153.7166 0.125 Q153.1228 0.125 152.6541 -0.0625 Q152.201 -0.2656 151.9197 -0.7344 Q151.6541 -1.2188 151.6541 -2.0469 L151.6541 -5.2031 L150.8103 -5.2031 L150.8103 -5.9688 L151.7947 -6.5625 L152.3103 -7.9375 L153.451 -7.9375 L153.451 -6.5469 L155.2791 -6.5469 L155.2791 -5.2031 L153.451 -5.2031 L153.451 -2.0469 Q153.451 -1.6875 153.6541 -1.5 Q153.8728 -1.3125 154.2322 -1.3125 ZM159.3621 -6.6875 Q160.6746 -6.6875 161.3777 -6.1094 Q162.0809 -5.5469 162.0809 -4.375 L162.0809 0 L160.8309 0 L160.4871 -0.8906 L160.4402 -0.8906 Q160.0184 -0.3594 159.5496 -0.1094 Q159.0809 0.125 158.2684 0.125 Q157.3934 0.125 156.8152 -0.3906 Q156.2371 -0.9062 156.2371 -1.9531 Q156.2371 -3 156.9715 -3.5 Q157.7059 -4 159.1746 -4.0469 L160.3152 -4.0781 L160.3152 -4.375 Q160.3152 -4.8906 160.034 -5.125 Q159.7684 -5.3594 159.284 -5.3594 Q158.8152 -5.3594 158.3465 -5.2188 Q157.8934 -5.0938 157.4402 -4.8906 L156.8465 -6.0938 Q157.3777 -6.375 158.0184 -6.5312 Q158.659 -6.6875 159.3621 -6.6875 ZM159.6121 -3.0156 Q158.7527 -2.9844 158.409 -2.6875 Q158.0809 -2.4062 158.0809 -1.9375 Q158.0809 -1.5312 158.3152 -1.3594 Q158.5496 -1.1875 158.9402 -1.1875 Q159.5184 -1.1875 159.909 -1.5312 Q160.3152 -1.875 160.3152 -2.5 L160.3152 -3.0312 L159.6121 -3.0156 ZM163.6727 -0.8438 Q163.6727 -1.3906 163.9695 -1.6094 Q164.2664 -1.8438 164.7039 -1.8438 Q165.1258 -1.8438 165.4227 -1.6094 Q165.7195 -1.3906 165.7195 -0.8438 Q165.7195 -0.3125 165.4227 -0.0781 Q165.1258 0.1562 164.7039 0.1562 Q164.2664 0.1562 163.9695 -0.0781 Q163.6727 -0.3125 163.6727 -0.8438 ZM167.2646 -8.25 Q167.2646 -8.75 167.5458 -8.9375 Q167.8271 -9.125 168.2489 -9.125 Q168.6396 -9.125 168.9208 -8.9375 Q169.2177 -8.75 169.2177 -8.25 Q169.2177 -7.75 168.9208 -7.5625 Q168.6396 -7.375 168.2489 -7.375 Q167.8271 -7.375 167.5458 -7.5625 Q167.2646 -7.75 167.2646 -8.25 ZM166.8114 2.875 Q166.5146 2.875 166.1864 2.8281 Q165.8583 2.7969 165.6396 2.7344 L165.6396 1.3281 Q165.8583 1.375 166.0458 1.4062 Q166.2333 1.4375 166.4833 1.4375 Q166.8427 1.4375 167.0927 1.2344 Q167.3427 1.0312 167.3427 0.4375 L167.3427 -6.5469 L169.1239 -6.5469 L169.1239 0.7031 Q169.1239 1.3125 168.8896 1.7969 Q168.6708 2.2969 168.1552 2.5781 Q167.6552 2.875 166.8114 2.875 ZM174.6433 -6.6719 Q175.7527 -6.6719 176.4402 -5.8125 Q177.1277 -4.9531 177.1277 -3.2812 Q177.1277 -1.625 176.409 -0.75 Q175.7058 0.125 174.5965 0.125 Q173.8933 0.125 173.4715 -0.125 Q173.0496 -0.3906 172.784 -0.7188 L172.6902 -0.7188 Q172.784 -0.2188 172.784 0.2344 L172.784 2.875 L171.0027 2.875 L171.0027 -6.5469 L172.4558 -6.5469 L172.7058 -5.7031 L172.784 -5.7031 Q173.0496 -6.0938 173.4871 -6.375 Q173.9402 -6.6719 174.6433 -6.6719 ZM174.0808 -5.25 Q173.3777 -5.25 173.0965 -4.8125 Q172.8152 -4.375 172.784 -3.4844 L172.784 -3.2969 Q172.784 -2.3594 173.0652 -1.8438 Q173.3465 -1.3281 174.0965 -1.3281 Q174.7058 -1.3281 175.0027 -1.8438 Q175.2996 -2.3594 175.2996 -3.3125 Q175.2996 -5.25 174.0808 -5.25 ZM181.2863 -6.6875 Q182.5988 -6.6875 183.3019 -6.1094 Q184.005 -5.5469 184.005 -4.375 L184.005 0 L182.755 0 L182.4113 -0.8906 L182.3644 -0.8906 Q181.9425 -0.3594 181.4738 -0.1094 Q181.005 0.125 180.1925 0.125 Q179.3175 0.125 178.7394 -0.3906 Q178.1613 -0.9062 178.1613 -1.9531 Q178.1613 -3 178.8956 -3.5 Q179.63 -4 181.0988 -4.0469 L182.2394 -4.0781 L182.2394 -4.375 Q182.2394 -4.8906 181.9581 -5.125 Q181.6925 -5.3594 181.2081 -5.3594 Q180.7394 -5.3594 180.2706 -5.2188 Q179.8175 -5.0938 179.3644 -4.8906 L178.7706 -6.0938 Q179.3019 -6.375 179.9425 -6.5312 Q180.5831 -6.6875 181.2863 -6.6875 ZM181.5363 -3.0156 Q180.6769 -2.9844 180.3331 -2.6875 Q180.005 -2.4062 180.005 -1.9375 Q180.005 -1.5312 180.2394 -1.3594 Q180.4738 -1.1875 180.8644 -1.1875 Q181.4425 -1.1875 181.8331 -1.5312 Q182.2394 -1.875 182.2394 -2.5 L182.2394 -3.0312 L181.5363 -3.0156 ZM185.5968 -0.8438 Q185.5968 -1.3906 185.8937 -1.6094 Q186.1906 -1.8438 186.6281 -1.8438 Q187.0499 -1.8438 187.3468 -1.6094 Q187.6437 -1.3906 187.6437 -0.8438 Q187.6437 -0.3125 187.3468 -0.0781 Q187.0499 0.1562 186.6281 0.1562 Q186.1906 0.1562 185.8937 -0.0781 Q185.5968 -0.3125 185.5968 -0.8438 ZM192.9231 -6.6719 Q193.0637 -6.6719 193.2356 -6.6562 Q193.4231 -6.6406 193.5325 -6.625 L193.3918 -4.9375 Q193.3137 -4.9688 193.1418 -4.9844 Q192.9856 -5 192.8606 -5 Q192.4075 -5 191.9856 -4.8438 Q191.5637 -4.6875 191.2981 -4.3125 Q191.0481 -3.9531 191.0481 -3.3438 L191.0481 0 L189.2668 0 L189.2668 -6.5469 L190.6262 -6.5469 L190.8918 -5.4531 L190.97 -5.4531 Q191.2512 -5.9531 191.7512 -6.3125 Q192.2668 -6.6719 192.9231 -6.6719 ZM197.418 -6.6719 Q198.7618 -6.6719 199.5586 -5.8906 Q200.3555 -5.125 200.3555 -3.7031 L200.3555 -2.8281 L196.1368 -2.8281 Q196.1524 -2.0781 196.5743 -1.6406 Q197.0118 -1.2188 197.7618 -1.2188 Q198.4024 -1.2188 198.918 -1.3438 Q199.4336 -1.4688 199.9805 -1.7344 L199.9805 -0.3438 Q199.4961 -0.1094 198.9649 0 Q198.4336 0.125 197.6836 0.125 Q196.6993 0.125 195.9336 -0.2344 Q195.1836 -0.6094 194.7461 -1.3438 Q194.3243 -2.0938 194.3243 -3.2344 Q194.3243 -4.375 194.6993 -5.1406 Q195.0899 -5.9062 195.793 -6.2812 Q196.4961 -6.6719 197.418 -6.6719 ZM197.418 -5.4062 Q196.9024 -5.4062 196.5586 -5.0625 Q196.2305 -4.7344 196.168 -4.0156 L198.668 -4.0156 Q198.668 -4.625 198.3555 -5.0156 Q198.0586 -5.4062 197.418 -5.4062 ZM205.4476 -6.6719 Q206.5569 -6.6719 207.2444 -5.8125 Q207.9319 -4.9531 207.9319 -3.2812 Q207.9319 -1.625 207.2132 -0.75 Q206.5101 0.125 205.4007 0.125 Q204.6976 0.125 204.2757 -0.125 Q203.8538 -0.3906 203.5882 -0.7188 L203.4944 -0.7188 Q203.5882 -0.2188 203.5882 0.2344 L203.5882 2.875 L201.8069 2.875 L201.8069 -6.5469 L203.2601 -6.5469 L203.5101 -5.7031 L203.5882 -5.7031 Q203.8538 -6.0938 204.2913 -6.375 Q204.7444 -6.6719 205.4476 -6.6719 ZM204.8851 -5.25 Q204.1819 -5.25 203.9007 -4.8125 Q203.6194 -4.375 203.5882 -3.4844 L203.5882 -3.2969 Q203.5882 -2.3594 203.8694 -1.8438 Q204.1507 -1.3281 204.9007 -1.3281 Q205.5101 -1.3281 205.8069 -1.8438 Q206.1038 -2.3594 206.1038 -3.3125 Q206.1038 -5.25 204.8851 -5.25 ZM215.3561 -3.2812 Q215.3561 -1.6562 214.4967 -0.7656 Q213.6374 0.125 212.1686 0.125 Q211.2467 0.125 210.528 -0.2656 Q209.8249 -0.6719 209.4186 -1.4375 Q209.0124 -2.2031 209.0124 -3.2812 Q209.0124 -4.9219 209.8561 -5.7969 Q210.7155 -6.6719 212.1999 -6.6719 Q213.1217 -6.6719 213.8249 -6.2656 Q214.5436 -5.875 214.9499 -5.125 Q215.3561 -4.375 215.3561 -3.2812 ZM210.8249 -3.2812 Q210.8249 -2.3125 211.1374 -1.8125 Q211.4655 -1.3125 212.1842 -1.3125 Q212.8874 -1.3125 213.1999 -1.8125 Q213.528 -2.3125 213.528 -3.2812 Q213.528 -4.2656 213.1999 -4.75 Q212.8874 -5.2344 212.1686 -5.2344 Q211.4655 -5.2344 211.1374 -4.75 Q210.8249 -4.2656 210.8249 -3.2812 ZM221.4092 -1.9375 Q221.4092 -0.9531 220.7061 -0.4062 Q220.0029 0.125 218.6123 0.125 Q217.9248 0.125 217.4248 0.0312 Q216.9404 -0.0625 216.4404 -0.2656 L216.4404 -1.7344 Q216.9717 -1.5 217.5811 -1.3438 Q218.1904 -1.1875 218.6592 -1.1875 Q219.1904 -1.1875 219.4092 -1.3438 Q219.6436 -1.5 219.6436 -1.75 Q219.6436 -1.9219 219.5498 -2.0469 Q219.4561 -2.1875 219.1592 -2.3438 Q218.8623 -2.5156 218.2217 -2.7812 Q217.6123 -3.0469 217.2061 -3.2969 Q216.8154 -3.5625 216.6279 -3.9219 Q216.4404 -4.2969 216.4404 -4.8438 Q216.4404 -5.7656 217.1436 -6.2188 Q217.8467 -6.6719 219.0186 -6.6719 Q219.6436 -6.6719 220.1904 -6.5469 Q220.7373 -6.4375 221.3311 -6.1562 L220.7842 -4.875 Q220.3154 -5.0781 219.8779 -5.2188 Q219.4404 -5.3594 219.0029 -5.3594 Q218.2061 -5.3594 218.2061 -4.9219 Q218.2061 -4.7656 218.2998 -4.6406 Q218.4092 -4.5156 218.7061 -4.3594 Q219.0029 -4.2188 219.5811 -3.9844 Q220.1436 -3.75 220.5498 -3.5 Q220.9561 -3.2656 221.1748 -2.8906 Q221.4092 -2.5312 221.4092 -1.9375 ZM223.7013 -9.125 Q224.092 -9.125 224.3732 -8.9375 Q224.6701 -8.75 224.6701 -8.25 Q224.6701 -7.75 224.3732 -7.5625 Q224.092 -7.375 223.7013 -7.375 Q223.2795 -7.375 222.9982 -7.5625 Q222.717 -7.75 222.717 -8.25 Q222.717 -8.75 222.9982 -8.9375 Q223.2795 -9.125 223.7013 -9.125 ZM224.5763 -6.5469 L224.5763 0 L222.7951 0 L222.7951 -6.5469 L224.5763 -6.5469 ZM229.2207 -1.3125 Q229.5176 -1.3125 229.7832 -1.3594 Q230.0645 -1.4219 230.3457 -1.5156 L230.3457 -0.1875 Q230.0489 -0.0625 229.627 0.0312 Q229.2051 0.125 228.7051 0.125 Q228.1114 0.125 227.6426 -0.0625 Q227.1895 -0.2656 226.9082 -0.7344 Q226.6426 -1.2188 226.6426 -2.0469 L226.6426 -5.2031 L225.7989 -5.2031 L225.7989 -5.9688 L226.7832 -6.5625 L227.2989 -7.9375 L228.4395 -7.9375 L228.4395 -6.5469 L230.2676 -6.5469 L230.2676 -5.2031 L228.4395 -5.2031 L228.4395 -2.0469 Q228.4395 -1.6875 228.6426 -1.5 Q228.8614 -1.3125 229.2207 -1.3125 ZM237.6163 -3.2812 Q237.6163 -1.6562 236.7569 -0.7656 Q235.8975 0.125 234.4288 0.125 Q233.5069 0.125 232.7881 -0.2656 Q232.085 -0.6719 231.6788 -1.4375 Q231.2725 -2.2031 231.2725 -3.2812 Q231.2725 -4.9219 232.1163 -5.7969 Q232.9756 -6.6719 234.46 -6.6719 Q235.3819 -6.6719 236.085 -6.2656 Q236.8038 -5.875 237.21 -5.125 Q237.6163 -4.375 237.6163 -3.2812 ZM233.085 -3.2812 Q233.085 -2.3125 233.3975 -1.8125 Q233.7256 -1.3125 234.4444 -1.3125 Q235.1475 -1.3125 235.46 -1.8125 Q235.7881 -2.3125 235.7881 -3.2812 Q235.7881 -4.2656 235.46 -4.75 Q235.1475 -5.2344 234.4288 -5.2344 Q233.7256 -5.2344 233.3975 -4.75 Q233.085 -4.2656 233.085 -3.2812 ZM242.7475 -6.6719 Q242.8881 -6.6719 243.06 -6.6562 Q243.2475 -6.6406 243.3568 -6.625 L243.2162 -4.9375 Q243.1381 -4.9688 242.9662 -4.9844 Q242.81 -5 242.685 -5 Q242.2318 -5 241.81 -4.8438 Q241.3881 -4.6875 241.1225 -4.3125 Q240.8725 -3.9531 240.8725 -3.3438 L240.8725 0 L239.0912 0 L239.0912 -6.5469 L240.4506 -6.5469 L240.7162 -5.4531 L240.7943 -5.4531 Q241.0756 -5.9531 241.5756 -6.3125 Q242.0912 -6.6719 242.7475 -6.6719 ZM243.6017 -6.5469 L245.5549 -6.5469 L246.7892 -2.875 Q246.883 -2.6094 246.9299 -2.3281 Q246.9924 -2.0469 247.008 -1.7344 L247.0392 -1.7344 Q247.0861 -2.0469 247.1486 -2.3281 Q247.2111 -2.6094 247.3049 -2.875 L248.508 -6.5469 L250.4299 -6.5469 L247.6642 0.8438 Q247.2892 1.8594 246.5705 2.3594 Q245.8517 2.875 244.9142 2.875 Q244.6174 2.875 244.3986 2.8438 Q244.1799 2.8125 244.008 2.7812 L244.008 1.375 Q244.1486 1.3906 244.3205 1.4062 Q244.508 1.4375 244.7111 1.4375 Q245.2892 1.4375 245.6174 1.0938 Q245.9455 0.75 246.1017 0.2812 L246.2111 -0.0469 L243.6017 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath16);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-704.954" y="-26.0264" width="103.3886" style="clip-path:url(#clipPath2); stroke:none;" height="43.3441"
+      /><rect x="-704.954" y="-26.0264" width="103.3886" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="43.3441"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><line x1="-704.954" x2="-601.5654" y1="6.3177" style="fill:none; clip-path:url(#clipPath2);" y2="6.3177"
+      /><line x1="-704.954" x2="-601.5654" y1="-1.6823" style="fill:none; clip-path:url(#clipPath2);" y2="-1.6823"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-694.954,-8.0264)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath17);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="stroke-linecap:butt; fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke-dasharray:3,3; stroke:rgb(255,255,204); font-weight:bold;"
+    ><rect x="-628.7654" y="-41.3705" width="34" style="clip-path:url(#clipPath2); stroke:none;" height="20.3441"
+      /><rect x="-628.7654" y="-41.3705" width="34" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="20.3441"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:3,3; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-611.7573,-25.3705)"
+    ><path d="M3.5781 0 L0.4844 0 L0.4844 -0.625 L1.4844 -0.8594 L1.4844 -7.7031 L0.4844 -7.9375 L0.4844 -8.5625 L3.5781 -8.5625 L3.5781 -7.9375 L2.5625 -7.7031 L2.5625 -0.8594 L3.5781 -0.625 L3.5781 0 ZM12.0993 -4.375 Q12.0993 -2.2031 10.9118 -1.0938 Q9.7243 0 7.6149 0 L5.2243 0 L5.2243 -8.5625 L7.8649 -8.5625 Q9.1618 -8.5625 10.1149 -8.0781 Q11.068 -7.6094 11.5836 -6.6719 Q12.0993 -5.75 12.0993 -4.375 ZM10.9586 -4.3281 Q10.9586 -6.0469 10.1149 -6.8438 Q9.2711 -7.6406 7.7086 -7.6406 L6.318 -7.6406 L6.318 -0.9219 L7.4743 -0.9219 Q10.9586 -0.9219 10.9586 -4.3281 Z" style="stroke:none; clip-path:url(#clipPath18);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:3,3; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-624.7654,-25.3705)"
+    ><path d="M3.875 0 L2.7969 0 L2.7969 -7.625 L0.125 -7.625 L0.125 -8.5625 L6.5469 -8.5625 L6.5469 -7.625 L3.875 -7.625 L3.875 0 ZM8.9689 -1.2656 Q8.8127 -0.625 8.5158 0.1406 Q8.2345 0.9062 7.9377 1.5469 L7.1564 1.5469 Q7.3283 0.8594 7.5002 0.0469 Q7.6877 -0.7656 7.7658 -1.3906 L8.8908 -1.3906 L8.9689 -1.2656 Z" style="stroke:none; clip-path:url(#clipPath19);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="698.1206" y="-865.4389" width="61.3895" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="698.1206" y="-865.4389" width="61.3895" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="698.1206" y="-850.4389" width="153.4738" style="clip-path:url(#clipPath2); stroke:none;" height="182.1484"
+      /><rect x="698.1206" y="-850.4389" width="153.4738" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="182.1484"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(765.3575,-831.4389)"
+    ><path d="M3.625 -6.6875 Q4.9375 -6.6875 5.6406 -6.1094 Q6.3438 -5.5469 6.3438 -4.375 L6.3438 0 L5.0938 0 L4.75 -0.8906 L4.7031 -0.8906 Q4.2812 -0.3594 3.8125 -0.1094 Q3.3438 0.125 2.5312 0.125 Q1.6562 0.125 1.0781 -0.3906 Q0.5 -0.9062 0.5 -1.9531 Q0.5 -3 1.2344 -3.5 Q1.9688 -4 3.4375 -4.0469 L4.5781 -4.0781 L4.5781 -4.375 Q4.5781 -4.8906 4.2969 -5.125 Q4.0312 -5.3594 3.5469 -5.3594 Q3.0781 -5.3594 2.6094 -5.2188 Q2.1562 -5.0938 1.7031 -4.8906 L1.1094 -6.0938 Q1.6406 -6.375 2.2812 -6.5312 Q2.9219 -6.6875 3.625 -6.6875 ZM3.875 -3.0156 Q3.0156 -2.9844 2.6719 -2.6875 Q2.3438 -2.4062 2.3438 -1.9375 Q2.3438 -1.5312 2.5781 -1.3594 Q2.8125 -1.1875 3.2031 -1.1875 Q3.7812 -1.1875 4.1719 -1.5312 Q4.5781 -1.875 4.5781 -2.5 L4.5781 -3.0312 L3.875 -3.0156 ZM11.8262 -6.6719 Q12.9355 -6.6719 13.623 -5.8125 Q14.3105 -4.9531 14.3105 -3.2812 Q14.3105 -1.625 13.5918 -0.75 Q12.8887 0.125 11.7793 0.125 Q11.0762 0.125 10.6543 -0.125 Q10.2324 -0.3906 9.9668 -0.7188 L9.873 -0.7188 Q9.9668 -0.2188 9.9668 0.2344 L9.9668 2.875 L8.1855 2.875 L8.1855 -6.5469 L9.6387 -6.5469 L9.8887 -5.7031 L9.9668 -5.7031 Q10.2324 -6.0938 10.6699 -6.375 Q11.123 -6.6719 11.8262 -6.6719 ZM11.2637 -5.25 Q10.5605 -5.25 10.2793 -4.8125 Q9.998 -4.375 9.9668 -3.4844 L9.9668 -3.2969 Q9.9668 -2.3594 10.248 -1.8438 Q10.5293 -1.3281 11.2793 -1.3281 Q11.8887 -1.3281 12.1855 -1.8438 Q12.4824 -2.3594 12.4824 -3.3125 Q12.4824 -5.25 11.2637 -5.25 ZM16.6879 -9.125 Q17.0785 -9.125 17.3597 -8.9375 Q17.6566 -8.75 17.6566 -8.25 Q17.6566 -7.75 17.3597 -7.5625 Q17.0785 -7.375 16.6879 -7.375 Q16.266 -7.375 15.9847 -7.5625 Q15.7035 -7.75 15.7035 -8.25 Q15.7035 -8.75 15.9847 -8.9375 Q16.266 -9.125 16.6879 -9.125 ZM17.5629 -6.5469 L17.5629 0 L15.7816 0 L15.7816 -6.5469 L17.5629 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath20);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="736.6933" y="-713.2905" width="76.3284" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="736.6933" y="-713.2905" width="76.3284" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(746.6933,-695.2905)"
+    ><path d="M4.375 0 L2.5625 0 L2.5625 -7.0625 L0.2344 -7.0625 L0.2344 -8.5625 L6.7031 -8.5625 L6.7031 -7.0625 L4.375 -7.0625 L4.375 0 ZM13.8387 -3.2812 Q13.8387 -1.6562 12.9793 -0.7656 Q12.1199 0.125 10.6512 0.125 Q9.7293 0.125 9.0105 -0.2656 Q8.3074 -0.6719 7.9012 -1.4375 Q7.4949 -2.2031 7.4949 -3.2812 Q7.4949 -4.9219 8.3387 -5.7969 Q9.198 -6.6719 10.6824 -6.6719 Q11.6043 -6.6719 12.3074 -6.2656 Q13.0262 -5.875 13.4324 -5.125 Q13.8387 -4.375 13.8387 -3.2812 ZM9.3074 -3.2812 Q9.3074 -2.3125 9.6199 -1.8125 Q9.948 -1.3125 10.6668 -1.3125 Q11.3699 -1.3125 11.6824 -1.8125 Q12.0105 -2.3125 12.0105 -3.2812 Q12.0105 -4.2656 11.6824 -4.75 Q11.3699 -5.2344 10.6512 -5.2344 Q9.948 -5.2344 9.6199 -4.75 Q9.3074 -4.2656 9.3074 -3.2812 ZM17.0948 -5.0469 Q17.0948 -4.6719 17.0636 -4.2969 Q17.0323 -3.9375 17.0011 -3.5625 L17.0323 -3.5625 Q17.2042 -3.8125 17.3917 -4.0625 Q17.5948 -4.3281 17.8136 -4.5625 L19.6417 -6.5469 L21.6573 -6.5469 L19.0636 -3.7031 L21.8136 0 L19.7511 0 L17.8605 -2.6562 L17.0948 -2.0469 L17.0948 0 L15.3136 0 L15.3136 -9.125 L17.0948 -9.125 L17.0948 -5.0469 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1911 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4411 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0036 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1286 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9411 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM33.5645 -6.6719 Q34.627 -6.6719 35.252 -6.0938 Q35.8926 -5.5312 35.8926 -4.2656 L35.8926 0 L34.1113 0 L34.1113 -3.8281 Q34.1113 -4.5312 33.8457 -4.8906 Q33.5957 -5.25 33.0488 -5.25 Q32.2363 -5.25 31.9238 -4.6875 Q31.627 -4.125 31.627 -3.0781 L31.627 0 L29.8457 0 L29.8457 -6.5469 L31.2051 -6.5469 L31.4551 -5.7188 L31.5488 -5.7188 Q31.8613 -6.2188 32.4082 -6.4375 Q32.9551 -6.6719 33.5645 -6.6719 ZM43.1204 0 L42.4954 -2.0469 L39.3704 -2.0469 L38.7454 0 L36.7923 0 L39.8235 -8.6094 L42.0423 -8.6094 L45.0735 0 L43.1204 0 ZM41.4329 -5.5625 Q41.3704 -5.7656 41.2766 -6.0781 Q41.1829 -6.3906 41.0891 -6.7031 Q40.9954 -7.0312 40.9329 -7.2656 Q40.8704 -7.0312 40.761 -6.6719 Q40.6673 -6.3281 40.5735 -6 Q40.4954 -5.6875 40.4329 -5.5625 L39.8235 -3.5625 L42.0579 -3.5625 L41.4329 -5.5625 ZM49.6504 -6.6719 Q50.7598 -6.6719 51.4473 -5.8125 Q52.1348 -4.9531 52.1348 -3.2812 Q52.1348 -1.625 51.4161 -0.75 Q50.7129 0.125 49.6036 0.125 Q48.9004 0.125 48.4786 -0.125 Q48.0567 -0.3906 47.7911 -0.7188 L47.6973 -0.7188 Q47.7911 -0.2188 47.7911 0.2344 L47.7911 2.875 L46.0098 2.875 L46.0098 -6.5469 L47.4629 -6.5469 L47.7129 -5.7031 L47.7911 -5.7031 Q48.0567 -6.0938 48.4942 -6.375 Q48.9473 -6.6719 49.6504 -6.6719 ZM49.0879 -5.25 Q48.3848 -5.25 48.1036 -4.8125 Q47.8223 -4.375 47.7911 -3.4844 L47.7911 -3.2969 Q47.7911 -2.3594 48.0723 -1.8438 Q48.3536 -1.3281 49.1036 -1.3281 Q49.7129 -1.3281 50.0098 -1.8438 Q50.3067 -2.3594 50.3067 -3.3125 Q50.3067 -5.25 49.0879 -5.25 ZM54.5121 -9.125 Q54.9027 -9.125 55.184 -8.9375 Q55.4809 -8.75 55.4809 -8.25 Q55.4809 -7.75 55.184 -7.5625 Q54.9027 -7.375 54.5121 -7.375 Q54.0902 -7.375 53.809 -7.5625 Q53.5277 -7.75 53.5277 -8.25 Q53.5277 -8.75 53.809 -8.9375 Q54.0902 -9.125 54.5121 -9.125 ZM55.3871 -6.5469 L55.3871 0 L53.6059 0 L53.6059 -6.5469 L55.3871 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath21);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="774.8575" x2="774.8575" y1="-233.5502" style="fill:none; clip-path:url(#clipPath2);" y2="-668.2905"
+      /><line x1="774.8575" x2="768.8575" y1="-233.5502" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-243.9425"
+      /><line x1="774.8575" x2="780.8575" y1="-233.5502" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-243.9425"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="61.9222" y="-864.5778" width="186.258" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="61.9222" y="-864.5778" width="186.258" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="61.9222" y="-849.5778" width="465.645" style="clip-path:url(#clipPath2); stroke:none;" height="125.1772"
+      /><rect x="61.9222" y="-849.5778" width="465.645" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="125.1772"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(262.0504,-830.5778)"
+    ><path d="M3.5938 0.125 Q2.1406 0.125 1.3438 -0.6875 Q0.5469 -1.5 0.5469 -3.2344 Q0.5469 -4.4375 0.9531 -5.1875 Q1.3594 -5.9531 2.0781 -6.3125 Q2.8125 -6.6719 3.75 -6.6719 Q4.4219 -6.6719 4.9219 -6.5312 Q5.4219 -6.4062 5.7969 -6.2344 L5.2656 -4.8438 Q4.8438 -5.0156 4.4688 -5.125 Q4.1094 -5.2344 3.75 -5.2344 Q2.3594 -5.2344 2.3594 -3.25 Q2.3594 -2.2656 2.7188 -1.7969 Q3.0938 -1.3281 3.75 -1.3281 Q4.3125 -1.3281 4.75 -1.4688 Q5.1875 -1.625 5.5938 -1.8906 L5.5938 -0.375 Q5.1875 -0.1094 4.7344 0 Q4.2812 0.125 3.5938 0.125 ZM13.0587 -3.2812 Q13.0587 -1.6562 12.1993 -0.7656 Q11.3399 0.125 9.8712 0.125 Q8.9493 0.125 8.2305 -0.2656 Q7.5274 -0.6719 7.1212 -1.4375 Q6.7149 -2.2031 6.7149 -3.2812 Q6.7149 -4.9219 7.5587 -5.7969 Q8.418 -6.6719 9.9024 -6.6719 Q10.8243 -6.6719 11.5274 -6.2656 Q12.2462 -5.875 12.6524 -5.125 Q13.0587 -4.375 13.0587 -3.2812 ZM8.5274 -3.2812 Q8.5274 -2.3125 8.8399 -1.8125 Q9.168 -1.3125 9.8868 -1.3125 Q10.5899 -1.3125 10.9024 -1.8125 Q11.2305 -2.3125 11.2305 -3.2812 Q11.2305 -4.2656 10.9024 -4.75 Q10.5899 -5.2344 9.8712 -5.2344 Q9.168 -5.2344 8.8399 -4.75 Q8.5274 -4.2656 8.5274 -3.2812 ZM18.2523 -6.6719 Q19.3148 -6.6719 19.9398 -6.0938 Q20.5805 -5.5312 20.5805 -4.2656 L20.5805 0 L18.7992 0 L18.7992 -3.8281 Q18.7992 -4.5312 18.5336 -4.8906 Q18.2836 -5.25 17.7367 -5.25 Q16.9242 -5.25 16.6117 -4.6875 Q16.3148 -4.125 16.3148 -3.0781 L16.3148 0 L14.5336 0 L14.5336 -6.5469 L15.893 -6.5469 L16.143 -5.7188 L16.2367 -5.7188 Q16.5492 -6.2188 17.0961 -6.4375 Q17.643 -6.6719 18.2523 -6.6719 ZM25.1833 -1.3125 Q25.4801 -1.3125 25.7458 -1.3594 Q26.027 -1.4219 26.3083 -1.5156 L26.3083 -0.1875 Q26.0114 -0.0625 25.5895 0.0312 Q25.1676 0.125 24.6676 0.125 Q24.0739 0.125 23.6051 -0.0625 Q23.152 -0.2656 22.8708 -0.7344 Q22.6051 -1.2188 22.6051 -2.0469 L22.6051 -5.2031 L21.7614 -5.2031 L21.7614 -5.9688 L22.7458 -6.5625 L23.2614 -7.9375 L24.402 -7.9375 L24.402 -6.5469 L26.2301 -6.5469 L26.2301 -5.2031 L24.402 -5.2031 L24.402 -2.0469 Q24.402 -1.6875 24.6051 -1.5 Q24.8239 -1.3125 25.1833 -1.3125 ZM31.2819 -6.6719 Q31.4226 -6.6719 31.5944 -6.6562 Q31.7819 -6.6406 31.8913 -6.625 L31.7507 -4.9375 Q31.6726 -4.9688 31.5007 -4.9844 Q31.3444 -5 31.2194 -5 Q30.7663 -5 30.3444 -4.8438 Q29.9226 -4.6875 29.6569 -4.3125 Q29.4069 -3.9531 29.4069 -3.3438 L29.4069 0 L27.6257 0 L27.6257 -6.5469 L28.9851 -6.5469 L29.2507 -5.4531 L29.3288 -5.4531 Q29.6101 -5.9531 30.1101 -6.3125 Q30.6257 -6.6719 31.2819 -6.6719 ZM39.0269 -3.2812 Q39.0269 -1.6562 38.1675 -0.7656 Q37.3081 0.125 35.8394 0.125 Q34.9175 0.125 34.1987 -0.2656 Q33.4956 -0.6719 33.0894 -1.4375 Q32.6831 -2.2031 32.6831 -3.2812 Q32.6831 -4.9219 33.5269 -5.7969 Q34.3862 -6.6719 35.8706 -6.6719 Q36.7925 -6.6719 37.4956 -6.2656 Q38.2144 -5.875 38.6206 -5.125 Q39.0269 -4.375 39.0269 -3.2812 ZM34.4956 -3.2812 Q34.4956 -2.3125 34.8081 -1.8125 Q35.1362 -1.3125 35.855 -1.3125 Q36.5581 -1.3125 36.8706 -1.8125 Q37.1987 -2.3125 37.1987 -3.2812 Q37.1987 -4.2656 36.8706 -4.75 Q36.5581 -5.2344 35.8394 -5.2344 Q35.1362 -5.2344 34.8081 -4.75 Q34.4956 -4.2656 34.4956 -3.2812 ZM42.283 0 L40.5018 0 L40.5018 -9.125 L42.283 -9.125 L42.283 0 ZM45.9431 0 L44.1618 0 L44.1618 -9.125 L45.9431 -9.125 L45.9431 0 ZM50.5249 -6.6719 Q51.8687 -6.6719 52.6656 -5.8906 Q53.4624 -5.125 53.4624 -3.7031 L53.4624 -2.8281 L49.2437 -2.8281 Q49.2593 -2.0781 49.6812 -1.6406 Q50.1187 -1.2188 50.8687 -1.2188 Q51.5093 -1.2188 52.0249 -1.3438 Q52.5406 -1.4688 53.0874 -1.7344 L53.0874 -0.3438 Q52.6031 -0.1094 52.0718 0 Q51.5406 0.125 50.7906 0.125 Q49.8062 0.125 49.0406 -0.2344 Q48.2906 -0.6094 47.8531 -1.3438 Q47.4312 -2.0938 47.4312 -3.2344 Q47.4312 -4.375 47.8062 -5.1406 Q48.1968 -5.9062 48.8999 -6.2812 Q49.6031 -6.6719 50.5249 -6.6719 ZM50.5249 -5.4062 Q50.0093 -5.4062 49.6656 -5.0625 Q49.3374 -4.7344 49.2749 -4.0156 L51.7749 -4.0156 Q51.7749 -4.625 51.4624 -5.0156 Q51.1656 -5.4062 50.5249 -5.4062 ZM58.5701 -6.6719 Q58.7108 -6.6719 58.8826 -6.6562 Q59.0701 -6.6406 59.1795 -6.625 L59.0389 -4.9375 Q58.9608 -4.9688 58.7889 -4.9844 Q58.6326 -5 58.5076 -5 Q58.0545 -5 57.6326 -4.8438 Q57.2108 -4.6875 56.9451 -4.3125 Q56.6951 -3.9531 56.6951 -3.3438 L56.6951 0 L54.9139 0 L54.9139 -6.5469 L56.2733 -6.5469 L56.5389 -5.4531 L56.617 -5.4531 Q56.8983 -5.9531 57.3983 -6.3125 Q57.9139 -6.6719 58.5701 -6.6719 ZM64.94 -1.9375 Q64.94 -0.9531 64.2369 -0.4062 Q63.5338 0.125 62.1432 0.125 Q61.4557 0.125 60.9557 0.0312 Q60.4713 -0.0625 59.9713 -0.2656 L59.9713 -1.7344 Q60.5025 -1.5 61.1119 -1.3438 Q61.7213 -1.1875 62.19 -1.1875 Q62.7213 -1.1875 62.94 -1.3438 Q63.1744 -1.5 63.1744 -1.75 Q63.1744 -1.9219 63.0807 -2.0469 Q62.9869 -2.1875 62.69 -2.3438 Q62.3932 -2.5156 61.7525 -2.7812 Q61.1432 -3.0469 60.7369 -3.2969 Q60.3463 -3.5625 60.1588 -3.9219 Q59.9713 -4.2969 59.9713 -4.8438 Q59.9713 -5.7656 60.6744 -6.2188 Q61.3775 -6.6719 62.5494 -6.6719 Q63.1744 -6.6719 63.7213 -6.5469 Q64.2682 -6.4375 64.8619 -6.1562 L64.315 -4.875 Q63.8463 -5.0781 63.4088 -5.2188 Q62.9713 -5.3594 62.5338 -5.3594 Q61.7369 -5.3594 61.7369 -4.9219 Q61.7369 -4.7656 61.8307 -4.6406 Q61.94 -4.5156 62.2369 -4.3594 Q62.5338 -4.2188 63.1119 -3.9844 Q63.6744 -3.75 64.0807 -3.5 Q64.4869 -3.2656 64.7057 -2.8906 Q64.94 -2.5312 64.94 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath22);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="223.5897" y="-780.3166" width="116.0487" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="223.5897" y="-780.3166" width="116.0487" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(240.4358,-762.3166)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM30.8576 -6.5469 Q32.0138 -6.5469 32.5919 -5.9844 Q33.1857 -5.4375 33.1857 -4.1875 L33.1857 0 L32.1544 0 L32.1544 -4.1094 Q32.1544 -5.6562 30.7013 -5.6562 Q29.6388 -5.6562 29.2326 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1544 -6.0625 29.7013 -6.2969 Q30.2482 -6.5469 30.8576 -6.5469 ZM37.3361 -0.75 Q37.5705 -0.75 37.8205 -0.7812 Q38.0705 -0.8281 38.2267 -0.875 L38.2267 -0.0781 Q38.0705 0.0156 37.758 0.0625 Q37.4455 0.125 37.1486 0.125 Q36.6486 0.125 36.2111 -0.0469 Q35.7892 -0.2344 35.5236 -0.6562 Q35.2736 -1.0938 35.2736 -1.875 L35.2736 -5.6094 L34.3517 -5.6094 L34.3517 -6.125 L35.2736 -6.5469 L35.6955 -7.9062 L36.3205 -7.9062 L36.3205 -6.4375 L38.1799 -6.4375 L38.1799 -5.6094 L36.3205 -5.6094 L36.3205 -1.8906 Q36.3205 -1.3125 36.6017 -1.0312 Q36.883 -0.75 37.3361 -0.75 ZM42.5119 -6.5469 Q42.6994 -6.5469 42.9025 -6.5312 Q43.1213 -6.5156 43.2775 -6.4844 L43.1369 -5.5156 Q42.9806 -5.5469 42.7931 -5.5625 Q42.6056 -5.5938 42.4494 -5.5938 Q41.9494 -5.5938 41.5119 -5.3125 Q41.09 -5.0469 40.8244 -4.5625 Q40.5744 -4.0781 40.5744 -3.4375 L40.5744 0 L39.5119 0 L39.5119 -6.4375 L40.3869 -6.4375 L40.4963 -5.25 L40.5431 -5.25 Q40.8556 -5.7812 41.34 -6.1562 Q41.84 -6.5469 42.5119 -6.5469 ZM50.0617 -3.2344 Q50.0617 -1.625 49.2492 -0.75 Q48.4367 0.125 47.0617 0.125 Q46.2179 0.125 45.5461 -0.2656 Q44.8742 -0.6562 44.4836 -1.4062 Q44.1086 -2.1562 44.1086 -3.2344 Q44.1086 -4.8281 44.9054 -5.6875 Q45.7179 -6.5469 47.0929 -6.5469 Q47.9836 -6.5469 48.6398 -6.1562 Q49.3117 -5.7656 49.6867 -5.0312 Q50.0617 -4.2969 50.0617 -3.2344 ZM45.2023 -3.2344 Q45.2023 -2.0938 45.6554 -1.4219 Q46.1086 -0.75 47.0929 -0.75 Q48.0617 -0.75 48.5148 -1.4219 Q48.9679 -2.0938 48.9679 -3.2344 Q48.9679 -4.375 48.5148 -5.0156 Q48.0617 -5.6562 47.0773 -5.6562 Q46.0929 -5.6562 45.6398 -5.0156 Q45.2023 -4.375 45.2023 -3.2344 ZM52.7905 0 L51.728 0 L51.728 -9.125 L52.7905 -9.125 L52.7905 0 ZM55.8865 0 L54.824 0 L54.824 -9.125 L55.8865 -9.125 L55.8865 0 ZM60.4044 -6.5469 Q61.2325 -6.5469 61.8263 -6.1875 Q62.42 -5.8281 62.7325 -5.1719 Q63.0607 -4.5312 63.0607 -3.6406 L63.0607 -3.0156 L58.6544 -3.0156 Q58.6857 -1.9219 59.2169 -1.3438 Q59.7482 -0.7812 60.7013 -0.7812 Q61.3263 -0.7812 61.795 -0.8906 Q62.2638 -1.0156 62.7794 -1.2188 L62.7794 -0.2969 Q62.2794 -0.0781 61.795 0.0156 Q61.3263 0.125 60.6544 0.125 Q59.7482 0.125 59.045 -0.25 Q58.3419 -0.625 57.9513 -1.3594 Q57.5607 -2.0938 57.5607 -3.1719 Q57.5607 -4.2188 57.92 -4.9688 Q58.2794 -5.7344 58.92 -6.1406 Q59.5607 -6.5469 60.4044 -6.5469 ZM60.3888 -5.6875 Q59.6388 -5.6875 59.2013 -5.2031 Q58.7638 -4.7188 58.6857 -3.8594 L61.9513 -3.8594 Q61.9513 -4.6719 61.5763 -5.1719 Q61.2013 -5.6875 60.3888 -5.6875 ZM67.6881 -6.5469 Q67.8756 -6.5469 68.0787 -6.5312 Q68.2975 -6.5156 68.4537 -6.4844 L68.3131 -5.5156 Q68.1568 -5.5469 67.9693 -5.5625 Q67.7818 -5.5938 67.6256 -5.5938 Q67.1256 -5.5938 66.6881 -5.3125 Q66.2662 -5.0469 66.0006 -4.5625 Q65.7506 -4.0781 65.7506 -3.4375 L65.7506 0 L64.6881 0 L64.6881 -6.4375 L65.5631 -6.4375 L65.6725 -5.25 L65.7193 -5.25 Q66.0318 -5.7812 66.5162 -6.1562 Q67.0162 -6.5469 67.6881 -6.5469 ZM69.2222 -2.3281 L73.7535 -4.2188 L69.2222 -6.3594 L69.2222 -7.2969 L74.8785 -4.4688 L74.8785 -3.875 L69.2222 -1.3906 L69.2222 -2.3281 ZM76.0863 -2.3281 L80.6175 -4.2188 L76.0863 -6.3594 L76.0863 -7.2969 L81.7425 -4.4688 L81.7425 -3.875 L76.0863 -1.3906 L76.0863 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath23);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(233.5897,-745.9725)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 ZM39.867 -7.1719 Q38.8201 -7.1719 38.2576 -6.3906 Q37.7107 -5.6094 37.7107 -4.2656 Q37.7107 -2.8906 38.2264 -2.1406 Q38.742 -1.3906 39.867 -1.3906 Q40.3982 -1.3906 40.9139 -1.5 Q41.4295 -1.625 42.0545 -1.8438 L42.0545 -0.3281 Q41.492 -0.0938 40.9295 0.0156 Q40.3826 0.125 39.6951 0.125 Q38.3826 0.125 37.5232 -0.4219 Q36.6639 -0.9688 36.2576 -1.9531 Q35.8514 -2.9531 35.8514 -4.2656 Q35.8514 -5.5625 36.3045 -6.5625 Q36.7732 -7.5625 37.6639 -8.125 Q38.5701 -8.6875 39.867 -8.6875 Q40.5076 -8.6875 41.1482 -8.5156 Q41.7889 -8.3594 42.367 -8.0938 L41.7889 -6.6094 Q41.3045 -6.8438 40.8201 -7 Q40.3357 -7.1719 39.867 -7.1719 ZM49.6829 -3.2812 Q49.6829 -1.6562 48.8235 -0.7656 Q47.9642 0.125 46.4954 0.125 Q45.5735 0.125 44.8548 -0.2656 Q44.1517 -0.6719 43.7454 -1.4375 Q43.3392 -2.2031 43.3392 -3.2812 Q43.3392 -4.9219 44.1829 -5.7969 Q45.0423 -6.6719 46.5267 -6.6719 Q47.4485 -6.6719 48.1517 -6.2656 Q48.8704 -5.875 49.2767 -5.125 Q49.6829 -4.375 49.6829 -3.2812 ZM45.1517 -3.2812 Q45.1517 -2.3125 45.4642 -1.8125 Q45.7923 -1.3125 46.511 -1.3125 Q47.2142 -1.3125 47.5267 -1.8125 Q47.8548 -2.3125 47.8548 -3.2812 Q47.8548 -4.2656 47.5267 -4.75 Q47.2142 -5.2344 46.4954 -5.2344 Q45.7923 -5.2344 45.4642 -4.75 Q45.1517 -4.2656 45.1517 -3.2812 ZM54.8766 -6.6719 Q55.9391 -6.6719 56.5641 -6.0938 Q57.2047 -5.5312 57.2047 -4.2656 L57.2047 0 L55.4235 0 L55.4235 -3.8281 Q55.4235 -4.5312 55.1579 -4.8906 Q54.9079 -5.25 54.361 -5.25 Q53.5485 -5.25 53.236 -4.6875 Q52.9391 -4.125 52.9391 -3.0781 L52.9391 0 L51.1579 0 L51.1579 -6.5469 L52.5172 -6.5469 L52.7672 -5.7188 L52.861 -5.7188 Q53.1735 -6.2188 53.7204 -6.4375 Q54.2672 -6.6719 54.8766 -6.6719 ZM61.8075 -1.3125 Q62.1044 -1.3125 62.37 -1.3594 Q62.6513 -1.4219 62.9325 -1.5156 L62.9325 -0.1875 Q62.6357 -0.0625 62.2138 0.0312 Q61.7919 0.125 61.2919 0.125 Q60.6982 0.125 60.2294 -0.0625 Q59.7763 -0.2656 59.495 -0.7344 Q59.2294 -1.2188 59.2294 -2.0469 L59.2294 -5.2031 L58.3857 -5.2031 L58.3857 -5.9688 L59.37 -6.5625 L59.8857 -7.9375 L61.0263 -7.9375 L61.0263 -6.5469 L62.8544 -6.5469 L62.8544 -5.2031 L61.0263 -5.2031 L61.0263 -2.0469 Q61.0263 -1.6875 61.2294 -1.5 Q61.4482 -1.3125 61.8075 -1.3125 ZM67.9062 -6.6719 Q68.0468 -6.6719 68.2187 -6.6562 Q68.4062 -6.6406 68.5156 -6.625 L68.3749 -4.9375 Q68.2968 -4.9688 68.1249 -4.9844 Q67.9687 -5 67.8437 -5 Q67.3906 -5 66.9687 -4.8438 Q66.5468 -4.6875 66.2812 -4.3125 Q66.0312 -3.9531 66.0312 -3.3438 L66.0312 0 L64.2499 0 L64.2499 -6.5469 L65.6093 -6.5469 L65.8749 -5.4531 L65.9531 -5.4531 Q66.2343 -5.9531 66.7343 -6.3125 Q67.2499 -6.6719 67.9062 -6.6719 ZM75.6511 -3.2812 Q75.6511 -1.6562 74.7917 -0.7656 Q73.9324 0.125 72.4636 0.125 Q71.5417 0.125 70.823 -0.2656 Q70.1199 -0.6719 69.7136 -1.4375 Q69.3074 -2.2031 69.3074 -3.2812 Q69.3074 -4.9219 70.1511 -5.7969 Q71.0105 -6.6719 72.4949 -6.6719 Q73.4167 -6.6719 74.1199 -6.2656 Q74.8386 -5.875 75.2449 -5.125 Q75.6511 -4.375 75.6511 -3.2812 ZM71.1199 -3.2812 Q71.1199 -2.3125 71.4324 -1.8125 Q71.7605 -1.3125 72.4792 -1.3125 Q73.1824 -1.3125 73.4949 -1.8125 Q73.823 -2.3125 73.823 -3.2812 Q73.823 -4.2656 73.4949 -4.75 Q73.1824 -5.2344 72.4636 -5.2344 Q71.7605 -5.2344 71.4324 -4.75 Q71.1199 -4.2656 71.1199 -3.2812 ZM78.9073 0 L77.126 0 L77.126 -9.125 L78.9073 -9.125 L78.9073 0 ZM82.5673 0 L80.7861 0 L80.7861 -9.125 L82.5673 -9.125 L82.5673 0 ZM87.1492 -6.6719 Q88.493 -6.6719 89.2898 -5.8906 Q90.0867 -5.125 90.0867 -3.7031 L90.0867 -2.8281 L85.868 -2.8281 Q85.8836 -2.0781 86.3055 -1.6406 Q86.743 -1.2188 87.493 -1.2188 Q88.1336 -1.2188 88.6492 -1.3438 Q89.1648 -1.4688 89.7117 -1.7344 L89.7117 -0.3438 Q89.2273 -0.1094 88.6961 0 Q88.1648 0.125 87.4148 0.125 Q86.4305 0.125 85.6648 -0.2344 Q84.9148 -0.6094 84.4773 -1.3438 Q84.0555 -2.0938 84.0555 -3.2344 Q84.0555 -4.375 84.4305 -5.1406 Q84.8211 -5.9062 85.5242 -6.2812 Q86.2273 -6.6719 87.1492 -6.6719 ZM87.1492 -5.4062 Q86.6336 -5.4062 86.2898 -5.0625 Q85.9617 -4.7344 85.8992 -4.0156 L88.3992 -4.0156 Q88.3992 -4.625 88.0867 -5.0156 Q87.7898 -5.4062 87.1492 -5.4062 ZM95.1944 -6.6719 Q95.335 -6.6719 95.5069 -6.6562 Q95.6944 -6.6406 95.8038 -6.625 L95.6631 -4.9375 Q95.585 -4.9688 95.4131 -4.9844 Q95.2569 -5 95.1319 -5 Q94.6788 -5 94.2569 -4.8438 Q93.835 -4.6875 93.5694 -4.3125 Q93.3194 -3.9531 93.3194 -3.3438 L93.3194 0 L91.5381 0 L91.5381 -6.5469 L92.8975 -6.5469 L93.1631 -5.4531 L93.2413 -5.4531 Q93.5225 -5.9531 94.0225 -6.3125 Q94.5381 -6.6719 95.1944 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath24);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="866.1694" y="-627.3288" width="92.3095" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="866.1694" y="-627.3288" width="92.3095" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="866.1694" y="-612.3288" width="230.7737" style="clip-path:url(#clipPath2); stroke:none;" height="315.2574"
+      /><rect x="866.1694" y="-612.3288" width="230.7737" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="315.2574"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(962.5563,-593.3288)"
+    ><path d="M3.5938 0.125 Q2.1406 0.125 1.3438 -0.6875 Q0.5469 -1.5 0.5469 -3.2344 Q0.5469 -4.4375 0.9531 -5.1875 Q1.3594 -5.9531 2.0781 -6.3125 Q2.8125 -6.6719 3.75 -6.6719 Q4.4219 -6.6719 4.9219 -6.5312 Q5.4219 -6.4062 5.7969 -6.2344 L5.2656 -4.8438 Q4.8438 -5.0156 4.4688 -5.125 Q4.1094 -5.2344 3.75 -5.2344 Q2.3594 -5.2344 2.3594 -3.25 Q2.3594 -2.2656 2.7188 -1.7969 Q3.0938 -1.3281 3.75 -1.3281 Q4.3125 -1.3281 4.75 -1.4688 Q5.1875 -1.625 5.5938 -1.8906 L5.5938 -0.375 Q5.1875 -0.1094 4.7344 0 Q4.2812 0.125 3.5938 0.125 ZM13.0587 -3.2812 Q13.0587 -1.6562 12.1993 -0.7656 Q11.3399 0.125 9.8712 0.125 Q8.9493 0.125 8.2305 -0.2656 Q7.5274 -0.6719 7.1212 -1.4375 Q6.7149 -2.2031 6.7149 -3.2812 Q6.7149 -4.9219 7.5587 -5.7969 Q8.418 -6.6719 9.9024 -6.6719 Q10.8243 -6.6719 11.5274 -6.2656 Q12.2462 -5.875 12.6524 -5.125 Q13.0587 -4.375 13.0587 -3.2812 ZM8.5274 -3.2812 Q8.5274 -2.3125 8.8399 -1.8125 Q9.168 -1.3125 9.8868 -1.3125 Q10.5899 -1.3125 10.9024 -1.8125 Q11.2305 -2.3125 11.2305 -3.2812 Q11.2305 -4.2656 10.9024 -4.75 Q10.5899 -5.2344 9.8712 -5.2344 Q9.168 -5.2344 8.8399 -4.75 Q8.5274 -4.2656 8.5274 -3.2812 ZM18.2523 -6.6719 Q19.3148 -6.6719 19.9398 -6.0938 Q20.5805 -5.5312 20.5805 -4.2656 L20.5805 0 L18.7992 0 L18.7992 -3.8281 Q18.7992 -4.5312 18.5336 -4.8906 Q18.2836 -5.25 17.7367 -5.25 Q16.9242 -5.25 16.6117 -4.6875 Q16.3148 -4.125 16.3148 -3.0781 L16.3148 0 L14.5336 0 L14.5336 -6.5469 L15.893 -6.5469 L16.143 -5.7188 L16.2367 -5.7188 Q16.5492 -6.2188 17.0961 -6.4375 Q17.643 -6.6719 18.2523 -6.6719 ZM26.0426 -5.2031 L24.4958 -5.2031 L24.4958 0 L22.6989 0 L22.6989 -5.2031 L21.7145 -5.2031 L21.7145 -6.0781 L22.6989 -6.5469 L22.6989 -7.0312 Q22.6989 -7.875 22.9801 -8.3281 Q23.2614 -8.7969 23.777 -8.9844 Q24.3083 -9.1875 25.027 -9.1875 Q25.5426 -9.1875 25.9645 -9.0938 Q26.402 -9.0156 26.6676 -8.9062 L26.2145 -7.5938 Q26.0114 -7.6562 25.7614 -7.7031 Q25.527 -7.7656 25.2145 -7.7656 Q24.8395 -7.7656 24.6676 -7.5312 Q24.4958 -7.3125 24.4958 -6.9531 L24.4958 -6.5469 L26.0426 -6.5469 L26.0426 -5.2031 ZM27.9679 -9.125 Q28.3586 -9.125 28.6398 -8.9375 Q28.9367 -8.75 28.9367 -8.25 Q28.9367 -7.75 28.6398 -7.5625 Q28.3586 -7.375 27.9679 -7.375 Q27.5461 -7.375 27.2648 -7.5625 Q26.9836 -7.75 26.9836 -8.25 Q26.9836 -8.75 27.2648 -8.9375 Q27.5461 -9.125 27.9679 -9.125 ZM28.8429 -6.5469 L28.8429 0 L27.0617 0 L27.0617 -6.5469 L28.8429 -6.5469 ZM32.8467 -6.6719 Q34.0498 -6.6719 34.7373 -5.7188 L34.7842 -5.7188 L34.9248 -6.5469 L36.4404 -6.5469 L36.4404 0.0156 Q36.4404 1.4219 35.6123 2.1406 Q34.7842 2.875 33.1748 2.875 Q32.4717 2.875 31.8779 2.7969 Q31.2842 2.7188 30.7217 2.5 L30.7217 1.0625 Q31.9248 1.5781 33.2686 1.5781 Q34.6592 1.5781 34.6592 0.0781 L34.6592 -0.0469 Q34.6592 -0.25 34.6748 -0.4688 Q34.6904 -0.6875 34.7061 -0.8594 L34.6592 -0.8594 Q34.3154 -0.3438 33.8467 -0.1094 Q33.3779 0.125 32.7998 0.125 Q31.6279 0.125 30.9717 -0.7656 Q30.3311 -1.6719 30.3311 -3.2656 Q30.3311 -4.875 31.0029 -5.7656 Q31.6748 -6.6719 32.8467 -6.6719 ZM33.4092 -5.2188 Q32.1436 -5.2188 32.1436 -3.2344 Q32.1436 -1.2812 33.4248 -1.2812 Q34.1123 -1.2812 34.4404 -1.6719 Q34.7686 -2.0625 34.7686 -3.0312 L34.7686 -3.25 Q34.7686 -4.3125 34.4404 -4.7656 Q34.1279 -5.2188 33.4092 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath25);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="895.5297" y="-497.0545" width="172.0531" style="clip-path:url(#clipPath2); stroke:none;" height="57.0323"
+      /><rect x="895.5297" y="-497.0545" width="172.0531" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="57.0323"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(936.316,-462.7104)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM43.89 0.125 Q43.0463 0.125 42.3744 -0.2188 Q41.7182 -0.5781 41.3275 -1.3125 Q40.9525 -2.0469 40.9525 -3.1875 Q40.9525 -4.375 41.3432 -5.1094 Q41.7494 -5.8594 42.4213 -6.2031 Q43.1088 -6.5469 43.9682 -6.5469 Q44.4525 -6.5469 44.9057 -6.4375 Q45.3744 -6.3438 45.6557 -6.2031 L45.3432 -5.3281 Q45.0463 -5.4375 44.6557 -5.5312 Q44.2807 -5.625 43.9369 -5.625 Q42.0463 -5.625 42.0463 -3.1875 Q42.0463 -2.0312 42.4994 -1.4062 Q42.9682 -0.7969 43.89 -0.7969 Q44.4057 -0.7969 44.8119 -0.9062 Q45.2182 -1.0156 45.5463 -1.1562 L45.5463 -0.2344 Q45.2338 -0.0625 44.8432 0.0312 Q44.4525 0.125 43.89 0.125 ZM49.5563 -6.5469 Q50.3844 -6.5469 50.9782 -6.1875 Q51.5719 -5.8281 51.8844 -5.1719 Q52.2126 -4.5312 52.2126 -3.6406 L52.2126 -3.0156 L47.8063 -3.0156 Q47.8376 -1.9219 48.3688 -1.3438 Q48.9001 -0.7812 49.8532 -0.7812 Q50.4782 -0.7812 50.9469 -0.8906 Q51.4157 -1.0156 51.9313 -1.2188 L51.9313 -0.2969 Q51.4313 -0.0781 50.9469 0.0156 Q50.4782 0.125 49.8063 0.125 Q48.9001 0.125 48.1969 -0.25 Q47.4938 -0.625 47.1032 -1.3594 Q46.7126 -2.0938 46.7126 -3.1719 Q46.7126 -4.2188 47.0719 -4.9688 Q47.4313 -5.7344 48.0719 -6.1406 Q48.7126 -6.5469 49.5563 -6.5469 ZM49.5407 -5.6875 Q48.7907 -5.6875 48.3532 -5.2031 Q47.9157 -4.7188 47.8376 -3.8594 L51.1032 -3.8594 Q51.1032 -4.6719 50.7282 -5.1719 Q50.3532 -5.6875 49.5407 -5.6875 ZM56.9025 -6.5469 Q58.09 -6.5469 58.8087 -5.7188 Q59.5431 -4.8906 59.5431 -3.2344 Q59.5431 -1.5781 58.8087 -0.7188 Q58.09 0.125 56.8869 0.125 Q56.1525 0.125 55.6681 -0.1562 Q55.1837 -0.4375 54.9025 -0.8125 L54.8244 -0.8125 Q54.8556 -0.6094 54.8712 -0.2969 Q54.9025 0.0156 54.9025 0.2344 L54.9025 2.875 L53.84 2.875 L53.84 -6.4375 L54.715 -6.4375 L54.8556 -5.5625 L54.9025 -5.5625 Q55.1837 -5.9688 55.6525 -6.25 Q56.1212 -6.5469 56.9025 -6.5469 ZM56.715 -5.6562 Q55.7306 -5.6562 55.3244 -5.1094 Q54.9181 -4.5625 54.9025 -3.4375 L54.9025 -3.2344 Q54.9025 -2.0469 55.2931 -1.3906 Q55.6837 -0.75 56.7306 -0.75 Q57.3244 -0.75 57.6994 -1.0781 Q58.0744 -1.4062 58.2619 -1.9531 Q58.4494 -2.5156 58.4494 -3.2344 Q58.4494 -4.3438 58.0275 -5 Q57.6056 -5.6562 56.715 -5.6562 ZM63.3763 -0.75 Q63.6107 -0.75 63.8607 -0.7812 Q64.1107 -0.8281 64.2669 -0.875 L64.2669 -0.0781 Q64.1107 0.0156 63.7982 0.0625 Q63.4857 0.125 63.1888 0.125 Q62.6888 0.125 62.2513 -0.0469 Q61.8294 -0.2344 61.5638 -0.6562 Q61.3138 -1.0938 61.3138 -1.875 L61.3138 -5.6094 L60.3919 -5.6094 L60.3919 -6.125 L61.3138 -6.5469 L61.7357 -7.9062 L62.3607 -7.9062 L62.3607 -6.4375 L64.22 -6.4375 L64.22 -5.6094 L62.3607 -5.6094 L62.3607 -1.8906 Q62.3607 -1.3125 62.6419 -1.0312 Q62.9232 -0.75 63.3763 -0.75 ZM71.1458 -3.2344 Q71.1458 -1.625 70.3333 -0.75 Q69.5208 0.125 68.1458 0.125 Q67.3021 0.125 66.6302 -0.2656 Q65.9583 -0.6562 65.5677 -1.4062 Q65.1927 -2.1562 65.1927 -3.2344 Q65.1927 -4.8281 65.9896 -5.6875 Q66.8021 -6.5469 68.1771 -6.5469 Q69.0677 -6.5469 69.724 -6.1562 Q70.3958 -5.7656 70.7708 -5.0312 Q71.1458 -4.2969 71.1458 -3.2344 ZM66.2865 -3.2344 Q66.2865 -2.0938 66.7396 -1.4219 Q67.1927 -0.75 68.1771 -0.75 Q69.1458 -0.75 69.599 -1.4219 Q70.0521 -2.0938 70.0521 -3.2344 Q70.0521 -4.375 69.599 -5.0156 Q69.1458 -5.6562 68.1615 -5.6562 Q67.1771 -5.6562 66.724 -5.0156 Q66.2865 -4.375 66.2865 -3.2344 ZM75.8121 -6.5469 Q75.9996 -6.5469 76.2028 -6.5312 Q76.4215 -6.5156 76.5778 -6.4844 L76.4371 -5.5156 Q76.2809 -5.5469 76.0934 -5.5625 Q75.9059 -5.5938 75.7496 -5.5938 Q75.2496 -5.5938 74.8121 -5.3125 Q74.3903 -5.0469 74.1246 -4.5625 Q73.8746 -4.0781 73.8746 -3.4375 L73.8746 0 L72.8121 0 L72.8121 -6.4375 L73.6871 -6.4375 L73.7965 -5.25 L73.8434 -5.25 Q74.1559 -5.7812 74.6403 -6.1562 Q75.1403 -6.5469 75.8121 -6.5469 ZM77.3463 -2.3281 L81.8775 -4.2188 L77.3463 -6.3594 L77.3463 -7.2969 L83.0025 -4.4688 L83.0025 -3.875 L77.3463 -1.3906 L77.3463 -2.3281 ZM84.2103 -2.3281 L88.7416 -4.2188 L84.2103 -6.3594 L84.2103 -7.2969 L89.8666 -4.4688 L89.8666 -3.875 L84.2103 -1.3906 L84.2103 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath26);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(935.422,-479.0545)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath27);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(905.5297,-446.3663)"
+    ><path d="M3.5781 -8.5625 Q5.3281 -8.5625 6.1562 -7.9219 Q7 -7.2969 7 -6 Q7 -5.4062 6.7656 -4.9688 Q6.5469 -4.5312 6.1719 -4.2188 Q5.8125 -3.9219 5.4062 -3.7344 L7.9219 0 L5.9062 0 L3.8594 -3.2812 L2.8906 -3.2812 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L3.5781 -8.5625 ZM3.4375 -7.0781 L2.8906 -7.0781 L2.8906 -4.7656 L3.4844 -4.7656 Q4.375 -4.7656 4.7656 -5.0625 Q5.1562 -5.3594 5.1562 -5.9531 Q5.1562 -6.5625 4.7344 -6.8125 Q4.3281 -7.0781 3.4375 -7.0781 ZM11.5607 -6.6719 Q12.9044 -6.6719 13.7013 -5.8906 Q14.4982 -5.125 14.4982 -3.7031 L14.4982 -2.8281 L10.2794 -2.8281 Q10.2951 -2.0781 10.7169 -1.6406 Q11.1544 -1.2188 11.9044 -1.2188 Q12.5451 -1.2188 13.0607 -1.3438 Q13.5763 -1.4688 14.1232 -1.7344 L14.1232 -0.3438 Q13.6388 -0.1094 13.1076 0 Q12.5763 0.125 11.8263 0.125 Q10.8419 0.125 10.0763 -0.2344 Q9.3263 -0.6094 8.8888 -1.3438 Q8.4669 -2.0938 8.4669 -3.2344 Q8.4669 -4.375 8.8419 -5.1406 Q9.2326 -5.9062 9.9357 -6.2812 Q10.6388 -6.6719 11.5607 -6.6719 ZM11.5607 -5.4062 Q11.0451 -5.4062 10.7013 -5.0625 Q10.3732 -4.7344 10.3107 -4.0156 L12.8107 -4.0156 Q12.8107 -4.625 12.4982 -5.0156 Q12.2013 -5.4062 11.5607 -5.4062 ZM20.5277 -1.9375 Q20.5277 -0.9531 19.8246 -0.4062 Q19.1215 0.125 17.7309 0.125 Q17.0434 0.125 16.5434 0.0312 Q16.059 -0.0625 15.559 -0.2656 L15.559 -1.7344 Q16.0902 -1.5 16.6996 -1.3438 Q17.309 -1.1875 17.7777 -1.1875 Q18.309 -1.1875 18.5277 -1.3438 Q18.7621 -1.5 18.7621 -1.75 Q18.7621 -1.9219 18.6684 -2.0469 Q18.5746 -2.1875 18.2777 -2.3438 Q17.9809 -2.5156 17.3402 -2.7812 Q16.7309 -3.0469 16.3246 -3.2969 Q15.934 -3.5625 15.7465 -3.9219 Q15.559 -4.2969 15.559 -4.8438 Q15.559 -5.7656 16.2621 -6.2188 Q16.9652 -6.6719 18.1371 -6.6719 Q18.7621 -6.6719 19.309 -6.5469 Q19.8559 -6.4375 20.4496 -6.1562 L19.9027 -4.875 Q19.434 -5.0781 18.9965 -5.2188 Q18.559 -5.3594 18.1215 -5.3594 Q17.3246 -5.3594 17.3246 -4.9219 Q17.3246 -4.7656 17.4184 -4.6406 Q17.5277 -4.5156 17.8246 -4.3594 Q18.1215 -4.2188 18.6996 -3.9844 Q19.2621 -3.75 19.6684 -3.5 Q20.0746 -3.2656 20.2934 -2.8906 Q20.5277 -2.5312 20.5277 -1.9375 ZM24.6793 -1.3125 Q24.9762 -1.3125 25.2418 -1.3594 Q25.523 -1.4219 25.8043 -1.5156 L25.8043 -0.1875 Q25.5074 -0.0625 25.0855 0.0312 Q24.6637 0.125 24.1637 0.125 Q23.5699 0.125 23.1012 -0.0625 Q22.648 -0.2656 22.3668 -0.7344 Q22.1012 -1.2188 22.1012 -2.0469 L22.1012 -5.2031 L21.2574 -5.2031 L21.2574 -5.9688 L22.2418 -6.5625 L22.7574 -7.9375 L23.898 -7.9375 L23.898 -6.5469 L25.7262 -6.5469 L25.7262 -5.2031 L23.898 -5.2031 L23.898 -2.0469 Q23.898 -1.6875 24.1012 -1.5 Q24.3199 -1.3125 24.6793 -1.3125 ZM30.5592 0 L28.7467 0 L28.7467 -7.0625 L26.4186 -7.0625 L26.4186 -8.5625 L32.8873 -8.5625 L32.8873 -7.0625 L30.5592 -7.0625 L30.5592 0 ZM36.7729 -6.6719 Q38.1166 -6.6719 38.9135 -5.8906 Q39.7104 -5.125 39.7104 -3.7031 L39.7104 -2.8281 L35.4916 -2.8281 Q35.5072 -2.0781 35.9291 -1.6406 Q36.3666 -1.2188 37.1166 -1.2188 Q37.7572 -1.2188 38.2729 -1.3438 Q38.7885 -1.4688 39.3354 -1.7344 L39.3354 -0.3438 Q38.851 -0.1094 38.3197 0 Q37.7885 0.125 37.0385 0.125 Q36.0541 0.125 35.2885 -0.2344 Q34.5385 -0.6094 34.101 -1.3438 Q33.6791 -2.0938 33.6791 -3.2344 Q33.6791 -4.375 34.0541 -5.1406 Q34.4447 -5.9062 35.1479 -6.2812 Q35.851 -6.6719 36.7729 -6.6719 ZM36.7729 -5.4062 Q36.2572 -5.4062 35.9135 -5.0625 Q35.5854 -4.7344 35.5229 -4.0156 L38.0229 -4.0156 Q38.0229 -4.625 37.7104 -5.0156 Q37.4135 -5.4062 36.7729 -5.4062 ZM48.8493 -6.6719 Q49.9743 -6.6719 50.5368 -6.0938 Q51.1149 -5.5312 51.1149 -4.2656 L51.1149 0 L49.318 0 L49.318 -3.8281 Q49.318 -5.25 48.3337 -5.25 Q47.6305 -5.25 47.318 -4.7344 Q47.0212 -4.2344 47.0212 -3.2812 L47.0212 0 L45.2399 0 L45.2399 -3.8281 Q45.2399 -5.25 44.2555 -5.25 Q43.5055 -5.25 43.2243 -4.6875 Q42.943 -4.125 42.943 -3.0781 L42.943 0 L41.1618 0 L41.1618 -6.5469 L42.5212 -6.5469 L42.7712 -5.7188 L42.8649 -5.7188 Q43.1618 -6.2188 43.6774 -6.4375 Q44.2087 -6.6719 44.7712 -6.6719 Q45.4899 -6.6719 45.9899 -6.4375 Q46.5055 -6.2031 46.7712 -5.7188 L46.9274 -5.7188 Q47.2243 -6.2188 47.7555 -6.4375 Q48.2868 -6.6719 48.8493 -6.6719 ZM56.5865 -6.6719 Q57.6959 -6.6719 58.3834 -5.8125 Q59.0709 -4.9531 59.0709 -3.2812 Q59.0709 -1.625 58.3521 -0.75 Q57.649 0.125 56.5396 0.125 Q55.8365 0.125 55.4146 -0.125 Q54.9928 -0.3906 54.7271 -0.7188 L54.6334 -0.7188 Q54.7271 -0.2188 54.7271 0.2344 L54.7271 2.875 L52.9459 2.875 L52.9459 -6.5469 L54.399 -6.5469 L54.649 -5.7031 L54.7271 -5.7031 Q54.9928 -6.0938 55.4303 -6.375 Q55.8834 -6.6719 56.5865 -6.6719 ZM56.024 -5.25 Q55.3209 -5.25 55.0396 -4.8125 Q54.7584 -4.375 54.7271 -3.4844 L54.7271 -3.2969 Q54.7271 -2.3594 55.0084 -1.8438 Q55.2896 -1.3281 56.0396 -1.3281 Q56.649 -1.3281 56.9459 -1.8438 Q57.2428 -2.3594 57.2428 -3.3125 Q57.2428 -5.25 56.024 -5.25 ZM62.3232 0 L60.5419 0 L60.5419 -9.125 L62.3232 -9.125 L62.3232 0 ZM66.8895 -6.6875 Q68.202 -6.6875 68.9051 -6.1094 Q69.6082 -5.5469 69.6082 -4.375 L69.6082 0 L68.3582 0 L68.0145 -0.8906 L67.9676 -0.8906 Q67.5457 -0.3594 67.077 -0.1094 Q66.6082 0.125 65.7957 0.125 Q64.9207 0.125 64.3426 -0.3906 Q63.7645 -0.9062 63.7645 -1.9531 Q63.7645 -3 64.4988 -3.5 Q65.2332 -4 66.702 -4.0469 L67.8426 -4.0781 L67.8426 -4.375 Q67.8426 -4.8906 67.5613 -5.125 Q67.2957 -5.3594 66.8113 -5.3594 Q66.3426 -5.3594 65.8738 -5.2188 Q65.4207 -5.0938 64.9676 -4.8906 L64.3738 -6.0938 Q64.9051 -6.375 65.5457 -6.5312 Q66.1863 -6.6875 66.8895 -6.6875 ZM67.1395 -3.0156 Q66.2801 -2.9844 65.9363 -2.6875 Q65.6082 -2.4062 65.6082 -1.9375 Q65.6082 -1.5312 65.8426 -1.3594 Q66.077 -1.1875 66.4676 -1.1875 Q67.0457 -1.1875 67.4363 -1.5312 Q67.8426 -1.875 67.8426 -2.5 L67.8426 -3.0312 L67.1395 -3.0156 ZM74.2156 -1.3125 Q74.5125 -1.3125 74.7781 -1.3594 Q75.0594 -1.4219 75.3406 -1.5156 L75.3406 -0.1875 Q75.0437 -0.0625 74.6219 0.0312 Q74.2 0.125 73.7 0.125 Q73.1062 0.125 72.6375 -0.0625 Q72.1844 -0.2656 71.9031 -0.7344 Q71.6375 -1.2188 71.6375 -2.0469 L71.6375 -5.2031 L70.7937 -5.2031 L70.7937 -5.9688 L71.7781 -6.5625 L72.2937 -7.9375 L73.4344 -7.9375 L73.4344 -6.5469 L75.2625 -6.5469 L75.2625 -5.2031 L73.4344 -5.2031 L73.4344 -2.0469 Q73.4344 -1.6875 73.6375 -1.5 Q73.8562 -1.3125 74.2156 -1.3125 ZM79.3612 -6.6719 Q80.7049 -6.6719 81.5018 -5.8906 Q82.2987 -5.125 82.2987 -3.7031 L82.2987 -2.8281 L78.0799 -2.8281 Q78.0955 -2.0781 78.5174 -1.6406 Q78.9549 -1.2188 79.7049 -1.2188 Q80.3455 -1.2188 80.8612 -1.3438 Q81.3768 -1.4688 81.9237 -1.7344 L81.9237 -0.3438 Q81.4393 -0.1094 80.908 0 Q80.3768 0.125 79.6268 0.125 Q78.6424 0.125 77.8768 -0.2344 Q77.1268 -0.6094 76.6893 -1.3438 Q76.2674 -2.0938 76.2674 -3.2344 Q76.2674 -4.375 76.6424 -5.1406 Q77.033 -5.9062 77.7362 -6.2812 Q78.4393 -6.6719 79.3612 -6.6719 ZM79.3612 -5.4062 Q78.8455 -5.4062 78.5018 -5.0625 Q78.1737 -4.7344 78.1112 -4.0156 L80.6112 -4.0156 Q80.6112 -4.625 80.2987 -5.0156 Q80.0018 -5.4062 79.3612 -5.4062 ZM87.0938 0 L83.2032 0 L83.2032 -1.0312 L84.2345 -1.5156 L84.2345 -7.0625 L83.2032 -7.5312 L83.2032 -8.5625 L87.0938 -8.5625 L87.0938 -7.5312 L86.047 -7.0625 L86.047 -1.5156 L87.0938 -1.0312 L87.0938 0 ZM92.1369 -6.6719 Q93.1994 -6.6719 93.8244 -6.0938 Q94.465 -5.5312 94.465 -4.2656 L94.465 0 L92.6837 0 L92.6837 -3.8281 Q92.6837 -4.5312 92.4181 -4.8906 Q92.1681 -5.25 91.6212 -5.25 Q90.8087 -5.25 90.4962 -4.6875 Q90.1994 -4.125 90.1994 -3.0781 L90.1994 0 L88.4181 0 L88.4181 -6.5469 L89.7775 -6.5469 L90.0275 -5.7188 L90.1212 -5.7188 Q90.4337 -6.2188 90.9806 -6.4375 Q91.5275 -6.6719 92.1369 -6.6719 ZM99.0678 -1.3125 Q99.3647 -1.3125 99.6303 -1.3594 Q99.9115 -1.4219 100.1928 -1.5156 L100.1928 -0.1875 Q99.8959 -0.0625 99.474 0.0312 Q99.0522 0.125 98.5522 0.125 Q97.9584 0.125 97.4897 -0.0625 Q97.0365 -0.2656 96.7553 -0.7344 Q96.4897 -1.2188 96.4897 -2.0469 L96.4897 -5.2031 L95.6459 -5.2031 L95.6459 -5.9688 L96.6303 -6.5625 L97.1459 -7.9375 L98.2865 -7.9375 L98.2865 -6.5469 L100.1147 -6.5469 L100.1147 -5.2031 L98.2865 -5.2031 L98.2865 -2.0469 Q98.2865 -1.6875 98.4897 -1.5 Q98.7084 -1.3125 99.0678 -1.3125 ZM104.2133 -6.6719 Q105.5571 -6.6719 106.354 -5.8906 Q107.1508 -5.125 107.1508 -3.7031 L107.1508 -2.8281 L102.9321 -2.8281 Q102.9477 -2.0781 103.3696 -1.6406 Q103.8071 -1.2188 104.5571 -1.2188 Q105.1977 -1.2188 105.7133 -1.3438 Q106.229 -1.4688 106.7758 -1.7344 L106.7758 -0.3438 Q106.2915 -0.1094 105.7602 0 Q105.229 0.125 104.479 0.125 Q103.4946 0.125 102.729 -0.2344 Q101.979 -0.6094 101.5415 -1.3438 Q101.1196 -2.0938 101.1196 -3.2344 Q101.1196 -4.375 101.4946 -5.1406 Q101.8852 -5.9062 102.5883 -6.2812 Q103.2915 -6.6719 104.2133 -6.6719 ZM104.2133 -5.4062 Q103.6977 -5.4062 103.354 -5.0625 Q103.0258 -4.7344 102.9633 -4.0156 L105.4633 -4.0156 Q105.4633 -4.625 105.1508 -5.0156 Q104.854 -5.4062 104.2133 -5.4062 ZM112.2585 -6.6719 Q112.3991 -6.6719 112.571 -6.6562 Q112.7585 -6.6406 112.8679 -6.625 L112.7273 -4.9375 Q112.6491 -4.9688 112.4773 -4.9844 Q112.321 -5 112.196 -5 Q111.7429 -5 111.321 -4.8438 Q110.8991 -4.6875 110.6335 -4.3125 Q110.3835 -3.9531 110.3835 -3.3438 L110.3835 0 L108.6023 0 L108.6023 -6.5469 L109.9616 -6.5469 L110.2273 -5.4531 L110.3054 -5.4531 Q110.5866 -5.9531 111.0866 -6.3125 Q111.6023 -6.6719 112.2585 -6.6719 ZM116.7066 0.125 Q115.2534 0.125 114.4566 -0.6875 Q113.6597 -1.5 113.6597 -3.2344 Q113.6597 -4.4375 114.0659 -5.1875 Q114.4722 -5.9531 115.1909 -6.3125 Q115.9253 -6.6719 116.8628 -6.6719 Q117.5347 -6.6719 118.0347 -6.5312 Q118.5347 -6.4062 118.9097 -6.2344 L118.3784 -4.8438 Q117.9566 -5.0156 117.5816 -5.125 Q117.2222 -5.2344 116.8628 -5.2344 Q115.4722 -5.2344 115.4722 -3.25 Q115.4722 -2.2656 115.8316 -1.7969 Q116.2066 -1.3281 116.8628 -1.3281 Q117.4253 -1.3281 117.8628 -1.4688 Q118.3003 -1.625 118.7066 -1.8906 L118.7066 -0.375 Q118.3003 -0.1094 117.8472 0 Q117.3941 0.125 116.7066 0.125 ZM122.9215 -6.6719 Q124.2652 -6.6719 125.0621 -5.8906 Q125.859 -5.125 125.859 -3.7031 L125.859 -2.8281 L121.6402 -2.8281 Q121.6559 -2.0781 122.0777 -1.6406 Q122.5152 -1.2188 123.2652 -1.2188 Q123.9059 -1.2188 124.4215 -1.3438 Q124.9371 -1.4688 125.484 -1.7344 L125.484 -0.3438 Q124.9996 -0.1094 124.4684 0 Q123.9371 0.125 123.1871 0.125 Q122.2027 0.125 121.4371 -0.2344 Q120.6871 -0.6094 120.2496 -1.3438 Q119.8277 -2.0938 119.8277 -3.2344 Q119.8277 -4.375 120.2027 -5.1406 Q120.5934 -5.9062 121.2965 -6.2812 Q121.9996 -6.6719 122.9215 -6.6719 ZM122.9215 -5.4062 Q122.4059 -5.4062 122.0621 -5.0625 Q121.734 -4.7344 121.6715 -4.0156 L124.1715 -4.0156 Q124.1715 -4.625 123.859 -5.0156 Q123.5621 -5.4062 122.9215 -5.4062 ZM130.951 -6.6719 Q132.0604 -6.6719 132.7479 -5.8125 Q133.4354 -4.9531 133.4354 -3.2812 Q133.4354 -1.625 132.7167 -0.75 Q132.0135 0.125 130.9042 0.125 Q130.201 0.125 129.7792 -0.125 Q129.3573 -0.3906 129.0917 -0.7188 L128.9979 -0.7188 Q129.0917 -0.2188 129.0917 0.2344 L129.0917 2.875 L127.3104 2.875 L127.3104 -6.5469 L128.7635 -6.5469 L129.0135 -5.7031 L129.0917 -5.7031 Q129.3573 -6.0938 129.7948 -6.375 Q130.2479 -6.6719 130.951 -6.6719 ZM130.3885 -5.25 Q129.6854 -5.25 129.4042 -4.8125 Q129.1229 -4.375 129.0917 -3.4844 L129.0917 -3.2969 Q129.0917 -2.3594 129.3729 -1.8438 Q129.6542 -1.3281 130.4042 -1.3281 Q131.0135 -1.3281 131.3104 -1.8438 Q131.6073 -2.3594 131.6073 -3.3125 Q131.6073 -5.25 130.3885 -5.25 ZM137.6721 -1.3125 Q137.969 -1.3125 138.2346 -1.3594 Q138.5158 -1.4219 138.7971 -1.5156 L138.7971 -0.1875 Q138.5002 -0.0625 138.0783 0.0312 Q137.6565 0.125 137.1565 0.125 Q136.5627 0.125 136.094 -0.0625 Q135.6408 -0.2656 135.3596 -0.7344 Q135.094 -1.2188 135.094 -2.0469 L135.094 -5.2031 L134.2502 -5.2031 L134.2502 -5.9688 L135.2346 -6.5625 L135.7502 -7.9375 L136.8908 -7.9375 L136.8908 -6.5469 L138.719 -6.5469 L138.719 -5.2031 L136.8908 -5.2031 L136.8908 -2.0469 Q136.8908 -1.6875 137.094 -1.5 Q137.3127 -1.3125 137.6721 -1.3125 ZM146.0676 -3.2812 Q146.0676 -1.6562 145.2083 -0.7656 Q144.3489 0.125 142.8801 0.125 Q141.9583 0.125 141.2395 -0.2656 Q140.5364 -0.6719 140.1301 -1.4375 Q139.7239 -2.2031 139.7239 -3.2812 Q139.7239 -4.9219 140.5676 -5.7969 Q141.427 -6.6719 142.9114 -6.6719 Q143.8333 -6.6719 144.5364 -6.2656 Q145.2551 -5.875 145.6614 -5.125 Q146.0676 -4.375 146.0676 -3.2812 ZM141.5364 -3.2812 Q141.5364 -2.3125 141.8489 -1.8125 Q142.177 -1.3125 142.8958 -1.3125 Q143.5989 -1.3125 143.9114 -1.8125 Q144.2395 -2.3125 144.2395 -3.2812 Q144.2395 -4.2656 143.9114 -4.75 Q143.5989 -5.2344 142.8801 -5.2344 Q142.177 -5.2344 141.8489 -4.75 Q141.5364 -4.2656 141.5364 -3.2812 ZM151.1988 -6.6719 Q151.3394 -6.6719 151.5113 -6.6562 Q151.6988 -6.6406 151.8082 -6.625 L151.6676 -4.9375 Q151.5894 -4.9688 151.4176 -4.9844 Q151.2613 -5 151.1363 -5 Q150.6832 -5 150.2613 -4.8438 Q149.8394 -4.6875 149.5738 -4.3125 Q149.3238 -3.9531 149.3238 -3.3438 L149.3238 0 L147.5426 0 L147.5426 -6.5469 L148.9019 -6.5469 L149.1676 -5.4531 L149.2457 -5.4531 Q149.5269 -5.9531 150.0269 -6.3125 Q150.5426 -6.6719 151.1988 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath28);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="947.2062" x2="981.5563" y1="-161.5929" style="fill:none; clip-path:url(#clipPath2);" y2="-161.5929"
+      /><line x1="981.5563" x2="981.5563" y1="-161.5929" style="fill:none; clip-path:url(#clipPath2);" y2="-297.0715"
+      /><line x1="947.2062" x2="957.5985" y1="-161.5929" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-167.5929"
+      /><line x1="947.2062" x2="957.5985" y1="-161.5929" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-155.5929"
+      /><line x1="851.5943" x2="981.5563" y1="-766.8647" style="fill:none; clip-path:url(#clipPath2);" y2="-766.8647"
+      /><line x1="981.5563" x2="981.5563" y1="-766.8647" style="fill:none; clip-path:url(#clipPath2);" y2="-627.3288"
+      /><line x1="851.5943" x2="861.9866" y1="-766.8647" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-772.8647"
+      /><line x1="851.5943" x2="861.9866" y1="-766.8647" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-760.8647"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-426.3309" y="-811.5151" width="167.249" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-426.3309" y="-811.5151" width="167.249" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-426.3309" y="-796.5151" width="418.1225" style="clip-path:url(#clipPath2); stroke:none;" height="248.6444"
+      /><rect x="-426.3309" y="-796.5151" width="418.1225" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="248.6444"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-243.5078,-777.5151)"
+    ><path d="M3.5938 0.125 Q2.1406 0.125 1.3438 -0.6875 Q0.5469 -1.5 0.5469 -3.2344 Q0.5469 -4.4375 0.9531 -5.1875 Q1.3594 -5.9531 2.0781 -6.3125 Q2.8125 -6.6719 3.75 -6.6719 Q4.4219 -6.6719 4.9219 -6.5312 Q5.4219 -6.4062 5.7969 -6.2344 L5.2656 -4.8438 Q4.8438 -5.0156 4.4688 -5.125 Q4.1094 -5.2344 3.75 -5.2344 Q2.3594 -5.2344 2.3594 -3.25 Q2.3594 -2.2656 2.7188 -1.7969 Q3.0938 -1.3281 3.75 -1.3281 Q4.3125 -1.3281 4.75 -1.4688 Q5.1875 -1.625 5.5938 -1.8906 L5.5938 -0.375 Q5.1875 -0.1094 4.7344 0 Q4.2812 0.125 3.5938 0.125 ZM13.0587 -3.2812 Q13.0587 -1.6562 12.1993 -0.7656 Q11.3399 0.125 9.8712 0.125 Q8.9493 0.125 8.2305 -0.2656 Q7.5274 -0.6719 7.1212 -1.4375 Q6.7149 -2.2031 6.7149 -3.2812 Q6.7149 -4.9219 7.5587 -5.7969 Q8.418 -6.6719 9.9024 -6.6719 Q10.8243 -6.6719 11.5274 -6.2656 Q12.2462 -5.875 12.6524 -5.125 Q13.0587 -4.375 13.0587 -3.2812 ZM8.5274 -3.2812 Q8.5274 -2.3125 8.8399 -1.8125 Q9.168 -1.3125 9.8868 -1.3125 Q10.5899 -1.3125 10.9024 -1.8125 Q11.2305 -2.3125 11.2305 -3.2812 Q11.2305 -4.2656 10.9024 -4.75 Q10.5899 -5.2344 9.8712 -5.2344 Q9.168 -5.2344 8.8399 -4.75 Q8.5274 -4.2656 8.5274 -3.2812 ZM22.2211 -6.6719 Q23.3461 -6.6719 23.9086 -6.0938 Q24.4867 -5.5312 24.4867 -4.2656 L24.4867 0 L22.6898 0 L22.6898 -3.8281 Q22.6898 -5.25 21.7055 -5.25 Q21.0023 -5.25 20.6898 -4.7344 Q20.393 -4.2344 20.393 -3.2812 L20.393 0 L18.6117 0 L18.6117 -3.8281 Q18.6117 -5.25 17.6273 -5.25 Q16.8773 -5.25 16.5961 -4.6875 Q16.3148 -4.125 16.3148 -3.0781 L16.3148 0 L14.5336 0 L14.5336 -6.5469 L15.893 -6.5469 L16.143 -5.7188 L16.2367 -5.7188 Q16.5336 -6.2188 17.0492 -6.4375 Q17.5805 -6.6719 18.143 -6.6719 Q18.8617 -6.6719 19.3617 -6.4375 Q19.8773 -6.2031 20.143 -5.7188 L20.2992 -5.7188 Q20.5961 -6.2188 21.1273 -6.4375 Q21.6586 -6.6719 22.2211 -6.6719 ZM34.0052 -6.6719 Q35.1302 -6.6719 35.6927 -6.0938 Q36.2708 -5.5312 36.2708 -4.2656 L36.2708 0 L34.4739 0 L34.4739 -3.8281 Q34.4739 -5.25 33.4896 -5.25 Q32.7864 -5.25 32.4739 -4.7344 Q32.1771 -4.2344 32.1771 -3.2812 L32.1771 0 L30.3958 0 L30.3958 -3.8281 Q30.3958 -5.25 29.4114 -5.25 Q28.6614 -5.25 28.3802 -4.6875 Q28.0989 -4.125 28.0989 -3.0781 L28.0989 0 L26.3177 0 L26.3177 -6.5469 L27.6771 -6.5469 L27.9271 -5.7188 L28.0208 -5.7188 Q28.3177 -6.2188 28.8333 -6.4375 Q29.3646 -6.6719 29.9271 -6.6719 Q30.6458 -6.6719 31.1458 -6.4375 Q31.6614 -6.2031 31.9271 -5.7188 L32.0833 -5.7188 Q32.3802 -6.2188 32.9114 -6.4375 Q33.4427 -6.6719 34.0052 -6.6719 ZM44.0549 -3.2812 Q44.0549 -1.6562 43.1955 -0.7656 Q42.3362 0.125 40.8674 0.125 Q39.9455 0.125 39.2268 -0.2656 Q38.5237 -0.6719 38.1174 -1.4375 Q37.7112 -2.2031 37.7112 -3.2812 Q37.7112 -4.9219 38.5549 -5.7969 Q39.4143 -6.6719 40.8987 -6.6719 Q41.8205 -6.6719 42.5237 -6.2656 Q43.2424 -5.875 43.6487 -5.125 Q44.0549 -4.375 44.0549 -3.2812 ZM39.5237 -3.2812 Q39.5237 -2.3125 39.8362 -1.8125 Q40.1643 -1.3125 40.883 -1.3125 Q41.5862 -1.3125 41.8987 -1.8125 Q42.2268 -2.3125 42.2268 -3.2812 Q42.2268 -4.2656 41.8987 -4.75 Q41.5862 -5.2344 40.8674 -5.2344 Q40.1643 -5.2344 39.8362 -4.75 Q39.5237 -4.2656 39.5237 -3.2812 ZM49.2486 -6.6719 Q50.3111 -6.6719 50.9361 -6.0938 Q51.5767 -5.5312 51.5767 -4.2656 L51.5767 0 L49.7955 0 L49.7955 -3.8281 Q49.7955 -4.5312 49.5298 -4.8906 Q49.2798 -5.25 48.733 -5.25 Q47.9205 -5.25 47.608 -4.6875 Q47.3111 -4.125 47.3111 -3.0781 L47.3111 0 L45.5298 0 L45.5298 -6.5469 L46.8892 -6.5469 L47.1392 -5.7188 L47.233 -5.7188 Q47.5455 -6.2188 48.0923 -6.4375 Q48.6392 -6.6719 49.2486 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath29);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-406.6139" y="-771.8925" width="80.9547" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-406.6139" y="-771.8925" width="80.9547" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-406.6139" y="-756.8925" width="202.3868" style="clip-path:url(#clipPath2); stroke:none;" height="194.0218"
+      /><rect x="-406.6139" y="-756.8925" width="202.3868" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="194.0218"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-337.9347,-737.8925)"
+    ><path d="M3.6406 -6.6719 Q4.9844 -6.6719 5.7812 -5.8906 Q6.5781 -5.125 6.5781 -3.7031 L6.5781 -2.8281 L2.3594 -2.8281 Q2.375 -2.0781 2.7969 -1.6406 Q3.2344 -1.2188 3.9844 -1.2188 Q4.625 -1.2188 5.1406 -1.3438 Q5.6562 -1.4688 6.2031 -1.7344 L6.2031 -0.3438 Q5.7188 -0.1094 5.1875 0 Q4.6562 0.125 3.9062 0.125 Q2.9219 0.125 2.1562 -0.2344 Q1.4062 -0.6094 0.9688 -1.3438 Q0.5469 -2.0938 0.5469 -3.2344 Q0.5469 -4.375 0.9219 -5.1406 Q1.3125 -5.9062 2.0156 -6.2812 Q2.7188 -6.6719 3.6406 -6.6719 ZM3.6406 -5.4062 Q3.125 -5.4062 2.7812 -5.0625 Q2.4531 -4.7344 2.3906 -4.0156 L4.8906 -4.0156 Q4.8906 -4.625 4.5781 -5.0156 Q4.2812 -5.4062 3.6406 -5.4062 ZM9.3733 -3.3438 L7.2639 -6.5469 L9.2952 -6.5469 L10.5608 -4.4688 L11.8421 -6.5469 L13.8733 -6.5469 L11.7327 -3.3438 L13.9671 0 L11.9358 0 L10.5608 -2.25 L9.1858 0 L7.1546 0 L9.3733 -3.3438 ZM17.6219 0.125 Q16.1687 0.125 15.3719 -0.6875 Q14.575 -1.5 14.575 -3.2344 Q14.575 -4.4375 14.9812 -5.1875 Q15.3875 -5.9531 16.1062 -6.3125 Q16.8406 -6.6719 17.7781 -6.6719 Q18.45 -6.6719 18.95 -6.5312 Q19.45 -6.4062 19.825 -6.2344 L19.2937 -4.8438 Q18.8719 -5.0156 18.4969 -5.125 Q18.1375 -5.2344 17.7781 -5.2344 Q16.3875 -5.2344 16.3875 -3.25 Q16.3875 -2.2656 16.7469 -1.7969 Q17.1219 -1.3281 17.7781 -1.3281 Q18.3406 -1.3281 18.7781 -1.4688 Q19.2156 -1.625 19.6219 -1.8906 L19.6219 -0.375 Q19.2156 -0.1094 18.7625 0 Q18.3094 0.125 17.6219 0.125 ZM23.8368 -6.6719 Q25.1805 -6.6719 25.9774 -5.8906 Q26.7743 -5.125 26.7743 -3.7031 L26.7743 -2.8281 L22.5555 -2.8281 Q22.5712 -2.0781 22.993 -1.6406 Q23.4305 -1.2188 24.1805 -1.2188 Q24.8212 -1.2188 25.3368 -1.3438 Q25.8524 -1.4688 26.3993 -1.7344 L26.3993 -0.3438 Q25.9149 -0.1094 25.3837 0 Q24.8524 0.125 24.1024 0.125 Q23.118 0.125 22.3524 -0.2344 Q21.6024 -0.6094 21.1649 -1.3438 Q20.743 -2.0938 20.743 -3.2344 Q20.743 -4.375 21.118 -5.1406 Q21.5087 -5.9062 22.2118 -6.2812 Q22.9149 -6.6719 23.8368 -6.6719 ZM23.8368 -5.4062 Q23.3212 -5.4062 22.9774 -5.0625 Q22.6493 -4.7344 22.5868 -4.0156 L25.0868 -4.0156 Q25.0868 -4.625 24.7743 -5.0156 Q24.4774 -5.4062 23.8368 -5.4062 ZM31.8663 -6.6719 Q32.9757 -6.6719 33.6632 -5.8125 Q34.3507 -4.9531 34.3507 -3.2812 Q34.3507 -1.625 33.632 -0.75 Q32.9288 0.125 31.8195 0.125 Q31.1163 0.125 30.6945 -0.125 Q30.2726 -0.3906 30.007 -0.7188 L29.9132 -0.7188 Q30.007 -0.2188 30.007 0.2344 L30.007 2.875 L28.2257 2.875 L28.2257 -6.5469 L29.6788 -6.5469 L29.9288 -5.7031 L30.007 -5.7031 Q30.2726 -6.0938 30.7101 -6.375 Q31.1632 -6.6719 31.8663 -6.6719 ZM31.3038 -5.25 Q30.6007 -5.25 30.3195 -4.8125 Q30.0382 -4.375 30.007 -3.4844 L30.007 -3.2969 Q30.007 -2.3594 30.2882 -1.8438 Q30.5695 -1.3281 31.3195 -1.3281 Q31.9288 -1.3281 32.2257 -1.8438 Q32.5226 -2.3594 32.5226 -3.3125 Q32.5226 -5.25 31.3038 -5.25 ZM38.5874 -1.3125 Q38.8843 -1.3125 39.1499 -1.3594 Q39.4311 -1.4219 39.7124 -1.5156 L39.7124 -0.1875 Q39.4155 -0.0625 38.9936 0.0312 Q38.5718 0.125 38.0718 0.125 Q37.478 0.125 37.0093 -0.0625 Q36.5561 -0.2656 36.2749 -0.7344 Q36.0093 -1.2188 36.0093 -2.0469 L36.0093 -5.2031 L35.1655 -5.2031 L35.1655 -5.9688 L36.1499 -6.5625 L36.6655 -7.9375 L37.8061 -7.9375 L37.8061 -6.5469 L39.6343 -6.5469 L39.6343 -5.2031 L37.8061 -5.2031 L37.8061 -2.0469 Q37.8061 -1.6875 38.0093 -1.5 Q38.228 -1.3125 38.5874 -1.3125 ZM41.9361 -9.125 Q42.3267 -9.125 42.6079 -8.9375 Q42.9048 -8.75 42.9048 -8.25 Q42.9048 -7.75 42.6079 -7.5625 Q42.3267 -7.375 41.9361 -7.375 Q41.5142 -7.375 41.2329 -7.5625 Q40.9517 -7.75 40.9517 -8.25 Q40.9517 -8.75 41.2329 -8.9375 Q41.5142 -9.125 41.9361 -9.125 ZM42.8111 -6.5469 L42.8111 0 L41.0298 0 L41.0298 -6.5469 L42.8111 -6.5469 ZM50.6429 -3.2812 Q50.6429 -1.6562 49.7836 -0.7656 Q48.9242 0.125 47.4554 0.125 Q46.5336 0.125 45.8148 -0.2656 Q45.1117 -0.6719 44.7054 -1.4375 Q44.2992 -2.2031 44.2992 -3.2812 Q44.2992 -4.9219 45.1429 -5.7969 Q46.0023 -6.6719 47.4867 -6.6719 Q48.4086 -6.6719 49.1117 -6.2656 Q49.8304 -5.875 50.2367 -5.125 Q50.6429 -4.375 50.6429 -3.2812 ZM46.1117 -3.2812 Q46.1117 -2.3125 46.4242 -1.8125 Q46.7523 -1.3125 47.4711 -1.3125 Q48.1742 -1.3125 48.4867 -1.8125 Q48.8148 -2.3125 48.8148 -3.2812 Q48.8148 -4.2656 48.4867 -4.75 Q48.1742 -5.2344 47.4554 -5.2344 Q46.7523 -5.2344 46.4242 -4.75 Q46.1117 -4.2656 46.1117 -3.2812 ZM55.8366 -6.6719 Q56.8991 -6.6719 57.5241 -6.0938 Q58.1647 -5.5312 58.1647 -4.2656 L58.1647 0 L56.3835 0 L56.3835 -3.8281 Q56.3835 -4.5312 56.1179 -4.8906 Q55.8679 -5.25 55.321 -5.25 Q54.5085 -5.25 54.196 -4.6875 Q53.8991 -4.125 53.8991 -3.0781 L53.8991 0 L52.1179 0 L52.1179 -6.5469 L53.4772 -6.5469 L53.7272 -5.7188 L53.821 -5.7188 Q54.1335 -6.2188 54.6804 -6.4375 Q55.2272 -6.6719 55.8366 -6.6719 ZM64.58 -1.9375 Q64.58 -0.9531 63.8769 -0.4062 Q63.1738 0.125 61.7832 0.125 Q61.0957 0.125 60.5957 0.0312 Q60.1113 -0.0625 59.6113 -0.2656 L59.6113 -1.7344 Q60.1425 -1.5 60.7519 -1.3438 Q61.3613 -1.1875 61.83 -1.1875 Q62.3613 -1.1875 62.58 -1.3438 Q62.8144 -1.5 62.8144 -1.75 Q62.8144 -1.9219 62.7207 -2.0469 Q62.6269 -2.1875 62.33 -2.3438 Q62.0332 -2.5156 61.3925 -2.7812 Q60.7832 -3.0469 60.3769 -3.2969 Q59.9863 -3.5625 59.7988 -3.9219 Q59.6113 -4.2969 59.6113 -4.8438 Q59.6113 -5.7656 60.3144 -6.2188 Q61.0175 -6.6719 62.1894 -6.6719 Q62.8144 -6.6719 63.3613 -6.5469 Q63.9082 -6.4375 64.5019 -6.1562 L63.955 -4.875 Q63.4863 -5.0781 63.0488 -5.2188 Q62.6113 -5.3594 62.1738 -5.3594 Q61.3769 -5.3594 61.3769 -4.9219 Q61.3769 -4.7656 61.4707 -4.6406 Q61.58 -4.5156 61.8769 -4.3594 Q62.1738 -4.2188 62.7519 -3.9844 Q63.3144 -3.75 63.7207 -3.5 Q64.1269 -3.2656 64.3457 -2.8906 Q64.58 -2.5312 64.58 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath30);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-149.3024" y="-754.5091" width="39.1123" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-149.3024" y="-754.5091" width="39.1123" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-149.3024" y="-739.5091" width="97.7807" style="clip-path:url(#clipPath2); stroke:none;" height="92.8907"
+      /><rect x="-149.3024" y="-739.5091" width="97.7807" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="92.8907"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-113.912,-720.5091)"
+    ><path d="M6.9531 -6.5469 L6.9531 0 L5.5781 0 L5.3438 -0.8438 L5.25 -0.8438 Q4.9375 -0.3438 4.3906 -0.1094 Q3.8438 0.125 3.2344 0.125 Q2.1719 0.125 1.5312 -0.4375 Q0.9062 -1.0156 0.9062 -2.2812 L0.9062 -6.5469 L2.6875 -6.5469 L2.6875 -2.7188 Q2.6875 -2.0312 2.9375 -1.6719 Q3.1875 -1.3125 3.75 -1.3125 Q4.5625 -1.3125 4.8594 -1.8594 Q5.1562 -2.4219 5.1562 -3.4688 L5.1562 -6.5469 L6.9531 -6.5469 ZM11.5872 -1.3125 Q11.884 -1.3125 12.1497 -1.3594 Q12.4309 -1.4219 12.7122 -1.5156 L12.7122 -0.1875 Q12.4153 -0.0625 11.9934 0.0312 Q11.5715 0.125 11.0715 0.125 Q10.4778 0.125 10.009 -0.0625 Q9.5559 -0.2656 9.2747 -0.7344 Q9.009 -1.2188 9.009 -2.0469 L9.009 -5.2031 L8.1653 -5.2031 L8.1653 -5.9688 L9.1497 -6.5625 L9.6653 -7.9375 L10.8059 -7.9375 L10.8059 -6.5469 L12.634 -6.5469 L12.634 -5.2031 L10.8059 -5.2031 L10.8059 -2.0469 Q10.8059 -1.6875 11.009 -1.5 Q11.2278 -1.3125 11.5872 -1.3125 ZM14.9358 -9.125 Q15.3265 -9.125 15.6077 -8.9375 Q15.9046 -8.75 15.9046 -8.25 Q15.9046 -7.75 15.6077 -7.5625 Q15.3265 -7.375 14.9358 -7.375 Q14.514 -7.375 14.2327 -7.5625 Q13.9515 -7.75 13.9515 -8.25 Q13.9515 -8.75 14.2327 -8.9375 Q14.514 -9.125 14.9358 -9.125 ZM15.8108 -6.5469 L15.8108 0 L14.0296 0 L14.0296 -6.5469 L15.8108 -6.5469 ZM19.4709 0 L17.6896 0 L17.6896 -9.125 L19.4709 -9.125 L19.4709 0 ZM25.9277 -1.9375 Q25.9277 -0.9531 25.2246 -0.4062 Q24.5215 0.125 23.1309 0.125 Q22.4434 0.125 21.9434 0.0312 Q21.459 -0.0625 20.959 -0.2656 L20.959 -1.7344 Q21.4902 -1.5 22.0996 -1.3438 Q22.709 -1.1875 23.1777 -1.1875 Q23.709 -1.1875 23.9277 -1.3438 Q24.1621 -1.5 24.1621 -1.75 Q24.1621 -1.9219 24.0684 -2.0469 Q23.9746 -2.1875 23.6777 -2.3438 Q23.3809 -2.5156 22.7402 -2.7812 Q22.1309 -3.0469 21.7246 -3.2969 Q21.334 -3.5625 21.1465 -3.9219 Q20.959 -4.2969 20.959 -4.8438 Q20.959 -5.7656 21.6621 -6.2188 Q22.3652 -6.6719 23.5371 -6.6719 Q24.1621 -6.6719 24.709 -6.5469 Q25.2559 -6.4375 25.8496 -6.1562 L25.3027 -4.875 Q24.834 -5.0781 24.3965 -5.2188 Q23.959 -5.3594 23.5215 -5.3594 Q22.7246 -5.3594 22.7246 -4.9219 Q22.7246 -4.7656 22.8184 -4.6406 Q22.9277 -4.5156 23.2246 -4.3594 Q23.5215 -4.2188 24.0996 -3.9844 Q24.6621 -3.75 25.0684 -3.5 Q25.4746 -3.2656 25.6934 -2.8906 Q25.9277 -2.5312 25.9277 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath31);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-388.441" y="-706.5107" width="166.041" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-388.441" y="-706.5107" width="166.041" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-346.7128,-688.5107)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.4379 0.125 Q29.5942 0.125 28.9223 -0.2188 Q28.2661 -0.5781 27.8754 -1.3125 Q27.5004 -2.0469 27.5004 -3.1875 Q27.5004 -4.375 27.8911 -5.1094 Q28.2973 -5.8594 28.9692 -6.2031 Q29.6567 -6.5469 30.5161 -6.5469 Q31.0004 -6.5469 31.4536 -6.4375 Q31.9223 -6.3438 32.2036 -6.2031 L31.8911 -5.3281 Q31.5942 -5.4375 31.2036 -5.5312 Q30.8286 -5.625 30.4848 -5.625 Q28.5942 -5.625 28.5942 -3.1875 Q28.5942 -2.0312 29.0473 -1.4062 Q29.5161 -0.7969 30.4379 -0.7969 Q30.9536 -0.7969 31.3598 -0.9062 Q31.7661 -1.0156 32.0942 -1.1562 L32.0942 -0.2344 Q31.7817 -0.0625 31.3911 0.0312 Q31.0004 0.125 30.4379 0.125 ZM36.1042 -6.5469 Q36.9323 -6.5469 37.5261 -6.1875 Q38.1198 -5.8281 38.4323 -5.1719 Q38.7605 -4.5312 38.7605 -3.6406 L38.7605 -3.0156 L34.3542 -3.0156 Q34.3855 -1.9219 34.9167 -1.3438 Q35.448 -0.7812 36.4011 -0.7812 Q37.0261 -0.7812 37.4948 -0.8906 Q37.9636 -1.0156 38.4792 -1.2188 L38.4792 -0.2969 Q37.9792 -0.0781 37.4948 0.0156 Q37.0261 0.125 36.3542 0.125 Q35.448 0.125 34.7448 -0.25 Q34.0417 -0.625 33.6511 -1.3594 Q33.2605 -2.0938 33.2605 -3.1719 Q33.2605 -4.2188 33.6198 -4.9688 Q33.9792 -5.7344 34.6198 -6.1406 Q35.2605 -6.5469 36.1042 -6.5469 ZM36.0886 -5.6875 Q35.3386 -5.6875 34.9011 -5.2031 Q34.4636 -4.7188 34.3855 -3.8594 L37.6511 -3.8594 Q37.6511 -4.6719 37.2761 -5.1719 Q36.9011 -5.6875 36.0886 -5.6875 ZM43.4504 -6.5469 Q44.6379 -6.5469 45.3566 -5.7188 Q46.091 -4.8906 46.091 -3.2344 Q46.091 -1.5781 45.3566 -0.7188 Q44.6379 0.125 43.4348 0.125 Q42.7004 0.125 42.216 -0.1562 Q41.7316 -0.4375 41.4504 -0.8125 L41.3723 -0.8125 Q41.4035 -0.6094 41.4191 -0.2969 Q41.4504 0.0156 41.4504 0.2344 L41.4504 2.875 L40.3879 2.875 L40.3879 -6.4375 L41.2629 -6.4375 L41.4035 -5.5625 L41.4504 -5.5625 Q41.7316 -5.9688 42.2004 -6.25 Q42.6691 -6.5469 43.4504 -6.5469 ZM43.2629 -5.6562 Q42.2785 -5.6562 41.8723 -5.1094 Q41.466 -4.5625 41.4504 -3.4375 L41.4504 -3.2344 Q41.4504 -2.0469 41.841 -1.3906 Q42.2316 -0.75 43.2785 -0.75 Q43.8723 -0.75 44.2473 -1.0781 Q44.6223 -1.4062 44.8098 -1.9531 Q44.9973 -2.5156 44.9973 -3.2344 Q44.9973 -4.3438 44.5754 -5 Q44.1535 -5.6562 43.2629 -5.6562 ZM49.9242 -0.75 Q50.1586 -0.75 50.4086 -0.7812 Q50.6586 -0.8281 50.8148 -0.875 L50.8148 -0.0781 Q50.6586 0.0156 50.3461 0.0625 Q50.0336 0.125 49.7367 0.125 Q49.2367 0.125 48.7992 -0.0469 Q48.3773 -0.2344 48.1117 -0.6562 Q47.8617 -1.0938 47.8617 -1.875 L47.8617 -5.6094 L46.9398 -5.6094 L46.9398 -6.125 L47.8617 -6.5469 L48.2836 -7.9062 L48.9086 -7.9062 L48.9086 -6.4375 L50.7679 -6.4375 L50.7679 -5.6094 L48.9086 -5.6094 L48.9086 -1.8906 Q48.9086 -1.3125 49.1898 -1.0312 Q49.4711 -0.75 49.9242 -0.75 ZM52.6469 -8.8438 Q52.8812 -8.8438 53.0687 -8.6719 Q53.2562 -8.5156 53.2562 -8.1719 Q53.2562 -7.8438 53.0687 -7.6719 Q52.8812 -7.5 52.6469 -7.5 Q52.3812 -7.5 52.1937 -7.6719 Q52.0219 -7.8438 52.0219 -8.1719 Q52.0219 -8.5156 52.1937 -8.6719 Q52.3812 -8.8438 52.6469 -8.8438 ZM53.1625 -6.4375 L53.1625 0 L52.1 0 L52.1 -6.4375 L53.1625 -6.4375 ZM60.7897 -3.2344 Q60.7897 -1.625 59.9772 -0.75 Q59.1647 0.125 57.7897 0.125 Q56.946 0.125 56.2741 -0.2656 Q55.6022 -0.6562 55.2116 -1.4062 Q54.8366 -2.1562 54.8366 -3.2344 Q54.8366 -4.8281 55.6335 -5.6875 Q56.446 -6.5469 57.821 -6.5469 Q58.7116 -6.5469 59.3679 -6.1562 Q60.0397 -5.7656 60.4147 -5.0312 Q60.7897 -4.2969 60.7897 -3.2344 ZM55.9304 -3.2344 Q55.9304 -2.0938 56.3835 -1.4219 Q56.8366 -0.75 57.821 -0.75 Q58.7897 -0.75 59.2429 -1.4219 Q59.696 -2.0938 59.696 -3.2344 Q59.696 -4.375 59.2429 -5.0156 Q58.7897 -5.6562 57.8054 -5.6562 Q56.821 -5.6562 56.3679 -5.0156 Q55.9304 -4.375 55.9304 -3.2344 ZM65.5498 -6.5469 Q66.7061 -6.5469 67.2842 -5.9844 Q67.8779 -5.4375 67.8779 -4.1875 L67.8779 0 L66.8467 0 L66.8467 -4.1094 Q66.8467 -5.6562 65.3936 -5.6562 Q64.3311 -5.6562 63.9248 -5.0625 Q63.5186 -4.4688 63.5186 -3.3438 L63.5186 0 L62.4561 0 L62.4561 -6.4375 L63.3154 -6.4375 L63.4717 -5.5625 L63.5342 -5.5625 Q63.8467 -6.0625 64.3936 -6.2969 Q64.9404 -6.5469 65.5498 -6.5469 ZM69.4502 -2.3281 L73.9815 -4.2188 L69.4502 -6.3594 L69.4502 -7.2969 L75.1065 -4.4688 L75.1065 -3.875 L69.4502 -1.3906 L69.4502 -2.3281 ZM76.3143 -2.3281 L80.8455 -4.2188 L76.3143 -6.3594 L76.3143 -7.2969 L81.9705 -4.4688 L81.9705 -3.875 L76.3143 -1.3906 L76.3143 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath32);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-378.441,-672.1666)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM36.2481 0 L33.9512 0 L30.2168 -6.4844 L30.17 -6.4844 Q30.1856 -5.875 30.2168 -5.25 Q30.2481 -4.6406 30.2793 -4.0312 L30.2793 0 L28.6543 0 L28.6543 -8.5625 L30.9512 -8.5625 L34.67 -2.1406 L34.7012 -2.1406 Q34.6856 -2.75 34.6543 -3.3281 Q34.6387 -3.9219 34.6231 -4.5156 L34.6231 -8.5625 L36.2481 -8.5625 L36.2481 0 ZM44.2229 -3.2812 Q44.2229 -1.6562 43.3635 -0.7656 Q42.5042 0.125 41.0354 0.125 Q40.1135 0.125 39.3948 -0.2656 Q38.6917 -0.6719 38.2854 -1.4375 Q37.8792 -2.2031 37.8792 -3.2812 Q37.8792 -4.9219 38.7229 -5.7969 Q39.5823 -6.6719 41.0667 -6.6719 Q41.9885 -6.6719 42.6917 -6.2656 Q43.4104 -5.875 43.8167 -5.125 Q44.2229 -4.375 44.2229 -3.2812 ZM39.6917 -3.2812 Q39.6917 -2.3125 40.0042 -1.8125 Q40.3323 -1.3125 41.051 -1.3125 Q41.7542 -1.3125 42.0667 -1.8125 Q42.3948 -2.3125 42.3948 -3.2812 Q42.3948 -4.2656 42.0667 -4.75 Q41.7542 -5.2344 41.0354 -5.2344 Q40.3323 -5.2344 40.0042 -4.75 Q39.6917 -4.2656 39.6917 -3.2812 ZM48.4635 -1.3125 Q48.7603 -1.3125 49.026 -1.3594 Q49.3072 -1.4219 49.5885 -1.5156 L49.5885 -0.1875 Q49.2916 -0.0625 48.8697 0.0312 Q48.4478 0.125 47.9478 0.125 Q47.3541 0.125 46.8853 -0.0625 Q46.4322 -0.2656 46.151 -0.7344 Q45.8853 -1.2188 45.8853 -2.0469 L45.8853 -5.2031 L45.0416 -5.2031 L45.0416 -5.9688 L46.026 -6.5625 L46.5416 -7.9375 L47.6822 -7.9375 L47.6822 -6.5469 L49.5103 -6.5469 L49.5103 -5.2031 L47.6822 -5.2031 L47.6822 -2.0469 Q47.6822 -1.6875 47.8853 -1.5 Q48.1041 -1.3125 48.4635 -1.3125 ZM52.8434 0 L51.0465 0 L51.0465 -8.5625 L55.9527 -8.5625 L55.9527 -7.0781 L52.8434 -7.0781 L52.8434 -4.875 L55.734 -4.875 L55.734 -3.3906 L52.8434 -3.3906 L52.8434 0 ZM63.447 -3.2812 Q63.447 -1.6562 62.5877 -0.7656 Q61.7283 0.125 60.2595 0.125 Q59.3377 0.125 58.6189 -0.2656 Q57.9158 -0.6719 57.5095 -1.4375 Q57.1033 -2.2031 57.1033 -3.2812 Q57.1033 -4.9219 57.947 -5.7969 Q58.8064 -6.6719 60.2908 -6.6719 Q61.2127 -6.6719 61.9158 -6.2656 Q62.6345 -5.875 63.0408 -5.125 Q63.447 -4.375 63.447 -3.2812 ZM58.9158 -3.2812 Q58.9158 -2.3125 59.2283 -1.8125 Q59.5564 -1.3125 60.2752 -1.3125 Q60.9783 -1.3125 61.2908 -1.8125 Q61.6189 -2.3125 61.6189 -3.2812 Q61.6189 -4.2656 61.2908 -4.75 Q60.9783 -5.2344 60.2595 -5.2344 Q59.5564 -5.2344 59.2283 -4.75 Q58.9158 -4.2656 58.9158 -3.2812 ZM70.9376 -6.5469 L70.9376 0 L69.5626 0 L69.3282 -0.8438 L69.2345 -0.8438 Q68.922 -0.3438 68.3751 -0.1094 Q67.8282 0.125 67.2188 0.125 Q66.1563 0.125 65.5157 -0.4375 Q64.8907 -1.0156 64.8907 -2.2812 L64.8907 -6.5469 L66.672 -6.5469 L66.672 -2.7188 Q66.672 -2.0312 66.922 -1.6719 Q67.172 -1.3125 67.7345 -1.3125 Q68.547 -1.3125 68.8438 -1.8594 Q69.1407 -2.4219 69.1407 -3.4688 L69.1407 -6.5469 L70.9376 -6.5469 ZM76.5248 -6.6719 Q77.5873 -6.6719 78.2123 -6.0938 Q78.8529 -5.5312 78.8529 -4.2656 L78.8529 0 L77.0716 0 L77.0716 -3.8281 Q77.0716 -4.5312 76.806 -4.8906 Q76.556 -5.25 76.0091 -5.25 Q75.1966 -5.25 74.8841 -4.6875 Q74.5873 -4.125 74.5873 -3.0781 L74.5873 0 L72.806 0 L72.806 -6.5469 L74.1654 -6.5469 L74.4154 -5.7188 L74.5091 -5.7188 Q74.8216 -6.2188 75.3685 -6.4375 Q75.9154 -6.6719 76.5248 -6.6719 ZM82.7682 0.125 Q81.6744 0.125 80.9869 -0.7344 Q80.2994 -1.5938 80.2994 -3.2656 Q80.2994 -4.9375 80.9869 -5.7969 Q81.6901 -6.6719 82.8151 -6.6719 Q83.5182 -6.6719 83.9713 -6.3906 Q84.4401 -6.125 84.6901 -5.7188 L84.7526 -5.7188 Q84.7213 -5.9062 84.6744 -6.2656 Q84.6276 -6.6406 84.6276 -7.0156 L84.6276 -9.125 L86.4088 -9.125 L86.4088 0 L85.0494 0 L84.6901 -0.8594 L84.6276 -0.8594 Q84.3619 -0.4375 83.9088 -0.1562 Q83.4713 0.125 82.7682 0.125 ZM83.3932 -1.3125 Q84.1276 -1.3125 84.4244 -1.75 Q84.7369 -2.1875 84.7369 -3.0625 L84.7369 -3.25 Q84.7369 -4.2188 84.4401 -4.7188 Q84.1588 -5.2188 83.3619 -5.2188 Q82.7838 -5.2188 82.4401 -4.7031 Q82.1119 -4.2031 82.1119 -3.2344 Q82.1119 -2.2812 82.4401 -1.7969 Q82.7838 -1.3125 83.3932 -1.3125 ZM93.3642 0 L88.4267 0 L88.4267 -8.5625 L93.3642 -8.5625 L93.3642 -7.0781 L90.2392 -7.0781 L90.2392 -5.2031 L93.1455 -5.2031 L93.1455 -3.7031 L90.2392 -3.7031 L90.2392 -1.5 L93.3642 -1.5 L93.3642 0 ZM96.3499 -3.3438 L94.2405 -6.5469 L96.2718 -6.5469 L97.5374 -4.4688 L98.8187 -6.5469 L100.8499 -6.5469 L98.7093 -3.3438 L100.9437 0 L98.9124 0 L97.5374 -2.25 L96.1624 0 L94.1312 0 L96.3499 -3.3438 ZM104.5985 0.125 Q103.1453 0.125 102.3485 -0.6875 Q101.5516 -1.5 101.5516 -3.2344 Q101.5516 -4.4375 101.9578 -5.1875 Q102.3641 -5.9531 103.0828 -6.3125 Q103.8172 -6.6719 104.7547 -6.6719 Q105.4266 -6.6719 105.9266 -6.5312 Q106.4266 -6.4062 106.8016 -6.2344 L106.2703 -4.8438 Q105.8485 -5.0156 105.4735 -5.125 Q105.1141 -5.2344 104.7547 -5.2344 Q103.3641 -5.2344 103.3641 -3.25 Q103.3641 -2.2656 103.7235 -1.7969 Q104.0985 -1.3281 104.7547 -1.3281 Q105.3172 -1.3281 105.7547 -1.4688 Q106.1922 -1.625 106.5985 -1.8906 L106.5985 -0.375 Q106.1922 -0.1094 105.7391 0 Q105.286 0.125 104.5985 0.125 ZM110.8134 -6.6719 Q112.1571 -6.6719 112.954 -5.8906 Q113.7509 -5.125 113.7509 -3.7031 L113.7509 -2.8281 L109.5321 -2.8281 Q109.5478 -2.0781 109.9696 -1.6406 Q110.4071 -1.2188 111.1571 -1.2188 Q111.7978 -1.2188 112.3134 -1.3438 Q112.829 -1.4688 113.3759 -1.7344 L113.3759 -0.3438 Q112.8915 -0.1094 112.3603 0 Q111.829 0.125 111.079 0.125 Q110.0946 0.125 109.329 -0.2344 Q108.579 -0.6094 108.1415 -1.3438 Q107.7196 -2.0938 107.7196 -3.2344 Q107.7196 -4.375 108.0946 -5.1406 Q108.4853 -5.9062 109.1884 -6.2812 Q109.8915 -6.6719 110.8134 -6.6719 ZM110.8134 -5.4062 Q110.2978 -5.4062 109.954 -5.0625 Q109.6259 -4.7344 109.5634 -4.0156 L112.0634 -4.0156 Q112.0634 -4.625 111.7509 -5.0156 Q111.454 -5.4062 110.8134 -5.4062 ZM118.8429 -6.6719 Q119.9523 -6.6719 120.6398 -5.8125 Q121.3273 -4.9531 121.3273 -3.2812 Q121.3273 -1.625 120.6086 -0.75 Q119.9054 0.125 118.7961 0.125 Q118.0929 0.125 117.6711 -0.125 Q117.2492 -0.3906 116.9836 -0.7188 L116.8898 -0.7188 Q116.9836 -0.2188 116.9836 0.2344 L116.9836 2.875 L115.2023 2.875 L115.2023 -6.5469 L116.6554 -6.5469 L116.9054 -5.7031 L116.9836 -5.7031 Q117.2492 -6.0938 117.6867 -6.375 Q118.1398 -6.6719 118.8429 -6.6719 ZM118.2804 -5.25 Q117.5773 -5.25 117.2961 -4.8125 Q117.0148 -4.375 116.9836 -3.4844 L116.9836 -3.2969 Q116.9836 -2.3594 117.2648 -1.8438 Q117.5461 -1.3281 118.2961 -1.3281 Q118.9054 -1.3281 119.2023 -1.8438 Q119.4992 -2.3594 119.4992 -3.3125 Q119.4992 -5.25 118.2804 -5.25 ZM125.564 -1.3125 Q125.8609 -1.3125 126.1265 -1.3594 Q126.4077 -1.4219 126.689 -1.5156 L126.689 -0.1875 Q126.3921 -0.0625 125.9702 0.0312 Q125.5484 0.125 125.0484 0.125 Q124.4546 0.125 123.9859 -0.0625 Q123.5327 -0.2656 123.2515 -0.7344 Q122.9859 -1.2188 122.9859 -2.0469 L122.9859 -5.2031 L122.1421 -5.2031 L122.1421 -5.9688 L123.1265 -6.5625 L123.6421 -7.9375 L124.7827 -7.9375 L124.7827 -6.5469 L126.6109 -6.5469 L126.6109 -5.2031 L124.7827 -5.2031 L124.7827 -2.0469 Q124.7827 -1.6875 124.9859 -1.5 Q125.2046 -1.3125 125.564 -1.3125 ZM128.9127 -9.125 Q129.3033 -9.125 129.5845 -8.9375 Q129.8814 -8.75 129.8814 -8.25 Q129.8814 -7.75 129.5845 -7.5625 Q129.3033 -7.375 128.9127 -7.375 Q128.4908 -7.375 128.2095 -7.5625 Q127.9283 -7.75 127.9283 -8.25 Q127.9283 -8.75 128.2095 -8.9375 Q128.4908 -9.125 128.9127 -9.125 ZM129.7877 -6.5469 L129.7877 0 L128.0064 0 L128.0064 -6.5469 L129.7877 -6.5469 ZM137.6196 -3.2812 Q137.6196 -1.6562 136.7602 -0.7656 Q135.9008 0.125 134.4321 0.125 Q133.5102 0.125 132.7914 -0.2656 Q132.0883 -0.6719 131.6821 -1.4375 Q131.2758 -2.2031 131.2758 -3.2812 Q131.2758 -4.9219 132.1196 -5.7969 Q132.9789 -6.6719 134.4633 -6.6719 Q135.3852 -6.6719 136.0883 -6.2656 Q136.8071 -5.875 137.2133 -5.125 Q137.6196 -4.375 137.6196 -3.2812 ZM133.0883 -3.2812 Q133.0883 -2.3125 133.4008 -1.8125 Q133.7289 -1.3125 134.4477 -1.3125 Q135.1508 -1.3125 135.4633 -1.8125 Q135.7914 -2.3125 135.7914 -3.2812 Q135.7914 -4.2656 135.4633 -4.75 Q135.1508 -5.2344 134.4321 -5.2344 Q133.7289 -5.2344 133.4008 -4.75 Q133.0883 -4.2656 133.0883 -3.2812 ZM142.8132 -6.6719 Q143.8757 -6.6719 144.5007 -6.0938 Q145.1414 -5.5312 145.1414 -4.2656 L145.1414 0 L143.3601 0 L143.3601 -3.8281 Q143.3601 -4.5312 143.0945 -4.8906 Q142.8445 -5.25 142.2976 -5.25 Q141.4851 -5.25 141.1726 -4.6875 Q140.8757 -4.125 140.8757 -3.0781 L140.8757 0 L139.0945 0 L139.0945 -6.5469 L140.4539 -6.5469 L140.7039 -5.7188 L140.7976 -5.7188 Q141.1101 -6.2188 141.657 -6.4375 Q142.2039 -6.6719 142.8132 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath33);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="-8.2084" x2="21.4707" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-679.6929"
+      /><line x1="21.4707" x2="21.4707" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-794.4893"
+      /><line x1="21.4707" x2="61.9222" y1="-794.4893" style="fill:none; clip-path:url(#clipPath2);" y2="-794.4893"
+      /><line x1="-8.2084" x2="2.1839" y1="-679.6929" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-685.6929"
+      /><line x1="-8.2084" x2="2.1839" y1="-679.6929" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-673.6929"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="51.1497" y="-642.5076" width="241.9286" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="51.1497" y="-642.5076" width="241.9286" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="51.1497" y="-627.5076" width="604.8216" style="clip-path:url(#clipPath2); stroke:none;" height="215.7895"
+      /><rect x="51.1497" y="-627.5076" width="604.8216" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="215.7895"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(329.4523,-608.5076)"
+    ><path d="M5.5156 -1.9375 Q5.5156 -0.9531 4.8125 -0.4062 Q4.1094 0.125 2.7188 0.125 Q2.0312 0.125 1.5312 0.0312 Q1.0469 -0.0625 0.5469 -0.2656 L0.5469 -1.7344 Q1.0781 -1.5 1.6875 -1.3438 Q2.2969 -1.1875 2.7656 -1.1875 Q3.2969 -1.1875 3.5156 -1.3438 Q3.75 -1.5 3.75 -1.75 Q3.75 -1.9219 3.6562 -2.0469 Q3.5625 -2.1875 3.2656 -2.3438 Q2.9688 -2.5156 2.3281 -2.7812 Q1.7188 -3.0469 1.3125 -3.2969 Q0.9219 -3.5625 0.7344 -3.9219 Q0.5469 -4.2969 0.5469 -4.8438 Q0.5469 -5.7656 1.25 -6.2188 Q1.9531 -6.6719 3.125 -6.6719 Q3.75 -6.6719 4.2969 -6.5469 Q4.8438 -6.4375 5.4375 -6.1562 L4.8906 -4.875 Q4.4219 -5.0781 3.9844 -5.2188 Q3.5469 -5.3594 3.1094 -5.3594 Q2.3125 -5.3594 2.3125 -4.9219 Q2.3125 -4.7656 2.4062 -4.6406 Q2.5156 -4.5156 2.8125 -4.3594 Q3.1094 -4.2188 3.6875 -3.9844 Q4.25 -3.75 4.6562 -3.5 Q5.0625 -3.2656 5.2812 -2.8906 Q5.5156 -2.5312 5.5156 -1.9375 ZM9.6047 -6.6719 Q10.9484 -6.6719 11.7453 -5.8906 Q12.5422 -5.125 12.5422 -3.7031 L12.5422 -2.8281 L8.3234 -2.8281 Q8.339 -2.0781 8.7609 -1.6406 Q9.1984 -1.2188 9.9484 -1.2188 Q10.589 -1.2188 11.1047 -1.3438 Q11.6203 -1.4688 12.1672 -1.7344 L12.1672 -0.3438 Q11.6828 -0.1094 11.1515 0 Q10.6203 0.125 9.8703 0.125 Q8.8859 0.125 8.1203 -0.2344 Q7.3703 -0.6094 6.9328 -1.3438 Q6.5109 -2.0938 6.5109 -3.2344 Q6.5109 -4.375 6.8859 -5.1406 Q7.2765 -5.9062 7.9797 -6.2812 Q8.6828 -6.6719 9.6047 -6.6719 ZM9.6047 -5.4062 Q9.089 -5.4062 8.7453 -5.0625 Q8.4172 -4.7344 8.3547 -4.0156 L10.8547 -4.0156 Q10.8547 -4.625 10.5422 -5.0156 Q10.2453 -5.4062 9.6047 -5.4062 ZM17.6498 -6.6719 Q17.7905 -6.6719 17.9623 -6.6562 Q18.1498 -6.6406 18.2592 -6.625 L18.1186 -4.9375 Q18.0405 -4.9688 17.8686 -4.9844 Q17.7123 -5 17.5873 -5 Q17.1342 -5 16.7123 -4.8438 Q16.2905 -4.6875 16.0248 -4.3125 Q15.7748 -3.9531 15.7748 -3.3438 L15.7748 0 L13.9936 0 L13.9936 -6.5469 L15.353 -6.5469 L15.6186 -5.4531 L15.6967 -5.4531 Q15.978 -5.9531 16.478 -6.3125 Q16.9936 -6.6719 17.6498 -6.6719 ZM21.0041 0 L18.5041 -6.5469 L20.3791 -6.5469 L21.6291 -2.8125 Q21.7385 -2.4844 21.801 -2.125 Q21.8791 -1.7656 21.8948 -1.4688 L21.9416 -1.4688 Q21.9729 -2.125 22.2073 -2.8125 L23.4573 -6.5469 L25.3323 -6.5469 L22.8323 0 L21.0041 0 ZM27.1759 -9.125 Q27.5666 -9.125 27.8478 -8.9375 Q28.1447 -8.75 28.1447 -8.25 Q28.1447 -7.75 27.8478 -7.5625 Q27.5666 -7.375 27.1759 -7.375 Q26.7541 -7.375 26.4728 -7.5625 Q26.1916 -7.75 26.1916 -8.25 Q26.1916 -8.75 26.4728 -8.9375 Q26.7541 -9.125 27.1759 -9.125 ZM28.0509 -6.5469 L28.0509 0 L26.2697 0 L26.2697 -6.5469 L28.0509 -6.5469 ZM32.586 0.125 Q31.1328 0.125 30.336 -0.6875 Q29.5391 -1.5 29.5391 -3.2344 Q29.5391 -4.4375 29.9453 -5.1875 Q30.3516 -5.9531 31.0703 -6.3125 Q31.8047 -6.6719 32.7422 -6.6719 Q33.4141 -6.6719 33.9141 -6.5312 Q34.4141 -6.4062 34.7891 -6.2344 L34.2578 -4.8438 Q33.836 -5.0156 33.461 -5.125 Q33.1016 -5.2344 32.7422 -5.2344 Q31.3516 -5.2344 31.3516 -3.25 Q31.3516 -2.2656 31.711 -1.7969 Q32.086 -1.3281 32.7422 -1.3281 Q33.3047 -1.3281 33.7422 -1.4688 Q34.1797 -1.625 34.586 -1.8906 L34.586 -0.375 Q34.1797 -0.1094 33.7266 0 Q33.2735 0.125 32.586 0.125 ZM38.8009 -6.6719 Q40.1446 -6.6719 40.9415 -5.8906 Q41.7384 -5.125 41.7384 -3.7031 L41.7384 -2.8281 L37.5196 -2.8281 Q37.5352 -2.0781 37.9571 -1.6406 Q38.3946 -1.2188 39.1446 -1.2188 Q39.7852 -1.2188 40.3009 -1.3438 Q40.8165 -1.4688 41.3634 -1.7344 L41.3634 -0.3438 Q40.879 -0.1094 40.3477 0 Q39.8165 0.125 39.0665 0.125 Q38.0821 0.125 37.3165 -0.2344 Q36.5665 -0.6094 36.129 -1.3438 Q35.7071 -2.0938 35.7071 -3.2344 Q35.7071 -4.375 36.0821 -5.1406 Q36.4727 -5.9062 37.1759 -6.2812 Q37.879 -6.6719 38.8009 -6.6719 ZM38.8009 -5.4062 Q38.2852 -5.4062 37.9415 -5.0625 Q37.6134 -4.7344 37.5509 -4.0156 L40.0509 -4.0156 Q40.0509 -4.625 39.7384 -5.0156 Q39.4415 -5.4062 38.8009 -5.4062 ZM47.7679 -1.9375 Q47.7679 -0.9531 47.0648 -0.4062 Q46.3617 0.125 44.9711 0.125 Q44.2836 0.125 43.7836 0.0312 Q43.2992 -0.0625 42.7992 -0.2656 L42.7992 -1.7344 Q43.3304 -1.5 43.9398 -1.3438 Q44.5492 -1.1875 45.0179 -1.1875 Q45.5492 -1.1875 45.7679 -1.3438 Q46.0023 -1.5 46.0023 -1.75 Q46.0023 -1.9219 45.9086 -2.0469 Q45.8148 -2.1875 45.5179 -2.3438 Q45.2211 -2.5156 44.5804 -2.7812 Q43.9711 -3.0469 43.5648 -3.2969 Q43.1742 -3.5625 42.9867 -3.9219 Q42.7992 -4.2969 42.7992 -4.8438 Q42.7992 -5.7656 43.5023 -6.2188 Q44.2054 -6.6719 45.3773 -6.6719 Q46.0023 -6.6719 46.5492 -6.5469 Q47.0961 -6.4375 47.6898 -6.1562 L47.1429 -4.875 Q46.6742 -5.0781 46.2367 -5.2188 Q45.7992 -5.3594 45.3617 -5.3594 Q44.5648 -5.3594 44.5648 -4.9219 Q44.5648 -4.7656 44.6586 -4.6406 Q44.7679 -4.5156 45.0648 -4.3594 Q45.3617 -4.2188 45.9398 -3.9844 Q46.5023 -3.75 46.9086 -3.5 Q47.3148 -3.2656 47.5336 -2.8906 Q47.7679 -2.5312 47.7679 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath34);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-134.3024" y="-698.2905" width="48" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="-134.3024" y="-698.2905" width="48" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-124.3024,-680.2905)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM12.7752 -1.3125 Q13.0721 -1.3125 13.3377 -1.3594 Q13.6189 -1.4219 13.9002 -1.5156 L13.9002 -0.1875 Q13.6033 -0.0625 13.1814 0.0312 Q12.7596 0.125 12.2596 0.125 Q11.6658 0.125 11.1971 -0.0625 Q10.7439 -0.2656 10.4627 -0.7344 Q10.1971 -1.2188 10.1971 -2.0469 L10.1971 -5.2031 L9.3533 -5.2031 L9.3533 -5.9688 L10.3377 -6.5625 L10.8533 -7.9375 L11.9939 -7.9375 L11.9939 -6.5469 L13.8221 -6.5469 L13.8221 -5.2031 L11.9939 -5.2031 L11.9939 -2.0469 Q11.9939 -1.6875 12.1971 -1.5 Q12.4158 -1.3125 12.7752 -1.3125 ZM16.1239 -9.125 Q16.5145 -9.125 16.7957 -8.9375 Q17.0926 -8.75 17.0926 -8.25 Q17.0926 -7.75 16.7957 -7.5625 Q16.5145 -7.375 16.1239 -7.375 Q15.702 -7.375 15.4207 -7.5625 Q15.1395 -7.75 15.1395 -8.25 Q15.1395 -8.75 15.4207 -8.9375 Q15.702 -9.125 16.1239 -9.125 ZM16.9989 -6.5469 L16.9989 0 L15.2176 0 L15.2176 -6.5469 L16.9989 -6.5469 ZM20.6589 0 L18.8776 0 L18.8776 -9.125 L20.6589 -9.125 L20.6589 0 ZM27.1158 -1.9375 Q27.1158 -0.9531 26.4126 -0.4062 Q25.7095 0.125 24.3189 0.125 Q23.6314 0.125 23.1314 0.0312 Q22.647 -0.0625 22.147 -0.2656 L22.147 -1.7344 Q22.6783 -1.5 23.2876 -1.3438 Q23.897 -1.1875 24.3658 -1.1875 Q24.897 -1.1875 25.1158 -1.3438 Q25.3501 -1.5 25.3501 -1.75 Q25.3501 -1.9219 25.2564 -2.0469 Q25.1626 -2.1875 24.8658 -2.3438 Q24.5689 -2.5156 23.9283 -2.7812 Q23.3189 -3.0469 22.9126 -3.2969 Q22.522 -3.5625 22.3345 -3.9219 Q22.147 -4.2969 22.147 -4.8438 Q22.147 -5.7656 22.8501 -6.2188 Q23.5533 -6.6719 24.7251 -6.6719 Q25.3501 -6.6719 25.897 -6.5469 Q26.4439 -6.4375 27.0376 -6.1562 L26.4908 -4.875 Q26.022 -5.0781 25.5845 -5.2188 Q25.147 -5.3594 24.7095 -5.3594 Q23.9126 -5.3594 23.9126 -4.9219 Q23.9126 -4.7656 24.0064 -4.6406 Q24.1158 -4.5156 24.4126 -4.3594 Q24.7095 -4.2188 25.2876 -3.9844 Q25.8501 -3.75 26.2564 -3.5 Q26.6626 -3.2656 26.8814 -2.8906 Q27.1158 -2.5312 27.1158 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath35);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="85.5466" y="-539.827" width="90.4765" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="85.5466" y="-539.827" width="90.4765" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(96.7848,-521.827)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath36);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(95.5466,-505.4829)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM33.7012 -2.375 Q33.7012 -1.2344 32.8731 -0.5469 Q32.0606 0.125 30.545 0.125 Q29.2012 0.125 28.1231 -0.3906 L28.1231 -2.0938 Q28.7325 -1.8281 29.3887 -1.5938 Q30.045 -1.375 30.7012 -1.375 Q31.3731 -1.375 31.6543 -1.625 Q31.9356 -1.8906 31.9356 -2.2969 Q31.9356 -2.6094 31.7012 -2.8438 Q31.4825 -3.0781 31.1075 -3.2656 Q30.7481 -3.4688 30.2637 -3.7031 Q29.9668 -3.8438 29.6075 -4.0312 Q29.2637 -4.2344 28.9512 -4.5312 Q28.6387 -4.8281 28.42 -5.2344 Q28.2168 -5.6562 28.2168 -6.25 Q28.2168 -7.4062 28.9981 -8.0469 Q29.7793 -8.6875 31.1231 -8.6875 Q31.795 -8.6875 32.4043 -8.5312 Q33.0137 -8.375 33.67 -8.0938 L33.0918 -6.6719 Q32.4981 -6.9062 32.0293 -7.0312 Q31.5606 -7.1719 31.0606 -7.1719 Q30.545 -7.1719 30.2637 -6.9375 Q29.9981 -6.7031 29.9981 -6.3125 Q29.9981 -5.8594 30.4043 -5.5938 Q30.8106 -5.3281 31.6231 -4.9375 Q32.2793 -4.625 32.7325 -4.2812 Q33.2012 -3.9531 33.4512 -3.5 Q33.7012 -3.0469 33.7012 -2.375 ZM37.8289 -6.6719 Q39.1726 -6.6719 39.9695 -5.8906 Q40.7664 -5.125 40.7664 -3.7031 L40.7664 -2.8281 L36.5476 -2.8281 Q36.5632 -2.0781 36.9851 -1.6406 Q37.4226 -1.2188 38.1726 -1.2188 Q38.8132 -1.2188 39.3289 -1.3438 Q39.8445 -1.4688 40.3914 -1.7344 L40.3914 -0.3438 Q39.907 -0.1094 39.3757 0 Q38.8445 0.125 38.0945 0.125 Q37.1101 0.125 36.3445 -0.2344 Q35.5945 -0.6094 35.157 -1.3438 Q34.7351 -2.0938 34.7351 -3.2344 Q34.7351 -4.375 35.1101 -5.1406 Q35.5007 -5.9062 36.2039 -6.2812 Q36.907 -6.6719 37.8289 -6.6719 ZM37.8289 -5.4062 Q37.3132 -5.4062 36.9695 -5.0625 Q36.6414 -4.7344 36.5789 -4.0156 L39.0789 -4.0156 Q39.0789 -4.625 38.7664 -5.0156 Q38.4695 -5.4062 37.8289 -5.4062 ZM45.8741 -6.6719 Q46.0147 -6.6719 46.1866 -6.6562 Q46.3741 -6.6406 46.4834 -6.625 L46.3428 -4.9375 Q46.2647 -4.9688 46.0928 -4.9844 Q45.9366 -5 45.8116 -5 Q45.3584 -5 44.9366 -4.8438 Q44.5147 -4.6875 44.2491 -4.3125 Q43.9991 -3.9531 43.9991 -3.3438 L43.9991 0 L42.2178 0 L42.2178 -6.5469 L43.5772 -6.5469 L43.8428 -5.4531 L43.9209 -5.4531 Q44.2022 -5.9531 44.7022 -6.3125 Q45.2178 -6.6719 45.8741 -6.6719 ZM49.2283 0 L46.7283 -6.5469 L48.6033 -6.5469 L49.8533 -2.8125 Q49.9627 -2.4844 50.0252 -2.125 Q50.1033 -1.7656 50.119 -1.4688 L50.1658 -1.4688 Q50.1971 -2.125 50.4315 -2.8125 L51.6815 -6.5469 L53.5565 -6.5469 L51.0565 0 L49.2283 0 ZM55.4001 -9.125 Q55.7908 -9.125 56.072 -8.9375 Q56.3689 -8.75 56.3689 -8.25 Q56.3689 -7.75 56.072 -7.5625 Q55.7908 -7.375 55.4001 -7.375 Q54.9783 -7.375 54.697 -7.5625 Q54.4158 -7.75 54.4158 -8.25 Q54.4158 -8.75 54.697 -8.9375 Q54.9783 -9.125 55.4001 -9.125 ZM56.2751 -6.5469 L56.2751 0 L54.4939 0 L54.4939 -6.5469 L56.2751 -6.5469 ZM60.8102 0.125 Q59.357 0.125 58.5602 -0.6875 Q57.7633 -1.5 57.7633 -3.2344 Q57.7633 -4.4375 58.1695 -5.1875 Q58.5758 -5.9531 59.2945 -6.3125 Q60.0289 -6.6719 60.9664 -6.6719 Q61.6383 -6.6719 62.1383 -6.5312 Q62.6383 -6.4062 63.0133 -6.2344 L62.482 -4.8438 Q62.0602 -5.0156 61.6852 -5.125 Q61.3258 -5.2344 60.9664 -5.2344 Q59.5758 -5.2344 59.5758 -3.25 Q59.5758 -2.2656 59.9352 -1.7969 Q60.3102 -1.3281 60.9664 -1.3281 Q61.5289 -1.3281 61.9664 -1.4688 Q62.4039 -1.625 62.8102 -1.8906 L62.8102 -0.375 Q62.4039 -0.1094 61.9508 0 Q61.4977 0.125 60.8102 0.125 ZM67.0251 -6.6719 Q68.3688 -6.6719 69.1657 -5.8906 Q69.9626 -5.125 69.9626 -3.7031 L69.9626 -2.8281 L65.7438 -2.8281 Q65.7595 -2.0781 66.1813 -1.6406 Q66.6188 -1.2188 67.3688 -1.2188 Q68.0095 -1.2188 68.5251 -1.3438 Q69.0407 -1.4688 69.5876 -1.7344 L69.5876 -0.3438 Q69.1032 -0.1094 68.572 0 Q68.0407 0.125 67.2907 0.125 Q66.3063 0.125 65.5407 -0.2344 Q64.7907 -0.6094 64.3532 -1.3438 Q63.9313 -2.0938 63.9313 -3.2344 Q63.9313 -4.375 64.3063 -5.1406 Q64.697 -5.9062 65.4001 -6.2812 Q66.1032 -6.6719 67.0251 -6.6719 ZM67.0251 -5.4062 Q66.5095 -5.4062 66.1657 -5.0625 Q65.8376 -4.7344 65.7751 -4.0156 L68.2751 -4.0156 Q68.2751 -4.625 67.9626 -5.0156 Q67.6657 -5.4062 67.0251 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath37);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="65.2279" x2="65.2279" y1="-233.5502" style="fill:none; clip-path:url(#clipPath2);" y2="-322.6341"
+      /><line x1="65.2279" x2="57.198" y1="-322.6341" style="fill:none; clip-path:url(#clipPath2);" y2="-322.6341"
+      /><line x1="57.198" x2="57.198" y1="-322.6341" style="fill:none; clip-path:url(#clipPath2);" y2="-411.718"
+      /><line x1="65.2279" x2="59.2279" y1="-233.5502" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-243.9425"
+      /><line x1="65.2279" x2="71.2279" y1="-233.5502" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-243.9425"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-388.4205" y="-642.5462" width="166" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-388.4205" y="-642.5462" width="166" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-370.1549,-624.5462)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.4379 0.125 Q29.5942 0.125 28.9223 -0.2188 Q28.2661 -0.5781 27.8754 -1.3125 Q27.5004 -2.0469 27.5004 -3.1875 Q27.5004 -4.375 27.8911 -5.1094 Q28.2973 -5.8594 28.9692 -6.2031 Q29.6567 -6.5469 30.5161 -6.5469 Q31.0004 -6.5469 31.4536 -6.4375 Q31.9223 -6.3438 32.2036 -6.2031 L31.8911 -5.3281 Q31.5942 -5.4375 31.2036 -5.5312 Q30.8286 -5.625 30.4848 -5.625 Q28.5942 -5.625 28.5942 -3.1875 Q28.5942 -2.0312 29.0473 -1.4062 Q29.5161 -0.7969 30.4379 -0.7969 Q30.9536 -0.7969 31.3598 -0.9062 Q31.7661 -1.0156 32.0942 -1.1562 L32.0942 -0.2344 Q31.7817 -0.0625 31.3911 0.0312 Q31.0004 0.125 30.4379 0.125 ZM36.1042 -6.5469 Q36.9323 -6.5469 37.5261 -6.1875 Q38.1198 -5.8281 38.4323 -5.1719 Q38.7605 -4.5312 38.7605 -3.6406 L38.7605 -3.0156 L34.3542 -3.0156 Q34.3855 -1.9219 34.9167 -1.3438 Q35.448 -0.7812 36.4011 -0.7812 Q37.0261 -0.7812 37.4948 -0.8906 Q37.9636 -1.0156 38.4792 -1.2188 L38.4792 -0.2969 Q37.9792 -0.0781 37.4948 0.0156 Q37.0261 0.125 36.3542 0.125 Q35.448 0.125 34.7448 -0.25 Q34.0417 -0.625 33.6511 -1.3594 Q33.2605 -2.0938 33.2605 -3.1719 Q33.2605 -4.2188 33.6198 -4.9688 Q33.9792 -5.7344 34.6198 -6.1406 Q35.2605 -6.5469 36.1042 -6.5469 ZM36.0886 -5.6875 Q35.3386 -5.6875 34.9011 -5.2031 Q34.4636 -4.7188 34.3855 -3.8594 L37.6511 -3.8594 Q37.6511 -4.6719 37.2761 -5.1719 Q36.9011 -5.6875 36.0886 -5.6875 ZM43.4504 -6.5469 Q44.6379 -6.5469 45.3566 -5.7188 Q46.091 -4.8906 46.091 -3.2344 Q46.091 -1.5781 45.3566 -0.7188 Q44.6379 0.125 43.4348 0.125 Q42.7004 0.125 42.216 -0.1562 Q41.7316 -0.4375 41.4504 -0.8125 L41.3723 -0.8125 Q41.4035 -0.6094 41.4191 -0.2969 Q41.4504 0.0156 41.4504 0.2344 L41.4504 2.875 L40.3879 2.875 L40.3879 -6.4375 L41.2629 -6.4375 L41.4035 -5.5625 L41.4504 -5.5625 Q41.7316 -5.9688 42.2004 -6.25 Q42.6691 -6.5469 43.4504 -6.5469 ZM43.2629 -5.6562 Q42.2785 -5.6562 41.8723 -5.1094 Q41.466 -4.5625 41.4504 -3.4375 L41.4504 -3.2344 Q41.4504 -2.0469 41.841 -1.3906 Q42.2316 -0.75 43.2785 -0.75 Q43.8723 -0.75 44.2473 -1.0781 Q44.6223 -1.4062 44.8098 -1.9531 Q44.9973 -2.5156 44.9973 -3.2344 Q44.9973 -4.3438 44.5754 -5 Q44.1535 -5.6562 43.2629 -5.6562 ZM49.9242 -0.75 Q50.1586 -0.75 50.4086 -0.7812 Q50.6586 -0.8281 50.8148 -0.875 L50.8148 -0.0781 Q50.6586 0.0156 50.3461 0.0625 Q50.0336 0.125 49.7367 0.125 Q49.2367 0.125 48.7992 -0.0469 Q48.3773 -0.2344 48.1117 -0.6562 Q47.8617 -1.0938 47.8617 -1.875 L47.8617 -5.6094 L46.9398 -5.6094 L46.9398 -6.125 L47.8617 -6.5469 L48.2836 -7.9062 L48.9086 -7.9062 L48.9086 -6.4375 L50.7679 -6.4375 L50.7679 -5.6094 L48.9086 -5.6094 L48.9086 -1.8906 Q48.9086 -1.3125 49.1898 -1.0312 Q49.4711 -0.75 49.9242 -0.75 ZM52.6469 -8.8438 Q52.8812 -8.8438 53.0687 -8.6719 Q53.2562 -8.5156 53.2562 -8.1719 Q53.2562 -7.8438 53.0687 -7.6719 Q52.8812 -7.5 52.6469 -7.5 Q52.3812 -7.5 52.1937 -7.6719 Q52.0219 -7.8438 52.0219 -8.1719 Q52.0219 -8.5156 52.1937 -8.6719 Q52.3812 -8.8438 52.6469 -8.8438 ZM53.1625 -6.4375 L53.1625 0 L52.1 0 L52.1 -6.4375 L53.1625 -6.4375 ZM60.7897 -3.2344 Q60.7897 -1.625 59.9772 -0.75 Q59.1647 0.125 57.7897 0.125 Q56.946 0.125 56.2741 -0.2656 Q55.6022 -0.6562 55.2116 -1.4062 Q54.8366 -2.1562 54.8366 -3.2344 Q54.8366 -4.8281 55.6335 -5.6875 Q56.446 -6.5469 57.821 -6.5469 Q58.7116 -6.5469 59.3679 -6.1562 Q60.0397 -5.7656 60.4147 -5.0312 Q60.7897 -4.2969 60.7897 -3.2344 ZM55.9304 -3.2344 Q55.9304 -2.0938 56.3835 -1.4219 Q56.8366 -0.75 57.821 -0.75 Q58.7897 -0.75 59.2429 -1.4219 Q59.696 -2.0938 59.696 -3.2344 Q59.696 -4.375 59.2429 -5.0156 Q58.7897 -5.6562 57.8054 -5.6562 Q56.821 -5.6562 56.3679 -5.0156 Q55.9304 -4.375 55.9304 -3.2344 ZM65.5498 -6.5469 Q66.7061 -6.5469 67.2842 -5.9844 Q67.8779 -5.4375 67.8779 -4.1875 L67.8779 0 L66.8467 0 L66.8467 -4.1094 Q66.8467 -5.6562 65.3936 -5.6562 Q64.3311 -5.6562 63.9248 -5.0625 Q63.5186 -4.4688 63.5186 -3.3438 L63.5186 0 L62.4561 0 L62.4561 -6.4375 L63.3154 -6.4375 L63.4717 -5.5625 L63.5342 -5.5625 Q63.8467 -6.0625 64.3936 -6.2969 Q64.9404 -6.5469 65.5498 -6.5469 ZM74.0546 -6.4375 Q74.0546 -5.9688 73.9921 -5.5469 L74.0703 -5.5469 Q74.3828 -6.0312 74.914 -6.2812 Q75.4453 -6.5469 76.0703 -6.5469 Q77.2421 -6.5469 77.8203 -5.9844 Q78.414 -5.4219 78.414 -4.1875 L78.414 0 L77.3828 0 L77.3828 -4.1094 Q77.3828 -5.6562 75.9296 -5.6562 Q74.8515 -5.6562 74.4453 -5.0469 Q74.0546 -4.4531 74.0546 -3.3281 L74.0546 0 L72.9921 0 L72.9921 -9.125 L74.0546 -9.125 L74.0546 -6.4375 ZM82.8457 -6.5469 Q84.0175 -6.5469 84.58 -6.0312 Q85.1582 -5.5156 85.1582 -4.375 L85.1582 0 L84.3769 0 L84.1738 -0.9062 L84.1269 -0.9062 Q83.705 -0.3906 83.2363 -0.125 Q82.7832 0.125 81.9707 0.125 Q81.0957 0.125 80.5175 -0.3281 Q79.9394 -0.7969 79.9394 -1.7812 Q79.9394 -2.75 80.6894 -3.2656 Q81.455 -3.7969 83.0332 -3.8438 L84.1269 -3.875 L84.1269 -4.2656 Q84.1269 -5.0625 83.7675 -5.375 Q83.4238 -5.6875 82.7832 -5.6875 Q82.2832 -5.6875 81.83 -5.5312 Q81.3769 -5.3906 80.9707 -5.2031 L80.6582 -5.9844 Q81.08 -6.2188 81.6425 -6.375 Q82.2207 -6.5469 82.8457 -6.5469 ZM83.1582 -3.1094 Q81.955 -3.0625 81.4863 -2.7188 Q81.0332 -2.3906 81.0332 -1.7812 Q81.0332 -1.2344 81.3613 -0.9844 Q81.6894 -0.7344 82.205 -0.7344 Q83.0332 -0.7344 83.5644 -1.1719 Q84.1113 -1.625 84.1113 -2.5625 L84.1113 -3.1406 L83.1582 -3.1094 ZM90.234 -6.5469 Q91.3902 -6.5469 91.9683 -5.9844 Q92.5621 -5.4375 92.5621 -4.1875 L92.5621 0 L91.5308 0 L91.5308 -4.1094 Q91.5308 -5.6562 90.0777 -5.6562 Q89.0152 -5.6562 88.609 -5.0625 Q88.2027 -4.4688 88.2027 -3.3438 L88.2027 0 L87.1402 0 L87.1402 -6.4375 L87.9996 -6.4375 L88.1558 -5.5625 L88.2183 -5.5625 Q88.5308 -6.0625 89.0777 -6.2969 Q89.6246 -6.5469 90.234 -6.5469 ZM96.8375 0.125 Q95.6344 0.125 94.9156 -0.7031 Q94.1969 -1.5469 94.1969 -3.2031 Q94.1969 -4.8594 94.9156 -5.7031 Q95.65 -6.5469 96.8531 -6.5469 Q97.6031 -6.5469 98.0719 -6.2656 Q98.5406 -6 98.8375 -5.6094 L98.9156 -5.6094 Q98.9 -5.7656 98.8688 -6.0625 Q98.8375 -6.375 98.8375 -6.5469 L98.8375 -9.125 L99.9 -9.125 L99.9 0 L99.0563 0 L98.9 -0.8594 L98.8375 -0.8594 Q98.5563 -0.4531 98.0719 -0.1562 Q97.6031 0.125 96.8375 0.125 ZM97.0094 -0.75 Q98.025 -0.75 98.4313 -1.3125 Q98.8531 -1.875 98.8531 -3 L98.8531 -3.1875 Q98.8531 -4.3906 98.4625 -5.0312 Q98.0719 -5.6719 96.9938 -5.6719 Q96.15 -5.6719 95.7125 -4.9844 Q95.2906 -4.3125 95.2906 -3.1875 Q95.2906 -2.0312 95.7125 -1.3906 Q96.15 -0.75 97.0094 -0.75 ZM102.9988 0 L101.9363 0 L101.9363 -9.125 L102.9988 -9.125 L102.9988 0 ZM107.5167 -6.5469 Q108.3448 -6.5469 108.9386 -6.1875 Q109.5323 -5.8281 109.8448 -5.1719 Q110.173 -4.5312 110.173 -3.6406 L110.173 -3.0156 L105.7667 -3.0156 Q105.798 -1.9219 106.3292 -1.3438 Q106.8605 -0.7812 107.8136 -0.7812 Q108.4386 -0.7812 108.9073 -0.8906 Q109.3761 -1.0156 109.8917 -1.2188 L109.8917 -0.2969 Q109.3917 -0.0781 108.9073 0.0156 Q108.4386 0.125 107.7667 0.125 Q106.8605 0.125 106.1573 -0.25 Q105.4542 -0.625 105.0636 -1.3594 Q104.673 -2.0938 104.673 -3.1719 Q104.673 -4.2188 105.0323 -4.9688 Q105.3917 -5.7344 106.0323 -6.1406 Q106.673 -6.5469 107.5167 -6.5469 ZM107.5011 -5.6875 Q106.7511 -5.6875 106.3136 -5.2031 Q105.8761 -4.7188 105.798 -3.8594 L109.0636 -3.8594 Q109.0636 -4.6719 108.6886 -5.1719 Q108.3136 -5.6875 107.5011 -5.6875 ZM114.8004 -6.5469 Q114.9879 -6.5469 115.191 -6.5312 Q115.4098 -6.5156 115.566 -6.4844 L115.4254 -5.5156 Q115.2691 -5.5469 115.0816 -5.5625 Q114.8941 -5.5938 114.7379 -5.5938 Q114.2379 -5.5938 113.8004 -5.3125 Q113.3785 -5.0469 113.1129 -4.5625 Q112.8629 -4.0781 112.8629 -3.4375 L112.8629 0 L111.8004 0 L111.8004 -6.4375 L112.6754 -6.4375 L112.7848 -5.25 L112.8316 -5.25 Q113.1441 -5.7812 113.6285 -6.1562 Q114.1285 -6.5469 114.8004 -6.5469 ZM116.3345 -2.3281 L120.8658 -4.2188 L116.3345 -6.3594 L116.3345 -7.2969 L121.9908 -4.4688 L121.9908 -3.875 L116.3345 -1.3906 L116.3345 -2.3281 ZM123.1986 -2.3281 L127.7298 -4.2188 L123.1986 -6.3594 L123.1986 -7.2969 L128.8548 -4.4688 L128.8548 -3.875 L123.1986 -1.3906 L123.1986 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath38);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-378.4205,-608.2021)"
+    ><path d="M4.3281 -4.8125 L7.7344 -4.8125 L7.7344 -0.375 Q7.0625 -0.1406 6.3281 0 Q5.6094 0.125 4.6875 0.125 Q2.7656 0.125 1.7344 -1 Q0.7031 -2.1406 0.7031 -4.2969 Q0.7031 -5.6406 1.2188 -6.625 Q1.7344 -7.6094 2.7344 -8.1406 Q3.7344 -8.6875 5.1719 -8.6875 Q5.8594 -8.6875 6.5156 -8.5469 Q7.1719 -8.4062 7.7188 -8.1562 L7.1094 -6.7031 Q6.7188 -6.9062 6.2188 -7.0312 Q5.7188 -7.1719 5.1562 -7.1719 Q4.375 -7.1719 3.7812 -6.8125 Q3.2031 -6.4531 2.875 -5.7969 Q2.5625 -5.1406 2.5625 -4.2656 Q2.5625 -3.4219 2.7969 -2.7656 Q3.0312 -2.125 3.5156 -1.75 Q4.0156 -1.3906 4.7969 -1.3906 Q5.1875 -1.3906 5.4531 -1.4219 Q5.7188 -1.4688 5.9531 -1.5156 L5.9531 -3.2969 L4.3281 -3.2969 L4.3281 -4.8125 ZM11.4068 0 L9.6256 0 L9.6256 -9.125 L11.4068 -9.125 L11.4068 0 ZM19.2387 -3.2812 Q19.2387 -1.6562 18.3793 -0.7656 Q17.52 0.125 16.0512 0.125 Q15.1293 0.125 14.4106 -0.2656 Q13.7075 -0.6719 13.3012 -1.4375 Q12.895 -2.2031 12.895 -3.2812 Q12.895 -4.9219 13.7387 -5.7969 Q14.5981 -6.6719 16.0825 -6.6719 Q17.0043 -6.6719 17.7075 -6.2656 Q18.4262 -5.875 18.8325 -5.125 Q19.2387 -4.375 19.2387 -3.2812 ZM14.7075 -3.2812 Q14.7075 -2.3125 15.02 -1.8125 Q15.3481 -1.3125 16.0668 -1.3125 Q16.77 -1.3125 17.0825 -1.8125 Q17.4106 -2.3125 17.4106 -3.2812 Q17.4106 -4.2656 17.0825 -4.75 Q16.77 -5.2344 16.0512 -5.2344 Q15.3481 -5.2344 15.02 -4.75 Q14.7075 -4.2656 14.7075 -3.2812 ZM22.4949 -7 Q22.4949 -6.625 22.4636 -6.2656 Q22.448 -5.9062 22.4324 -5.7031 L22.4949 -5.7031 Q22.7605 -6.1094 23.198 -6.3906 Q23.6511 -6.6719 24.3543 -6.6719 Q25.4636 -6.6719 26.1511 -5.8125 Q26.8386 -4.9531 26.8386 -3.2812 Q26.8386 -1.6094 26.1355 -0.7344 Q25.4324 0.125 24.3074 0.125 Q23.5886 0.125 23.1668 -0.125 Q22.7605 -0.3906 22.4949 -0.7188 L22.3855 -0.7188 L22.073 0 L20.7136 0 L20.7136 -9.125 L22.4949 -9.125 L22.4949 -7 ZM23.7918 -5.25 Q23.0886 -5.25 22.8074 -4.8125 Q22.5261 -4.375 22.4949 -3.4844 L22.4949 -3.2969 Q22.4949 -2.3594 22.7761 -1.8438 Q23.0574 -1.3281 23.8074 -1.3281 Q24.3543 -1.3281 24.6824 -1.8438 Q25.0105 -2.3594 25.0105 -3.3125 Q25.0105 -4.2656 24.6824 -4.75 Q24.3543 -5.25 23.7918 -5.25 ZM30.9972 -6.6875 Q32.3097 -6.6875 33.0128 -6.1094 Q33.7159 -5.5469 33.7159 -4.375 L33.7159 0 L32.4659 0 L32.1222 -0.8906 L32.0753 -0.8906 Q31.6534 -0.3594 31.1847 -0.1094 Q30.7159 0.125 29.9034 0.125 Q29.0284 0.125 28.4503 -0.3906 Q27.8722 -0.9062 27.8722 -1.9531 Q27.8722 -3 28.6066 -3.5 Q29.3409 -4 30.8097 -4.0469 L31.9503 -4.0781 L31.9503 -4.375 Q31.9503 -4.8906 31.6691 -5.125 Q31.4034 -5.3594 30.9191 -5.3594 Q30.4503 -5.3594 29.9816 -5.2188 Q29.5284 -5.0938 29.0753 -4.8906 L28.4816 -6.0938 Q29.0128 -6.375 29.6534 -6.5312 Q30.2941 -6.6875 30.9972 -6.6875 ZM31.2472 -3.0156 Q30.3878 -2.9844 30.0441 -2.6875 Q29.7159 -2.4062 29.7159 -1.9375 Q29.7159 -1.5312 29.9503 -1.3594 Q30.1847 -1.1875 30.5753 -1.1875 Q31.1534 -1.1875 31.5441 -1.5312 Q31.9503 -1.875 31.9503 -2.5 L31.9503 -3.0312 L31.2472 -3.0156 ZM37.339 0 L35.5577 0 L35.5577 -9.125 L37.339 -9.125 L37.339 0 ZM44.2959 0 L39.3584 0 L39.3584 -8.5625 L44.2959 -8.5625 L44.2959 -7.0781 L41.1709 -7.0781 L41.1709 -5.2031 L44.0771 -5.2031 L44.0771 -3.7031 L41.1709 -3.7031 L41.1709 -1.5 L44.2959 -1.5 L44.2959 0 ZM47.2816 -3.3438 L45.1722 -6.5469 L47.2034 -6.5469 L48.4691 -4.4688 L49.7503 -6.5469 L51.7816 -6.5469 L49.6409 -3.3438 L51.8753 0 L49.8441 0 L48.4691 -2.25 L47.0941 0 L45.0628 0 L47.2816 -3.3438 ZM55.5301 0.125 Q54.077 0.125 53.2801 -0.6875 Q52.4832 -1.5 52.4832 -3.2344 Q52.4832 -4.4375 52.8895 -5.1875 Q53.2957 -5.9531 54.0145 -6.3125 Q54.7489 -6.6719 55.6864 -6.6719 Q56.3582 -6.6719 56.8582 -6.5312 Q57.3582 -6.4062 57.7332 -6.2344 L57.202 -4.8438 Q56.7801 -5.0156 56.4051 -5.125 Q56.0457 -5.2344 55.6864 -5.2344 Q54.2957 -5.2344 54.2957 -3.25 Q54.2957 -2.2656 54.6551 -1.7969 Q55.0301 -1.3281 55.6864 -1.3281 Q56.2489 -1.3281 56.6864 -1.4688 Q57.1239 -1.625 57.5301 -1.8906 L57.5301 -0.375 Q57.1239 -0.1094 56.6707 0 Q56.2176 0.125 55.5301 0.125 ZM61.745 -6.6719 Q63.0888 -6.6719 63.8857 -5.8906 Q64.6825 -5.125 64.6825 -3.7031 L64.6825 -2.8281 L60.4638 -2.8281 Q60.4794 -2.0781 60.9013 -1.6406 Q61.3388 -1.2188 62.0888 -1.2188 Q62.7294 -1.2188 63.245 -1.3438 Q63.7607 -1.4688 64.3075 -1.7344 L64.3075 -0.3438 Q63.8232 -0.1094 63.2919 0 Q62.7607 0.125 62.0107 0.125 Q61.0263 0.125 60.2607 -0.2344 Q59.5107 -0.6094 59.0732 -1.3438 Q58.6513 -2.0938 58.6513 -3.2344 Q58.6513 -4.375 59.0263 -5.1406 Q59.4169 -5.9062 60.12 -6.2812 Q60.8232 -6.6719 61.745 -6.6719 ZM61.745 -5.4062 Q61.2294 -5.4062 60.8857 -5.0625 Q60.5575 -4.7344 60.495 -4.0156 L62.995 -4.0156 Q62.995 -4.625 62.6825 -5.0156 Q62.3857 -5.4062 61.745 -5.4062 ZM69.7746 -6.6719 Q70.884 -6.6719 71.5715 -5.8125 Q72.259 -4.9531 72.259 -3.2812 Q72.259 -1.625 71.5402 -0.75 Q70.8371 0.125 69.7277 0.125 Q69.0246 0.125 68.6027 -0.125 Q68.1808 -0.3906 67.9152 -0.7188 L67.8215 -0.7188 Q67.9152 -0.2188 67.9152 0.2344 L67.9152 2.875 L66.134 2.875 L66.134 -6.5469 L67.5871 -6.5469 L67.8371 -5.7031 L67.9152 -5.7031 Q68.1808 -6.0938 68.6183 -6.375 Q69.0715 -6.6719 69.7746 -6.6719 ZM69.2121 -5.25 Q68.509 -5.25 68.2277 -4.8125 Q67.9465 -4.375 67.9152 -3.4844 L67.9152 -3.2969 Q67.9152 -2.3594 68.1965 -1.8438 Q68.4777 -1.3281 69.2277 -1.3281 Q69.8371 -1.3281 70.134 -1.8438 Q70.4308 -2.3594 70.4308 -3.3125 Q70.4308 -5.25 69.2121 -5.25 ZM76.4956 -1.3125 Q76.7925 -1.3125 77.0581 -1.3594 Q77.3394 -1.4219 77.6206 -1.5156 L77.6206 -0.1875 Q77.3238 -0.0625 76.9019 0.0312 Q76.48 0.125 75.98 0.125 Q75.3863 0.125 74.9175 -0.0625 Q74.4644 -0.2656 74.1831 -0.7344 Q73.9175 -1.2188 73.9175 -2.0469 L73.9175 -5.2031 L73.0738 -5.2031 L73.0738 -5.9688 L74.0581 -6.5625 L74.5738 -7.9375 L75.7144 -7.9375 L75.7144 -6.5469 L77.5425 -6.5469 L77.5425 -5.2031 L75.7144 -5.2031 L75.7144 -2.0469 Q75.7144 -1.6875 75.9175 -1.5 Q76.1363 -1.3125 76.4956 -1.3125 ZM79.8443 -9.125 Q80.2349 -9.125 80.5162 -8.9375 Q80.813 -8.75 80.813 -8.25 Q80.813 -7.75 80.5162 -7.5625 Q80.2349 -7.375 79.8443 -7.375 Q79.4224 -7.375 79.1412 -7.5625 Q78.8599 -7.75 78.8599 -8.25 Q78.8599 -8.75 79.1412 -8.9375 Q79.4224 -9.125 79.8443 -9.125 ZM80.7193 -6.5469 L80.7193 0 L78.938 0 L78.938 -6.5469 L80.7193 -6.5469 ZM88.5512 -3.2812 Q88.5512 -1.6562 87.6918 -0.7656 Q86.8324 0.125 85.3637 0.125 Q84.4418 0.125 83.7231 -0.2656 Q83.0199 -0.6719 82.6137 -1.4375 Q82.2074 -2.2031 82.2074 -3.2812 Q82.2074 -4.9219 83.0512 -5.7969 Q83.9106 -6.6719 85.3949 -6.6719 Q86.3168 -6.6719 87.0199 -6.2656 Q87.7387 -5.875 88.1449 -5.125 Q88.5512 -4.375 88.5512 -3.2812 ZM84.0199 -3.2812 Q84.0199 -2.3125 84.3324 -1.8125 Q84.6606 -1.3125 85.3793 -1.3125 Q86.0824 -1.3125 86.3949 -1.8125 Q86.7231 -2.3125 86.7231 -3.2812 Q86.7231 -4.2656 86.3949 -4.75 Q86.0824 -5.2344 85.3637 -5.2344 Q84.6606 -5.2344 84.3324 -4.75 Q84.0199 -4.2656 84.0199 -3.2812 ZM93.7449 -6.6719 Q94.8074 -6.6719 95.4324 -6.0938 Q96.073 -5.5312 96.073 -4.2656 L96.073 0 L94.2917 0 L94.2917 -3.8281 Q94.2917 -4.5312 94.0261 -4.8906 Q93.7761 -5.25 93.2292 -5.25 Q92.4167 -5.25 92.1042 -4.6875 Q91.8074 -4.125 91.8074 -3.0781 L91.8074 0 L90.0261 0 L90.0261 -6.5469 L91.3855 -6.5469 L91.6355 -5.7188 L91.7292 -5.7188 Q92.0417 -6.2188 92.5886 -6.4375 Q93.1355 -6.6719 93.7449 -6.6719 ZM105.0664 0 L103.2539 0 L103.2539 -3.7031 L99.8633 -3.7031 L99.8633 0 L98.0508 0 L98.0508 -8.5625 L99.8633 -8.5625 L99.8633 -5.2031 L103.2539 -5.2031 L103.2539 -8.5625 L105.0664 -8.5625 L105.0664 0 ZM109.7777 -6.6875 Q111.0902 -6.6875 111.7934 -6.1094 Q112.4965 -5.5469 112.4965 -4.375 L112.4965 0 L111.2465 0 L110.9027 -0.8906 L110.8559 -0.8906 Q110.434 -0.3594 109.9652 -0.1094 Q109.4965 0.125 108.684 0.125 Q107.809 0.125 107.2309 -0.3906 Q106.6527 -0.9062 106.6527 -1.9531 Q106.6527 -3 107.3871 -3.5 Q108.1215 -4 109.5902 -4.0469 L110.7309 -4.0781 L110.7309 -4.375 Q110.7309 -4.8906 110.4496 -5.125 Q110.184 -5.3594 109.6996 -5.3594 Q109.2309 -5.3594 108.7621 -5.2188 Q108.309 -5.0938 107.8559 -4.8906 L107.2621 -6.0938 Q107.7934 -6.375 108.434 -6.5312 Q109.0746 -6.6875 109.7777 -6.6875 ZM110.0277 -3.0156 Q109.1684 -2.9844 108.8246 -2.6875 Q108.4965 -2.4062 108.4965 -1.9375 Q108.4965 -1.5312 108.7309 -1.3594 Q108.9652 -1.1875 109.3559 -1.1875 Q109.934 -1.1875 110.3246 -1.5312 Q110.7309 -1.875 110.7309 -2.5 L110.7309 -3.0312 L110.0277 -3.0156 ZM118.057 -6.6719 Q119.1195 -6.6719 119.7445 -6.0938 Q120.3852 -5.5312 120.3852 -4.2656 L120.3852 0 L118.6039 0 L118.6039 -3.8281 Q118.6039 -4.5312 118.3383 -4.8906 Q118.0883 -5.25 117.5414 -5.25 Q116.7289 -5.25 116.4164 -4.6875 Q116.1195 -4.125 116.1195 -3.0781 L116.1195 0 L114.3383 0 L114.3383 -6.5469 L115.6977 -6.5469 L115.9477 -5.7188 L116.0414 -5.7188 Q116.3539 -6.2188 116.9008 -6.4375 Q117.4477 -6.6719 118.057 -6.6719 ZM124.3005 0.125 Q123.2067 0.125 122.5192 -0.7344 Q121.8317 -1.5938 121.8317 -3.2656 Q121.8317 -4.9375 122.5192 -5.7969 Q123.2223 -6.6719 124.3473 -6.6719 Q125.0505 -6.6719 125.5036 -6.3906 Q125.9723 -6.125 126.2223 -5.7188 L126.2848 -5.7188 Q126.2536 -5.9062 126.2067 -6.2656 Q126.1598 -6.6406 126.1598 -7.0156 L126.1598 -9.125 L127.9411 -9.125 L127.9411 0 L126.5817 0 L126.2223 -0.8594 L126.1598 -0.8594 Q125.8942 -0.4375 125.4411 -0.1562 Q125.0036 0.125 124.3005 0.125 ZM124.9255 -1.3125 Q125.6598 -1.3125 125.9567 -1.75 Q126.2692 -2.1875 126.2692 -3.0625 L126.2692 -3.25 Q126.2692 -4.2188 125.9723 -4.7188 Q125.6911 -5.2188 124.8942 -5.2188 Q124.3161 -5.2188 123.9723 -4.7031 Q123.6442 -4.2031 123.6442 -3.2344 Q123.6442 -2.2812 123.9723 -1.7969 Q124.3161 -1.3125 124.9255 -1.3125 ZM131.5996 0 L129.8184 0 L129.8184 -9.125 L131.5996 -9.125 L131.5996 0 ZM136.1815 -6.6719 Q137.5253 -6.6719 138.3222 -5.8906 Q139.119 -5.125 139.119 -3.7031 L139.119 -2.8281 L134.9003 -2.8281 Q134.9159 -2.0781 135.3378 -1.6406 Q135.7753 -1.2188 136.5253 -1.2188 Q137.1659 -1.2188 137.6815 -1.3438 Q138.1972 -1.4688 138.744 -1.7344 L138.744 -0.3438 Q138.2597 -0.1094 137.7284 0 Q137.1972 0.125 136.4472 0.125 Q135.4628 0.125 134.6972 -0.2344 Q133.9472 -0.6094 133.5097 -1.3438 Q133.0878 -2.0938 133.0878 -3.2344 Q133.0878 -4.375 133.4628 -5.1406 Q133.8534 -5.9062 134.5565 -6.2812 Q135.2597 -6.6719 136.1815 -6.6719 ZM136.1815 -5.4062 Q135.6659 -5.4062 135.3222 -5.0625 Q134.994 -4.7344 134.9315 -4.0156 L137.4315 -4.0156 Q137.4315 -4.625 137.119 -5.0156 Q136.8222 -5.4062 136.1815 -5.4062 ZM144.2267 -6.6719 Q144.3673 -6.6719 144.5392 -6.6562 Q144.7267 -6.6406 144.8361 -6.625 L144.6955 -4.9375 Q144.6173 -4.9688 144.4455 -4.9844 Q144.2892 -5 144.1642 -5 Q143.7111 -5 143.2892 -4.8438 Q142.8673 -4.6875 142.6017 -4.3125 Q142.3517 -3.9531 142.3517 -3.3438 L142.3517 0 L140.5705 0 L140.5705 -6.5469 L141.9298 -6.5469 L142.1955 -5.4531 L142.2736 -5.4531 Q142.5548 -5.9531 143.0548 -6.3125 Q143.5705 -6.6719 144.2267 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath39);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="770.6845" x2="698.1624" y1="-32.1645" style="fill:none; clip-path:url(#clipPath2);" y2="-32.1645"
+      /><line x1="698.1624" x2="698.1624" y1="-32.1645" style="fill:none; clip-path:url(#clipPath2);" y2="-653.4835"
+      /><line x1="698.1624" x2="142.5542" y1="-653.4835" style="fill:none; clip-path:url(#clipPath2);" y2="-653.4835"
+      /><line x1="142.5542" x2="142.5542" y1="-653.4835" style="fill:none; clip-path:url(#clipPath2);" y2="-539.827"
+      /><line x1="770.6845" x2="760.2922" y1="-32.1645" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-26.1645"
+      /><line x1="770.6845" x2="760.2922" y1="-32.1645" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-38.1645"
+      /><line x1="81.9969" x2="82.0333" y1="-642.5076" style="fill:none; clip-path:url(#clipPath2);" y2="-724.4007"
+      /><line x1="81.9969" x2="76.0015" y1="-642.5076" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-652.9025"
+      /><line x1="81.9969" x2="88.0015" y1="-642.5076" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-652.8972"
+      /><line x1="-110.3024" x2="-110.3024" y1="-698.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-819.2005"
+      /><line x1="-110.3024" x2="281.614" y1="-819.2005" style="fill:none; clip-path:url(#clipPath2);" y2="-819.2005"
+      /><line x1="281.614" x2="281.614" y1="-819.2005" style="fill:none; clip-path:url(#clipPath2);" y2="-780.3166"
+      /><line x1="-110.3024" x2="-116.3024" y1="-698.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-708.6828"
+      /><line x1="-110.3024" x2="-104.3024" y1="-698.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-708.6828"
+      /><line x1="101.3634" x2="101.3634" y1="-499.1388" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-313.9625"
+      /><line x1="101.3634" x2="105.7752" y1="-313.9625" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-313.9625"
+      /><line x1="105.7752" x2="105.7752" y1="-313.9625" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-128.7862"
+      /><line x1="105.7752" x2="99.7752" y1="-128.7862" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-139.1785"
+      /><line x1="105.7752" x2="111.7752" y1="-128.7862" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-139.1785"
+      /><path d="M780.8575 -411.9229 A6 6 0 0 0 768.8575 -411.9229" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M704.1624 -427.1403 A6 6 0 0 0 692.1624 -427.1403" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="655.9713" x2="692.1624" y1="-427.1403" style="fill:none; clip-path:url(#clipPath2);" y2="-427.1403"
+      /><line x1="704.1624" x2="761.0704" y1="-427.1403" style="fill:none; clip-path:url(#clipPath2);" y2="-427.1403"
+      /><line x1="761.0704" x2="761.0704" y1="-427.1403" style="fill:none; clip-path:url(#clipPath2);" y2="-411.9229"
+      /><line x1="761.0704" x2="768.8575" y1="-411.9229" style="fill:none; clip-path:url(#clipPath2);" y2="-411.9229"
+      /><line x1="780.8575" x2="866.1694" y1="-411.9229" style="fill:none; clip-path:url(#clipPath2);" y2="-411.9229"
+      /><line x1="655.9713" x2="666.3636" y1="-427.1403" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-433.1403"
+      /><line x1="655.9713" x2="666.3636" y1="-427.1403" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-421.1403"
+      /><line x1="-222.4" x2="-134.3024" y1="-684.9429" style="fill:none; clip-path:url(#clipPath2);" y2="-683.6443"
+      /><line x1="-222.4" x2="-211.9204" y1="-684.9429" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-690.789"
+      /><line x1="-222.4" x2="-212.0972" y1="-684.9429" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-678.7903"
+      /><line x1="628.4591" x2="628.4591" y1="-97.2833" style="fill:none; clip-path:url(#clipPath2);" y2="-366.5134"
+      /><line x1="628.4591" x2="130.7848" y1="-366.5134" style="fill:none; clip-path:url(#clipPath2);" y2="-366.5134"
+      /><line x1="130.7848" x2="130.7848" y1="-366.5134" style="fill:none; clip-path:url(#clipPath2);" y2="-499.1388"
+      /><line x1="628.4591" x2="622.4591" y1="-97.2833" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.6756"
+      /><line x1="628.4591" x2="634.4591" y1="-97.2833" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.6756"
+      /><line x1="-8.2084" x2="21.4707" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-679.6929"
+      /><line x1="21.4707" x2="21.4707" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-527.1128"
+      /><line x1="21.4707" x2="51.1497" y1="-527.1128" style="fill:none; clip-path:url(#clipPath2);" y2="-527.1128"
+      /><line x1="-8.2084" x2="2.1839" y1="-679.6929" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-685.6929"
+      /><line x1="-8.2084" x2="2.1839" y1="-679.6929" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-673.6929"
+      /><path d="M27.4707 -592.2692 A6 6 0 0 0 15.4707 -592.2692" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-110.3024" x2="-110.3024" y1="-668.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="-110.3024" x2="15.4707" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="27.4707" x2="101.3634" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="101.3634" x2="101.3634" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-539.827"
+      /><line x1="-110.3024" x2="-104.3024" y1="-668.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-657.8982"
+      /><line x1="-110.3024" x2="-116.3024" y1="-668.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-657.8982"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="770.4819" y="-103.8588" width="68.0363" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="770.4819" y="-103.8588" width="68.0363" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(780.4819,-85.8588)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM9.7845 -2.2969 Q9.7377 -2.5 9.6439 -2.8906 Q9.5658 -3.2969 9.4564 -3.75 Q9.347 -4.2188 9.2533 -4.6094 Q9.1595 -5 9.1127 -5.1875 L9.0658 -5.1875 Q9.0345 -5 8.9408 -4.6094 Q8.8627 -4.2188 8.7533 -3.75 Q8.6439 -3.2969 8.5345 -2.8906 Q8.4408 -2.4844 8.3939 -2.2656 L7.8783 0 L5.9564 0 L4.097 -6.5469 L5.8627 -6.5469 L6.6283 -3.6406 Q6.7064 -3.3438 6.7689 -2.9219 Q6.847 -2.5156 6.8939 -2.125 Q6.9564 -1.7344 6.9877 -1.5 L7.0345 -1.5 Q7.0502 -1.6719 7.0814 -1.9531 Q7.1127 -2.2344 7.1595 -2.5312 Q7.222 -2.8281 7.2689 -3.0781 Q7.3158 -3.3281 7.3314 -3.4062 L8.1283 -6.5469 L10.097 -6.5469 L10.8783 -3.4062 Q10.9252 -3.2344 10.9877 -2.8594 Q11.0502 -2.5 11.097 -2.1094 Q11.1595 -1.7344 11.1595 -1.5 L11.2064 -1.5 Q11.2377 -1.7031 11.2845 -2.0938 Q11.347 -2.4844 11.4252 -2.9062 Q11.5033 -3.3438 11.597 -3.6406 L12.3783 -6.5469 L14.1283 -6.5469 L12.2377 0 L10.3002 0 L9.7845 -2.2969 ZM17.9472 -1.3125 Q18.2441 -1.3125 18.5097 -1.3594 Q18.791 -1.4219 19.0722 -1.5156 L19.0722 -0.1875 Q18.7754 -0.0625 18.3535 0.0312 Q17.9316 0.125 17.4316 0.125 Q16.8379 0.125 16.3691 -0.0625 Q15.916 -0.2656 15.6347 -0.7344 Q15.3691 -1.2188 15.3691 -2.0469 L15.3691 -5.2031 L14.5254 -5.2031 L14.5254 -5.9688 L15.5097 -6.5625 L16.0254 -7.9375 L17.166 -7.9375 L17.166 -6.5469 L18.9941 -6.5469 L18.9941 -5.2031 L17.166 -5.2031 L17.166 -2.0469 Q17.166 -1.6875 17.3691 -1.5 Q17.5879 -1.3125 17.9472 -1.3125 ZM27.6396 -4.375 Q27.6396 -2.2031 26.4053 -1.0938 Q25.1709 0 22.9521 0 L20.5303 0 L20.5303 -8.5625 L23.2178 -8.5625 Q24.5615 -8.5625 25.5459 -8.0781 Q26.5459 -7.6094 27.0928 -6.6719 Q27.6396 -5.75 27.6396 -4.375 ZM25.749 -4.3125 Q25.749 -5.75 25.124 -6.4062 Q24.499 -7.0781 23.3115 -7.0781 L22.3428 -7.0781 L22.3428 -1.5 L23.124 -1.5 Q25.749 -1.5 25.749 -4.3125 ZM31.9572 -6.6875 Q33.2697 -6.6875 33.9728 -6.1094 Q34.676 -5.5469 34.676 -4.375 L34.676 0 L33.426 0 L33.0822 -0.8906 L33.0353 -0.8906 Q32.6135 -0.3594 32.1447 -0.1094 Q31.676 0.125 30.8635 0.125 Q29.9885 0.125 29.4103 -0.3906 Q28.8322 -0.9062 28.8322 -1.9531 Q28.8322 -3 29.5666 -3.5 Q30.301 -4 31.7697 -4.0469 L32.9103 -4.0781 L32.9103 -4.375 Q32.9103 -4.8906 32.6291 -5.125 Q32.3635 -5.3594 31.8791 -5.3594 Q31.4103 -5.3594 30.9416 -5.2188 Q30.4885 -5.0938 30.0353 -4.8906 L29.4416 -6.0938 Q29.9728 -6.375 30.6135 -6.5312 Q31.2541 -6.6875 31.9572 -6.6875 ZM32.2072 -3.0156 Q31.3478 -2.9844 31.0041 -2.6875 Q30.676 -2.4062 30.676 -1.9375 Q30.676 -1.5312 30.9103 -1.3594 Q31.1447 -1.1875 31.5353 -1.1875 Q32.1135 -1.1875 32.5041 -1.5312 Q32.9103 -1.875 32.9103 -2.5 L32.9103 -3.0312 L32.2072 -3.0156 ZM39.2834 -1.3125 Q39.5803 -1.3125 39.8459 -1.3594 Q40.1271 -1.4219 40.4084 -1.5156 L40.4084 -0.1875 Q40.1115 -0.0625 39.6896 0.0312 Q39.2678 0.125 38.7678 0.125 Q38.174 0.125 37.7053 -0.0625 Q37.2521 -0.2656 36.9709 -0.7344 Q36.7053 -1.2188 36.7053 -2.0469 L36.7053 -5.2031 L35.8615 -5.2031 L35.8615 -5.9688 L36.8459 -6.5625 L37.3615 -7.9375 L38.5021 -7.9375 L38.5021 -6.5469 L40.3303 -6.5469 L40.3303 -5.2031 L38.5021 -5.2031 L38.5021 -2.0469 Q38.5021 -1.6875 38.7053 -1.5 Q38.924 -1.3125 39.2834 -1.3125 ZM44.4133 -6.6875 Q45.7258 -6.6875 46.4289 -6.1094 Q47.132 -5.5469 47.132 -4.375 L47.132 0 L45.882 0 L45.5383 -0.8906 L45.4914 -0.8906 Q45.0695 -0.3594 44.6008 -0.1094 Q44.132 0.125 43.3195 0.125 Q42.4445 0.125 41.8664 -0.3906 Q41.2883 -0.9062 41.2883 -1.9531 Q41.2883 -3 42.0227 -3.5 Q42.757 -4 44.2258 -4.0469 L45.3664 -4.0781 L45.3664 -4.375 Q45.3664 -4.8906 45.0852 -5.125 Q44.8195 -5.3594 44.3352 -5.3594 Q43.8664 -5.3594 43.3977 -5.2188 Q42.9445 -5.0938 42.4914 -4.8906 L41.8977 -6.0938 Q42.4289 -6.375 43.0695 -6.5312 Q43.7102 -6.6875 44.4133 -6.6875 ZM44.6633 -3.0156 Q43.8039 -2.9844 43.4602 -2.6875 Q43.132 -2.4062 43.132 -1.9375 Q43.132 -1.5312 43.3664 -1.3594 Q43.6008 -1.1875 43.9914 -1.1875 Q44.5695 -1.1875 44.9602 -1.5312 Q45.3664 -1.875 45.3664 -2.5 L45.3664 -3.0312 L44.6633 -3.0156 Z" style="stroke:none; clip-path:url(#clipPath40);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M789.0778 -405.93 A6 6 0 0 0 788.4948 -417.9158" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="803.7704" x2="789.0778" y1="-103.8588" style="fill:none; clip-path:url(#clipPath2);" y2="-405.93"
+      /><line x1="788.4948" x2="775.587" y1="-417.9158" style="fill:none; clip-path:url(#clipPath2);" y2="-683.2905"
+      /><line x1="803.7704" x2="797.2727" y1="-103.8588" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-113.9473"
+      /><line x1="803.7704" x2="809.2585" y1="-103.8588" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-114.5303"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="76.9222" y="-780.3166" width="108.4766" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="76.9222" y="-780.3166" width="108.4766" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(89.9822,-762.3166)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM30.8576 -6.5469 Q32.0138 -6.5469 32.5919 -5.9844 Q33.1857 -5.4375 33.1857 -4.1875 L33.1857 0 L32.1544 0 L32.1544 -4.1094 Q32.1544 -5.6562 30.7013 -5.6562 Q29.6388 -5.6562 29.2326 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1544 -6.0625 29.7013 -6.2969 Q30.2482 -6.5469 30.8576 -6.5469 ZM37.3361 -0.75 Q37.5705 -0.75 37.8205 -0.7812 Q38.0705 -0.8281 38.2267 -0.875 L38.2267 -0.0781 Q38.0705 0.0156 37.758 0.0625 Q37.4455 0.125 37.1486 0.125 Q36.6486 0.125 36.2111 -0.0469 Q35.7892 -0.2344 35.5236 -0.6562 Q35.2736 -1.0938 35.2736 -1.875 L35.2736 -5.6094 L34.3517 -5.6094 L34.3517 -6.125 L35.2736 -6.5469 L35.6955 -7.9062 L36.3205 -7.9062 L36.3205 -6.4375 L38.1799 -6.4375 L38.1799 -5.6094 L36.3205 -5.6094 L36.3205 -1.8906 Q36.3205 -1.3125 36.6017 -1.0312 Q36.883 -0.75 37.3361 -0.75 ZM42.5119 -6.5469 Q42.6994 -6.5469 42.9025 -6.5312 Q43.1213 -6.5156 43.2775 -6.4844 L43.1369 -5.5156 Q42.9806 -5.5469 42.7931 -5.5625 Q42.6056 -5.5938 42.4494 -5.5938 Q41.9494 -5.5938 41.5119 -5.3125 Q41.09 -5.0469 40.8244 -4.5625 Q40.5744 -4.0781 40.5744 -3.4375 L40.5744 0 L39.5119 0 L39.5119 -6.4375 L40.3869 -6.4375 L40.4963 -5.25 L40.5431 -5.25 Q40.8556 -5.7812 41.34 -6.1562 Q41.84 -6.5469 42.5119 -6.5469 ZM50.0617 -3.2344 Q50.0617 -1.625 49.2492 -0.75 Q48.4367 0.125 47.0617 0.125 Q46.2179 0.125 45.5461 -0.2656 Q44.8742 -0.6562 44.4836 -1.4062 Q44.1086 -2.1562 44.1086 -3.2344 Q44.1086 -4.8281 44.9054 -5.6875 Q45.7179 -6.5469 47.0929 -6.5469 Q47.9836 -6.5469 48.6398 -6.1562 Q49.3117 -5.7656 49.6867 -5.0312 Q50.0617 -4.2969 50.0617 -3.2344 ZM45.2023 -3.2344 Q45.2023 -2.0938 45.6554 -1.4219 Q46.1086 -0.75 47.0929 -0.75 Q48.0617 -0.75 48.5148 -1.4219 Q48.9679 -2.0938 48.9679 -3.2344 Q48.9679 -4.375 48.5148 -5.0156 Q48.0617 -5.6562 47.0773 -5.6562 Q46.0929 -5.6562 45.6398 -5.0156 Q45.2023 -4.375 45.2023 -3.2344 ZM52.7905 0 L51.728 0 L51.728 -9.125 L52.7905 -9.125 L52.7905 0 ZM55.8865 0 L54.824 0 L54.824 -9.125 L55.8865 -9.125 L55.8865 0 ZM60.4044 -6.5469 Q61.2325 -6.5469 61.8263 -6.1875 Q62.42 -5.8281 62.7325 -5.1719 Q63.0607 -4.5312 63.0607 -3.6406 L63.0607 -3.0156 L58.6544 -3.0156 Q58.6857 -1.9219 59.2169 -1.3438 Q59.7482 -0.7812 60.7013 -0.7812 Q61.3263 -0.7812 61.795 -0.8906 Q62.2638 -1.0156 62.7794 -1.2188 L62.7794 -0.2969 Q62.2794 -0.0781 61.795 0.0156 Q61.3263 0.125 60.6544 0.125 Q59.7482 0.125 59.045 -0.25 Q58.3419 -0.625 57.9513 -1.3594 Q57.5607 -2.0938 57.5607 -3.1719 Q57.5607 -4.2188 57.92 -4.9688 Q58.2794 -5.7344 58.92 -6.1406 Q59.5607 -6.5469 60.4044 -6.5469 ZM60.3888 -5.6875 Q59.6388 -5.6875 59.2013 -5.2031 Q58.7638 -4.7188 58.6857 -3.8594 L61.9513 -3.8594 Q61.9513 -4.6719 61.5763 -5.1719 Q61.2013 -5.6875 60.3888 -5.6875 ZM67.6881 -6.5469 Q67.8756 -6.5469 68.0787 -6.5312 Q68.2975 -6.5156 68.4537 -6.4844 L68.3131 -5.5156 Q68.1568 -5.5469 67.9693 -5.5625 Q67.7818 -5.5938 67.6256 -5.5938 Q67.1256 -5.5938 66.6881 -5.3125 Q66.2662 -5.0469 66.0006 -4.5625 Q65.7506 -4.0781 65.7506 -3.4375 L65.7506 0 L64.6881 0 L64.6881 -6.4375 L65.5631 -6.4375 L65.6725 -5.25 L65.7193 -5.25 Q66.0318 -5.7812 66.5162 -6.1562 Q67.0162 -6.5469 67.6881 -6.5469 ZM69.2222 -2.3281 L73.7535 -4.2188 L69.2222 -6.3594 L69.2222 -7.2969 L74.8785 -4.4688 L74.8785 -3.875 L69.2222 -1.3906 L69.2222 -2.3281 ZM76.0863 -2.3281 L80.6175 -4.2188 L76.0863 -6.3594 L76.0863 -7.2969 L81.7425 -4.4688 L81.7425 -3.875 L76.0863 -1.3906 L76.0863 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath41);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(86.9222,-745.9725)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM32.295 -7.1719 Q31.2481 -7.1719 30.6856 -6.3906 Q30.1387 -5.6094 30.1387 -4.2656 Q30.1387 -2.8906 30.6543 -2.1406 Q31.17 -1.3906 32.295 -1.3906 Q32.8262 -1.3906 33.3418 -1.5 Q33.8575 -1.625 34.4825 -1.8438 L34.4825 -0.3281 Q33.92 -0.0938 33.3575 0.0156 Q32.8106 0.125 32.1231 0.125 Q30.8106 0.125 29.9512 -0.4219 Q29.0918 -0.9688 28.6856 -1.9531 Q28.2793 -2.9531 28.2793 -4.2656 Q28.2793 -5.5625 28.7325 -6.5625 Q29.2012 -7.5625 30.0918 -8.125 Q30.9981 -8.6875 32.295 -8.6875 Q32.9356 -8.6875 33.5762 -8.5156 Q34.2168 -8.3594 34.795 -8.0938 L34.2168 -6.6094 Q33.7325 -6.8438 33.2481 -7 Q32.7637 -7.1719 32.295 -7.1719 ZM42.1109 -3.2812 Q42.1109 -1.6562 41.2515 -0.7656 Q40.3921 0.125 38.9234 0.125 Q38.0015 0.125 37.2828 -0.2656 Q36.5796 -0.6719 36.1734 -1.4375 Q35.7671 -2.2031 35.7671 -3.2812 Q35.7671 -4.9219 36.6109 -5.7969 Q37.4703 -6.6719 38.9546 -6.6719 Q39.8765 -6.6719 40.5796 -6.2656 Q41.2984 -5.875 41.7046 -5.125 Q42.1109 -4.375 42.1109 -3.2812 ZM37.5796 -3.2812 Q37.5796 -2.3125 37.8921 -1.8125 Q38.2203 -1.3125 38.939 -1.3125 Q39.6421 -1.3125 39.9546 -1.8125 Q40.2828 -2.3125 40.2828 -3.2812 Q40.2828 -4.2656 39.9546 -4.75 Q39.6421 -5.2344 38.9234 -5.2344 Q38.2203 -5.2344 37.8921 -4.75 Q37.5796 -4.2656 37.5796 -3.2812 ZM47.3046 -6.6719 Q48.3671 -6.6719 48.9921 -6.0938 Q49.6327 -5.5312 49.6327 -4.2656 L49.6327 0 L47.8514 0 L47.8514 -3.8281 Q47.8514 -4.5312 47.5858 -4.8906 Q47.3358 -5.25 46.7889 -5.25 Q45.9764 -5.25 45.6639 -4.6875 Q45.3671 -4.125 45.3671 -3.0781 L45.3671 0 L43.5858 0 L43.5858 -6.5469 L44.9452 -6.5469 L45.1952 -5.7188 L45.2889 -5.7188 Q45.6014 -6.2188 46.1483 -6.4375 Q46.6952 -6.6719 47.3046 -6.6719 ZM54.2355 -1.3125 Q54.5324 -1.3125 54.798 -1.3594 Q55.0792 -1.4219 55.3605 -1.5156 L55.3605 -0.1875 Q55.0636 -0.0625 54.6417 0.0312 Q54.2199 0.125 53.7199 0.125 Q53.1261 0.125 52.6574 -0.0625 Q52.2042 -0.2656 51.923 -0.7344 Q51.6574 -1.2188 51.6574 -2.0469 L51.6574 -5.2031 L50.8136 -5.2031 L50.8136 -5.9688 L51.798 -6.5625 L52.3136 -7.9375 L53.4542 -7.9375 L53.4542 -6.5469 L55.2824 -6.5469 L55.2824 -5.2031 L53.4542 -5.2031 L53.4542 -2.0469 Q53.4542 -1.6875 53.6574 -1.5 Q53.8761 -1.3125 54.2355 -1.3125 ZM60.3342 -6.6719 Q60.4748 -6.6719 60.6467 -6.6562 Q60.8342 -6.6406 60.9435 -6.625 L60.8029 -4.9375 Q60.7248 -4.9688 60.5529 -4.9844 Q60.3967 -5 60.2717 -5 Q59.8185 -5 59.3967 -4.8438 Q58.9748 -4.6875 58.7092 -4.3125 Q58.4592 -3.9531 58.4592 -3.3438 L58.4592 0 L56.6779 0 L56.6779 -6.5469 L58.0373 -6.5469 L58.3029 -5.4531 L58.381 -5.4531 Q58.6623 -5.9531 59.1623 -6.3125 Q59.6779 -6.6719 60.3342 -6.6719 ZM68.0791 -3.2812 Q68.0791 -1.6562 67.2197 -0.7656 Q66.3603 0.125 64.8916 0.125 Q63.9697 0.125 63.2509 -0.2656 Q62.5478 -0.6719 62.1416 -1.4375 Q61.7353 -2.2031 61.7353 -3.2812 Q61.7353 -4.9219 62.5791 -5.7969 Q63.4384 -6.6719 64.9228 -6.6719 Q65.8447 -6.6719 66.5478 -6.2656 Q67.2666 -5.875 67.6728 -5.125 Q68.0791 -4.375 68.0791 -3.2812 ZM63.5478 -3.2812 Q63.5478 -2.3125 63.8603 -1.8125 Q64.1884 -1.3125 64.9072 -1.3125 Q65.6103 -1.3125 65.9228 -1.8125 Q66.2509 -2.3125 66.2509 -3.2812 Q66.2509 -4.2656 65.9228 -4.75 Q65.6103 -5.2344 64.8916 -5.2344 Q64.1884 -5.2344 63.8603 -4.75 Q63.5478 -4.2656 63.5478 -3.2812 ZM71.3353 0 L69.554 0 L69.554 -9.125 L71.3353 -9.125 L71.3353 0 ZM74.9953 0 L73.214 0 L73.214 -9.125 L74.9953 -9.125 L74.9953 0 ZM79.5772 -6.6719 Q80.9209 -6.6719 81.7178 -5.8906 Q82.5147 -5.125 82.5147 -3.7031 L82.5147 -2.8281 L78.2959 -2.8281 Q78.3115 -2.0781 78.7334 -1.6406 Q79.1709 -1.2188 79.9209 -1.2188 Q80.5615 -1.2188 81.0772 -1.3438 Q81.5928 -1.4688 82.1397 -1.7344 L82.1397 -0.3438 Q81.6553 -0.1094 81.124 0 Q80.5928 0.125 79.8428 0.125 Q78.8584 0.125 78.0928 -0.2344 Q77.3428 -0.6094 76.9053 -1.3438 Q76.4834 -2.0938 76.4834 -3.2344 Q76.4834 -4.375 76.8584 -5.1406 Q77.249 -5.9062 77.9522 -6.2812 Q78.6553 -6.6719 79.5772 -6.6719 ZM79.5772 -5.4062 Q79.0615 -5.4062 78.7178 -5.0625 Q78.3897 -4.7344 78.3272 -4.0156 L80.8272 -4.0156 Q80.8272 -4.625 80.5147 -5.0156 Q80.2178 -5.4062 79.5772 -5.4062 ZM87.6223 -6.6719 Q87.763 -6.6719 87.9348 -6.6562 Q88.1223 -6.6406 88.2317 -6.625 L88.0911 -4.9375 Q88.013 -4.9688 87.8411 -4.9844 Q87.6848 -5 87.5598 -5 Q87.1067 -5 86.6848 -4.8438 Q86.263 -4.6875 85.9973 -4.3125 Q85.7473 -3.9531 85.7473 -3.3438 L85.7473 0 L83.9661 0 L83.9661 -6.5469 L85.3255 -6.5469 L85.5911 -5.4531 L85.6692 -5.4531 Q85.9505 -5.9531 86.4505 -6.3125 Q86.9661 -6.6719 87.6223 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath42);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><line x1="131.1605" x2="131.1605" y1="-739.6284" style="fill:none; clip-path:url(#clipPath2);" y2="-539.827"
+      /><line x1="131.1605" x2="125.1605" y1="-539.827" style="fill:none; clip-path:url(#clipPath2);" y2="-550.2193"
+      /><line x1="131.1605" x2="137.1605" y1="-539.827" style="fill:none; clip-path:url(#clipPath2);" y2="-550.2193"
+      /><line x1="-110.3024" x2="-110.3024" y1="-698.2905" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-819.2005"
+      /><line x1="-110.3024" x2="131.1605" y1="-819.2005" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-819.2005"
+      /><line x1="131.1605" x2="131.1605" y1="-819.2005" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-780.3166"
+      /><line x1="-110.3024" x2="-116.3024" y1="-698.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-708.6828"
+      /><line x1="-110.3024" x2="-104.3024" y1="-698.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-708.6828"
+      /><path d="M152.5206 -813.2005 A6 6 0 0 0 152.5206 -825.2005" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="845.6845" x2="1128.8659" y1="-32.1645" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-32.1645"
+      /><line x1="1128.8659" x2="1128.8659" y1="-32.1645" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-873.6644"
+      /><line x1="1128.8659" x2="152.5206" y1="-873.6644" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-873.6644"
+      /><line x1="152.5206" x2="152.5206" y1="-873.6644" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-825.2005"
+      /><line x1="152.5206" x2="152.5206" y1="-813.2005" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-780.3166"
+      /><line x1="845.6845" x2="856.0768" y1="-32.1645" style="fill:none; clip-path:url(#clipPath2);" y2="-38.1645"
+      /><line x1="845.6845" x2="856.0768" y1="-32.1645" style="fill:none; clip-path:url(#clipPath2);" y2="-26.1645"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="377.8343" y="-780.3166" width="134.7328" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="377.8343" y="-780.3166" width="134.7328" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(404.0224,-762.3166)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM30.8576 -6.5469 Q32.0138 -6.5469 32.5919 -5.9844 Q33.1857 -5.4375 33.1857 -4.1875 L33.1857 0 L32.1544 0 L32.1544 -4.1094 Q32.1544 -5.6562 30.7013 -5.6562 Q29.6388 -5.6562 29.2326 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1544 -6.0625 29.7013 -6.2969 Q30.2482 -6.5469 30.8576 -6.5469 ZM37.3361 -0.75 Q37.5705 -0.75 37.8205 -0.7812 Q38.0705 -0.8281 38.2267 -0.875 L38.2267 -0.0781 Q38.0705 0.0156 37.758 0.0625 Q37.4455 0.125 37.1486 0.125 Q36.6486 0.125 36.2111 -0.0469 Q35.7892 -0.2344 35.5236 -0.6562 Q35.2736 -1.0938 35.2736 -1.875 L35.2736 -5.6094 L34.3517 -5.6094 L34.3517 -6.125 L35.2736 -6.5469 L35.6955 -7.9062 L36.3205 -7.9062 L36.3205 -6.4375 L38.1799 -6.4375 L38.1799 -5.6094 L36.3205 -5.6094 L36.3205 -1.8906 Q36.3205 -1.3125 36.6017 -1.0312 Q36.883 -0.75 37.3361 -0.75 ZM42.5119 -6.5469 Q42.6994 -6.5469 42.9025 -6.5312 Q43.1213 -6.5156 43.2775 -6.4844 L43.1369 -5.5156 Q42.9806 -5.5469 42.7931 -5.5625 Q42.6056 -5.5938 42.4494 -5.5938 Q41.9494 -5.5938 41.5119 -5.3125 Q41.09 -5.0469 40.8244 -4.5625 Q40.5744 -4.0781 40.5744 -3.4375 L40.5744 0 L39.5119 0 L39.5119 -6.4375 L40.3869 -6.4375 L40.4963 -5.25 L40.5431 -5.25 Q40.8556 -5.7812 41.34 -6.1562 Q41.84 -6.5469 42.5119 -6.5469 ZM50.0617 -3.2344 Q50.0617 -1.625 49.2492 -0.75 Q48.4367 0.125 47.0617 0.125 Q46.2179 0.125 45.5461 -0.2656 Q44.8742 -0.6562 44.4836 -1.4062 Q44.1086 -2.1562 44.1086 -3.2344 Q44.1086 -4.8281 44.9054 -5.6875 Q45.7179 -6.5469 47.0929 -6.5469 Q47.9836 -6.5469 48.6398 -6.1562 Q49.3117 -5.7656 49.6867 -5.0312 Q50.0617 -4.2969 50.0617 -3.2344 ZM45.2023 -3.2344 Q45.2023 -2.0938 45.6554 -1.4219 Q46.1086 -0.75 47.0929 -0.75 Q48.0617 -0.75 48.5148 -1.4219 Q48.9679 -2.0938 48.9679 -3.2344 Q48.9679 -4.375 48.5148 -5.0156 Q48.0617 -5.6562 47.0773 -5.6562 Q46.0929 -5.6562 45.6398 -5.0156 Q45.2023 -4.375 45.2023 -3.2344 ZM52.7905 0 L51.728 0 L51.728 -9.125 L52.7905 -9.125 L52.7905 0 ZM55.8865 0 L54.824 0 L54.824 -9.125 L55.8865 -9.125 L55.8865 0 ZM60.4044 -6.5469 Q61.2325 -6.5469 61.8263 -6.1875 Q62.42 -5.8281 62.7325 -5.1719 Q63.0607 -4.5312 63.0607 -3.6406 L63.0607 -3.0156 L58.6544 -3.0156 Q58.6857 -1.9219 59.2169 -1.3438 Q59.7482 -0.7812 60.7013 -0.7812 Q61.3263 -0.7812 61.795 -0.8906 Q62.2638 -1.0156 62.7794 -1.2188 L62.7794 -0.2969 Q62.2794 -0.0781 61.795 0.0156 Q61.3263 0.125 60.6544 0.125 Q59.7482 0.125 59.045 -0.25 Q58.3419 -0.625 57.9513 -1.3594 Q57.5607 -2.0938 57.5607 -3.1719 Q57.5607 -4.2188 57.92 -4.9688 Q58.2794 -5.7344 58.92 -6.1406 Q59.5607 -6.5469 60.4044 -6.5469 ZM60.3888 -5.6875 Q59.6388 -5.6875 59.2013 -5.2031 Q58.7638 -4.7188 58.6857 -3.8594 L61.9513 -3.8594 Q61.9513 -4.6719 61.5763 -5.1719 Q61.2013 -5.6875 60.3888 -5.6875 ZM67.6881 -6.5469 Q67.8756 -6.5469 68.0787 -6.5312 Q68.2975 -6.5156 68.4537 -6.4844 L68.3131 -5.5156 Q68.1568 -5.5469 67.9693 -5.5625 Q67.7818 -5.5938 67.6256 -5.5938 Q67.1256 -5.5938 66.6881 -5.3125 Q66.2662 -5.0469 66.0006 -4.5625 Q65.7506 -4.0781 65.7506 -3.4375 L65.7506 0 L64.6881 0 L64.6881 -6.4375 L65.5631 -6.4375 L65.6725 -5.25 L65.7193 -5.25 Q66.0318 -5.7812 66.5162 -6.1562 Q67.0162 -6.5469 67.6881 -6.5469 ZM69.2222 -2.3281 L73.7535 -4.2188 L69.2222 -6.3594 L69.2222 -7.2969 L74.8785 -4.4688 L74.8785 -3.875 L69.2222 -1.3906 L69.2222 -2.3281 ZM76.0863 -2.3281 L80.6175 -4.2188 L76.0863 -6.3594 L76.0863 -7.2969 L81.7425 -4.4688 L81.7425 -3.875 L76.0863 -1.3906 L76.0863 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath43);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(387.8343,-745.9725)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 ZM58.5511 -7.1719 Q57.5043 -7.1719 56.9418 -6.3906 Q56.3949 -5.6094 56.3949 -4.2656 Q56.3949 -2.8906 56.9105 -2.1406 Q57.4261 -1.3906 58.5511 -1.3906 Q59.0824 -1.3906 59.598 -1.5 Q60.1136 -1.625 60.7386 -1.8438 L60.7386 -0.3281 Q60.1761 -0.0938 59.6136 0.0156 Q59.0668 0.125 58.3793 0.125 Q57.0668 0.125 56.2074 -0.4219 Q55.348 -0.9688 54.9418 -1.9531 Q54.5355 -2.9531 54.5355 -4.2656 Q54.5355 -5.5625 54.9886 -6.5625 Q55.4574 -7.5625 56.348 -8.125 Q57.2543 -8.6875 58.5511 -8.6875 Q59.1918 -8.6875 59.8324 -8.5156 Q60.473 -8.3594 61.0511 -8.0938 L60.473 -6.6094 Q59.9886 -6.8438 59.5043 -7 Q59.0199 -7.1719 58.5511 -7.1719 ZM68.3671 -3.2812 Q68.3671 -1.6562 67.5077 -0.7656 Q66.6483 0.125 65.1796 0.125 Q64.2577 0.125 63.5389 -0.2656 Q62.8358 -0.6719 62.4296 -1.4375 Q62.0233 -2.2031 62.0233 -3.2812 Q62.0233 -4.9219 62.8671 -5.7969 Q63.7264 -6.6719 65.2108 -6.6719 Q66.1327 -6.6719 66.8358 -6.2656 Q67.5546 -5.875 67.9608 -5.125 Q68.3671 -4.375 68.3671 -3.2812 ZM63.8358 -3.2812 Q63.8358 -2.3125 64.1483 -1.8125 Q64.4764 -1.3125 65.1952 -1.3125 Q65.8983 -1.3125 66.2108 -1.8125 Q66.5389 -2.3125 66.5389 -3.2812 Q66.5389 -4.2656 66.2108 -4.75 Q65.8983 -5.2344 65.1796 -5.2344 Q64.4764 -5.2344 64.1483 -4.75 Q63.8358 -4.2656 63.8358 -3.2812 ZM73.5607 -6.6719 Q74.6232 -6.6719 75.2482 -6.0938 Q75.8889 -5.5312 75.8889 -4.2656 L75.8889 0 L74.1076 0 L74.1076 -3.8281 Q74.1076 -4.5312 73.842 -4.8906 Q73.592 -5.25 73.0451 -5.25 Q72.2326 -5.25 71.9201 -4.6875 Q71.6232 -4.125 71.6232 -3.0781 L71.6232 0 L69.842 0 L69.842 -6.5469 L71.2014 -6.5469 L71.4514 -5.7188 L71.5451 -5.7188 Q71.8576 -6.2188 72.4045 -6.4375 Q72.9514 -6.6719 73.5607 -6.6719 ZM80.4917 -1.3125 Q80.7885 -1.3125 81.0542 -1.3594 Q81.3354 -1.4219 81.6167 -1.5156 L81.6167 -0.1875 Q81.3198 -0.0625 80.8979 0.0312 Q80.476 0.125 79.976 0.125 Q79.3823 0.125 78.9135 -0.0625 Q78.4604 -0.2656 78.1792 -0.7344 Q77.9135 -1.2188 77.9135 -2.0469 L77.9135 -5.2031 L77.0698 -5.2031 L77.0698 -5.9688 L78.0542 -6.5625 L78.5698 -7.9375 L79.7104 -7.9375 L79.7104 -6.5469 L81.5385 -6.5469 L81.5385 -5.2031 L79.7104 -5.2031 L79.7104 -2.0469 Q79.7104 -1.6875 79.9135 -1.5 Q80.1323 -1.3125 80.4917 -1.3125 ZM86.5903 -6.6719 Q86.731 -6.6719 86.9028 -6.6562 Q87.0903 -6.6406 87.1997 -6.625 L87.0591 -4.9375 Q86.981 -4.9688 86.8091 -4.9844 Q86.6528 -5 86.5278 -5 Q86.0747 -5 85.6528 -4.8438 Q85.231 -4.6875 84.9653 -4.3125 Q84.7153 -3.9531 84.7153 -3.3438 L84.7153 0 L82.9341 0 L82.9341 -6.5469 L84.2935 -6.5469 L84.5591 -5.4531 L84.6372 -5.4531 Q84.9185 -5.9531 85.4185 -6.3125 Q85.9341 -6.6719 86.5903 -6.6719 ZM94.3353 -3.2812 Q94.3353 -1.6562 93.4759 -0.7656 Q92.6165 0.125 91.1478 0.125 Q90.2259 0.125 89.5071 -0.2656 Q88.804 -0.6719 88.3978 -1.4375 Q87.9915 -2.2031 87.9915 -3.2812 Q87.9915 -4.9219 88.8353 -5.7969 Q89.6946 -6.6719 91.179 -6.6719 Q92.1009 -6.6719 92.804 -6.2656 Q93.5228 -5.875 93.929 -5.125 Q94.3353 -4.375 94.3353 -3.2812 ZM89.804 -3.2812 Q89.804 -2.3125 90.1165 -1.8125 Q90.4446 -1.3125 91.1634 -1.3125 Q91.8665 -1.3125 92.179 -1.8125 Q92.5071 -2.3125 92.5071 -3.2812 Q92.5071 -4.2656 92.179 -4.75 Q91.8665 -5.2344 91.1478 -5.2344 Q90.4446 -5.2344 90.1165 -4.75 Q89.804 -4.2656 89.804 -3.2812 ZM97.5914 0 L95.8102 0 L95.8102 -9.125 L97.5914 -9.125 L97.5914 0 ZM101.2514 0 L99.4702 0 L99.4702 -9.125 L101.2514 -9.125 L101.2514 0 ZM105.8333 -6.6719 Q107.1771 -6.6719 107.974 -5.8906 Q108.7708 -5.125 108.7708 -3.7031 L108.7708 -2.8281 L104.5521 -2.8281 Q104.5677 -2.0781 104.9896 -1.6406 Q105.4271 -1.2188 106.1771 -1.2188 Q106.8177 -1.2188 107.3333 -1.3438 Q107.849 -1.4688 108.3958 -1.7344 L108.3958 -0.3438 Q107.9115 -0.1094 107.3802 0 Q106.849 0.125 106.099 0.125 Q105.1146 0.125 104.349 -0.2344 Q103.599 -0.6094 103.1615 -1.3438 Q102.7396 -2.0938 102.7396 -3.2344 Q102.7396 -4.375 103.1146 -5.1406 Q103.5052 -5.9062 104.2083 -6.2812 Q104.9115 -6.6719 105.8333 -6.6719 ZM105.8333 -5.4062 Q105.3177 -5.4062 104.974 -5.0625 Q104.6458 -4.7344 104.5833 -4.0156 L107.0833 -4.0156 Q107.0833 -4.625 106.7708 -5.0156 Q106.474 -5.4062 105.8333 -5.4062 ZM113.8785 -6.6719 Q114.0191 -6.6719 114.191 -6.6562 Q114.3785 -6.6406 114.4879 -6.625 L114.3473 -4.9375 Q114.2691 -4.9688 114.0973 -4.9844 Q113.941 -5 113.816 -5 Q113.3629 -5 112.941 -4.8438 Q112.5191 -4.6875 112.2535 -4.3125 Q112.0035 -3.9531 112.0035 -3.3438 L112.0035 0 L110.2223 0 L110.2223 -6.5469 L111.5816 -6.5469 L111.8473 -5.4531 L111.9254 -5.4531 Q112.2066 -5.9531 112.7066 -6.3125 Q113.2223 -6.6719 113.8785 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath44);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="-110.3024" x2="-110.3024" y1="-698.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-819.2005"
+      /><line x1="-110.3024" x2="445.2007" y1="-819.2005" style="fill:none; clip-path:url(#clipPath2);" y2="-819.2005"
+      /><line x1="445.2007" x2="445.2007" y1="-819.2005" style="fill:none; clip-path:url(#clipPath2);" y2="-780.3166"
+      /><line x1="-110.3024" x2="-116.3024" y1="-698.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-708.6828"
+      /><line x1="-110.3024" x2="-104.3024" y1="-698.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-708.6828"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="465.1224" y="-97.548" width="79.5204" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="465.1224" y="-97.548" width="79.5204" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(475.1224,-79.548)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM24.6055 -6.5469 Q25.7618 -6.5469 26.3399 -5.9844 Q26.9336 -5.4375 26.9336 -4.1875 L26.9336 0 L25.9024 0 L25.9024 -4.1094 Q25.9024 -5.6562 24.4493 -5.6562 Q23.3868 -5.6562 22.9805 -5.0625 Q22.5743 -4.4688 22.5743 -3.3438 L22.5743 0 L21.5118 0 L21.5118 -6.4375 L22.3711 -6.4375 L22.5274 -5.5625 L22.5899 -5.5625 Q22.9024 -6.0625 23.4493 -6.2969 Q23.9961 -6.5469 24.6055 -6.5469 ZM31.0841 -0.75 Q31.3184 -0.75 31.5684 -0.7812 Q31.8184 -0.8281 31.9747 -0.875 L31.9747 -0.0781 Q31.8184 0.0156 31.5059 0.0625 Q31.1934 0.125 30.8966 0.125 Q30.3966 0.125 29.9591 -0.0469 Q29.5372 -0.2344 29.2716 -0.6562 Q29.0216 -1.0938 29.0216 -1.875 L29.0216 -5.6094 L28.0997 -5.6094 L28.0997 -6.125 L29.0216 -6.5469 L29.4434 -7.9062 L30.0684 -7.9062 L30.0684 -6.4375 L31.9278 -6.4375 L31.9278 -5.6094 L30.0684 -5.6094 L30.0684 -1.8906 Q30.0684 -1.3125 30.3497 -1.0312 Q30.6309 -0.75 31.0841 -0.75 ZM33.8067 -8.8438 Q34.0411 -8.8438 34.2286 -8.6719 Q34.4161 -8.5156 34.4161 -8.1719 Q34.4161 -7.8438 34.2286 -7.6719 Q34.0411 -7.5 33.8067 -7.5 Q33.5411 -7.5 33.3536 -7.6719 Q33.1817 -7.8438 33.1817 -8.1719 Q33.1817 -8.5156 33.3536 -8.6719 Q33.5411 -8.8438 33.8067 -8.8438 ZM34.3223 -6.4375 L34.3223 0 L33.2598 0 L33.2598 -6.4375 L34.3223 -6.4375 ZM38.5121 -0.75 Q38.7465 -0.75 38.9965 -0.7812 Q39.2465 -0.8281 39.4027 -0.875 L39.4027 -0.0781 Q39.2465 0.0156 38.934 0.0625 Q38.6215 0.125 38.3246 0.125 Q37.8246 0.125 37.3871 -0.0469 Q36.9652 -0.2344 36.6996 -0.6562 Q36.4496 -1.0938 36.4496 -1.875 L36.4496 -5.6094 L35.5277 -5.6094 L35.5277 -6.125 L36.4496 -6.5469 L36.8715 -7.9062 L37.4965 -7.9062 L37.4965 -6.4375 L39.3559 -6.4375 L39.3559 -5.6094 L37.4965 -5.6094 L37.4965 -1.8906 Q37.4965 -1.3125 37.7777 -1.0312 Q38.059 -0.75 38.5121 -0.75 ZM39.6879 -6.4375 L40.8129 -6.4375 L42.2035 -2.7656 Q42.391 -2.2969 42.5316 -1.8594 Q42.6723 -1.4219 42.7504 -1.0156 L42.7973 -1.0156 Q42.8598 -1.3125 43.016 -1.7969 Q43.1723 -2.2969 43.3441 -2.7812 L44.6566 -6.4375 L45.7973 -6.4375 L43.016 0.8906 Q42.6879 1.7969 42.141 2.3281 Q41.6098 2.875 40.6879 2.875 Q40.391 2.875 40.1723 2.8438 Q39.9535 2.8125 39.7973 2.7812 L39.7973 1.9375 Q39.9379 1.9688 40.1254 1.9844 Q40.3129 2.0156 40.516 2.0156 Q41.0629 2.0156 41.4066 1.7031 Q41.7504 1.3906 41.9379 0.875 L42.2816 0.0312 L39.6879 -6.4375 ZM46.3861 -2.3281 L50.9173 -4.2188 L46.3861 -6.3594 L46.3861 -7.2969 L52.0423 -4.4688 L52.0423 -3.875 L46.3861 -1.3906 L46.3861 -2.3281 ZM53.2501 -2.3281 L57.7814 -4.2188 L53.2501 -6.3594 L53.2501 -7.2969 L58.9064 -4.4688 L58.9064 -3.875 L53.2501 -1.3906 L53.2501 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath45);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(486.8826,-63.2039)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 Z" style="stroke:none; clip-path:url(#clipPath46);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="504.8826" x2="504.8826" y1="-97.548" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="504.8826" x2="130.7848" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="130.7848" x2="130.7848" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-499.1388"
+      /><line x1="504.8826" x2="498.8826" y1="-97.548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.9403"
+      /><line x1="504.8826" x2="510.8826" y1="-97.548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.9403"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="352.7262" y="-97.109" width="79.5204" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="352.7262" y="-97.109" width="79.5204" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(362.7262,-79.109)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM24.6055 -6.5469 Q25.7618 -6.5469 26.3399 -5.9844 Q26.9336 -5.4375 26.9336 -4.1875 L26.9336 0 L25.9024 0 L25.9024 -4.1094 Q25.9024 -5.6562 24.4493 -5.6562 Q23.3868 -5.6562 22.9805 -5.0625 Q22.5743 -4.4688 22.5743 -3.3438 L22.5743 0 L21.5118 0 L21.5118 -6.4375 L22.3711 -6.4375 L22.5274 -5.5625 L22.5899 -5.5625 Q22.9024 -6.0625 23.4493 -6.2969 Q23.9961 -6.5469 24.6055 -6.5469 ZM31.0841 -0.75 Q31.3184 -0.75 31.5684 -0.7812 Q31.8184 -0.8281 31.9747 -0.875 L31.9747 -0.0781 Q31.8184 0.0156 31.5059 0.0625 Q31.1934 0.125 30.8966 0.125 Q30.3966 0.125 29.9591 -0.0469 Q29.5372 -0.2344 29.2716 -0.6562 Q29.0216 -1.0938 29.0216 -1.875 L29.0216 -5.6094 L28.0997 -5.6094 L28.0997 -6.125 L29.0216 -6.5469 L29.4434 -7.9062 L30.0684 -7.9062 L30.0684 -6.4375 L31.9278 -6.4375 L31.9278 -5.6094 L30.0684 -5.6094 L30.0684 -1.8906 Q30.0684 -1.3125 30.3497 -1.0312 Q30.6309 -0.75 31.0841 -0.75 ZM33.8067 -8.8438 Q34.0411 -8.8438 34.2286 -8.6719 Q34.4161 -8.5156 34.4161 -8.1719 Q34.4161 -7.8438 34.2286 -7.6719 Q34.0411 -7.5 33.8067 -7.5 Q33.5411 -7.5 33.3536 -7.6719 Q33.1817 -7.8438 33.1817 -8.1719 Q33.1817 -8.5156 33.3536 -8.6719 Q33.5411 -8.8438 33.8067 -8.8438 ZM34.3223 -6.4375 L34.3223 0 L33.2598 0 L33.2598 -6.4375 L34.3223 -6.4375 ZM38.5121 -0.75 Q38.7465 -0.75 38.9965 -0.7812 Q39.2465 -0.8281 39.4027 -0.875 L39.4027 -0.0781 Q39.2465 0.0156 38.934 0.0625 Q38.6215 0.125 38.3246 0.125 Q37.8246 0.125 37.3871 -0.0469 Q36.9652 -0.2344 36.6996 -0.6562 Q36.4496 -1.0938 36.4496 -1.875 L36.4496 -5.6094 L35.5277 -5.6094 L35.5277 -6.125 L36.4496 -6.5469 L36.8715 -7.9062 L37.4965 -7.9062 L37.4965 -6.4375 L39.3559 -6.4375 L39.3559 -5.6094 L37.4965 -5.6094 L37.4965 -1.8906 Q37.4965 -1.3125 37.7777 -1.0312 Q38.059 -0.75 38.5121 -0.75 ZM39.6879 -6.4375 L40.8129 -6.4375 L42.2035 -2.7656 Q42.391 -2.2969 42.5316 -1.8594 Q42.6723 -1.4219 42.7504 -1.0156 L42.7973 -1.0156 Q42.8598 -1.3125 43.016 -1.7969 Q43.1723 -2.2969 43.3441 -2.7812 L44.6566 -6.4375 L45.7973 -6.4375 L43.016 0.8906 Q42.6879 1.7969 42.141 2.3281 Q41.6098 2.875 40.6879 2.875 Q40.391 2.875 40.1723 2.8438 Q39.9535 2.8125 39.7973 2.7812 L39.7973 1.9375 Q39.9379 1.9688 40.1254 1.9844 Q40.3129 2.0156 40.516 2.0156 Q41.0629 2.0156 41.4066 1.7031 Q41.7504 1.3906 41.9379 0.875 L42.2816 0.0312 L39.6879 -6.4375 ZM46.3861 -2.3281 L50.9173 -4.2188 L46.3861 -6.3594 L46.3861 -7.2969 L52.0423 -4.4688 L52.0423 -3.875 L46.3861 -1.3906 L46.3861 -2.3281 ZM53.2501 -2.3281 L57.7814 -4.2188 L53.2501 -6.3594 L53.2501 -7.2969 L58.9064 -4.4688 L58.9064 -3.875 L53.2501 -1.3906 L53.2501 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath47);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(378.6983,-62.7649)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath48);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="394.8539" x2="394.8539" y1="-97.109" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="394.8539" x2="130.7848" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="130.7848" x2="130.7848" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-499.1388"
+      /><line x1="394.8539" x2="388.8539" y1="-97.109" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.5014"
+      /><line x1="394.8539" x2="400.8539" y1="-97.109" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.5014"
+      /><line x1="352.7262" x2="237.8398" y1="-76.7649" style="fill:none; clip-path:url(#clipPath2);" y2="-76.7649"
+      /><line x1="237.8398" x2="237.8398" y1="-76.7649" style="fill:none; clip-path:url(#clipPath2);" y2="-108.4421"
+      /><line x1="237.8398" x2="127.3651" y1="-108.4421" style="fill:none; clip-path:url(#clipPath2);" y2="-108.4421"
+      /><line x1="352.7262" x2="342.3339" y1="-76.7649" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-70.7649"
+      /><line x1="352.7262" x2="342.3339" y1="-76.7649" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-82.7649"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="11.2908" y="-38.7619" width="120" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="11.2908" y="-38.7619" width="120" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(32.2908,-20.7619)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath49);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(21.2908,-4.4178)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 ZM38.7264 -8.5625 Q40.4764 -8.5625 41.3045 -7.9219 Q42.1482 -7.2969 42.1482 -6 Q42.1482 -5.4062 41.9139 -4.9688 Q41.6951 -4.5312 41.3201 -4.2188 Q40.9607 -3.9219 40.5545 -3.7344 L43.0701 0 L41.0545 0 L39.0076 -3.2812 L38.0389 -3.2812 L38.0389 0 L36.2264 0 L36.2264 -8.5625 L38.7264 -8.5625 ZM38.5857 -7.0781 L38.0389 -7.0781 L38.0389 -4.7656 L38.6326 -4.7656 Q39.5232 -4.7656 39.9139 -5.0625 Q40.3045 -5.3594 40.3045 -5.9531 Q40.3045 -6.5625 39.8826 -6.8125 Q39.4764 -7.0781 38.5857 -7.0781 ZM46.7089 -6.6719 Q48.0527 -6.6719 48.8495 -5.8906 Q49.6464 -5.125 49.6464 -3.7031 L49.6464 -2.8281 L45.4277 -2.8281 Q45.4433 -2.0781 45.8652 -1.6406 Q46.3027 -1.2188 47.0527 -1.2188 Q47.6933 -1.2188 48.2089 -1.3438 Q48.7245 -1.4688 49.2714 -1.7344 L49.2714 -0.3438 Q48.787 -0.1094 48.2558 0 Q47.7245 0.125 46.9745 0.125 Q45.9902 0.125 45.2245 -0.2344 Q44.4745 -0.6094 44.037 -1.3438 Q43.6152 -2.0938 43.6152 -3.2344 Q43.6152 -4.375 43.9902 -5.1406 Q44.3808 -5.9062 45.0839 -6.2812 Q45.787 -6.6719 46.7089 -6.6719 ZM46.7089 -5.4062 Q46.1933 -5.4062 45.8495 -5.0625 Q45.5214 -4.7344 45.4589 -4.0156 L47.9589 -4.0156 Q47.9589 -4.625 47.6464 -5.0156 Q47.3495 -5.4062 46.7089 -5.4062 ZM54.7385 -6.6719 Q55.8479 -6.6719 56.5354 -5.8125 Q57.2229 -4.9531 57.2229 -3.2812 Q57.2229 -1.625 56.5041 -0.75 Q55.801 0.125 54.6916 0.125 Q53.9885 0.125 53.5666 -0.125 Q53.1447 -0.3906 52.8791 -0.7188 L52.7854 -0.7188 Q52.8791 -0.2188 52.8791 0.2344 L52.8791 2.875 L51.0979 2.875 L51.0979 -6.5469 L52.551 -6.5469 L52.801 -5.7031 L52.8791 -5.7031 Q53.1447 -6.0938 53.5822 -6.375 Q54.0354 -6.6719 54.7385 -6.6719 ZM54.176 -5.25 Q53.4729 -5.25 53.1916 -4.8125 Q52.9104 -4.375 52.8791 -3.4844 L52.8791 -3.2969 Q52.8791 -2.3594 53.1604 -1.8438 Q53.4416 -1.3281 54.1916 -1.3281 Q54.801 -1.3281 55.0979 -1.8438 Q55.3947 -2.3594 55.3947 -3.3125 Q55.3947 -5.25 54.176 -5.25 ZM64.647 -3.2812 Q64.647 -1.6562 63.7877 -0.7656 Q62.9283 0.125 61.4595 0.125 Q60.5377 0.125 59.8189 -0.2656 Q59.1158 -0.6719 58.7095 -1.4375 Q58.3033 -2.2031 58.3033 -3.2812 Q58.3033 -4.9219 59.147 -5.7969 Q60.0064 -6.6719 61.4908 -6.6719 Q62.4127 -6.6719 63.1158 -6.2656 Q63.8345 -5.875 64.2408 -5.125 Q64.647 -4.375 64.647 -3.2812 ZM60.1158 -3.2812 Q60.1158 -2.3125 60.4283 -1.8125 Q60.7564 -1.3125 61.4752 -1.3125 Q62.1783 -1.3125 62.4908 -1.8125 Q62.8189 -2.3125 62.8189 -3.2812 Q62.8189 -4.2656 62.4908 -4.75 Q62.1783 -5.2344 61.4595 -5.2344 Q60.7564 -5.2344 60.4283 -4.75 Q60.1158 -4.2656 60.1158 -3.2812 ZM70.7001 -1.9375 Q70.7001 -0.9531 69.997 -0.4062 Q69.2938 0.125 67.9032 0.125 Q67.2157 0.125 66.7157 0.0312 Q66.2313 -0.0625 65.7313 -0.2656 L65.7313 -1.7344 Q66.2626 -1.5 66.872 -1.3438 Q67.4813 -1.1875 67.9501 -1.1875 Q68.4813 -1.1875 68.7001 -1.3438 Q68.9345 -1.5 68.9345 -1.75 Q68.9345 -1.9219 68.8407 -2.0469 Q68.747 -2.1875 68.4501 -2.3438 Q68.1532 -2.5156 67.5126 -2.7812 Q66.9032 -3.0469 66.497 -3.2969 Q66.1063 -3.5625 65.9188 -3.9219 Q65.7313 -4.2969 65.7313 -4.8438 Q65.7313 -5.7656 66.4345 -6.2188 Q67.1376 -6.6719 68.3095 -6.6719 Q68.9345 -6.6719 69.4813 -6.5469 Q70.0282 -6.4375 70.622 -6.1562 L70.0751 -4.875 Q69.6063 -5.0781 69.1688 -5.2188 Q68.7313 -5.3594 68.2938 -5.3594 Q67.497 -5.3594 67.497 -4.9219 Q67.497 -4.7656 67.5907 -4.6406 Q67.7001 -4.5156 67.997 -4.3594 Q68.2938 -4.2188 68.872 -3.9844 Q69.4345 -3.75 69.8407 -3.5 Q70.247 -3.2656 70.4657 -2.8906 Q70.7001 -2.5312 70.7001 -1.9375 ZM72.9922 -9.125 Q73.3829 -9.125 73.6641 -8.9375 Q73.961 -8.75 73.961 -8.25 Q73.961 -7.75 73.6641 -7.5625 Q73.3829 -7.375 72.9922 -7.375 Q72.5704 -7.375 72.2891 -7.5625 Q72.0079 -7.75 72.0079 -8.25 Q72.0079 -8.75 72.2891 -8.9375 Q72.5704 -9.125 72.9922 -9.125 ZM73.8672 -6.5469 L73.8672 0 L72.086 0 L72.086 -6.5469 L73.8672 -6.5469 ZM78.5116 -1.3125 Q78.8085 -1.3125 79.0741 -1.3594 Q79.3554 -1.4219 79.6366 -1.5156 L79.6366 -0.1875 Q79.3398 -0.0625 78.9179 0.0312 Q78.496 0.125 77.996 0.125 Q77.4023 0.125 76.9335 -0.0625 Q76.4804 -0.2656 76.1991 -0.7344 Q75.9335 -1.2188 75.9335 -2.0469 L75.9335 -5.2031 L75.0898 -5.2031 L75.0898 -5.9688 L76.0741 -6.5625 L76.5898 -7.9375 L77.7304 -7.9375 L77.7304 -6.5469 L79.5585 -6.5469 L79.5585 -5.2031 L77.7304 -5.2031 L77.7304 -2.0469 Q77.7304 -1.6875 77.9335 -1.5 Q78.1523 -1.3125 78.5116 -1.3125 ZM86.9072 -3.2812 Q86.9072 -1.6562 86.0478 -0.7656 Q85.1884 0.125 83.7197 0.125 Q82.7978 0.125 82.0791 -0.2656 Q81.3759 -0.6719 80.9697 -1.4375 Q80.5634 -2.2031 80.5634 -3.2812 Q80.5634 -4.9219 81.4072 -5.7969 Q82.2666 -6.6719 83.7509 -6.6719 Q84.6728 -6.6719 85.3759 -6.2656 Q86.0947 -5.875 86.5009 -5.125 Q86.9072 -4.375 86.9072 -3.2812 ZM82.3759 -3.2812 Q82.3759 -2.3125 82.6884 -1.8125 Q83.0166 -1.3125 83.7353 -1.3125 Q84.4384 -1.3125 84.7509 -1.8125 Q85.0791 -2.3125 85.0791 -3.2812 Q85.0791 -4.2656 84.7509 -4.75 Q84.4384 -5.2344 83.7197 -5.2344 Q83.0166 -5.2344 82.6884 -4.75 Q82.3759 -4.2656 82.3759 -3.2812 ZM92.0384 -6.6719 Q92.179 -6.6719 92.3509 -6.6562 Q92.5384 -6.6406 92.6477 -6.625 L92.5071 -4.9375 Q92.429 -4.9688 92.2571 -4.9844 Q92.1009 -5 91.9759 -5 Q91.5227 -5 91.1009 -4.8438 Q90.679 -4.6875 90.4134 -4.3125 Q90.1634 -3.9531 90.1634 -3.3438 L90.1634 0 L88.3821 0 L88.3821 -6.5469 L89.7415 -6.5469 L90.0071 -5.4531 L90.0852 -5.4531 Q90.3665 -5.9531 90.8665 -6.3125 Q91.3821 -6.6719 92.0384 -6.6719 ZM92.8927 -6.5469 L94.8458 -6.5469 L96.0802 -2.875 Q96.1739 -2.6094 96.2208 -2.3281 Q96.2833 -2.0469 96.2989 -1.7344 L96.3302 -1.7344 Q96.377 -2.0469 96.4395 -2.3281 Q96.502 -2.6094 96.5958 -2.875 L97.7989 -6.5469 L99.7208 -6.5469 L96.9552 0.8438 Q96.5802 1.8594 95.8614 2.3594 Q95.1427 2.875 94.2052 2.875 Q93.9083 2.875 93.6895 2.8438 Q93.4708 2.8125 93.2989 2.7812 L93.2989 1.375 Q93.4395 1.3906 93.6114 1.4062 Q93.7989 1.4375 94.002 1.4375 Q94.5802 1.4375 94.9083 1.0938 Q95.2364 0.75 95.3927 0.2812 L95.502 -0.0469 L92.8927 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath50);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="231.6676" y="-540.0107" width="99" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="231.6676" y="-540.0107" width="99" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(247.1676,-522.0107)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath51);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(241.6676,-505.6666)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 ZM41.2732 -2.375 Q41.2732 -1.2344 40.4451 -0.5469 Q39.6326 0.125 38.117 0.125 Q36.7732 0.125 35.6951 -0.3906 L35.6951 -2.0938 Q36.3045 -1.8281 36.9607 -1.5938 Q37.617 -1.375 38.2732 -1.375 Q38.9451 -1.375 39.2264 -1.625 Q39.5076 -1.8906 39.5076 -2.2969 Q39.5076 -2.6094 39.2732 -2.8438 Q39.0545 -3.0781 38.6795 -3.2656 Q38.3201 -3.4688 37.8357 -3.7031 Q37.5389 -3.8438 37.1795 -4.0312 Q36.8357 -4.2344 36.5232 -4.5312 Q36.2107 -4.8281 35.992 -5.2344 Q35.7889 -5.6562 35.7889 -6.25 Q35.7889 -7.4062 36.5701 -8.0469 Q37.3514 -8.6875 38.6951 -8.6875 Q39.367 -8.6875 39.9764 -8.5312 Q40.5857 -8.375 41.242 -8.0938 L40.6639 -6.6719 Q40.0701 -6.9062 39.6014 -7.0312 Q39.1326 -7.1719 38.6326 -7.1719 Q38.117 -7.1719 37.8357 -6.9375 Q37.5701 -6.7031 37.5701 -6.3125 Q37.5701 -5.8594 37.9764 -5.5938 Q38.3826 -5.3281 39.1951 -4.9375 Q39.8514 -4.625 40.3045 -4.2812 Q40.7732 -3.9531 41.0232 -3.5 Q41.2732 -3.0469 41.2732 -2.375 ZM45.4009 -6.6719 Q46.7447 -6.6719 47.5415 -5.8906 Q48.3384 -5.125 48.3384 -3.7031 L48.3384 -2.8281 L44.1197 -2.8281 Q44.1353 -2.0781 44.5572 -1.6406 Q44.9947 -1.2188 45.7447 -1.2188 Q46.3853 -1.2188 46.9009 -1.3438 Q47.4165 -1.4688 47.9634 -1.7344 L47.9634 -0.3438 Q47.479 -0.1094 46.9478 0 Q46.4165 0.125 45.6665 0.125 Q44.6822 0.125 43.9165 -0.2344 Q43.1665 -0.6094 42.729 -1.3438 Q42.3072 -2.0938 42.3072 -3.2344 Q42.3072 -4.375 42.6822 -5.1406 Q43.0728 -5.9062 43.7759 -6.2812 Q44.479 -6.6719 45.4009 -6.6719 ZM45.4009 -5.4062 Q44.8853 -5.4062 44.5415 -5.0625 Q44.2134 -4.7344 44.1509 -4.0156 L46.6509 -4.0156 Q46.6509 -4.625 46.3384 -5.0156 Q46.0415 -5.4062 45.4009 -5.4062 ZM53.4461 -6.6719 Q53.5867 -6.6719 53.7586 -6.6562 Q53.9461 -6.6406 54.0555 -6.625 L53.9148 -4.9375 Q53.8367 -4.9688 53.6648 -4.9844 Q53.5086 -5 53.3836 -5 Q52.9305 -5 52.5086 -4.8438 Q52.0867 -4.6875 51.8211 -4.3125 Q51.5711 -3.9531 51.5711 -3.3438 L51.5711 0 L49.7898 0 L49.7898 -6.5469 L51.1492 -6.5469 L51.4148 -5.4531 L51.493 -5.4531 Q51.7742 -5.9531 52.2742 -6.3125 Q52.7898 -6.6719 53.4461 -6.6719 ZM56.8004 0 L54.3004 -6.5469 L56.1754 -6.5469 L57.4254 -2.8125 Q57.5348 -2.4844 57.5973 -2.125 Q57.6754 -1.7656 57.691 -1.4688 L57.7379 -1.4688 Q57.7691 -2.125 58.0035 -2.8125 L59.2535 -6.5469 L61.1285 -6.5469 L58.6285 0 L56.8004 0 ZM62.9722 -9.125 Q63.3628 -9.125 63.6441 -8.9375 Q63.9409 -8.75 63.9409 -8.25 Q63.9409 -7.75 63.6441 -7.5625 Q63.3628 -7.375 62.9722 -7.375 Q62.5503 -7.375 62.2691 -7.5625 Q61.9878 -7.75 61.9878 -8.25 Q61.9878 -8.75 62.2691 -8.9375 Q62.5503 -9.125 62.9722 -9.125 ZM63.8472 -6.5469 L63.8472 0 L62.0659 0 L62.0659 -6.5469 L63.8472 -6.5469 ZM68.3822 0.125 Q66.9291 0.125 66.1322 -0.6875 Q65.3353 -1.5 65.3353 -3.2344 Q65.3353 -4.4375 65.7416 -5.1875 Q66.1478 -5.9531 66.8666 -6.3125 Q67.601 -6.6719 68.5385 -6.6719 Q69.2103 -6.6719 69.7103 -6.5312 Q70.2103 -6.4062 70.5853 -6.2344 L70.0541 -4.8438 Q69.6322 -5.0156 69.2572 -5.125 Q68.8978 -5.2344 68.5385 -5.2344 Q67.1478 -5.2344 67.1478 -3.25 Q67.1478 -2.2656 67.5072 -1.7969 Q67.8822 -1.3281 68.5385 -1.3281 Q69.101 -1.3281 69.5385 -1.4688 Q69.976 -1.625 70.3822 -1.8906 L70.3822 -0.375 Q69.976 -0.1094 69.5228 0 Q69.0697 0.125 68.3822 0.125 ZM74.5971 -6.6719 Q75.9409 -6.6719 76.7377 -5.8906 Q77.5346 -5.125 77.5346 -3.7031 L77.5346 -2.8281 L73.3159 -2.8281 Q73.3315 -2.0781 73.7534 -1.6406 Q74.1909 -1.2188 74.9409 -1.2188 Q75.5815 -1.2188 76.0971 -1.3438 Q76.6127 -1.4688 77.1596 -1.7344 L77.1596 -0.3438 Q76.6752 -0.1094 76.144 0 Q75.6127 0.125 74.8627 0.125 Q73.8784 0.125 73.1127 -0.2344 Q72.3627 -0.6094 71.9252 -1.3438 Q71.5034 -2.0938 71.5034 -3.2344 Q71.5034 -4.375 71.8784 -5.1406 Q72.269 -5.9062 72.9721 -6.2812 Q73.6752 -6.6719 74.5971 -6.6719 ZM74.5971 -5.4062 Q74.0815 -5.4062 73.7377 -5.0625 Q73.4096 -4.7344 73.3471 -4.0156 L75.8471 -4.0156 Q75.8471 -4.625 75.5346 -5.0156 Q75.2377 -5.4062 74.5971 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath52);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="919.7039" y="-556.8982" width="123.7047" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="919.7039" y="-556.8982" width="123.7047" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(929.7039,-538.8982)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM30.8576 -6.5469 Q32.0138 -6.5469 32.5919 -5.9844 Q33.1857 -5.4375 33.1857 -4.1875 L33.1857 0 L32.1544 0 L32.1544 -4.1094 Q32.1544 -5.6562 30.7013 -5.6562 Q29.6388 -5.6562 29.2326 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1544 -6.0625 29.7013 -6.2969 Q30.2482 -6.5469 30.8576 -6.5469 ZM38.1486 -5.6094 L36.5236 -5.6094 L36.5236 0 L35.4767 0 L35.4767 -5.6094 L34.3517 -5.6094 L34.3517 -6.1094 L35.4767 -6.4688 L35.4767 -6.8438 Q35.4767 -8.0938 36.0236 -8.6406 Q36.5705 -9.1875 37.5549 -9.1875 Q37.9455 -9.1875 38.258 -9.1094 Q38.5861 -9.0469 38.8049 -8.9688 L38.5392 -8.1406 Q38.3361 -8.2031 38.0861 -8.25 Q37.8361 -8.3125 37.5705 -8.3125 Q37.0392 -8.3125 36.7736 -7.9531 Q36.5236 -7.6094 36.5236 -6.8594 L36.5236 -6.4375 L38.1486 -6.4375 L38.1486 -5.6094 ZM39.8548 -8.8438 Q40.0891 -8.8438 40.2766 -8.6719 Q40.4641 -8.5156 40.4641 -8.1719 Q40.4641 -7.8438 40.2766 -7.6719 Q40.0891 -7.5 39.8548 -7.5 Q39.5891 -7.5 39.4016 -7.6719 Q39.2298 -7.8438 39.2298 -8.1719 Q39.2298 -8.5156 39.4016 -8.6719 Q39.5891 -8.8438 39.8548 -8.8438 ZM40.3704 -6.4375 L40.3704 0 L39.3079 0 L39.3079 -6.4375 L40.3704 -6.4375 ZM44.6852 -6.5469 Q45.3258 -6.5469 45.8258 -6.3125 Q46.3414 -6.0781 46.7008 -5.5781 L46.7633 -5.5781 L46.9039 -6.4375 L47.7477 -6.4375 L47.7477 0.1094 Q47.7477 1.4844 47.0445 2.1719 Q46.3414 2.875 44.8727 2.875 Q43.4508 2.875 42.5445 2.4688 L42.5445 1.5 Q43.4977 2 44.9352 2 Q45.7633 2 46.232 1.5156 Q46.7008 1.0312 46.7008 0.1875 L46.7008 -0.0625 Q46.7008 -0.2031 46.7164 -0.4688 Q46.732 -0.75 46.7477 -0.8594 L46.6852 -0.8594 Q46.0445 0.125 44.7008 0.125 Q43.4508 0.125 42.7477 -0.75 Q42.0445 -1.625 42.0445 -3.2031 Q42.0445 -4.7344 42.7477 -5.6406 Q43.4508 -6.5469 44.6852 -6.5469 ZM44.8258 -5.6562 Q44.0289 -5.6562 43.5758 -5.0156 Q43.1383 -4.375 43.1383 -3.1875 Q43.1383 -2 43.5758 -1.375 Q44.0133 -0.75 44.857 -0.75 Q45.8258 -0.75 46.2633 -1.2656 Q46.7164 -1.7812 46.7164 -2.9531 L46.7164 -3.2031 Q46.7164 -4.5312 46.2633 -5.0938 Q45.8102 -5.6562 44.8258 -5.6562 ZM55.159 -6.4375 L55.159 0 L54.2996 0 L54.1433 -0.8594 L54.0965 -0.8594 Q53.784 -0.3438 53.2215 -0.1094 Q52.6746 0.125 52.0496 0.125 Q50.8933 0.125 50.2996 -0.4375 Q49.7215 -1 49.7215 -2.2188 L49.7215 -6.4375 L50.784 -6.4375 L50.784 -2.2969 Q50.784 -0.75 52.2058 -0.75 Q53.284 -0.75 53.6902 -1.3438 Q54.1121 -1.9531 54.1121 -3.0781 L54.1121 -6.4375 L55.159 -6.4375 ZM60.2 -6.5469 Q60.3875 -6.5469 60.5906 -6.5312 Q60.8094 -6.5156 60.9656 -6.4844 L60.825 -5.5156 Q60.6688 -5.5469 60.4813 -5.5625 Q60.2938 -5.5938 60.1375 -5.5938 Q59.6375 -5.5938 59.2 -5.3125 Q58.7781 -5.0469 58.5125 -4.5625 Q58.2625 -4.0781 58.2625 -3.4375 L58.2625 0 L57.2 0 L57.2 -6.4375 L58.075 -6.4375 L58.1844 -5.25 L58.2313 -5.25 Q58.5438 -5.7812 59.0281 -6.1562 Q59.5281 -6.5469 60.2 -6.5469 ZM64.5936 -6.5469 Q65.7654 -6.5469 66.3279 -6.0312 Q66.9061 -5.5156 66.9061 -4.375 L66.9061 0 L66.1248 0 L65.9217 -0.9062 L65.8748 -0.9062 Q65.4529 -0.3906 64.9842 -0.125 Q64.5311 0.125 63.7186 0.125 Q62.8436 0.125 62.2654 -0.3281 Q61.6873 -0.7969 61.6873 -1.7812 Q61.6873 -2.75 62.4373 -3.2656 Q63.2029 -3.7969 64.7811 -3.8438 L65.8748 -3.875 L65.8748 -4.2656 Q65.8748 -5.0625 65.5154 -5.375 Q65.1717 -5.6875 64.5311 -5.6875 Q64.0311 -5.6875 63.5779 -5.5312 Q63.1248 -5.3906 62.7186 -5.2031 L62.4061 -5.9844 Q62.8279 -6.2188 63.3904 -6.375 Q63.9686 -6.5469 64.5936 -6.5469 ZM64.9061 -3.1094 Q63.7029 -3.0625 63.2342 -2.7188 Q62.7811 -2.3906 62.7811 -1.7812 Q62.7811 -1.2344 63.1092 -0.9844 Q63.4373 -0.7344 63.9529 -0.7344 Q64.7811 -0.7344 65.3123 -1.1719 Q65.8592 -1.625 65.8592 -2.5625 L65.8592 -3.1406 L64.9061 -3.1094 ZM71.0443 -0.75 Q71.2787 -0.75 71.5287 -0.7812 Q71.7787 -0.8281 71.935 -0.875 L71.935 -0.0781 Q71.7787 0.0156 71.4662 0.0625 Q71.1537 0.125 70.8568 0.125 Q70.3568 0.125 69.9193 -0.0469 Q69.4975 -0.2344 69.2318 -0.6562 Q68.9818 -1.0938 68.9818 -1.875 L68.9818 -5.6094 L68.06 -5.6094 L68.06 -6.125 L68.9818 -6.5469 L69.4037 -7.9062 L70.0287 -7.9062 L70.0287 -6.4375 L71.8881 -6.4375 L71.8881 -5.6094 L70.0287 -5.6094 L70.0287 -1.8906 Q70.0287 -1.3125 70.31 -1.0312 Q70.5912 -0.75 71.0443 -0.75 ZM73.767 -8.8438 Q74.0014 -8.8438 74.1889 -8.6719 Q74.3764 -8.5156 74.3764 -8.1719 Q74.3764 -7.8438 74.1889 -7.6719 Q74.0014 -7.5 73.767 -7.5 Q73.5014 -7.5 73.3139 -7.6719 Q73.142 -7.8438 73.142 -8.1719 Q73.142 -8.5156 73.3139 -8.6719 Q73.5014 -8.8438 73.767 -8.8438 ZM74.2826 -6.4375 L74.2826 0 L73.2201 0 L73.2201 -6.4375 L74.2826 -6.4375 ZM81.9099 -3.2344 Q81.9099 -1.625 81.0974 -0.75 Q80.2849 0.125 78.9099 0.125 Q78.0661 0.125 77.3943 -0.2656 Q76.7224 -0.6562 76.3318 -1.4062 Q75.9568 -2.1562 75.9568 -3.2344 Q75.9568 -4.8281 76.7536 -5.6875 Q77.5661 -6.5469 78.9411 -6.5469 Q79.8318 -6.5469 80.488 -6.1562 Q81.1599 -5.7656 81.5349 -5.0312 Q81.9099 -4.2969 81.9099 -3.2344 ZM77.0505 -3.2344 Q77.0505 -2.0938 77.5036 -1.4219 Q77.9568 -0.75 78.9411 -0.75 Q79.9099 -0.75 80.363 -1.4219 Q80.8161 -2.0938 80.8161 -3.2344 Q80.8161 -4.375 80.363 -5.0156 Q79.9099 -5.6562 78.9255 -5.6562 Q77.9411 -5.6562 77.488 -5.0156 Q77.0505 -4.375 77.0505 -3.2344 ZM86.67 -6.5469 Q87.8262 -6.5469 88.4043 -5.9844 Q88.9981 -5.4375 88.9981 -4.1875 L88.9981 0 L87.9668 0 L87.9668 -4.1094 Q87.9668 -5.6562 86.5137 -5.6562 Q85.4512 -5.6562 85.045 -5.0625 Q84.6387 -4.4688 84.6387 -3.3438 L84.6387 0 L83.5762 0 L83.5762 -6.4375 L84.4356 -6.4375 L84.5918 -5.5625 L84.6543 -5.5625 Q84.9668 -6.0625 85.5137 -6.2969 Q86.0606 -6.5469 86.67 -6.5469 ZM90.5704 -2.3281 L95.1016 -4.2188 L90.5704 -6.3594 L90.5704 -7.2969 L96.2266 -4.4688 L96.2266 -3.875 L90.5704 -1.3906 L90.5704 -2.3281 ZM97.4344 -2.3281 L101.9657 -4.2188 L97.4344 -6.3594 L97.4344 -7.2969 L103.0907 -4.4688 L103.0907 -3.875 L97.4344 -1.3906 L97.4344 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath53);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(937.0563,-522.5541)"
+    ><path d="M6.125 -2.375 Q6.125 -1.2344 5.2969 -0.5469 Q4.4844 0.125 2.9688 0.125 Q1.625 0.125 0.5469 -0.3906 L0.5469 -2.0938 Q1.1562 -1.8281 1.8125 -1.5938 Q2.4688 -1.375 3.125 -1.375 Q3.7969 -1.375 4.0781 -1.625 Q4.3594 -1.8906 4.3594 -2.2969 Q4.3594 -2.6094 4.125 -2.8438 Q3.9062 -3.0781 3.5312 -3.2656 Q3.1719 -3.4688 2.6875 -3.7031 Q2.3906 -3.8438 2.0312 -4.0312 Q1.6875 -4.2344 1.375 -4.5312 Q1.0625 -4.8281 0.8438 -5.2344 Q0.6406 -5.6562 0.6406 -6.25 Q0.6406 -7.4062 1.4219 -8.0469 Q2.2031 -8.6875 3.5469 -8.6875 Q4.2188 -8.6875 4.8281 -8.5312 Q5.4375 -8.375 6.0938 -8.0938 L5.5156 -6.6719 Q4.9219 -6.9062 4.4531 -7.0312 Q3.9844 -7.1719 3.4844 -7.1719 Q2.9688 -7.1719 2.6875 -6.9375 Q2.4219 -6.7031 2.4219 -6.3125 Q2.4219 -5.8594 2.8281 -5.5938 Q3.2344 -5.3281 4.0469 -4.9375 Q4.7031 -4.625 5.1562 -4.2812 Q5.625 -3.9531 5.875 -3.5 Q6.125 -3.0469 6.125 -2.375 ZM10.2527 -6.6719 Q11.5964 -6.6719 12.3933 -5.8906 Q13.1902 -5.125 13.1902 -3.7031 L13.1902 -2.8281 L8.9714 -2.8281 Q8.987 -2.0781 9.4089 -1.6406 Q9.8464 -1.2188 10.5964 -1.2188 Q11.237 -1.2188 11.7527 -1.3438 Q12.2683 -1.4688 12.8152 -1.7344 L12.8152 -0.3438 Q12.3308 -0.1094 11.7995 0 Q11.2683 0.125 10.5183 0.125 Q9.5339 0.125 8.7683 -0.2344 Q8.0183 -0.6094 7.5808 -1.3438 Q7.1589 -2.0938 7.1589 -3.2344 Q7.1589 -4.375 7.5339 -5.1406 Q7.9245 -5.9062 8.6277 -6.2812 Q9.3308 -6.6719 10.2527 -6.6719 ZM10.2527 -5.4062 Q9.737 -5.4062 9.3933 -5.0625 Q9.0652 -4.7344 9.0027 -4.0156 L11.5027 -4.0156 Q11.5027 -4.625 11.1902 -5.0156 Q10.8933 -5.4062 10.2527 -5.4062 ZM17.2979 0.125 Q15.8447 0.125 15.0479 -0.6875 Q14.251 -1.5 14.251 -3.2344 Q14.251 -4.4375 14.6572 -5.1875 Q15.0635 -5.9531 15.7822 -6.3125 Q16.5166 -6.6719 17.4541 -6.6719 Q18.126 -6.6719 18.626 -6.5312 Q19.126 -6.4062 19.501 -6.2344 L18.9697 -4.8438 Q18.5479 -5.0156 18.1729 -5.125 Q17.8135 -5.2344 17.4541 -5.2344 Q16.0635 -5.2344 16.0635 -3.25 Q16.0635 -2.2656 16.4229 -1.7969 Q16.7979 -1.3281 17.4541 -1.3281 Q18.0166 -1.3281 18.4541 -1.4688 Q18.8916 -1.625 19.2979 -1.8906 L19.2979 -0.375 Q18.8916 -0.1094 18.4385 0 Q17.9854 0.125 17.2979 0.125 ZM26.8253 -6.5469 L26.8253 0 L25.4503 0 L25.2159 -0.8438 L25.1221 -0.8438 Q24.8096 -0.3438 24.2628 -0.1094 Q23.7159 0.125 23.1065 0.125 Q22.044 0.125 21.4034 -0.4375 Q20.7784 -1.0156 20.7784 -2.2812 L20.7784 -6.5469 L22.5596 -6.5469 L22.5596 -2.7188 Q22.5596 -2.0312 22.8096 -1.6719 Q23.0596 -1.3125 23.6221 -1.3125 Q24.4346 -1.3125 24.7315 -1.8594 Q25.0284 -2.4219 25.0284 -3.4688 L25.0284 -6.5469 L26.8253 -6.5469 ZM32.3499 -6.6719 Q32.4906 -6.6719 32.6624 -6.6562 Q32.8499 -6.6406 32.9593 -6.625 L32.8187 -4.9375 Q32.7406 -4.9688 32.5687 -4.9844 Q32.4124 -5 32.2874 -5 Q31.8343 -5 31.4124 -4.8438 Q30.9906 -4.6875 30.7249 -4.3125 Q30.4749 -3.9531 30.4749 -3.3438 L30.4749 0 L28.6937 0 L28.6937 -6.5469 L30.0531 -6.5469 L30.3187 -5.4531 L30.3968 -5.4531 Q30.6781 -5.9531 31.1781 -6.3125 Q31.6937 -6.6719 32.3499 -6.6719 ZM35.048 -9.125 Q35.4386 -9.125 35.7199 -8.9375 Q36.0167 -8.75 36.0167 -8.25 Q36.0167 -7.75 35.7199 -7.5625 Q35.4386 -7.375 35.048 -7.375 Q34.6261 -7.375 34.3449 -7.5625 Q34.0636 -7.75 34.0636 -8.25 Q34.0636 -8.75 34.3449 -8.9375 Q34.6261 -9.125 35.048 -9.125 ZM35.923 -6.5469 L35.923 0 L34.1417 0 L34.1417 -6.5469 L35.923 -6.5469 ZM40.5674 -1.3125 Q40.8643 -1.3125 41.1299 -1.3594 Q41.4111 -1.4219 41.6924 -1.5156 L41.6924 -0.1875 Q41.3955 -0.0625 40.9736 0.0312 Q40.5518 0.125 40.0518 0.125 Q39.458 0.125 38.9893 -0.0625 Q38.5361 -0.2656 38.2549 -0.7344 Q37.9893 -1.2188 37.9893 -2.0469 L37.9893 -5.2031 L37.1455 -5.2031 L37.1455 -5.9688 L38.1299 -6.5625 L38.6455 -7.9375 L39.7861 -7.9375 L39.7861 -6.5469 L41.6143 -6.5469 L41.6143 -5.2031 L39.7861 -5.2031 L39.7861 -2.0469 Q39.7861 -1.6875 39.9893 -1.5 Q40.208 -1.3125 40.5674 -1.3125 ZM42.0723 -6.5469 L44.0254 -6.5469 L45.2598 -2.875 Q45.3535 -2.6094 45.4004 -2.3281 Q45.4629 -2.0469 45.4785 -1.7344 L45.5098 -1.7344 Q45.5567 -2.0469 45.6192 -2.3281 Q45.6817 -2.6094 45.7754 -2.875 L46.9785 -6.5469 L48.9004 -6.5469 L46.1348 0.8438 Q45.7598 1.8594 45.041 2.3594 Q44.3223 2.875 43.3848 2.875 Q43.0879 2.875 42.8692 2.8438 Q42.6504 2.8125 42.4785 2.7812 L42.4785 1.375 Q42.6192 1.3906 42.791 1.4062 Q42.9785 1.4375 43.1817 1.4375 Q43.7598 1.4375 44.0879 1.0938 Q44.416 0.75 44.5723 0.2812 L44.6817 -0.0469 L42.0723 -6.5469 ZM53.6191 -7.1719 Q52.5722 -7.1719 52.0097 -6.3906 Q51.4628 -5.6094 51.4628 -4.2656 Q51.4628 -2.8906 51.9785 -2.1406 Q52.4941 -1.3906 53.6191 -1.3906 Q54.1503 -1.3906 54.666 -1.5 Q55.1816 -1.625 55.8066 -1.8438 L55.8066 -0.3281 Q55.2441 -0.0938 54.6816 0.0156 Q54.1347 0.125 53.4472 0.125 Q52.1347 0.125 51.2753 -0.4219 Q50.416 -0.9688 50.0097 -1.9531 Q49.6035 -2.9531 49.6035 -4.2656 Q49.6035 -5.5625 50.0566 -6.5625 Q50.5253 -7.5625 51.416 -8.125 Q52.3222 -8.6875 53.6191 -8.6875 Q54.2597 -8.6875 54.9003 -8.5156 Q55.541 -8.3594 56.1191 -8.0938 L55.541 -6.6094 Q55.0566 -6.8438 54.5722 -7 Q54.0878 -7.1719 53.6191 -7.1719 ZM63.435 -3.2812 Q63.435 -1.6562 62.5757 -0.7656 Q61.7163 0.125 60.2475 0.125 Q59.3257 0.125 58.6069 -0.2656 Q57.9038 -0.6719 57.4975 -1.4375 Q57.0913 -2.2031 57.0913 -3.2812 Q57.0913 -4.9219 57.935 -5.7969 Q58.7944 -6.6719 60.2788 -6.6719 Q61.2007 -6.6719 61.9038 -6.2656 Q62.6225 -5.875 63.0288 -5.125 Q63.435 -4.375 63.435 -3.2812 ZM58.9038 -3.2812 Q58.9038 -2.3125 59.2163 -1.8125 Q59.5444 -1.3125 60.2632 -1.3125 Q60.9663 -1.3125 61.2788 -1.8125 Q61.6069 -2.3125 61.6069 -3.2812 Q61.6069 -4.2656 61.2788 -4.75 Q60.9663 -5.2344 60.2475 -5.2344 Q59.5444 -5.2344 59.2163 -4.75 Q58.9038 -4.2656 58.9038 -3.2812 ZM68.6287 -6.6719 Q69.6912 -6.6719 70.3162 -6.0938 Q70.9568 -5.5312 70.9568 -4.2656 L70.9568 0 L69.1756 0 L69.1756 -3.8281 Q69.1756 -4.5312 68.91 -4.8906 Q68.66 -5.25 68.1131 -5.25 Q67.3006 -5.25 66.9881 -4.6875 Q66.6912 -4.125 66.6912 -3.0781 L66.6912 0 L64.91 0 L64.91 -6.5469 L66.2693 -6.5469 L66.5193 -5.7188 L66.6131 -5.7188 Q66.9256 -6.2188 67.4725 -6.4375 Q68.0193 -6.6719 68.6287 -6.6719 ZM76.419 -5.2031 L74.8721 -5.2031 L74.8721 0 L73.0753 0 L73.0753 -5.2031 L72.0909 -5.2031 L72.0909 -6.0781 L73.0753 -6.5469 L73.0753 -7.0312 Q73.0753 -7.875 73.3565 -8.3281 Q73.6378 -8.7969 74.1534 -8.9844 Q74.6846 -9.1875 75.4034 -9.1875 Q75.919 -9.1875 76.3409 -9.0938 Q76.7784 -9.0156 77.044 -8.9062 L76.5909 -7.5938 Q76.3878 -7.6562 76.1378 -7.7031 Q75.9034 -7.7656 75.5909 -7.7656 Q75.2159 -7.7656 75.044 -7.5312 Q74.8721 -7.3125 74.8721 -6.9531 L74.8721 -6.5469 L76.419 -6.5469 L76.419 -5.2031 ZM78.3443 -9.125 Q78.7349 -9.125 79.0162 -8.9375 Q79.313 -8.75 79.313 -8.25 Q79.313 -7.75 79.0162 -7.5625 Q78.7349 -7.375 78.3443 -7.375 Q77.9224 -7.375 77.6412 -7.5625 Q77.3599 -7.75 77.3599 -8.25 Q77.3599 -8.75 77.6412 -8.9375 Q77.9224 -9.125 78.3443 -9.125 ZM79.2193 -6.5469 L79.2193 0 L77.438 0 L77.438 -6.5469 L79.2193 -6.5469 ZM83.2231 -6.6719 Q84.4262 -6.6719 85.1137 -5.7188 L85.1606 -5.7188 L85.3012 -6.5469 L86.8168 -6.5469 L86.8168 0.0156 Q86.8168 1.4219 85.9887 2.1406 Q85.1606 2.875 83.5512 2.875 Q82.8481 2.875 82.2543 2.7969 Q81.6606 2.7188 81.0981 2.5 L81.0981 1.0625 Q82.3012 1.5781 83.6449 1.5781 Q85.0356 1.5781 85.0356 0.0781 L85.0356 -0.0469 Q85.0356 -0.25 85.0512 -0.4688 Q85.0668 -0.6875 85.0824 -0.8594 L85.0356 -0.8594 Q84.6918 -0.3438 84.2231 -0.1094 Q83.7543 0.125 83.1762 0.125 Q82.0043 0.125 81.3481 -0.7656 Q80.7074 -1.6719 80.7074 -3.2656 Q80.7074 -4.875 81.3793 -5.7656 Q82.0512 -6.6719 83.2231 -6.6719 ZM83.7856 -5.2188 Q82.5199 -5.2188 82.5199 -3.2344 Q82.5199 -1.2812 83.8012 -1.2812 Q84.4887 -1.2812 84.8168 -1.6719 Q85.1449 -2.0625 85.1449 -3.0312 L85.1449 -3.25 Q85.1449 -4.3125 84.8168 -4.7656 Q84.5043 -5.2188 83.7856 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath54);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="730.3392" y="-818.1363" width="89.0365" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="730.3392" y="-818.1363" width="89.0365" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(740.3392,-800.1363)"
+    ><path d="M3.75 -8.5625 Q5.4531 -8.5625 6.3281 -8.0781 Q7.2188 -7.6094 7.2188 -6.3906 Q7.2188 -5.6562 6.875 -5.1562 Q6.5312 -4.6562 5.8906 -4.5469 L5.8906 -4.4844 Q6.3281 -4.4062 6.6719 -4.1875 Q7.0156 -3.9688 7.2188 -3.5625 Q7.4219 -3.1562 7.4219 -2.4844 Q7.4219 -1.3125 6.5781 -0.6562 Q5.75 0 4.2812 0 L1.0781 0 L1.0781 -8.5625 L3.75 -8.5625 ZM3.9531 -5.1719 Q4.7344 -5.1719 5.0469 -5.4219 Q5.3594 -5.6719 5.3594 -6.1562 Q5.3594 -6.6406 4.9844 -6.8594 Q4.625 -7.0781 3.8594 -7.0781 L2.8906 -7.0781 L2.8906 -5.1719 L3.9531 -5.1719 ZM2.8906 -3.7344 L2.8906 -1.5 L4.0781 -1.5 Q4.8906 -1.5 5.2188 -1.8125 Q5.5469 -2.1406 5.5469 -2.6562 Q5.5469 -3.1406 5.2188 -3.4375 Q4.8906 -3.7344 4.0156 -3.7344 L2.8906 -3.7344 ZM14.9547 -3.2812 Q14.9547 -1.6562 14.0953 -0.7656 Q13.2359 0.125 11.7672 0.125 Q10.8453 0.125 10.1266 -0.2656 Q9.4234 -0.6719 9.0172 -1.4375 Q8.6109 -2.2031 8.6109 -3.2812 Q8.6109 -4.9219 9.4547 -5.7969 Q10.3141 -6.6719 11.7984 -6.6719 Q12.7203 -6.6719 13.4234 -6.2656 Q14.1422 -5.875 14.5484 -5.125 Q14.9547 -4.375 14.9547 -3.2812 ZM10.4234 -3.2812 Q10.4234 -2.3125 10.7359 -1.8125 Q11.0641 -1.3125 11.7828 -1.3125 Q12.4859 -1.3125 12.7984 -1.8125 Q13.1266 -2.3125 13.1266 -3.2812 Q13.1266 -4.2656 12.7984 -4.75 Q12.4859 -5.2344 11.7672 -5.2344 Q11.0641 -5.2344 10.7359 -4.75 Q10.4234 -4.2656 10.4234 -3.2812 ZM22.3827 -3.2812 Q22.3827 -1.6562 21.5234 -0.7656 Q20.664 0.125 19.1952 0.125 Q18.2734 0.125 17.5546 -0.2656 Q16.8515 -0.6719 16.4452 -1.4375 Q16.039 -2.2031 16.039 -3.2812 Q16.039 -4.9219 16.8827 -5.7969 Q17.7421 -6.6719 19.2265 -6.6719 Q20.1484 -6.6719 20.8515 -6.2656 Q21.5702 -5.875 21.9765 -5.125 Q22.3827 -4.375 22.3827 -3.2812 ZM17.8515 -3.2812 Q17.8515 -2.3125 18.164 -1.8125 Q18.4921 -1.3125 19.2109 -1.3125 Q19.914 -1.3125 20.2265 -1.8125 Q20.5546 -2.3125 20.5546 -3.2812 Q20.5546 -4.2656 20.2265 -4.75 Q19.914 -5.2344 19.1952 -5.2344 Q18.4921 -5.2344 18.164 -4.75 Q17.8515 -4.2656 17.8515 -3.2812 ZM25.6389 -5.0469 Q25.6389 -4.6719 25.6077 -4.2969 Q25.5764 -3.9375 25.5452 -3.5625 L25.5764 -3.5625 Q25.7483 -3.8125 25.9358 -4.0625 Q26.1389 -4.3281 26.3577 -4.5625 L28.1858 -6.5469 L30.2014 -6.5469 L27.6077 -3.7031 L30.3577 0 L28.2952 0 L26.4045 -2.6562 L25.6389 -2.0469 L25.6389 0 L23.8577 0 L23.8577 -9.125 L25.6389 -9.125 L25.6389 -5.0469 ZM32.204 -9.125 Q32.5946 -9.125 32.8758 -8.9375 Q33.1727 -8.75 33.1727 -8.25 Q33.1727 -7.75 32.8758 -7.5625 Q32.5946 -7.375 32.204 -7.375 Q31.7821 -7.375 31.5008 -7.5625 Q31.2196 -7.75 31.2196 -8.25 Q31.2196 -8.75 31.5008 -8.9375 Q31.7821 -9.125 32.204 -9.125 ZM33.079 -6.5469 L33.079 0 L31.2977 0 L31.2977 -6.5469 L33.079 -6.5469 ZM38.6765 -6.6719 Q39.739 -6.6719 40.364 -6.0938 Q41.0046 -5.5312 41.0046 -4.2656 L41.0046 0 L39.2234 0 L39.2234 -3.8281 Q39.2234 -4.5312 38.9577 -4.8906 Q38.7077 -5.25 38.1609 -5.25 Q37.3484 -5.25 37.0359 -4.6875 Q36.739 -4.125 36.739 -3.0781 L36.739 0 L34.9577 0 L34.9577 -6.5469 L36.3171 -6.5469 L36.5671 -5.7188 L36.6609 -5.7188 Q36.9734 -6.2188 37.5202 -6.4375 Q38.0671 -6.6719 38.6765 -6.6719 ZM44.9668 -6.6719 Q46.1699 -6.6719 46.8574 -5.7188 L46.9043 -5.7188 L47.0449 -6.5469 L48.5605 -6.5469 L48.5605 0.0156 Q48.5605 1.4219 47.7324 2.1406 Q46.9043 2.875 45.2949 2.875 Q44.5918 2.875 43.998 2.7969 Q43.4043 2.7188 42.8418 2.5 L42.8418 1.0625 Q44.0449 1.5781 45.3887 1.5781 Q46.7793 1.5781 46.7793 0.0781 L46.7793 -0.0469 Q46.7793 -0.25 46.7949 -0.4688 Q46.8105 -0.6875 46.8262 -0.8594 L46.7793 -0.8594 Q46.4355 -0.3438 45.9668 -0.1094 Q45.498 0.125 44.9199 0.125 Q43.748 0.125 43.0918 -0.7656 Q42.4512 -1.6719 42.4512 -3.2656 Q42.4512 -4.875 43.123 -5.7656 Q43.7949 -6.6719 44.9668 -6.6719 ZM45.5293 -5.2188 Q44.2637 -5.2188 44.2637 -3.2344 Q44.2637 -1.2812 45.5449 -1.2812 Q46.2324 -1.2812 46.5605 -1.6719 Q46.8887 -2.0625 46.8887 -3.0312 L46.8887 -3.25 Q46.8887 -4.3125 46.5605 -4.7656 Q46.248 -5.2188 45.5293 -5.2188 ZM55.8285 0 L55.2035 -2.0469 L52.0785 -2.0469 L51.4535 0 L49.5003 0 L52.5316 -8.6094 L54.7503 -8.6094 L57.7816 0 L55.8285 0 ZM54.141 -5.5625 Q54.0785 -5.7656 53.9847 -6.0781 Q53.891 -6.3906 53.7972 -6.7031 Q53.7035 -7.0312 53.641 -7.2656 Q53.5785 -7.0312 53.4691 -6.6719 Q53.3753 -6.3281 53.2816 -6 Q53.2035 -5.6875 53.141 -5.5625 L52.5316 -3.5625 L54.766 -3.5625 L54.141 -5.5625 ZM62.3585 -6.6719 Q63.4679 -6.6719 64.1554 -5.8125 Q64.8429 -4.9531 64.8429 -3.2812 Q64.8429 -1.625 64.1241 -0.75 Q63.421 0.125 62.3116 0.125 Q61.6085 0.125 61.1866 -0.125 Q60.7648 -0.3906 60.4991 -0.7188 L60.4054 -0.7188 Q60.4991 -0.2188 60.4991 0.2344 L60.4991 2.875 L58.7179 2.875 L58.7179 -6.5469 L60.171 -6.5469 L60.421 -5.7031 L60.4991 -5.7031 Q60.7648 -6.0938 61.2023 -6.375 Q61.6554 -6.6719 62.3585 -6.6719 ZM61.796 -5.25 Q61.0929 -5.25 60.8116 -4.8125 Q60.5304 -4.375 60.4991 -3.4844 L60.4991 -3.2969 Q60.4991 -2.3594 60.7804 -1.8438 Q61.0616 -1.3281 61.8116 -1.3281 Q62.421 -1.3281 62.7179 -1.8438 Q63.0148 -2.3594 63.0148 -3.3125 Q63.0148 -5.25 61.796 -5.25 ZM67.2202 -9.125 Q67.6108 -9.125 67.8921 -8.9375 Q68.1889 -8.75 68.1889 -8.25 Q68.1889 -7.75 67.8921 -7.5625 Q67.6108 -7.375 67.2202 -7.375 Q66.7983 -7.375 66.5171 -7.5625 Q66.2358 -7.75 66.2358 -8.25 Q66.2358 -8.75 66.5171 -8.9375 Q66.7983 -9.125 67.2202 -9.125 ZM68.0952 -6.5469 L68.0952 0 L66.3139 0 L66.3139 -6.5469 L68.0952 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath55);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><line x1="392.4864" x2="392.4864" y1="-56.4208" style="fill:none; clip-path:url(#clipPath2);" y2="-26.033"
+      /><line x1="392.4864" x2="628.4591" y1="-26.033" style="fill:none; clip-path:url(#clipPath2);" y2="-26.033"
+      /><line x1="628.4591" x2="628.4591" y1="-26.033" style="fill:none; clip-path:url(#clipPath2);" y2="-56.5951"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" 392 -56 386 -45 399 -45"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" 392 -56 386 -45 399 -45"
+      /><path d="M289.6517 -647.4835 A6 6 0 0 0 289.6517 -659.4835" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="289.6517" x2="289.6517" y1="-739.6284" style="fill:none; clip-path:url(#clipPath2);" y2="-659.4835"
+      /><line x1="289.6517" x2="289.6517" y1="-647.4835" style="fill:none; clip-path:url(#clipPath2);" y2="-540.0107"
+      /><line x1="289.6517" x2="283.6517" y1="-540.0107" style="fill:none; clip-path:url(#clipPath2);" y2="-550.403"
+      /><line x1="289.6517" x2="295.6517" y1="-540.0107" style="fill:none; clip-path:url(#clipPath2);" y2="-550.403"
+      /><line x1="797.3267" x2="956.014" y1="-683.2905" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-556.8982"
+      /><line x1="797.3267" x2="809.1938" y1="-683.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-681.5092"
+      /><line x1="797.3267" x2="801.7176" y1="-683.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-672.1227"
+      /><line x1="392.4864" x2="392.4864" y1="-56.4208" style="fill:none; clip-path:url(#clipPath2);" y2="-26.033"
+      /><line x1="392.4864" x2="504.8826" y1="-26.033" style="fill:none; clip-path:url(#clipPath2);" y2="-26.033"
+      /><line x1="504.8826" x2="504.8826" y1="-26.033" style="fill:none; clip-path:url(#clipPath2);" y2="-56.8598"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" 392 -56 386 -45 399 -45"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" 392 -56 386 -45 399 -45"
+      /><path d="M148.5542 -592.2692 A11.6969 11.6969 0 0 0 125.1605 -592.2692" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M27.4707 -592.2692 A6 6 0 0 0 15.4707 -592.2692" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="-110.3024" x2="-110.3024" y1="-668.2905" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="-110.3024" x2="15.4707" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="27.4707" x2="125.1605" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="148.5542" x2="256.3184" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-592.2692"
+      /><line x1="256.3184" x2="256.3184" y1="-592.2692" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-540.0107"
+      /><line x1="-110.3024" x2="-104.3024" y1="-668.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-657.8982"
+      /><line x1="-110.3024" x2="-116.3024" y1="-668.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-657.8982"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="738.8053" y="-761.4406" width="72.1044" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="738.8053" y="-761.4406" width="72.1044" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(748.8053,-743.4406)"
+    ><path d="M8.0938 0 L6.2812 0 L6.2812 -3.7031 L2.8906 -3.7031 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -5.2031 L6.2812 -5.2031 L6.2812 -8.5625 L8.0938 -8.5625 L8.0938 0 ZM16.0707 -3.2812 Q16.0707 -1.6562 15.2113 -0.7656 Q14.3519 0.125 12.8832 0.125 Q11.9613 0.125 11.2426 -0.2656 Q10.5394 -0.6719 10.1332 -1.4375 Q9.7269 -2.2031 9.7269 -3.2812 Q9.7269 -4.9219 10.5707 -5.7969 Q11.4301 -6.6719 12.9144 -6.6719 Q13.8363 -6.6719 14.5394 -6.2656 Q15.2582 -5.875 15.6644 -5.125 Q16.0707 -4.375 16.0707 -3.2812 ZM11.5394 -3.2812 Q11.5394 -2.3125 11.8519 -1.8125 Q12.1801 -1.3125 12.8988 -1.3125 Q13.6019 -1.3125 13.9144 -1.8125 Q14.2426 -2.3125 14.2426 -3.2812 Q14.2426 -4.2656 13.9144 -4.75 Q13.6019 -5.2344 12.8832 -5.2344 Q12.1801 -5.2344 11.8519 -4.75 Q11.5394 -4.2656 11.5394 -3.2812 ZM20.3112 -1.3125 Q20.6081 -1.3125 20.8737 -1.3594 Q21.155 -1.4219 21.4362 -1.5156 L21.4362 -0.1875 Q21.1394 -0.0625 20.7175 0.0312 Q20.2956 0.125 19.7956 0.125 Q19.2019 0.125 18.7331 -0.0625 Q18.28 -0.2656 17.9987 -0.7344 Q17.7331 -1.2188 17.7331 -2.0469 L17.7331 -5.2031 L16.8894 -5.2031 L16.8894 -5.9688 L17.8737 -6.5625 L18.3894 -7.9375 L19.53 -7.9375 L19.53 -6.5469 L21.3581 -6.5469 L21.3581 -5.2031 L19.53 -5.2031 L19.53 -2.0469 Q19.53 -1.6875 19.7331 -1.5 Q19.9519 -1.3125 20.3112 -1.3125 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1912 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4412 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0037 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1287 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9412 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM31.627 0 L29.8457 0 L29.8457 -9.125 L31.627 -9.125 L31.627 0 ZM38.8964 0 L38.2714 -2.0469 L35.1464 -2.0469 L34.5214 0 L32.5682 0 L35.5995 -8.6094 L37.8182 -8.6094 L40.8495 0 L38.8964 0 ZM37.2089 -5.5625 Q37.1464 -5.7656 37.0526 -6.0781 Q36.9589 -6.3906 36.8651 -6.7031 Q36.7714 -7.0312 36.7089 -7.2656 Q36.6464 -7.0312 36.537 -6.6719 Q36.4432 -6.3281 36.3495 -6 Q36.2714 -5.6875 36.2089 -5.5625 L35.5995 -3.5625 L37.8339 -3.5625 L37.2089 -5.5625 ZM45.4264 -6.6719 Q46.5358 -6.6719 47.2233 -5.8125 Q47.9108 -4.9531 47.9108 -3.2812 Q47.9108 -1.625 47.192 -0.75 Q46.4889 0.125 45.3795 0.125 Q44.6764 0.125 44.2545 -0.125 Q43.8327 -0.3906 43.567 -0.7188 L43.4733 -0.7188 Q43.567 -0.2188 43.567 0.2344 L43.567 2.875 L41.7858 2.875 L41.7858 -6.5469 L43.2389 -6.5469 L43.4889 -5.7031 L43.567 -5.7031 Q43.8327 -6.0938 44.2702 -6.375 Q44.7233 -6.6719 45.4264 -6.6719 ZM44.8639 -5.25 Q44.1608 -5.25 43.8795 -4.8125 Q43.5983 -4.375 43.567 -3.4844 L43.567 -3.2969 Q43.567 -2.3594 43.8483 -1.8438 Q44.1295 -1.3281 44.8795 -1.3281 Q45.4889 -1.3281 45.7858 -1.8438 Q46.0827 -2.3594 46.0827 -3.3125 Q46.0827 -5.25 44.8639 -5.25 ZM50.2881 -9.125 Q50.6787 -9.125 50.96 -8.9375 Q51.2569 -8.75 51.2569 -8.25 Q51.2569 -7.75 50.96 -7.5625 Q50.6787 -7.375 50.2881 -7.375 Q49.8662 -7.375 49.585 -7.5625 Q49.3037 -7.75 49.3037 -8.25 Q49.3037 -8.75 49.585 -8.9375 Q49.8662 -9.125 50.2881 -9.125 ZM51.1631 -6.5469 L51.1631 0 L49.3819 0 L49.3819 -6.5469 L51.1631 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath56);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M484.3464 -20.033 A6 6 0 0 0 484.3464 -32.033" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="484.3464" x2="484.3464" y1="-56.8598" style="fill:none; clip-path:url(#clipPath2);" y2="-32.033"
+      /><line x1="484.3464" x2="484.3464" y1="-20.033" style="fill:none; clip-path:url(#clipPath2);" y2="-5.3782"
+      /><line x1="484.3464" x2="131.2908" y1="-5.3782" style="fill:none; clip-path:url(#clipPath2);" y2="-5.3782"
+      /><line x1="484.3464" x2="490.3464" y1="-56.8598" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-46.4674"
+      /><line x1="484.3464" x2="478.3464" y1="-56.8598" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-46.4674"
+      /><line x1="176.0231" x2="231.6676" y1="-519.5382" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-519.6061"
+      /><line x1="231.6676" x2="221.2826" y1="-519.6061" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-513.5934"
+      /><line x1="231.6676" x2="221.268" y1="-519.6061" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-525.5934"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="2.0883" y="37.5477" width="138.4048" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="2.0883" y="37.5477" width="138.4048" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(32.2908,55.5477)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath57);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(12.0883,71.8918)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 ZM57.4105 -8.5625 Q59.1605 -8.5625 59.9886 -7.9219 Q60.8324 -7.2969 60.8324 -6 Q60.8324 -5.4062 60.598 -4.9688 Q60.3793 -4.5312 60.0043 -4.2188 Q59.6449 -3.9219 59.2386 -3.7344 L61.7543 0 L59.7386 0 L57.6918 -3.2812 L56.723 -3.2812 L56.723 0 L54.9105 0 L54.9105 -8.5625 L57.4105 -8.5625 ZM57.2699 -7.0781 L56.723 -7.0781 L56.723 -4.7656 L57.3168 -4.7656 Q58.2074 -4.7656 58.598 -5.0625 Q58.9886 -5.3594 58.9886 -5.9531 Q58.9886 -6.5625 58.5668 -6.8125 Q58.1605 -7.0781 57.2699 -7.0781 ZM65.3931 -6.6719 Q66.7368 -6.6719 67.5337 -5.8906 Q68.3306 -5.125 68.3306 -3.7031 L68.3306 -2.8281 L64.1118 -2.8281 Q64.1274 -2.0781 64.5493 -1.6406 Q64.9868 -1.2188 65.7368 -1.2188 Q66.3774 -1.2188 66.8931 -1.3438 Q67.4087 -1.4688 67.9556 -1.7344 L67.9556 -0.3438 Q67.4712 -0.1094 66.9399 0 Q66.4087 0.125 65.6587 0.125 Q64.6743 0.125 63.9087 -0.2344 Q63.1587 -0.6094 62.7212 -1.3438 Q62.2993 -2.0938 62.2993 -3.2344 Q62.2993 -4.375 62.6743 -5.1406 Q63.0649 -5.9062 63.7681 -6.2812 Q64.4712 -6.6719 65.3931 -6.6719 ZM65.3931 -5.4062 Q64.8774 -5.4062 64.5337 -5.0625 Q64.2056 -4.7344 64.1431 -4.0156 L66.6431 -4.0156 Q66.6431 -4.625 66.3306 -5.0156 Q66.0337 -5.4062 65.3931 -5.4062 ZM73.4226 -6.6719 Q74.532 -6.6719 75.2195 -5.8125 Q75.907 -4.9531 75.907 -3.2812 Q75.907 -1.625 75.1882 -0.75 Q74.4851 0.125 73.3757 0.125 Q72.6726 0.125 72.2507 -0.125 Q71.8289 -0.3906 71.5632 -0.7188 L71.4695 -0.7188 Q71.5632 -0.2188 71.5632 0.2344 L71.5632 2.875 L69.782 2.875 L69.782 -6.5469 L71.2351 -6.5469 L71.4851 -5.7031 L71.5632 -5.7031 Q71.8289 -6.0938 72.2664 -6.375 Q72.7195 -6.6719 73.4226 -6.6719 ZM72.8601 -5.25 Q72.157 -5.25 71.8757 -4.8125 Q71.5945 -4.375 71.5632 -3.4844 L71.5632 -3.2969 Q71.5632 -2.3594 71.8445 -1.8438 Q72.1257 -1.3281 72.8757 -1.3281 Q73.4851 -1.3281 73.782 -1.8438 Q74.0789 -2.3594 74.0789 -3.3125 Q74.0789 -5.25 72.8601 -5.25 ZM83.3312 -3.2812 Q83.3312 -1.6562 82.4718 -0.7656 Q81.6124 0.125 80.1437 0.125 Q79.2218 0.125 78.5031 -0.2656 Q77.7999 -0.6719 77.3937 -1.4375 Q76.9874 -2.2031 76.9874 -3.2812 Q76.9874 -4.9219 77.8312 -5.7969 Q78.6906 -6.6719 80.1749 -6.6719 Q81.0968 -6.6719 81.7999 -6.2656 Q82.5187 -5.875 82.9249 -5.125 Q83.3312 -4.375 83.3312 -3.2812 ZM78.7999 -3.2812 Q78.7999 -2.3125 79.1124 -1.8125 Q79.4406 -1.3125 80.1593 -1.3125 Q80.8624 -1.3125 81.1749 -1.8125 Q81.5031 -2.3125 81.5031 -3.2812 Q81.5031 -4.2656 81.1749 -4.75 Q80.8624 -5.2344 80.1437 -5.2344 Q79.4406 -5.2344 79.1124 -4.75 Q78.7999 -4.2656 78.7999 -3.2812 ZM89.3842 -1.9375 Q89.3842 -0.9531 88.6811 -0.4062 Q87.978 0.125 86.5874 0.125 Q85.8999 0.125 85.3999 0.0312 Q84.9155 -0.0625 84.4155 -0.2656 L84.4155 -1.7344 Q84.9467 -1.5 85.5561 -1.3438 Q86.1655 -1.1875 86.6342 -1.1875 Q87.1655 -1.1875 87.3842 -1.3438 Q87.6186 -1.5 87.6186 -1.75 Q87.6186 -1.9219 87.5249 -2.0469 Q87.4311 -2.1875 87.1342 -2.3438 Q86.8374 -2.5156 86.1967 -2.7812 Q85.5874 -3.0469 85.1811 -3.2969 Q84.7905 -3.5625 84.603 -3.9219 Q84.4155 -4.2969 84.4155 -4.8438 Q84.4155 -5.7656 85.1186 -6.2188 Q85.8217 -6.6719 86.9936 -6.6719 Q87.6186 -6.6719 88.1655 -6.5469 Q88.7124 -6.4375 89.3061 -6.1562 L88.7592 -4.875 Q88.2905 -5.0781 87.853 -5.2188 Q87.4155 -5.3594 86.978 -5.3594 Q86.1811 -5.3594 86.1811 -4.9219 Q86.1811 -4.7656 86.2749 -4.6406 Q86.3842 -4.5156 86.6811 -4.3594 Q86.978 -4.2188 87.5561 -3.9844 Q88.1186 -3.75 88.5249 -3.5 Q88.9311 -3.2656 89.1499 -2.8906 Q89.3842 -2.5312 89.3842 -1.9375 ZM91.6764 -9.125 Q92.067 -9.125 92.3483 -8.9375 Q92.6451 -8.75 92.6451 -8.25 Q92.6451 -7.75 92.3483 -7.5625 Q92.067 -7.375 91.6764 -7.375 Q91.2545 -7.375 90.9733 -7.5625 Q90.692 -7.75 90.692 -8.25 Q90.692 -8.75 90.9733 -8.9375 Q91.2545 -9.125 91.6764 -9.125 ZM92.5514 -6.5469 L92.5514 0 L90.7701 0 L90.7701 -6.5469 L92.5514 -6.5469 ZM97.1958 -1.3125 Q97.4927 -1.3125 97.7583 -1.3594 Q98.0395 -1.4219 98.3208 -1.5156 L98.3208 -0.1875 Q98.0239 -0.0625 97.602 0.0312 Q97.1802 0.125 96.6802 0.125 Q96.0864 0.125 95.6177 -0.0625 Q95.1645 -0.2656 94.8833 -0.7344 Q94.6177 -1.2188 94.6177 -2.0469 L94.6177 -5.2031 L93.7739 -5.2031 L93.7739 -5.9688 L94.7583 -6.5625 L95.2739 -7.9375 L96.4145 -7.9375 L96.4145 -6.5469 L98.2427 -6.5469 L98.2427 -5.2031 L96.4145 -5.2031 L96.4145 -2.0469 Q96.4145 -1.6875 96.6177 -1.5 Q96.8364 -1.3125 97.1958 -1.3125 ZM105.5913 -3.2812 Q105.5913 -1.6562 104.7319 -0.7656 Q103.8726 0.125 102.4038 0.125 Q101.4819 0.125 100.7632 -0.2656 Q100.0601 -0.6719 99.6538 -1.4375 Q99.2476 -2.2031 99.2476 -3.2812 Q99.2476 -4.9219 100.0913 -5.7969 Q100.9507 -6.6719 102.4351 -6.6719 Q103.3569 -6.6719 104.0601 -6.2656 Q104.7788 -5.875 105.1851 -5.125 Q105.5913 -4.375 105.5913 -3.2812 ZM101.0601 -3.2812 Q101.0601 -2.3125 101.3726 -1.8125 Q101.7007 -1.3125 102.4194 -1.3125 Q103.1226 -1.3125 103.4351 -1.8125 Q103.7632 -2.3125 103.7632 -3.2812 Q103.7632 -4.2656 103.4351 -4.75 Q103.1226 -5.2344 102.4038 -5.2344 Q101.7007 -5.2344 101.3726 -4.75 Q101.0601 -4.2656 101.0601 -3.2812 ZM110.7225 -6.6719 Q110.8631 -6.6719 111.035 -6.6562 Q111.2225 -6.6406 111.3319 -6.625 L111.1913 -4.9375 Q111.1131 -4.9688 110.9413 -4.9844 Q110.785 -5 110.66 -5 Q110.2069 -5 109.785 -4.8438 Q109.3631 -4.6875 109.0975 -4.3125 Q108.8475 -3.9531 108.8475 -3.3438 L108.8475 0 L107.0663 0 L107.0663 -6.5469 L108.4256 -6.5469 L108.6913 -5.4531 L108.7694 -5.4531 Q109.0506 -5.9531 109.5506 -6.3125 Q110.0663 -6.6719 110.7225 -6.6719 ZM111.5768 -6.5469 L113.5299 -6.5469 L114.7643 -2.875 Q114.858 -2.6094 114.9049 -2.3281 Q114.9674 -2.0469 114.983 -1.7344 L115.0143 -1.7344 Q115.0612 -2.0469 115.1237 -2.3281 Q115.1862 -2.6094 115.2799 -2.875 L116.483 -6.5469 L118.4049 -6.5469 L115.6393 0.8438 Q115.2643 1.8594 114.5455 2.3594 Q113.8268 2.875 112.8893 2.875 Q112.5924 2.875 112.3737 2.8438 Q112.1549 2.8125 111.983 2.7812 L111.983 1.375 Q112.1237 1.3906 112.2955 1.4062 Q112.483 1.4375 112.6862 1.4375 Q113.2643 1.4375 113.5924 1.0938 Q113.9205 0.75 114.0768 0.2812 L114.1862 -0.0469 L111.5768 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath58);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M281.1676 -360.5134 A6 6 0 0 0 281.1676 -372.5134" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="504.8826" x2="504.8826" y1="-97.548" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="504.8826" x2="281.1676" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-300.9465"
+      /><line x1="281.1676" x2="281.1676" y1="-300.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-360.5134"
+      /><line x1="281.1676" x2="281.1676" y1="-372.5134" style="fill:none; clip-path:url(#clipPath2);" y2="-499.3225"
+      /><line x1="504.8826" x2="498.8826" y1="-97.548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.9403"
+      /><line x1="504.8826" x2="510.8826" y1="-97.548" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-107.9403"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="900.6538" y="-369.1038" width="161.805" style="clip-path:url(#clipPath2); stroke:none;" height="57.0323"
+      /><rect x="900.6538" y="-369.1038" width="161.805" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="57.0323"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(954.5563,-334.7597)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.7125 -5.6094 L16.0875 -5.6094 L16.0875 0 L15.0406 0 L15.0406 -5.6094 L13.9156 -5.6094 L13.9156 -6.1094 L15.0406 -6.4688 L15.0406 -6.8438 Q15.0406 -8.0938 15.5875 -8.6406 Q16.1343 -9.1875 17.1187 -9.1875 Q17.5093 -9.1875 17.8218 -9.1094 Q18.15 -9.0469 18.3687 -8.9688 L18.1031 -8.1406 Q17.9 -8.2031 17.65 -8.25 Q17.4 -8.3125 17.1343 -8.3125 Q16.6031 -8.3125 16.3375 -7.9531 Q16.0875 -7.6094 16.0875 -6.8594 L16.0875 -6.4375 L17.7125 -6.4375 L17.7125 -5.6094 ZM19.4186 -8.8438 Q19.653 -8.8438 19.8405 -8.6719 Q20.028 -8.5156 20.028 -8.1719 Q20.028 -7.8438 19.8405 -7.6719 Q19.653 -7.5 19.4186 -7.5 Q19.153 -7.5 18.9655 -7.6719 Q18.7936 -7.8438 18.7936 -8.1719 Q18.7936 -8.5156 18.9655 -8.6719 Q19.153 -8.8438 19.4186 -8.8438 ZM19.9342 -6.4375 L19.9342 0 L18.8717 0 L18.8717 -6.4375 L19.9342 -6.4375 ZM23.0303 0 L21.9678 0 L21.9678 -9.125 L23.0303 -9.125 L23.0303 0 ZM27.22 -0.75 Q27.4544 -0.75 27.7044 -0.7812 Q27.9544 -0.8281 28.1107 -0.875 L28.1107 -0.0781 Q27.9544 0.0156 27.6419 0.0625 Q27.3294 0.125 27.0325 0.125 Q26.5325 0.125 26.095 -0.0469 Q25.6732 -0.2344 25.4075 -0.6562 Q25.1575 -1.0938 25.1575 -1.875 L25.1575 -5.6094 L24.2357 -5.6094 L24.2357 -6.125 L25.1575 -6.5469 L25.5794 -7.9062 L26.2044 -7.9062 L26.2044 -6.4375 L28.0638 -6.4375 L28.0638 -5.6094 L26.2044 -5.6094 L26.2044 -1.8906 Q26.2044 -1.3125 26.4857 -1.0312 Q26.7669 -0.75 27.22 -0.75 ZM31.8802 -6.5469 Q32.7083 -6.5469 33.3021 -6.1875 Q33.8958 -5.8281 34.2083 -5.1719 Q34.5365 -4.5312 34.5365 -3.6406 L34.5365 -3.0156 L30.1302 -3.0156 Q30.1615 -1.9219 30.6927 -1.3438 Q31.224 -0.7812 32.1771 -0.7812 Q32.8021 -0.7812 33.2708 -0.8906 Q33.7396 -1.0156 34.2552 -1.2188 L34.2552 -0.2969 Q33.7552 -0.0781 33.2708 0.0156 Q32.8021 0.125 32.1302 0.125 Q31.224 0.125 30.5208 -0.25 Q29.8177 -0.625 29.4271 -1.3594 Q29.0365 -2.0938 29.0365 -3.1719 Q29.0365 -4.2188 29.3958 -4.9688 Q29.7552 -5.7344 30.3958 -6.1406 Q31.0365 -6.5469 31.8802 -6.5469 ZM31.8646 -5.6875 Q31.1146 -5.6875 30.6771 -5.2031 Q30.2396 -4.7188 30.1615 -3.8594 L33.4271 -3.8594 Q33.4271 -4.6719 33.0521 -5.1719 Q32.6771 -5.6875 31.8646 -5.6875 ZM39.1639 -6.5469 Q39.3514 -6.5469 39.5545 -6.5312 Q39.7733 -6.5156 39.9295 -6.4844 L39.7889 -5.5156 Q39.6326 -5.5469 39.4451 -5.5625 Q39.2576 -5.5938 39.1014 -5.5938 Q38.6014 -5.5938 38.1639 -5.3125 Q37.742 -5.0469 37.4764 -4.5625 Q37.2264 -4.0781 37.2264 -3.4375 L37.2264 0 L36.1639 0 L36.1639 -6.4375 L37.0389 -6.4375 L37.1483 -5.25 L37.1951 -5.25 Q37.5076 -5.7812 37.992 -6.1562 Q38.492 -6.5469 39.1639 -6.5469 ZM40.698 -2.3281 L45.2293 -4.2188 L40.698 -6.3594 L40.698 -7.2969 L46.3543 -4.4688 L46.3543 -3.875 L40.698 -1.3906 L40.698 -2.3281 ZM47.5621 -2.3281 L52.0933 -4.2188 L47.5621 -6.3594 L47.5621 -7.2969 L53.2183 -4.4688 L53.2183 -3.875 L47.5621 -1.3906 L47.5621 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath59);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(935.422,-351.1038)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM34.8263 -6.5469 Q35.9201 -6.5469 36.4513 -5.9844 Q36.9982 -5.4375 36.9982 -4.1875 L36.9982 0 L35.9513 0 L35.9513 -4.1406 Q35.9513 -5.6562 34.6388 -5.6562 Q33.7013 -5.6562 33.2951 -5.1094 Q32.9044 -4.5781 32.9044 -3.5469 L32.9044 0 L31.8576 0 L31.8576 -4.1406 Q31.8576 -5.6562 30.5451 -5.6562 Q29.5607 -5.6562 29.1857 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1388 -6.0625 29.6388 -6.2969 Q30.1544 -6.5469 30.7326 -6.5469 Q32.2482 -6.5469 32.7013 -5.4688 L32.7638 -5.4688 Q33.0919 -6.0312 33.6388 -6.2812 Q34.2013 -6.5469 34.8263 -6.5469 ZM42.0464 -6.5469 Q43.2339 -6.5469 43.9526 -5.7188 Q44.687 -4.8906 44.687 -3.2344 Q44.687 -1.5781 43.9526 -0.7188 Q43.2339 0.125 42.0308 0.125 Q41.2964 0.125 40.812 -0.1562 Q40.3276 -0.4375 40.0464 -0.8125 L39.9683 -0.8125 Q39.9995 -0.6094 40.0151 -0.2969 Q40.0464 0.0156 40.0464 0.2344 L40.0464 2.875 L38.9839 2.875 L38.9839 -6.4375 L39.8589 -6.4375 L39.9995 -5.5625 L40.0464 -5.5625 Q40.3276 -5.9688 40.7964 -6.25 Q41.2651 -6.5469 42.0464 -6.5469 ZM41.8589 -5.6562 Q40.8745 -5.6562 40.4683 -5.1094 Q40.062 -4.5625 40.0464 -3.4375 L40.0464 -3.2344 Q40.0464 -2.0469 40.437 -1.3906 Q40.8276 -0.75 41.8745 -0.75 Q42.4683 -0.75 42.8433 -1.0781 Q43.2183 -1.4062 43.4058 -1.9531 Q43.5933 -2.5156 43.5933 -3.2344 Q43.5933 -4.3438 43.1714 -5 Q42.7495 -5.6562 41.8589 -5.6562 ZM51.9577 -3.2344 Q51.9577 -1.625 51.1452 -0.75 Q50.3327 0.125 48.9577 0.125 Q48.1139 0.125 47.4421 -0.2656 Q46.7702 -0.6562 46.3796 -1.4062 Q46.0046 -2.1562 46.0046 -3.2344 Q46.0046 -4.8281 46.8014 -5.6875 Q47.6139 -6.5469 48.9889 -6.5469 Q49.8796 -6.5469 50.5358 -6.1562 Q51.2077 -5.7656 51.5827 -5.0312 Q51.9577 -4.2969 51.9577 -3.2344 ZM47.0983 -3.2344 Q47.0983 -2.0938 47.5514 -1.4219 Q48.0046 -0.75 48.9889 -0.75 Q49.9577 -0.75 50.4108 -1.4219 Q50.8639 -2.0938 50.8639 -3.2344 Q50.8639 -4.375 50.4108 -5.0156 Q49.9577 -5.6562 48.9733 -5.6562 Q47.9889 -5.6562 47.5358 -5.0156 Q47.0983 -4.375 47.0983 -3.2344 ZM56.7177 -6.5469 Q57.874 -6.5469 58.4521 -5.9844 Q59.0459 -5.4375 59.0459 -4.1875 L59.0459 0 L58.0146 0 L58.0146 -4.1094 Q58.0146 -5.6562 56.5615 -5.6562 Q55.499 -5.6562 55.0927 -5.0625 Q54.6865 -4.4688 54.6865 -3.3438 L54.6865 0 L53.624 0 L53.624 -6.4375 L54.4834 -6.4375 L54.6396 -5.5625 L54.7021 -5.5625 Q55.0146 -6.0625 55.5615 -6.2969 Q56.1084 -6.5469 56.7177 -6.5469 ZM63.5244 -6.5469 Q64.3525 -6.5469 64.9463 -6.1875 Q65.54 -5.8281 65.8525 -5.1719 Q66.1807 -4.5312 66.1807 -3.6406 L66.1807 -3.0156 L61.7744 -3.0156 Q61.8057 -1.9219 62.3369 -1.3438 Q62.8682 -0.7812 63.8213 -0.7812 Q64.4463 -0.7812 64.915 -0.8906 Q65.3838 -1.0156 65.8994 -1.2188 L65.8994 -0.2969 Q65.3994 -0.0781 64.915 0.0156 Q64.4463 0.125 63.7744 0.125 Q62.8682 0.125 62.165 -0.25 Q61.4619 -0.625 61.0713 -1.3594 Q60.6807 -2.0938 60.6807 -3.1719 Q60.6807 -4.2188 61.04 -4.9688 Q61.3994 -5.7344 62.04 -6.1406 Q62.6807 -6.5469 63.5244 -6.5469 ZM63.5088 -5.6875 Q62.7588 -5.6875 62.3213 -5.2031 Q61.8838 -4.7188 61.8057 -3.8594 L65.0713 -3.8594 Q65.0713 -4.6719 64.6963 -5.1719 Q64.3213 -5.6875 63.5088 -5.6875 ZM70.9018 -6.5469 Q72.0581 -6.5469 72.6362 -5.9844 Q73.23 -5.4375 73.23 -4.1875 L73.23 0 L72.1987 0 L72.1987 -4.1094 Q72.1987 -5.6562 70.7456 -5.6562 Q69.6831 -5.6562 69.2768 -5.0625 Q68.8706 -4.4688 68.8706 -3.3438 L68.8706 0 L67.8081 0 L67.8081 -6.4375 L68.6675 -6.4375 L68.8237 -5.5625 L68.8862 -5.5625 Q69.1987 -6.0625 69.7456 -6.2969 Q70.2925 -6.5469 70.9018 -6.5469 ZM77.3804 -0.75 Q77.6148 -0.75 77.8648 -0.7812 Q78.1148 -0.8281 78.271 -0.875 L78.271 -0.0781 Q78.1148 0.0156 77.8023 0.0625 Q77.4898 0.125 77.1929 0.125 Q76.6929 0.125 76.2554 -0.0469 Q75.8335 -0.2344 75.5679 -0.6562 Q75.3179 -1.0938 75.3179 -1.875 L75.3179 -5.6094 L74.396 -5.6094 L74.396 -6.125 L75.3179 -6.5469 L75.7398 -7.9062 L76.3648 -7.9062 L76.3648 -6.4375 L78.2241 -6.4375 L78.2241 -5.6094 L76.3648 -5.6094 L76.3648 -1.8906 Q76.3648 -1.3125 76.646 -1.0312 Q76.9273 -0.75 77.3804 -0.75 ZM79.1343 -2.3281 L83.6655 -4.2188 L79.1343 -6.3594 L79.1343 -7.2969 L84.7905 -4.4688 L84.7905 -3.875 L79.1343 -1.3906 L79.1343 -2.3281 ZM85.9983 -2.3281 L90.5296 -4.2188 L85.9983 -6.3594 L85.9983 -7.2969 L91.6546 -4.4688 L91.6546 -3.875 L85.9983 -1.3906 L85.9983 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath60);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(910.6538,-318.4156)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM9.7845 -2.2969 Q9.7377 -2.5 9.6439 -2.8906 Q9.5658 -3.2969 9.4564 -3.75 Q9.347 -4.2188 9.2533 -4.6094 Q9.1595 -5 9.1127 -5.1875 L9.0658 -5.1875 Q9.0345 -5 8.9408 -4.6094 Q8.8627 -4.2188 8.7533 -3.75 Q8.6439 -3.2969 8.5345 -2.8906 Q8.4408 -2.4844 8.3939 -2.2656 L7.8783 0 L5.9564 0 L4.097 -6.5469 L5.8627 -6.5469 L6.6283 -3.6406 Q6.7064 -3.3438 6.7689 -2.9219 Q6.847 -2.5156 6.8939 -2.125 Q6.9564 -1.7344 6.9877 -1.5 L7.0345 -1.5 Q7.0502 -1.6719 7.0814 -1.9531 Q7.1127 -2.2344 7.1595 -2.5312 Q7.222 -2.8281 7.2689 -3.0781 Q7.3158 -3.3281 7.3314 -3.4062 L8.1283 -6.5469 L10.097 -6.5469 L10.8783 -3.4062 Q10.9252 -3.2344 10.9877 -2.8594 Q11.0502 -2.5 11.097 -2.1094 Q11.1595 -1.7344 11.1595 -1.5 L11.2064 -1.5 Q11.2377 -1.7031 11.2845 -2.0938 Q11.347 -2.4844 11.4252 -2.9062 Q11.5033 -3.3438 11.597 -3.6406 L12.3783 -6.5469 L14.1283 -6.5469 L12.2377 0 L10.3002 0 L9.7845 -2.2969 ZM17.9472 -1.3125 Q18.2441 -1.3125 18.5097 -1.3594 Q18.791 -1.4219 19.0722 -1.5156 L19.0722 -0.1875 Q18.7754 -0.0625 18.3535 0.0312 Q17.9316 0.125 17.4316 0.125 Q16.8379 0.125 16.3691 -0.0625 Q15.916 -0.2656 15.6347 -0.7344 Q15.3691 -1.2188 15.3691 -2.0469 L15.3691 -5.2031 L14.5254 -5.2031 L14.5254 -5.9688 L15.5097 -6.5625 L16.0254 -7.9375 L17.166 -7.9375 L17.166 -6.5469 L18.9941 -6.5469 L18.9941 -5.2031 L17.166 -5.2031 L17.166 -2.0469 Q17.166 -1.6875 17.3691 -1.5 Q17.5879 -1.3125 17.9472 -1.3125 ZM25.7803 0 L25.1553 -2.0469 L22.0303 -2.0469 L21.4053 0 L19.4521 0 L22.4834 -8.6094 L24.7021 -8.6094 L27.7334 0 L25.7803 0 ZM24.0928 -5.5625 Q24.0303 -5.7656 23.9365 -6.0781 Q23.8428 -6.3906 23.749 -6.7031 Q23.6553 -7.0312 23.5928 -7.2656 Q23.5303 -7.0312 23.4209 -6.6719 Q23.3271 -6.3281 23.2334 -6 Q23.1553 -5.6875 23.0928 -5.5625 L22.4834 -3.5625 L24.7178 -3.5625 L24.0928 -5.5625 ZM34.6853 -6.5469 L34.6853 0 L33.3103 0 L33.076 -0.8438 L32.9822 -0.8438 Q32.6697 -0.3438 32.1228 -0.1094 Q31.576 0.125 30.9666 0.125 Q29.9041 0.125 29.2635 -0.4375 Q28.6385 -1.0156 28.6385 -2.2812 L28.6385 -6.5469 L30.4197 -6.5469 L30.4197 -2.7188 Q30.4197 -2.0312 30.6697 -1.6719 Q30.9197 -1.3125 31.4822 -1.3125 Q32.2947 -1.3125 32.5916 -1.8594 Q32.8885 -2.4219 32.8885 -3.4688 L32.8885 -6.5469 L34.6853 -6.5469 ZM39.3194 -1.3125 Q39.6163 -1.3125 39.8819 -1.3594 Q40.1631 -1.4219 40.4444 -1.5156 L40.4444 -0.1875 Q40.1475 -0.0625 39.7256 0.0312 Q39.3038 0.125 38.8038 0.125 Q38.21 0.125 37.7413 -0.0625 Q37.2881 -0.2656 37.0069 -0.7344 Q36.7413 -1.2188 36.7413 -2.0469 L36.7413 -5.2031 L35.8975 -5.2031 L35.8975 -5.9688 L36.8819 -6.5625 L37.3975 -7.9375 L38.5381 -7.9375 L38.5381 -6.5469 L40.3663 -6.5469 L40.3663 -5.2031 L38.5381 -5.2031 L38.5381 -2.0469 Q38.5381 -1.6875 38.7413 -1.5 Q38.96 -1.3125 39.3194 -1.3125 ZM43.543 -7.2656 Q43.543 -6.7812 43.5118 -6.3281 Q43.4805 -5.8906 43.4649 -5.7188 L43.5587 -5.7188 Q43.8712 -6.2188 44.3555 -6.4375 Q44.8555 -6.6719 45.4493 -6.6719 Q46.5274 -6.6719 47.168 -6.0938 Q47.8087 -5.5312 47.8087 -4.2656 L47.8087 0 L46.0274 0 L46.0274 -3.8281 Q46.0274 -5.25 44.9649 -5.25 Q44.168 -5.25 43.8555 -4.6875 Q43.543 -4.125 43.543 -3.0781 L43.543 0 L41.7618 0 L41.7618 -9.125 L43.543 -9.125 L43.543 -7.2656 ZM52.349 -6.6719 Q53.6927 -6.6719 54.4896 -5.8906 Q55.2865 -5.125 55.2865 -3.7031 L55.2865 -2.8281 L51.0677 -2.8281 Q51.0833 -2.0781 51.5052 -1.6406 Q51.9427 -1.2188 52.6927 -1.2188 Q53.3333 -1.2188 53.849 -1.3438 Q54.3646 -1.4688 54.9115 -1.7344 L54.9115 -0.3438 Q54.4271 -0.1094 53.8958 0 Q53.3646 0.125 52.6146 0.125 Q51.6302 0.125 50.8646 -0.2344 Q50.1146 -0.6094 49.6771 -1.3438 Q49.2552 -2.0938 49.2552 -3.2344 Q49.2552 -4.375 49.6302 -5.1406 Q50.0208 -5.9062 50.724 -6.2812 Q51.4271 -6.6719 52.349 -6.6719 ZM52.349 -5.4062 Q51.8333 -5.4062 51.4896 -5.0625 Q51.1615 -4.7344 51.099 -4.0156 L53.599 -4.0156 Q53.599 -4.625 53.2865 -5.0156 Q52.9896 -5.4062 52.349 -5.4062 ZM60.4566 -6.6719 Q61.5191 -6.6719 62.1441 -6.0938 Q62.7848 -5.5312 62.7848 -4.2656 L62.7848 0 L61.0035 0 L61.0035 -3.8281 Q61.0035 -4.5312 60.7379 -4.8906 Q60.4879 -5.25 59.941 -5.25 Q59.1285 -5.25 58.816 -4.6875 Q58.5191 -4.125 58.5191 -3.0781 L58.5191 0 L56.7379 0 L56.7379 -6.5469 L58.0973 -6.5469 L58.3473 -5.7188 L58.441 -5.7188 Q58.7535 -6.2188 59.3004 -6.4375 Q59.8473 -6.6719 60.4566 -6.6719 ZM67.3876 -1.3125 Q67.6844 -1.3125 67.9501 -1.3594 Q68.2313 -1.4219 68.5126 -1.5156 L68.5126 -0.1875 Q68.2157 -0.0625 67.7938 0.0312 Q67.3719 0.125 66.8719 0.125 Q66.2782 0.125 65.8094 -0.0625 Q65.3563 -0.2656 65.0751 -0.7344 Q64.8094 -1.2188 64.8094 -2.0469 L64.8094 -5.2031 L63.9657 -5.2031 L63.9657 -5.9688 L64.9501 -6.5625 L65.4657 -7.9375 L66.6063 -7.9375 L66.6063 -6.5469 L68.4344 -6.5469 L68.4344 -5.2031 L66.6063 -5.2031 L66.6063 -2.0469 Q66.6063 -1.6875 66.8094 -1.5 Q67.0282 -1.3125 67.3876 -1.3125 ZM70.7362 -9.125 Q71.1269 -9.125 71.4081 -8.9375 Q71.705 -8.75 71.705 -8.25 Q71.705 -7.75 71.4081 -7.5625 Q71.1269 -7.375 70.7362 -7.375 Q70.3144 -7.375 70.0331 -7.5625 Q69.7519 -7.75 69.7519 -8.25 Q69.7519 -8.75 70.0331 -8.9375 Q70.3144 -9.125 70.7362 -9.125 ZM71.6112 -6.5469 L71.6112 0 L69.83 0 L69.83 -6.5469 L71.6112 -6.5469 ZM76.1463 0.125 Q74.6931 0.125 73.8963 -0.6875 Q73.0994 -1.5 73.0994 -3.2344 Q73.0994 -4.4375 73.5056 -5.1875 Q73.9119 -5.9531 74.6306 -6.3125 Q75.365 -6.6719 76.3025 -6.6719 Q76.9744 -6.6719 77.4744 -6.5312 Q77.9744 -6.4062 78.3494 -6.2344 L77.8181 -4.8438 Q77.3963 -5.0156 77.0213 -5.125 Q76.6619 -5.2344 76.3025 -5.2344 Q74.9119 -5.2344 74.9119 -3.25 Q74.9119 -2.2656 75.2713 -1.7969 Q75.6463 -1.3281 76.3025 -1.3281 Q76.865 -1.3281 77.3025 -1.4688 Q77.74 -1.625 78.1463 -1.8906 L78.1463 -0.375 Q77.74 -0.1094 77.2869 0 Q76.8338 0.125 76.1463 0.125 ZM82.3456 -6.6875 Q83.6581 -6.6875 84.3612 -6.1094 Q85.0643 -5.5469 85.0643 -4.375 L85.0643 0 L83.8143 0 L83.4706 -0.8906 L83.4237 -0.8906 Q83.0018 -0.3594 82.5331 -0.1094 Q82.0643 0.125 81.2518 0.125 Q80.3768 0.125 79.7987 -0.3906 Q79.2206 -0.9062 79.2206 -1.9531 Q79.2206 -3 79.9549 -3.5 Q80.6893 -4 82.1581 -4.0469 L83.2987 -4.0781 L83.2987 -4.375 Q83.2987 -4.8906 83.0174 -5.125 Q82.7518 -5.3594 82.2674 -5.3594 Q81.7987 -5.3594 81.3299 -5.2188 Q80.8768 -5.0938 80.4237 -4.8906 L79.8299 -6.0938 Q80.3612 -6.375 81.0018 -6.5312 Q81.6424 -6.6875 82.3456 -6.6875 ZM82.5956 -3.0156 Q81.7362 -2.9844 81.3924 -2.6875 Q81.0643 -2.4062 81.0643 -1.9375 Q81.0643 -1.5312 81.2987 -1.3594 Q81.5331 -1.1875 81.9237 -1.1875 Q82.5018 -1.1875 82.8924 -1.5312 Q83.2987 -1.875 83.2987 -2.5 L83.2987 -3.0312 L82.5956 -3.0156 ZM89.6717 -1.3125 Q89.9686 -1.3125 90.2342 -1.3594 Q90.5155 -1.4219 90.7967 -1.5156 L90.7967 -0.1875 Q90.4998 -0.0625 90.078 0.0312 Q89.6561 0.125 89.1561 0.125 Q88.5623 0.125 88.0936 -0.0625 Q87.6405 -0.2656 87.3592 -0.7344 Q87.0936 -1.2188 87.0936 -2.0469 L87.0936 -5.2031 L86.2498 -5.2031 L86.2498 -5.9688 L87.2342 -6.5625 L87.7498 -7.9375 L88.8905 -7.9375 L88.8905 -6.5469 L90.7186 -6.5469 L90.7186 -5.2031 L88.8905 -5.2031 L88.8905 -2.0469 Q88.8905 -1.6875 89.0936 -1.5 Q89.3123 -1.3125 89.6717 -1.3125 ZM93.0204 -9.125 Q93.411 -9.125 93.6923 -8.9375 Q93.9891 -8.75 93.9891 -8.25 Q93.9891 -7.75 93.6923 -7.5625 Q93.411 -7.375 93.0204 -7.375 Q92.5985 -7.375 92.3173 -7.5625 Q92.036 -7.75 92.036 -8.25 Q92.036 -8.75 92.3173 -8.9375 Q92.5985 -9.125 93.0204 -9.125 ZM93.8954 -6.5469 L93.8954 0 L92.1141 0 L92.1141 -6.5469 L93.8954 -6.5469 ZM101.7273 -3.2812 Q101.7273 -1.6562 100.8679 -0.7656 Q100.0085 0.125 98.5398 0.125 Q97.6179 0.125 96.8992 -0.2656 Q96.196 -0.6719 95.7898 -1.4375 Q95.3835 -2.2031 95.3835 -3.2812 Q95.3835 -4.9219 96.2273 -5.7969 Q97.0867 -6.6719 98.571 -6.6719 Q99.4929 -6.6719 100.196 -6.2656 Q100.9148 -5.875 101.321 -5.125 Q101.7273 -4.375 101.7273 -3.2812 ZM97.196 -3.2812 Q97.196 -2.3125 97.5085 -1.8125 Q97.8367 -1.3125 98.5554 -1.3125 Q99.2585 -1.3125 99.571 -1.8125 Q99.8992 -2.3125 99.8992 -3.2812 Q99.8992 -4.2656 99.571 -4.75 Q99.2585 -5.2344 98.5398 -5.2344 Q97.8367 -5.2344 97.5085 -4.75 Q97.196 -4.2656 97.196 -3.2812 ZM106.921 -6.6719 Q107.9835 -6.6719 108.6085 -6.0938 Q109.2491 -5.5312 109.2491 -4.2656 L109.2491 0 L107.4678 0 L107.4678 -3.8281 Q107.4678 -4.5312 107.2022 -4.8906 Q106.9522 -5.25 106.4053 -5.25 Q105.5928 -5.25 105.2803 -4.6875 Q104.9835 -4.125 104.9835 -3.0781 L104.9835 0 L103.2022 0 L103.2022 -6.5469 L104.5616 -6.5469 L104.8116 -5.7188 L104.9053 -5.7188 Q105.2178 -6.2188 105.7647 -6.4375 Q106.3116 -6.6719 106.921 -6.6719 ZM113.0238 0 L111.2269 0 L111.2269 -8.5625 L116.1331 -8.5625 L116.1331 -7.0781 L113.0238 -7.0781 L113.0238 -4.875 L115.9144 -4.875 L115.9144 -3.3906 L113.0238 -3.3906 L113.0238 0 ZM118.5806 -9.125 Q118.9712 -9.125 119.2524 -8.9375 Q119.5493 -8.75 119.5493 -8.25 Q119.5493 -7.75 119.2524 -7.5625 Q118.9712 -7.375 118.5806 -7.375 Q118.1587 -7.375 117.8774 -7.5625 Q117.5962 -7.75 117.5962 -8.25 Q117.5962 -8.75 117.8774 -8.9375 Q118.1587 -9.125 118.5806 -9.125 ZM119.4556 -6.5469 L119.4556 0 L117.6743 0 L117.6743 -6.5469 L119.4556 -6.5469 ZM123.1156 0 L121.3343 0 L121.3343 -9.125 L123.1156 -9.125 L123.1156 0 ZM127.76 -1.3125 Q128.0568 -1.3125 128.3225 -1.3594 Q128.6037 -1.4219 128.885 -1.5156 L128.885 -0.1875 Q128.5881 -0.0625 128.1662 0.0312 Q127.7443 0.125 127.2443 0.125 Q126.6506 0.125 126.1818 -0.0625 Q125.7287 -0.2656 125.4475 -0.7344 Q125.1818 -1.2188 125.1818 -2.0469 L125.1818 -5.2031 L124.3381 -5.2031 L124.3381 -5.9688 L125.3225 -6.5625 L125.8381 -7.9375 L126.9787 -7.9375 L126.9787 -6.5469 L128.8068 -6.5469 L128.8068 -5.2031 L126.9787 -5.2031 L126.9787 -2.0469 Q126.9787 -1.6875 127.1818 -1.5 Q127.4006 -1.3125 127.76 -1.3125 ZM132.9055 -6.6719 Q134.2493 -6.6719 135.0461 -5.8906 Q135.843 -5.125 135.843 -3.7031 L135.843 -2.8281 L131.6243 -2.8281 Q131.6399 -2.0781 132.0618 -1.6406 Q132.4993 -1.2188 133.2493 -1.2188 Q133.8899 -1.2188 134.4055 -1.3438 Q134.9211 -1.4688 135.468 -1.7344 L135.468 -0.3438 Q134.9836 -0.1094 134.4524 0 Q133.9211 0.125 133.1711 0.125 Q132.1868 0.125 131.4211 -0.2344 Q130.6711 -0.6094 130.2336 -1.3438 Q129.8118 -2.0938 129.8118 -3.2344 Q129.8118 -4.375 130.1868 -5.1406 Q130.5774 -5.9062 131.2805 -6.2812 Q131.9836 -6.6719 132.9055 -6.6719 ZM132.9055 -5.4062 Q132.3899 -5.4062 132.0461 -5.0625 Q131.718 -4.7344 131.6555 -4.0156 L134.1555 -4.0156 Q134.1555 -4.625 133.843 -5.0156 Q133.5461 -5.4062 132.9055 -5.4062 ZM140.9507 -6.6719 Q141.0913 -6.6719 141.2632 -6.6562 Q141.4507 -6.6406 141.5601 -6.625 L141.4194 -4.9375 Q141.3413 -4.9688 141.1694 -4.9844 Q141.0132 -5 140.8882 -5 Q140.4351 -5 140.0132 -4.8438 Q139.5913 -4.6875 139.3257 -4.3125 Q139.0757 -3.9531 139.0757 -3.3438 L139.0757 0 L137.2944 0 L137.2944 -6.5469 L138.6538 -6.5469 L138.9194 -5.4531 L138.9976 -5.4531 Q139.2788 -5.9531 139.7788 -6.3125 Q140.2944 -6.6719 140.9507 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath61);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="638.526" x2="638.526" y1="-56.5951" style="fill:none; clip-path:url(#clipPath2);" y2="64.7831"
+      /><line x1="638.526" x2="140.4932" y1="64.7831" style="fill:none; clip-path:url(#clipPath2);" y2="64.7831"
+      /><line x1="638.526" x2="644.526" y1="-56.5951" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-46.2028"
+      /><line x1="638.526" x2="632.526" y1="-56.5951" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-46.2028"
+      /><path d="M269.8536 -70.7649 A6 6 0 0 0 269.8536 -82.7649" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><path d="M269.8536 -294.9465 A6 6 0 0 0 269.8536 -306.9465" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><path d="M269.8536 -360.5134 A6 6 0 0 0 269.8536 -372.5134" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><line x1="269.8536" x2="269.8536" y1="-499.3225" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-372.5134"
+      /><line x1="269.8536" x2="269.8536" y1="-360.5134" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-306.9465"
+      /><line x1="269.8536" x2="269.8536" y1="-294.9465" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-82.7649"
+      /><line x1="269.8536" x2="269.8536" y1="-70.7649" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-23.1201"
+      /><line x1="269.8536" x2="131.2908" y1="-23.1201" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-23.1201"
+      /><line x1="131.2908" x2="141.6831" y1="-23.1201" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-29.1201"
+      /><line x1="131.2908" x2="141.6831" y1="-23.1201" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-17.1201"
+      /><line x1="815.0505" x2="961.4991" y1="-103.8588" style="fill:none; clip-path:url(#clipPath2);" y2="-312.0715"
+      /><line x1="815.0505" x2="816.1216" y1="-103.8588" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-115.8109"
+      /><line x1="815.0505" x2="825.9368" y1="-103.8588" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-108.9072"
+      /><path d="M296.4085 -647.4835 A6 6 0 0 0 296.4085 -659.4835" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><line x1="296.4085" x2="296.4085" y1="-540.0107" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-647.4835"
+      /><line x1="296.4085" x2="296.4085" y1="-659.4835" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-706.5906"
+      /><line x1="296.4085" x2="580.1079" y1="-706.5906" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-706.5906"
+      /><line x1="580.1079" x2="580.1079" y1="-706.5906" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-804.2861"
+      /><line x1="580.1079" x2="730.3392" y1="-804.2861" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-804.2861"
+      /><line x1="730.3392" x2="719.9469" y1="-804.2861" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-798.2861"
+      /><line x1="730.3392" x2="719.9469" y1="-804.2861" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-810.2861"
+      /><line x1="1062.4588" x2="1082.8251" y1="-340.5876" style="fill:none; clip-path:url(#clipPath2);" y2="-340.5876"
+      /><line x1="1082.8251" x2="1082.8251" y1="-340.5876" style="fill:none; clip-path:url(#clipPath2);" y2="-542.4128"
+      /><line x1="1082.8251" x2="1043.4086" y1="-542.4128" style="fill:none; clip-path:url(#clipPath2);" y2="-542.4128"
+      /><line x1="1062.4588" x2="1072.8511" y1="-340.5876" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-346.5876"
+      /><line x1="1062.4588" x2="1072.8511" y1="-340.5876" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-334.5876"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="910.0563" y="-424.3847" width="143" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="910.0563" y="-424.3847" width="143" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(929.7039,-406.3847)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.3218 0.125 Q16.4781 0.125 15.8062 -0.2188 Q15.15 -0.5781 14.7593 -1.3125 Q14.3843 -2.0469 14.3843 -3.1875 Q14.3843 -4.375 14.775 -5.1094 Q15.1812 -5.8594 15.8531 -6.2031 Q16.5406 -6.5469 17.4 -6.5469 Q17.8843 -6.5469 18.3375 -6.4375 Q18.8062 -6.3438 19.0875 -6.2031 L18.775 -5.3281 Q18.4781 -5.4375 18.0875 -5.5312 Q17.7125 -5.625 17.3687 -5.625 Q15.4781 -5.625 15.4781 -3.1875 Q15.4781 -2.0312 15.9312 -1.4062 Q16.4 -0.7969 17.3218 -0.7969 Q17.8375 -0.7969 18.2437 -0.9062 Q18.65 -1.0156 18.9781 -1.1562 L18.9781 -0.2344 Q18.6656 -0.0625 18.275 0.0312 Q17.8843 0.125 17.3218 0.125 ZM26.0975 -3.2344 Q26.0975 -1.625 25.285 -0.75 Q24.4725 0.125 23.0975 0.125 Q22.2538 0.125 21.5819 -0.2656 Q20.91 -0.6562 20.5194 -1.4062 Q20.1444 -2.1562 20.1444 -3.2344 Q20.1444 -4.8281 20.9413 -5.6875 Q21.7538 -6.5469 23.1288 -6.5469 Q24.0194 -6.5469 24.6756 -6.1562 Q25.3475 -5.7656 25.7225 -5.0312 Q26.0975 -4.2969 26.0975 -3.2344 ZM21.2381 -3.2344 Q21.2381 -2.0938 21.6913 -1.4219 Q22.1444 -0.75 23.1288 -0.75 Q24.0975 -0.75 24.5506 -1.4219 Q25.0038 -2.0938 25.0038 -3.2344 Q25.0038 -4.375 24.5506 -5.0156 Q24.0975 -5.6562 23.1131 -5.6562 Q22.1288 -5.6562 21.6756 -5.0156 Q21.2381 -4.375 21.2381 -3.2344 ZM30.8576 -6.5469 Q32.0138 -6.5469 32.5919 -5.9844 Q33.1857 -5.4375 33.1857 -4.1875 L33.1857 0 L32.1544 0 L32.1544 -4.1094 Q32.1544 -5.6562 30.7013 -5.6562 Q29.6388 -5.6562 29.2326 -5.0625 Q28.8263 -4.4688 28.8263 -3.3438 L28.8263 0 L27.7638 0 L27.7638 -6.4375 L28.6232 -6.4375 L28.7794 -5.5625 L28.8419 -5.5625 Q29.1544 -6.0625 29.7013 -6.2969 Q30.2482 -6.5469 30.8576 -6.5469 ZM38.1486 -5.6094 L36.5236 -5.6094 L36.5236 0 L35.4767 0 L35.4767 -5.6094 L34.3517 -5.6094 L34.3517 -6.1094 L35.4767 -6.4688 L35.4767 -6.8438 Q35.4767 -8.0938 36.0236 -8.6406 Q36.5705 -9.1875 37.5549 -9.1875 Q37.9455 -9.1875 38.258 -9.1094 Q38.5861 -9.0469 38.8049 -8.9688 L38.5392 -8.1406 Q38.3361 -8.2031 38.0861 -8.25 Q37.8361 -8.3125 37.5705 -8.3125 Q37.0392 -8.3125 36.7736 -7.9531 Q36.5236 -7.6094 36.5236 -6.8594 L36.5236 -6.4375 L38.1486 -6.4375 L38.1486 -5.6094 ZM39.8548 -8.8438 Q40.0891 -8.8438 40.2766 -8.6719 Q40.4641 -8.5156 40.4641 -8.1719 Q40.4641 -7.8438 40.2766 -7.6719 Q40.0891 -7.5 39.8548 -7.5 Q39.5891 -7.5 39.4016 -7.6719 Q39.2298 -7.8438 39.2298 -8.1719 Q39.2298 -8.5156 39.4016 -8.6719 Q39.5891 -8.8438 39.8548 -8.8438 ZM40.3704 -6.4375 L40.3704 0 L39.3079 0 L39.3079 -6.4375 L40.3704 -6.4375 ZM44.6852 -6.5469 Q45.3258 -6.5469 45.8258 -6.3125 Q46.3414 -6.0781 46.7008 -5.5781 L46.7633 -5.5781 L46.9039 -6.4375 L47.7477 -6.4375 L47.7477 0.1094 Q47.7477 1.4844 47.0445 2.1719 Q46.3414 2.875 44.8727 2.875 Q43.4508 2.875 42.5445 2.4688 L42.5445 1.5 Q43.4977 2 44.9352 2 Q45.7633 2 46.232 1.5156 Q46.7008 1.0312 46.7008 0.1875 L46.7008 -0.0625 Q46.7008 -0.2031 46.7164 -0.4688 Q46.732 -0.75 46.7477 -0.8594 L46.6852 -0.8594 Q46.0445 0.125 44.7008 0.125 Q43.4508 0.125 42.7477 -0.75 Q42.0445 -1.625 42.0445 -3.2031 Q42.0445 -4.7344 42.7477 -5.6406 Q43.4508 -6.5469 44.6852 -6.5469 ZM44.8258 -5.6562 Q44.0289 -5.6562 43.5758 -5.0156 Q43.1383 -4.375 43.1383 -3.1875 Q43.1383 -2 43.5758 -1.375 Q44.0133 -0.75 44.857 -0.75 Q45.8258 -0.75 46.2633 -1.2656 Q46.7164 -1.7812 46.7164 -2.9531 L46.7164 -3.2031 Q46.7164 -4.5312 46.2633 -5.0938 Q45.8102 -5.6562 44.8258 -5.6562 ZM55.159 -6.4375 L55.159 0 L54.2996 0 L54.1433 -0.8594 L54.0965 -0.8594 Q53.784 -0.3438 53.2215 -0.1094 Q52.6746 0.125 52.0496 0.125 Q50.8933 0.125 50.2996 -0.4375 Q49.7215 -1 49.7215 -2.2188 L49.7215 -6.4375 L50.784 -6.4375 L50.784 -2.2969 Q50.784 -0.75 52.2058 -0.75 Q53.284 -0.75 53.6902 -1.3438 Q54.1121 -1.9531 54.1121 -3.0781 L54.1121 -6.4375 L55.159 -6.4375 ZM60.2 -6.5469 Q60.3875 -6.5469 60.5906 -6.5312 Q60.8094 -6.5156 60.9656 -6.4844 L60.825 -5.5156 Q60.6688 -5.5469 60.4813 -5.5625 Q60.2938 -5.5938 60.1375 -5.5938 Q59.6375 -5.5938 59.2 -5.3125 Q58.7781 -5.0469 58.5125 -4.5625 Q58.2625 -4.0781 58.2625 -3.4375 L58.2625 0 L57.2 0 L57.2 -6.4375 L58.075 -6.4375 L58.1844 -5.25 L58.2313 -5.25 Q58.5438 -5.7812 59.0281 -6.1562 Q59.5281 -6.5469 60.2 -6.5469 ZM64.5936 -6.5469 Q65.7654 -6.5469 66.3279 -6.0312 Q66.9061 -5.5156 66.9061 -4.375 L66.9061 0 L66.1248 0 L65.9217 -0.9062 L65.8748 -0.9062 Q65.4529 -0.3906 64.9842 -0.125 Q64.5311 0.125 63.7186 0.125 Q62.8436 0.125 62.2654 -0.3281 Q61.6873 -0.7969 61.6873 -1.7812 Q61.6873 -2.75 62.4373 -3.2656 Q63.2029 -3.7969 64.7811 -3.8438 L65.8748 -3.875 L65.8748 -4.2656 Q65.8748 -5.0625 65.5154 -5.375 Q65.1717 -5.6875 64.5311 -5.6875 Q64.0311 -5.6875 63.5779 -5.5312 Q63.1248 -5.3906 62.7186 -5.2031 L62.4061 -5.9844 Q62.8279 -6.2188 63.3904 -6.375 Q63.9686 -6.5469 64.5936 -6.5469 ZM64.9061 -3.1094 Q63.7029 -3.0625 63.2342 -2.7188 Q62.7811 -2.3906 62.7811 -1.7812 Q62.7811 -1.2344 63.1092 -0.9844 Q63.4373 -0.7344 63.9529 -0.7344 Q64.7811 -0.7344 65.3123 -1.1719 Q65.8592 -1.625 65.8592 -2.5625 L65.8592 -3.1406 L64.9061 -3.1094 ZM71.0443 -0.75 Q71.2787 -0.75 71.5287 -0.7812 Q71.7787 -0.8281 71.935 -0.875 L71.935 -0.0781 Q71.7787 0.0156 71.4662 0.0625 Q71.1537 0.125 70.8568 0.125 Q70.3568 0.125 69.9193 -0.0469 Q69.4975 -0.2344 69.2318 -0.6562 Q68.9818 -1.0938 68.9818 -1.875 L68.9818 -5.6094 L68.06 -5.6094 L68.06 -6.125 L68.9818 -6.5469 L69.4037 -7.9062 L70.0287 -7.9062 L70.0287 -6.4375 L71.8881 -6.4375 L71.8881 -5.6094 L70.0287 -5.6094 L70.0287 -1.8906 Q70.0287 -1.3125 70.31 -1.0312 Q70.5912 -0.75 71.0443 -0.75 ZM73.767 -8.8438 Q74.0014 -8.8438 74.1889 -8.6719 Q74.3764 -8.5156 74.3764 -8.1719 Q74.3764 -7.8438 74.1889 -7.6719 Q74.0014 -7.5 73.767 -7.5 Q73.5014 -7.5 73.3139 -7.6719 Q73.142 -7.8438 73.142 -8.1719 Q73.142 -8.5156 73.3139 -8.6719 Q73.5014 -8.8438 73.767 -8.8438 ZM74.2826 -6.4375 L74.2826 0 L73.2201 0 L73.2201 -6.4375 L74.2826 -6.4375 ZM81.9099 -3.2344 Q81.9099 -1.625 81.0974 -0.75 Q80.2849 0.125 78.9099 0.125 Q78.0661 0.125 77.3943 -0.2656 Q76.7224 -0.6562 76.3318 -1.4062 Q75.9568 -2.1562 75.9568 -3.2344 Q75.9568 -4.8281 76.7536 -5.6875 Q77.5661 -6.5469 78.9411 -6.5469 Q79.8318 -6.5469 80.488 -6.1562 Q81.1599 -5.7656 81.5349 -5.0312 Q81.9099 -4.2969 81.9099 -3.2344 ZM77.0505 -3.2344 Q77.0505 -2.0938 77.5036 -1.4219 Q77.9568 -0.75 78.9411 -0.75 Q79.9099 -0.75 80.363 -1.4219 Q80.8161 -2.0938 80.8161 -3.2344 Q80.8161 -4.375 80.363 -5.0156 Q79.9099 -5.6562 78.9255 -5.6562 Q77.9411 -5.6562 77.488 -5.0156 Q77.0505 -4.375 77.0505 -3.2344 ZM86.67 -6.5469 Q87.8262 -6.5469 88.4043 -5.9844 Q88.9981 -5.4375 88.9981 -4.1875 L88.9981 0 L87.9668 0 L87.9668 -4.1094 Q87.9668 -5.6562 86.5137 -5.6562 Q85.4512 -5.6562 85.045 -5.0625 Q84.6387 -4.4688 84.6387 -3.3438 L84.6387 0 L83.5762 0 L83.5762 -6.4375 L84.4356 -6.4375 L84.5918 -5.5625 L84.6543 -5.5625 Q84.9668 -6.0625 85.5137 -6.2969 Q86.0606 -6.5469 86.67 -6.5469 ZM90.5704 -2.3281 L95.1016 -4.2188 L90.5704 -6.3594 L90.5704 -7.2969 L96.2266 -4.4688 L96.2266 -3.875 L90.5704 -1.3906 L90.5704 -2.3281 ZM97.4344 -2.3281 L101.9657 -4.2188 L97.4344 -6.3594 L97.4344 -7.2969 L103.0907 -4.4688 L103.0907 -3.875 L97.4344 -1.3906 L97.4344 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath62);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(920.0563,-390.0406)"
+    ><path d="M3.5781 -8.5625 Q5.3281 -8.5625 6.1562 -7.9219 Q7 -7.2969 7 -6 Q7 -5.4062 6.7656 -4.9688 Q6.5469 -4.5312 6.1719 -4.2188 Q5.8125 -3.9219 5.4062 -3.7344 L7.9219 0 L5.9062 0 L3.8594 -3.2812 L2.8906 -3.2812 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L3.5781 -8.5625 ZM3.4375 -7.0781 L2.8906 -7.0781 L2.8906 -4.7656 L3.4844 -4.7656 Q4.375 -4.7656 4.7656 -5.0625 Q5.1562 -5.3594 5.1562 -5.9531 Q5.1562 -6.5625 4.7344 -6.8125 Q4.3281 -7.0781 3.4375 -7.0781 ZM11.5607 -6.6719 Q12.9044 -6.6719 13.7013 -5.8906 Q14.4982 -5.125 14.4982 -3.7031 L14.4982 -2.8281 L10.2794 -2.8281 Q10.2951 -2.0781 10.7169 -1.6406 Q11.1544 -1.2188 11.9044 -1.2188 Q12.5451 -1.2188 13.0607 -1.3438 Q13.5763 -1.4688 14.1232 -1.7344 L14.1232 -0.3438 Q13.6388 -0.1094 13.1076 0 Q12.5763 0.125 11.8263 0.125 Q10.8419 0.125 10.0763 -0.2344 Q9.3263 -0.6094 8.8888 -1.3438 Q8.4669 -2.0938 8.4669 -3.2344 Q8.4669 -4.375 8.8419 -5.1406 Q9.2326 -5.9062 9.9357 -6.2812 Q10.6388 -6.6719 11.5607 -6.6719 ZM11.5607 -5.4062 Q11.0451 -5.4062 10.7013 -5.0625 Q10.3732 -4.7344 10.3107 -4.0156 L12.8107 -4.0156 Q12.8107 -4.625 12.4982 -5.0156 Q12.2013 -5.4062 11.5607 -5.4062 ZM20.5277 -1.9375 Q20.5277 -0.9531 19.8246 -0.4062 Q19.1215 0.125 17.7309 0.125 Q17.0434 0.125 16.5434 0.0312 Q16.059 -0.0625 15.559 -0.2656 L15.559 -1.7344 Q16.0902 -1.5 16.6996 -1.3438 Q17.309 -1.1875 17.7777 -1.1875 Q18.309 -1.1875 18.5277 -1.3438 Q18.7621 -1.5 18.7621 -1.75 Q18.7621 -1.9219 18.6684 -2.0469 Q18.5746 -2.1875 18.2777 -2.3438 Q17.9809 -2.5156 17.3402 -2.7812 Q16.7309 -3.0469 16.3246 -3.2969 Q15.934 -3.5625 15.7465 -3.9219 Q15.559 -4.2969 15.559 -4.8438 Q15.559 -5.7656 16.2621 -6.2188 Q16.9652 -6.6719 18.1371 -6.6719 Q18.7621 -6.6719 19.309 -6.5469 Q19.8559 -6.4375 20.4496 -6.1562 L19.9027 -4.875 Q19.434 -5.0781 18.9965 -5.2188 Q18.559 -5.3594 18.1215 -5.3594 Q17.3246 -5.3594 17.3246 -4.9219 Q17.3246 -4.7656 17.4184 -4.6406 Q17.5277 -4.5156 17.8246 -4.3594 Q18.1215 -4.2188 18.6996 -3.9844 Q19.2621 -3.75 19.6684 -3.5 Q20.0746 -3.2656 20.2934 -2.8906 Q20.5277 -2.5312 20.5277 -1.9375 ZM24.6793 -1.3125 Q24.9762 -1.3125 25.2418 -1.3594 Q25.523 -1.4219 25.8043 -1.5156 L25.8043 -0.1875 Q25.5074 -0.0625 25.0855 0.0312 Q24.6637 0.125 24.1637 0.125 Q23.5699 0.125 23.1012 -0.0625 Q22.648 -0.2656 22.3668 -0.7344 Q22.1012 -1.2188 22.1012 -2.0469 L22.1012 -5.2031 L21.2574 -5.2031 L21.2574 -5.9688 L22.2418 -6.5625 L22.7574 -7.9375 L23.898 -7.9375 L23.898 -6.5469 L25.7262 -6.5469 L25.7262 -5.2031 L23.898 -5.2031 L23.898 -2.0469 Q23.898 -1.6875 24.1012 -1.5 Q24.3199 -1.3125 24.6793 -1.3125 ZM30.5592 0 L28.7467 0 L28.7467 -7.0625 L26.4186 -7.0625 L26.4186 -8.5625 L32.8873 -8.5625 L32.8873 -7.0625 L30.5592 -7.0625 L30.5592 0 ZM36.7729 -6.6719 Q38.1166 -6.6719 38.9135 -5.8906 Q39.7104 -5.125 39.7104 -3.7031 L39.7104 -2.8281 L35.4916 -2.8281 Q35.5072 -2.0781 35.9291 -1.6406 Q36.3666 -1.2188 37.1166 -1.2188 Q37.7572 -1.2188 38.2729 -1.3438 Q38.7885 -1.4688 39.3354 -1.7344 L39.3354 -0.3438 Q38.851 -0.1094 38.3197 0 Q37.7885 0.125 37.0385 0.125 Q36.0541 0.125 35.2885 -0.2344 Q34.5385 -0.6094 34.101 -1.3438 Q33.6791 -2.0938 33.6791 -3.2344 Q33.6791 -4.375 34.0541 -5.1406 Q34.4447 -5.9062 35.1479 -6.2812 Q35.851 -6.6719 36.7729 -6.6719 ZM36.7729 -5.4062 Q36.2572 -5.4062 35.9135 -5.0625 Q35.5854 -4.7344 35.5229 -4.0156 L38.0229 -4.0156 Q38.0229 -4.625 37.7104 -5.0156 Q37.4135 -5.4062 36.7729 -5.4062 ZM48.8493 -6.6719 Q49.9743 -6.6719 50.5368 -6.0938 Q51.1149 -5.5312 51.1149 -4.2656 L51.1149 0 L49.318 0 L49.318 -3.8281 Q49.318 -5.25 48.3337 -5.25 Q47.6305 -5.25 47.318 -4.7344 Q47.0212 -4.2344 47.0212 -3.2812 L47.0212 0 L45.2399 0 L45.2399 -3.8281 Q45.2399 -5.25 44.2555 -5.25 Q43.5055 -5.25 43.2243 -4.6875 Q42.943 -4.125 42.943 -3.0781 L42.943 0 L41.1618 0 L41.1618 -6.5469 L42.5212 -6.5469 L42.7712 -5.7188 L42.8649 -5.7188 Q43.1618 -6.2188 43.6774 -6.4375 Q44.2087 -6.6719 44.7712 -6.6719 Q45.4899 -6.6719 45.9899 -6.4375 Q46.5055 -6.2031 46.7712 -5.7188 L46.9274 -5.7188 Q47.2243 -6.2188 47.7555 -6.4375 Q48.2868 -6.6719 48.8493 -6.6719 ZM56.5865 -6.6719 Q57.6959 -6.6719 58.3834 -5.8125 Q59.0709 -4.9531 59.0709 -3.2812 Q59.0709 -1.625 58.3521 -0.75 Q57.649 0.125 56.5396 0.125 Q55.8365 0.125 55.4146 -0.125 Q54.9928 -0.3906 54.7271 -0.7188 L54.6334 -0.7188 Q54.7271 -0.2188 54.7271 0.2344 L54.7271 2.875 L52.9459 2.875 L52.9459 -6.5469 L54.399 -6.5469 L54.649 -5.7031 L54.7271 -5.7031 Q54.9928 -6.0938 55.4303 -6.375 Q55.8834 -6.6719 56.5865 -6.6719 ZM56.024 -5.25 Q55.3209 -5.25 55.0396 -4.8125 Q54.7584 -4.375 54.7271 -3.4844 L54.7271 -3.2969 Q54.7271 -2.3594 55.0084 -1.8438 Q55.2896 -1.3281 56.0396 -1.3281 Q56.649 -1.3281 56.9459 -1.8438 Q57.2428 -2.3594 57.2428 -3.3125 Q57.2428 -5.25 56.024 -5.25 ZM63.2294 -6.6875 Q64.5419 -6.6875 65.2451 -6.1094 Q65.9482 -5.5469 65.9482 -4.375 L65.9482 0 L64.6982 0 L64.3544 -0.8906 L64.3076 -0.8906 Q63.8857 -0.3594 63.4169 -0.1094 Q62.9482 0.125 62.1357 0.125 Q61.2607 0.125 60.6826 -0.3906 Q60.1044 -0.9062 60.1044 -1.9531 Q60.1044 -3 60.8388 -3.5 Q61.5732 -4 63.0419 -4.0469 L64.1826 -4.0781 L64.1826 -4.375 Q64.1826 -4.8906 63.9013 -5.125 Q63.6357 -5.3594 63.1513 -5.3594 Q62.6826 -5.3594 62.2138 -5.2188 Q61.7607 -5.0938 61.3076 -4.8906 L60.7138 -6.0938 Q61.2451 -6.375 61.8857 -6.5312 Q62.5263 -6.6875 63.2294 -6.6875 ZM63.4794 -3.0156 Q62.6201 -2.9844 62.2763 -2.6875 Q61.9482 -2.4062 61.9482 -1.9375 Q61.9482 -1.5312 62.1826 -1.3594 Q62.4169 -1.1875 62.8076 -1.1875 Q63.3857 -1.1875 63.7763 -1.5312 Q64.1826 -1.875 64.1826 -2.5 L64.1826 -3.0312 L63.4794 -3.0156 ZM69.5712 0 L67.79 0 L67.79 -9.125 L69.5712 -9.125 L69.5712 0 ZM74.2156 -1.3125 Q74.5125 -1.3125 74.7781 -1.3594 Q75.0594 -1.4219 75.3406 -1.5156 L75.3406 -0.1875 Q75.0437 -0.0625 74.6219 0.0312 Q74.2 0.125 73.7 0.125 Q73.1062 0.125 72.6375 -0.0625 Q72.1844 -0.2656 71.9031 -0.7344 Q71.6375 -1.2188 71.6375 -2.0469 L71.6375 -5.2031 L70.7937 -5.2031 L70.7937 -5.9688 L71.7781 -6.5625 L72.2937 -7.9375 L73.4344 -7.9375 L73.4344 -6.5469 L75.2625 -6.5469 L75.2625 -5.2031 L73.4344 -5.2031 L73.4344 -2.0469 Q73.4344 -1.6875 73.6375 -1.5 Q73.8562 -1.3125 74.2156 -1.3125 ZM79.3612 -6.6719 Q80.7049 -6.6719 81.5018 -5.8906 Q82.2987 -5.125 82.2987 -3.7031 L82.2987 -2.8281 L78.0799 -2.8281 Q78.0955 -2.0781 78.5174 -1.6406 Q78.9549 -1.2188 79.7049 -1.2188 Q80.3455 -1.2188 80.8612 -1.3438 Q81.3768 -1.4688 81.9237 -1.7344 L81.9237 -0.3438 Q81.4393 -0.1094 80.908 0 Q80.3768 0.125 79.6268 0.125 Q78.6424 0.125 77.8768 -0.2344 Q77.1268 -0.6094 76.6893 -1.3438 Q76.2674 -2.0938 76.2674 -3.2344 Q76.2674 -4.375 76.6424 -5.1406 Q77.033 -5.9062 77.7362 -6.2812 Q78.4393 -6.6719 79.3612 -6.6719 ZM79.3612 -5.4062 Q78.8455 -5.4062 78.5018 -5.0625 Q78.1737 -4.7344 78.1112 -4.0156 L80.6112 -4.0156 Q80.6112 -4.625 80.2987 -5.0156 Q80.0018 -5.4062 79.3612 -5.4062 ZM87.5313 -7.1719 Q86.4845 -7.1719 85.922 -6.3906 Q85.3751 -5.6094 85.3751 -4.2656 Q85.3751 -2.8906 85.8907 -2.1406 Q86.4063 -1.3906 87.5313 -1.3906 Q88.0626 -1.3906 88.5782 -1.5 Q89.0938 -1.625 89.7188 -1.8438 L89.7188 -0.3281 Q89.1563 -0.0938 88.5938 0.0156 Q88.047 0.125 87.3595 0.125 Q86.047 0.125 85.1876 -0.4219 Q84.3282 -0.9688 83.922 -1.9531 Q83.5157 -2.9531 83.5157 -4.2656 Q83.5157 -5.5625 83.9688 -6.5625 Q84.4376 -7.5625 85.3282 -8.125 Q86.2345 -8.6875 87.5313 -8.6875 Q88.172 -8.6875 88.8126 -8.5156 Q89.4532 -8.3594 90.0313 -8.0938 L89.4532 -6.6094 Q88.9688 -6.8438 88.4845 -7 Q88.0001 -7.1719 87.5313 -7.1719 ZM97.3473 -3.2812 Q97.3473 -1.6562 96.4879 -0.7656 Q95.6285 0.125 94.1598 0.125 Q93.2379 0.125 92.5191 -0.2656 Q91.816 -0.6719 91.4098 -1.4375 Q91.0035 -2.2031 91.0035 -3.2812 Q91.0035 -4.9219 91.8473 -5.7969 Q92.7066 -6.6719 94.191 -6.6719 Q95.1129 -6.6719 95.816 -6.2656 Q96.5348 -5.875 96.941 -5.125 Q97.3473 -4.375 97.3473 -3.2812 ZM92.816 -3.2812 Q92.816 -2.3125 93.1285 -1.8125 Q93.4566 -1.3125 94.1754 -1.3125 Q94.8785 -1.3125 95.191 -1.8125 Q95.5191 -2.3125 95.5191 -3.2812 Q95.5191 -4.2656 95.191 -4.75 Q94.8785 -5.2344 94.1598 -5.2344 Q93.4566 -5.2344 93.1285 -4.75 Q92.816 -4.2656 92.816 -3.2812 ZM102.541 -6.6719 Q103.6035 -6.6719 104.2285 -6.0938 Q104.8691 -5.5312 104.8691 -4.2656 L104.8691 0 L103.0878 0 L103.0878 -3.8281 Q103.0878 -4.5312 102.8222 -4.8906 Q102.5722 -5.25 102.0253 -5.25 Q101.2128 -5.25 100.9003 -4.6875 Q100.6035 -4.125 100.6035 -3.0781 L100.6035 0 L98.8222 0 L98.8222 -6.5469 L100.1816 -6.5469 L100.4316 -5.7188 L100.5253 -5.7188 Q100.8378 -6.2188 101.3847 -6.4375 Q101.9316 -6.6719 102.541 -6.6719 ZM110.3313 -5.2031 L108.7844 -5.2031 L108.7844 0 L106.9875 0 L106.9875 -5.2031 L106.0031 -5.2031 L106.0031 -6.0781 L106.9875 -6.5469 L106.9875 -7.0312 Q106.9875 -7.875 107.2688 -8.3281 Q107.55 -8.7969 108.0656 -8.9844 Q108.5969 -9.1875 109.3156 -9.1875 Q109.8313 -9.1875 110.2531 -9.0938 Q110.6906 -9.0156 110.9563 -8.9062 L110.5031 -7.5938 Q110.3 -7.6562 110.05 -7.7031 Q109.8156 -7.7656 109.5031 -7.7656 Q109.1281 -7.7656 108.9563 -7.5312 Q108.7844 -7.3125 108.7844 -6.9531 L108.7844 -6.5469 L110.3313 -6.5469 L110.3313 -5.2031 ZM112.2565 -9.125 Q112.6472 -9.125 112.9284 -8.9375 Q113.2253 -8.75 113.2253 -8.25 Q113.2253 -7.75 112.9284 -7.5625 Q112.6472 -7.375 112.2565 -7.375 Q111.8347 -7.375 111.5534 -7.5625 Q111.2722 -7.75 111.2722 -8.25 Q111.2722 -8.75 111.5534 -8.9375 Q111.8347 -9.125 112.2565 -9.125 ZM113.1315 -6.5469 L113.1315 0 L111.3503 0 L111.3503 -6.5469 L113.1315 -6.5469 ZM117.1353 -6.6719 Q118.3384 -6.6719 119.0259 -5.7188 L119.0728 -5.7188 L119.2134 -6.5469 L120.729 -6.5469 L120.729 0.0156 Q120.729 1.4219 119.9009 2.1406 Q119.0728 2.875 117.4634 2.875 Q116.7603 2.875 116.1665 2.7969 Q115.5728 2.7188 115.0103 2.5 L115.0103 1.0625 Q116.2134 1.5781 117.5572 1.5781 Q118.9478 1.5781 118.9478 0.0781 L118.9478 -0.0469 Q118.9478 -0.25 118.9634 -0.4688 Q118.979 -0.6875 118.9947 -0.8594 L118.9478 -0.8594 Q118.604 -0.3438 118.1353 -0.1094 Q117.6665 0.125 117.0884 0.125 Q115.9165 0.125 115.2603 -0.7656 Q114.6197 -1.6719 114.6197 -3.2656 Q114.6197 -4.875 115.2915 -5.7656 Q115.9634 -6.6719 117.1353 -6.6719 ZM117.6978 -5.2188 Q116.4322 -5.2188 116.4322 -3.2344 Q116.4322 -1.2812 117.7134 -1.2812 Q118.4009 -1.2812 118.729 -1.6719 Q119.0572 -2.0625 119.0572 -3.0312 L119.0572 -3.25 Q119.0572 -4.3125 118.729 -4.7656 Q118.4165 -5.2188 117.6978 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath63);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-226.5032" y="-38.8101" width="176" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-226.5032" y="-38.8101" width="176" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-177.5032,-20.8101)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath64);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-216.5032,-4.466)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 ZM89.7323 -1.1875 L83.9042 -3.75 L83.9042 -4.5938 L89.7323 -7.5 L89.7323 -6.0938 L85.7167 -4.2344 L89.7323 -2.5938 L89.7323 -1.1875 ZM94.9714 -7.1719 Q93.9245 -7.1719 93.362 -6.3906 Q92.8151 -5.6094 92.8151 -4.2656 Q92.8151 -2.8906 93.3308 -2.1406 Q93.8464 -1.3906 94.9714 -1.3906 Q95.5026 -1.3906 96.0183 -1.5 Q96.5339 -1.625 97.1589 -1.8438 L97.1589 -0.3281 Q96.5964 -0.0938 96.0339 0.0156 Q95.487 0.125 94.7995 0.125 Q93.487 0.125 92.6276 -0.4219 Q91.7683 -0.9688 91.362 -1.9531 Q90.9558 -2.9531 90.9558 -4.2656 Q90.9558 -5.5625 91.4089 -6.5625 Q91.8776 -7.5625 92.7683 -8.125 Q93.6745 -8.6875 94.9714 -8.6875 Q95.612 -8.6875 96.2526 -8.5156 Q96.8933 -8.3594 97.4714 -8.0938 L96.8933 -6.6094 Q96.4089 -6.8438 95.9245 -7 Q95.4401 -7.1719 94.9714 -7.1719 ZM100.6154 0 L98.8342 0 L98.8342 -9.125 L100.6154 -9.125 L100.6154 0 ZM103.4005 -9.125 Q103.7911 -9.125 104.0723 -8.9375 Q104.3692 -8.75 104.3692 -8.25 Q104.3692 -7.75 104.0723 -7.5625 Q103.7911 -7.375 103.4005 -7.375 Q102.9786 -7.375 102.6973 -7.5625 Q102.4161 -7.75 102.4161 -8.25 Q102.4161 -8.75 102.6973 -8.9375 Q102.9786 -9.125 103.4005 -9.125 ZM104.2755 -6.5469 L104.2755 0 L102.4942 0 L102.4942 -6.5469 L104.2755 -6.5469 ZM108.8574 -6.6719 Q110.2011 -6.6719 110.998 -5.8906 Q111.7949 -5.125 111.7949 -3.7031 L111.7949 -2.8281 L107.5761 -2.8281 Q107.5917 -2.0781 108.0136 -1.6406 Q108.4511 -1.2188 109.2011 -1.2188 Q109.8417 -1.2188 110.3574 -1.3438 Q110.873 -1.4688 111.4199 -1.7344 L111.4199 -0.3438 Q110.9355 -0.1094 110.4042 0 Q109.873 0.125 109.123 0.125 Q108.1386 0.125 107.373 -0.2344 Q106.623 -0.6094 106.1855 -1.3438 Q105.7636 -2.0938 105.7636 -3.2344 Q105.7636 -4.375 106.1386 -5.1406 Q106.5292 -5.9062 107.2324 -6.2812 Q107.9355 -6.6719 108.8574 -6.6719 ZM108.8574 -5.4062 Q108.3417 -5.4062 107.998 -5.0625 Q107.6699 -4.7344 107.6074 -4.0156 L110.1074 -4.0156 Q110.1074 -4.625 109.7949 -5.0156 Q109.498 -5.4062 108.8574 -5.4062 ZM116.965 -6.6719 Q118.0275 -6.6719 118.6525 -6.0938 Q119.2932 -5.5312 119.2932 -4.2656 L119.2932 0 L117.5119 0 L117.5119 -3.8281 Q117.5119 -4.5312 117.2463 -4.8906 Q116.9963 -5.25 116.4494 -5.25 Q115.6369 -5.25 115.3244 -4.6875 Q115.0275 -4.125 115.0275 -3.0781 L115.0275 0 L113.2463 0 L113.2463 -6.5469 L114.6057 -6.5469 L114.8557 -5.7188 L114.9494 -5.7188 Q115.2619 -6.2188 115.8088 -6.4375 Q116.3557 -6.6719 116.965 -6.6719 ZM123.896 -1.3125 Q124.1928 -1.3125 124.4585 -1.3594 Q124.7397 -1.4219 125.021 -1.5156 L125.021 -0.1875 Q124.7241 -0.0625 124.3022 0.0312 Q123.8803 0.125 123.3803 0.125 Q122.7866 0.125 122.3178 -0.0625 Q121.8647 -0.2656 121.5835 -0.7344 Q121.3178 -1.2188 121.3178 -2.0469 L121.3178 -5.2031 L120.4741 -5.2031 L120.4741 -5.9688 L121.4585 -6.5625 L121.9741 -7.9375 L123.1147 -7.9375 L123.1147 -6.5469 L124.9428 -6.5469 L124.9428 -5.2031 L123.1147 -5.2031 L123.1147 -2.0469 Q123.1147 -1.6875 123.3178 -1.5 Q123.5366 -1.3125 123.896 -1.3125 ZM128.0884 -1.2656 Q127.9321 -0.625 127.6353 0.125 Q127.354 0.8906 127.0571 1.5469 L125.7759 1.5469 Q125.9478 0.8438 126.104 0.0312 Q126.2759 -0.7656 126.354 -1.3906 L128.0103 -1.3906 L128.0884 -1.2656 ZM133.7847 -9.125 Q134.1753 -9.125 134.4566 -8.9375 Q134.7534 -8.75 134.7534 -8.25 Q134.7534 -7.75 134.4566 -7.5625 Q134.1753 -7.375 133.7847 -7.375 Q133.3628 -7.375 133.0816 -7.5625 Q132.8003 -7.75 132.8003 -8.25 Q132.8003 -8.75 133.0816 -8.9375 Q133.3628 -9.125 133.7847 -9.125 ZM134.6597 -6.5469 L134.6597 0 L132.8784 0 L132.8784 -6.5469 L134.6597 -6.5469 ZM140.2572 -6.6719 Q141.3197 -6.6719 141.9447 -6.0938 Q142.5853 -5.5312 142.5853 -4.2656 L142.5853 0 L140.8041 0 L140.8041 -3.8281 Q140.8041 -4.5312 140.5385 -4.8906 Q140.2885 -5.25 139.7416 -5.25 Q138.9291 -5.25 138.6166 -4.6875 Q138.3197 -4.125 138.3197 -3.0781 L138.3197 0 L136.5385 0 L136.5385 -6.5469 L137.8978 -6.5469 L138.1478 -5.7188 L138.2416 -5.7188 Q138.5541 -6.2188 139.101 -6.4375 Q139.6478 -6.6719 140.2572 -6.6719 ZM147.1881 -1.3125 Q147.485 -1.3125 147.7506 -1.3594 Q148.0319 -1.4219 148.3131 -1.5156 L148.3131 -0.1875 Q148.0163 -0.0625 147.5944 0.0312 Q147.1725 0.125 146.6725 0.125 Q146.0788 0.125 145.61 -0.0625 Q145.1569 -0.2656 144.8756 -0.7344 Q144.61 -1.2188 144.61 -2.0469 L144.61 -5.2031 L143.7663 -5.2031 L143.7663 -5.9688 L144.7506 -6.5625 L145.2663 -7.9375 L146.4069 -7.9375 L146.4069 -6.5469 L148.235 -6.5469 L148.235 -5.2031 L146.4069 -5.2031 L146.4069 -2.0469 Q146.4069 -1.6875 146.61 -1.5 Q146.8288 -1.3125 147.1881 -1.3125 ZM149.2087 -2.5938 L153.2243 -4.2344 L149.2087 -6.0938 L149.2087 -7.5 L155.0368 -4.5938 L155.0368 -3.75 L149.2087 -1.1875 L149.2087 -2.5938 Z" style="stroke:none; clip-path:url(#clipPath65);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="386.2366" y="-539.9815" width="116.7327" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="386.2366" y="-539.9815" width="116.7327" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(410.603,-521.9815)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath66);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(396.2366,-505.6374)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 ZM59.9574 -2.375 Q59.9574 -1.2344 59.1293 -0.5469 Q58.3168 0.125 56.8011 0.125 Q55.4574 0.125 54.3793 -0.3906 L54.3793 -2.0938 Q54.9886 -1.8281 55.6449 -1.5938 Q56.3011 -1.375 56.9574 -1.375 Q57.6293 -1.375 57.9105 -1.625 Q58.1918 -1.8906 58.1918 -2.2969 Q58.1918 -2.6094 57.9574 -2.8438 Q57.7386 -3.0781 57.3636 -3.2656 Q57.0043 -3.4688 56.5199 -3.7031 Q56.223 -3.8438 55.8636 -4.0312 Q55.5199 -4.2344 55.2074 -4.5312 Q54.8949 -4.8281 54.6761 -5.2344 Q54.473 -5.6562 54.473 -6.25 Q54.473 -7.4062 55.2543 -8.0469 Q56.0355 -8.6875 57.3793 -8.6875 Q58.0511 -8.6875 58.6605 -8.5312 Q59.2699 -8.375 59.9261 -8.0938 L59.348 -6.6719 Q58.7543 -6.9062 58.2855 -7.0312 Q57.8168 -7.1719 57.3168 -7.1719 Q56.8011 -7.1719 56.5199 -6.9375 Q56.2543 -6.7031 56.2543 -6.3125 Q56.2543 -5.8594 56.6605 -5.5938 Q57.0668 -5.3281 57.8793 -4.9375 Q58.5355 -4.625 58.9886 -4.2812 Q59.4574 -3.9531 59.7074 -3.5 Q59.9574 -3.0469 59.9574 -2.375 ZM64.0851 -6.6719 Q65.4288 -6.6719 66.2257 -5.8906 Q67.0226 -5.125 67.0226 -3.7031 L67.0226 -2.8281 L62.8038 -2.8281 Q62.8194 -2.0781 63.2413 -1.6406 Q63.6788 -1.2188 64.4288 -1.2188 Q65.0694 -1.2188 65.5851 -1.3438 Q66.1007 -1.4688 66.6476 -1.7344 L66.6476 -0.3438 Q66.1632 -0.1094 65.6319 0 Q65.1007 0.125 64.3507 0.125 Q63.3663 0.125 62.6007 -0.2344 Q61.8507 -0.6094 61.4132 -1.3438 Q60.9913 -2.0938 60.9913 -3.2344 Q60.9913 -4.375 61.3663 -5.1406 Q61.7569 -5.9062 62.4601 -6.2812 Q63.1632 -6.6719 64.0851 -6.6719 ZM64.0851 -5.4062 Q63.5694 -5.4062 63.2257 -5.0625 Q62.8976 -4.7344 62.8351 -4.0156 L65.3351 -4.0156 Q65.3351 -4.625 65.0226 -5.0156 Q64.7257 -5.4062 64.0851 -5.4062 ZM72.1302 -6.6719 Q72.2709 -6.6719 72.4427 -6.6562 Q72.6302 -6.6406 72.7396 -6.625 L72.599 -4.9375 Q72.5209 -4.9688 72.349 -4.9844 Q72.1927 -5 72.0677 -5 Q71.6146 -5 71.1927 -4.8438 Q70.7709 -4.6875 70.5052 -4.3125 Q70.2552 -3.9531 70.2552 -3.3438 L70.2552 0 L68.474 0 L68.474 -6.5469 L69.8334 -6.5469 L70.099 -5.4531 L70.1771 -5.4531 Q70.4584 -5.9531 70.9584 -6.3125 Q71.474 -6.6719 72.1302 -6.6719 ZM75.4845 0 L72.9845 -6.5469 L74.8595 -6.5469 L76.1095 -2.8125 Q76.2189 -2.4844 76.2814 -2.125 Q76.3595 -1.7656 76.3752 -1.4688 L76.422 -1.4688 Q76.4533 -2.125 76.6877 -2.8125 L77.9377 -6.5469 L79.8127 -6.5469 L77.3127 0 L75.4845 0 ZM81.6563 -9.125 Q82.047 -9.125 82.3282 -8.9375 Q82.6251 -8.75 82.6251 -8.25 Q82.6251 -7.75 82.3282 -7.5625 Q82.047 -7.375 81.6563 -7.375 Q81.2345 -7.375 80.9532 -7.5625 Q80.672 -7.75 80.672 -8.25 Q80.672 -8.75 80.9532 -8.9375 Q81.2345 -9.125 81.6563 -9.125 ZM82.5313 -6.5469 L82.5313 0 L80.7501 0 L80.7501 -6.5469 L82.5313 -6.5469 ZM87.0663 0.125 Q85.6132 0.125 84.8163 -0.6875 Q84.0195 -1.5 84.0195 -3.2344 Q84.0195 -4.4375 84.4257 -5.1875 Q84.832 -5.9531 85.5507 -6.3125 Q86.2851 -6.6719 87.2226 -6.6719 Q87.8945 -6.6719 88.3945 -6.5312 Q88.8945 -6.4062 89.2695 -6.2344 L88.7382 -4.8438 Q88.3163 -5.0156 87.9413 -5.125 Q87.582 -5.2344 87.2226 -5.2344 Q85.832 -5.2344 85.832 -3.25 Q85.832 -2.2656 86.1913 -1.7969 Q86.5663 -1.3281 87.2226 -1.3281 Q87.7851 -1.3281 88.2226 -1.4688 Q88.6601 -1.625 89.0663 -1.8906 L89.0663 -0.375 Q88.6601 -0.1094 88.207 0 Q87.7538 0.125 87.0663 0.125 ZM93.2813 -6.6719 Q94.625 -6.6719 95.4219 -5.8906 Q96.2188 -5.125 96.2188 -3.7031 L96.2188 -2.8281 L92 -2.8281 Q92.0156 -2.0781 92.4375 -1.6406 Q92.875 -1.2188 93.625 -1.2188 Q94.2656 -1.2188 94.7813 -1.3438 Q95.2969 -1.4688 95.8438 -1.7344 L95.8438 -0.3438 Q95.3594 -0.1094 94.8281 0 Q94.2969 0.125 93.5469 0.125 Q92.5625 0.125 91.7969 -0.2344 Q91.0469 -0.6094 90.6094 -1.3438 Q90.1875 -2.0938 90.1875 -3.2344 Q90.1875 -4.375 90.5625 -5.1406 Q90.9531 -5.9062 91.6563 -6.2812 Q92.3594 -6.6719 93.2813 -6.6719 ZM93.2813 -5.4062 Q92.7656 -5.4062 92.4219 -5.0625 Q92.0938 -4.7344 92.0313 -4.0156 L94.5313 -4.0156 Q94.5313 -4.625 94.2188 -5.0156 Q93.9219 -5.4062 93.2813 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath67);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="-226.5032" x2="-601.5654" y1="-16.0536" style="fill:none; clip-path:url(#clipPath2);" y2="-5.7715"
+      /><line x1="-601.5654" x2="-591.3415" y1="-5.7715" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-12.054"
+      /><line x1="-601.5654" x2="-591.0126" y1="-5.7715" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-0.0585"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-440.3985,-13.2566)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath68);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-466.5527,-10.0846)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM29.1079 5.0937 Q27.7173 5.0937 26.9204 6.0156 Q26.1392 6.9375 26.1392 8.5468 Q26.1392 10.1406 26.8735 11.0781 Q27.6079 12 29.0923 12 Q29.6548 12 30.1548 11.9062 Q30.6548 11.8125 31.1392 11.6718 L31.1392 12.5937 Q30.6548 12.7812 30.1392 12.8593 Q29.6392 12.9531 28.936 12.9531 Q27.6235 12.9531 26.7485 12.4218 Q25.8735 11.875 25.436 10.875 Q24.9985 9.875 24.9985 8.5312 Q24.9985 7.2343 25.4673 6.25 Q25.9517 5.25 26.8735 4.7031 Q27.7954 4.1406 29.1079 4.1406 Q30.4673 4.1406 31.4829 4.6406 L31.0454 5.5625 Q30.6548 5.375 30.1548 5.2343 Q29.6704 5.0937 29.1079 5.0937 ZM33.9263 12.8281 L32.8638 12.8281 L32.8638 3.7031 L33.9263 3.7031 L33.9263 12.8281 ZM36.5067 3.9843 Q36.7411 3.9843 36.9286 4.1562 Q37.1161 4.3125 37.1161 4.6562 Q37.1161 4.9843 36.9286 5.1562 Q36.7411 5.3281 36.5067 5.3281 Q36.2411 5.3281 36.0536 5.1562 Q35.8817 4.9843 35.8817 4.6562 Q35.8817 4.3125 36.0536 4.1562 Q36.2411 3.9843 36.5067 3.9843 ZM37.0224 6.3906 L37.0224 12.8281 L35.9599 12.8281 L35.9599 6.3906 L37.0224 6.3906 ZM41.5403 6.2812 Q42.3684 6.2812 42.9621 6.6406 Q43.5559 7 43.8684 7.6562 Q44.1965 8.2968 44.1965 9.1875 L44.1965 9.8125 L39.7903 9.8125 Q39.8215 10.9062 40.3528 11.4843 Q40.884 12.0468 41.8371 12.0468 Q42.4621 12.0468 42.9309 11.9375 Q43.3996 11.8125 43.9153 11.6093 L43.9153 12.5312 Q43.4153 12.75 42.9309 12.8437 Q42.4621 12.9531 41.7903 12.9531 Q40.884 12.9531 40.1809 12.5781 Q39.4778 12.2031 39.0871 11.4687 Q38.6965 10.7343 38.6965 9.6562 Q38.6965 8.6093 39.0559 7.8593 Q39.4153 7.0937 40.0559 6.6875 Q40.6965 6.2812 41.5403 6.2812 ZM41.5246 7.1406 Q40.7746 7.1406 40.3371 7.625 Q39.8996 8.1093 39.8215 8.9687 L43.0871 8.9687 Q43.0871 8.1562 42.7121 7.6562 Q42.3371 7.1406 41.5246 7.1406 ZM48.9177 6.2812 Q50.0739 6.2812 50.6521 6.8437 Q51.2458 7.3906 51.2458 8.6406 L51.2458 12.8281 L50.2146 12.8281 L50.2146 8.7187 Q50.2146 7.1718 48.7614 7.1718 Q47.6989 7.1718 47.2927 7.7656 Q46.8864 8.3593 46.8864 9.4843 L46.8864 12.8281 L45.8239 12.8281 L45.8239 6.3906 L46.6833 6.3906 L46.8396 7.2656 L46.9021 7.2656 Q47.2146 6.7656 47.7614 6.5312 Q48.3083 6.2812 48.9177 6.2812 ZM55.3962 12.0781 Q55.6306 12.0781 55.8806 12.0468 Q56.1306 12 56.2869 11.9531 L56.2869 12.75 Q56.1306 12.8437 55.8181 12.8906 Q55.5056 12.9531 55.2087 12.9531 Q54.7087 12.9531 54.2712 12.7812 Q53.8494 12.5937 53.5837 12.1718 Q53.3337 11.7343 53.3337 10.9531 L53.3337 7.2187 L52.4119 7.2187 L52.4119 6.7031 L53.3337 6.2812 L53.7556 4.9218 L54.3806 4.9218 L54.3806 6.3906 L56.24 6.3906 L56.24 7.2187 L54.3806 7.2187 L54.3806 10.9375 Q54.3806 11.5156 54.6619 11.7968 Q54.9431 12.0781 55.3962 12.0781 ZM58.8533 11.5625 Q58.697 12.2031 58.4001 12.9687 Q58.1189 13.7343 57.822 14.375 L57.0408 14.375 Q57.2126 13.6875 57.3845 12.875 Q57.572 12.0625 57.6501 11.4375 L58.7751 11.4375 L58.8533 11.5625 ZM63.3505 12.8281 L60.2568 12.8281 L60.2568 12.2031 L61.2568 11.9687 L61.2568 5.125 L60.2568 4.8906 L60.2568 4.2656 L63.3505 4.2656 L63.3505 4.8906 L62.3349 5.125 L62.3349 11.9687 L63.3505 12.2031 L63.3505 12.8281 ZM71.8717 8.4531 Q71.8717 10.625 70.6842 11.7343 Q69.4967 12.8281 67.3873 12.8281 L64.9967 12.8281 L64.9967 4.2656 L67.6373 4.2656 Q68.9342 4.2656 69.8873 4.75 Q70.8404 5.2187 71.3561 6.1562 Q71.8717 7.0781 71.8717 8.4531 ZM70.7311 8.5 Q70.7311 6.7812 69.8873 5.9843 Q69.0436 5.1875 67.4811 5.1875 L66.0904 5.1875 L66.0904 11.9062 L67.2467 11.9062 Q70.7311 11.9062 70.7311 8.5 ZM73.0849 10.0781 L73.0849 9.1406 L75.9911 9.1406 L75.9911 10.0781 L73.0849 10.0781 ZM77.0583 10.5 L81.5895 8.6093 L77.0583 6.4687 L77.0583 5.5312 L82.7145 8.3593 L82.7145 8.9531 L77.0583 11.4375 L77.0583 10.5 ZM84.8911 3.9843 Q85.1254 3.9843 85.3129 4.1562 Q85.5004 4.3125 85.5004 4.6562 Q85.5004 4.9843 85.3129 5.1562 Q85.1254 5.3281 84.8911 5.3281 Q84.6254 5.3281 84.4379 5.1562 Q84.2661 4.9843 84.2661 4.6562 Q84.2661 4.3125 84.4379 4.1562 Q84.6254 3.9843 84.8911 3.9843 ZM85.4067 6.3906 L85.4067 12.8281 L84.3442 12.8281 L84.3442 6.3906 L85.4067 6.3906 ZM90.534 6.2812 Q91.6902 6.2812 92.2683 6.8437 Q92.8621 7.3906 92.8621 8.6406 L92.8621 12.8281 L91.8308 12.8281 L91.8308 8.7187 Q91.8308 7.1718 90.3777 7.1718 Q89.3152 7.1718 88.909 7.7656 Q88.5027 8.3593 88.5027 9.4843 L88.5027 12.8281 L87.4402 12.8281 L87.4402 6.3906 L88.2996 6.3906 L88.4558 7.2656 L88.5183 7.2656 Q88.8308 6.7656 89.3777 6.5312 Q89.9246 6.2812 90.534 6.2812 ZM97.0125 12.0781 Q97.2469 12.0781 97.4969 12.0468 Q97.7469 12 97.9031 11.9531 L97.9031 12.75 Q97.7469 12.8437 97.4344 12.8906 Q97.1219 12.9531 96.825 12.9531 Q96.325 12.9531 95.8875 12.7812 Q95.4656 12.5937 95.2 12.1718 Q94.95 11.7343 94.95 10.9531 L94.95 7.2187 L94.0281 7.2187 L94.0281 6.7031 L94.95 6.2812 L95.3719 4.9218 L95.9969 4.9218 L95.9969 6.3906 L97.8563 6.3906 L97.8563 7.2187 L95.9969 7.2187 L95.9969 10.9375 Q95.9969 11.5156 96.2781 11.7968 Q96.5594 12.0781 97.0125 12.0781 ZM98.7664 10.5 L103.2977 8.6093 L98.7664 6.4687 L98.7664 5.5312 L104.4227 8.3593 L104.4227 8.9531 L98.7664 11.4375 L98.7664 10.5 Z" style="stroke:none; clip-path:url(#clipPath69);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><path d="M445.0208 -659.4835 A6 6 0 0 0 444.9994 -647.4836" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M445.1159 -712.5906 A6 6 0 0 0 445.0944 -700.5906" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="445.1643" x2="445.1159" y1="-739.6284" style="fill:none; clip-path:url(#clipPath2);" y2="-712.5906"
+      /><line x1="445.0944" x2="445.0208" y1="-700.5906" style="fill:none; clip-path:url(#clipPath2);" y2="-659.4835"
+      /><line x1="444.9994" x2="444.8069" y1="-647.4836" style="fill:none; clip-path:url(#clipPath2);" y2="-539.9815"
+      /><line x1="444.8069" x2="438.8255" y1="-539.9815" style="fill:none; clip-path:url(#clipPath2);" y2="-550.3845"
+      /><line x1="444.8069" x2="450.8255" y1="-539.9815" style="fill:none; clip-path:url(#clipPath2);" y2="-550.363"
+      /><line x1="-50.5032" x2="11.2908" y1="-18.4458" style="fill:none; clip-path:url(#clipPath2);" y2="-18.4316"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" -51 -18 -39 -12 -39 -25"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" -51 -18 -39 -12 -39 -25"
+      /><line x1="628.4591" x2="628.4591" y1="-97.2833" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-366.5134"
+      /><line x1="628.4591" x2="429.3131" y1="-366.5134" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-366.5134"
+      /><line x1="429.3131" x2="429.3131" y1="-366.5134" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-499.2932"
+      /><line x1="628.4591" x2="622.4591" y1="-97.2833" style="fill:none; clip-path:url(#clipPath2);" y2="-107.6756"
+      /><line x1="628.4591" x2="634.4591" y1="-97.2833" style="fill:none; clip-path:url(#clipPath2);" y2="-107.6756"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-235.6238" y="37.5471" width="194.2412" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-235.6238" y="37.5471" width="194.2412" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-177.5032,55.5471)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath70);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-225.6238,71.8912)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 ZM89.7323 -1.1875 L83.9042 -3.75 L83.9042 -4.5938 L89.7323 -7.5 L89.7323 -6.0938 L85.7167 -4.2344 L89.7323 -2.5938 L89.7323 -1.1875 ZM94.9558 0 L92.8933 -6.7188 L92.8464 -6.7188 Q92.862 -6.4844 92.8776 -6 Q92.9089 -5.5156 92.9245 -4.9688 Q92.9558 -4.4219 92.9558 -3.9844 L92.9558 0 L91.3308 0 L91.3308 -8.5625 L93.7995 -8.5625 L95.8308 -2.0156 L95.862 -2.0156 L98.0183 -8.5625 L100.487 -8.5625 L100.487 0 L98.7995 0 L98.7995 -4.0625 Q98.7995 -4.4688 98.8151 -4.9844 Q98.8308 -5.5156 98.8464 -5.9844 Q98.862 -6.4688 98.8776 -6.7031 L98.8308 -6.7031 L96.6276 0 L94.9558 0 ZM105.1937 -6.6875 Q106.5062 -6.6875 107.2094 -6.1094 Q107.9125 -5.5469 107.9125 -4.375 L107.9125 0 L106.6625 0 L106.3187 -0.8906 L106.2719 -0.8906 Q105.85 -0.3594 105.3812 -0.1094 Q104.9125 0.125 104.1 0.125 Q103.225 0.125 102.6469 -0.3906 Q102.0687 -0.9062 102.0687 -1.9531 Q102.0687 -3 102.8031 -3.5 Q103.5375 -4 105.0062 -4.0469 L106.1469 -4.0781 L106.1469 -4.375 Q106.1469 -4.8906 105.8656 -5.125 Q105.6 -5.3594 105.1156 -5.3594 Q104.6469 -5.3594 104.1781 -5.2188 Q103.725 -5.0938 103.2719 -4.8906 L102.6781 -6.0938 Q103.2094 -6.375 103.85 -6.5312 Q104.4906 -6.6875 105.1937 -6.6875 ZM105.4437 -3.0156 Q104.5844 -2.9844 104.2406 -2.6875 Q103.9125 -2.4062 103.9125 -1.9375 Q103.9125 -1.5312 104.1469 -1.3594 Q104.3812 -1.1875 104.7719 -1.1875 Q105.35 -1.1875 105.7406 -1.5312 Q106.1469 -1.875 106.1469 -2.5 L106.1469 -3.0312 L105.4437 -3.0156 ZM113.473 -6.6719 Q114.5355 -6.6719 115.1605 -6.0938 Q115.8011 -5.5312 115.8011 -4.2656 L115.8011 0 L114.0199 0 L114.0199 -3.8281 Q114.0199 -4.5312 113.7543 -4.8906 Q113.5043 -5.25 112.9574 -5.25 Q112.1449 -5.25 111.8324 -4.6875 Q111.5355 -4.125 111.5355 -3.0781 L111.5355 0 L109.7543 0 L109.7543 -6.5469 L111.1136 -6.5469 L111.3636 -5.7188 L111.4574 -5.7188 Q111.7699 -6.2188 112.3168 -6.4375 Q112.8636 -6.6719 113.473 -6.6719 ZM120.3258 -6.6875 Q121.6383 -6.6875 122.3414 -6.1094 Q123.0446 -5.5469 123.0446 -4.375 L123.0446 0 L121.7946 0 L121.4508 -0.8906 L121.4039 -0.8906 Q120.9821 -0.3594 120.5133 -0.1094 Q120.0446 0.125 119.2321 0.125 Q118.3571 0.125 117.7789 -0.3906 Q117.2008 -0.9062 117.2008 -1.9531 Q117.2008 -3 117.9352 -3.5 Q118.6696 -4 120.1383 -4.0469 L121.2789 -4.0781 L121.2789 -4.375 Q121.2789 -4.8906 120.9977 -5.125 Q120.7321 -5.3594 120.2477 -5.3594 Q119.7789 -5.3594 119.3102 -5.2188 Q118.8571 -5.0938 118.4039 -4.8906 L117.8102 -6.0938 Q118.3414 -6.375 118.9821 -6.5312 Q119.6227 -6.6875 120.3258 -6.6875 ZM120.5758 -3.0156 Q119.7164 -2.9844 119.3727 -2.6875 Q119.0446 -2.4062 119.0446 -1.9375 Q119.0446 -1.5312 119.2789 -1.3594 Q119.5133 -1.1875 119.9039 -1.1875 Q120.4821 -1.1875 120.8727 -1.5312 Q121.2789 -1.875 121.2789 -2.5 L121.2789 -3.0312 L120.5758 -3.0156 ZM127.0114 -6.6719 Q128.2145 -6.6719 128.902 -5.7188 L128.9489 -5.7188 L129.0895 -6.5469 L130.6051 -6.5469 L130.6051 0.0156 Q130.6051 1.4219 129.777 2.1406 Q128.9489 2.875 127.3395 2.875 Q126.6364 2.875 126.0426 2.7969 Q125.4489 2.7188 124.8864 2.5 L124.8864 1.0625 Q126.0895 1.5781 127.4332 1.5781 Q128.8239 1.5781 128.8239 0.0781 L128.8239 -0.0469 Q128.8239 -0.25 128.8395 -0.4688 Q128.8551 -0.6875 128.8707 -0.8594 L128.8239 -0.8594 Q128.4801 -0.3438 128.0114 -0.1094 Q127.5426 0.125 126.9645 0.125 Q125.7926 0.125 125.1364 -0.7656 Q124.4957 -1.6719 124.4957 -3.2656 Q124.4957 -4.875 125.1676 -5.7656 Q125.8395 -6.6719 127.0114 -6.6719 ZM127.5739 -5.2188 Q126.3082 -5.2188 126.3082 -3.2344 Q126.3082 -1.2812 127.5895 -1.2812 Q128.277 -1.2812 128.6051 -1.6719 Q128.9332 -2.0625 128.9332 -3.0312 L128.9332 -3.25 Q128.9332 -4.3125 128.6051 -4.7656 Q128.2926 -5.2188 127.5739 -5.2188 ZM135.1855 -6.6719 Q136.5293 -6.6719 137.3262 -5.8906 Q138.123 -5.125 138.123 -3.7031 L138.123 -2.8281 L133.9043 -2.8281 Q133.9199 -2.0781 134.3418 -1.6406 Q134.7793 -1.2188 135.5293 -1.2188 Q136.1699 -1.2188 136.6855 -1.3438 Q137.2012 -1.4688 137.748 -1.7344 L137.748 -0.3438 Q137.2637 -0.1094 136.7324 0 Q136.2012 0.125 135.4512 0.125 Q134.4668 0.125 133.7012 -0.2344 Q132.9512 -0.6094 132.5137 -1.3438 Q132.0918 -2.0938 132.0918 -3.2344 Q132.0918 -4.375 132.4668 -5.1406 Q132.8574 -5.9062 133.5605 -6.2812 Q134.2637 -6.6719 135.1855 -6.6719 ZM135.1855 -5.4062 Q134.6699 -5.4062 134.3262 -5.0625 Q133.998 -4.7344 133.9355 -4.0156 L136.4355 -4.0156 Q136.4355 -4.625 136.123 -5.0156 Q135.8262 -5.4062 135.1855 -5.4062 ZM143.2307 -6.6719 Q143.3714 -6.6719 143.5432 -6.6562 Q143.7307 -6.6406 143.8401 -6.625 L143.6995 -4.9375 Q143.6214 -4.9688 143.4495 -4.9844 Q143.2932 -5 143.1682 -5 Q142.7151 -5 142.2932 -4.8438 Q141.8714 -4.6875 141.6057 -4.3125 Q141.3557 -3.9531 141.3557 -3.3438 L141.3557 0 L139.5745 0 L139.5745 -6.5469 L140.9339 -6.5469 L141.1995 -5.4531 L141.2776 -5.4531 Q141.5589 -5.9531 142.0589 -6.3125 Q142.5745 -6.6719 143.2307 -6.6719 ZM146.7725 -1.2656 Q146.6163 -0.625 146.3194 0.125 Q146.0381 0.8906 145.7413 1.5469 L144.46 1.5469 Q144.6319 0.8438 144.7881 0.0312 Q144.96 -0.7656 145.0381 -1.3906 L146.6944 -1.3906 L146.7725 -1.2656 ZM152.4688 -9.125 Q152.8595 -9.125 153.1407 -8.9375 Q153.4376 -8.75 153.4376 -8.25 Q153.4376 -7.75 153.1407 -7.5625 Q152.8595 -7.375 152.4688 -7.375 Q152.047 -7.375 151.7657 -7.5625 Q151.4845 -7.75 151.4845 -8.25 Q151.4845 -8.75 151.7657 -8.9375 Q152.047 -9.125 152.4688 -9.125 ZM153.3438 -6.5469 L153.3438 0 L151.5626 0 L151.5626 -6.5469 L153.3438 -6.5469 ZM158.9413 -6.6719 Q160.0038 -6.6719 160.6288 -6.0938 Q161.2695 -5.5312 161.2695 -4.2656 L161.2695 0 L159.4882 0 L159.4882 -3.8281 Q159.4882 -4.5312 159.2226 -4.8906 Q158.9726 -5.25 158.4257 -5.25 Q157.6132 -5.25 157.3007 -4.6875 Q157.0038 -4.125 157.0038 -3.0781 L157.0038 0 L155.2226 0 L155.2226 -6.5469 L156.582 -6.5469 L156.832 -5.7188 L156.9257 -5.7188 Q157.2382 -6.2188 157.7851 -6.4375 Q158.332 -6.6719 158.9413 -6.6719 ZM165.8723 -1.3125 Q166.1691 -1.3125 166.4348 -1.3594 Q166.716 -1.4219 166.9973 -1.5156 L166.9973 -0.1875 Q166.7004 -0.0625 166.2785 0.0312 Q165.8566 0.125 165.3566 0.125 Q164.7629 0.125 164.2941 -0.0625 Q163.841 -0.2656 163.5598 -0.7344 Q163.2941 -1.2188 163.2941 -2.0469 L163.2941 -5.2031 L162.4504 -5.2031 L162.4504 -5.9688 L163.4348 -6.5625 L163.9504 -7.9375 L165.091 -7.9375 L165.091 -6.5469 L166.9191 -6.5469 L166.9191 -5.2031 L165.091 -5.2031 L165.091 -2.0469 Q165.091 -1.6875 165.2941 -1.5 Q165.5129 -1.3125 165.8723 -1.3125 ZM167.8928 -2.5938 L171.9084 -4.2344 L167.8928 -6.0938 L167.8928 -7.5 L173.7209 -4.5938 L173.7209 -3.75 L167.8928 -1.1875 L167.8928 -2.5938 Z" style="stroke:none; clip-path:url(#clipPath71);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M302.4085 -592.2692 A9.3784 9.3784 0 0 0 283.6517 -592.2692" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M148.5542 -592.2692 A11.6969 11.6969 0 0 0 125.1605 -592.2692" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M27.4707 -592.2692 A6 6 0 0 0 15.4707 -592.2692" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-110.3024" x2="-110.3024" y1="-668.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="-110.3024" x2="15.4707" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="27.4707" x2="125.1605" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="148.5542" x2="283.6517" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="302.4085" x2="408.4187" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-592.2692"
+      /><line x1="408.4187" x2="408.4187" y1="-592.2692" style="fill:none; clip-path:url(#clipPath2);" y2="-539.9815"
+      /><line x1="-110.3024" x2="-104.3024" y1="-668.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-657.8982"
+      /><line x1="-110.3024" x2="-116.3024" y1="-668.2905" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-657.8982"
+      /><line x1="-235.6238" x2="-601.5654" y1="46.1471" style="fill:none; clip-path:url(#clipPath2);" y2="1.8967"
+      /><line x1="-601.5654" x2="-590.528" y1="1.8967" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-2.8124"
+      /><line x1="-601.5654" x2="-591.9686" y1="1.8967" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="9.1009"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-444.9588,21.6778)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath72);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-480.5946,24.8499)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM29.2017 12.8281 L26.3892 5.3125 L26.3423 5.3125 Q26.3735 5.6875 26.3892 6.3281 Q26.4204 6.9531 26.4204 7.625 L26.4204 12.8281 L25.4204 12.8281 L25.4204 4.2656 L27.0298 4.2656 L29.6704 11.2812 L29.7173 11.2812 L32.4048 4.2656 L33.9829 4.2656 L33.9829 12.8281 L32.9204 12.8281 L32.9204 7.5625 Q32.9204 6.9375 32.9517 6.3281 Q32.9829 5.7187 32.9985 5.3281 L32.9517 5.3281 L30.0923 12.8281 L29.2017 12.8281 ZM38.6014 6.2812 Q39.7732 6.2812 40.3357 6.7968 Q40.9139 7.3125 40.9139 8.4531 L40.9139 12.8281 L40.1326 12.8281 L39.9295 11.9218 L39.8826 11.9218 Q39.4607 12.4375 38.992 12.7031 Q38.5389 12.9531 37.7264 12.9531 Q36.8514 12.9531 36.2732 12.5 Q35.6951 12.0312 35.6951 11.0468 Q35.6951 10.0781 36.4451 9.5625 Q37.2107 9.0312 38.7889 8.9843 L39.8826 8.9531 L39.8826 8.5625 Q39.8826 7.7656 39.5232 7.4531 Q39.1795 7.1406 38.5389 7.1406 Q38.0389 7.1406 37.5857 7.2968 Q37.1326 7.4375 36.7264 7.625 L36.4139 6.8437 Q36.8357 6.6093 37.3982 6.4531 Q37.9764 6.2812 38.6014 6.2812 ZM38.9139 9.7187 Q37.7107 9.7656 37.242 10.1093 Q36.7889 10.4375 36.7889 11.0468 Q36.7889 11.5937 37.117 11.8437 Q37.4451 12.0937 37.9607 12.0937 Q38.7889 12.0937 39.3201 11.6562 Q39.867 11.2031 39.867 10.2656 L39.867 9.6875 L38.9139 9.7187 ZM45.9897 6.2812 Q47.1459 6.2812 47.724 6.8437 Q48.3178 7.3906 48.3178 8.6406 L48.3178 12.8281 L47.2865 12.8281 L47.2865 8.7187 Q47.2865 7.1718 45.8334 7.1718 Q44.7709 7.1718 44.3647 7.7656 Q43.9584 8.3593 43.9584 9.4843 L43.9584 12.8281 L42.8959 12.8281 L42.8959 6.3906 L43.7553 6.3906 L43.9115 7.2656 L43.974 7.2656 Q44.2865 6.7656 44.8334 6.5312 Q45.3803 6.2812 45.9897 6.2812 ZM52.7495 6.2812 Q53.9213 6.2812 54.4838 6.7968 Q55.062 7.3125 55.062 8.4531 L55.062 12.8281 L54.2807 12.8281 L54.0776 11.9218 L54.0307 11.9218 Q53.6088 12.4375 53.1401 12.7031 Q52.687 12.9531 51.8745 12.9531 Q50.9995 12.9531 50.4213 12.5 Q49.8432 12.0312 49.8432 11.0468 Q49.8432 10.0781 50.5932 9.5625 Q51.3588 9.0312 52.937 8.9843 L54.0307 8.9531 L54.0307 8.5625 Q54.0307 7.7656 53.6713 7.4531 Q53.3276 7.1406 52.687 7.1406 Q52.187 7.1406 51.7338 7.2968 Q51.2807 7.4375 50.8745 7.625 L50.562 6.8437 Q50.9838 6.6093 51.5463 6.4531 Q52.1245 6.2812 52.7495 6.2812 ZM53.062 9.7187 Q51.8588 9.7656 51.3901 10.1093 Q50.937 10.4375 50.937 11.0468 Q50.937 11.5937 51.2651 11.8437 Q51.5932 12.0937 52.1088 12.0937 Q52.937 12.0937 53.4682 11.6562 Q54.0151 11.2031 54.0151 10.2656 L54.0151 9.6875 L53.062 9.7187 ZM59.3252 6.2812 Q59.9659 6.2812 60.4659 6.5156 Q60.9815 6.75 61.3409 7.25 L61.4034 7.25 L61.544 6.3906 L62.3877 6.3906 L62.3877 12.9375 Q62.3877 14.3125 61.6846 15 Q60.9815 15.7031 59.5127 15.7031 Q58.0909 15.7031 57.1846 15.2968 L57.1846 14.3281 Q58.1377 14.8281 59.5752 14.8281 Q60.4034 14.8281 60.8721 14.3437 Q61.3409 13.8593 61.3409 13.0156 L61.3409 12.7656 Q61.3409 12.625 61.3565 12.3593 Q61.3721 12.0781 61.3877 11.9687 L61.3252 11.9687 Q60.6846 12.9531 59.3409 12.9531 Q58.0909 12.9531 57.3877 12.0781 Q56.6846 11.2031 56.6846 9.625 Q56.6846 8.0937 57.3877 7.1875 Q58.0909 6.2812 59.3252 6.2812 ZM59.4659 7.1718 Q58.669 7.1718 58.2159 7.8125 Q57.7784 8.4531 57.7784 9.6406 Q57.7784 10.8281 58.2159 11.4531 Q58.6534 12.0781 59.4971 12.0781 Q60.4659 12.0781 60.9034 11.5625 Q61.3565 11.0468 61.3565 9.875 L61.3565 9.625 Q61.3565 8.2968 60.9034 7.7343 Q60.4502 7.1718 59.4659 7.1718 ZM66.9084 6.2812 Q67.7365 6.2812 68.3303 6.6406 Q68.924 7 69.2365 7.6562 Q69.5647 8.2968 69.5647 9.1875 L69.5647 9.8125 L65.1584 9.8125 Q65.1897 10.9062 65.7209 11.4843 Q66.2522 12.0468 67.2053 12.0468 Q67.8303 12.0468 68.299 11.9375 Q68.7678 11.8125 69.2834 11.6093 L69.2834 12.5312 Q68.7834 12.75 68.299 12.8437 Q67.8303 12.9531 67.1584 12.9531 Q66.2522 12.9531 65.549 12.5781 Q64.8459 12.2031 64.4553 11.4687 Q64.0647 10.7343 64.0647 9.6562 Q64.0647 8.6093 64.424 7.8593 Q64.7834 7.0937 65.424 6.6875 Q66.0647 6.2812 66.9084 6.2812 ZM66.8928 7.1406 Q66.1428 7.1406 65.7053 7.625 Q65.2678 8.1093 65.1897 8.9687 L68.4553 8.9687 Q68.4553 8.1562 68.0803 7.6562 Q67.7053 7.1406 66.8928 7.1406 ZM74.1921 6.2812 Q74.3796 6.2812 74.5827 6.2968 Q74.8015 6.3125 74.9577 6.3437 L74.8171 7.3125 Q74.6608 7.2812 74.4733 7.2656 Q74.2858 7.2343 74.1296 7.2343 Q73.6296 7.2343 73.1921 7.5156 Q72.7702 7.7812 72.5046 8.2656 Q72.2546 8.75 72.2546 9.3906 L72.2546 12.8281 L71.1921 12.8281 L71.1921 6.3906 L72.0671 6.3906 L72.1765 7.5781 L72.2233 7.5781 Q72.5358 7.0468 73.0202 6.6718 Q73.5202 6.2812 74.1921 6.2812 ZM77.4294 11.5625 Q77.2731 12.2031 76.9763 12.9687 Q76.695 13.7343 76.3981 14.375 L75.6169 14.375 Q75.7888 13.6875 75.9606 12.875 Q76.1481 12.0625 76.2263 11.4375 L77.3513 11.4375 L77.4294 11.5625 ZM81.9267 12.8281 L78.8329 12.8281 L78.8329 12.2031 L79.8329 11.9687 L79.8329 5.125 L78.8329 4.8906 L78.8329 4.2656 L81.9267 4.2656 L81.9267 4.8906 L80.911 5.125 L80.911 11.9687 L81.9267 12.2031 L81.9267 12.8281 ZM90.4478 8.4531 Q90.4478 10.625 89.2603 11.7343 Q88.0728 12.8281 85.9634 12.8281 L83.5728 12.8281 L83.5728 4.2656 L86.2134 4.2656 Q87.5103 4.2656 88.4634 4.75 Q89.4165 5.2187 89.9322 6.1562 Q90.4478 7.0781 90.4478 8.4531 ZM89.3072 8.5 Q89.3072 6.7812 88.4634 5.9843 Q87.6197 5.1875 86.0572 5.1875 L84.6665 5.1875 L84.6665 11.9062 L85.8228 11.9062 Q89.3072 11.9062 89.3072 8.5 ZM91.661 10.0781 L91.661 9.1406 L94.5672 9.1406 L94.5672 10.0781 L91.661 10.0781 ZM95.6344 10.5 L100.1656 8.6093 L95.6344 6.4687 L95.6344 5.5312 L101.2906 8.3593 L101.2906 8.9531 L95.6344 11.4375 L95.6344 10.5 ZM103.4672 3.9843 Q103.7016 3.9843 103.8891 4.1562 Q104.0766 4.3125 104.0766 4.6562 Q104.0766 4.9843 103.8891 5.1562 Q103.7016 5.3281 103.4672 5.3281 Q103.2016 5.3281 103.0141 5.1562 Q102.8422 4.9843 102.8422 4.6562 Q102.8422 4.3125 103.0141 4.1562 Q103.2016 3.9843 103.4672 3.9843 ZM103.9828 6.3906 L103.9828 12.8281 L102.9203 12.8281 L102.9203 6.3906 L103.9828 6.3906 ZM109.1101 6.2812 Q110.2663 6.2812 110.8445 6.8437 Q111.4382 7.3906 111.4382 8.6406 L111.4382 12.8281 L110.407 12.8281 L110.407 8.7187 Q110.407 7.1718 108.9538 7.1718 Q107.8913 7.1718 107.4851 7.7656 Q107.0788 8.3593 107.0788 9.4843 L107.0788 12.8281 L106.0163 12.8281 L106.0163 6.3906 L106.8757 6.3906 L107.032 7.2656 L107.0945 7.2656 Q107.407 6.7656 107.9538 6.5312 Q108.5007 6.2812 109.1101 6.2812 ZM115.5886 12.0781 Q115.823 12.0781 116.073 12.0468 Q116.323 12 116.4792 11.9531 L116.4792 12.75 Q116.323 12.8437 116.0105 12.8906 Q115.698 12.9531 115.4011 12.9531 Q114.9011 12.9531 114.4636 12.7812 Q114.0417 12.5937 113.7761 12.1718 Q113.5261 11.7343 113.5261 10.9531 L113.5261 7.2187 L112.6042 7.2187 L112.6042 6.7031 L113.5261 6.2812 L113.948 4.9218 L114.573 4.9218 L114.573 6.3906 L116.4324 6.3906 L116.4324 7.2187 L114.573 7.2187 L114.573 10.9375 Q114.573 11.5156 114.8542 11.7968 Q115.1355 12.0781 115.5886 12.0781 ZM117.3425 10.5 L121.8738 8.6093 L117.3425 6.4687 L117.3425 5.5312 L122.9988 8.3593 L122.9988 8.9531 L117.3425 11.4375 L117.3425 10.5 Z" style="stroke:none; clip-path:url(#clipPath73);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><path d="M414.4187 -563.3105 A6 6 0 0 0 402.4187 -563.3105" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M302.4085 -563.3105 A9.3784 9.3784 0 0 0 283.6517 -563.3105" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M262.3184 -563.3105 A6 6 0 0 0 250.3184 -563.3105" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="152.5206" x2="152.5206" y1="-539.827" style="fill:none; clip-path:url(#clipPath2);" y2="-563.3105"
+      /><line x1="152.5206" x2="250.3184" y1="-563.3105" style="fill:none; clip-path:url(#clipPath2);" y2="-563.3105"
+      /><line x1="262.3184" x2="283.6517" y1="-563.3105" style="fill:none; clip-path:url(#clipPath2);" y2="-563.3105"
+      /><line x1="302.4085" x2="402.4187" y1="-563.3105" style="fill:none; clip-path:url(#clipPath2);" y2="-563.3105"
+      /><line x1="414.4187" x2="444.603" y1="-563.3105" style="fill:none; clip-path:url(#clipPath2);" y2="-563.3105"
+      /><line x1="444.603" x2="444.603" y1="-563.3105" style="fill:none; clip-path:url(#clipPath2);" y2="-539.9815"
+      /><line x1="444.603" x2="438.603" y1="-539.9815" style="fill:none; clip-path:url(#clipPath2);" y2="-550.3738"
+      /><line x1="444.603" x2="450.603" y1="-539.9815" style="fill:none; clip-path:url(#clipPath2);" y2="-550.3738"
+      /><line x1="-41.3826" x2="2.0883" y1="57.8915" style="fill:none; clip-path:url(#clipPath2);" y2="57.8916"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" -41 58 -30 64 -30 51"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" -41 58 -30 64 -30 51"
+      /><path d="M474.7245 -647.4835 A6 6 0 0 0 474.7245 -659.4835" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="474.7245" x2="474.7245" y1="-539.9815" style="fill:none; clip-path:url(#clipPath2);" y2="-647.4835"
+      /><line x1="474.7245" x2="474.7245" y1="-659.4835" style="fill:none; clip-path:url(#clipPath2);" y2="-679.6929"
+      /><line x1="474.7245" x2="610.7531" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-679.6929"
+      /><line x1="610.7531" x2="610.7531" y1="-679.6929" style="fill:none; clip-path:url(#clipPath2);" y2="-744.9593"
+      /><line x1="610.7531" x2="738.8053" y1="-744.9593" style="fill:none; clip-path:url(#clipPath2);" y2="-744.9593"
+      /><line x1="738.8053" x2="728.413" y1="-744.9593" style="fill:none; clip-path:url(#clipPath2);" y2="-738.9593"
+      /><line x1="738.8053" x2="728.413" y1="-744.9593" style="fill:none; clip-path:url(#clipPath2);" y2="-750.9593"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-222.4957" y="-128.7189" width="167.985" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-222.4957" y="-128.7189" width="167.985" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-177.5032,-110.7189)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath74);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-212.4957,-94.3748)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 ZM89.7323 -1.1875 L83.9042 -3.75 L83.9042 -4.5938 L89.7323 -7.5 L89.7323 -6.0938 L85.7167 -4.2344 L89.7323 -2.5938 L89.7323 -1.1875 ZM98.2995 -3.0312 Q98.2995 -2.1406 97.9089 -1.4219 Q97.5183 -0.7031 96.737 -0.2812 Q95.9558 0.125 94.7526 0.125 Q93.0495 0.125 92.1589 -0.75 Q91.2683 -1.625 91.2683 -3.0469 L91.2683 -8.5625 L93.0808 -8.5625 L93.0808 -3.3281 Q93.0808 -2.2656 93.5183 -1.8281 Q93.9558 -1.4062 94.7995 -1.4062 Q95.6901 -1.4062 96.0808 -1.875 Q96.487 -2.3438 96.487 -3.3438 L96.487 -8.5625 L98.2995 -8.5625 L98.2995 -3.0312 ZM104.8403 -1.9375 Q104.8403 -0.9531 104.1372 -0.4062 Q103.4341 0.125 102.0435 0.125 Q101.356 0.125 100.856 0.0312 Q100.3716 -0.0625 99.8716 -0.2656 L99.8716 -1.7344 Q100.4028 -1.5 101.0122 -1.3438 Q101.6216 -1.1875 102.0903 -1.1875 Q102.6216 -1.1875 102.8403 -1.3438 Q103.0747 -1.5 103.0747 -1.75 Q103.0747 -1.9219 102.981 -2.0469 Q102.8872 -2.1875 102.5903 -2.3438 Q102.2935 -2.5156 101.6528 -2.7812 Q101.0435 -3.0469 100.6372 -3.2969 Q100.2466 -3.5625 100.0591 -3.9219 Q99.8716 -4.2969 99.8716 -4.8438 Q99.8716 -5.7656 100.5747 -6.2188 Q101.2778 -6.6719 102.4497 -6.6719 Q103.0747 -6.6719 103.6216 -6.5469 Q104.1685 -6.4375 104.7622 -6.1562 L104.2153 -4.875 Q103.7466 -5.0781 103.3091 -5.2188 Q102.8716 -5.3594 102.4341 -5.3594 Q101.6372 -5.3594 101.6372 -4.9219 Q101.6372 -4.7656 101.731 -4.6406 Q101.8403 -4.5156 102.1372 -4.3594 Q102.4341 -4.2188 103.0122 -3.9844 Q103.5747 -3.75 103.981 -3.5 Q104.3872 -3.2656 104.606 -2.8906 Q104.8403 -2.5312 104.8403 -1.9375 ZM108.9294 -6.6719 Q110.2731 -6.6719 111.07 -5.8906 Q111.8669 -5.125 111.8669 -3.7031 L111.8669 -2.8281 L107.6481 -2.8281 Q107.6637 -2.0781 108.0856 -1.6406 Q108.5231 -1.2188 109.2731 -1.2188 Q109.9137 -1.2188 110.4294 -1.3438 Q110.945 -1.4688 111.4919 -1.7344 L111.4919 -0.3438 Q111.0075 -0.1094 110.4762 0 Q109.945 0.125 109.195 0.125 Q108.2106 0.125 107.445 -0.2344 Q106.695 -0.6094 106.2575 -1.3438 Q105.8356 -2.0938 105.8356 -3.2344 Q105.8356 -4.375 106.2106 -5.1406 Q106.6012 -5.9062 107.3044 -6.2812 Q108.0075 -6.6719 108.9294 -6.6719 ZM108.9294 -5.4062 Q108.4137 -5.4062 108.07 -5.0625 Q107.7419 -4.7344 107.6794 -4.0156 L110.1794 -4.0156 Q110.1794 -4.625 109.8669 -5.0156 Q109.57 -5.4062 108.9294 -5.4062 ZM116.9745 -6.6719 Q117.1152 -6.6719 117.287 -6.6562 Q117.4745 -6.6406 117.5839 -6.625 L117.4433 -4.9375 Q117.3652 -4.9688 117.1933 -4.9844 Q117.037 -5 116.912 -5 Q116.4589 -5 116.037 -4.8438 Q115.6152 -4.6875 115.3495 -4.3125 Q115.0995 -3.9531 115.0995 -3.3438 L115.0995 0 L113.3183 0 L113.3183 -6.5469 L114.6777 -6.5469 L114.9433 -5.4531 L115.0214 -5.4531 Q115.3027 -5.9531 115.8027 -6.3125 Q116.3183 -6.6719 116.9745 -6.6719 ZM120.5163 -1.2656 Q120.3601 -0.625 120.0632 0.125 Q119.782 0.8906 119.4851 1.5469 L118.2038 1.5469 Q118.3757 0.8438 118.532 0.0312 Q118.7038 -0.7656 118.782 -1.3906 L120.4382 -1.3906 L120.5163 -1.2656 ZM126.2126 -9.125 Q126.6033 -9.125 126.8845 -8.9375 Q127.1814 -8.75 127.1814 -8.25 Q127.1814 -7.75 126.8845 -7.5625 Q126.6033 -7.375 126.2126 -7.375 Q125.7908 -7.375 125.5095 -7.5625 Q125.2283 -7.75 125.2283 -8.25 Q125.2283 -8.75 125.5095 -8.9375 Q125.7908 -9.125 126.2126 -9.125 ZM127.0876 -6.5469 L127.0876 0 L125.3064 0 L125.3064 -6.5469 L127.0876 -6.5469 ZM132.6852 -6.6719 Q133.7477 -6.6719 134.3727 -6.0938 Q135.0133 -5.5312 135.0133 -4.2656 L135.0133 0 L133.232 0 L133.232 -3.8281 Q133.232 -4.5312 132.9664 -4.8906 Q132.7164 -5.25 132.1695 -5.25 Q131.357 -5.25 131.0445 -4.6875 Q130.7477 -4.125 130.7477 -3.0781 L130.7477 0 L128.9664 0 L128.9664 -6.5469 L130.3258 -6.5469 L130.5758 -5.7188 L130.6695 -5.7188 Q130.982 -6.2188 131.5289 -6.4375 Q132.0758 -6.6719 132.6852 -6.6719 ZM139.6161 -1.3125 Q139.913 -1.3125 140.1786 -1.3594 Q140.4598 -1.4219 140.7411 -1.5156 L140.7411 -0.1875 Q140.4442 -0.0625 140.0223 0.0312 Q139.6005 0.125 139.1005 0.125 Q138.5067 0.125 138.038 -0.0625 Q137.5848 -0.2656 137.3036 -0.7344 Q137.038 -1.2188 137.038 -2.0469 L137.038 -5.2031 L136.1942 -5.2031 L136.1942 -5.9688 L137.1786 -6.5625 L137.6942 -7.9375 L138.8348 -7.9375 L138.8348 -6.5469 L140.663 -6.5469 L140.663 -5.2031 L138.8348 -5.2031 L138.8348 -2.0469 Q138.8348 -1.6875 139.038 -1.5 Q139.2567 -1.3125 139.6161 -1.3125 ZM141.6366 -2.5938 L145.6523 -4.2344 L141.6366 -6.0938 L141.6366 -7.5 L147.4648 -4.5938 L147.4648 -3.75 L141.6366 -1.1875 L141.6366 -2.5938 Z" style="stroke:none; clip-path:url(#clipPath75);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="-222.4957" x2="-601.5654" y1="-91.4018" style="fill:none; clip-path:url(#clipPath2);" y2="-14.8005"
+      /><line x1="-601.5654" x2="-592.5675" y1="-14.8005" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-22.7401"
+      /><line x1="-601.5654" x2="-590.1906" y1="-14.8005" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-10.9779"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-438.3948,-55.4453)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath76);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-462.0306,-52.2732)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM31.9517 9.7968 Q31.9517 10.6875 31.5767 11.4062 Q31.2173 12.125 30.4829 12.5468 Q29.7485 12.9531 28.6079 12.9531 Q27.0142 12.9531 26.1704 12.0781 Q25.3423 11.2031 25.3423 9.7812 L25.3423 4.2656 L26.4204 4.2656 L26.4204 9.8125 Q26.4204 10.8593 26.9829 11.4375 Q27.5454 12.0156 28.6704 12.0156 Q29.8267 12.0156 30.3423 11.4062 Q30.8735 10.7812 30.8735 9.7968 L30.8735 4.2656 L31.9517 4.2656 L31.9517 9.7968 ZM38.2393 11.0468 Q38.2393 11.9843 37.5362 12.4687 Q36.8487 12.9531 35.6768 12.9531 Q35.005 12.9531 34.5206 12.8437 Q34.0362 12.7343 33.6612 12.5468 L33.6612 11.5781 Q34.0518 11.7656 34.5831 11.9375 Q35.13 12.0937 35.6925 12.0937 Q36.505 12.0937 36.8643 11.8437 Q37.2237 11.5781 37.2237 11.1406 Q37.2237 10.9062 37.0831 10.7187 Q36.9581 10.5312 36.6143 10.3437 Q36.2706 10.1406 35.6456 9.9062 Q35.0206 9.6562 34.5675 9.4218 Q34.13 9.1875 33.88 8.8593 Q33.6456 8.5156 33.6456 7.9843 Q33.6456 7.1718 34.3018 6.7343 Q34.9737 6.2812 36.0675 6.2812 Q36.6456 6.2812 37.1456 6.3906 Q37.6612 6.5 38.1143 6.7031 L37.755 7.5468 Q37.3487 7.375 36.8956 7.2656 Q36.4581 7.1406 35.9893 7.1406 Q35.3331 7.1406 34.9893 7.3593 Q34.6612 7.5625 34.6612 7.9218 Q34.6612 8.1875 34.8175 8.375 Q34.9737 8.5625 35.3331 8.7343 Q35.6925 8.9062 36.3175 9.1406 Q36.9268 9.375 37.3487 9.625 Q37.7862 9.8593 38.005 10.2031 Q38.2393 10.5312 38.2393 11.0468 ZM42.2843 6.2812 Q43.1124 6.2812 43.7061 6.6406 Q44.2999 7 44.6124 7.6562 Q44.9405 8.2968 44.9405 9.1875 L44.9405 9.8125 L40.5343 9.8125 Q40.5655 10.9062 41.0968 11.4843 Q41.628 12.0468 42.5811 12.0468 Q43.2061 12.0468 43.6749 11.9375 Q44.1436 11.8125 44.6593 11.6093 L44.6593 12.5312 Q44.1593 12.75 43.6749 12.8437 Q43.2061 12.9531 42.5343 12.9531 Q41.628 12.9531 40.9249 12.5781 Q40.2218 12.2031 39.8311 11.4687 Q39.4405 10.7343 39.4405 9.6562 Q39.4405 8.6093 39.7999 7.8593 Q40.1593 7.0937 40.7999 6.6875 Q41.4405 6.2812 42.2843 6.2812 ZM42.2686 7.1406 Q41.5186 7.1406 41.0811 7.625 Q40.6436 8.1093 40.5655 8.9687 L43.8311 8.9687 Q43.8311 8.1562 43.4561 7.6562 Q43.0811 7.1406 42.2686 7.1406 ZM49.5679 6.2812 Q49.7554 6.2812 49.9586 6.2968 Q50.1773 6.3125 50.3336 6.3437 L50.1929 7.3125 Q50.0367 7.2812 49.8492 7.2656 Q49.6617 7.2343 49.5054 7.2343 Q49.0054 7.2343 48.5679 7.5156 Q48.1461 7.7812 47.8804 8.2656 Q47.6304 8.75 47.6304 9.3906 L47.6304 12.8281 L46.5679 12.8281 L46.5679 6.3906 L47.4429 6.3906 L47.5523 7.5781 L47.5992 7.5781 Q47.9117 7.0468 48.3961 6.6718 Q48.8961 6.2812 49.5679 6.2812 ZM52.8052 11.5625 Q52.649 12.2031 52.3521 12.9687 Q52.0709 13.7343 51.774 14.375 L50.9927 14.375 Q51.1646 13.6875 51.3365 12.875 Q51.524 12.0625 51.6021 11.4375 L52.7271 11.4375 L52.8052 11.5625 ZM57.3025 12.8281 L54.2088 12.8281 L54.2088 12.2031 L55.2088 11.9687 L55.2088 5.125 L54.2088 4.8906 L54.2088 4.2656 L57.3025 4.2656 L57.3025 4.8906 L56.2869 5.125 L56.2869 11.9687 L57.3025 12.2031 L57.3025 12.8281 ZM65.8237 8.4531 Q65.8237 10.625 64.6362 11.7343 Q63.4487 12.8281 61.3393 12.8281 L58.9487 12.8281 L58.9487 4.2656 L61.5893 4.2656 Q62.8862 4.2656 63.8393 4.75 Q64.7924 5.2187 65.308 6.1562 Q65.8237 7.0781 65.8237 8.4531 ZM64.683 8.5 Q64.683 6.7812 63.8393 5.9843 Q62.9955 5.1875 61.433 5.1875 L60.0424 5.1875 L60.0424 11.9062 L61.1987 11.9062 Q64.683 11.9062 64.683 8.5 ZM67.0368 10.0781 L67.0368 9.1406 L69.9431 9.1406 L69.9431 10.0781 L67.0368 10.0781 ZM71.0102 10.5 L75.5415 8.6093 L71.0102 6.4687 L71.0102 5.5312 L76.6665 8.3593 L76.6665 8.9531 L71.0102 11.4375 L71.0102 10.5 ZM78.843 3.9843 Q79.0774 3.9843 79.2649 4.1562 Q79.4524 4.3125 79.4524 4.6562 Q79.4524 4.9843 79.2649 5.1562 Q79.0774 5.3281 78.843 5.3281 Q78.5774 5.3281 78.3899 5.1562 Q78.218 4.9843 78.218 4.6562 Q78.218 4.3125 78.3899 4.1562 Q78.5774 3.9843 78.843 3.9843 ZM79.3587 6.3906 L79.3587 12.8281 L78.2962 12.8281 L78.2962 6.3906 L79.3587 6.3906 ZM84.4859 6.2812 Q85.6422 6.2812 86.2203 6.8437 Q86.8141 7.3906 86.8141 8.6406 L86.8141 12.8281 L85.7828 12.8281 L85.7828 8.7187 Q85.7828 7.1718 84.3297 7.1718 Q83.2672 7.1718 82.8609 7.7656 Q82.4547 8.3593 82.4547 9.4843 L82.4547 12.8281 L81.3922 12.8281 L81.3922 6.3906 L82.2516 6.3906 L82.4078 7.2656 L82.4703 7.2656 Q82.7828 6.7656 83.3297 6.5312 Q83.8766 6.2812 84.4859 6.2812 ZM90.9645 12.0781 Q91.1989 12.0781 91.4489 12.0468 Q91.6989 12 91.8551 11.9531 L91.8551 12.75 Q91.6989 12.8437 91.3864 12.8906 Q91.0739 12.9531 90.777 12.9531 Q90.277 12.9531 89.8395 12.7812 Q89.4176 12.5937 89.152 12.1718 Q88.902 11.7343 88.902 10.9531 L88.902 7.2187 L87.9801 7.2187 L87.9801 6.7031 L88.902 6.2812 L89.3239 4.9218 L89.9489 4.9218 L89.9489 6.3906 L91.8082 6.3906 L91.8082 7.2187 L89.9489 7.2187 L89.9489 10.9375 Q89.9489 11.5156 90.2301 11.7968 Q90.5114 12.0781 90.9645 12.0781 ZM92.7184 10.5 L97.2496 8.6093 L92.7184 6.4687 L92.7184 5.5312 L98.3746 8.3593 L98.3746 8.9531 L92.7184 11.4375 L92.7184 10.5 Z" style="stroke:none; clip-path:url(#clipPath77);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><path d="M296.4085 0.6218 A6 6 0 0 0 296.4085 -11.3782" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M296.4085 -70.7649 A6 6 0 0 0 296.4085 -82.7649" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M400.8539 -264.6373 A6 6 0 0 0 388.8539 -264.6373" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M435.3942 -294.9465 A6 6 0 0 0 435.3942 -306.9465" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M435.3942 -360.5134 A6 6 0 0 0 435.3942 -372.5134" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="435.3942" x2="435.3942" y1="-499.2932" style="fill:none; clip-path:url(#clipPath2);" y2="-372.5134"
+      /><line x1="435.3942" x2="435.3942" y1="-360.5134" style="fill:none; clip-path:url(#clipPath2);" y2="-306.9465"
+      /><line x1="435.3942" x2="435.3942" y1="-294.9465" style="fill:none; clip-path:url(#clipPath2);" y2="-264.6373"
+      /><line x1="435.3942" x2="400.8539" y1="-264.6373" style="fill:none; clip-path:url(#clipPath2);" y2="-264.6373"
+      /><line x1="388.8539" x2="296.4085" y1="-264.6373" style="fill:none; clip-path:url(#clipPath2);" y2="-264.6373"
+      /><line x1="296.4085" x2="296.4085" y1="-264.6373" style="fill:none; clip-path:url(#clipPath2);" y2="-82.7649"
+      /><line x1="296.4085" x2="296.4085" y1="-70.7649" style="fill:none; clip-path:url(#clipPath2);" y2="-11.3782"
+      /><line x1="296.4085" x2="296.4085" y1="0.6218" style="fill:none; clip-path:url(#clipPath2);" y2="47.8476"
+      /><line x1="296.4085" x2="140.4932" y1="47.8476" style="fill:none; clip-path:url(#clipPath2);" y2="47.8476"
+      /><line x1="140.4932" x2="150.8855" y1="47.8476" style="fill:none; clip-path:url(#clipPath2);" y2="41.8476"
+      /><line x1="140.4932" x2="150.8855" y1="47.8476" style="fill:none; clip-path:url(#clipPath2);" y2="53.8476"
+      /><line x1="-54.5107" x2="15.2164" y1="-108.4017" style="fill:none; clip-path:url(#clipPath2);" y2="-108.4241"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" -55 -108 -43 -102 -43 -115"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" -55 -108 -43 -102 -43 -115"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="531.9718" y="-473.4385" width="99.6926" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="531.9718" y="-473.4385" width="99.6926" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(547.8181,-455.4385)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath78);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(541.9718,-439.0943)"
+    ><path d="M4.375 0 L2.5625 0 L2.5625 -7.0625 L0.2344 -7.0625 L0.2344 -8.5625 L6.7031 -8.5625 L6.7031 -7.0625 L4.375 -7.0625 L4.375 0 ZM13.8387 -3.2812 Q13.8387 -1.6562 12.9793 -0.7656 Q12.1199 0.125 10.6512 0.125 Q9.7293 0.125 9.0105 -0.2656 Q8.3074 -0.6719 7.9012 -1.4375 Q7.4949 -2.2031 7.4949 -3.2812 Q7.4949 -4.9219 8.3387 -5.7969 Q9.198 -6.6719 10.6824 -6.6719 Q11.6043 -6.6719 12.3074 -6.2656 Q13.0262 -5.875 13.4324 -5.125 Q13.8387 -4.375 13.8387 -3.2812 ZM9.3074 -3.2812 Q9.3074 -2.3125 9.6199 -1.8125 Q9.948 -1.3125 10.6668 -1.3125 Q11.3699 -1.3125 11.6824 -1.8125 Q12.0105 -2.3125 12.0105 -3.2812 Q12.0105 -4.2656 11.6824 -4.75 Q11.3699 -5.2344 10.6512 -5.2344 Q9.948 -5.2344 9.6199 -4.75 Q9.3074 -4.2656 9.3074 -3.2812 ZM17.0948 -5.0469 Q17.0948 -4.6719 17.0636 -4.2969 Q17.0323 -3.9375 17.0011 -3.5625 L17.0323 -3.5625 Q17.2042 -3.8125 17.3917 -4.0625 Q17.5948 -4.3281 17.8136 -4.5625 L19.6417 -6.5469 L21.6573 -6.5469 L19.0636 -3.7031 L21.8136 0 L19.7511 0 L17.8605 -2.6562 L17.0948 -2.0469 L17.0948 0 L15.3136 0 L15.3136 -9.125 L17.0948 -9.125 L17.0948 -5.0469 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1911 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4411 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0036 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1286 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9411 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM33.5645 -6.6719 Q34.627 -6.6719 35.252 -6.0938 Q35.8926 -5.5312 35.8926 -4.2656 L35.8926 0 L34.1113 0 L34.1113 -3.8281 Q34.1113 -4.5312 33.8457 -4.8906 Q33.5957 -5.25 33.0488 -5.25 Q32.2363 -5.25 31.9238 -4.6875 Q31.627 -4.125 31.627 -3.0781 L31.627 0 L29.8457 0 L29.8457 -6.5469 L31.2051 -6.5469 L31.4551 -5.7188 L31.5488 -5.7188 Q31.8613 -6.2188 32.4082 -6.4375 Q32.9551 -6.6719 33.5645 -6.6719 ZM42.9173 -2.375 Q42.9173 -1.2344 42.0891 -0.5469 Q41.2766 0.125 39.761 0.125 Q38.4173 0.125 37.3391 -0.3906 L37.3391 -2.0938 Q37.9485 -1.8281 38.6048 -1.5938 Q39.261 -1.375 39.9173 -1.375 Q40.5891 -1.375 40.8704 -1.625 Q41.1516 -1.8906 41.1516 -2.2969 Q41.1516 -2.6094 40.9173 -2.8438 Q40.6985 -3.0781 40.3235 -3.2656 Q39.9641 -3.4688 39.4798 -3.7031 Q39.1829 -3.8438 38.8235 -4.0312 Q38.4798 -4.2344 38.1673 -4.5312 Q37.8548 -4.8281 37.636 -5.2344 Q37.4329 -5.6562 37.4329 -6.25 Q37.4329 -7.4062 38.2141 -8.0469 Q38.9954 -8.6875 40.3391 -8.6875 Q41.011 -8.6875 41.6204 -8.5312 Q42.2298 -8.375 42.886 -8.0938 L42.3079 -6.6719 Q41.7141 -6.9062 41.2454 -7.0312 Q40.7766 -7.1719 40.2766 -7.1719 Q39.761 -7.1719 39.4798 -6.9375 Q39.2141 -6.7031 39.2141 -6.3125 Q39.2141 -5.8594 39.6204 -5.5938 Q40.0266 -5.3281 40.8391 -4.9375 Q41.4954 -4.625 41.9485 -4.2812 Q42.4173 -3.9531 42.6673 -3.5 Q42.9173 -3.0469 42.9173 -2.375 ZM47.0449 -6.6719 Q48.3887 -6.6719 49.1855 -5.8906 Q49.9824 -5.125 49.9824 -3.7031 L49.9824 -2.8281 L45.7637 -2.8281 Q45.7793 -2.0781 46.2012 -1.6406 Q46.6387 -1.2188 47.3887 -1.2188 Q48.0293 -1.2188 48.5449 -1.3438 Q49.0605 -1.4688 49.6074 -1.7344 L49.6074 -0.3438 Q49.123 -0.1094 48.5918 0 Q48.0605 0.125 47.3105 0.125 Q46.3262 0.125 45.5605 -0.2344 Q44.8105 -0.6094 44.373 -1.3438 Q43.9512 -2.0938 43.9512 -3.2344 Q43.9512 -4.375 44.3262 -5.1406 Q44.7168 -5.9062 45.4199 -6.2812 Q46.123 -6.6719 47.0449 -6.6719 ZM47.0449 -5.4062 Q46.5293 -5.4062 46.1855 -5.0625 Q45.8574 -4.7344 45.7949 -4.0156 L48.2949 -4.0156 Q48.2949 -4.625 47.9824 -5.0156 Q47.6855 -5.4062 47.0449 -5.4062 ZM55.0901 -6.6719 Q55.2307 -6.6719 55.4026 -6.6562 Q55.5901 -6.6406 55.6995 -6.625 L55.5589 -4.9375 Q55.4807 -4.9688 55.3089 -4.9844 Q55.1526 -5 55.0276 -5 Q54.5745 -5 54.1526 -4.8438 Q53.7307 -4.6875 53.4651 -4.3125 Q53.2151 -3.9531 53.2151 -3.3438 L53.2151 0 L51.4339 0 L51.4339 -6.5469 L52.7932 -6.5469 L53.0589 -5.4531 L53.137 -5.4531 Q53.4182 -5.9531 53.9182 -6.3125 Q54.4339 -6.6719 55.0901 -6.6719 ZM58.4444 0 L55.9444 -6.5469 L57.8194 -6.5469 L59.0694 -2.8125 Q59.1788 -2.4844 59.2413 -2.125 Q59.3194 -1.7656 59.335 -1.4688 L59.3819 -1.4688 Q59.4131 -2.125 59.6475 -2.8125 L60.8975 -6.5469 L62.7725 -6.5469 L60.2725 0 L58.4444 0 ZM64.6162 -9.125 Q65.0068 -9.125 65.2881 -8.9375 Q65.5849 -8.75 65.5849 -8.25 Q65.5849 -7.75 65.2881 -7.5625 Q65.0068 -7.375 64.6162 -7.375 Q64.1943 -7.375 63.9131 -7.5625 Q63.6318 -7.75 63.6318 -8.25 Q63.6318 -8.75 63.9131 -8.9375 Q64.1943 -9.125 64.6162 -9.125 ZM65.4912 -6.5469 L65.4912 0 L63.7099 0 L63.7099 -6.5469 L65.4912 -6.5469 ZM70.0262 0.125 Q68.5731 0.125 67.7762 -0.6875 Q66.9793 -1.5 66.9793 -3.2344 Q66.9793 -4.4375 67.3856 -5.1875 Q67.7918 -5.9531 68.5106 -6.3125 Q69.245 -6.6719 70.1825 -6.6719 Q70.8543 -6.6719 71.3543 -6.5312 Q71.8543 -6.4062 72.2293 -6.2344 L71.6981 -4.8438 Q71.2762 -5.0156 70.9012 -5.125 Q70.5418 -5.2344 70.1825 -5.2344 Q68.7918 -5.2344 68.7918 -3.25 Q68.7918 -2.2656 69.1512 -1.7969 Q69.5262 -1.3281 70.1825 -1.3281 Q70.745 -1.3281 71.1825 -1.4688 Q71.62 -1.625 72.0262 -1.8906 L72.0262 -0.375 Q71.62 -0.1094 71.1668 0 Q70.7137 0.125 70.0262 0.125 ZM76.2411 -6.6719 Q77.5849 -6.6719 78.3818 -5.8906 Q79.1786 -5.125 79.1786 -3.7031 L79.1786 -2.8281 L74.9599 -2.8281 Q74.9755 -2.0781 75.3974 -1.6406 Q75.8349 -1.2188 76.5849 -1.2188 Q77.2255 -1.2188 77.7411 -1.3438 Q78.2568 -1.4688 78.8036 -1.7344 L78.8036 -0.3438 Q78.3193 -0.1094 77.788 0 Q77.2568 0.125 76.5068 0.125 Q75.5224 0.125 74.7568 -0.2344 Q74.0068 -0.6094 73.5693 -1.3438 Q73.1474 -2.0938 73.1474 -3.2344 Q73.1474 -4.375 73.5224 -5.1406 Q73.913 -5.9062 74.6161 -6.2812 Q75.3193 -6.6719 76.2411 -6.6719 ZM76.2411 -5.4062 Q75.7255 -5.4062 75.3818 -5.0625 Q75.0536 -4.7344 74.9911 -4.0156 L77.4911 -4.0156 Q77.4911 -4.625 77.1786 -5.0156 Q76.8818 -5.4062 76.2411 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath79);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="-222.4957" x2="-601.5654" y1="-91.4018" style="fill:none; clip-path:url(#clipPath2);" y2="-14.8005"
+      /><line x1="-601.5654" x2="-592.5675" y1="-14.8005" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-22.7401"
+      /><line x1="-601.5654" x2="-590.1906" y1="-14.8005" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-10.9779"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-438.3948,-55.4453)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath76);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175) translate(-462.0306,-52.2732)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM31.9517 9.7968 Q31.9517 10.6875 31.5767 11.4062 Q31.2173 12.125 30.4829 12.5468 Q29.7485 12.9531 28.6079 12.9531 Q27.0142 12.9531 26.1704 12.0781 Q25.3423 11.2031 25.3423 9.7812 L25.3423 4.2656 L26.4204 4.2656 L26.4204 9.8125 Q26.4204 10.8593 26.9829 11.4375 Q27.5454 12.0156 28.6704 12.0156 Q29.8267 12.0156 30.3423 11.4062 Q30.8735 10.7812 30.8735 9.7968 L30.8735 4.2656 L31.9517 4.2656 L31.9517 9.7968 ZM38.2393 11.0468 Q38.2393 11.9843 37.5362 12.4687 Q36.8487 12.9531 35.6768 12.9531 Q35.005 12.9531 34.5206 12.8437 Q34.0362 12.7343 33.6612 12.5468 L33.6612 11.5781 Q34.0518 11.7656 34.5831 11.9375 Q35.13 12.0937 35.6925 12.0937 Q36.505 12.0937 36.8643 11.8437 Q37.2237 11.5781 37.2237 11.1406 Q37.2237 10.9062 37.0831 10.7187 Q36.9581 10.5312 36.6143 10.3437 Q36.2706 10.1406 35.6456 9.9062 Q35.0206 9.6562 34.5675 9.4218 Q34.13 9.1875 33.88 8.8593 Q33.6456 8.5156 33.6456 7.9843 Q33.6456 7.1718 34.3018 6.7343 Q34.9737 6.2812 36.0675 6.2812 Q36.6456 6.2812 37.1456 6.3906 Q37.6612 6.5 38.1143 6.7031 L37.755 7.5468 Q37.3487 7.375 36.8956 7.2656 Q36.4581 7.1406 35.9893 7.1406 Q35.3331 7.1406 34.9893 7.3593 Q34.6612 7.5625 34.6612 7.9218 Q34.6612 8.1875 34.8175 8.375 Q34.9737 8.5625 35.3331 8.7343 Q35.6925 8.9062 36.3175 9.1406 Q36.9268 9.375 37.3487 9.625 Q37.7862 9.8593 38.005 10.2031 Q38.2393 10.5312 38.2393 11.0468 ZM42.2843 6.2812 Q43.1124 6.2812 43.7061 6.6406 Q44.2999 7 44.6124 7.6562 Q44.9405 8.2968 44.9405 9.1875 L44.9405 9.8125 L40.5343 9.8125 Q40.5655 10.9062 41.0968 11.4843 Q41.628 12.0468 42.5811 12.0468 Q43.2061 12.0468 43.6749 11.9375 Q44.1436 11.8125 44.6593 11.6093 L44.6593 12.5312 Q44.1593 12.75 43.6749 12.8437 Q43.2061 12.9531 42.5343 12.9531 Q41.628 12.9531 40.9249 12.5781 Q40.2218 12.2031 39.8311 11.4687 Q39.4405 10.7343 39.4405 9.6562 Q39.4405 8.6093 39.7999 7.8593 Q40.1593 7.0937 40.7999 6.6875 Q41.4405 6.2812 42.2843 6.2812 ZM42.2686 7.1406 Q41.5186 7.1406 41.0811 7.625 Q40.6436 8.1093 40.5655 8.9687 L43.8311 8.9687 Q43.8311 8.1562 43.4561 7.6562 Q43.0811 7.1406 42.2686 7.1406 ZM49.5679 6.2812 Q49.7554 6.2812 49.9586 6.2968 Q50.1773 6.3125 50.3336 6.3437 L50.1929 7.3125 Q50.0367 7.2812 49.8492 7.2656 Q49.6617 7.2343 49.5054 7.2343 Q49.0054 7.2343 48.5679 7.5156 Q48.1461 7.7812 47.8804 8.2656 Q47.6304 8.75 47.6304 9.3906 L47.6304 12.8281 L46.5679 12.8281 L46.5679 6.3906 L47.4429 6.3906 L47.5523 7.5781 L47.5992 7.5781 Q47.9117 7.0468 48.3961 6.6718 Q48.8961 6.2812 49.5679 6.2812 ZM52.8052 11.5625 Q52.649 12.2031 52.3521 12.9687 Q52.0709 13.7343 51.774 14.375 L50.9927 14.375 Q51.1646 13.6875 51.3365 12.875 Q51.524 12.0625 51.6021 11.4375 L52.7271 11.4375 L52.8052 11.5625 ZM57.3025 12.8281 L54.2088 12.8281 L54.2088 12.2031 L55.2088 11.9687 L55.2088 5.125 L54.2088 4.8906 L54.2088 4.2656 L57.3025 4.2656 L57.3025 4.8906 L56.2869 5.125 L56.2869 11.9687 L57.3025 12.2031 L57.3025 12.8281 ZM65.8237 8.4531 Q65.8237 10.625 64.6362 11.7343 Q63.4487 12.8281 61.3393 12.8281 L58.9487 12.8281 L58.9487 4.2656 L61.5893 4.2656 Q62.8862 4.2656 63.8393 4.75 Q64.7924 5.2187 65.308 6.1562 Q65.8237 7.0781 65.8237 8.4531 ZM64.683 8.5 Q64.683 6.7812 63.8393 5.9843 Q62.9955 5.1875 61.433 5.1875 L60.0424 5.1875 L60.0424 11.9062 L61.1987 11.9062 Q64.683 11.9062 64.683 8.5 ZM67.0368 10.0781 L67.0368 9.1406 L69.9431 9.1406 L69.9431 10.0781 L67.0368 10.0781 ZM71.0102 10.5 L75.5415 8.6093 L71.0102 6.4687 L71.0102 5.5312 L76.6665 8.3593 L76.6665 8.9531 L71.0102 11.4375 L71.0102 10.5 ZM78.843 3.9843 Q79.0774 3.9843 79.2649 4.1562 Q79.4524 4.3125 79.4524 4.6562 Q79.4524 4.9843 79.2649 5.1562 Q79.0774 5.3281 78.843 5.3281 Q78.5774 5.3281 78.3899 5.1562 Q78.218 4.9843 78.218 4.6562 Q78.218 4.3125 78.3899 4.1562 Q78.5774 3.9843 78.843 3.9843 ZM79.3587 6.3906 L79.3587 12.8281 L78.2962 12.8281 L78.2962 6.3906 L79.3587 6.3906 ZM84.4859 6.2812 Q85.6422 6.2812 86.2203 6.8437 Q86.8141 7.3906 86.8141 8.6406 L86.8141 12.8281 L85.7828 12.8281 L85.7828 8.7187 Q85.7828 7.1718 84.3297 7.1718 Q83.2672 7.1718 82.8609 7.7656 Q82.4547 8.3593 82.4547 9.4843 L82.4547 12.8281 L81.3922 12.8281 L81.3922 6.3906 L82.2516 6.3906 L82.4078 7.2656 L82.4703 7.2656 Q82.7828 6.7656 83.3297 6.5312 Q83.8766 6.2812 84.4859 6.2812 ZM90.9645 12.0781 Q91.1989 12.0781 91.4489 12.0468 Q91.6989 12 91.8551 11.9531 L91.8551 12.75 Q91.6989 12.8437 91.3864 12.8906 Q91.0739 12.9531 90.777 12.9531 Q90.277 12.9531 89.8395 12.7812 Q89.4176 12.5937 89.152 12.1718 Q88.902 11.7343 88.902 10.9531 L88.902 7.2187 L87.9801 7.2187 L87.9801 6.7031 L88.902 6.2812 L89.3239 4.9218 L89.9489 4.9218 L89.9489 6.3906 L91.8082 6.3906 L91.8082 7.2187 L89.9489 7.2187 L89.9489 10.9375 Q89.9489 11.5156 90.2301 11.7968 Q90.5114 12.0781 90.9645 12.0781 ZM92.7184 10.5 L97.2496 8.6093 L92.7184 6.4687 L92.7184 5.5312 L98.3746 8.3593 L98.3746 8.9531 L92.7184 11.4375 L92.7184 10.5 Z" style="stroke:none; clip-path:url(#clipPath77);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1048.5936,1255.3175)"
+    ><path d="M441.3942 -453.0943 A9.0405 9.0405 0 0 0 423.3131 -453.0943" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M287.1676 -453.0943 A11.657 11.657 0 0 0 263.8536 -453.0943" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="152.5206" x2="152.5206" y1="-499.1388" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="152.5206" x2="263.8536" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="287.1676" x2="423.3131" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="441.3942" x2="531.9718" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-447.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-459.0943"
+      /><path d="M792.4622 -459.8345 A11.8069 11.8069 0 0 0 768.8605 -459.0793" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M704.1594 -457.009 A6 6 0 0 0 692.1655 -456.6252" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="631.6644" x2="692.1655" y1="-454.6893" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-456.6252"
+      /><line x1="704.1594" x2="768.8605" y1="-457.009" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-459.0793"
+      /><line x1="792.4622" x2="895.5297" y1="-459.8345" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-463.1324"
+      /><line x1="631.6644" x2="641.8595" y1="-454.6893" style="fill:none; clip-path:url(#clipPath2);" y2="-461.0186"
+      /><line x1="631.6644" x2="642.2433" y1="-454.6893" style="fill:none; clip-path:url(#clipPath2);" y2="-449.0247"
+      /><path d="M701.3743 -251.5799 A6 6 0 0 0 694.9506 -261.7158" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="794.9937" x2="701.3743" y1="-103.8588" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-251.5799"
+      /><line x1="694.9506" x2="586.5562" y1="-261.7158" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-432.7502"
+      /><line x1="794.9937" x2="784.3627" y1="-103.8588" style="fill:none; clip-path:url(#clipPath2);" y2="-109.4249"
+      /><line x1="794.9937" x2="794.4985" y1="-103.8588" style="fill:none; clip-path:url(#clipPath2);" y2="-115.8486"
+      /><path d="M701.874 -605.5878 A6 6 0 0 0 694.4509 -596.1592" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="597.8347" x2="694.4509" y1="-473.4385" style="fill:none; clip-path:url(#clipPath2);" y2="-596.1592"
+      /><line x1="701.874" x2="763.0482" y1="-605.5878" style="fill:none; clip-path:url(#clipPath2);" y2="-683.2905"
+      /><line x1="763.0482" x2="761.334" y1="-683.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-671.4136"
+      /><line x1="763.0482" x2="751.9053" y1="-683.2905" style="fill:none; clip-path:url(#clipPath2);" y2="-678.8366"
+      /><path d="M790.5965 -496.6843 A11.0392 11.0392 0 0 0 768.9841 -492.172" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M704.0358 -478.6117 A6 6 0 0 0 692.2891 -476.1591" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="631.6644" x2="692.2891" y1="-463.5015" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-476.1591"
+      /><line x1="704.0358" x2="768.9841" y1="-478.6117" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-492.172"
+      /><line x1="790.5965" x2="919.7039" y1="-496.6843" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-523.6402"
+      /><line x1="631.6644" x2="640.6111" y1="-463.5015" style="fill:none; clip-path:url(#clipPath2);" y2="-471.4989"
+      /><line x1="631.6644" x2="643.0636" y1="-463.5015" style="fill:none; clip-path:url(#clipPath2);" y2="-459.7522"
+      /><path d="M441.3942 -453.0943 A9.0405 9.0405 0 0 0 423.3131 -453.0943" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="309.0428" x2="309.0428" y1="-499.3225" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="309.0428" x2="423.3131" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="441.3942" x2="531.9718" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-447.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-459.0943"
+      /><line x1="474.7245" x2="474.7245" y1="-499.2932" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="474.7245" x2="531.9718" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-453.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-447.0943"
+      /><line x1="531.9718" x2="521.5795" y1="-453.0943" style="fill:none; clip-path:url(#clipPath2);" y2="-459.0943"
+    /></g
+  ></g
+></svg
+>
diff --git a/diagramas/User.svg.bak b/diagramas/User.svg.bak
new file mode 100644
index 0000000000000000000000000000000000000000..88798d5a1d7cb65350cde605f8933004bd670da6
--- /dev/null
+++ b/diagramas/User.svg.bak
@@ -0,0 +1,879 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
+          'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
+<svg xmlns:xlink="http://www.w3.org/1999/xlink" style="fill-opacity:1; color-rendering:auto; color-interpolation:auto; text-rendering:auto; stroke:black; stroke-linecap:square; stroke-miterlimit:10; shape-rendering:auto; stroke-opacity:1; fill:black; stroke-dasharray:none; font-weight:normal; stroke-width:1; font-family:'Dialog'; font-style:normal; stroke-linejoin:miter; font-size:12px; stroke-dashoffset:0; image-rendering:auto;" width="4217" height="3264" xmlns="http://www.w3.org/2000/svg"
+><!--Generated by the Batik Graphics2D SVG Generator--><defs id="genericDefs"
+  /><g
+  ><defs id="defs1"
+    ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath1"
+      ><path d="M0 0 L4217 0 L4217 3264 L0 3264 L0 0 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2"
+      ><path d="M-1312.3737 -1247.1906 L1850.3763 -1247.1906 L1850.3763 1200.8094 L-1312.3737 1200.8094 L-1312.3737 -1247.1906 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath3"
+      ><path d="M-1766.1804 -44 L1396.5696 -44 L1396.5696 2404 L-1766.1804 2404 L-1766.1804 -44 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath4"
+      ><path d="M-1122.6581 -1146.3497 L2040.0919 -1146.3497 L2040.0919 1301.6503 L-1122.6581 1301.6503 L-1122.6581 -1146.3497 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath5"
+      ><path d="M-1752.8551 -1295.2719 L1409.8949 -1295.2719 L1409.8949 1152.7281 L-1752.8551 1152.7281 L-1752.8551 -1295.2719 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath6"
+      ><path d="M-2041.8667 -1378.9655 L1120.8833 -1378.9655 L1120.8833 1069.0345 L-2041.8667 1069.0345 L-2041.8667 -1378.9655 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath7"
+      ><path d="M-2775.3018 -621.3915 L387.4483 -621.3915 L387.4483 1826.6085 L-2775.3018 1826.6085 L-2775.3018 -621.3915 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath8"
+      ><path d="M-1035.5042 -1400.2968 L2127.2458 -1400.2968 L2127.2458 1047.7032 L-1035.5042 1047.7032 L-1035.5042 -1400.2968 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath9"
+      ><path d="M-1907.786 -1432.9185 L1254.964 -1432.9185 L1254.964 1015.0815 L-1907.786 1015.0815 L-1907.786 -1432.9185 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath10"
+      ><path d="M-719.456 -601.4151 L2443.2939 -601.4151 L2443.2939 1846.585 L-719.456 1846.585 L-719.456 -601.4151 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath11"
+      ><path d="M-2606.8821 -836.3315 L555.8679 -836.3315 L555.8679 1611.6685 L-2606.8821 1611.6685 L-2606.8821 -836.3315 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath12"
+      ><path d="M-1154.2971 -1548.2568 L2008.4529 -1548.2568 L2008.4529 899.7432 L-1154.2971 899.7432 L-1154.2971 -1548.2568 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath13"
+      ><path d="M-1147.2228 -1564.601 L2015.5272 -1564.601 L2015.5272 883.399 L-1147.2228 883.399 L-1147.2228 -1564.601 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath14"
+      ><path d="M-1895.8021 -1615.7881 L1266.9479 -1615.7881 L1266.9479 832.2119 L-1895.8021 832.2119 L-1895.8021 -1615.7881 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath15"
+      ><path d="M-1898.6461 -1632.1322 L1264.1039 -1632.1322 L1264.1039 815.8679 L-1898.6461 815.8679 L-1898.6461 -1632.1322 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath16"
+      ><path d="M-628.988 -1027.4138 L2533.762 -1027.4138 L2533.762 1420.5862 L-628.988 1420.5862 L-628.988 -1027.4138 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath17"
+      ><path d="M-1879.6056 -1962.098 L1283.1444 -1962.098 L1283.1444 485.9019 L-1879.6056 485.9019 L-1879.6056 -1962.098 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath18"
+      ><path d="M-1821.3087 -2018.5586 L1341.4413 -2018.5586 L1341.4413 429.4415 L-1821.3087 429.4415 L-1821.3087 -2018.5586 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath19"
+      ><path d="M-33.0967 -1324.8574 L3129.6533 -1324.8574 L3129.6533 1123.1426 L-33.0967 1123.1426 L-33.0967 -1324.8574 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath20"
+      ><path d="M-191.4346 -1419.5056 L2971.3154 -1419.5056 L2971.3154 1028.4944 L-191.4346 1028.4944 L-191.4346 -1419.5056 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath21"
+      ><path d="M-274.6313 -1402.1615 L2888.1187 -1402.1615 L2888.1187 1045.8385 L-274.6313 1045.8385 L-274.6313 -1402.1615 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath22"
+      ><path d="M-261.6232 -1402.1615 L2901.1267 -1402.1615 L2901.1267 1045.8385 L-261.6232 1045.8385 L-261.6232 -1402.1615 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath23"
+      ><path d="M-2228.8086 -170.4028 L933.9414 -170.4028 L933.9414 2277.5972 L-2228.8086 2277.5972 L-2228.8086 -170.4028 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath24"
+      ><path d="M-936.7017 -59 L2226.0483 -59 L2226.0483 2389 L-936.7017 2389 L-936.7017 -59 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath25"
+      ><path d="M-1847.7936 -341.0672 L1314.9564 -341.0672 L1314.9564 2106.9329 L-1847.7936 2106.9329 L-1847.7936 -341.0672 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath26"
+      ><path d="M-1689.3723 -595.5 L1473.3777 -595.5 L1473.3777 1852.5 L-1689.3723 1852.5 L-1689.3723 -595.5 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath27"
+      ><path d="M-753.8907 -134.3714 L2408.8591 -134.3714 L2408.8591 2313.6287 L-753.8907 2313.6287 L-753.8907 -134.3714 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath28"
+      ><path d="M-1425.5149 -845.4741 L1737.2351 -845.4741 L1737.2351 1602.5259 L-1425.5149 1602.5259 L-1425.5149 -845.4741 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath29"
+      ><path d="M-1282.1552 -227.8084 L1880.5948 -227.8084 L1880.5948 2220.1917 L-1282.1552 2220.1917 L-1282.1552 -227.8084 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath30"
+      ><path d="M-643.3804 -271.6874 L2519.3696 -271.6874 L2519.3696 2176.3125 L-643.3804 2176.3125 L-643.3804 -271.6874 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath31"
+      ><path d="M-1271.7648 -268.0271 L1890.9852 -268.0271 L1890.9852 2179.9729 L-1271.7648 2179.9729 L-1271.7648 -268.0271 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath32"
+      ><path d="M-707.1736 -197.5495 L2455.5764 -197.5495 L2455.5764 2250.4504 L-707.1736 2250.4504 L-707.1736 -197.5495 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath33"
+      ><path d="M-1920.125 -2018.1796 L1242.625 -2018.1796 L1242.625 429.8204 L-1920.125 429.8204 L-1920.125 -2018.1796 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath34"
+      ><path d="M-558.3622 -846.1404 L2604.3879 -846.1404 L2604.3879 1601.8595 L-558.3622 1601.8595 L-558.3622 -846.1404 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath35"
+      ><path d="M-572.1812 -707.514 L2590.5688 -707.514 L2590.5688 1740.486 L-572.1812 1740.486 L-572.1812 -707.514 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath36"
+      ><path d="M-1694.3345 -1459.29 L1468.4155 -1459.29 L1468.4155 988.71 L-1694.3345 988.71 L-1694.3345 -1459.29 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath37"
+      ><path d="M-1706.0946 -1475.634 L1456.6554 -1475.634 L1456.6554 972.3659 L-1706.0946 972.3659 L-1706.0946 -1475.634 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath38"
+      ><path d="M-1788.124 -1547.6599 L1374.626 -1547.6599 L1374.626 900.34 L-1788.124 900.34 L-1788.124 -1547.6599 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath39"
+      ><path d="M-1804.0962 -1564.004 L1358.6538 -1564.004 L1358.6538 883.9959 L-1804.0962 883.9959 L-1804.0962 -1564.004 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath40"
+      ><path d="M-1154.2971 -1616.2056 L2008.4529 -1616.2056 L2008.4529 831.7944 L-1154.2971 831.7944 L-1154.2971 -1616.2056 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath41"
+      ><path d="M-1143.2971 -1632.5497 L2019.4529 -1632.5497 L2019.4529 815.4503 L-1143.2971 815.4503 L-1143.2971 -1632.5497 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath42"
+      ><path d="M-1693.7921 -1033.6471 L1468.9579 -1033.6471 L1468.9579 1414.3529 L-1693.7921 1414.3529 L-1693.7921 -1033.6471 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath43"
+      ><path d="M-2149.5178 -355.088 L1013.2322 -355.088 L1013.2322 2092.9121 L-2149.5178 2092.9121 L-2149.5178 -355.088 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath44"
+      ><path d="M-2506.2046 -989.0613 L656.5453 -989.0613 L656.5453 1458.9387 L-2506.2046 1458.9387 L-2506.2046 -989.0613 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath45"
+      ><path d="M-2456.123 -679.4116 L706.627 -679.4116 L706.627 1768.5884 L-2456.123 1768.5884 L-2456.123 -679.4116 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath46"
+      ><path d="M-1154.2971 -1480.6523 L2008.4529 -1480.6523 L2008.4529 967.3477 L-1154.2971 967.3477 L-1154.2971 -1480.6523 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath47"
+      ><path d="M-1134.0946 -1496.9965 L2028.6554 -1496.9965 L2028.6554 951.0035 L-1134.0946 951.0035 L-1134.0946 -1496.9965 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath48"
+      ><path d="M-1862.4 -259.805 L1300.35 -259.805 L1300.35 2188.1951 L-1862.4 2188.1951 L-1862.4 -259.805 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath49"
+      ><path d="M-2420.3545 -361.6641 L742.3955 -361.6641 L742.3955 2086.3359 L-2420.3545 2086.3359 L-2420.3545 -361.6641 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath50"
+      ><path d="M-935.798 -1616.2056 L2226.9521 -1616.2056 L2226.9521 831.7944 L-935.798 831.7944 L-935.798 -1616.2056 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath51"
+      ><path d="M-896.798 -1632.5497 L2265.9521 -1632.5497 L2265.9521 815.4503 L-896.798 815.4503 L-896.798 -1632.5497 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath52"
+      ><path d="M-1703.9454 -696.1501 L1458.8046 -696.1501 L1458.8046 1751.85 L-1703.9454 1751.85 L-1703.9454 -696.1501 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath53"
+      ><path d="M-564.8314 -1515.1561 L2597.9187 -1515.1561 L2597.9187 932.8438 L-564.8314 932.8438 L-564.8314 -1515.1561 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath54"
+      ><path d="M-538.6772 -1518.3282 L2624.0728 -1518.3282 L2624.0728 929.6718 L-538.6772 929.6718 L-538.6772 -1518.3282 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath55"
+      ><path d="M-935.798 -1479.6107 L2226.9521 -1479.6107 L2226.9521 968.3893 L-935.798 968.3893 L-935.798 -1479.6107 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath56"
+      ><path d="M-887.6774 -1495.9548 L2275.0728 -1495.9548 L2275.0728 952.0452 L-887.6774 952.0452 L-887.6774 -1495.9548 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath57"
+      ><path d="M-554.8861 -1448.4221 L2607.8638 -1448.4221 L2607.8638 999.5779 L-554.8861 999.5779 L-554.8861 -1448.4221 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath58"
+      ><path d="M-519.2503 -1451.5941 L2643.4998 -1451.5941 L2643.4998 996.4059 L-519.2503 996.4059 L-519.2503 -1451.5941 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath59"
+      ><path d="M-935.798 -1548.2568 L2226.9521 -1548.2568 L2226.9521 899.7432 L-935.798 899.7432 L-935.798 -1548.2568 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath60"
+      ><path d="M-900.8054 -1564.601 L2261.9446 -1564.601 L2261.9446 883.399 L-900.8054 883.399 L-900.8054 -1564.601 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath61"
+      ><path d="M-561.4502 -1481.7706 L2601.2998 -1481.7706 L2601.2998 966.2294 L-561.4502 966.2294 L-561.4502 -1481.7706 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath62"
+      ><path d="M-537.8143 -1484.9427 L2624.9355 -1484.9427 L2624.9355 963.0573 L-537.8143 963.0573 L-537.8143 -1484.9427 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath63"
+      ><path d="M-1967.7163 -819.8762 L1195.0337 -819.8762 L1195.0337 1628.1238 L-1967.7163 1628.1238 L-1967.7163 -819.8762 Z"
+      /></clipPath
+    ></defs
+    ><g style="fill:white; stroke:white;"
+    ><rect x="0" y="0" width="4217" style="clip-path:url(#clipPath1); stroke:none;" height="3264"
+    /></g
+    ><g transform="scale(1.3333,1.3333) translate(1312.3736,1247.1905)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; stroke-width:2; shape-rendering:crispEdges; stroke:rgb(255,255,204);"
+    ><rect x="-901.141" y="-1237.1905" width="1096.8991" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-901.141" y="-1237.1905" width="1096.8991" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-901.141" y="-1222.1905" width="2742.2478" style="clip-path:url(#clipPath2); stroke:none;" height="2413.4093"
+      /><rect x="-901.141" y="-1222.1905" width="2742.2478" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="2413.4093"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(453.8068,-1203.1905)"
+    ><path d="M6.9531 -6.5469 L6.9531 0 L5.5781 0 L5.3438 -0.8438 L5.25 -0.8438 Q4.9375 -0.3438 4.3906 -0.1094 Q3.8438 0.125 3.2344 0.125 Q2.1719 0.125 1.5312 -0.4375 Q0.9062 -1.0156 0.9062 -2.2812 L0.9062 -6.5469 L2.6875 -6.5469 L2.6875 -2.7188 Q2.6875 -2.0312 2.9375 -1.6719 Q3.1875 -1.3125 3.75 -1.3125 Q4.5625 -1.3125 4.8594 -1.8594 Q5.1562 -2.4219 5.1562 -3.4688 L5.1562 -6.5469 L6.9531 -6.5469 ZM13.3997 -1.9375 Q13.3997 -0.9531 12.6965 -0.4062 Q11.9934 0.125 10.6028 0.125 Q9.9153 0.125 9.4153 0.0312 Q8.9309 -0.0625 8.4309 -0.2656 L8.4309 -1.7344 Q8.9622 -1.5 9.5715 -1.3438 Q10.1809 -1.1875 10.6497 -1.1875 Q11.1809 -1.1875 11.3997 -1.3438 Q11.634 -1.5 11.634 -1.75 Q11.634 -1.9219 11.5403 -2.0469 Q11.4465 -2.1875 11.1497 -2.3438 Q10.8528 -2.5156 10.2122 -2.7812 Q9.6028 -3.0469 9.1965 -3.2969 Q8.8059 -3.5625 8.6184 -3.9219 Q8.4309 -4.2969 8.4309 -4.8438 Q8.4309 -5.7656 9.134 -6.2188 Q9.8372 -6.6719 11.009 -6.6719 Q11.634 -6.6719 12.1809 -6.5469 Q12.7278 -6.4375 13.3215 -6.1562 L12.7747 -4.875 Q12.3059 -5.0781 11.8684 -5.2188 Q11.4309 -5.3594 10.9934 -5.3594 Q10.1965 -5.3594 10.1965 -4.9219 Q10.1965 -4.7656 10.2903 -4.6406 Q10.3997 -4.5156 10.6965 -4.3594 Q10.9934 -4.2188 11.5715 -3.9844 Q12.134 -3.75 12.5403 -3.5 Q12.9465 -3.2656 13.1653 -2.8906 Q13.3997 -2.5312 13.3997 -1.9375 ZM17.4887 -6.6719 Q18.8325 -6.6719 19.6293 -5.8906 Q20.4262 -5.125 20.4262 -3.7031 L20.4262 -2.8281 L16.2075 -2.8281 Q16.2231 -2.0781 16.645 -1.6406 Q17.0825 -1.2188 17.8325 -1.2188 Q18.4731 -1.2188 18.9887 -1.3438 Q19.5043 -1.4688 20.0512 -1.7344 L20.0512 -0.3438 Q19.5668 -0.1094 19.0356 0 Q18.5043 0.125 17.7543 0.125 Q16.77 0.125 16.0043 -0.2344 Q15.2543 -0.6094 14.8168 -1.3438 Q14.395 -2.0938 14.395 -3.2344 Q14.395 -4.375 14.77 -5.1406 Q15.1606 -5.9062 15.8637 -6.2812 Q16.5668 -6.6719 17.4887 -6.6719 ZM17.4887 -5.4062 Q16.9731 -5.4062 16.6293 -5.0625 Q16.3012 -4.7344 16.2387 -4.0156 L18.7387 -4.0156 Q18.7387 -4.625 18.4262 -5.0156 Q18.1293 -5.4062 17.4887 -5.4062 ZM25.5339 -6.6719 Q25.6745 -6.6719 25.8464 -6.6562 Q26.0339 -6.6406 26.1433 -6.625 L26.0026 -4.9375 Q25.9245 -4.9688 25.7526 -4.9844 Q25.5964 -5 25.4714 -5 Q25.0183 -5 24.5964 -4.8438 Q24.1745 -4.6875 23.9089 -4.3125 Q23.6589 -3.9531 23.6589 -3.3438 L23.6589 0 L21.8776 0 L21.8776 -6.5469 L23.237 -6.5469 L23.5026 -5.4531 L23.5808 -5.4531 Q23.862 -5.9531 24.362 -6.3125 Q24.8776 -6.6719 25.5339 -6.6719 ZM31.9038 -1.9375 Q31.9038 -0.9531 31.2007 -0.4062 Q30.4976 0.125 29.1069 0.125 Q28.4194 0.125 27.9194 0.0312 Q27.4351 -0.0625 26.9351 -0.2656 L26.9351 -1.7344 Q27.4663 -1.5 28.0757 -1.3438 Q28.6851 -1.1875 29.1538 -1.1875 Q29.6851 -1.1875 29.9038 -1.3438 Q30.1382 -1.5 30.1382 -1.75 Q30.1382 -1.9219 30.0444 -2.0469 Q29.9507 -2.1875 29.6538 -2.3438 Q29.3569 -2.5156 28.7163 -2.7812 Q28.1069 -3.0469 27.7007 -3.2969 Q27.3101 -3.5625 27.1226 -3.9219 Q26.9351 -4.2969 26.9351 -4.8438 Q26.9351 -5.7656 27.6382 -6.2188 Q28.3413 -6.6719 29.5132 -6.6719 Q30.1382 -6.6719 30.6851 -6.5469 Q31.2319 -6.4375 31.8257 -6.1562 L31.2788 -4.875 Q30.8101 -5.0781 30.3726 -5.2188 Q29.9351 -5.3594 29.4976 -5.3594 Q28.7007 -5.3594 28.7007 -4.9219 Q28.7007 -4.7656 28.7944 -4.6406 Q28.9038 -4.5156 29.2007 -4.3594 Q29.4976 -4.2188 30.0757 -3.9844 Q30.6382 -3.75 31.0444 -3.5 Q31.4507 -3.2656 31.6694 -2.8906 Q31.9038 -2.5312 31.9038 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath3);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-199.7155" y="-118.8407" width="116" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="-199.7155" y="-118.8407" width="116" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-189.7155,-100.8407)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM33.9043 0 L33.2793 -2.0469 L30.1543 -2.0469 L29.5293 0 L27.5762 0 L30.6075 -8.6094 L32.8262 -8.6094 L35.8575 0 L33.9043 0 ZM32.2168 -5.5625 Q32.1543 -5.7656 32.0606 -6.0781 Q31.9668 -6.3906 31.8731 -6.7031 Q31.7793 -7.0312 31.7168 -7.2656 Q31.6543 -7.0312 31.545 -6.6719 Q31.4512 -6.3281 31.3575 -6 Q31.2793 -5.6875 31.2168 -5.5625 L30.6075 -3.5625 L32.8418 -3.5625 L32.2168 -5.5625 ZM40.4344 -6.6719 Q41.5438 -6.6719 42.2313 -5.8125 Q42.9188 -4.9531 42.9188 -3.2812 Q42.9188 -1.625 42.2 -0.75 Q41.4969 0.125 40.3875 0.125 Q39.6844 0.125 39.2625 -0.125 Q38.8406 -0.3906 38.575 -0.7188 L38.4813 -0.7188 Q38.575 -0.2188 38.575 0.2344 L38.575 2.875 L36.7938 2.875 L36.7938 -6.5469 L38.2469 -6.5469 L38.4969 -5.7031 L38.575 -5.7031 Q38.8406 -6.0938 39.2781 -6.375 Q39.7313 -6.6719 40.4344 -6.6719 ZM39.8719 -5.25 Q39.1688 -5.25 38.8875 -4.8125 Q38.6063 -4.375 38.575 -3.4844 L38.575 -3.2969 Q38.575 -2.3594 38.8563 -1.8438 Q39.1375 -1.3281 39.8875 -1.3281 Q40.4969 -1.3281 40.7938 -1.8438 Q41.0906 -2.3594 41.0906 -3.3125 Q41.0906 -5.25 39.8719 -5.25 ZM48.0304 -6.6719 Q49.1398 -6.6719 49.8273 -5.8125 Q50.5148 -4.9531 50.5148 -3.2812 Q50.5148 -1.625 49.7961 -0.75 Q49.0929 0.125 47.9836 0.125 Q47.2804 0.125 46.8586 -0.125 Q46.4367 -0.3906 46.1711 -0.7188 L46.0773 -0.7188 Q46.1711 -0.2188 46.1711 0.2344 L46.1711 2.875 L44.3898 2.875 L44.3898 -6.5469 L45.8429 -6.5469 L46.0929 -5.7031 L46.1711 -5.7031 Q46.4367 -6.0938 46.8742 -6.375 Q47.3273 -6.6719 48.0304 -6.6719 ZM47.4679 -5.25 Q46.7648 -5.25 46.4836 -4.8125 Q46.2023 -4.375 46.1711 -3.4844 L46.1711 -3.2969 Q46.1711 -2.3594 46.4523 -1.8438 Q46.7336 -1.3281 47.4836 -1.3281 Q48.0929 -1.3281 48.3898 -1.8438 Q48.6867 -2.3594 48.6867 -3.3125 Q48.6867 -5.25 47.4679 -5.25 ZM53.7671 0 L51.9859 0 L51.9859 -9.125 L53.7671 -9.125 L53.7671 0 ZM56.5521 -9.125 Q56.9428 -9.125 57.224 -8.9375 Q57.5209 -8.75 57.5209 -8.25 Q57.5209 -7.75 57.224 -7.5625 Q56.9428 -7.375 56.5521 -7.375 Q56.1303 -7.375 55.849 -7.5625 Q55.5678 -7.75 55.5678 -8.25 Q55.5678 -8.75 55.849 -8.9375 Q56.1303 -9.125 56.5521 -9.125 ZM57.4271 -6.5469 L57.4271 0 L55.6459 0 L55.6459 -6.5469 L57.4271 -6.5469 ZM61.9622 0.125 Q60.509 0.125 59.7122 -0.6875 Q58.9153 -1.5 58.9153 -3.2344 Q58.9153 -4.4375 59.3215 -5.1875 Q59.7278 -5.9531 60.4465 -6.3125 Q61.1809 -6.6719 62.1184 -6.6719 Q62.7903 -6.6719 63.2903 -6.5312 Q63.7903 -6.4062 64.1653 -6.2344 L63.634 -4.8438 Q63.2122 -5.0156 62.8372 -5.125 Q62.4778 -5.2344 62.1184 -5.2344 Q60.7278 -5.2344 60.7278 -3.25 Q60.7278 -2.2656 61.0872 -1.7969 Q61.4622 -1.3281 62.1184 -1.3281 Q62.6809 -1.3281 63.1184 -1.4688 Q63.5559 -1.625 63.9622 -1.8906 L63.9622 -0.375 Q63.5559 -0.1094 63.1028 0 Q62.6497 0.125 61.9622 0.125 ZM68.1615 -6.6875 Q69.474 -6.6875 70.1771 -6.1094 Q70.8802 -5.5469 70.8802 -4.375 L70.8802 0 L69.6302 0 L69.2865 -0.8906 L69.2396 -0.8906 Q68.8177 -0.3594 68.349 -0.1094 Q67.8802 0.125 67.0677 0.125 Q66.1927 0.125 65.6146 -0.3906 Q65.0365 -0.9062 65.0365 -1.9531 Q65.0365 -3 65.7708 -3.5 Q66.5052 -4 67.974 -4.0469 L69.1146 -4.0781 L69.1146 -4.375 Q69.1146 -4.8906 68.8333 -5.125 Q68.5677 -5.3594 68.0833 -5.3594 Q67.6146 -5.3594 67.1458 -5.2188 Q66.6927 -5.0938 66.2396 -4.8906 L65.6458 -6.0938 Q66.1771 -6.375 66.8177 -6.5312 Q67.4583 -6.6875 68.1615 -6.6875 ZM68.4115 -3.0156 Q67.5521 -2.9844 67.2083 -2.6875 Q66.8802 -2.4062 66.8802 -1.9375 Q66.8802 -1.5312 67.1146 -1.3594 Q67.349 -1.1875 67.7396 -1.1875 Q68.3177 -1.1875 68.7083 -1.5312 Q69.1146 -1.875 69.1146 -2.5 L69.1146 -3.0312 L68.4115 -3.0156 ZM75.4876 -1.3125 Q75.7845 -1.3125 76.0501 -1.3594 Q76.3314 -1.4219 76.6126 -1.5156 L76.6126 -0.1875 Q76.3158 -0.0625 75.8939 0.0312 Q75.472 0.125 74.972 0.125 Q74.3783 0.125 73.9095 -0.0625 Q73.4564 -0.2656 73.1751 -0.7344 Q72.9095 -1.2188 72.9095 -2.0469 L72.9095 -5.2031 L72.0658 -5.2031 L72.0658 -5.9688 L73.0501 -6.5625 L73.5658 -7.9375 L74.7064 -7.9375 L74.7064 -6.5469 L76.5345 -6.5469 L76.5345 -5.2031 L74.7064 -5.2031 L74.7064 -2.0469 Q74.7064 -1.6875 74.9095 -1.5 Q75.1283 -1.3125 75.4876 -1.3125 ZM78.8363 -9.125 Q79.2269 -9.125 79.5082 -8.9375 Q79.805 -8.75 79.805 -8.25 Q79.805 -7.75 79.5082 -7.5625 Q79.2269 -7.375 78.8363 -7.375 Q78.4144 -7.375 78.1332 -7.5625 Q77.8519 -7.75 77.8519 -8.25 Q77.8519 -8.75 78.1332 -8.9375 Q78.4144 -9.125 78.8363 -9.125 ZM79.7113 -6.5469 L79.7113 0 L77.93 0 L77.93 -6.5469 L79.7113 -6.5469 ZM87.5432 -3.2812 Q87.5432 -1.6562 86.6838 -0.7656 Q85.8244 0.125 84.3557 0.125 Q83.4338 0.125 82.7151 -0.2656 Q82.0119 -0.6719 81.6057 -1.4375 Q81.1994 -2.2031 81.1994 -3.2812 Q81.1994 -4.9219 82.0432 -5.7969 Q82.9026 -6.6719 84.3869 -6.6719 Q85.3088 -6.6719 86.0119 -6.2656 Q86.7307 -5.875 87.1369 -5.125 Q87.5432 -4.375 87.5432 -3.2812 ZM83.0119 -3.2812 Q83.0119 -2.3125 83.3244 -1.8125 Q83.6526 -1.3125 84.3713 -1.3125 Q85.0744 -1.3125 85.3869 -1.8125 Q85.7151 -2.3125 85.7151 -3.2812 Q85.7151 -4.2656 85.3869 -4.75 Q85.0744 -5.2344 84.3557 -5.2344 Q83.6526 -5.2344 83.3244 -4.75 Q83.0119 -4.2656 83.0119 -3.2812 ZM92.7369 -6.6719 Q93.7994 -6.6719 94.4244 -6.0938 Q95.065 -5.5312 95.065 -4.2656 L95.065 0 L93.2837 0 L93.2837 -3.8281 Q93.2837 -4.5312 93.0181 -4.8906 Q92.7681 -5.25 92.2212 -5.25 Q91.4087 -5.25 91.0962 -4.6875 Q90.7994 -4.125 90.7994 -3.0781 L90.7994 0 L89.0181 0 L89.0181 -6.5469 L90.3775 -6.5469 L90.6275 -5.7188 L90.7212 -5.7188 Q91.0337 -6.2188 91.5806 -6.4375 Q92.1275 -6.6719 92.7369 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath4);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-635.8347" y="14.0813" width="876.2529" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-635.8347" y="14.0813" width="876.2529" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-635.8347" y="29.0813" width="2190.6322" style="clip-path:url(#clipPath2); stroke:none;" height="1072.6298"
+      /><rect x="-635.8347" y="29.0813" width="2190.6322" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="1072.6298"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(440.4814,48.0813)"
+    ><path d="M8.625 -6.6719 Q9.75 -6.6719 10.3125 -6.0938 Q10.8906 -5.5312 10.8906 -4.2656 L10.8906 0 L9.0938 0 L9.0938 -3.8281 Q9.0938 -5.25 8.1094 -5.25 Q7.4062 -5.25 7.0938 -4.7344 Q6.7969 -4.2344 6.7969 -3.2812 L6.7969 0 L5.0156 0 L5.0156 -3.8281 Q5.0156 -5.25 4.0312 -5.25 Q3.2812 -5.25 3 -4.6875 Q2.7188 -4.125 2.7188 -3.0781 L2.7188 0 L0.9375 0 L0.9375 -6.5469 L2.2969 -6.5469 L2.5469 -5.7188 L2.6406 -5.7188 Q2.9375 -6.2188 3.4531 -6.4375 Q3.9844 -6.6719 4.5469 -6.6719 Q5.2656 -6.6719 5.7656 -6.4375 Q6.2812 -6.2031 6.5469 -5.7188 L6.7031 -5.7188 Q7 -6.2188 7.5312 -6.4375 Q8.0625 -6.6719 8.625 -6.6719 ZM18.6747 -3.2812 Q18.6747 -1.6562 17.8153 -0.7656 Q16.956 0.125 15.4872 0.125 Q14.5653 0.125 13.8466 -0.2656 Q13.1435 -0.6719 12.7372 -1.4375 Q12.331 -2.2031 12.331 -3.2812 Q12.331 -4.9219 13.1747 -5.7969 Q14.0341 -6.6719 15.5185 -6.6719 Q16.4403 -6.6719 17.1435 -6.2656 Q17.8622 -5.875 18.2685 -5.125 Q18.6747 -4.375 18.6747 -3.2812 ZM14.1435 -3.2812 Q14.1435 -2.3125 14.456 -1.8125 Q14.7841 -1.3125 15.5028 -1.3125 Q16.206 -1.3125 16.5185 -1.8125 Q16.8466 -2.3125 16.8466 -3.2812 Q16.8466 -4.2656 16.5185 -4.75 Q16.206 -5.2344 15.4872 -5.2344 Q14.7841 -5.2344 14.456 -4.75 Q14.1435 -4.2656 14.1435 -3.2812 ZM22.2278 0.125 Q21.134 0.125 20.4465 -0.7344 Q19.759 -1.5938 19.759 -3.2656 Q19.759 -4.9375 20.4465 -5.7969 Q21.1496 -6.6719 22.2746 -6.6719 Q22.9778 -6.6719 23.4309 -6.3906 Q23.8996 -6.125 24.1496 -5.7188 L24.2121 -5.7188 Q24.1809 -5.9062 24.134 -6.2656 Q24.0871 -6.6406 24.0871 -7.0156 L24.0871 -9.125 L25.8684 -9.125 L25.8684 0 L24.509 0 L24.1496 -0.8594 L24.0871 -0.8594 Q23.8215 -0.4375 23.3684 -0.1562 Q22.9309 0.125 22.2278 0.125 ZM22.8528 -1.3125 Q23.5871 -1.3125 23.884 -1.75 Q24.1965 -2.1875 24.1965 -3.0625 L24.1965 -3.25 Q24.1965 -4.2188 23.8996 -4.7188 Q23.6184 -5.2188 22.8215 -5.2188 Q22.2434 -5.2188 21.8996 -4.7031 Q21.5715 -4.2031 21.5715 -3.2344 Q21.5715 -2.2812 21.8996 -1.7969 Q22.2434 -1.3125 22.8528 -1.3125 ZM30.4488 -6.6719 Q31.7926 -6.6719 32.5894 -5.8906 Q33.3863 -5.125 33.3863 -3.7031 L33.3863 -2.8281 L29.1676 -2.8281 Q29.1832 -2.0781 29.6051 -1.6406 Q30.0426 -1.2188 30.7926 -1.2188 Q31.4332 -1.2188 31.9488 -1.3438 Q32.4644 -1.4688 33.0113 -1.7344 L33.0113 -0.3438 Q32.5269 -0.1094 31.9957 0 Q31.4644 0.125 30.7144 0.125 Q29.7301 0.125 28.9644 -0.2344 Q28.2144 -0.6094 27.7769 -1.3438 Q27.3551 -2.0938 27.3551 -3.2344 Q27.3551 -4.375 27.7301 -5.1406 Q28.1207 -5.9062 28.8238 -6.2812 Q29.5269 -6.6719 30.4488 -6.6719 ZM30.4488 -5.4062 Q29.9332 -5.4062 29.5894 -5.0625 Q29.2613 -4.7344 29.1988 -4.0156 L31.6988 -4.0156 Q31.6988 -4.625 31.3863 -5.0156 Q31.0894 -5.4062 30.4488 -5.4062 ZM36.619 0 L34.8378 0 L34.8378 -9.125 L36.619 -9.125 L36.619 0 Z" style="stroke:none; clip-path:url(#clipPath5);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="207.4961" y="97.7749" width="435.9975" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="207.4961" y="97.7749" width="435.9975" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="207.4961" y="112.7749" width="1089.9937" style="clip-path:url(#clipPath2); stroke:none;" height="964.9619"
+      /><rect x="207.4961" y="112.7749" width="1089.9937" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="964.9619"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(729.493,131.7749)"
+    ><path d="M3.0156 0.125 Q1.9219 0.125 1.2344 -0.7344 Q0.5469 -1.5938 0.5469 -3.2656 Q0.5469 -4.9375 1.2344 -5.7969 Q1.9375 -6.6719 3.0625 -6.6719 Q3.7656 -6.6719 4.2188 -6.3906 Q4.6875 -6.125 4.9375 -5.7188 L5 -5.7188 Q4.9688 -5.9062 4.9219 -6.2656 Q4.875 -6.6406 4.875 -7.0156 L4.875 -9.125 L6.6562 -9.125 L6.6562 0 L5.2969 0 L4.9375 -0.8594 L4.875 -0.8594 Q4.6094 -0.4375 4.1562 -0.1562 Q3.7188 0.125 3.0156 0.125 ZM3.6406 -1.3125 Q4.375 -1.3125 4.6719 -1.75 Q4.9844 -2.1875 4.9844 -3.0625 L4.9844 -3.25 Q4.9844 -4.2188 4.6875 -4.7188 Q4.4062 -5.2188 3.6094 -5.2188 Q3.0312 -5.2188 2.6875 -4.7031 Q2.3594 -4.2031 2.3594 -3.2344 Q2.3594 -2.2812 2.6875 -1.7969 Q3.0312 -1.3125 3.6406 -1.3125 ZM14.4867 -3.2812 Q14.4867 -1.6562 13.6273 -0.7656 Q12.7679 0.125 11.2992 0.125 Q10.3773 0.125 9.6586 -0.2656 Q8.9554 -0.6719 8.5492 -1.4375 Q8.1429 -2.2031 8.1429 -3.2812 Q8.1429 -4.9219 8.9867 -5.7969 Q9.8461 -6.6719 11.3304 -6.6719 Q12.2523 -6.6719 12.9554 -6.2656 Q13.6742 -5.875 14.0804 -5.125 Q14.4867 -4.375 14.4867 -3.2812 ZM9.9554 -3.2812 Q9.9554 -2.3125 10.2679 -1.8125 Q10.5961 -1.3125 11.3148 -1.3125 Q12.0179 -1.3125 12.3304 -1.8125 Q12.6586 -2.3125 12.6586 -3.2812 Q12.6586 -4.2656 12.3304 -4.75 Q12.0179 -5.2344 11.2992 -5.2344 Q10.5961 -5.2344 10.2679 -4.75 Q9.9554 -4.2656 9.9554 -3.2812 ZM23.6491 -6.6719 Q24.7741 -6.6719 25.3366 -6.0938 Q25.9147 -5.5312 25.9147 -4.2656 L25.9147 0 L24.1179 0 L24.1179 -3.8281 Q24.1179 -5.25 23.1335 -5.25 Q22.4304 -5.25 22.1179 -4.7344 Q21.821 -4.2344 21.821 -3.2812 L21.821 0 L20.0397 0 L20.0397 -3.8281 Q20.0397 -5.25 19.0554 -5.25 Q18.3054 -5.25 18.0241 -4.6875 Q17.7429 -4.125 17.7429 -3.0781 L17.7429 0 L15.9616 0 L15.9616 -6.5469 L17.321 -6.5469 L17.571 -5.7188 L17.6647 -5.7188 Q17.9616 -6.2188 18.4772 -6.4375 Q19.0085 -6.6719 19.571 -6.6719 Q20.2897 -6.6719 20.7897 -6.4375 Q21.3054 -6.2031 21.571 -5.7188 L21.7272 -5.7188 Q22.0241 -6.2188 22.5554 -6.4375 Q23.0866 -6.6719 23.6491 -6.6719 ZM30.4332 -6.6875 Q31.7457 -6.6875 32.4488 -6.1094 Q33.1519 -5.5469 33.1519 -4.375 L33.1519 0 L31.9019 0 L31.5582 -0.8906 L31.5113 -0.8906 Q31.0894 -0.3594 30.6207 -0.1094 Q30.1519 0.125 29.3394 0.125 Q28.4644 0.125 27.8863 -0.3906 Q27.3082 -0.9062 27.3082 -1.9531 Q27.3082 -3 28.0426 -3.5 Q28.7769 -4 30.2457 -4.0469 L31.3863 -4.0781 L31.3863 -4.375 Q31.3863 -4.8906 31.1051 -5.125 Q30.8394 -5.3594 30.3551 -5.3594 Q29.8863 -5.3594 29.4176 -5.2188 Q28.9644 -5.0938 28.5113 -4.8906 L27.9176 -6.0938 Q28.4488 -6.375 29.0894 -6.5312 Q29.7301 -6.6875 30.4332 -6.6875 ZM30.6832 -3.0156 Q29.8238 -2.9844 29.4801 -2.6875 Q29.1519 -2.4062 29.1519 -1.9375 Q29.1519 -1.5312 29.3863 -1.3594 Q29.6207 -1.1875 30.0113 -1.1875 Q30.5894 -1.1875 30.9801 -1.5312 Q31.3863 -1.875 31.3863 -2.5 L31.3863 -3.0312 L30.6832 -3.0156 ZM35.9 -9.125 Q36.2906 -9.125 36.5719 -8.9375 Q36.8687 -8.75 36.8687 -8.25 Q36.8687 -7.75 36.5719 -7.5625 Q36.2906 -7.375 35.9 -7.375 Q35.4781 -7.375 35.1969 -7.5625 Q34.9156 -7.75 34.9156 -8.25 Q34.9156 -8.75 35.1969 -8.9375 Q35.4781 -9.125 35.9 -9.125 ZM36.775 -6.5469 L36.775 0 L34.9937 0 L34.9937 -6.5469 L36.775 -6.5469 ZM42.3725 -6.6719 Q43.435 -6.6719 44.06 -6.0938 Q44.7006 -5.5312 44.7006 -4.2656 L44.7006 0 L42.9194 0 L42.9194 -3.8281 Q42.9194 -4.5312 42.6538 -4.8906 Q42.4038 -5.25 41.8569 -5.25 Q41.0444 -5.25 40.7319 -4.6875 Q40.435 -4.125 40.435 -3.0781 L40.435 0 L38.6538 0 L38.6538 -6.5469 L40.0131 -6.5469 L40.2631 -5.7188 L40.3569 -5.7188 Q40.6694 -6.2188 41.2163 -6.4375 Q41.7631 -6.6719 42.3725 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath6);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="1118.7493" y="-659.799" width="282.943" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="1118.7493" y="-659.799" width="282.943" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="1118.7493" y="-644.799" width="707.3575" style="clip-path:url(#clipPath2); stroke:none;" height="536.1628"
+      /><rect x="1118.7493" y="-644.799" width="707.3575" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="536.1628"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(1462.9281,-625.799)"
+    ><path d="M3.625 -6.6875 Q4.9375 -6.6875 5.6406 -6.1094 Q6.3438 -5.5469 6.3438 -4.375 L6.3438 0 L5.0938 0 L4.75 -0.8906 L4.7031 -0.8906 Q4.2812 -0.3594 3.8125 -0.1094 Q3.3438 0.125 2.5312 0.125 Q1.6562 0.125 1.0781 -0.3906 Q0.5 -0.9062 0.5 -1.9531 Q0.5 -3 1.2344 -3.5 Q1.9688 -4 3.4375 -4.0469 L4.5781 -4.0781 L4.5781 -4.375 Q4.5781 -4.8906 4.2969 -5.125 Q4.0312 -5.3594 3.5469 -5.3594 Q3.0781 -5.3594 2.6094 -5.2188 Q2.1562 -5.0938 1.7031 -4.8906 L1.1094 -6.0938 Q1.6406 -6.375 2.2812 -6.5312 Q2.9219 -6.6875 3.625 -6.6875 ZM3.875 -3.0156 Q3.0156 -2.9844 2.6719 -2.6875 Q2.3438 -2.4062 2.3438 -1.9375 Q2.3438 -1.5312 2.5781 -1.3594 Q2.8125 -1.1875 3.2031 -1.1875 Q3.7812 -1.1875 4.1719 -1.5312 Q4.5781 -1.875 4.5781 -2.5 L4.5781 -3.0312 L3.875 -3.0156 ZM11.8262 -6.6719 Q12.9355 -6.6719 13.623 -5.8125 Q14.3105 -4.9531 14.3105 -3.2812 Q14.3105 -1.625 13.5918 -0.75 Q12.8887 0.125 11.7793 0.125 Q11.0762 0.125 10.6543 -0.125 Q10.2324 -0.3906 9.9668 -0.7188 L9.873 -0.7188 Q9.9668 -0.2188 9.9668 0.2344 L9.9668 2.875 L8.1855 2.875 L8.1855 -6.5469 L9.6387 -6.5469 L9.8887 -5.7031 L9.9668 -5.7031 Q10.2324 -6.0938 10.6699 -6.375 Q11.123 -6.6719 11.8262 -6.6719 ZM11.2637 -5.25 Q10.5605 -5.25 10.2793 -4.8125 Q9.998 -4.375 9.9668 -3.4844 L9.9668 -3.2969 Q9.9668 -2.3594 10.248 -1.8438 Q10.5293 -1.3281 11.2793 -1.3281 Q11.8887 -1.3281 12.1855 -1.8438 Q12.4824 -2.3594 12.4824 -3.3125 Q12.4824 -5.25 11.2637 -5.25 ZM16.6879 -9.125 Q17.0785 -9.125 17.3597 -8.9375 Q17.6566 -8.75 17.6566 -8.25 Q17.6566 -7.75 17.3597 -7.5625 Q17.0785 -7.375 16.6879 -7.375 Q16.266 -7.375 15.9847 -7.5625 Q15.7035 -7.75 15.7035 -8.25 Q15.7035 -8.75 15.9847 -8.9375 Q16.266 -9.125 16.6879 -9.125 ZM17.5629 -6.5469 L17.5629 0 L15.7816 0 L15.7816 -6.5469 L17.5629 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-465.0259" y="119.1063" width="178.1926" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-465.0259" y="119.1063" width="178.1926" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-465.0259" y="134.1063" width="445.4814" style="clip-path:url(#clipPath2); stroke:none;" height="278.9857"
+      /><rect x="-465.0259" y="134.1063" width="445.4814" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="278.9857"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-276.8695,153.1063)"
+    ><path d="M4.5781 -6.6719 Q5.6875 -6.6719 6.375 -5.8125 Q7.0625 -4.9531 7.0625 -3.2812 Q7.0625 -1.625 6.3438 -0.75 Q5.6406 0.125 4.5312 0.125 Q3.8281 0.125 3.4062 -0.125 Q2.9844 -0.3906 2.7188 -0.7188 L2.625 -0.7188 Q2.7188 -0.2188 2.7188 0.2344 L2.7188 2.875 L0.9375 2.875 L0.9375 -6.5469 L2.3906 -6.5469 L2.6406 -5.7031 L2.7188 -5.7031 Q2.9844 -6.0938 3.4219 -6.375 Q3.875 -6.6719 4.5781 -6.6719 ZM4.0156 -5.25 Q3.3125 -5.25 3.0312 -4.8125 Q2.75 -4.375 2.7188 -3.4844 L2.7188 -3.2969 Q2.7188 -2.3594 3 -1.8438 Q3.2812 -1.3281 4.0312 -1.3281 Q4.6406 -1.3281 4.9375 -1.8438 Q5.2344 -2.3594 5.2344 -3.3125 Q5.2344 -5.25 4.0156 -5.25 ZM11.2367 -6.6719 Q12.5804 -6.6719 13.3773 -5.8906 Q14.1742 -5.125 14.1742 -3.7031 L14.1742 -2.8281 L9.9554 -2.8281 Q9.9711 -2.0781 10.3929 -1.6406 Q10.8304 -1.2188 11.5804 -1.2188 Q12.2211 -1.2188 12.7367 -1.3438 Q13.2523 -1.4688 13.7992 -1.7344 L13.7992 -0.3438 Q13.3148 -0.1094 12.7836 0 Q12.2523 0.125 11.5023 0.125 Q10.5179 0.125 9.7523 -0.2344 Q9.0023 -0.6094 8.5648 -1.3438 Q8.1429 -2.0938 8.1429 -3.2344 Q8.1429 -4.375 8.5179 -5.1406 Q8.9086 -5.9062 9.6117 -6.2812 Q10.3148 -6.6719 11.2367 -6.6719 ZM11.2367 -5.4062 Q10.7211 -5.4062 10.3773 -5.0625 Q10.0492 -4.7344 9.9867 -4.0156 L12.4867 -4.0156 Q12.4867 -4.625 12.1742 -5.0156 Q11.8773 -5.4062 11.2367 -5.4062 ZM19.2819 -6.6719 Q19.4225 -6.6719 19.5944 -6.6562 Q19.7819 -6.6406 19.8912 -6.625 L19.7506 -4.9375 Q19.6725 -4.9688 19.5006 -4.9844 Q19.3444 -5 19.2194 -5 Q18.7662 -5 18.3444 -4.8438 Q17.9225 -4.6875 17.6569 -4.3125 Q17.4069 -3.9531 17.4069 -3.3438 L17.4069 0 L15.6256 0 L15.6256 -6.5469 L16.985 -6.5469 L17.2506 -5.4531 L17.3287 -5.4531 Q17.61 -5.9531 18.11 -6.3125 Q18.6256 -6.6719 19.2819 -6.6719 ZM25.6518 -1.9375 Q25.6518 -0.9531 24.9487 -0.4062 Q24.2455 0.125 22.8549 0.125 Q22.1674 0.125 21.6674 0.0312 Q21.183 -0.0625 20.683 -0.2656 L20.683 -1.7344 Q21.2143 -1.5 21.8237 -1.3438 Q22.433 -1.1875 22.9018 -1.1875 Q23.433 -1.1875 23.6518 -1.3438 Q23.8862 -1.5 23.8862 -1.75 Q23.8862 -1.9219 23.7924 -2.0469 Q23.6987 -2.1875 23.4018 -2.3438 Q23.1049 -2.5156 22.4643 -2.7812 Q21.8549 -3.0469 21.4487 -3.2969 Q21.058 -3.5625 20.8705 -3.9219 Q20.683 -4.2969 20.683 -4.8438 Q20.683 -5.7656 21.3862 -6.2188 Q22.0893 -6.6719 23.2612 -6.6719 Q23.8862 -6.6719 24.433 -6.5469 Q24.9799 -6.4375 25.5737 -6.1562 L25.0268 -4.875 Q24.558 -5.0781 24.1205 -5.2188 Q23.683 -5.3594 23.2455 -5.3594 Q22.4487 -5.3594 22.4487 -4.9219 Q22.4487 -4.7656 22.5424 -4.6406 Q22.6518 -4.5156 22.9487 -4.3594 Q23.2455 -4.2188 23.8237 -3.9844 Q24.3862 -3.75 24.7924 -3.5 Q25.1987 -3.2656 25.4174 -2.8906 Q25.6518 -2.5312 25.6518 -1.9375 ZM27.9439 -9.125 Q28.3346 -9.125 28.6158 -8.9375 Q28.9127 -8.75 28.9127 -8.25 Q28.9127 -7.75 28.6158 -7.5625 Q28.3346 -7.375 27.9439 -7.375 Q27.5221 -7.375 27.2408 -7.5625 Q26.9596 -7.75 26.9596 -8.25 Q26.9596 -8.75 27.2408 -8.9375 Q27.5221 -9.125 27.9439 -9.125 ZM28.8189 -6.5469 L28.8189 0 L27.0377 0 L27.0377 -6.5469 L28.8189 -6.5469 ZM35.2758 -1.9375 Q35.2758 -0.9531 34.5727 -0.4062 Q33.8696 0.125 32.479 0.125 Q31.7915 0.125 31.2915 0.0312 Q30.8071 -0.0625 30.3071 -0.2656 L30.3071 -1.7344 Q30.8383 -1.5 31.4477 -1.3438 Q32.0571 -1.1875 32.5258 -1.1875 Q33.0571 -1.1875 33.2758 -1.3438 Q33.5102 -1.5 33.5102 -1.75 Q33.5102 -1.9219 33.4165 -2.0469 Q33.3227 -2.1875 33.0258 -2.3438 Q32.729 -2.5156 32.0883 -2.7812 Q31.479 -3.0469 31.0727 -3.2969 Q30.6821 -3.5625 30.4946 -3.9219 Q30.3071 -4.2969 30.3071 -4.8438 Q30.3071 -5.7656 31.0102 -6.2188 Q31.7133 -6.6719 32.8852 -6.6719 Q33.5102 -6.6719 34.0571 -6.5469 Q34.604 -6.4375 35.1977 -6.1562 L34.6508 -4.875 Q34.1821 -5.0781 33.7446 -5.2188 Q33.3071 -5.3594 32.8696 -5.3594 Q32.0727 -5.3594 32.0727 -4.9219 Q32.0727 -4.7656 32.1665 -4.6406 Q32.2758 -4.5156 32.5727 -4.3594 Q32.8696 -4.2188 33.4477 -3.9844 Q34.0102 -3.75 34.4165 -3.5 Q34.8227 -3.2656 35.0415 -2.8906 Q35.2758 -2.5312 35.2758 -1.9375 ZM39.4274 -1.3125 Q39.7242 -1.3125 39.9899 -1.3594 Q40.2711 -1.4219 40.5524 -1.5156 L40.5524 -0.1875 Q40.2555 -0.0625 39.8336 0.0312 Q39.4117 0.125 38.9117 0.125 Q38.318 0.125 37.8492 -0.0625 Q37.3961 -0.2656 37.1149 -0.7344 Q36.8492 -1.2188 36.8492 -2.0469 L36.8492 -5.2031 L36.0055 -5.2031 L36.0055 -5.9688 L36.9899 -6.5625 L37.5055 -7.9375 L38.6461 -7.9375 L38.6461 -6.5469 L40.4742 -6.5469 L40.4742 -5.2031 L38.6461 -5.2031 L38.6461 -2.0469 Q38.6461 -1.6875 38.8492 -1.5 Q39.068 -1.3125 39.4274 -1.3125 ZM44.5729 -6.6719 Q45.9167 -6.6719 46.7135 -5.8906 Q47.5104 -5.125 47.5104 -3.7031 L47.5104 -2.8281 L43.2917 -2.8281 Q43.3073 -2.0781 43.7292 -1.6406 Q44.1667 -1.2188 44.9167 -1.2188 Q45.5573 -1.2188 46.0729 -1.3438 Q46.5885 -1.4688 47.1354 -1.7344 L47.1354 -0.3438 Q46.651 -0.1094 46.1198 0 Q45.5885 0.125 44.8385 0.125 Q43.8542 0.125 43.0885 -0.2344 Q42.3385 -0.6094 41.901 -1.3438 Q41.4792 -2.0938 41.4792 -3.2344 Q41.4792 -4.375 41.8542 -5.1406 Q42.2448 -5.9062 42.9479 -6.2812 Q43.651 -6.6719 44.5729 -6.6719 ZM44.5729 -5.4062 Q44.0573 -5.4062 43.7135 -5.0625 Q43.3854 -4.7344 43.3229 -4.0156 L45.8229 -4.0156 Q45.8229 -4.625 45.5104 -5.0156 Q45.2135 -5.4062 44.5729 -5.4062 ZM52.6806 -6.6719 Q53.7431 -6.6719 54.3681 -6.0938 Q55.0087 -5.5312 55.0087 -4.2656 L55.0087 0 L53.2275 0 L53.2275 -3.8281 Q53.2275 -4.5312 52.9618 -4.8906 Q52.7118 -5.25 52.165 -5.25 Q51.3525 -5.25 51.04 -4.6875 Q50.7431 -4.125 50.7431 -3.0781 L50.7431 0 L48.9618 0 L48.9618 -6.5469 L50.3212 -6.5469 L50.5712 -5.7188 L50.665 -5.7188 Q50.9775 -6.2188 51.5243 -6.4375 Q52.0712 -6.6719 52.6806 -6.6719 ZM59.5021 0.125 Q58.049 0.125 57.2521 -0.6875 Q56.4553 -1.5 56.4553 -3.2344 Q56.4553 -4.4375 56.8615 -5.1875 Q57.2678 -5.9531 57.9865 -6.3125 Q58.7209 -6.6719 59.6584 -6.6719 Q60.3303 -6.6719 60.8303 -6.5312 Q61.3303 -6.4062 61.7053 -6.2344 L61.174 -4.8438 Q60.7521 -5.0156 60.3771 -5.125 Q60.0178 -5.2344 59.6584 -5.2344 Q58.2678 -5.2344 58.2678 -3.25 Q58.2678 -2.2656 58.6271 -1.7969 Q59.0021 -1.3281 59.6584 -1.3281 Q60.2209 -1.3281 60.6584 -1.4688 Q61.0959 -1.625 61.5021 -1.8906 L61.5021 -0.375 Q61.0959 -0.1094 60.6428 0 Q60.1896 0.125 59.5021 0.125 ZM65.7171 -6.6719 Q67.0608 -6.6719 67.8577 -5.8906 Q68.6546 -5.125 68.6546 -3.7031 L68.6546 -2.8281 L64.4358 -2.8281 Q64.4514 -2.0781 64.8733 -1.6406 Q65.3108 -1.2188 66.0608 -1.2188 Q66.7014 -1.2188 67.2171 -1.3438 Q67.7327 -1.4688 68.2796 -1.7344 L68.2796 -0.3438 Q67.7952 -0.1094 67.2639 0 Q66.7327 0.125 65.9827 0.125 Q64.9983 0.125 64.2327 -0.2344 Q63.4827 -0.6094 63.0452 -1.3438 Q62.6233 -2.0938 62.6233 -3.2344 Q62.6233 -4.375 62.9983 -5.1406 Q63.3889 -5.9062 64.0921 -6.2812 Q64.7952 -6.6719 65.7171 -6.6719 ZM65.7171 -5.4062 Q65.2014 -5.4062 64.8577 -5.0625 Q64.5296 -4.7344 64.4671 -4.0156 L66.9671 -4.0156 Q66.9671 -4.625 66.6546 -5.0156 Q66.3577 -5.4062 65.7171 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath8);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="311.0016" y="151.728" width="241.9286" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="311.0016" y="151.728" width="241.9286" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="311.0016" y="166.728" width="604.8216" style="clip-path:url(#clipPath2); stroke:none;" height="239.5578"
+      /><rect x="311.0016" y="166.728" width="604.8216" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="239.5578"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(595.4124,185.728)"
+    ><path d="M3.6406 -6.6719 Q4.9844 -6.6719 5.7812 -5.8906 Q6.5781 -5.125 6.5781 -3.7031 L6.5781 -2.8281 L2.3594 -2.8281 Q2.375 -2.0781 2.7969 -1.6406 Q3.2344 -1.2188 3.9844 -1.2188 Q4.625 -1.2188 5.1406 -1.3438 Q5.6562 -1.4688 6.2031 -1.7344 L6.2031 -0.3438 Q5.7188 -0.1094 5.1875 0 Q4.6562 0.125 3.9062 0.125 Q2.9219 0.125 2.1562 -0.2344 Q1.4062 -0.6094 0.9688 -1.3438 Q0.5469 -2.0938 0.5469 -3.2344 Q0.5469 -4.375 0.9219 -5.1406 Q1.3125 -5.9062 2.0156 -6.2812 Q2.7188 -6.6719 3.6406 -6.6719 ZM3.6406 -5.4062 Q3.125 -5.4062 2.7812 -5.0625 Q2.4531 -4.7344 2.3906 -4.0156 L4.8906 -4.0156 Q4.8906 -4.625 4.5781 -5.0156 Q4.2812 -5.4062 3.6406 -5.4062 ZM11.7483 -6.6719 Q12.8108 -6.6719 13.4358 -6.0938 Q14.0764 -5.5312 14.0764 -4.2656 L14.0764 0 L12.2952 0 L12.2952 -3.8281 Q12.2952 -4.5312 12.0296 -4.8906 Q11.7796 -5.25 11.2327 -5.25 Q10.4202 -5.25 10.1077 -4.6875 Q9.8108 -4.125 9.8108 -3.0781 L9.8108 0 L8.0296 0 L8.0296 -6.5469 L9.3889 -6.5469 L9.6389 -5.7188 L9.7327 -5.7188 Q10.0452 -6.2188 10.5921 -6.4375 Q11.1389 -6.6719 11.7483 -6.6719 ZM18.6792 -1.3125 Q18.9761 -1.3125 19.2417 -1.3594 Q19.523 -1.4219 19.8042 -1.5156 L19.8042 -0.1875 Q19.5074 -0.0625 19.0855 0.0312 Q18.6636 0.125 18.1636 0.125 Q17.5699 0.125 17.1011 -0.0625 Q16.648 -0.2656 16.3667 -0.7344 Q16.1011 -1.2188 16.1011 -2.0469 L16.1011 -5.2031 L15.2574 -5.2031 L15.2574 -5.9688 L16.2417 -6.5625 L16.7574 -7.9375 L17.898 -7.9375 L17.898 -6.5469 L19.7261 -6.5469 L19.7261 -5.2031 L17.898 -5.2031 L17.898 -2.0469 Q17.898 -1.6875 18.1011 -1.5 Q18.3199 -1.3125 18.6792 -1.3125 ZM22.0279 -9.125 Q22.4185 -9.125 22.6998 -8.9375 Q22.9966 -8.75 22.9966 -8.25 Q22.9966 -7.75 22.6998 -7.5625 Q22.4185 -7.375 22.0279 -7.375 Q21.606 -7.375 21.3248 -7.5625 Q21.0435 -7.75 21.0435 -8.25 Q21.0435 -8.75 21.3248 -8.9375 Q21.606 -9.125 22.0279 -9.125 ZM22.9029 -6.5469 L22.9029 0 L21.1216 0 L21.1216 -6.5469 L22.9029 -6.5469 ZM27.5473 -1.3125 Q27.8442 -1.3125 28.1098 -1.3594 Q28.391 -1.4219 28.6723 -1.5156 L28.6723 -0.1875 Q28.3754 -0.0625 27.9535 0.0312 Q27.5317 0.125 27.0317 0.125 Q26.4379 0.125 25.9692 -0.0625 Q25.516 -0.2656 25.2348 -0.7344 Q24.9692 -1.2188 24.9692 -2.0469 L24.9692 -5.2031 L24.1254 -5.2031 L24.1254 -5.9688 L25.1098 -6.5625 L25.6254 -7.9375 L26.766 -7.9375 L26.766 -6.5469 L28.5942 -6.5469 L28.5942 -5.2031 L26.766 -5.2031 L26.766 -2.0469 Q26.766 -1.6875 26.9692 -1.5 Q27.1879 -1.3125 27.5473 -1.3125 ZM29.0522 -6.5469 L31.0053 -6.5469 L32.2397 -2.875 Q32.3335 -2.6094 32.3803 -2.3281 Q32.4428 -2.0469 32.4585 -1.7344 L32.4897 -1.7344 Q32.5366 -2.0469 32.5991 -2.3281 Q32.6616 -2.6094 32.7553 -2.875 L33.9585 -6.5469 L35.8803 -6.5469 L33.1147 0.8438 Q32.7397 1.8594 32.021 2.3594 Q31.3022 2.875 30.3647 2.875 Q30.0678 2.875 29.8491 2.8438 Q29.6303 2.8125 29.4585 2.7812 L29.4585 1.375 Q29.5991 1.3906 29.771 1.4062 Q29.9585 1.4375 30.1616 1.4375 Q30.7397 1.4375 31.0678 1.0938 Q31.396 0.75 31.5522 0.2812 L31.6616 -0.0469 L29.0522 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath9);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-779.0115" y="-679.7754" width="175.0304" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-779.0115" y="-679.7754" width="175.0304" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-779.0115" y="-664.7754" width="437.5761" style="clip-path:url(#clipPath2); stroke:none;" height="536.1628"
+      /><rect x="-779.0115" y="-664.7754" width="437.5761" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="536.1628"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-592.9176,-645.7754)"
+    ><path d="M3.5938 0.125 Q2.1406 0.125 1.3438 -0.6875 Q0.5469 -1.5 0.5469 -3.2344 Q0.5469 -4.4375 0.9531 -5.1875 Q1.3594 -5.9531 2.0781 -6.3125 Q2.8125 -6.6719 3.75 -6.6719 Q4.4219 -6.6719 4.9219 -6.5312 Q5.4219 -6.4062 5.7969 -6.2344 L5.2656 -4.8438 Q4.8438 -5.0156 4.4688 -5.125 Q4.1094 -5.2344 3.75 -5.2344 Q2.3594 -5.2344 2.3594 -3.25 Q2.3594 -2.2656 2.7188 -1.7969 Q3.0938 -1.3281 3.75 -1.3281 Q4.3125 -1.3281 4.75 -1.4688 Q5.1875 -1.625 5.5938 -1.8906 L5.5938 -0.375 Q5.1875 -0.1094 4.7344 0 Q4.2812 0.125 3.5938 0.125 ZM13.0587 -3.2812 Q13.0587 -1.6562 12.1993 -0.7656 Q11.3399 0.125 9.8712 0.125 Q8.9493 0.125 8.2305 -0.2656 Q7.5274 -0.6719 7.1212 -1.4375 Q6.7149 -2.2031 6.7149 -3.2812 Q6.7149 -4.9219 7.5587 -5.7969 Q8.418 -6.6719 9.9024 -6.6719 Q10.8243 -6.6719 11.5274 -6.2656 Q12.2462 -5.875 12.6524 -5.125 Q13.0587 -4.375 13.0587 -3.2812 ZM8.5274 -3.2812 Q8.5274 -2.3125 8.8399 -1.8125 Q9.168 -1.3125 9.8868 -1.3125 Q10.5899 -1.3125 10.9024 -1.8125 Q11.2305 -2.3125 11.2305 -3.2812 Q11.2305 -4.2656 10.9024 -4.75 Q10.5899 -5.2344 9.8712 -5.2344 Q9.168 -5.2344 8.8399 -4.75 Q8.5274 -4.2656 8.5274 -3.2812 ZM18.2523 -6.6719 Q19.3148 -6.6719 19.9398 -6.0938 Q20.5805 -5.5312 20.5805 -4.2656 L20.5805 0 L18.7992 0 L18.7992 -3.8281 Q18.7992 -4.5312 18.5336 -4.8906 Q18.2836 -5.25 17.7367 -5.25 Q16.9242 -5.25 16.6117 -4.6875 Q16.3148 -4.125 16.3148 -3.0781 L16.3148 0 L14.5336 0 L14.5336 -6.5469 L15.893 -6.5469 L16.143 -5.7188 L16.2367 -5.7188 Q16.5492 -6.2188 17.0961 -6.4375 Q17.643 -6.6719 18.2523 -6.6719 ZM25.1833 -1.3125 Q25.4801 -1.3125 25.7458 -1.3594 Q26.027 -1.4219 26.3083 -1.5156 L26.3083 -0.1875 Q26.0114 -0.0625 25.5895 0.0312 Q25.1676 0.125 24.6676 0.125 Q24.0739 0.125 23.6051 -0.0625 Q23.152 -0.2656 22.8708 -0.7344 Q22.6051 -1.2188 22.6051 -2.0469 L22.6051 -5.2031 L21.7614 -5.2031 L21.7614 -5.9688 L22.7458 -6.5625 L23.2614 -7.9375 L24.402 -7.9375 L24.402 -6.5469 L26.2301 -6.5469 L26.2301 -5.2031 L24.402 -5.2031 L24.402 -2.0469 Q24.402 -1.6875 24.6051 -1.5 Q24.8239 -1.3125 25.1833 -1.3125 ZM31.2819 -6.6719 Q31.4226 -6.6719 31.5944 -6.6562 Q31.7819 -6.6406 31.8913 -6.625 L31.7507 -4.9375 Q31.6726 -4.9688 31.5007 -4.9844 Q31.3444 -5 31.2194 -5 Q30.7663 -5 30.3444 -4.8438 Q29.9226 -4.6875 29.6569 -4.3125 Q29.4069 -3.9531 29.4069 -3.3438 L29.4069 0 L27.6257 0 L27.6257 -6.5469 L28.9851 -6.5469 L29.2507 -5.4531 L29.3288 -5.4531 Q29.6101 -5.9531 30.1101 -6.3125 Q30.6257 -6.6719 31.2819 -6.6719 ZM39.0269 -3.2812 Q39.0269 -1.6562 38.1675 -0.7656 Q37.3081 0.125 35.8394 0.125 Q34.9175 0.125 34.1987 -0.2656 Q33.4956 -0.6719 33.0894 -1.4375 Q32.6831 -2.2031 32.6831 -3.2812 Q32.6831 -4.9219 33.5269 -5.7969 Q34.3862 -6.6719 35.8706 -6.6719 Q36.7925 -6.6719 37.4956 -6.2656 Q38.2144 -5.875 38.6206 -5.125 Q39.0269 -4.375 39.0269 -3.2812 ZM34.4956 -3.2812 Q34.4956 -2.3125 34.8081 -1.8125 Q35.1362 -1.3125 35.855 -1.3125 Q36.5581 -1.3125 36.8706 -1.8125 Q37.1987 -2.3125 37.1987 -3.2812 Q37.1987 -4.2656 36.8706 -4.75 Q36.5581 -5.2344 35.8394 -5.2344 Q35.1362 -5.2344 34.8081 -4.75 Q34.4956 -4.2656 34.4956 -3.2812 ZM42.283 0 L40.5018 0 L40.5018 -9.125 L42.283 -9.125 L42.283 0 ZM45.9431 0 L44.1618 0 L44.1618 -9.125 L45.9431 -9.125 L45.9431 0 ZM50.5249 -6.6719 Q51.8687 -6.6719 52.6656 -5.8906 Q53.4624 -5.125 53.4624 -3.7031 L53.4624 -2.8281 L49.2437 -2.8281 Q49.2593 -2.0781 49.6812 -1.6406 Q50.1187 -1.2188 50.8687 -1.2188 Q51.5093 -1.2188 52.0249 -1.3438 Q52.5406 -1.4688 53.0874 -1.7344 L53.0874 -0.3438 Q52.6031 -0.1094 52.0718 0 Q51.5406 0.125 50.7906 0.125 Q49.8062 0.125 49.0406 -0.2344 Q48.2906 -0.6094 47.8531 -1.3438 Q47.4312 -2.0938 47.4312 -3.2344 Q47.4312 -4.375 47.8062 -5.1406 Q48.1968 -5.9062 48.8999 -6.2812 Q49.6031 -6.6719 50.5249 -6.6719 ZM50.5249 -5.4062 Q50.0093 -5.4062 49.6656 -5.0625 Q49.3374 -4.7344 49.2749 -4.0156 L51.7749 -4.0156 Q51.7749 -4.625 51.4624 -5.0156 Q51.1656 -5.4062 50.5249 -5.4062 ZM58.5701 -6.6719 Q58.7108 -6.6719 58.8826 -6.6562 Q59.0701 -6.6406 59.1795 -6.625 L59.0389 -4.9375 Q58.9608 -4.9688 58.7889 -4.9844 Q58.6326 -5 58.5076 -5 Q58.0545 -5 57.6326 -4.8438 Q57.2108 -4.6875 56.9451 -4.3125 Q56.6951 -3.9531 56.6951 -3.3438 L56.6951 0 L54.9139 0 L54.9139 -6.5469 L56.2733 -6.5469 L56.5389 -5.4531 L56.617 -5.4531 Q56.8983 -5.9531 57.3983 -6.3125 Q57.9139 -6.6719 58.5701 -6.6719 ZM64.94 -1.9375 Q64.94 -0.9531 64.2369 -0.4062 Q63.5338 0.125 62.1432 0.125 Q61.4557 0.125 60.9557 0.0312 Q60.4713 -0.0625 59.9713 -0.2656 L59.9713 -1.7344 Q60.5025 -1.5 61.1119 -1.3438 Q61.7213 -1.1875 62.19 -1.1875 Q62.7213 -1.1875 62.94 -1.3438 Q63.1744 -1.5 63.1744 -1.75 Q63.1744 -1.9219 63.0807 -2.0469 Q62.9869 -2.1875 62.69 -2.3438 Q62.3932 -2.5156 61.7525 -2.7812 Q61.1432 -3.0469 60.7369 -3.2969 Q60.3463 -3.5625 60.1588 -3.9219 Q59.9713 -4.2969 59.9713 -4.8438 Q59.9713 -5.7656 60.6744 -6.2188 Q61.3775 -6.6719 62.5494 -6.6719 Q63.1744 -6.6719 63.7213 -6.5469 Q64.2682 -6.4375 64.8619 -6.1562 L64.315 -4.875 Q63.8463 -5.0781 63.4088 -5.2188 Q62.9713 -5.3594 62.5338 -5.3594 Q61.7369 -5.3594 61.7369 -4.9219 Q61.7369 -4.7656 61.8307 -4.6406 Q61.94 -4.5156 62.2369 -4.3594 Q62.5338 -4.2188 63.1119 -3.9844 Q63.6744 -3.75 64.0807 -3.5 Q64.4869 -3.2656 64.7057 -2.8906 Q64.94 -2.5312 64.94 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath10);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="1284.5085" y="-428.859" width="76.3284" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="1284.5085" y="-428.859" width="76.3284" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(1294.5085,-410.859)"
+    ><path d="M4.375 0 L2.5625 0 L2.5625 -7.0625 L0.2344 -7.0625 L0.2344 -8.5625 L6.7031 -8.5625 L6.7031 -7.0625 L4.375 -7.0625 L4.375 0 ZM13.8387 -3.2812 Q13.8387 -1.6562 12.9793 -0.7656 Q12.1199 0.125 10.6512 0.125 Q9.7293 0.125 9.0105 -0.2656 Q8.3074 -0.6719 7.9012 -1.4375 Q7.4949 -2.2031 7.4949 -3.2812 Q7.4949 -4.9219 8.3387 -5.7969 Q9.198 -6.6719 10.6824 -6.6719 Q11.6043 -6.6719 12.3074 -6.2656 Q13.0262 -5.875 13.4324 -5.125 Q13.8387 -4.375 13.8387 -3.2812 ZM9.3074 -3.2812 Q9.3074 -2.3125 9.6199 -1.8125 Q9.948 -1.3125 10.6668 -1.3125 Q11.3699 -1.3125 11.6824 -1.8125 Q12.0105 -2.3125 12.0105 -3.2812 Q12.0105 -4.2656 11.6824 -4.75 Q11.3699 -5.2344 10.6512 -5.2344 Q9.948 -5.2344 9.6199 -4.75 Q9.3074 -4.2656 9.3074 -3.2812 ZM17.0948 -5.0469 Q17.0948 -4.6719 17.0636 -4.2969 Q17.0323 -3.9375 17.0011 -3.5625 L17.0323 -3.5625 Q17.2042 -3.8125 17.3917 -4.0625 Q17.5948 -4.3281 17.8136 -4.5625 L19.6417 -6.5469 L21.6573 -6.5469 L19.0636 -3.7031 L21.8136 0 L19.7511 0 L17.8605 -2.6562 L17.0948 -2.0469 L17.0948 0 L15.3136 0 L15.3136 -9.125 L17.0948 -9.125 L17.0948 -5.0469 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1911 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4411 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0036 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1286 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9411 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM33.5645 -6.6719 Q34.627 -6.6719 35.252 -6.0938 Q35.8926 -5.5312 35.8926 -4.2656 L35.8926 0 L34.1113 0 L34.1113 -3.8281 Q34.1113 -4.5312 33.8457 -4.8906 Q33.5957 -5.25 33.0488 -5.25 Q32.2363 -5.25 31.9238 -4.6875 Q31.627 -4.125 31.627 -3.0781 L31.627 0 L29.8457 0 L29.8457 -6.5469 L31.2051 -6.5469 L31.4551 -5.7188 L31.5488 -5.7188 Q31.8613 -6.2188 32.4082 -6.4375 Q32.9551 -6.6719 33.5645 -6.6719 ZM43.1204 0 L42.4954 -2.0469 L39.3704 -2.0469 L38.7454 0 L36.7923 0 L39.8235 -8.6094 L42.0423 -8.6094 L45.0735 0 L43.1204 0 ZM41.4329 -5.5625 Q41.3704 -5.7656 41.2766 -6.0781 Q41.1829 -6.3906 41.0891 -6.7031 Q40.9954 -7.0312 40.9329 -7.2656 Q40.8704 -7.0312 40.761 -6.6719 Q40.6673 -6.3281 40.5735 -6 Q40.4954 -5.6875 40.4329 -5.5625 L39.8235 -3.5625 L42.0579 -3.5625 L41.4329 -5.5625 ZM49.6504 -6.6719 Q50.7598 -6.6719 51.4473 -5.8125 Q52.1348 -4.9531 52.1348 -3.2812 Q52.1348 -1.625 51.4161 -0.75 Q50.7129 0.125 49.6036 0.125 Q48.9004 0.125 48.4786 -0.125 Q48.0567 -0.3906 47.7911 -0.7188 L47.6973 -0.7188 Q47.7911 -0.2188 47.7911 0.2344 L47.7911 2.875 L46.0098 2.875 L46.0098 -6.5469 L47.4629 -6.5469 L47.7129 -5.7031 L47.7911 -5.7031 Q48.0567 -6.0938 48.4942 -6.375 Q48.9473 -6.6719 49.6504 -6.6719 ZM49.0879 -5.25 Q48.3848 -5.25 48.1036 -4.8125 Q47.8223 -4.375 47.7911 -3.4844 L47.7911 -3.2969 Q47.7911 -2.3594 48.0723 -1.8438 Q48.3536 -1.3281 49.1036 -1.3281 Q49.7129 -1.3281 50.0098 -1.8438 Q50.3067 -2.3594 50.3067 -3.3125 Q50.3067 -5.25 49.0879 -5.25 ZM54.5121 -9.125 Q54.9027 -9.125 55.184 -8.9375 Q55.4809 -8.75 55.4809 -8.25 Q55.4809 -7.75 55.184 -7.5625 Q54.9027 -7.375 54.5121 -7.375 Q54.0902 -7.375 53.809 -7.5625 Q53.5277 -7.75 53.5277 -8.25 Q53.5277 -8.75 53.809 -8.9375 Q54.0902 -9.125 54.5121 -9.125 ZM55.3871 -6.5469 L55.3871 0 L53.6059 0 L53.6059 -6.5469 L55.3871 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath11);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-175.1509" y="283.0663" width="112.1487" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-175.1509" y="283.0663" width="112.1487" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-158.0766,301.0663)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath12);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-165.1509,317.4104)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM31.1543 -8.5625 Q32.9043 -8.5625 33.7325 -7.9219 Q34.5762 -7.2969 34.5762 -6 Q34.5762 -5.4062 34.3418 -4.9688 Q34.1231 -4.5312 33.7481 -4.2188 Q33.3887 -3.9219 32.9825 -3.7344 L35.4981 0 L33.4825 0 L31.4356 -3.2812 L30.4668 -3.2812 L30.4668 0 L28.6543 0 L28.6543 -8.5625 L31.1543 -8.5625 ZM31.0137 -7.0781 L30.4668 -7.0781 L30.4668 -4.7656 L31.0606 -4.7656 Q31.9512 -4.7656 32.3418 -5.0625 Q32.7325 -5.3594 32.7325 -5.9531 Q32.7325 -6.5625 32.3106 -6.8125 Q31.9043 -7.0781 31.0137 -7.0781 ZM39.1369 -6.6719 Q40.4806 -6.6719 41.2775 -5.8906 Q42.0744 -5.125 42.0744 -3.7031 L42.0744 -2.8281 L37.8556 -2.8281 Q37.8713 -2.0781 38.2931 -1.6406 Q38.7306 -1.2188 39.4806 -1.2188 Q40.1213 -1.2188 40.6369 -1.3438 Q41.1525 -1.4688 41.6994 -1.7344 L41.6994 -0.3438 Q41.215 -0.1094 40.6838 0 Q40.1525 0.125 39.4025 0.125 Q38.4181 0.125 37.6525 -0.2344 Q36.9025 -0.6094 36.465 -1.3438 Q36.0431 -2.0938 36.0431 -3.2344 Q36.0431 -4.375 36.4181 -5.1406 Q36.8088 -5.9062 37.5119 -6.2812 Q38.215 -6.6719 39.1369 -6.6719 ZM39.1369 -5.4062 Q38.6213 -5.4062 38.2775 -5.0625 Q37.9494 -4.7344 37.8869 -4.0156 L40.3869 -4.0156 Q40.3869 -4.625 40.0744 -5.0156 Q39.7775 -5.4062 39.1369 -5.4062 ZM47.1664 -6.6719 Q48.2758 -6.6719 48.9633 -5.8125 Q49.6508 -4.9531 49.6508 -3.2812 Q49.6508 -1.625 48.9321 -0.75 Q48.2289 0.125 47.1196 0.125 Q46.4164 0.125 45.9946 -0.125 Q45.5727 -0.3906 45.3071 -0.7188 L45.2133 -0.7188 Q45.3071 -0.2188 45.3071 0.2344 L45.3071 2.875 L43.5258 2.875 L43.5258 -6.5469 L44.9789 -6.5469 L45.2289 -5.7031 L45.3071 -5.7031 Q45.5727 -6.0938 46.0102 -6.375 Q46.4633 -6.6719 47.1664 -6.6719 ZM46.6039 -5.25 Q45.9008 -5.25 45.6196 -4.8125 Q45.3383 -4.375 45.3071 -3.4844 L45.3071 -3.2969 Q45.3071 -2.3594 45.5883 -1.8438 Q45.8696 -1.3281 46.6196 -1.3281 Q47.2289 -1.3281 47.5258 -1.8438 Q47.8227 -2.3594 47.8227 -3.3125 Q47.8227 -5.25 46.6039 -5.25 ZM57.075 -3.2812 Q57.075 -1.6562 56.2156 -0.7656 Q55.3562 0.125 53.8875 0.125 Q52.9656 0.125 52.2469 -0.2656 Q51.5437 -0.6719 51.1375 -1.4375 Q50.7312 -2.2031 50.7312 -3.2812 Q50.7312 -4.9219 51.575 -5.7969 Q52.4344 -6.6719 53.9187 -6.6719 Q54.8406 -6.6719 55.5437 -6.2656 Q56.2625 -5.875 56.6687 -5.125 Q57.075 -4.375 57.075 -3.2812 ZM52.5437 -3.2812 Q52.5437 -2.3125 52.8562 -1.8125 Q53.1844 -1.3125 53.9031 -1.3125 Q54.6062 -1.3125 54.9187 -1.8125 Q55.2469 -2.3125 55.2469 -3.2812 Q55.2469 -4.2656 54.9187 -4.75 Q54.6062 -5.2344 53.8875 -5.2344 Q53.1844 -5.2344 52.8562 -4.75 Q52.5437 -4.2656 52.5437 -3.2812 ZM63.1281 -1.9375 Q63.1281 -0.9531 62.4249 -0.4062 Q61.7218 0.125 60.3312 0.125 Q59.6437 0.125 59.1437 0.0312 Q58.6593 -0.0625 58.1593 -0.2656 L58.1593 -1.7344 Q58.6906 -1.5 59.2999 -1.3438 Q59.9093 -1.1875 60.3781 -1.1875 Q60.9093 -1.1875 61.1281 -1.3438 Q61.3624 -1.5 61.3624 -1.75 Q61.3624 -1.9219 61.2687 -2.0469 Q61.1749 -2.1875 60.8781 -2.3438 Q60.5812 -2.5156 59.9406 -2.7812 Q59.3312 -3.0469 58.9249 -3.2969 Q58.5343 -3.5625 58.3468 -3.9219 Q58.1593 -4.2969 58.1593 -4.8438 Q58.1593 -5.7656 58.8624 -6.2188 Q59.5656 -6.6719 60.7374 -6.6719 Q61.3624 -6.6719 61.9093 -6.5469 Q62.4562 -6.4375 63.0499 -6.1562 L62.5031 -4.875 Q62.0343 -5.0781 61.5968 -5.2188 Q61.1593 -5.3594 60.7218 -5.3594 Q59.9249 -5.3594 59.9249 -4.9219 Q59.9249 -4.7656 60.0187 -4.6406 Q60.1281 -4.5156 60.4249 -4.3594 Q60.7218 -4.2188 61.2999 -3.9844 Q61.8624 -3.75 62.2687 -3.5 Q62.6749 -3.2656 62.8937 -2.8906 Q63.1281 -2.5312 63.1281 -1.9375 ZM65.4202 -9.125 Q65.8108 -9.125 66.0921 -8.9375 Q66.389 -8.75 66.389 -8.25 Q66.389 -7.75 66.0921 -7.5625 Q65.8108 -7.375 65.4202 -7.375 Q64.9983 -7.375 64.7171 -7.5625 Q64.4358 -7.75 64.4358 -8.25 Q64.4358 -8.75 64.7171 -8.9375 Q64.9983 -9.125 65.4202 -9.125 ZM66.2952 -6.5469 L66.2952 0 L64.514 0 L64.514 -6.5469 L66.2952 -6.5469 ZM70.9396 -1.3125 Q71.2365 -1.3125 71.5021 -1.3594 Q71.7834 -1.4219 72.0646 -1.5156 L72.0646 -0.1875 Q71.7677 -0.0625 71.3459 0.0312 Q70.924 0.125 70.424 0.125 Q69.8302 0.125 69.3615 -0.0625 Q68.9084 -0.2656 68.6271 -0.7344 Q68.3615 -1.2188 68.3615 -2.0469 L68.3615 -5.2031 L67.5177 -5.2031 L67.5177 -5.9688 L68.5021 -6.5625 L69.0177 -7.9375 L70.1584 -7.9375 L70.1584 -6.5469 L71.9865 -6.5469 L71.9865 -5.2031 L70.1584 -5.2031 L70.1584 -2.0469 Q70.1584 -1.6875 70.3615 -1.5 Q70.5802 -1.3125 70.9396 -1.3125 ZM79.3351 -3.2812 Q79.3351 -1.6562 78.4758 -0.7656 Q77.6164 0.125 76.1476 0.125 Q75.2258 0.125 74.507 -0.2656 Q73.8039 -0.6719 73.3976 -1.4375 Q72.9914 -2.2031 72.9914 -3.2812 Q72.9914 -4.9219 73.8351 -5.7969 Q74.6945 -6.6719 76.1789 -6.6719 Q77.1008 -6.6719 77.8039 -6.2656 Q78.5226 -5.875 78.9289 -5.125 Q79.3351 -4.375 79.3351 -3.2812 ZM74.8039 -3.2812 Q74.8039 -2.3125 75.1164 -1.8125 Q75.4445 -1.3125 76.1633 -1.3125 Q76.8664 -1.3125 77.1789 -1.8125 Q77.507 -2.3125 77.507 -3.2812 Q77.507 -4.2656 77.1789 -4.75 Q76.8664 -5.2344 76.1476 -5.2344 Q75.4445 -5.2344 75.1164 -4.75 Q74.8039 -4.2656 74.8039 -3.2812 ZM84.4663 -6.6719 Q84.6069 -6.6719 84.7788 -6.6562 Q84.9663 -6.6406 85.0757 -6.625 L84.9351 -4.9375 Q84.8569 -4.9688 84.6851 -4.9844 Q84.5288 -5 84.4038 -5 Q83.9507 -5 83.5288 -4.8438 Q83.1069 -4.6875 82.8413 -4.3125 Q82.5913 -3.9531 82.5913 -3.3438 L82.5913 0 L80.8101 0 L80.8101 -6.5469 L82.1694 -6.5469 L82.4351 -5.4531 L82.5132 -5.4531 Q82.7944 -5.9531 83.2944 -6.3125 Q83.8101 -6.6719 84.4663 -6.6719 ZM85.3206 -6.5469 L87.2737 -6.5469 L88.5081 -2.875 Q88.6019 -2.6094 88.6487 -2.3281 Q88.7112 -2.0469 88.7269 -1.7344 L88.7581 -1.7344 Q88.805 -2.0469 88.8675 -2.3281 Q88.93 -2.6094 89.0237 -2.875 L90.2269 -6.5469 L92.1487 -6.5469 L89.3831 0.8438 Q89.0081 1.8594 88.2894 2.3594 Q87.5706 2.875 86.6331 2.875 Q86.3362 2.875 86.1175 2.8438 Q85.8987 2.8125 85.7269 2.7812 L85.7269 1.375 Q85.8675 1.3906 86.0394 1.4062 Q86.2269 1.4375 86.43 1.4375 Q87.0081 1.4375 87.3362 1.0938 Q87.6644 0.75 87.8206 0.2812 L87.93 -0.0469 L85.3206 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath13);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="573.4285" y="350.5976" width="79.5204" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="573.4285" y="350.5976" width="79.5204" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(583.4285,368.5976)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM24.6055 -6.5469 Q25.7618 -6.5469 26.3399 -5.9844 Q26.9336 -5.4375 26.9336 -4.1875 L26.9336 0 L25.9024 0 L25.9024 -4.1094 Q25.9024 -5.6562 24.4493 -5.6562 Q23.3868 -5.6562 22.9805 -5.0625 Q22.5743 -4.4688 22.5743 -3.3438 L22.5743 0 L21.5118 0 L21.5118 -6.4375 L22.3711 -6.4375 L22.5274 -5.5625 L22.5899 -5.5625 Q22.9024 -6.0625 23.4493 -6.2969 Q23.9961 -6.5469 24.6055 -6.5469 ZM31.0841 -0.75 Q31.3184 -0.75 31.5684 -0.7812 Q31.8184 -0.8281 31.9747 -0.875 L31.9747 -0.0781 Q31.8184 0.0156 31.5059 0.0625 Q31.1934 0.125 30.8966 0.125 Q30.3966 0.125 29.9591 -0.0469 Q29.5372 -0.2344 29.2716 -0.6562 Q29.0216 -1.0938 29.0216 -1.875 L29.0216 -5.6094 L28.0997 -5.6094 L28.0997 -6.125 L29.0216 -6.5469 L29.4434 -7.9062 L30.0684 -7.9062 L30.0684 -6.4375 L31.9278 -6.4375 L31.9278 -5.6094 L30.0684 -5.6094 L30.0684 -1.8906 Q30.0684 -1.3125 30.3497 -1.0312 Q30.6309 -0.75 31.0841 -0.75 ZM33.8067 -8.8438 Q34.0411 -8.8438 34.2286 -8.6719 Q34.4161 -8.5156 34.4161 -8.1719 Q34.4161 -7.8438 34.2286 -7.6719 Q34.0411 -7.5 33.8067 -7.5 Q33.5411 -7.5 33.3536 -7.6719 Q33.1817 -7.8438 33.1817 -8.1719 Q33.1817 -8.5156 33.3536 -8.6719 Q33.5411 -8.8438 33.8067 -8.8438 ZM34.3223 -6.4375 L34.3223 0 L33.2598 0 L33.2598 -6.4375 L34.3223 -6.4375 ZM38.5121 -0.75 Q38.7465 -0.75 38.9965 -0.7812 Q39.2465 -0.8281 39.4027 -0.875 L39.4027 -0.0781 Q39.2465 0.0156 38.934 0.0625 Q38.6215 0.125 38.3246 0.125 Q37.8246 0.125 37.3871 -0.0469 Q36.9652 -0.2344 36.6996 -0.6562 Q36.4496 -1.0938 36.4496 -1.875 L36.4496 -5.6094 L35.5277 -5.6094 L35.5277 -6.125 L36.4496 -6.5469 L36.8715 -7.9062 L37.4965 -7.9062 L37.4965 -6.4375 L39.3559 -6.4375 L39.3559 -5.6094 L37.4965 -5.6094 L37.4965 -1.8906 Q37.4965 -1.3125 37.7777 -1.0312 Q38.059 -0.75 38.5121 -0.75 ZM39.6879 -6.4375 L40.8129 -6.4375 L42.2035 -2.7656 Q42.391 -2.2969 42.5316 -1.8594 Q42.6723 -1.4219 42.7504 -1.0156 L42.7973 -1.0156 Q42.8598 -1.3125 43.016 -1.7969 Q43.1723 -2.2969 43.3441 -2.7812 L44.6566 -6.4375 L45.7973 -6.4375 L43.016 0.8906 Q42.6879 1.7969 42.141 2.3281 Q41.6098 2.875 40.6879 2.875 Q40.391 2.875 40.1723 2.8438 Q39.9535 2.8125 39.7973 2.7812 L39.7973 1.9375 Q39.9379 1.9688 40.1254 1.9844 Q40.3129 2.0156 40.516 2.0156 Q41.0629 2.0156 41.4066 1.7031 Q41.7504 1.3906 41.9379 0.875 L42.2816 0.0312 L39.6879 -6.4375 ZM46.3861 -2.3281 L50.9173 -4.2188 L46.3861 -6.3594 L46.3861 -7.2969 L52.0423 -4.4688 L52.0423 -3.875 L46.3861 -1.3906 L46.3861 -2.3281 ZM53.2501 -2.3281 L57.7814 -4.2188 L53.2501 -6.3594 L53.2501 -7.2969 L58.9064 -4.4688 L58.9064 -3.875 L53.2501 -1.3906 L53.2501 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath14);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(586.2725,384.9417)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath15);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-693.3856" y="-237.7767" width="116.0487" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="-693.3856" y="-237.7767" width="116.0487" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-683.3856,-219.7767)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 ZM39.867 -7.1719 Q38.8201 -7.1719 38.2576 -6.3906 Q37.7107 -5.6094 37.7107 -4.2656 Q37.7107 -2.8906 38.2264 -2.1406 Q38.742 -1.3906 39.867 -1.3906 Q40.3982 -1.3906 40.9139 -1.5 Q41.4295 -1.625 42.0545 -1.8438 L42.0545 -0.3281 Q41.492 -0.0938 40.9295 0.0156 Q40.3826 0.125 39.6951 0.125 Q38.3826 0.125 37.5232 -0.4219 Q36.6639 -0.9688 36.2576 -1.9531 Q35.8514 -2.9531 35.8514 -4.2656 Q35.8514 -5.5625 36.3045 -6.5625 Q36.7732 -7.5625 37.6639 -8.125 Q38.5701 -8.6875 39.867 -8.6875 Q40.5076 -8.6875 41.1482 -8.5156 Q41.7889 -8.3594 42.367 -8.0938 L41.7889 -6.6094 Q41.3045 -6.8438 40.8201 -7 Q40.3357 -7.1719 39.867 -7.1719 ZM49.6829 -3.2812 Q49.6829 -1.6562 48.8235 -0.7656 Q47.9642 0.125 46.4954 0.125 Q45.5735 0.125 44.8548 -0.2656 Q44.1517 -0.6719 43.7454 -1.4375 Q43.3392 -2.2031 43.3392 -3.2812 Q43.3392 -4.9219 44.1829 -5.7969 Q45.0423 -6.6719 46.5267 -6.6719 Q47.4485 -6.6719 48.1517 -6.2656 Q48.8704 -5.875 49.2767 -5.125 Q49.6829 -4.375 49.6829 -3.2812 ZM45.1517 -3.2812 Q45.1517 -2.3125 45.4642 -1.8125 Q45.7923 -1.3125 46.511 -1.3125 Q47.2142 -1.3125 47.5267 -1.8125 Q47.8548 -2.3125 47.8548 -3.2812 Q47.8548 -4.2656 47.5267 -4.75 Q47.2142 -5.2344 46.4954 -5.2344 Q45.7923 -5.2344 45.4642 -4.75 Q45.1517 -4.2656 45.1517 -3.2812 ZM54.8766 -6.6719 Q55.9391 -6.6719 56.5641 -6.0938 Q57.2047 -5.5312 57.2047 -4.2656 L57.2047 0 L55.4235 0 L55.4235 -3.8281 Q55.4235 -4.5312 55.1579 -4.8906 Q54.9079 -5.25 54.361 -5.25 Q53.5485 -5.25 53.236 -4.6875 Q52.9391 -4.125 52.9391 -3.0781 L52.9391 0 L51.1579 0 L51.1579 -6.5469 L52.5172 -6.5469 L52.7672 -5.7188 L52.861 -5.7188 Q53.1735 -6.2188 53.7204 -6.4375 Q54.2672 -6.6719 54.8766 -6.6719 ZM61.8075 -1.3125 Q62.1044 -1.3125 62.37 -1.3594 Q62.6513 -1.4219 62.9325 -1.5156 L62.9325 -0.1875 Q62.6357 -0.0625 62.2138 0.0312 Q61.7919 0.125 61.2919 0.125 Q60.6982 0.125 60.2294 -0.0625 Q59.7763 -0.2656 59.495 -0.7344 Q59.2294 -1.2188 59.2294 -2.0469 L59.2294 -5.2031 L58.3857 -5.2031 L58.3857 -5.9688 L59.37 -6.5625 L59.8857 -7.9375 L61.0263 -7.9375 L61.0263 -6.5469 L62.8544 -6.5469 L62.8544 -5.2031 L61.0263 -5.2031 L61.0263 -2.0469 Q61.0263 -1.6875 61.2294 -1.5 Q61.4482 -1.3125 61.8075 -1.3125 ZM67.9062 -6.6719 Q68.0468 -6.6719 68.2187 -6.6562 Q68.4062 -6.6406 68.5156 -6.625 L68.3749 -4.9375 Q68.2968 -4.9688 68.1249 -4.9844 Q67.9687 -5 67.8437 -5 Q67.3906 -5 66.9687 -4.8438 Q66.5468 -4.6875 66.2812 -4.3125 Q66.0312 -3.9531 66.0312 -3.3438 L66.0312 0 L64.2499 0 L64.2499 -6.5469 L65.6093 -6.5469 L65.8749 -5.4531 L65.9531 -5.4531 Q66.2343 -5.9531 66.7343 -6.3125 Q67.2499 -6.6719 67.9062 -6.6719 ZM75.6511 -3.2812 Q75.6511 -1.6562 74.7917 -0.7656 Q73.9324 0.125 72.4636 0.125 Q71.5417 0.125 70.823 -0.2656 Q70.1199 -0.6719 69.7136 -1.4375 Q69.3074 -2.2031 69.3074 -3.2812 Q69.3074 -4.9219 70.1511 -5.7969 Q71.0105 -6.6719 72.4949 -6.6719 Q73.4167 -6.6719 74.1199 -6.2656 Q74.8386 -5.875 75.2449 -5.125 Q75.6511 -4.375 75.6511 -3.2812 ZM71.1199 -3.2812 Q71.1199 -2.3125 71.4324 -1.8125 Q71.7605 -1.3125 72.4792 -1.3125 Q73.1824 -1.3125 73.4949 -1.8125 Q73.823 -2.3125 73.823 -3.2812 Q73.823 -4.2656 73.4949 -4.75 Q73.1824 -5.2344 72.4636 -5.2344 Q71.7605 -5.2344 71.4324 -4.75 Q71.1199 -4.2656 71.1199 -3.2812 ZM78.9073 0 L77.126 0 L77.126 -9.125 L78.9073 -9.125 L78.9073 0 ZM82.5673 0 L80.7861 0 L80.7861 -9.125 L82.5673 -9.125 L82.5673 0 ZM87.1492 -6.6719 Q88.493 -6.6719 89.2898 -5.8906 Q90.0867 -5.125 90.0867 -3.7031 L90.0867 -2.8281 L85.868 -2.8281 Q85.8836 -2.0781 86.3055 -1.6406 Q86.743 -1.2188 87.493 -1.2188 Q88.1336 -1.2188 88.6492 -1.3438 Q89.1648 -1.4688 89.7117 -1.7344 L89.7117 -0.3438 Q89.2273 -0.1094 88.6961 0 Q88.1648 0.125 87.4148 0.125 Q86.4305 0.125 85.6648 -0.2344 Q84.9148 -0.6094 84.4773 -1.3438 Q84.0555 -2.0938 84.0555 -3.2344 Q84.0555 -4.375 84.4305 -5.1406 Q84.8211 -5.9062 85.5242 -6.2812 Q86.2273 -6.6719 87.1492 -6.6719 ZM87.1492 -5.4062 Q86.6336 -5.4062 86.2898 -5.0625 Q85.9617 -4.7344 85.8992 -4.0156 L88.3992 -4.0156 Q88.3992 -4.625 88.0867 -5.0156 Q87.7898 -5.4062 87.1492 -5.4062 ZM95.1944 -6.6719 Q95.335 -6.6719 95.5069 -6.6562 Q95.6944 -6.6406 95.8038 -6.625 L95.6631 -4.9375 Q95.585 -4.9688 95.4131 -4.9844 Q95.2569 -5 95.1319 -5 Q94.6788 -5 94.2569 -4.8438 Q93.835 -4.6875 93.5694 -4.3125 Q93.3194 -3.9531 93.3194 -3.3438 L93.3194 0 L91.5381 0 L91.5381 -6.5469 L92.8975 -6.5469 L93.1631 -5.4531 L93.2413 -5.4531 Q93.5225 -5.9531 94.0225 -6.3125 Q94.5381 -6.6719 95.1944 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath16);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="482.6342" y="680.9076" width="85.2991" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="482.6342" y="680.9076" width="85.2991" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="482.6342" y="695.9076" width="213.2478" style="clip-path:url(#clipPath2); stroke:none;" height="194.375"
+      /><rect x="482.6342" y="695.9076" width="213.2478" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="194.375"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(567.2319,714.9076)"
+    ><path d="M4.5938 -6.6719 Q4.7344 -6.6719 4.9062 -6.6562 Q5.0938 -6.6406 5.2031 -6.625 L5.0625 -4.9375 Q4.9844 -4.9688 4.8125 -4.9844 Q4.6562 -5 4.5312 -5 Q4.0781 -5 3.6562 -4.8438 Q3.2344 -4.6875 2.9688 -4.3125 Q2.7188 -3.9531 2.7188 -3.3438 L2.7188 0 L0.9375 0 L0.9375 -6.5469 L2.2969 -6.5469 L2.5625 -5.4531 L2.6406 -5.4531 Q2.9219 -5.9531 3.4219 -6.3125 Q3.9375 -6.6719 4.5938 -6.6719 ZM9.0887 -6.6719 Q10.4324 -6.6719 11.2293 -5.8906 Q12.0262 -5.125 12.0262 -3.7031 L12.0262 -2.8281 L7.8074 -2.8281 Q7.823 -2.0781 8.2449 -1.6406 Q8.6824 -1.2188 9.4324 -1.2188 Q10.073 -1.2188 10.5887 -1.3438 Q11.1043 -1.4688 11.6512 -1.7344 L11.6512 -0.3438 Q11.1668 -0.1094 10.6355 0 Q10.1043 0.125 9.3543 0.125 Q8.3699 0.125 7.6043 -0.2344 Q6.8543 -0.6094 6.4168 -1.3438 Q5.9949 -2.0938 5.9949 -3.2344 Q5.9949 -4.375 6.3699 -5.1406 Q6.7605 -5.9062 7.4637 -6.2812 Q8.1668 -6.6719 9.0887 -6.6719 ZM9.0887 -5.4062 Q8.573 -5.4062 8.2293 -5.0625 Q7.9012 -4.7344 7.8387 -4.0156 L10.3387 -4.0156 Q10.3387 -4.625 10.0262 -5.0156 Q9.7293 -5.4062 9.0887 -5.4062 ZM21.1651 -6.6719 Q22.2901 -6.6719 22.8526 -6.0938 Q23.4307 -5.5312 23.4307 -4.2656 L23.4307 0 L21.6339 0 L21.6339 -3.8281 Q21.6339 -5.25 20.6495 -5.25 Q19.9464 -5.25 19.6339 -4.7344 Q19.337 -4.2344 19.337 -3.2812 L19.337 0 L17.5557 0 L17.5557 -3.8281 Q17.5557 -5.25 16.5714 -5.25 Q15.8214 -5.25 15.5401 -4.6875 Q15.2589 -4.125 15.2589 -3.0781 L15.2589 0 L13.4776 0 L13.4776 -6.5469 L14.837 -6.5469 L15.087 -5.7188 L15.1807 -5.7188 Q15.4776 -6.2188 15.9932 -6.4375 Q16.5245 -6.6719 17.087 -6.6719 Q17.8057 -6.6719 18.3057 -6.4375 Q18.8214 -6.2031 19.087 -5.7188 L19.2432 -5.7188 Q19.5401 -6.2188 20.0714 -6.4375 Q20.6026 -6.6719 21.1651 -6.6719 ZM31.2148 -3.2812 Q31.2148 -1.6562 30.3554 -0.7656 Q29.4961 0.125 28.0273 0.125 Q27.1054 0.125 26.3867 -0.2656 Q25.6836 -0.6719 25.2773 -1.4375 Q24.8711 -2.2031 24.8711 -3.2812 Q24.8711 -4.9219 25.7148 -5.7969 Q26.5742 -6.6719 28.0586 -6.6719 Q28.9804 -6.6719 29.6836 -6.2656 Q30.4023 -5.875 30.8086 -5.125 Q31.2148 -4.375 31.2148 -3.2812 ZM26.6836 -3.2812 Q26.6836 -2.3125 26.9961 -1.8125 Q27.3242 -1.3125 28.0429 -1.3125 Q28.7461 -1.3125 29.0586 -1.8125 Q29.3867 -2.3125 29.3867 -3.2812 Q29.3867 -4.2656 29.0586 -4.75 Q28.7461 -5.2344 28.0273 -5.2344 Q27.3242 -5.2344 26.9961 -4.75 Q26.6836 -4.2656 26.6836 -3.2812 ZM35.4554 -1.3125 Q35.7522 -1.3125 36.0179 -1.3594 Q36.2991 -1.4219 36.5804 -1.5156 L36.5804 -0.1875 Q36.2835 -0.0625 35.8616 0.0312 Q35.4397 0.125 34.9397 0.125 Q34.346 0.125 33.8772 -0.0625 Q33.4241 -0.2656 33.1429 -0.7344 Q32.8772 -1.2188 32.8772 -2.0469 L32.8772 -5.2031 L32.0335 -5.2031 L32.0335 -5.9688 L33.0179 -6.5625 L33.5335 -7.9375 L34.6741 -7.9375 L34.6741 -6.5469 L36.5022 -6.5469 L36.5022 -5.2031 L34.6741 -5.2031 L34.6741 -2.0469 Q34.6741 -1.6875 34.8772 -1.5 Q35.096 -1.3125 35.4554 -1.3125 ZM40.6009 -6.6719 Q41.9447 -6.6719 42.7415 -5.8906 Q43.5384 -5.125 43.5384 -3.7031 L43.5384 -2.8281 L39.3197 -2.8281 Q39.3353 -2.0781 39.7572 -1.6406 Q40.1947 -1.2188 40.9447 -1.2188 Q41.5853 -1.2188 42.1009 -1.3438 Q42.6165 -1.4688 43.1634 -1.7344 L43.1634 -0.3438 Q42.679 -0.1094 42.1478 0 Q41.6165 0.125 40.8665 0.125 Q39.8822 0.125 39.1165 -0.2344 Q38.3665 -0.6094 37.929 -1.3438 Q37.5072 -2.0938 37.5072 -3.2344 Q37.5072 -4.375 37.8822 -5.1406 Q38.2728 -5.9062 38.9759 -6.2812 Q39.679 -6.6719 40.6009 -6.6719 ZM40.6009 -5.4062 Q40.0853 -5.4062 39.7415 -5.0625 Q39.4134 -4.7344 39.3509 -4.0156 L41.8509 -4.0156 Q41.8509 -4.625 41.5384 -5.0156 Q41.2415 -5.4062 40.6009 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath17);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="498.935" y="753.368" width="75" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="498.935" y="753.368" width="75" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(508.935,771.368)"
+    ><path d="M6.3281 0 L5.7031 -2.0469 L2.5781 -2.0469 L1.9531 0 L0 0 L3.0312 -8.6094 L5.25 -8.6094 L8.2812 0 L6.3281 0 ZM4.6406 -5.5625 Q4.5781 -5.7656 4.4844 -6.0781 Q4.3906 -6.3906 4.2969 -6.7031 Q4.2031 -7.0312 4.1406 -7.2656 Q4.0781 -7.0312 3.9688 -6.6719 Q3.875 -6.3281 3.7812 -6 Q3.7031 -5.6875 3.6406 -5.5625 L3.0312 -3.5625 L5.2656 -3.5625 L4.6406 -5.5625 ZM15.2332 -6.5469 L15.2332 0 L13.8582 0 L13.6238 -0.8438 L13.5301 -0.8438 Q13.2176 -0.3438 12.6707 -0.1094 Q12.1238 0.125 11.5144 0.125 Q10.4519 0.125 9.8113 -0.4375 Q9.1863 -1.0156 9.1863 -2.2812 L9.1863 -6.5469 L10.9676 -6.5469 L10.9676 -2.7188 Q10.9676 -2.0312 11.2176 -1.6719 Q11.4676 -1.3125 12.0301 -1.3125 Q12.8426 -1.3125 13.1394 -1.8594 Q13.4363 -2.4219 13.4363 -3.4688 L13.4363 -6.5469 L15.2332 -6.5469 ZM19.8672 -1.3125 Q20.1641 -1.3125 20.4297 -1.3594 Q20.711 -1.4219 20.9922 -1.5156 L20.9922 -0.1875 Q20.6954 -0.0625 20.2735 0.0312 Q19.8516 0.125 19.3516 0.125 Q18.7579 0.125 18.2891 -0.0625 Q17.836 -0.2656 17.5547 -0.7344 Q17.2891 -1.2188 17.2891 -2.0469 L17.2891 -5.2031 L16.4454 -5.2031 L16.4454 -5.9688 L17.4297 -6.5625 L17.9454 -7.9375 L19.086 -7.9375 L19.086 -6.5469 L20.9141 -6.5469 L20.9141 -5.2031 L19.086 -5.2031 L19.086 -2.0469 Q19.086 -1.6875 19.2891 -1.5 Q19.5079 -1.3125 19.8672 -1.3125 ZM24.0909 -7.2656 Q24.0909 -6.7812 24.0596 -6.3281 Q24.0284 -5.8906 24.0128 -5.7188 L24.1065 -5.7188 Q24.419 -6.2188 24.9034 -6.4375 Q25.4034 -6.6719 25.9971 -6.6719 Q27.0753 -6.6719 27.7159 -6.0938 Q28.3565 -5.5312 28.3565 -4.2656 L28.3565 0 L26.5753 0 L26.5753 -3.8281 Q26.5753 -5.25 25.5128 -5.25 Q24.7159 -5.25 24.4034 -4.6875 Q24.0909 -4.125 24.0909 -3.0781 L24.0909 0 L22.3096 0 L22.3096 -9.125 L24.0909 -9.125 L24.0909 -7.2656 ZM37.4437 -4.375 Q37.4437 -2.2031 36.2093 -1.0938 Q34.9749 0 32.7562 0 L30.3343 0 L30.3343 -8.5625 L33.0218 -8.5625 Q34.3656 -8.5625 35.3499 -8.0781 Q36.3499 -7.6094 36.8968 -6.6719 Q37.4437 -5.75 37.4437 -4.375 ZM35.5531 -4.3125 Q35.5531 -5.75 34.9281 -6.4062 Q34.3031 -7.0781 33.1156 -7.0781 L32.1468 -7.0781 L32.1468 -1.5 L32.9281 -1.5 Q35.5531 -1.5 35.5531 -4.3125 ZM42.5113 0 L40.6988 0 L40.6988 -7.0625 L38.3706 -7.0625 L38.3706 -8.5625 L44.8394 -8.5625 L44.8394 -7.0625 L42.5113 -7.0625 L42.5113 0 ZM53.9437 -4.2969 Q53.9437 -2.9688 53.5062 -1.9688 Q53.0687 -0.9844 52.1624 -0.4219 Q51.2718 0.125 49.8656 0.125 Q48.4749 0.125 47.5687 -0.4219 Q46.6624 -0.9844 46.2249 -1.9688 Q45.7874 -2.9688 45.7874 -4.3125 Q45.7874 -5.6406 46.2249 -6.625 Q46.6624 -7.6094 47.5687 -8.1562 Q48.4749 -8.7031 49.8656 -8.7031 Q51.2718 -8.7031 52.1624 -8.1562 Q53.0687 -7.6094 53.5062 -6.6094 Q53.9437 -5.625 53.9437 -4.2969 ZM47.6937 -4.2969 Q47.6937 -2.9531 48.2093 -2.1719 Q48.7249 -1.4062 49.8656 -1.4062 Q51.0218 -1.4062 51.5218 -2.1719 Q52.0374 -2.9531 52.0374 -4.2969 Q52.0374 -5.6562 51.5218 -6.4219 Q51.0218 -7.1875 49.8656 -7.1875 Q48.7249 -7.1875 48.2093 -6.4219 Q47.6937 -5.6562 47.6937 -4.2969 Z" style="stroke:none; clip-path:url(#clipPath18);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-1302.3736" y="43.6669" width="118.6493" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-1302.3736" y="43.6669" width="118.6493" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-1302.3736" y="58.6669" width="296.6232" style="clip-path:url(#clipPath2); stroke:none;" height="153.9923"
+      /><rect x="-1302.3736" y="58.6669" width="296.6232" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="153.9923"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-1279.2769,77.6669)"
+    ><path d="M6.8906 -3.2812 Q6.8906 -1.6562 6.0312 -0.7656 Q5.1719 0.125 3.7031 0.125 Q2.7812 0.125 2.0625 -0.2656 Q1.3594 -0.6719 0.9531 -1.4375 Q0.5469 -2.2031 0.5469 -3.2812 Q0.5469 -4.9219 1.3906 -5.7969 Q2.25 -6.6719 3.7344 -6.6719 Q4.6562 -6.6719 5.3594 -6.2656 Q6.0781 -5.875 6.4844 -5.125 Q6.8906 -4.375 6.8906 -3.2812 ZM2.3594 -3.2812 Q2.3594 -2.3125 2.6719 -1.8125 Q3 -1.3125 3.7188 -1.3125 Q4.4219 -1.3125 4.7344 -1.8125 Q5.0625 -2.3125 5.0625 -3.2812 Q5.0625 -4.2656 4.7344 -4.75 Q4.4219 -5.2344 3.7031 -5.2344 Q3 -5.2344 2.6719 -4.75 Q2.3594 -4.2656 2.3594 -3.2812 ZM12.0218 -6.6719 Q12.1624 -6.6719 12.3343 -6.6562 Q12.5218 -6.6406 12.6312 -6.625 L12.4906 -4.9375 Q12.4124 -4.9688 12.2406 -4.9844 Q12.0843 -5 11.9593 -5 Q11.5062 -5 11.0843 -4.8438 Q10.6624 -4.6875 10.3968 -4.3125 Q10.1468 -3.9531 10.1468 -3.3438 L10.1468 0 L8.3656 0 L8.3656 -6.5469 L9.7249 -6.5469 L9.9906 -5.4531 L10.0687 -5.4531 Q10.3499 -5.9531 10.8499 -6.3125 Q11.3656 -6.6719 12.0218 -6.6719 ZM15.9386 -6.6719 Q17.1417 -6.6719 17.8292 -5.7188 L17.8761 -5.7188 L18.0167 -6.5469 L19.5323 -6.5469 L19.5323 0.0156 Q19.5323 1.4219 18.7042 2.1406 Q17.8761 2.875 16.2667 2.875 Q15.5636 2.875 14.9698 2.7969 Q14.3761 2.7188 13.8136 2.5 L13.8136 1.0625 Q15.0167 1.5781 16.3605 1.5781 Q17.7511 1.5781 17.7511 0.0781 L17.7511 -0.0469 Q17.7511 -0.25 17.7667 -0.4688 Q17.7823 -0.6875 17.798 -0.8594 L17.7511 -0.8594 Q17.4073 -0.3438 16.9386 -0.1094 Q16.4698 0.125 15.8917 0.125 Q14.7198 0.125 14.0636 -0.7656 Q13.423 -1.6719 13.423 -3.2656 Q13.423 -4.875 14.0948 -5.7656 Q14.7667 -6.6719 15.9386 -6.6719 ZM16.5011 -5.2188 Q15.2355 -5.2188 15.2355 -3.2344 Q15.2355 -1.2812 16.5167 -1.2812 Q17.2042 -1.2812 17.5323 -1.6719 Q17.8605 -2.0625 17.8605 -3.0312 L17.8605 -3.25 Q17.8605 -4.3125 17.5323 -4.7656 Q17.2198 -5.2188 16.5011 -5.2188 ZM21.1597 -0.8438 Q21.1597 -1.3906 21.4565 -1.6094 Q21.7534 -1.8438 22.1909 -1.8438 Q22.6128 -1.8438 22.9097 -1.6094 Q23.2065 -1.3906 23.2065 -0.8438 Q23.2065 -0.3125 22.9097 -0.0781 Q22.6128 0.1562 22.1909 0.1562 Q21.7534 0.1562 21.4565 -0.0781 Q21.1597 -0.3125 21.1597 -0.8438 ZM29.4078 -1.9375 Q29.4078 -0.9531 28.7047 -0.4062 Q28.0016 0.125 26.6109 0.125 Q25.9234 0.125 25.4234 0.0312 Q24.9391 -0.0625 24.4391 -0.2656 L24.4391 -1.7344 Q24.9703 -1.5 25.5797 -1.3438 Q26.1891 -1.1875 26.6578 -1.1875 Q27.1891 -1.1875 27.4078 -1.3438 Q27.6422 -1.5 27.6422 -1.75 Q27.6422 -1.9219 27.5484 -2.0469 Q27.4547 -2.1875 27.1578 -2.3438 Q26.8609 -2.5156 26.2203 -2.7812 Q25.6109 -3.0469 25.2047 -3.2969 Q24.8141 -3.5625 24.6266 -3.9219 Q24.4391 -4.2969 24.4391 -4.8438 Q24.4391 -5.7656 25.1422 -6.2188 Q25.8453 -6.6719 27.0172 -6.6719 Q27.6422 -6.6719 28.1891 -6.5469 Q28.7359 -6.4375 29.3297 -6.1562 L28.7828 -4.875 Q28.3141 -5.0781 27.8766 -5.2188 Q27.4391 -5.3594 27.0016 -5.3594 Q26.2047 -5.3594 26.2047 -4.9219 Q26.2047 -4.7656 26.2984 -4.6406 Q26.4078 -4.5156 26.7047 -4.3594 Q27.0016 -4.2188 27.5797 -3.9844 Q28.1422 -3.75 28.5484 -3.5 Q28.9547 -3.2656 29.1734 -2.8906 Q29.4078 -2.5312 29.4078 -1.9375 ZM34.4343 -6.6719 Q35.5437 -6.6719 36.2312 -5.8125 Q36.9187 -4.9531 36.9187 -3.2812 Q36.9187 -1.625 36.2 -0.75 Q35.4968 0.125 34.3875 0.125 Q33.6843 0.125 33.2625 -0.125 Q32.8406 -0.3906 32.575 -0.7188 L32.4812 -0.7188 Q32.575 -0.2188 32.575 0.2344 L32.575 2.875 L30.7937 2.875 L30.7937 -6.5469 L32.2468 -6.5469 L32.4968 -5.7031 L32.575 -5.7031 Q32.8406 -6.0938 33.2781 -6.375 Q33.7312 -6.6719 34.4343 -6.6719 ZM33.8718 -5.25 Q33.1687 -5.25 32.8875 -4.8125 Q32.6062 -4.375 32.575 -3.4844 L32.575 -3.2969 Q32.575 -2.3594 32.8562 -1.8438 Q33.1375 -1.3281 33.8875 -1.3281 Q34.4968 -1.3281 34.7937 -1.8438 Q35.0906 -2.3594 35.0906 -3.3125 Q35.0906 -5.25 33.8718 -5.25 ZM42.046 -6.6719 Q42.1866 -6.6719 42.3585 -6.6562 Q42.546 -6.6406 42.6554 -6.625 L42.5148 -4.9375 Q42.4366 -4.9688 42.2648 -4.9844 Q42.1085 -5 41.9835 -5 Q41.5304 -5 41.1085 -4.8438 Q40.6866 -4.6875 40.421 -4.3125 Q40.171 -3.9531 40.171 -3.3438 L40.171 0 L38.3898 0 L38.3898 -6.5469 L39.7491 -6.5469 L40.0148 -5.4531 L40.0929 -5.4531 Q40.3741 -5.9531 40.8741 -6.3125 Q41.3898 -6.6719 42.046 -6.6719 ZM44.7441 -9.125 Q45.1347 -9.125 45.4159 -8.9375 Q45.7128 -8.75 45.7128 -8.25 Q45.7128 -7.75 45.4159 -7.5625 Q45.1347 -7.375 44.7441 -7.375 Q44.3222 -7.375 44.0409 -7.5625 Q43.7597 -7.75 43.7597 -8.25 Q43.7597 -8.75 44.0409 -8.9375 Q44.3222 -9.125 44.7441 -9.125 ZM45.6191 -6.5469 L45.6191 0 L43.8378 0 L43.8378 -6.5469 L45.6191 -6.5469 ZM51.2166 -6.6719 Q52.2791 -6.6719 52.9041 -6.0938 Q53.5447 -5.5312 53.5447 -4.2656 L53.5447 0 L51.7635 0 L51.7635 -3.8281 Q51.7635 -4.5312 51.4978 -4.8906 Q51.2478 -5.25 50.701 -5.25 Q49.8885 -5.25 49.576 -4.6875 Q49.2791 -4.125 49.2791 -3.0781 L49.2791 0 L47.4978 0 L47.4978 -6.5469 L48.8572 -6.5469 L49.1072 -5.7188 L49.201 -5.7188 Q49.5135 -6.2188 50.0603 -6.4375 Q50.6072 -6.6719 51.2166 -6.6719 ZM57.5069 -6.6719 Q58.71 -6.6719 59.3975 -5.7188 L59.4444 -5.7188 L59.585 -6.5469 L61.1006 -6.5469 L61.1006 0.0156 Q61.1006 1.4219 60.2725 2.1406 Q59.4444 2.875 57.835 2.875 Q57.1319 2.875 56.5381 2.7969 Q55.9444 2.7188 55.3819 2.5 L55.3819 1.0625 Q56.585 1.5781 57.9288 1.5781 Q59.3194 1.5781 59.3194 0.0781 L59.3194 -0.0469 Q59.3194 -0.25 59.335 -0.4688 Q59.3506 -0.6875 59.3663 -0.8594 L59.3194 -0.8594 Q58.9756 -0.3438 58.5069 -0.1094 Q58.0381 0.125 57.46 0.125 Q56.2881 0.125 55.6319 -0.7656 Q54.9913 -1.6719 54.9913 -3.2656 Q54.9913 -4.875 55.6631 -5.7656 Q56.335 -6.6719 57.5069 -6.6719 ZM58.0694 -5.2188 Q56.8038 -5.2188 56.8038 -3.2344 Q56.8038 -1.2812 58.085 -1.2812 Q58.7725 -1.2812 59.1006 -1.6719 Q59.4288 -2.0625 59.4288 -3.0312 L59.4288 -3.25 Q59.4288 -4.3125 59.1006 -4.7656 Q58.7881 -5.2188 58.0694 -5.2188 ZM62.7279 -0.8438 Q62.7279 -1.3906 63.0248 -1.6094 Q63.3217 -1.8438 63.7592 -1.8438 Q64.1811 -1.8438 64.4779 -1.6094 Q64.7748 -1.3906 64.7748 -0.8438 Q64.7748 -0.3125 64.4779 -0.0781 Q64.1811 0.1562 63.7592 0.1562 Q63.3217 0.1562 63.0248 -0.0781 Q62.7279 -0.3125 62.7279 -0.8438 ZM70.023 -5.2031 L68.4761 -5.2031 L68.4761 0 L66.6792 0 L66.6792 -5.2031 L65.6948 -5.2031 L65.6948 -6.0781 L66.6792 -6.5469 L66.6792 -7.0312 Q66.6792 -7.875 66.9605 -8.3281 Q67.2417 -8.7969 67.7573 -8.9844 Q68.2886 -9.1875 69.0073 -9.1875 Q69.523 -9.1875 69.9448 -9.0938 Q70.3823 -9.0156 70.648 -8.9062 L70.1948 -7.5938 Q69.9917 -7.6562 69.7417 -7.7031 Q69.5073 -7.7656 69.1948 -7.7656 Q68.8198 -7.7656 68.648 -7.5312 Q68.4761 -7.3125 68.4761 -6.9531 L68.4761 -6.5469 L70.023 -6.5469 L70.023 -5.2031 ZM74.6982 -6.6719 Q74.8389 -6.6719 75.0107 -6.6562 Q75.1982 -6.6406 75.3076 -6.625 L75.167 -4.9375 Q75.0889 -4.9688 74.917 -4.9844 Q74.7607 -5 74.6357 -5 Q74.1826 -5 73.7607 -4.8438 Q73.3389 -4.6875 73.0732 -4.3125 Q72.8232 -3.9531 72.8232 -3.3438 L72.8232 0 L71.042 0 L71.042 -6.5469 L72.4014 -6.5469 L72.667 -5.4531 L72.7451 -5.4531 Q73.0264 -5.9531 73.5264 -6.3125 Q74.042 -6.6719 74.6982 -6.6719 ZM79.1775 -6.6875 Q80.49 -6.6875 81.1932 -6.1094 Q81.8963 -5.5469 81.8963 -4.375 L81.8963 0 L80.6463 0 L80.3025 -0.8906 L80.2557 -0.8906 Q79.8338 -0.3594 79.365 -0.1094 Q78.8963 0.125 78.0838 0.125 Q77.2088 0.125 76.6307 -0.3906 Q76.0525 -0.9062 76.0525 -1.9531 Q76.0525 -3 76.7869 -3.5 Q77.5213 -4 78.99 -4.0469 L80.1307 -4.0781 L80.1307 -4.375 Q80.1307 -4.8906 79.8494 -5.125 Q79.5838 -5.3594 79.0994 -5.3594 Q78.6307 -5.3594 78.1619 -5.2188 Q77.7088 -5.0938 77.2557 -4.8906 L76.6619 -6.0938 Q77.1932 -6.375 77.8338 -6.5312 Q78.4744 -6.6875 79.1775 -6.6875 ZM79.4275 -3.0156 Q78.5682 -2.9844 78.2244 -2.6875 Q77.8963 -2.4062 77.8963 -1.9375 Q77.8963 -1.5312 78.1307 -1.3594 Q78.365 -1.1875 78.7557 -1.1875 Q79.3338 -1.1875 79.7244 -1.5312 Q80.1307 -1.875 80.1307 -2.5 L80.1307 -3.0312 L79.4275 -3.0156 ZM91.4256 -6.6719 Q92.5506 -6.6719 93.1131 -6.0938 Q93.6912 -5.5312 93.6912 -4.2656 L93.6912 0 L91.8943 0 L91.8943 -3.8281 Q91.8943 -5.25 90.91 -5.25 Q90.2068 -5.25 89.8943 -4.7344 Q89.5975 -4.2344 89.5975 -3.2812 L89.5975 0 L87.8162 0 L87.8162 -3.8281 Q87.8162 -5.25 86.8318 -5.25 Q86.0818 -5.25 85.8006 -4.6875 Q85.5193 -4.125 85.5193 -3.0781 L85.5193 0 L83.7381 0 L83.7381 -6.5469 L85.0975 -6.5469 L85.3475 -5.7188 L85.4412 -5.7188 Q85.7381 -6.2188 86.2537 -6.4375 Q86.785 -6.6719 87.3475 -6.6719 Q88.0662 -6.6719 88.5662 -6.4375 Q89.0818 -6.2031 89.3475 -5.7188 L89.5037 -5.7188 Q89.8006 -6.2188 90.3318 -6.4375 Q90.8631 -6.6719 91.4256 -6.6719 ZM98.2253 -6.6719 Q99.569 -6.6719 100.3659 -5.8906 Q101.1628 -5.125 101.1628 -3.7031 L101.1628 -2.8281 L96.944 -2.8281 Q96.9597 -2.0781 97.3815 -1.6406 Q97.819 -1.2188 98.569 -1.2188 Q99.2097 -1.2188 99.7253 -1.3438 Q100.2409 -1.4688 100.7878 -1.7344 L100.7878 -0.3438 Q100.3034 -0.1094 99.7722 0 Q99.2409 0.125 98.4909 0.125 Q97.5065 0.125 96.7409 -0.2344 Q95.9909 -0.6094 95.5534 -1.3438 Q95.1315 -2.0938 95.1315 -3.2344 Q95.1315 -4.375 95.5065 -5.1406 Q95.8972 -5.9062 96.6003 -6.2812 Q97.3034 -6.6719 98.2253 -6.6719 ZM98.2253 -5.4062 Q97.7097 -5.4062 97.3659 -5.0625 Q97.0378 -4.7344 96.9753 -4.0156 L99.4753 -4.0156 Q99.4753 -4.625 99.1628 -5.0156 Q98.8659 -5.4062 98.2253 -5.4062 ZM107.4892 -2.2969 Q107.4424 -2.5 107.3486 -2.8906 Q107.2705 -3.2969 107.1611 -3.75 Q107.0517 -4.2188 106.958 -4.6094 Q106.8642 -5 106.8174 -5.1875 L106.7705 -5.1875 Q106.7392 -5 106.6455 -4.6094 Q106.5674 -4.2188 106.458 -3.75 Q106.3486 -3.2969 106.2392 -2.8906 Q106.1455 -2.4844 106.0986 -2.2656 L105.583 0 L103.6611 0 L101.8017 -6.5469 L103.5674 -6.5469 L104.333 -3.6406 Q104.4111 -3.3438 104.4736 -2.9219 Q104.5517 -2.5156 104.5986 -2.125 Q104.6611 -1.7344 104.6924 -1.5 L104.7392 -1.5 Q104.7549 -1.6719 104.7861 -1.9531 Q104.8174 -2.2344 104.8642 -2.5312 Q104.9267 -2.8281 104.9736 -3.0781 Q105.0205 -3.3281 105.0361 -3.4062 L105.833 -6.5469 L107.8017 -6.5469 L108.583 -3.4062 Q108.6299 -3.2344 108.6924 -2.8594 Q108.7549 -2.5 108.8017 -2.1094 Q108.8642 -1.7344 108.8642 -1.5 L108.9111 -1.5 Q108.9424 -1.7031 108.9892 -2.0938 Q109.0517 -2.4844 109.1299 -2.9062 Q109.208 -3.3438 109.3017 -3.6406 L110.083 -6.5469 L111.833 -6.5469 L109.9424 0 L108.0049 0 L107.4892 -2.2969 ZM118.8394 -3.2812 Q118.8394 -1.6562 117.9801 -0.7656 Q117.1207 0.125 115.6519 0.125 Q114.7301 0.125 114.0113 -0.2656 Q113.3082 -0.6719 112.9019 -1.4375 Q112.4957 -2.2031 112.4957 -3.2812 Q112.4957 -4.9219 113.3394 -5.7969 Q114.1988 -6.6719 115.6832 -6.6719 Q116.6051 -6.6719 117.3082 -6.2656 Q118.0269 -5.875 118.4332 -5.125 Q118.8394 -4.375 118.8394 -3.2812 ZM114.3082 -3.2812 Q114.3082 -2.3125 114.6207 -1.8125 Q114.9488 -1.3125 115.6676 -1.3125 Q116.3707 -1.3125 116.6832 -1.8125 Q117.0113 -2.3125 117.0113 -3.2812 Q117.0113 -4.2656 116.6832 -4.75 Q116.3707 -5.2344 115.6519 -5.2344 Q114.9488 -5.2344 114.6207 -4.75 Q114.3082 -4.2656 114.3082 -3.2812 ZM123.9706 -6.6719 Q124.1112 -6.6719 124.2831 -6.6562 Q124.4706 -6.6406 124.58 -6.625 L124.4394 -4.9375 Q124.3612 -4.9688 124.1894 -4.9844 Q124.0331 -5 123.9081 -5 Q123.455 -5 123.0331 -4.8438 Q122.6112 -4.6875 122.3456 -4.3125 Q122.0956 -3.9531 122.0956 -3.3438 L122.0956 0 L120.3144 0 L120.3144 -6.5469 L121.6737 -6.5469 L121.9394 -5.4531 L122.0175 -5.4531 Q122.2987 -5.9531 122.7987 -6.3125 Q123.3144 -6.6719 123.9706 -6.6719 ZM127.5437 -5.0469 Q127.5437 -4.6719 127.5124 -4.2969 Q127.4812 -3.9375 127.4499 -3.5625 L127.4812 -3.5625 Q127.653 -3.8125 127.8405 -4.0625 Q128.0437 -4.3281 128.2624 -4.5625 L130.0905 -6.5469 L132.1062 -6.5469 L129.5124 -3.7031 L132.2624 0 L130.1999 0 L128.3093 -2.6562 L127.5437 -2.0469 L127.5437 0 L125.7624 0 L125.7624 -9.125 L127.5437 -9.125 L127.5437 -5.0469 ZM132.9525 -0.8438 Q132.9525 -1.3906 133.2493 -1.6094 Q133.5462 -1.8438 133.9837 -1.8438 Q134.4056 -1.8438 134.7025 -1.6094 Q134.9993 -1.3906 134.9993 -0.8438 Q134.9993 -0.3125 134.7025 -0.0781 Q134.4056 0.1562 133.9837 0.1562 Q133.5462 0.1562 133.2493 -0.0781 Q132.9525 -0.3125 132.9525 -0.8438 ZM138.7006 0.125 Q137.6069 0.125 136.9194 -0.7344 Q136.2319 -1.5938 136.2319 -3.2656 Q136.2319 -4.9375 136.9194 -5.7969 Q137.6225 -6.6719 138.7475 -6.6719 Q139.4506 -6.6719 139.9037 -6.3906 Q140.3725 -6.125 140.6225 -5.7188 L140.685 -5.7188 Q140.6537 -5.9062 140.6069 -6.2656 Q140.56 -6.6406 140.56 -7.0156 L140.56 -9.125 L142.3412 -9.125 L142.3412 0 L140.9819 0 L140.6225 -0.8594 L140.56 -0.8594 Q140.2944 -0.4375 139.8412 -0.1562 Q139.4037 0.125 138.7006 0.125 ZM139.3256 -1.3125 Q140.06 -1.3125 140.3569 -1.75 Q140.6694 -2.1875 140.6694 -3.0625 L140.6694 -3.25 Q140.6694 -4.2188 140.3725 -4.7188 Q140.0912 -5.2188 139.2944 -5.2188 Q138.7162 -5.2188 138.3725 -4.7031 Q138.0444 -4.2031 138.0444 -3.2344 Q138.0444 -2.2812 138.3725 -1.7969 Q138.7162 -1.3125 139.3256 -1.3125 ZM146.906 -6.6875 Q148.2185 -6.6875 148.9217 -6.1094 Q149.6248 -5.5469 149.6248 -4.375 L149.6248 0 L148.3748 0 L148.031 -0.8906 L147.9842 -0.8906 Q147.5623 -0.3594 147.0935 -0.1094 Q146.6248 0.125 145.8123 0.125 Q144.9373 0.125 144.3592 -0.3906 Q143.781 -0.9062 143.781 -1.9531 Q143.781 -3 144.5154 -3.5 Q145.2498 -4 146.7185 -4.0469 L147.8592 -4.0781 L147.8592 -4.375 Q147.8592 -4.8906 147.5779 -5.125 Q147.3123 -5.3594 146.8279 -5.3594 Q146.3592 -5.3594 145.8904 -5.2188 Q145.4373 -5.0938 144.9842 -4.8906 L144.3904 -6.0938 Q144.9217 -6.375 145.5623 -6.5312 Q146.2029 -6.6875 146.906 -6.6875 ZM147.156 -3.0156 Q146.2967 -2.9844 145.9529 -2.6875 Q145.6248 -2.4062 145.6248 -1.9375 Q145.6248 -1.5312 145.8592 -1.3594 Q146.0935 -1.1875 146.4842 -1.1875 Q147.0623 -1.1875 147.4529 -1.5312 Q147.8592 -1.875 147.8592 -2.5 L147.8592 -3.0312 L147.156 -3.0156 ZM154.2322 -1.3125 Q154.5291 -1.3125 154.7947 -1.3594 Q155.076 -1.4219 155.3572 -1.5156 L155.3572 -0.1875 Q155.0603 -0.0625 154.6385 0.0312 Q154.2166 0.125 153.7166 0.125 Q153.1228 0.125 152.6541 -0.0625 Q152.201 -0.2656 151.9197 -0.7344 Q151.6541 -1.2188 151.6541 -2.0469 L151.6541 -5.2031 L150.8103 -5.2031 L150.8103 -5.9688 L151.7947 -6.5625 L152.3103 -7.9375 L153.451 -7.9375 L153.451 -6.5469 L155.2791 -6.5469 L155.2791 -5.2031 L153.451 -5.2031 L153.451 -2.0469 Q153.451 -1.6875 153.6541 -1.5 Q153.8728 -1.3125 154.2322 -1.3125 ZM159.3621 -6.6875 Q160.6746 -6.6875 161.3777 -6.1094 Q162.0809 -5.5469 162.0809 -4.375 L162.0809 0 L160.8309 0 L160.4871 -0.8906 L160.4402 -0.8906 Q160.0184 -0.3594 159.5496 -0.1094 Q159.0809 0.125 158.2684 0.125 Q157.3934 0.125 156.8152 -0.3906 Q156.2371 -0.9062 156.2371 -1.9531 Q156.2371 -3 156.9715 -3.5 Q157.7059 -4 159.1746 -4.0469 L160.3152 -4.0781 L160.3152 -4.375 Q160.3152 -4.8906 160.034 -5.125 Q159.7684 -5.3594 159.284 -5.3594 Q158.8152 -5.3594 158.3465 -5.2188 Q157.8934 -5.0938 157.4402 -4.8906 L156.8465 -6.0938 Q157.3777 -6.375 158.0184 -6.5312 Q158.659 -6.6875 159.3621 -6.6875 ZM159.6121 -3.0156 Q158.7527 -2.9844 158.409 -2.6875 Q158.0809 -2.4062 158.0809 -1.9375 Q158.0809 -1.5312 158.3152 -1.3594 Q158.5496 -1.1875 158.9402 -1.1875 Q159.5184 -1.1875 159.909 -1.5312 Q160.3152 -1.875 160.3152 -2.5 L160.3152 -3.0312 L159.6121 -3.0156 ZM163.6727 -0.8438 Q163.6727 -1.3906 163.9695 -1.6094 Q164.2664 -1.8438 164.7039 -1.8438 Q165.1258 -1.8438 165.4227 -1.6094 Q165.7195 -1.3906 165.7195 -0.8438 Q165.7195 -0.3125 165.4227 -0.0781 Q165.1258 0.1562 164.7039 0.1562 Q164.2664 0.1562 163.9695 -0.0781 Q163.6727 -0.3125 163.6727 -0.8438 ZM167.2646 -8.25 Q167.2646 -8.75 167.5458 -8.9375 Q167.8271 -9.125 168.2489 -9.125 Q168.6396 -9.125 168.9208 -8.9375 Q169.2177 -8.75 169.2177 -8.25 Q169.2177 -7.75 168.9208 -7.5625 Q168.6396 -7.375 168.2489 -7.375 Q167.8271 -7.375 167.5458 -7.5625 Q167.2646 -7.75 167.2646 -8.25 ZM166.8114 2.875 Q166.5146 2.875 166.1864 2.8281 Q165.8583 2.7969 165.6396 2.7344 L165.6396 1.3281 Q165.8583 1.375 166.0458 1.4062 Q166.2333 1.4375 166.4833 1.4375 Q166.8427 1.4375 167.0927 1.2344 Q167.3427 1.0312 167.3427 0.4375 L167.3427 -6.5469 L169.1239 -6.5469 L169.1239 0.7031 Q169.1239 1.3125 168.8896 1.7969 Q168.6708 2.2969 168.1552 2.5781 Q167.6552 2.875 166.8114 2.875 ZM174.6433 -6.6719 Q175.7527 -6.6719 176.4402 -5.8125 Q177.1277 -4.9531 177.1277 -3.2812 Q177.1277 -1.625 176.409 -0.75 Q175.7058 0.125 174.5965 0.125 Q173.8933 0.125 173.4715 -0.125 Q173.0496 -0.3906 172.784 -0.7188 L172.6902 -0.7188 Q172.784 -0.2188 172.784 0.2344 L172.784 2.875 L171.0027 2.875 L171.0027 -6.5469 L172.4558 -6.5469 L172.7058 -5.7031 L172.784 -5.7031 Q173.0496 -6.0938 173.4871 -6.375 Q173.9402 -6.6719 174.6433 -6.6719 ZM174.0808 -5.25 Q173.3777 -5.25 173.0965 -4.8125 Q172.8152 -4.375 172.784 -3.4844 L172.784 -3.2969 Q172.784 -2.3594 173.0652 -1.8438 Q173.3465 -1.3281 174.0965 -1.3281 Q174.7058 -1.3281 175.0027 -1.8438 Q175.2996 -2.3594 175.2996 -3.3125 Q175.2996 -5.25 174.0808 -5.25 ZM181.2863 -6.6875 Q182.5988 -6.6875 183.3019 -6.1094 Q184.005 -5.5469 184.005 -4.375 L184.005 0 L182.755 0 L182.4113 -0.8906 L182.3644 -0.8906 Q181.9425 -0.3594 181.4738 -0.1094 Q181.005 0.125 180.1925 0.125 Q179.3175 0.125 178.7394 -0.3906 Q178.1613 -0.9062 178.1613 -1.9531 Q178.1613 -3 178.8956 -3.5 Q179.63 -4 181.0988 -4.0469 L182.2394 -4.0781 L182.2394 -4.375 Q182.2394 -4.8906 181.9581 -5.125 Q181.6925 -5.3594 181.2081 -5.3594 Q180.7394 -5.3594 180.2706 -5.2188 Q179.8175 -5.0938 179.3644 -4.8906 L178.7706 -6.0938 Q179.3019 -6.375 179.9425 -6.5312 Q180.5831 -6.6875 181.2863 -6.6875 ZM181.5363 -3.0156 Q180.6769 -2.9844 180.3331 -2.6875 Q180.005 -2.4062 180.005 -1.9375 Q180.005 -1.5312 180.2394 -1.3594 Q180.4738 -1.1875 180.8644 -1.1875 Q181.4425 -1.1875 181.8331 -1.5312 Q182.2394 -1.875 182.2394 -2.5 L182.2394 -3.0312 L181.5363 -3.0156 ZM185.5968 -0.8438 Q185.5968 -1.3906 185.8937 -1.6094 Q186.1906 -1.8438 186.6281 -1.8438 Q187.0499 -1.8438 187.3468 -1.6094 Q187.6437 -1.3906 187.6437 -0.8438 Q187.6437 -0.3125 187.3468 -0.0781 Q187.0499 0.1562 186.6281 0.1562 Q186.1906 0.1562 185.8937 -0.0781 Q185.5968 -0.3125 185.5968 -0.8438 ZM192.9231 -6.6719 Q193.0637 -6.6719 193.2356 -6.6562 Q193.4231 -6.6406 193.5325 -6.625 L193.3918 -4.9375 Q193.3137 -4.9688 193.1418 -4.9844 Q192.9856 -5 192.8606 -5 Q192.4075 -5 191.9856 -4.8438 Q191.5637 -4.6875 191.2981 -4.3125 Q191.0481 -3.9531 191.0481 -3.3438 L191.0481 0 L189.2668 0 L189.2668 -6.5469 L190.6262 -6.5469 L190.8918 -5.4531 L190.97 -5.4531 Q191.2512 -5.9531 191.7512 -6.3125 Q192.2668 -6.6719 192.9231 -6.6719 ZM197.418 -6.6719 Q198.7618 -6.6719 199.5586 -5.8906 Q200.3555 -5.125 200.3555 -3.7031 L200.3555 -2.8281 L196.1368 -2.8281 Q196.1524 -2.0781 196.5743 -1.6406 Q197.0118 -1.2188 197.7618 -1.2188 Q198.4024 -1.2188 198.918 -1.3438 Q199.4336 -1.4688 199.9805 -1.7344 L199.9805 -0.3438 Q199.4961 -0.1094 198.9649 0 Q198.4336 0.125 197.6836 0.125 Q196.6993 0.125 195.9336 -0.2344 Q195.1836 -0.6094 194.7461 -1.3438 Q194.3243 -2.0938 194.3243 -3.2344 Q194.3243 -4.375 194.6993 -5.1406 Q195.0899 -5.9062 195.793 -6.2812 Q196.4961 -6.6719 197.418 -6.6719 ZM197.418 -5.4062 Q196.9024 -5.4062 196.5586 -5.0625 Q196.2305 -4.7344 196.168 -4.0156 L198.668 -4.0156 Q198.668 -4.625 198.3555 -5.0156 Q198.0586 -5.4062 197.418 -5.4062 ZM205.4476 -6.6719 Q206.5569 -6.6719 207.2444 -5.8125 Q207.9319 -4.9531 207.9319 -3.2812 Q207.9319 -1.625 207.2132 -0.75 Q206.5101 0.125 205.4007 0.125 Q204.6976 0.125 204.2757 -0.125 Q203.8538 -0.3906 203.5882 -0.7188 L203.4944 -0.7188 Q203.5882 -0.2188 203.5882 0.2344 L203.5882 2.875 L201.8069 2.875 L201.8069 -6.5469 L203.2601 -6.5469 L203.5101 -5.7031 L203.5882 -5.7031 Q203.8538 -6.0938 204.2913 -6.375 Q204.7444 -6.6719 205.4476 -6.6719 ZM204.8851 -5.25 Q204.1819 -5.25 203.9007 -4.8125 Q203.6194 -4.375 203.5882 -3.4844 L203.5882 -3.2969 Q203.5882 -2.3594 203.8694 -1.8438 Q204.1507 -1.3281 204.9007 -1.3281 Q205.5101 -1.3281 205.8069 -1.8438 Q206.1038 -2.3594 206.1038 -3.3125 Q206.1038 -5.25 204.8851 -5.25 ZM215.3561 -3.2812 Q215.3561 -1.6562 214.4967 -0.7656 Q213.6374 0.125 212.1686 0.125 Q211.2467 0.125 210.528 -0.2656 Q209.8249 -0.6719 209.4186 -1.4375 Q209.0124 -2.2031 209.0124 -3.2812 Q209.0124 -4.9219 209.8561 -5.7969 Q210.7155 -6.6719 212.1999 -6.6719 Q213.1217 -6.6719 213.8249 -6.2656 Q214.5436 -5.875 214.9499 -5.125 Q215.3561 -4.375 215.3561 -3.2812 ZM210.8249 -3.2812 Q210.8249 -2.3125 211.1374 -1.8125 Q211.4655 -1.3125 212.1842 -1.3125 Q212.8874 -1.3125 213.1999 -1.8125 Q213.528 -2.3125 213.528 -3.2812 Q213.528 -4.2656 213.1999 -4.75 Q212.8874 -5.2344 212.1686 -5.2344 Q211.4655 -5.2344 211.1374 -4.75 Q210.8249 -4.2656 210.8249 -3.2812 ZM221.4092 -1.9375 Q221.4092 -0.9531 220.7061 -0.4062 Q220.0029 0.125 218.6123 0.125 Q217.9248 0.125 217.4248 0.0312 Q216.9404 -0.0625 216.4404 -0.2656 L216.4404 -1.7344 Q216.9717 -1.5 217.5811 -1.3438 Q218.1904 -1.1875 218.6592 -1.1875 Q219.1904 -1.1875 219.4092 -1.3438 Q219.6436 -1.5 219.6436 -1.75 Q219.6436 -1.9219 219.5498 -2.0469 Q219.4561 -2.1875 219.1592 -2.3438 Q218.8623 -2.5156 218.2217 -2.7812 Q217.6123 -3.0469 217.2061 -3.2969 Q216.8154 -3.5625 216.6279 -3.9219 Q216.4404 -4.2969 216.4404 -4.8438 Q216.4404 -5.7656 217.1436 -6.2188 Q217.8467 -6.6719 219.0186 -6.6719 Q219.6436 -6.6719 220.1904 -6.5469 Q220.7373 -6.4375 221.3311 -6.1562 L220.7842 -4.875 Q220.3154 -5.0781 219.8779 -5.2188 Q219.4404 -5.3594 219.0029 -5.3594 Q218.2061 -5.3594 218.2061 -4.9219 Q218.2061 -4.7656 218.2998 -4.6406 Q218.4092 -4.5156 218.7061 -4.3594 Q219.0029 -4.2188 219.5811 -3.9844 Q220.1436 -3.75 220.5498 -3.5 Q220.9561 -3.2656 221.1748 -2.8906 Q221.4092 -2.5312 221.4092 -1.9375 ZM223.7013 -9.125 Q224.092 -9.125 224.3732 -8.9375 Q224.6701 -8.75 224.6701 -8.25 Q224.6701 -7.75 224.3732 -7.5625 Q224.092 -7.375 223.7013 -7.375 Q223.2795 -7.375 222.9982 -7.5625 Q222.717 -7.75 222.717 -8.25 Q222.717 -8.75 222.9982 -8.9375 Q223.2795 -9.125 223.7013 -9.125 ZM224.5763 -6.5469 L224.5763 0 L222.7951 0 L222.7951 -6.5469 L224.5763 -6.5469 ZM229.2207 -1.3125 Q229.5176 -1.3125 229.7832 -1.3594 Q230.0645 -1.4219 230.3457 -1.5156 L230.3457 -0.1875 Q230.0489 -0.0625 229.627 0.0312 Q229.2051 0.125 228.7051 0.125 Q228.1114 0.125 227.6426 -0.0625 Q227.1895 -0.2656 226.9082 -0.7344 Q226.6426 -1.2188 226.6426 -2.0469 L226.6426 -5.2031 L225.7989 -5.2031 L225.7989 -5.9688 L226.7832 -6.5625 L227.2989 -7.9375 L228.4395 -7.9375 L228.4395 -6.5469 L230.2676 -6.5469 L230.2676 -5.2031 L228.4395 -5.2031 L228.4395 -2.0469 Q228.4395 -1.6875 228.6426 -1.5 Q228.8614 -1.3125 229.2207 -1.3125 ZM237.6163 -3.2812 Q237.6163 -1.6562 236.7569 -0.7656 Q235.8975 0.125 234.4288 0.125 Q233.5069 0.125 232.7881 -0.2656 Q232.085 -0.6719 231.6788 -1.4375 Q231.2725 -2.2031 231.2725 -3.2812 Q231.2725 -4.9219 232.1163 -5.7969 Q232.9756 -6.6719 234.46 -6.6719 Q235.3819 -6.6719 236.085 -6.2656 Q236.8038 -5.875 237.21 -5.125 Q237.6163 -4.375 237.6163 -3.2812 ZM233.085 -3.2812 Q233.085 -2.3125 233.3975 -1.8125 Q233.7256 -1.3125 234.4444 -1.3125 Q235.1475 -1.3125 235.46 -1.8125 Q235.7881 -2.3125 235.7881 -3.2812 Q235.7881 -4.2656 235.46 -4.75 Q235.1475 -5.2344 234.4288 -5.2344 Q233.7256 -5.2344 233.3975 -4.75 Q233.085 -4.2656 233.085 -3.2812 ZM242.7475 -6.6719 Q242.8881 -6.6719 243.06 -6.6562 Q243.2475 -6.6406 243.3568 -6.625 L243.2162 -4.9375 Q243.1381 -4.9688 242.9662 -4.9844 Q242.81 -5 242.685 -5 Q242.2318 -5 241.81 -4.8438 Q241.3881 -4.6875 241.1225 -4.3125 Q240.8725 -3.9531 240.8725 -3.3438 L240.8725 0 L239.0912 0 L239.0912 -6.5469 L240.4506 -6.5469 L240.7162 -5.4531 L240.7943 -5.4531 Q241.0756 -5.9531 241.5756 -6.3125 Q242.0912 -6.6719 242.7475 -6.6719 ZM243.6017 -6.5469 L245.5549 -6.5469 L246.7892 -2.875 Q246.883 -2.6094 246.9299 -2.3281 Q246.9924 -2.0469 247.008 -1.7344 L247.0392 -1.7344 Q247.0861 -2.0469 247.1486 -2.3281 Q247.2111 -2.6094 247.3049 -2.875 L248.508 -6.5469 L250.4299 -6.5469 L247.6642 0.8438 Q247.2892 1.8594 246.5705 2.3594 Q245.8517 2.875 244.9142 2.875 Q244.6174 2.875 244.3986 2.8438 Q244.1799 2.8125 244.008 2.7812 L244.008 1.375 Q244.1486 1.3906 244.3205 1.4062 Q244.508 1.4375 244.7111 1.4375 Q245.2892 1.4375 245.6174 1.0938 Q245.9455 0.75 246.1017 0.2812 L246.2111 -0.0469 L243.6017 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath19);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-1130.939" y="154.3151" width="103.3886" style="clip-path:url(#clipPath2); stroke:none;" height="43.3441"
+      /><rect x="-1130.939" y="154.3151" width="103.3886" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="43.3441"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><line x1="-1130.939" x2="-1027.5504" y1="186.6592" style="fill:none; clip-path:url(#clipPath2);" y2="186.6592"
+      /><line x1="-1130.939" x2="-1027.5504" y1="178.6592" style="fill:none; clip-path:url(#clipPath2);" y2="178.6592"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-1120.939,172.3151)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath20);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="stroke-linecap:butt; fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke-dasharray:3,3; stroke:rgb(255,255,204); font-weight:bold;"
+    ><rect x="-1054.7504" y="138.971" width="34" style="clip-path:url(#clipPath2); stroke:none;" height="20.3441"
+      /><rect x="-1054.7504" y="138.971" width="34" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="20.3441"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:3,3; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-1037.7423,154.971)"
+    ><path d="M3.5781 0 L0.4844 0 L0.4844 -0.625 L1.4844 -0.8594 L1.4844 -7.7031 L0.4844 -7.9375 L0.4844 -8.5625 L3.5781 -8.5625 L3.5781 -7.9375 L2.5625 -7.7031 L2.5625 -0.8594 L3.5781 -0.625 L3.5781 0 ZM12.0993 -4.375 Q12.0993 -2.2031 10.9118 -1.0938 Q9.7243 0 7.6149 0 L5.2243 0 L5.2243 -8.5625 L7.8649 -8.5625 Q9.1618 -8.5625 10.1149 -8.0781 Q11.068 -7.6094 11.5836 -6.6719 Q12.0993 -5.75 12.0993 -4.375 ZM10.9586 -4.3281 Q10.9586 -6.0469 10.1149 -6.8438 Q9.2711 -7.6406 7.7086 -7.6406 L6.318 -7.6406 L6.318 -0.9219 L7.4743 -0.9219 Q10.9586 -0.9219 10.9586 -4.3281 Z" style="stroke:none; clip-path:url(#clipPath21);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:3,3; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-1050.7504,154.971)"
+    ><path d="M3.875 0 L2.7969 0 L2.7969 -7.625 L0.125 -7.625 L0.125 -8.5625 L6.5469 -8.5625 L6.5469 -7.625 L3.875 -7.625 L3.875 0 ZM8.9689 -1.2656 Q8.8127 -0.625 8.5158 0.1406 Q8.2345 0.9062 7.9377 1.5469 L7.1564 1.5469 Q7.3283 0.8594 7.5002 0.0469 Q7.6877 -0.7656 7.7658 -1.3906 L8.8908 -1.3906 L8.9689 -1.2656 Z" style="stroke:none; clip-path:url(#clipPath22);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="510.42" y="-1110.7877" width="340.012" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="510.42" y="-1110.7877" width="340.012" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="510.42" y="-1095.7877" width="850.0299" style="clip-path:url(#clipPath2); stroke:none;" height="305.3111"
+      /><rect x="510.42" y="-1095.7877" width="850.0299" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="305.3111"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(916.4349,-1076.7877)"
+    ><path d="M3.5938 0.125 Q2.1406 0.125 1.3438 -0.6875 Q0.5469 -1.5 0.5469 -3.2344 Q0.5469 -4.4375 0.9531 -5.1875 Q1.3594 -5.9531 2.0781 -6.3125 Q2.8125 -6.6719 3.75 -6.6719 Q4.4219 -6.6719 4.9219 -6.5312 Q5.4219 -6.4062 5.7969 -6.2344 L5.2656 -4.8438 Q4.8438 -5.0156 4.4688 -5.125 Q4.1094 -5.2344 3.75 -5.2344 Q2.3594 -5.2344 2.3594 -3.25 Q2.3594 -2.2656 2.7188 -1.7969 Q3.0938 -1.3281 3.75 -1.3281 Q4.3125 -1.3281 4.75 -1.4688 Q5.1875 -1.625 5.5938 -1.8906 L5.5938 -0.375 Q5.1875 -0.1094 4.7344 0 Q4.2812 0.125 3.5938 0.125 ZM13.0587 -3.2812 Q13.0587 -1.6562 12.1993 -0.7656 Q11.3399 0.125 9.8712 0.125 Q8.9493 0.125 8.2305 -0.2656 Q7.5274 -0.6719 7.1212 -1.4375 Q6.7149 -2.2031 6.7149 -3.2812 Q6.7149 -4.9219 7.5587 -5.7969 Q8.418 -6.6719 9.9024 -6.6719 Q10.8243 -6.6719 11.5274 -6.2656 Q12.2462 -5.875 12.6524 -5.125 Q13.0587 -4.375 13.0587 -3.2812 ZM8.5274 -3.2812 Q8.5274 -2.3125 8.8399 -1.8125 Q9.168 -1.3125 9.8868 -1.3125 Q10.5899 -1.3125 10.9024 -1.8125 Q11.2305 -2.3125 11.2305 -3.2812 Q11.2305 -4.2656 10.9024 -4.75 Q10.5899 -5.2344 9.8712 -5.2344 Q9.168 -5.2344 8.8399 -4.75 Q8.5274 -4.2656 8.5274 -3.2812 ZM18.2523 -6.6719 Q19.3148 -6.6719 19.9398 -6.0938 Q20.5805 -5.5312 20.5805 -4.2656 L20.5805 0 L18.7992 0 L18.7992 -3.8281 Q18.7992 -4.5312 18.5336 -4.8906 Q18.2836 -5.25 17.7367 -5.25 Q16.9242 -5.25 16.6117 -4.6875 Q16.3148 -4.125 16.3148 -3.0781 L16.3148 0 L14.5336 0 L14.5336 -6.5469 L15.893 -6.5469 L16.143 -5.7188 L16.2367 -5.7188 Q16.5492 -6.2188 17.0961 -6.4375 Q17.643 -6.6719 18.2523 -6.6719 ZM26.0426 -5.2031 L24.4958 -5.2031 L24.4958 0 L22.6989 0 L22.6989 -5.2031 L21.7145 -5.2031 L21.7145 -6.0781 L22.6989 -6.5469 L22.6989 -7.0312 Q22.6989 -7.875 22.9801 -8.3281 Q23.2614 -8.7969 23.777 -8.9844 Q24.3083 -9.1875 25.027 -9.1875 Q25.5426 -9.1875 25.9645 -9.0938 Q26.402 -9.0156 26.6676 -8.9062 L26.2145 -7.5938 Q26.0114 -7.6562 25.7614 -7.7031 Q25.527 -7.7656 25.2145 -7.7656 Q24.8395 -7.7656 24.6676 -7.5312 Q24.4958 -7.3125 24.4958 -6.9531 L24.4958 -6.5469 L26.0426 -6.5469 L26.0426 -5.2031 ZM27.9679 -9.125 Q28.3586 -9.125 28.6398 -8.9375 Q28.9367 -8.75 28.9367 -8.25 Q28.9367 -7.75 28.6398 -7.5625 Q28.3586 -7.375 27.9679 -7.375 Q27.5461 -7.375 27.2648 -7.5625 Q26.9836 -7.75 26.9836 -8.25 Q26.9836 -8.75 27.2648 -8.9375 Q27.5461 -9.125 27.9679 -9.125 ZM28.8429 -6.5469 L28.8429 0 L27.0617 0 L27.0617 -6.5469 L28.8429 -6.5469 ZM32.8467 -6.6719 Q34.0498 -6.6719 34.7373 -5.7188 L34.7842 -5.7188 L34.9248 -6.5469 L36.4404 -6.5469 L36.4404 0.0156 Q36.4404 1.4219 35.6123 2.1406 Q34.7842 2.875 33.1748 2.875 Q32.4717 2.875 31.8779 2.7969 Q31.2842 2.7188 30.7217 2.5 L30.7217 1.0625 Q31.9248 1.5781 33.2686 1.5781 Q34.6592 1.5781 34.6592 0.0781 L34.6592 -0.0469 Q34.6592 -0.25 34.6748 -0.4688 Q34.6904 -0.6875 34.7061 -0.8594 L34.6592 -0.8594 Q34.3154 -0.3438 33.8467 -0.1094 Q33.3779 0.125 32.7998 0.125 Q31.6279 0.125 30.9717 -0.7656 Q30.3311 -1.6719 30.3311 -3.2656 Q30.3311 -4.875 31.0029 -5.7656 Q31.6748 -6.6719 32.8467 -6.6719 ZM33.4092 -5.2188 Q32.1436 -5.2188 32.1436 -3.2344 Q32.1436 -1.2812 33.4248 -1.2812 Q34.1123 -1.2812 34.4404 -1.6719 Q34.7686 -2.0625 34.7686 -3.0312 L34.7686 -3.25 Q34.7686 -4.3125 34.4404 -4.7656 Q34.1279 -5.2188 33.4092 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath23);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-746.0394" y="-1222.1905" width="317.2845" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-746.0394" y="-1222.1905" width="317.2845" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-746.0394" y="-1207.1905" width="793.2113" style="clip-path:url(#clipPath2); stroke:none;" height="468.7761"
+      /><rect x="-746.0394" y="-1207.1905" width="793.2113" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="468.7761"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-375.672,-1188.1905)"
+    ><path d="M3.5938 0.125 Q2.1406 0.125 1.3438 -0.6875 Q0.5469 -1.5 0.5469 -3.2344 Q0.5469 -4.4375 0.9531 -5.1875 Q1.3594 -5.9531 2.0781 -6.3125 Q2.8125 -6.6719 3.75 -6.6719 Q4.4219 -6.6719 4.9219 -6.5312 Q5.4219 -6.4062 5.7969 -6.2344 L5.2656 -4.8438 Q4.8438 -5.0156 4.4688 -5.125 Q4.1094 -5.2344 3.75 -5.2344 Q2.3594 -5.2344 2.3594 -3.25 Q2.3594 -2.2656 2.7188 -1.7969 Q3.0938 -1.3281 3.75 -1.3281 Q4.3125 -1.3281 4.75 -1.4688 Q5.1875 -1.625 5.5938 -1.8906 L5.5938 -0.375 Q5.1875 -0.1094 4.7344 0 Q4.2812 0.125 3.5938 0.125 ZM13.0587 -3.2812 Q13.0587 -1.6562 12.1993 -0.7656 Q11.3399 0.125 9.8712 0.125 Q8.9493 0.125 8.2305 -0.2656 Q7.5274 -0.6719 7.1212 -1.4375 Q6.7149 -2.2031 6.7149 -3.2812 Q6.7149 -4.9219 7.5587 -5.7969 Q8.418 -6.6719 9.9024 -6.6719 Q10.8243 -6.6719 11.5274 -6.2656 Q12.2462 -5.875 12.6524 -5.125 Q13.0587 -4.375 13.0587 -3.2812 ZM8.5274 -3.2812 Q8.5274 -2.3125 8.8399 -1.8125 Q9.168 -1.3125 9.8868 -1.3125 Q10.5899 -1.3125 10.9024 -1.8125 Q11.2305 -2.3125 11.2305 -3.2812 Q11.2305 -4.2656 10.9024 -4.75 Q10.5899 -5.2344 9.8712 -5.2344 Q9.168 -5.2344 8.8399 -4.75 Q8.5274 -4.2656 8.5274 -3.2812 ZM22.2211 -6.6719 Q23.3461 -6.6719 23.9086 -6.0938 Q24.4867 -5.5312 24.4867 -4.2656 L24.4867 0 L22.6898 0 L22.6898 -3.8281 Q22.6898 -5.25 21.7055 -5.25 Q21.0023 -5.25 20.6898 -4.7344 Q20.393 -4.2344 20.393 -3.2812 L20.393 0 L18.6117 0 L18.6117 -3.8281 Q18.6117 -5.25 17.6273 -5.25 Q16.8773 -5.25 16.5961 -4.6875 Q16.3148 -4.125 16.3148 -3.0781 L16.3148 0 L14.5336 0 L14.5336 -6.5469 L15.893 -6.5469 L16.143 -5.7188 L16.2367 -5.7188 Q16.5336 -6.2188 17.0492 -6.4375 Q17.5805 -6.6719 18.143 -6.6719 Q18.8617 -6.6719 19.3617 -6.4375 Q19.8773 -6.2031 20.143 -5.7188 L20.2992 -5.7188 Q20.5961 -6.2188 21.1273 -6.4375 Q21.6586 -6.6719 22.2211 -6.6719 ZM34.0052 -6.6719 Q35.1302 -6.6719 35.6927 -6.0938 Q36.2708 -5.5312 36.2708 -4.2656 L36.2708 0 L34.4739 0 L34.4739 -3.8281 Q34.4739 -5.25 33.4896 -5.25 Q32.7864 -5.25 32.4739 -4.7344 Q32.1771 -4.2344 32.1771 -3.2812 L32.1771 0 L30.3958 0 L30.3958 -3.8281 Q30.3958 -5.25 29.4114 -5.25 Q28.6614 -5.25 28.3802 -4.6875 Q28.0989 -4.125 28.0989 -3.0781 L28.0989 0 L26.3177 0 L26.3177 -6.5469 L27.6771 -6.5469 L27.9271 -5.7188 L28.0208 -5.7188 Q28.3177 -6.2188 28.8333 -6.4375 Q29.3646 -6.6719 29.9271 -6.6719 Q30.6458 -6.6719 31.1458 -6.4375 Q31.6614 -6.2031 31.9271 -5.7188 L32.0833 -5.7188 Q32.3802 -6.2188 32.9114 -6.4375 Q33.4427 -6.6719 34.0052 -6.6719 ZM44.0549 -3.2812 Q44.0549 -1.6562 43.1955 -0.7656 Q42.3362 0.125 40.8674 0.125 Q39.9455 0.125 39.2268 -0.2656 Q38.5237 -0.6719 38.1174 -1.4375 Q37.7112 -2.2031 37.7112 -3.2812 Q37.7112 -4.9219 38.5549 -5.7969 Q39.4143 -6.6719 40.8987 -6.6719 Q41.8205 -6.6719 42.5237 -6.2656 Q43.2424 -5.875 43.6487 -5.125 Q44.0549 -4.375 44.0549 -3.2812 ZM39.5237 -3.2812 Q39.5237 -2.3125 39.8362 -1.8125 Q40.1643 -1.3125 40.883 -1.3125 Q41.5862 -1.3125 41.8987 -1.8125 Q42.2268 -2.3125 42.2268 -3.2812 Q42.2268 -4.2656 41.8987 -4.75 Q41.5862 -5.2344 40.8674 -5.2344 Q40.1643 -5.2344 39.8362 -4.75 Q39.5237 -4.2656 39.5237 -3.2812 ZM49.2486 -6.6719 Q50.3111 -6.6719 50.9361 -6.0938 Q51.5767 -5.5312 51.5767 -4.2656 L51.5767 0 L49.7955 0 L49.7955 -3.8281 Q49.7955 -4.5312 49.5298 -4.8906 Q49.2798 -5.25 48.733 -5.25 Q47.9205 -5.25 47.608 -4.6875 Q47.3111 -4.125 47.3111 -3.0781 L47.3111 0 L45.5298 0 L45.5298 -6.5469 L46.8892 -6.5469 L47.1392 -5.7188 L47.233 -5.7188 Q47.5455 -6.2188 48.0923 -6.4375 Q48.6392 -6.6719 49.2486 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath24);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="525.42" y="-924.1233" width="172.0531" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="525.42" y="-924.1233" width="172.0531" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(535.42,-906.1233)"
+    ><path d="M3.5781 -8.5625 Q5.3281 -8.5625 6.1562 -7.9219 Q7 -7.2969 7 -6 Q7 -5.4062 6.7656 -4.9688 Q6.5469 -4.5312 6.1719 -4.2188 Q5.8125 -3.9219 5.4062 -3.7344 L7.9219 0 L5.9062 0 L3.8594 -3.2812 L2.8906 -3.2812 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L3.5781 -8.5625 ZM3.4375 -7.0781 L2.8906 -7.0781 L2.8906 -4.7656 L3.4844 -4.7656 Q4.375 -4.7656 4.7656 -5.0625 Q5.1562 -5.3594 5.1562 -5.9531 Q5.1562 -6.5625 4.7344 -6.8125 Q4.3281 -7.0781 3.4375 -7.0781 ZM11.5607 -6.6719 Q12.9044 -6.6719 13.7013 -5.8906 Q14.4982 -5.125 14.4982 -3.7031 L14.4982 -2.8281 L10.2794 -2.8281 Q10.2951 -2.0781 10.7169 -1.6406 Q11.1544 -1.2188 11.9044 -1.2188 Q12.5451 -1.2188 13.0607 -1.3438 Q13.5763 -1.4688 14.1232 -1.7344 L14.1232 -0.3438 Q13.6388 -0.1094 13.1076 0 Q12.5763 0.125 11.8263 0.125 Q10.8419 0.125 10.0763 -0.2344 Q9.3263 -0.6094 8.8888 -1.3438 Q8.4669 -2.0938 8.4669 -3.2344 Q8.4669 -4.375 8.8419 -5.1406 Q9.2326 -5.9062 9.9357 -6.2812 Q10.6388 -6.6719 11.5607 -6.6719 ZM11.5607 -5.4062 Q11.0451 -5.4062 10.7013 -5.0625 Q10.3732 -4.7344 10.3107 -4.0156 L12.8107 -4.0156 Q12.8107 -4.625 12.4982 -5.0156 Q12.2013 -5.4062 11.5607 -5.4062 ZM20.5277 -1.9375 Q20.5277 -0.9531 19.8246 -0.4062 Q19.1215 0.125 17.7309 0.125 Q17.0434 0.125 16.5434 0.0312 Q16.059 -0.0625 15.559 -0.2656 L15.559 -1.7344 Q16.0902 -1.5 16.6996 -1.3438 Q17.309 -1.1875 17.7777 -1.1875 Q18.309 -1.1875 18.5277 -1.3438 Q18.7621 -1.5 18.7621 -1.75 Q18.7621 -1.9219 18.6684 -2.0469 Q18.5746 -2.1875 18.2777 -2.3438 Q17.9809 -2.5156 17.3402 -2.7812 Q16.7309 -3.0469 16.3246 -3.2969 Q15.934 -3.5625 15.7465 -3.9219 Q15.559 -4.2969 15.559 -4.8438 Q15.559 -5.7656 16.2621 -6.2188 Q16.9652 -6.6719 18.1371 -6.6719 Q18.7621 -6.6719 19.309 -6.5469 Q19.8559 -6.4375 20.4496 -6.1562 L19.9027 -4.875 Q19.434 -5.0781 18.9965 -5.2188 Q18.559 -5.3594 18.1215 -5.3594 Q17.3246 -5.3594 17.3246 -4.9219 Q17.3246 -4.7656 17.4184 -4.6406 Q17.5277 -4.5156 17.8246 -4.3594 Q18.1215 -4.2188 18.6996 -3.9844 Q19.2621 -3.75 19.6684 -3.5 Q20.0746 -3.2656 20.2934 -2.8906 Q20.5277 -2.5312 20.5277 -1.9375 ZM24.6793 -1.3125 Q24.9762 -1.3125 25.2418 -1.3594 Q25.523 -1.4219 25.8043 -1.5156 L25.8043 -0.1875 Q25.5074 -0.0625 25.0855 0.0312 Q24.6637 0.125 24.1637 0.125 Q23.5699 0.125 23.1012 -0.0625 Q22.648 -0.2656 22.3668 -0.7344 Q22.1012 -1.2188 22.1012 -2.0469 L22.1012 -5.2031 L21.2574 -5.2031 L21.2574 -5.9688 L22.2418 -6.5625 L22.7574 -7.9375 L23.898 -7.9375 L23.898 -6.5469 L25.7262 -6.5469 L25.7262 -5.2031 L23.898 -5.2031 L23.898 -2.0469 Q23.898 -1.6875 24.1012 -1.5 Q24.3199 -1.3125 24.6793 -1.3125 ZM30.5592 0 L28.7467 0 L28.7467 -7.0625 L26.4186 -7.0625 L26.4186 -8.5625 L32.8873 -8.5625 L32.8873 -7.0625 L30.5592 -7.0625 L30.5592 0 ZM36.7729 -6.6719 Q38.1166 -6.6719 38.9135 -5.8906 Q39.7104 -5.125 39.7104 -3.7031 L39.7104 -2.8281 L35.4916 -2.8281 Q35.5072 -2.0781 35.9291 -1.6406 Q36.3666 -1.2188 37.1166 -1.2188 Q37.7572 -1.2188 38.2729 -1.3438 Q38.7885 -1.4688 39.3354 -1.7344 L39.3354 -0.3438 Q38.851 -0.1094 38.3197 0 Q37.7885 0.125 37.0385 0.125 Q36.0541 0.125 35.2885 -0.2344 Q34.5385 -0.6094 34.101 -1.3438 Q33.6791 -2.0938 33.6791 -3.2344 Q33.6791 -4.375 34.0541 -5.1406 Q34.4447 -5.9062 35.1479 -6.2812 Q35.851 -6.6719 36.7729 -6.6719 ZM36.7729 -5.4062 Q36.2572 -5.4062 35.9135 -5.0625 Q35.5854 -4.7344 35.5229 -4.0156 L38.0229 -4.0156 Q38.0229 -4.625 37.7104 -5.0156 Q37.4135 -5.4062 36.7729 -5.4062 ZM48.8493 -6.6719 Q49.9743 -6.6719 50.5368 -6.0938 Q51.1149 -5.5312 51.1149 -4.2656 L51.1149 0 L49.318 0 L49.318 -3.8281 Q49.318 -5.25 48.3337 -5.25 Q47.6305 -5.25 47.318 -4.7344 Q47.0212 -4.2344 47.0212 -3.2812 L47.0212 0 L45.2399 0 L45.2399 -3.8281 Q45.2399 -5.25 44.2555 -5.25 Q43.5055 -5.25 43.2243 -4.6875 Q42.943 -4.125 42.943 -3.0781 L42.943 0 L41.1618 0 L41.1618 -6.5469 L42.5212 -6.5469 L42.7712 -5.7188 L42.8649 -5.7188 Q43.1618 -6.2188 43.6774 -6.4375 Q44.2087 -6.6719 44.7712 -6.6719 Q45.4899 -6.6719 45.9899 -6.4375 Q46.5055 -6.2031 46.7712 -5.7188 L46.9274 -5.7188 Q47.2243 -6.2188 47.7555 -6.4375 Q48.2868 -6.6719 48.8493 -6.6719 ZM56.5865 -6.6719 Q57.6959 -6.6719 58.3834 -5.8125 Q59.0709 -4.9531 59.0709 -3.2812 Q59.0709 -1.625 58.3521 -0.75 Q57.649 0.125 56.5396 0.125 Q55.8365 0.125 55.4146 -0.125 Q54.9928 -0.3906 54.7271 -0.7188 L54.6334 -0.7188 Q54.7271 -0.2188 54.7271 0.2344 L54.7271 2.875 L52.9459 2.875 L52.9459 -6.5469 L54.399 -6.5469 L54.649 -5.7031 L54.7271 -5.7031 Q54.9928 -6.0938 55.4303 -6.375 Q55.8834 -6.6719 56.5865 -6.6719 ZM56.024 -5.25 Q55.3209 -5.25 55.0396 -4.8125 Q54.7584 -4.375 54.7271 -3.4844 L54.7271 -3.2969 Q54.7271 -2.3594 55.0084 -1.8438 Q55.2896 -1.3281 56.0396 -1.3281 Q56.649 -1.3281 56.9459 -1.8438 Q57.2428 -2.3594 57.2428 -3.3125 Q57.2428 -5.25 56.024 -5.25 ZM62.3232 0 L60.5419 0 L60.5419 -9.125 L62.3232 -9.125 L62.3232 0 ZM66.8895 -6.6875 Q68.202 -6.6875 68.9051 -6.1094 Q69.6082 -5.5469 69.6082 -4.375 L69.6082 0 L68.3582 0 L68.0145 -0.8906 L67.9676 -0.8906 Q67.5457 -0.3594 67.077 -0.1094 Q66.6082 0.125 65.7957 0.125 Q64.9207 0.125 64.3426 -0.3906 Q63.7645 -0.9062 63.7645 -1.9531 Q63.7645 -3 64.4988 -3.5 Q65.2332 -4 66.702 -4.0469 L67.8426 -4.0781 L67.8426 -4.375 Q67.8426 -4.8906 67.5613 -5.125 Q67.2957 -5.3594 66.8113 -5.3594 Q66.3426 -5.3594 65.8738 -5.2188 Q65.4207 -5.0938 64.9676 -4.8906 L64.3738 -6.0938 Q64.9051 -6.375 65.5457 -6.5312 Q66.1863 -6.6875 66.8895 -6.6875 ZM67.1395 -3.0156 Q66.2801 -2.9844 65.9363 -2.6875 Q65.6082 -2.4062 65.6082 -1.9375 Q65.6082 -1.5312 65.8426 -1.3594 Q66.077 -1.1875 66.4676 -1.1875 Q67.0457 -1.1875 67.4363 -1.5312 Q67.8426 -1.875 67.8426 -2.5 L67.8426 -3.0312 L67.1395 -3.0156 ZM74.2156 -1.3125 Q74.5125 -1.3125 74.7781 -1.3594 Q75.0594 -1.4219 75.3406 -1.5156 L75.3406 -0.1875 Q75.0437 -0.0625 74.6219 0.0312 Q74.2 0.125 73.7 0.125 Q73.1062 0.125 72.6375 -0.0625 Q72.1844 -0.2656 71.9031 -0.7344 Q71.6375 -1.2188 71.6375 -2.0469 L71.6375 -5.2031 L70.7937 -5.2031 L70.7937 -5.9688 L71.7781 -6.5625 L72.2937 -7.9375 L73.4344 -7.9375 L73.4344 -6.5469 L75.2625 -6.5469 L75.2625 -5.2031 L73.4344 -5.2031 L73.4344 -2.0469 Q73.4344 -1.6875 73.6375 -1.5 Q73.8562 -1.3125 74.2156 -1.3125 ZM79.3612 -6.6719 Q80.7049 -6.6719 81.5018 -5.8906 Q82.2987 -5.125 82.2987 -3.7031 L82.2987 -2.8281 L78.0799 -2.8281 Q78.0955 -2.0781 78.5174 -1.6406 Q78.9549 -1.2188 79.7049 -1.2188 Q80.3455 -1.2188 80.8612 -1.3438 Q81.3768 -1.4688 81.9237 -1.7344 L81.9237 -0.3438 Q81.4393 -0.1094 80.908 0 Q80.3768 0.125 79.6268 0.125 Q78.6424 0.125 77.8768 -0.2344 Q77.1268 -0.6094 76.6893 -1.3438 Q76.2674 -2.0938 76.2674 -3.2344 Q76.2674 -4.375 76.6424 -5.1406 Q77.033 -5.9062 77.7362 -6.2812 Q78.4393 -6.6719 79.3612 -6.6719 ZM79.3612 -5.4062 Q78.8455 -5.4062 78.5018 -5.0625 Q78.1737 -4.7344 78.1112 -4.0156 L80.6112 -4.0156 Q80.6112 -4.625 80.2987 -5.0156 Q80.0018 -5.4062 79.3612 -5.4062 ZM87.0938 0 L83.2032 0 L83.2032 -1.0312 L84.2345 -1.5156 L84.2345 -7.0625 L83.2032 -7.5312 L83.2032 -8.5625 L87.0938 -8.5625 L87.0938 -7.5312 L86.047 -7.0625 L86.047 -1.5156 L87.0938 -1.0312 L87.0938 0 ZM92.1369 -6.6719 Q93.1994 -6.6719 93.8244 -6.0938 Q94.465 -5.5312 94.465 -4.2656 L94.465 0 L92.6837 0 L92.6837 -3.8281 Q92.6837 -4.5312 92.4181 -4.8906 Q92.1681 -5.25 91.6212 -5.25 Q90.8087 -5.25 90.4962 -4.6875 Q90.1994 -4.125 90.1994 -3.0781 L90.1994 0 L88.4181 0 L88.4181 -6.5469 L89.7775 -6.5469 L90.0275 -5.7188 L90.1212 -5.7188 Q90.4337 -6.2188 90.9806 -6.4375 Q91.5275 -6.6719 92.1369 -6.6719 ZM99.0678 -1.3125 Q99.3647 -1.3125 99.6303 -1.3594 Q99.9115 -1.4219 100.1928 -1.5156 L100.1928 -0.1875 Q99.8959 -0.0625 99.474 0.0312 Q99.0522 0.125 98.5522 0.125 Q97.9584 0.125 97.4897 -0.0625 Q97.0365 -0.2656 96.7553 -0.7344 Q96.4897 -1.2188 96.4897 -2.0469 L96.4897 -5.2031 L95.6459 -5.2031 L95.6459 -5.9688 L96.6303 -6.5625 L97.1459 -7.9375 L98.2865 -7.9375 L98.2865 -6.5469 L100.1147 -6.5469 L100.1147 -5.2031 L98.2865 -5.2031 L98.2865 -2.0469 Q98.2865 -1.6875 98.4897 -1.5 Q98.7084 -1.3125 99.0678 -1.3125 ZM104.2133 -6.6719 Q105.5571 -6.6719 106.354 -5.8906 Q107.1508 -5.125 107.1508 -3.7031 L107.1508 -2.8281 L102.9321 -2.8281 Q102.9477 -2.0781 103.3696 -1.6406 Q103.8071 -1.2188 104.5571 -1.2188 Q105.1977 -1.2188 105.7133 -1.3438 Q106.229 -1.4688 106.7758 -1.7344 L106.7758 -0.3438 Q106.2915 -0.1094 105.7602 0 Q105.229 0.125 104.479 0.125 Q103.4946 0.125 102.729 -0.2344 Q101.979 -0.6094 101.5415 -1.3438 Q101.1196 -2.0938 101.1196 -3.2344 Q101.1196 -4.375 101.4946 -5.1406 Q101.8852 -5.9062 102.5883 -6.2812 Q103.2915 -6.6719 104.2133 -6.6719 ZM104.2133 -5.4062 Q103.6977 -5.4062 103.354 -5.0625 Q103.0258 -4.7344 102.9633 -4.0156 L105.4633 -4.0156 Q105.4633 -4.625 105.1508 -5.0156 Q104.854 -5.4062 104.2133 -5.4062 ZM112.2585 -6.6719 Q112.3991 -6.6719 112.571 -6.6562 Q112.7585 -6.6406 112.8679 -6.625 L112.7273 -4.9375 Q112.6491 -4.9688 112.4773 -4.9844 Q112.321 -5 112.196 -5 Q111.7429 -5 111.321 -4.8438 Q110.8991 -4.6875 110.6335 -4.3125 Q110.3835 -3.9531 110.3835 -3.3438 L110.3835 0 L108.6023 0 L108.6023 -6.5469 L109.9616 -6.5469 L110.2273 -5.4531 L110.3054 -5.4531 Q110.5866 -5.9531 111.0866 -6.3125 Q111.6023 -6.6719 112.2585 -6.6719 ZM116.7066 0.125 Q115.2534 0.125 114.4566 -0.6875 Q113.6597 -1.5 113.6597 -3.2344 Q113.6597 -4.4375 114.0659 -5.1875 Q114.4722 -5.9531 115.1909 -6.3125 Q115.9253 -6.6719 116.8628 -6.6719 Q117.5347 -6.6719 118.0347 -6.5312 Q118.5347 -6.4062 118.9097 -6.2344 L118.3784 -4.8438 Q117.9566 -5.0156 117.5816 -5.125 Q117.2222 -5.2344 116.8628 -5.2344 Q115.4722 -5.2344 115.4722 -3.25 Q115.4722 -2.2656 115.8316 -1.7969 Q116.2066 -1.3281 116.8628 -1.3281 Q117.4253 -1.3281 117.8628 -1.4688 Q118.3003 -1.625 118.7066 -1.8906 L118.7066 -0.375 Q118.3003 -0.1094 117.8472 0 Q117.3941 0.125 116.7066 0.125 ZM122.9215 -6.6719 Q124.2652 -6.6719 125.0621 -5.8906 Q125.859 -5.125 125.859 -3.7031 L125.859 -2.8281 L121.6402 -2.8281 Q121.6559 -2.0781 122.0777 -1.6406 Q122.5152 -1.2188 123.2652 -1.2188 Q123.9059 -1.2188 124.4215 -1.3438 Q124.9371 -1.4688 125.484 -1.7344 L125.484 -0.3438 Q124.9996 -0.1094 124.4684 0 Q123.9371 0.125 123.1871 0.125 Q122.2027 0.125 121.4371 -0.2344 Q120.6871 -0.6094 120.2496 -1.3438 Q119.8277 -2.0938 119.8277 -3.2344 Q119.8277 -4.375 120.2027 -5.1406 Q120.5934 -5.9062 121.2965 -6.2812 Q121.9996 -6.6719 122.9215 -6.6719 ZM122.9215 -5.4062 Q122.4059 -5.4062 122.0621 -5.0625 Q121.734 -4.7344 121.6715 -4.0156 L124.1715 -4.0156 Q124.1715 -4.625 123.859 -5.0156 Q123.5621 -5.4062 122.9215 -5.4062 ZM130.951 -6.6719 Q132.0604 -6.6719 132.7479 -5.8125 Q133.4354 -4.9531 133.4354 -3.2812 Q133.4354 -1.625 132.7167 -0.75 Q132.0135 0.125 130.9042 0.125 Q130.201 0.125 129.7792 -0.125 Q129.3573 -0.3906 129.0917 -0.7188 L128.9979 -0.7188 Q129.0917 -0.2188 129.0917 0.2344 L129.0917 2.875 L127.3104 2.875 L127.3104 -6.5469 L128.7635 -6.5469 L129.0135 -5.7031 L129.0917 -5.7031 Q129.3573 -6.0938 129.7948 -6.375 Q130.2479 -6.6719 130.951 -6.6719 ZM130.3885 -5.25 Q129.6854 -5.25 129.4042 -4.8125 Q129.1229 -4.375 129.0917 -3.4844 L129.0917 -3.2969 Q129.0917 -2.3594 129.3729 -1.8438 Q129.6542 -1.3281 130.4042 -1.3281 Q131.0135 -1.3281 131.3104 -1.8438 Q131.6073 -2.3594 131.6073 -3.3125 Q131.6073 -5.25 130.3885 -5.25 ZM137.6721 -1.3125 Q137.969 -1.3125 138.2346 -1.3594 Q138.5158 -1.4219 138.7971 -1.5156 L138.7971 -0.1875 Q138.5002 -0.0625 138.0783 0.0312 Q137.6565 0.125 137.1565 0.125 Q136.5627 0.125 136.094 -0.0625 Q135.6408 -0.2656 135.3596 -0.7344 Q135.094 -1.2188 135.094 -2.0469 L135.094 -5.2031 L134.2502 -5.2031 L134.2502 -5.9688 L135.2346 -6.5625 L135.7502 -7.9375 L136.8908 -7.9375 L136.8908 -6.5469 L138.719 -6.5469 L138.719 -5.2031 L136.8908 -5.2031 L136.8908 -2.0469 Q136.8908 -1.6875 137.094 -1.5 Q137.3127 -1.3125 137.6721 -1.3125 ZM146.0676 -3.2812 Q146.0676 -1.6562 145.2083 -0.7656 Q144.3489 0.125 142.8801 0.125 Q141.9583 0.125 141.2395 -0.2656 Q140.5364 -0.6719 140.1301 -1.4375 Q139.7239 -2.2031 139.7239 -3.2812 Q139.7239 -4.9219 140.5676 -5.7969 Q141.427 -6.6719 142.9114 -6.6719 Q143.8333 -6.6719 144.5364 -6.2656 Q145.2551 -5.875 145.6614 -5.125 Q146.0676 -4.375 146.0676 -3.2812 ZM141.5364 -3.2812 Q141.5364 -2.3125 141.8489 -1.8125 Q142.177 -1.3125 142.8958 -1.3125 Q143.5989 -1.3125 143.9114 -1.8125 Q144.2395 -2.3125 144.2395 -3.2812 Q144.2395 -4.2656 143.9114 -4.75 Q143.5989 -5.2344 142.8801 -5.2344 Q142.177 -5.2344 141.8489 -4.75 Q141.5364 -4.2656 141.5364 -3.2812 ZM151.1988 -6.6719 Q151.3394 -6.6719 151.5113 -6.6562 Q151.6988 -6.6406 151.8082 -6.625 L151.6676 -4.9375 Q151.5894 -4.9688 151.4176 -4.9844 Q151.2613 -5 151.1363 -5 Q150.6832 -5 150.2613 -4.8438 Q149.8394 -4.6875 149.5738 -4.3125 Q149.3238 -3.9531 149.3238 -3.3438 L149.3238 0 L147.5426 0 L147.5426 -6.5469 L148.9019 -6.5469 L149.1676 -5.4531 L149.2457 -5.4531 Q149.5269 -5.9531 150.0269 -6.3125 Q150.5426 -6.6719 151.1988 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath25);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-4.7071" y="-685.6905" width="324.6512" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-4.7071" y="-685.6905" width="324.6512" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-4.7071" y="-670.6905" width="811.6279" style="clip-path:url(#clipPath2); stroke:none;" height="510.5814"
+      /><rect x="-4.7071" y="-670.6905" width="811.6279" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="510.5814"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(376.9987,-651.6905)"
+    ><path d="M5.5156 -1.9375 Q5.5156 -0.9531 4.8125 -0.4062 Q4.1094 0.125 2.7188 0.125 Q2.0312 0.125 1.5312 0.0312 Q1.0469 -0.0625 0.5469 -0.2656 L0.5469 -1.7344 Q1.0781 -1.5 1.6875 -1.3438 Q2.2969 -1.1875 2.7656 -1.1875 Q3.2969 -1.1875 3.5156 -1.3438 Q3.75 -1.5 3.75 -1.75 Q3.75 -1.9219 3.6562 -2.0469 Q3.5625 -2.1875 3.2656 -2.3438 Q2.9688 -2.5156 2.3281 -2.7812 Q1.7188 -3.0469 1.3125 -3.2969 Q0.9219 -3.5625 0.7344 -3.9219 Q0.5469 -4.2969 0.5469 -4.8438 Q0.5469 -5.7656 1.25 -6.2188 Q1.9531 -6.6719 3.125 -6.6719 Q3.75 -6.6719 4.2969 -6.5469 Q4.8438 -6.4375 5.4375 -6.1562 L4.8906 -4.875 Q4.4219 -5.0781 3.9844 -5.2188 Q3.5469 -5.3594 3.1094 -5.3594 Q2.3125 -5.3594 2.3125 -4.9219 Q2.3125 -4.7656 2.4062 -4.6406 Q2.5156 -4.5156 2.8125 -4.3594 Q3.1094 -4.2188 3.6875 -3.9844 Q4.25 -3.75 4.6562 -3.5 Q5.0625 -3.2656 5.2812 -2.8906 Q5.5156 -2.5312 5.5156 -1.9375 ZM9.6047 -6.6719 Q10.9484 -6.6719 11.7453 -5.8906 Q12.5422 -5.125 12.5422 -3.7031 L12.5422 -2.8281 L8.3234 -2.8281 Q8.339 -2.0781 8.7609 -1.6406 Q9.1984 -1.2188 9.9484 -1.2188 Q10.589 -1.2188 11.1047 -1.3438 Q11.6203 -1.4688 12.1672 -1.7344 L12.1672 -0.3438 Q11.6828 -0.1094 11.1515 0 Q10.6203 0.125 9.8703 0.125 Q8.8859 0.125 8.1203 -0.2344 Q7.3703 -0.6094 6.9328 -1.3438 Q6.5109 -2.0938 6.5109 -3.2344 Q6.5109 -4.375 6.8859 -5.1406 Q7.2765 -5.9062 7.9797 -6.2812 Q8.6828 -6.6719 9.6047 -6.6719 ZM9.6047 -5.4062 Q9.089 -5.4062 8.7453 -5.0625 Q8.4172 -4.7344 8.3547 -4.0156 L10.8547 -4.0156 Q10.8547 -4.625 10.5422 -5.0156 Q10.2453 -5.4062 9.6047 -5.4062 ZM17.6498 -6.6719 Q17.7905 -6.6719 17.9623 -6.6562 Q18.1498 -6.6406 18.2592 -6.625 L18.1186 -4.9375 Q18.0405 -4.9688 17.8686 -4.9844 Q17.7123 -5 17.5873 -5 Q17.1342 -5 16.7123 -4.8438 Q16.2905 -4.6875 16.0248 -4.3125 Q15.7748 -3.9531 15.7748 -3.3438 L15.7748 0 L13.9936 0 L13.9936 -6.5469 L15.353 -6.5469 L15.6186 -5.4531 L15.6967 -5.4531 Q15.978 -5.9531 16.478 -6.3125 Q16.9936 -6.6719 17.6498 -6.6719 ZM21.0041 0 L18.5041 -6.5469 L20.3791 -6.5469 L21.6291 -2.8125 Q21.7385 -2.4844 21.801 -2.125 Q21.8791 -1.7656 21.8948 -1.4688 L21.9416 -1.4688 Q21.9729 -2.125 22.2073 -2.8125 L23.4573 -6.5469 L25.3323 -6.5469 L22.8323 0 L21.0041 0 ZM27.1759 -9.125 Q27.5666 -9.125 27.8478 -8.9375 Q28.1447 -8.75 28.1447 -8.25 Q28.1447 -7.75 27.8478 -7.5625 Q27.5666 -7.375 27.1759 -7.375 Q26.7541 -7.375 26.4728 -7.5625 Q26.1916 -7.75 26.1916 -8.25 Q26.1916 -8.75 26.4728 -8.9375 Q26.7541 -9.125 27.1759 -9.125 ZM28.0509 -6.5469 L28.0509 0 L26.2697 0 L26.2697 -6.5469 L28.0509 -6.5469 ZM32.586 0.125 Q31.1328 0.125 30.336 -0.6875 Q29.5391 -1.5 29.5391 -3.2344 Q29.5391 -4.4375 29.9453 -5.1875 Q30.3516 -5.9531 31.0703 -6.3125 Q31.8047 -6.6719 32.7422 -6.6719 Q33.4141 -6.6719 33.9141 -6.5312 Q34.4141 -6.4062 34.7891 -6.2344 L34.2578 -4.8438 Q33.836 -5.0156 33.461 -5.125 Q33.1016 -5.2344 32.7422 -5.2344 Q31.3516 -5.2344 31.3516 -3.25 Q31.3516 -2.2656 31.711 -1.7969 Q32.086 -1.3281 32.7422 -1.3281 Q33.3047 -1.3281 33.7422 -1.4688 Q34.1797 -1.625 34.586 -1.8906 L34.586 -0.375 Q34.1797 -0.1094 33.7266 0 Q33.2735 0.125 32.586 0.125 ZM38.8009 -6.6719 Q40.1446 -6.6719 40.9415 -5.8906 Q41.7384 -5.125 41.7384 -3.7031 L41.7384 -2.8281 L37.5196 -2.8281 Q37.5352 -2.0781 37.9571 -1.6406 Q38.3946 -1.2188 39.1446 -1.2188 Q39.7852 -1.2188 40.3009 -1.3438 Q40.8165 -1.4688 41.3634 -1.7344 L41.3634 -0.3438 Q40.879 -0.1094 40.3477 0 Q39.8165 0.125 39.0665 0.125 Q38.0821 0.125 37.3165 -0.2344 Q36.5665 -0.6094 36.129 -1.3438 Q35.7071 -2.0938 35.7071 -3.2344 Q35.7071 -4.375 36.0821 -5.1406 Q36.4727 -5.9062 37.1759 -6.2812 Q37.879 -6.6719 38.8009 -6.6719 ZM38.8009 -5.4062 Q38.2852 -5.4062 37.9415 -5.0625 Q37.6134 -4.7344 37.5509 -4.0156 L40.0509 -4.0156 Q40.0509 -4.625 39.7384 -5.0156 Q39.4415 -5.4062 38.8009 -5.4062 ZM47.7679 -1.9375 Q47.7679 -0.9531 47.0648 -0.4062 Q46.3617 0.125 44.9711 0.125 Q44.2836 0.125 43.7836 0.0312 Q43.2992 -0.0625 42.7992 -0.2656 L42.7992 -1.7344 Q43.3304 -1.5 43.9398 -1.3438 Q44.5492 -1.1875 45.0179 -1.1875 Q45.5492 -1.1875 45.7679 -1.3438 Q46.0023 -1.5 46.0023 -1.75 Q46.0023 -1.9219 45.9086 -2.0469 Q45.8148 -2.1875 45.5179 -2.3438 Q45.2211 -2.5156 44.5804 -2.7812 Q43.9711 -3.0469 43.5648 -3.2969 Q43.1742 -3.5625 42.9867 -3.9219 Q42.7992 -4.2969 42.7992 -4.8438 Q42.7992 -5.7656 43.5023 -6.2188 Q44.2054 -6.6719 45.3773 -6.6719 Q46.0023 -6.6719 46.5492 -6.5469 Q47.0961 -6.4375 47.6898 -6.1562 L47.1429 -4.875 Q46.6742 -5.0781 46.2367 -5.2188 Q45.7992 -5.3594 45.3617 -5.3594 Q44.5648 -5.3594 44.5648 -4.9219 Q44.5648 -4.7656 44.6586 -4.6406 Q44.7679 -4.5156 45.0648 -4.3594 Q45.3617 -4.2188 45.9398 -3.9844 Q46.5023 -3.75 46.9086 -3.5 Q47.3148 -3.2656 47.5336 -2.8906 Q47.7679 -2.5312 47.7679 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath26);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-693.9932" y="-1146.8191" width="134.4196" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-693.9932" y="-1146.8191" width="134.4196" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-693.9932" y="-1131.8191" width="336.0491" style="clip-path:url(#clipPath2); stroke:none;" height="251.4815"
+      /><rect x="-693.9932" y="-1131.8191" width="336.0491" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="251.4815"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-558.4829,-1112.8191)"
+    ><path d="M3.6406 -6.6719 Q4.9844 -6.6719 5.7812 -5.8906 Q6.5781 -5.125 6.5781 -3.7031 L6.5781 -2.8281 L2.3594 -2.8281 Q2.375 -2.0781 2.7969 -1.6406 Q3.2344 -1.2188 3.9844 -1.2188 Q4.625 -1.2188 5.1406 -1.3438 Q5.6562 -1.4688 6.2031 -1.7344 L6.2031 -0.3438 Q5.7188 -0.1094 5.1875 0 Q4.6562 0.125 3.9062 0.125 Q2.9219 0.125 2.1562 -0.2344 Q1.4062 -0.6094 0.9688 -1.3438 Q0.5469 -2.0938 0.5469 -3.2344 Q0.5469 -4.375 0.9219 -5.1406 Q1.3125 -5.9062 2.0156 -6.2812 Q2.7188 -6.6719 3.6406 -6.6719 ZM3.6406 -5.4062 Q3.125 -5.4062 2.7812 -5.0625 Q2.4531 -4.7344 2.3906 -4.0156 L4.8906 -4.0156 Q4.8906 -4.625 4.5781 -5.0156 Q4.2812 -5.4062 3.6406 -5.4062 ZM9.3733 -3.3438 L7.2639 -6.5469 L9.2952 -6.5469 L10.5608 -4.4688 L11.8421 -6.5469 L13.8733 -6.5469 L11.7327 -3.3438 L13.9671 0 L11.9358 0 L10.5608 -2.25 L9.1858 0 L7.1546 0 L9.3733 -3.3438 ZM17.6219 0.125 Q16.1687 0.125 15.3719 -0.6875 Q14.575 -1.5 14.575 -3.2344 Q14.575 -4.4375 14.9812 -5.1875 Q15.3875 -5.9531 16.1062 -6.3125 Q16.8406 -6.6719 17.7781 -6.6719 Q18.45 -6.6719 18.95 -6.5312 Q19.45 -6.4062 19.825 -6.2344 L19.2937 -4.8438 Q18.8719 -5.0156 18.4969 -5.125 Q18.1375 -5.2344 17.7781 -5.2344 Q16.3875 -5.2344 16.3875 -3.25 Q16.3875 -2.2656 16.7469 -1.7969 Q17.1219 -1.3281 17.7781 -1.3281 Q18.3406 -1.3281 18.7781 -1.4688 Q19.2156 -1.625 19.6219 -1.8906 L19.6219 -0.375 Q19.2156 -0.1094 18.7625 0 Q18.3094 0.125 17.6219 0.125 ZM23.8368 -6.6719 Q25.1805 -6.6719 25.9774 -5.8906 Q26.7743 -5.125 26.7743 -3.7031 L26.7743 -2.8281 L22.5555 -2.8281 Q22.5712 -2.0781 22.993 -1.6406 Q23.4305 -1.2188 24.1805 -1.2188 Q24.8212 -1.2188 25.3368 -1.3438 Q25.8524 -1.4688 26.3993 -1.7344 L26.3993 -0.3438 Q25.9149 -0.1094 25.3837 0 Q24.8524 0.125 24.1024 0.125 Q23.118 0.125 22.3524 -0.2344 Q21.6024 -0.6094 21.1649 -1.3438 Q20.743 -2.0938 20.743 -3.2344 Q20.743 -4.375 21.118 -5.1406 Q21.5087 -5.9062 22.2118 -6.2812 Q22.9149 -6.6719 23.8368 -6.6719 ZM23.8368 -5.4062 Q23.3212 -5.4062 22.9774 -5.0625 Q22.6493 -4.7344 22.5868 -4.0156 L25.0868 -4.0156 Q25.0868 -4.625 24.7743 -5.0156 Q24.4774 -5.4062 23.8368 -5.4062 ZM31.8663 -6.6719 Q32.9757 -6.6719 33.6632 -5.8125 Q34.3507 -4.9531 34.3507 -3.2812 Q34.3507 -1.625 33.632 -0.75 Q32.9288 0.125 31.8195 0.125 Q31.1163 0.125 30.6945 -0.125 Q30.2726 -0.3906 30.007 -0.7188 L29.9132 -0.7188 Q30.007 -0.2188 30.007 0.2344 L30.007 2.875 L28.2257 2.875 L28.2257 -6.5469 L29.6788 -6.5469 L29.9288 -5.7031 L30.007 -5.7031 Q30.2726 -6.0938 30.7101 -6.375 Q31.1632 -6.6719 31.8663 -6.6719 ZM31.3038 -5.25 Q30.6007 -5.25 30.3195 -4.8125 Q30.0382 -4.375 30.007 -3.4844 L30.007 -3.2969 Q30.007 -2.3594 30.2882 -1.8438 Q30.5695 -1.3281 31.3195 -1.3281 Q31.9288 -1.3281 32.2257 -1.8438 Q32.5226 -2.3594 32.5226 -3.3125 Q32.5226 -5.25 31.3038 -5.25 ZM38.5874 -1.3125 Q38.8843 -1.3125 39.1499 -1.3594 Q39.4311 -1.4219 39.7124 -1.5156 L39.7124 -0.1875 Q39.4155 -0.0625 38.9936 0.0312 Q38.5718 0.125 38.0718 0.125 Q37.478 0.125 37.0093 -0.0625 Q36.5561 -0.2656 36.2749 -0.7344 Q36.0093 -1.2188 36.0093 -2.0469 L36.0093 -5.2031 L35.1655 -5.2031 L35.1655 -5.9688 L36.1499 -6.5625 L36.6655 -7.9375 L37.8061 -7.9375 L37.8061 -6.5469 L39.6343 -6.5469 L39.6343 -5.2031 L37.8061 -5.2031 L37.8061 -2.0469 Q37.8061 -1.6875 38.0093 -1.5 Q38.228 -1.3125 38.5874 -1.3125 ZM41.9361 -9.125 Q42.3267 -9.125 42.6079 -8.9375 Q42.9048 -8.75 42.9048 -8.25 Q42.9048 -7.75 42.6079 -7.5625 Q42.3267 -7.375 41.9361 -7.375 Q41.5142 -7.375 41.2329 -7.5625 Q40.9517 -7.75 40.9517 -8.25 Q40.9517 -8.75 41.2329 -8.9375 Q41.5142 -9.125 41.9361 -9.125 ZM42.8111 -6.5469 L42.8111 0 L41.0298 0 L41.0298 -6.5469 L42.8111 -6.5469 ZM50.6429 -3.2812 Q50.6429 -1.6562 49.7836 -0.7656 Q48.9242 0.125 47.4554 0.125 Q46.5336 0.125 45.8148 -0.2656 Q45.1117 -0.6719 44.7054 -1.4375 Q44.2992 -2.2031 44.2992 -3.2812 Q44.2992 -4.9219 45.1429 -5.7969 Q46.0023 -6.6719 47.4867 -6.6719 Q48.4086 -6.6719 49.1117 -6.2656 Q49.8304 -5.875 50.2367 -5.125 Q50.6429 -4.375 50.6429 -3.2812 ZM46.1117 -3.2812 Q46.1117 -2.3125 46.4242 -1.8125 Q46.7523 -1.3125 47.4711 -1.3125 Q48.1742 -1.3125 48.4867 -1.8125 Q48.8148 -2.3125 48.8148 -3.2812 Q48.8148 -4.2656 48.4867 -4.75 Q48.1742 -5.2344 47.4554 -5.2344 Q46.7523 -5.2344 46.4242 -4.75 Q46.1117 -4.2656 46.1117 -3.2812 ZM55.8366 -6.6719 Q56.8991 -6.6719 57.5241 -6.0938 Q58.1647 -5.5312 58.1647 -4.2656 L58.1647 0 L56.3835 0 L56.3835 -3.8281 Q56.3835 -4.5312 56.1179 -4.8906 Q55.8679 -5.25 55.321 -5.25 Q54.5085 -5.25 54.196 -4.6875 Q53.8991 -4.125 53.8991 -3.0781 L53.8991 0 L52.1179 0 L52.1179 -6.5469 L53.4772 -6.5469 L53.7272 -5.7188 L53.821 -5.7188 Q54.1335 -6.2188 54.6804 -6.4375 Q55.2272 -6.6719 55.8366 -6.6719 ZM64.58 -1.9375 Q64.58 -0.9531 63.8769 -0.4062 Q63.1738 0.125 61.7832 0.125 Q61.0957 0.125 60.5957 0.0312 Q60.1113 -0.0625 59.6113 -0.2656 L59.6113 -1.7344 Q60.1425 -1.5 60.7519 -1.3438 Q61.3613 -1.1875 61.83 -1.1875 Q62.3613 -1.1875 62.58 -1.3438 Q62.8144 -1.5 62.8144 -1.75 Q62.8144 -1.9219 62.7207 -2.0469 Q62.6269 -2.1875 62.33 -2.3438 Q62.0332 -2.5156 61.3925 -2.7812 Q60.7832 -3.0469 60.3769 -3.2969 Q59.9863 -3.5625 59.7988 -3.9219 Q59.6113 -4.2969 59.6113 -4.8438 Q59.6113 -5.7656 60.3144 -6.2188 Q61.0175 -6.6719 62.1894 -6.6719 Q62.8144 -6.6719 63.3613 -6.5469 Q63.9082 -6.4375 64.5019 -6.1562 L63.955 -4.875 Q63.4863 -5.0781 63.0488 -5.2188 Q62.6113 -5.3594 62.1738 -5.3594 Q61.3769 -5.3594 61.3769 -4.9219 Q61.3769 -4.7656 61.4707 -4.6406 Q61.58 -4.5156 61.8769 -4.3594 Q62.1738 -4.2188 62.7519 -3.9844 Q63.3144 -3.75 63.7207 -3.5 Q64.1269 -3.2656 64.3457 -2.8906 Q64.58 -2.5312 64.58 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath27);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="103.1412" y="-419.7164" width="90.4765" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="103.1412" y="-419.7164" width="90.4765" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(113.1412,-401.7164)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM33.7012 -2.375 Q33.7012 -1.2344 32.8731 -0.5469 Q32.0606 0.125 30.545 0.125 Q29.2012 0.125 28.1231 -0.3906 L28.1231 -2.0938 Q28.7325 -1.8281 29.3887 -1.5938 Q30.045 -1.375 30.7012 -1.375 Q31.3731 -1.375 31.6543 -1.625 Q31.9356 -1.8906 31.9356 -2.2969 Q31.9356 -2.6094 31.7012 -2.8438 Q31.4825 -3.0781 31.1075 -3.2656 Q30.7481 -3.4688 30.2637 -3.7031 Q29.9668 -3.8438 29.6075 -4.0312 Q29.2637 -4.2344 28.9512 -4.5312 Q28.6387 -4.8281 28.42 -5.2344 Q28.2168 -5.6562 28.2168 -6.25 Q28.2168 -7.4062 28.9981 -8.0469 Q29.7793 -8.6875 31.1231 -8.6875 Q31.795 -8.6875 32.4043 -8.5312 Q33.0137 -8.375 33.67 -8.0938 L33.0918 -6.6719 Q32.4981 -6.9062 32.0293 -7.0312 Q31.5606 -7.1719 31.0606 -7.1719 Q30.545 -7.1719 30.2637 -6.9375 Q29.9981 -6.7031 29.9981 -6.3125 Q29.9981 -5.8594 30.4043 -5.5938 Q30.8106 -5.3281 31.6231 -4.9375 Q32.2793 -4.625 32.7325 -4.2812 Q33.2012 -3.9531 33.4512 -3.5 Q33.7012 -3.0469 33.7012 -2.375 ZM37.8289 -6.6719 Q39.1726 -6.6719 39.9695 -5.8906 Q40.7664 -5.125 40.7664 -3.7031 L40.7664 -2.8281 L36.5476 -2.8281 Q36.5632 -2.0781 36.9851 -1.6406 Q37.4226 -1.2188 38.1726 -1.2188 Q38.8132 -1.2188 39.3289 -1.3438 Q39.8445 -1.4688 40.3914 -1.7344 L40.3914 -0.3438 Q39.907 -0.1094 39.3757 0 Q38.8445 0.125 38.0945 0.125 Q37.1101 0.125 36.3445 -0.2344 Q35.5945 -0.6094 35.157 -1.3438 Q34.7351 -2.0938 34.7351 -3.2344 Q34.7351 -4.375 35.1101 -5.1406 Q35.5007 -5.9062 36.2039 -6.2812 Q36.907 -6.6719 37.8289 -6.6719 ZM37.8289 -5.4062 Q37.3132 -5.4062 36.9695 -5.0625 Q36.6414 -4.7344 36.5789 -4.0156 L39.0789 -4.0156 Q39.0789 -4.625 38.7664 -5.0156 Q38.4695 -5.4062 37.8289 -5.4062 ZM45.8741 -6.6719 Q46.0147 -6.6719 46.1866 -6.6562 Q46.3741 -6.6406 46.4834 -6.625 L46.3428 -4.9375 Q46.2647 -4.9688 46.0928 -4.9844 Q45.9366 -5 45.8116 -5 Q45.3584 -5 44.9366 -4.8438 Q44.5147 -4.6875 44.2491 -4.3125 Q43.9991 -3.9531 43.9991 -3.3438 L43.9991 0 L42.2178 0 L42.2178 -6.5469 L43.5772 -6.5469 L43.8428 -5.4531 L43.9209 -5.4531 Q44.2022 -5.9531 44.7022 -6.3125 Q45.2178 -6.6719 45.8741 -6.6719 ZM49.2283 0 L46.7283 -6.5469 L48.6033 -6.5469 L49.8533 -2.8125 Q49.9627 -2.4844 50.0252 -2.125 Q50.1033 -1.7656 50.119 -1.4688 L50.1658 -1.4688 Q50.1971 -2.125 50.4315 -2.8125 L51.6815 -6.5469 L53.5565 -6.5469 L51.0565 0 L49.2283 0 ZM55.4001 -9.125 Q55.7908 -9.125 56.072 -8.9375 Q56.3689 -8.75 56.3689 -8.25 Q56.3689 -7.75 56.072 -7.5625 Q55.7908 -7.375 55.4001 -7.375 Q54.9783 -7.375 54.697 -7.5625 Q54.4158 -7.75 54.4158 -8.25 Q54.4158 -8.75 54.697 -8.9375 Q54.9783 -9.125 55.4001 -9.125 ZM56.2751 -6.5469 L56.2751 0 L54.4939 0 L54.4939 -6.5469 L56.2751 -6.5469 ZM60.8102 0.125 Q59.357 0.125 58.5602 -0.6875 Q57.7633 -1.5 57.7633 -3.2344 Q57.7633 -4.4375 58.1695 -5.1875 Q58.5758 -5.9531 59.2945 -6.3125 Q60.0289 -6.6719 60.9664 -6.6719 Q61.6383 -6.6719 62.1383 -6.5312 Q62.6383 -6.4062 63.0133 -6.2344 L62.482 -4.8438 Q62.0602 -5.0156 61.6852 -5.125 Q61.3258 -5.2344 60.9664 -5.2344 Q59.5758 -5.2344 59.5758 -3.25 Q59.5758 -2.2656 59.9352 -1.7969 Q60.3102 -1.3281 60.9664 -1.3281 Q61.5289 -1.3281 61.9664 -1.4688 Q62.4039 -1.625 62.8102 -1.8906 L62.8102 -0.375 Q62.4039 -0.1094 61.9508 0 Q61.4977 0.125 60.8102 0.125 ZM67.0251 -6.6719 Q68.3688 -6.6719 69.1657 -5.8906 Q69.9626 -5.125 69.9626 -3.7031 L69.9626 -2.8281 L65.7438 -2.8281 Q65.7595 -2.0781 66.1813 -1.6406 Q66.6188 -1.2188 67.3688 -1.2188 Q68.0095 -1.2188 68.5251 -1.3438 Q69.0407 -1.4688 69.5876 -1.7344 L69.5876 -0.3438 Q69.1032 -0.1094 68.572 0 Q68.0407 0.125 67.2907 0.125 Q66.3063 0.125 65.5407 -0.2344 Q64.7907 -0.6094 64.3532 -1.3438 Q63.9313 -2.0938 63.9313 -3.2344 Q63.9313 -4.375 64.3063 -5.1406 Q64.697 -5.9062 65.4001 -6.2812 Q66.1032 -6.6719 67.0251 -6.6719 ZM67.0251 -5.4062 Q66.5095 -5.4062 66.1657 -5.0625 Q65.8376 -4.7344 65.7751 -4.0156 L68.2751 -4.0156 Q68.2751 -4.625 67.9626 -5.0156 Q67.6657 -5.4062 67.0251 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath28);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M-4.7071 -378.2036 C-341.4354 -341.1165 -4.7071 -378.2036 -341.4354 -341.1165" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-4.7071" x2="-14.38" y1="-378.2036" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-371.102"
+      /><line x1="-4.7071" x2="-15.6938" y1="-378.2036" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-383.0298"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-65.6089" y="-1053.3821" width="39.1123" style="clip-path:url(#clipPath2); stroke:none;" height="15"
+      /><rect x="-65.6089" y="-1053.3821" width="39.1123" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="15"
+      /><rect x="-65.6089" y="-1038.3821" width="97.7807" style="clip-path:url(#clipPath2); stroke:none;" height="92.8907"
+      /><rect x="-65.6089" y="-1038.3821" width="97.7807" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="92.8907"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-30.2185,-1019.3821)"
+    ><path d="M6.9531 -6.5469 L6.9531 0 L5.5781 0 L5.3438 -0.8438 L5.25 -0.8438 Q4.9375 -0.3438 4.3906 -0.1094 Q3.8438 0.125 3.2344 0.125 Q2.1719 0.125 1.5312 -0.4375 Q0.9062 -1.0156 0.9062 -2.2812 L0.9062 -6.5469 L2.6875 -6.5469 L2.6875 -2.7188 Q2.6875 -2.0312 2.9375 -1.6719 Q3.1875 -1.3125 3.75 -1.3125 Q4.5625 -1.3125 4.8594 -1.8594 Q5.1562 -2.4219 5.1562 -3.4688 L5.1562 -6.5469 L6.9531 -6.5469 ZM11.5872 -1.3125 Q11.884 -1.3125 12.1497 -1.3594 Q12.4309 -1.4219 12.7122 -1.5156 L12.7122 -0.1875 Q12.4153 -0.0625 11.9934 0.0312 Q11.5715 0.125 11.0715 0.125 Q10.4778 0.125 10.009 -0.0625 Q9.5559 -0.2656 9.2747 -0.7344 Q9.009 -1.2188 9.009 -2.0469 L9.009 -5.2031 L8.1653 -5.2031 L8.1653 -5.9688 L9.1497 -6.5625 L9.6653 -7.9375 L10.8059 -7.9375 L10.8059 -6.5469 L12.634 -6.5469 L12.634 -5.2031 L10.8059 -5.2031 L10.8059 -2.0469 Q10.8059 -1.6875 11.009 -1.5 Q11.2278 -1.3125 11.5872 -1.3125 ZM14.9358 -9.125 Q15.3265 -9.125 15.6077 -8.9375 Q15.9046 -8.75 15.9046 -8.25 Q15.9046 -7.75 15.6077 -7.5625 Q15.3265 -7.375 14.9358 -7.375 Q14.514 -7.375 14.2327 -7.5625 Q13.9515 -7.75 13.9515 -8.25 Q13.9515 -8.75 14.2327 -8.9375 Q14.514 -9.125 14.9358 -9.125 ZM15.8108 -6.5469 L15.8108 0 L14.0296 0 L14.0296 -6.5469 L15.8108 -6.5469 ZM19.4709 0 L17.6896 0 L17.6896 -9.125 L19.4709 -9.125 L19.4709 0 ZM25.9277 -1.9375 Q25.9277 -0.9531 25.2246 -0.4062 Q24.5215 0.125 23.1309 0.125 Q22.4434 0.125 21.9434 0.0312 Q21.459 -0.0625 20.959 -0.2656 L20.959 -1.7344 Q21.4902 -1.5 22.0996 -1.3438 Q22.709 -1.1875 23.1777 -1.1875 Q23.709 -1.1875 23.9277 -1.3438 Q24.1621 -1.5 24.1621 -1.75 Q24.1621 -1.9219 24.0684 -2.0469 Q23.9746 -2.1875 23.6777 -2.3438 Q23.3809 -2.5156 22.7402 -2.7812 Q22.1309 -3.0469 21.7246 -3.2969 Q21.334 -3.5625 21.1465 -3.9219 Q20.959 -4.2969 20.959 -4.8438 Q20.959 -5.7656 21.6621 -6.2188 Q22.3652 -6.6719 23.5371 -6.6719 Q24.1621 -6.6719 24.709 -6.5469 Q25.2559 -6.4375 25.8496 -6.1562 L25.3027 -4.875 Q24.834 -5.0781 24.3965 -5.2188 Q23.959 -5.3594 23.5215 -5.3594 Q22.7246 -5.3594 22.7246 -4.9219 Q22.7246 -4.7656 22.8184 -4.6406 Q22.9277 -4.5156 23.2246 -4.3594 Q23.5215 -4.2188 24.0996 -3.9844 Q24.6621 -3.75 25.0684 -3.5 Q25.4746 -3.2656 25.6934 -2.8906 Q25.9277 -2.5312 25.9277 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath29);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-678.9932" y="-993.5031" width="166.041" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="-678.9932" y="-993.5031" width="166.041" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-668.9932,-975.5031)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM36.2481 0 L33.9512 0 L30.2168 -6.4844 L30.17 -6.4844 Q30.1856 -5.875 30.2168 -5.25 Q30.2481 -4.6406 30.2793 -4.0312 L30.2793 0 L28.6543 0 L28.6543 -8.5625 L30.9512 -8.5625 L34.67 -2.1406 L34.7012 -2.1406 Q34.6856 -2.75 34.6543 -3.3281 Q34.6387 -3.9219 34.6231 -4.5156 L34.6231 -8.5625 L36.2481 -8.5625 L36.2481 0 ZM44.2229 -3.2812 Q44.2229 -1.6562 43.3635 -0.7656 Q42.5042 0.125 41.0354 0.125 Q40.1135 0.125 39.3948 -0.2656 Q38.6917 -0.6719 38.2854 -1.4375 Q37.8792 -2.2031 37.8792 -3.2812 Q37.8792 -4.9219 38.7229 -5.7969 Q39.5823 -6.6719 41.0667 -6.6719 Q41.9885 -6.6719 42.6917 -6.2656 Q43.4104 -5.875 43.8167 -5.125 Q44.2229 -4.375 44.2229 -3.2812 ZM39.6917 -3.2812 Q39.6917 -2.3125 40.0042 -1.8125 Q40.3323 -1.3125 41.051 -1.3125 Q41.7542 -1.3125 42.0667 -1.8125 Q42.3948 -2.3125 42.3948 -3.2812 Q42.3948 -4.2656 42.0667 -4.75 Q41.7542 -5.2344 41.0354 -5.2344 Q40.3323 -5.2344 40.0042 -4.75 Q39.6917 -4.2656 39.6917 -3.2812 ZM48.4635 -1.3125 Q48.7603 -1.3125 49.026 -1.3594 Q49.3072 -1.4219 49.5885 -1.5156 L49.5885 -0.1875 Q49.2916 -0.0625 48.8697 0.0312 Q48.4478 0.125 47.9478 0.125 Q47.3541 0.125 46.8853 -0.0625 Q46.4322 -0.2656 46.151 -0.7344 Q45.8853 -1.2188 45.8853 -2.0469 L45.8853 -5.2031 L45.0416 -5.2031 L45.0416 -5.9688 L46.026 -6.5625 L46.5416 -7.9375 L47.6822 -7.9375 L47.6822 -6.5469 L49.5103 -6.5469 L49.5103 -5.2031 L47.6822 -5.2031 L47.6822 -2.0469 Q47.6822 -1.6875 47.8853 -1.5 Q48.1041 -1.3125 48.4635 -1.3125 ZM52.8434 0 L51.0465 0 L51.0465 -8.5625 L55.9527 -8.5625 L55.9527 -7.0781 L52.8434 -7.0781 L52.8434 -4.875 L55.734 -4.875 L55.734 -3.3906 L52.8434 -3.3906 L52.8434 0 ZM63.447 -3.2812 Q63.447 -1.6562 62.5877 -0.7656 Q61.7283 0.125 60.2595 0.125 Q59.3377 0.125 58.6189 -0.2656 Q57.9158 -0.6719 57.5095 -1.4375 Q57.1033 -2.2031 57.1033 -3.2812 Q57.1033 -4.9219 57.947 -5.7969 Q58.8064 -6.6719 60.2908 -6.6719 Q61.2127 -6.6719 61.9158 -6.2656 Q62.6345 -5.875 63.0408 -5.125 Q63.447 -4.375 63.447 -3.2812 ZM58.9158 -3.2812 Q58.9158 -2.3125 59.2283 -1.8125 Q59.5564 -1.3125 60.2752 -1.3125 Q60.9783 -1.3125 61.2908 -1.8125 Q61.6189 -2.3125 61.6189 -3.2812 Q61.6189 -4.2656 61.2908 -4.75 Q60.9783 -5.2344 60.2595 -5.2344 Q59.5564 -5.2344 59.2283 -4.75 Q58.9158 -4.2656 58.9158 -3.2812 ZM70.9376 -6.5469 L70.9376 0 L69.5626 0 L69.3282 -0.8438 L69.2345 -0.8438 Q68.922 -0.3438 68.3751 -0.1094 Q67.8282 0.125 67.2188 0.125 Q66.1563 0.125 65.5157 -0.4375 Q64.8907 -1.0156 64.8907 -2.2812 L64.8907 -6.5469 L66.672 -6.5469 L66.672 -2.7188 Q66.672 -2.0312 66.922 -1.6719 Q67.172 -1.3125 67.7345 -1.3125 Q68.547 -1.3125 68.8438 -1.8594 Q69.1407 -2.4219 69.1407 -3.4688 L69.1407 -6.5469 L70.9376 -6.5469 ZM76.5248 -6.6719 Q77.5873 -6.6719 78.2123 -6.0938 Q78.8529 -5.5312 78.8529 -4.2656 L78.8529 0 L77.0716 0 L77.0716 -3.8281 Q77.0716 -4.5312 76.806 -4.8906 Q76.556 -5.25 76.0091 -5.25 Q75.1966 -5.25 74.8841 -4.6875 Q74.5873 -4.125 74.5873 -3.0781 L74.5873 0 L72.806 0 L72.806 -6.5469 L74.1654 -6.5469 L74.4154 -5.7188 L74.5091 -5.7188 Q74.8216 -6.2188 75.3685 -6.4375 Q75.9154 -6.6719 76.5248 -6.6719 ZM82.7682 0.125 Q81.6744 0.125 80.9869 -0.7344 Q80.2994 -1.5938 80.2994 -3.2656 Q80.2994 -4.9375 80.9869 -5.7969 Q81.6901 -6.6719 82.8151 -6.6719 Q83.5182 -6.6719 83.9713 -6.3906 Q84.4401 -6.125 84.6901 -5.7188 L84.7526 -5.7188 Q84.7213 -5.9062 84.6744 -6.2656 Q84.6276 -6.6406 84.6276 -7.0156 L84.6276 -9.125 L86.4088 -9.125 L86.4088 0 L85.0494 0 L84.6901 -0.8594 L84.6276 -0.8594 Q84.3619 -0.4375 83.9088 -0.1562 Q83.4713 0.125 82.7682 0.125 ZM83.3932 -1.3125 Q84.1276 -1.3125 84.4244 -1.75 Q84.7369 -2.1875 84.7369 -3.0625 L84.7369 -3.25 Q84.7369 -4.2188 84.4401 -4.7188 Q84.1588 -5.2188 83.3619 -5.2188 Q82.7838 -5.2188 82.4401 -4.7031 Q82.1119 -4.2031 82.1119 -3.2344 Q82.1119 -2.2812 82.4401 -1.7969 Q82.7838 -1.3125 83.3932 -1.3125 ZM93.3642 0 L88.4267 0 L88.4267 -8.5625 L93.3642 -8.5625 L93.3642 -7.0781 L90.2392 -7.0781 L90.2392 -5.2031 L93.1455 -5.2031 L93.1455 -3.7031 L90.2392 -3.7031 L90.2392 -1.5 L93.3642 -1.5 L93.3642 0 ZM96.3499 -3.3438 L94.2405 -6.5469 L96.2718 -6.5469 L97.5374 -4.4688 L98.8187 -6.5469 L100.8499 -6.5469 L98.7093 -3.3438 L100.9437 0 L98.9124 0 L97.5374 -2.25 L96.1624 0 L94.1312 0 L96.3499 -3.3438 ZM104.5985 0.125 Q103.1453 0.125 102.3485 -0.6875 Q101.5516 -1.5 101.5516 -3.2344 Q101.5516 -4.4375 101.9578 -5.1875 Q102.3641 -5.9531 103.0828 -6.3125 Q103.8172 -6.6719 104.7547 -6.6719 Q105.4266 -6.6719 105.9266 -6.5312 Q106.4266 -6.4062 106.8016 -6.2344 L106.2703 -4.8438 Q105.8485 -5.0156 105.4735 -5.125 Q105.1141 -5.2344 104.7547 -5.2344 Q103.3641 -5.2344 103.3641 -3.25 Q103.3641 -2.2656 103.7235 -1.7969 Q104.0985 -1.3281 104.7547 -1.3281 Q105.3172 -1.3281 105.7547 -1.4688 Q106.1922 -1.625 106.5985 -1.8906 L106.5985 -0.375 Q106.1922 -0.1094 105.7391 0 Q105.286 0.125 104.5985 0.125 ZM110.8134 -6.6719 Q112.1571 -6.6719 112.954 -5.8906 Q113.7509 -5.125 113.7509 -3.7031 L113.7509 -2.8281 L109.5321 -2.8281 Q109.5478 -2.0781 109.9696 -1.6406 Q110.4071 -1.2188 111.1571 -1.2188 Q111.7978 -1.2188 112.3134 -1.3438 Q112.829 -1.4688 113.3759 -1.7344 L113.3759 -0.3438 Q112.8915 -0.1094 112.3603 0 Q111.829 0.125 111.079 0.125 Q110.0946 0.125 109.329 -0.2344 Q108.579 -0.6094 108.1415 -1.3438 Q107.7196 -2.0938 107.7196 -3.2344 Q107.7196 -4.375 108.0946 -5.1406 Q108.4853 -5.9062 109.1884 -6.2812 Q109.8915 -6.6719 110.8134 -6.6719 ZM110.8134 -5.4062 Q110.2978 -5.4062 109.954 -5.0625 Q109.6259 -4.7344 109.5634 -4.0156 L112.0634 -4.0156 Q112.0634 -4.625 111.7509 -5.0156 Q111.454 -5.4062 110.8134 -5.4062 ZM118.8429 -6.6719 Q119.9523 -6.6719 120.6398 -5.8125 Q121.3273 -4.9531 121.3273 -3.2812 Q121.3273 -1.625 120.6086 -0.75 Q119.9054 0.125 118.7961 0.125 Q118.0929 0.125 117.6711 -0.125 Q117.2492 -0.3906 116.9836 -0.7188 L116.8898 -0.7188 Q116.9836 -0.2188 116.9836 0.2344 L116.9836 2.875 L115.2023 2.875 L115.2023 -6.5469 L116.6554 -6.5469 L116.9054 -5.7031 L116.9836 -5.7031 Q117.2492 -6.0938 117.6867 -6.375 Q118.1398 -6.6719 118.8429 -6.6719 ZM118.2804 -5.25 Q117.5773 -5.25 117.2961 -4.8125 Q117.0148 -4.375 116.9836 -3.4844 L116.9836 -3.2969 Q116.9836 -2.3594 117.2648 -1.8438 Q117.5461 -1.3281 118.2961 -1.3281 Q118.9054 -1.3281 119.2023 -1.8438 Q119.4992 -2.3594 119.4992 -3.3125 Q119.4992 -5.25 118.2804 -5.25 ZM125.564 -1.3125 Q125.8609 -1.3125 126.1265 -1.3594 Q126.4077 -1.4219 126.689 -1.5156 L126.689 -0.1875 Q126.3921 -0.0625 125.9702 0.0312 Q125.5484 0.125 125.0484 0.125 Q124.4546 0.125 123.9859 -0.0625 Q123.5327 -0.2656 123.2515 -0.7344 Q122.9859 -1.2188 122.9859 -2.0469 L122.9859 -5.2031 L122.1421 -5.2031 L122.1421 -5.9688 L123.1265 -6.5625 L123.6421 -7.9375 L124.7827 -7.9375 L124.7827 -6.5469 L126.6109 -6.5469 L126.6109 -5.2031 L124.7827 -5.2031 L124.7827 -2.0469 Q124.7827 -1.6875 124.9859 -1.5 Q125.2046 -1.3125 125.564 -1.3125 ZM128.9127 -9.125 Q129.3033 -9.125 129.5845 -8.9375 Q129.8814 -8.75 129.8814 -8.25 Q129.8814 -7.75 129.5845 -7.5625 Q129.3033 -7.375 128.9127 -7.375 Q128.4908 -7.375 128.2095 -7.5625 Q127.9283 -7.75 127.9283 -8.25 Q127.9283 -8.75 128.2095 -8.9375 Q128.4908 -9.125 128.9127 -9.125 ZM129.7877 -6.5469 L129.7877 0 L128.0064 0 L128.0064 -6.5469 L129.7877 -6.5469 ZM137.6196 -3.2812 Q137.6196 -1.6562 136.7602 -0.7656 Q135.9008 0.125 134.4321 0.125 Q133.5102 0.125 132.7914 -0.2656 Q132.0883 -0.6719 131.6821 -1.4375 Q131.2758 -2.2031 131.2758 -3.2812 Q131.2758 -4.9219 132.1196 -5.7969 Q132.9789 -6.6719 134.4633 -6.6719 Q135.3852 -6.6719 136.0883 -6.2656 Q136.8071 -5.875 137.2133 -5.125 Q137.6196 -4.375 137.6196 -3.2812 ZM133.0883 -3.2812 Q133.0883 -2.3125 133.4008 -1.8125 Q133.7289 -1.3125 134.4477 -1.3125 Q135.1508 -1.3125 135.4633 -1.8125 Q135.7914 -2.3125 135.7914 -3.2812 Q135.7914 -4.2656 135.4633 -4.75 Q135.1508 -5.2344 134.4321 -5.2344 Q133.7289 -5.2344 133.4008 -4.75 Q133.0883 -4.2656 133.0883 -3.2812 ZM142.8132 -6.6719 Q143.8757 -6.6719 144.5007 -6.0938 Q145.1414 -5.5312 145.1414 -4.2656 L145.1414 0 L143.3601 0 L143.3601 -3.8281 Q143.3601 -4.5312 143.0945 -4.8906 Q142.8445 -5.25 142.2976 -5.25 Q141.4851 -5.25 141.1726 -4.6875 Q140.8757 -4.125 140.8757 -3.0781 L140.8757 0 L139.0945 0 L139.0945 -6.5469 L140.4539 -6.5469 L140.7039 -5.7188 L140.7976 -5.7188 Q141.1101 -6.2188 141.657 -6.4375 Q142.2039 -6.6719 142.8132 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath30);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><line x1="103.1412" x2="-43.1334" y1="-391.1844" style="fill:none; clip-path:url(#clipPath2);" y2="-391.1844"
+      /><line x1="-43.1334" x2="-43.1334" y1="-391.1844" style="fill:none; clip-path:url(#clipPath2);" y2="-42.7469"
+      /><line x1="-43.1334" x2="-119.0766" y1="-42.7469" style="fill:none; clip-path:url(#clipPath2);" y2="-42.7469"
+      /><line x1="-119.0766" x2="-119.0766" y1="-42.7469" style="fill:none; clip-path:url(#clipPath2);" y2="283.0663"
+      /><line x1="-119.0766" x2="-125.0766" y1="283.0663" style="fill:none; clip-path:url(#clipPath2);" y2="272.674"
+      /><line x1="-119.0766" x2="-113.0766" y1="283.0663" style="fill:none; clip-path:url(#clipPath2);" y2="272.674"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-50.6089" y="-997.1634" width="48" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="-50.6089" y="-997.1634" width="48" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-40.6089,-979.1634)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM12.7752 -1.3125 Q13.0721 -1.3125 13.3377 -1.3594 Q13.6189 -1.4219 13.9002 -1.5156 L13.9002 -0.1875 Q13.6033 -0.0625 13.1814 0.0312 Q12.7596 0.125 12.2596 0.125 Q11.6658 0.125 11.1971 -0.0625 Q10.7439 -0.2656 10.4627 -0.7344 Q10.1971 -1.2188 10.1971 -2.0469 L10.1971 -5.2031 L9.3533 -5.2031 L9.3533 -5.9688 L10.3377 -6.5625 L10.8533 -7.9375 L11.9939 -7.9375 L11.9939 -6.5469 L13.8221 -6.5469 L13.8221 -5.2031 L11.9939 -5.2031 L11.9939 -2.0469 Q11.9939 -1.6875 12.1971 -1.5 Q12.4158 -1.3125 12.7752 -1.3125 ZM16.1239 -9.125 Q16.5145 -9.125 16.7957 -8.9375 Q17.0926 -8.75 17.0926 -8.25 Q17.0926 -7.75 16.7957 -7.5625 Q16.5145 -7.375 16.1239 -7.375 Q15.702 -7.375 15.4207 -7.5625 Q15.1395 -7.75 15.1395 -8.25 Q15.1395 -8.75 15.4207 -8.9375 Q15.702 -9.125 16.1239 -9.125 ZM16.9989 -6.5469 L16.9989 0 L15.2176 0 L15.2176 -6.5469 L16.9989 -6.5469 ZM20.6589 0 L18.8776 0 L18.8776 -9.125 L20.6589 -9.125 L20.6589 0 ZM27.1158 -1.9375 Q27.1158 -0.9531 26.4126 -0.4062 Q25.7095 0.125 24.3189 0.125 Q23.6314 0.125 23.1314 0.0312 Q22.647 -0.0625 22.147 -0.2656 L22.147 -1.7344 Q22.6783 -1.5 23.2876 -1.3438 Q23.897 -1.1875 24.3658 -1.1875 Q24.897 -1.1875 25.1158 -1.3438 Q25.3501 -1.5 25.3501 -1.75 Q25.3501 -1.9219 25.2564 -2.0469 Q25.1626 -2.1875 24.8658 -2.3438 Q24.5689 -2.5156 23.9283 -2.7812 Q23.3189 -3.0469 22.9126 -3.2969 Q22.522 -3.5625 22.3345 -3.9219 Q22.147 -4.2969 22.147 -4.8438 Q22.147 -5.7656 22.8501 -6.2188 Q23.5533 -6.6719 24.7251 -6.6719 Q25.3501 -6.6719 25.897 -6.5469 Q26.4439 -6.4375 27.0376 -6.1562 L26.4908 -4.875 Q26.022 -5.0781 25.5845 -5.2188 Q25.147 -5.3594 24.7095 -5.3594 Q23.9126 -5.3594 23.9126 -4.9219 Q23.9126 -4.7656 24.0064 -4.6406 Q24.1158 -4.5156 24.4126 -4.3594 Q24.7095 -4.2188 25.2876 -3.9844 Q25.8501 -3.75 26.2564 -3.5 Q26.6626 -3.2656 26.8814 -2.8906 Q27.1158 -2.5312 27.1158 -1.9375 Z" style="stroke:none; clip-path:url(#clipPath31);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="613.1887" x2="613.1887" y1="350.5976" style="fill:none; clip-path:url(#clipPath2);" y2="-404.7164"
+      /><line x1="613.1887" x2="193.6178" y1="-404.7164" style="fill:none; clip-path:url(#clipPath2);" y2="-404.7164"
+      /><line x1="613.1887" x2="607.1887" y1="350.5976" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="340.2052"
+      /><line x1="613.1887" x2="619.1887" y1="350.5976" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="340.2052"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-615.2001" y="-1067.641" width="166" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="-615.2001" y="-1067.641" width="166" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-605.2001,-1049.641)"
+    ><path d="M4.3281 -4.8125 L7.7344 -4.8125 L7.7344 -0.375 Q7.0625 -0.1406 6.3281 0 Q5.6094 0.125 4.6875 0.125 Q2.7656 0.125 1.7344 -1 Q0.7031 -2.1406 0.7031 -4.2969 Q0.7031 -5.6406 1.2188 -6.625 Q1.7344 -7.6094 2.7344 -8.1406 Q3.7344 -8.6875 5.1719 -8.6875 Q5.8594 -8.6875 6.5156 -8.5469 Q7.1719 -8.4062 7.7188 -8.1562 L7.1094 -6.7031 Q6.7188 -6.9062 6.2188 -7.0312 Q5.7188 -7.1719 5.1562 -7.1719 Q4.375 -7.1719 3.7812 -6.8125 Q3.2031 -6.4531 2.875 -5.7969 Q2.5625 -5.1406 2.5625 -4.2656 Q2.5625 -3.4219 2.7969 -2.7656 Q3.0312 -2.125 3.5156 -1.75 Q4.0156 -1.3906 4.7969 -1.3906 Q5.1875 -1.3906 5.4531 -1.4219 Q5.7188 -1.4688 5.9531 -1.5156 L5.9531 -3.2969 L4.3281 -3.2969 L4.3281 -4.8125 ZM11.4068 0 L9.6256 0 L9.6256 -9.125 L11.4068 -9.125 L11.4068 0 ZM19.2387 -3.2812 Q19.2387 -1.6562 18.3793 -0.7656 Q17.52 0.125 16.0512 0.125 Q15.1293 0.125 14.4106 -0.2656 Q13.7075 -0.6719 13.3012 -1.4375 Q12.895 -2.2031 12.895 -3.2812 Q12.895 -4.9219 13.7387 -5.7969 Q14.5981 -6.6719 16.0825 -6.6719 Q17.0043 -6.6719 17.7075 -6.2656 Q18.4262 -5.875 18.8325 -5.125 Q19.2387 -4.375 19.2387 -3.2812 ZM14.7075 -3.2812 Q14.7075 -2.3125 15.02 -1.8125 Q15.3481 -1.3125 16.0668 -1.3125 Q16.77 -1.3125 17.0825 -1.8125 Q17.4106 -2.3125 17.4106 -3.2812 Q17.4106 -4.2656 17.0825 -4.75 Q16.77 -5.2344 16.0512 -5.2344 Q15.3481 -5.2344 15.02 -4.75 Q14.7075 -4.2656 14.7075 -3.2812 ZM22.4949 -7 Q22.4949 -6.625 22.4636 -6.2656 Q22.448 -5.9062 22.4324 -5.7031 L22.4949 -5.7031 Q22.7605 -6.1094 23.198 -6.3906 Q23.6511 -6.6719 24.3543 -6.6719 Q25.4636 -6.6719 26.1511 -5.8125 Q26.8386 -4.9531 26.8386 -3.2812 Q26.8386 -1.6094 26.1355 -0.7344 Q25.4324 0.125 24.3074 0.125 Q23.5886 0.125 23.1668 -0.125 Q22.7605 -0.3906 22.4949 -0.7188 L22.3855 -0.7188 L22.073 0 L20.7136 0 L20.7136 -9.125 L22.4949 -9.125 L22.4949 -7 ZM23.7918 -5.25 Q23.0886 -5.25 22.8074 -4.8125 Q22.5261 -4.375 22.4949 -3.4844 L22.4949 -3.2969 Q22.4949 -2.3594 22.7761 -1.8438 Q23.0574 -1.3281 23.8074 -1.3281 Q24.3543 -1.3281 24.6824 -1.8438 Q25.0105 -2.3594 25.0105 -3.3125 Q25.0105 -4.2656 24.6824 -4.75 Q24.3543 -5.25 23.7918 -5.25 ZM30.9972 -6.6875 Q32.3097 -6.6875 33.0128 -6.1094 Q33.7159 -5.5469 33.7159 -4.375 L33.7159 0 L32.4659 0 L32.1222 -0.8906 L32.0753 -0.8906 Q31.6534 -0.3594 31.1847 -0.1094 Q30.7159 0.125 29.9034 0.125 Q29.0284 0.125 28.4503 -0.3906 Q27.8722 -0.9062 27.8722 -1.9531 Q27.8722 -3 28.6066 -3.5 Q29.3409 -4 30.8097 -4.0469 L31.9503 -4.0781 L31.9503 -4.375 Q31.9503 -4.8906 31.6691 -5.125 Q31.4034 -5.3594 30.9191 -5.3594 Q30.4503 -5.3594 29.9816 -5.2188 Q29.5284 -5.0938 29.0753 -4.8906 L28.4816 -6.0938 Q29.0128 -6.375 29.6534 -6.5312 Q30.2941 -6.6875 30.9972 -6.6875 ZM31.2472 -3.0156 Q30.3878 -2.9844 30.0441 -2.6875 Q29.7159 -2.4062 29.7159 -1.9375 Q29.7159 -1.5312 29.9503 -1.3594 Q30.1847 -1.1875 30.5753 -1.1875 Q31.1534 -1.1875 31.5441 -1.5312 Q31.9503 -1.875 31.9503 -2.5 L31.9503 -3.0312 L31.2472 -3.0156 ZM37.339 0 L35.5577 0 L35.5577 -9.125 L37.339 -9.125 L37.339 0 ZM44.2959 0 L39.3584 0 L39.3584 -8.5625 L44.2959 -8.5625 L44.2959 -7.0781 L41.1709 -7.0781 L41.1709 -5.2031 L44.0771 -5.2031 L44.0771 -3.7031 L41.1709 -3.7031 L41.1709 -1.5 L44.2959 -1.5 L44.2959 0 ZM47.2816 -3.3438 L45.1722 -6.5469 L47.2034 -6.5469 L48.4691 -4.4688 L49.7503 -6.5469 L51.7816 -6.5469 L49.6409 -3.3438 L51.8753 0 L49.8441 0 L48.4691 -2.25 L47.0941 0 L45.0628 0 L47.2816 -3.3438 ZM55.5301 0.125 Q54.077 0.125 53.2801 -0.6875 Q52.4832 -1.5 52.4832 -3.2344 Q52.4832 -4.4375 52.8895 -5.1875 Q53.2957 -5.9531 54.0145 -6.3125 Q54.7489 -6.6719 55.6864 -6.6719 Q56.3582 -6.6719 56.8582 -6.5312 Q57.3582 -6.4062 57.7332 -6.2344 L57.202 -4.8438 Q56.7801 -5.0156 56.4051 -5.125 Q56.0457 -5.2344 55.6864 -5.2344 Q54.2957 -5.2344 54.2957 -3.25 Q54.2957 -2.2656 54.6551 -1.7969 Q55.0301 -1.3281 55.6864 -1.3281 Q56.2489 -1.3281 56.6864 -1.4688 Q57.1239 -1.625 57.5301 -1.8906 L57.5301 -0.375 Q57.1239 -0.1094 56.6707 0 Q56.2176 0.125 55.5301 0.125 ZM61.745 -6.6719 Q63.0888 -6.6719 63.8857 -5.8906 Q64.6825 -5.125 64.6825 -3.7031 L64.6825 -2.8281 L60.4638 -2.8281 Q60.4794 -2.0781 60.9013 -1.6406 Q61.3388 -1.2188 62.0888 -1.2188 Q62.7294 -1.2188 63.245 -1.3438 Q63.7607 -1.4688 64.3075 -1.7344 L64.3075 -0.3438 Q63.8232 -0.1094 63.2919 0 Q62.7607 0.125 62.0107 0.125 Q61.0263 0.125 60.2607 -0.2344 Q59.5107 -0.6094 59.0732 -1.3438 Q58.6513 -2.0938 58.6513 -3.2344 Q58.6513 -4.375 59.0263 -5.1406 Q59.4169 -5.9062 60.12 -6.2812 Q60.8232 -6.6719 61.745 -6.6719 ZM61.745 -5.4062 Q61.2294 -5.4062 60.8857 -5.0625 Q60.5575 -4.7344 60.495 -4.0156 L62.995 -4.0156 Q62.995 -4.625 62.6825 -5.0156 Q62.3857 -5.4062 61.745 -5.4062 ZM69.7746 -6.6719 Q70.884 -6.6719 71.5715 -5.8125 Q72.259 -4.9531 72.259 -3.2812 Q72.259 -1.625 71.5402 -0.75 Q70.8371 0.125 69.7277 0.125 Q69.0246 0.125 68.6027 -0.125 Q68.1808 -0.3906 67.9152 -0.7188 L67.8215 -0.7188 Q67.9152 -0.2188 67.9152 0.2344 L67.9152 2.875 L66.134 2.875 L66.134 -6.5469 L67.5871 -6.5469 L67.8371 -5.7031 L67.9152 -5.7031 Q68.1808 -6.0938 68.6183 -6.375 Q69.0715 -6.6719 69.7746 -6.6719 ZM69.2121 -5.25 Q68.509 -5.25 68.2277 -4.8125 Q67.9465 -4.375 67.9152 -3.4844 L67.9152 -3.2969 Q67.9152 -2.3594 68.1965 -1.8438 Q68.4777 -1.3281 69.2277 -1.3281 Q69.8371 -1.3281 70.134 -1.8438 Q70.4308 -2.3594 70.4308 -3.3125 Q70.4308 -5.25 69.2121 -5.25 ZM76.4956 -1.3125 Q76.7925 -1.3125 77.0581 -1.3594 Q77.3394 -1.4219 77.6206 -1.5156 L77.6206 -0.1875 Q77.3238 -0.0625 76.9019 0.0312 Q76.48 0.125 75.98 0.125 Q75.3863 0.125 74.9175 -0.0625 Q74.4644 -0.2656 74.1831 -0.7344 Q73.9175 -1.2188 73.9175 -2.0469 L73.9175 -5.2031 L73.0738 -5.2031 L73.0738 -5.9688 L74.0581 -6.5625 L74.5738 -7.9375 L75.7144 -7.9375 L75.7144 -6.5469 L77.5425 -6.5469 L77.5425 -5.2031 L75.7144 -5.2031 L75.7144 -2.0469 Q75.7144 -1.6875 75.9175 -1.5 Q76.1363 -1.3125 76.4956 -1.3125 ZM79.8443 -9.125 Q80.2349 -9.125 80.5162 -8.9375 Q80.813 -8.75 80.813 -8.25 Q80.813 -7.75 80.5162 -7.5625 Q80.2349 -7.375 79.8443 -7.375 Q79.4224 -7.375 79.1412 -7.5625 Q78.8599 -7.75 78.8599 -8.25 Q78.8599 -8.75 79.1412 -8.9375 Q79.4224 -9.125 79.8443 -9.125 ZM80.7193 -6.5469 L80.7193 0 L78.938 0 L78.938 -6.5469 L80.7193 -6.5469 ZM88.5512 -3.2812 Q88.5512 -1.6562 87.6918 -0.7656 Q86.8324 0.125 85.3637 0.125 Q84.4418 0.125 83.7231 -0.2656 Q83.0199 -0.6719 82.6137 -1.4375 Q82.2074 -2.2031 82.2074 -3.2812 Q82.2074 -4.9219 83.0512 -5.7969 Q83.9106 -6.6719 85.3949 -6.6719 Q86.3168 -6.6719 87.0199 -6.2656 Q87.7387 -5.875 88.1449 -5.125 Q88.5512 -4.375 88.5512 -3.2812 ZM84.0199 -3.2812 Q84.0199 -2.3125 84.3324 -1.8125 Q84.6606 -1.3125 85.3793 -1.3125 Q86.0824 -1.3125 86.3949 -1.8125 Q86.7231 -2.3125 86.7231 -3.2812 Q86.7231 -4.2656 86.3949 -4.75 Q86.0824 -5.2344 85.3637 -5.2344 Q84.6606 -5.2344 84.3324 -4.75 Q84.0199 -4.2656 84.0199 -3.2812 ZM93.7449 -6.6719 Q94.8074 -6.6719 95.4324 -6.0938 Q96.073 -5.5312 96.073 -4.2656 L96.073 0 L94.2917 0 L94.2917 -3.8281 Q94.2917 -4.5312 94.0261 -4.8906 Q93.7761 -5.25 93.2292 -5.25 Q92.4167 -5.25 92.1042 -4.6875 Q91.8074 -4.125 91.8074 -3.0781 L91.8074 0 L90.0261 0 L90.0261 -6.5469 L91.3855 -6.5469 L91.6355 -5.7188 L91.7292 -5.7188 Q92.0417 -6.2188 92.5886 -6.4375 Q93.1355 -6.6719 93.7449 -6.6719 ZM105.0664 0 L103.2539 0 L103.2539 -3.7031 L99.8633 -3.7031 L99.8633 0 L98.0508 0 L98.0508 -8.5625 L99.8633 -8.5625 L99.8633 -5.2031 L103.2539 -5.2031 L103.2539 -8.5625 L105.0664 -8.5625 L105.0664 0 ZM109.7777 -6.6875 Q111.0902 -6.6875 111.7934 -6.1094 Q112.4965 -5.5469 112.4965 -4.375 L112.4965 0 L111.2465 0 L110.9027 -0.8906 L110.8559 -0.8906 Q110.434 -0.3594 109.9652 -0.1094 Q109.4965 0.125 108.684 0.125 Q107.809 0.125 107.2309 -0.3906 Q106.6527 -0.9062 106.6527 -1.9531 Q106.6527 -3 107.3871 -3.5 Q108.1215 -4 109.5902 -4.0469 L110.7309 -4.0781 L110.7309 -4.375 Q110.7309 -4.8906 110.4496 -5.125 Q110.184 -5.3594 109.6996 -5.3594 Q109.2309 -5.3594 108.7621 -5.2188 Q108.309 -5.0938 107.8559 -4.8906 L107.2621 -6.0938 Q107.7934 -6.375 108.434 -6.5312 Q109.0746 -6.6875 109.7777 -6.6875 ZM110.0277 -3.0156 Q109.1684 -2.9844 108.8246 -2.6875 Q108.4965 -2.4062 108.4965 -1.9375 Q108.4965 -1.5312 108.7309 -1.3594 Q108.9652 -1.1875 109.3559 -1.1875 Q109.934 -1.1875 110.3246 -1.5312 Q110.7309 -1.875 110.7309 -2.5 L110.7309 -3.0312 L110.0277 -3.0156 ZM118.057 -6.6719 Q119.1195 -6.6719 119.7445 -6.0938 Q120.3852 -5.5312 120.3852 -4.2656 L120.3852 0 L118.6039 0 L118.6039 -3.8281 Q118.6039 -4.5312 118.3383 -4.8906 Q118.0883 -5.25 117.5414 -5.25 Q116.7289 -5.25 116.4164 -4.6875 Q116.1195 -4.125 116.1195 -3.0781 L116.1195 0 L114.3383 0 L114.3383 -6.5469 L115.6977 -6.5469 L115.9477 -5.7188 L116.0414 -5.7188 Q116.3539 -6.2188 116.9008 -6.4375 Q117.4477 -6.6719 118.057 -6.6719 ZM124.3005 0.125 Q123.2067 0.125 122.5192 -0.7344 Q121.8317 -1.5938 121.8317 -3.2656 Q121.8317 -4.9375 122.5192 -5.7969 Q123.2223 -6.6719 124.3473 -6.6719 Q125.0505 -6.6719 125.5036 -6.3906 Q125.9723 -6.125 126.2223 -5.7188 L126.2848 -5.7188 Q126.2536 -5.9062 126.2067 -6.2656 Q126.1598 -6.6406 126.1598 -7.0156 L126.1598 -9.125 L127.9411 -9.125 L127.9411 0 L126.5817 0 L126.2223 -0.8594 L126.1598 -0.8594 Q125.8942 -0.4375 125.4411 -0.1562 Q125.0036 0.125 124.3005 0.125 ZM124.9255 -1.3125 Q125.6598 -1.3125 125.9567 -1.75 Q126.2692 -2.1875 126.2692 -3.0625 L126.2692 -3.25 Q126.2692 -4.2188 125.9723 -4.7188 Q125.6911 -5.2188 124.8942 -5.2188 Q124.3161 -5.2188 123.9723 -4.7031 Q123.6442 -4.2031 123.6442 -3.2344 Q123.6442 -2.2812 123.9723 -1.7969 Q124.3161 -1.3125 124.9255 -1.3125 ZM131.5996 0 L129.8184 0 L129.8184 -9.125 L131.5996 -9.125 L131.5996 0 ZM136.1815 -6.6719 Q137.5253 -6.6719 138.3222 -5.8906 Q139.119 -5.125 139.119 -3.7031 L139.119 -2.8281 L134.9003 -2.8281 Q134.9159 -2.0781 135.3378 -1.6406 Q135.7753 -1.2188 136.5253 -1.2188 Q137.1659 -1.2188 137.6815 -1.3438 Q138.1972 -1.4688 138.744 -1.7344 L138.744 -0.3438 Q138.2597 -0.1094 137.7284 0 Q137.1972 0.125 136.4472 0.125 Q135.4628 0.125 134.6972 -0.2344 Q133.9472 -0.6094 133.5097 -1.3438 Q133.0878 -2.0938 133.0878 -3.2344 Q133.0878 -4.375 133.4628 -5.1406 Q133.8534 -5.9062 134.5565 -6.2812 Q135.2597 -6.6719 136.1815 -6.6719 ZM136.1815 -5.4062 Q135.6659 -5.4062 135.3222 -5.0625 Q134.994 -4.7344 134.9315 -4.0156 L137.4315 -4.0156 Q137.4315 -4.625 137.119 -5.0156 Q136.8222 -5.4062 136.1815 -5.4062 ZM144.2267 -6.6719 Q144.3673 -6.6719 144.5392 -6.6562 Q144.7267 -6.6406 144.8361 -6.625 L144.6955 -4.9375 Q144.6173 -4.9688 144.4455 -4.9844 Q144.2892 -5 144.1642 -5 Q143.7111 -5 143.2892 -4.8438 Q142.8673 -4.6875 142.6017 -4.3125 Q142.3517 -3.9531 142.3517 -3.3438 L142.3517 0 L140.5705 0 L140.5705 -6.5469 L141.9298 -6.5469 L142.1955 -5.4531 L142.2736 -5.4531 Q142.5548 -5.9531 143.0548 -6.3125 Q143.5705 -6.6719 144.2267 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath32);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="498.935" x2="148.3795" y1="768.368" style="fill:none; clip-path:url(#clipPath2);" y2="768.368"
+      /><line x1="148.3795" x2="148.3795" y1="768.368" style="fill:none; clip-path:url(#clipPath2);" y2="-389.7164"
+      /><line x1="498.935" x2="488.5427" y1="768.368" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="774.368"
+      /><line x1="498.935" x2="488.5427" y1="768.368" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="762.368"
+      /><line x1="-512.9522" x2="-50.6089" y1="-979.0368" style="fill:none; clip-path:url(#clipPath2);" y2="-982.0091"
+      /><line x1="-512.9522" x2="-502.5986" y1="-979.0368" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-985.1035"
+      /><line x1="-512.9522" x2="-502.5215" y1="-979.0368" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-973.1038"
+      /><line x1="-26.6089" x2="-26.6089" y1="-967.1634" style="fill:none; clip-path:url(#clipPath2);" y2="-404.7164"
+      /><line x1="-26.6089" x2="103.1412" y1="-404.7164" style="fill:none; clip-path:url(#clipPath2);" y2="-404.7164"
+      /><line x1="-26.6089" x2="-20.6089" y1="-967.1634" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-956.7711"
+      /><line x1="-26.6089" x2="-32.6089" y1="-967.1634" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-956.7711"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="597.7513" y="752.9891" width="68.0363" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="597.7513" y="752.9891" width="68.0363" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(607.7513,770.9891)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM9.7845 -2.2969 Q9.7377 -2.5 9.6439 -2.8906 Q9.5658 -3.2969 9.4564 -3.75 Q9.347 -4.2188 9.2533 -4.6094 Q9.1595 -5 9.1127 -5.1875 L9.0658 -5.1875 Q9.0345 -5 8.9408 -4.6094 Q8.8627 -4.2188 8.7533 -3.75 Q8.6439 -3.2969 8.5345 -2.8906 Q8.4408 -2.4844 8.3939 -2.2656 L7.8783 0 L5.9564 0 L4.097 -6.5469 L5.8627 -6.5469 L6.6283 -3.6406 Q6.7064 -3.3438 6.7689 -2.9219 Q6.847 -2.5156 6.8939 -2.125 Q6.9564 -1.7344 6.9877 -1.5 L7.0345 -1.5 Q7.0502 -1.6719 7.0814 -1.9531 Q7.1127 -2.2344 7.1595 -2.5312 Q7.222 -2.8281 7.2689 -3.0781 Q7.3158 -3.3281 7.3314 -3.4062 L8.1283 -6.5469 L10.097 -6.5469 L10.8783 -3.4062 Q10.9252 -3.2344 10.9877 -2.8594 Q11.0502 -2.5 11.097 -2.1094 Q11.1595 -1.7344 11.1595 -1.5 L11.2064 -1.5 Q11.2377 -1.7031 11.2845 -2.0938 Q11.347 -2.4844 11.4252 -2.9062 Q11.5033 -3.3438 11.597 -3.6406 L12.3783 -6.5469 L14.1283 -6.5469 L12.2377 0 L10.3002 0 L9.7845 -2.2969 ZM17.9472 -1.3125 Q18.2441 -1.3125 18.5097 -1.3594 Q18.791 -1.4219 19.0722 -1.5156 L19.0722 -0.1875 Q18.7754 -0.0625 18.3535 0.0312 Q17.9316 0.125 17.4316 0.125 Q16.8379 0.125 16.3691 -0.0625 Q15.916 -0.2656 15.6347 -0.7344 Q15.3691 -1.2188 15.3691 -2.0469 L15.3691 -5.2031 L14.5254 -5.2031 L14.5254 -5.9688 L15.5097 -6.5625 L16.0254 -7.9375 L17.166 -7.9375 L17.166 -6.5469 L18.9941 -6.5469 L18.9941 -5.2031 L17.166 -5.2031 L17.166 -2.0469 Q17.166 -1.6875 17.3691 -1.5 Q17.5879 -1.3125 17.9472 -1.3125 ZM27.6396 -4.375 Q27.6396 -2.2031 26.4053 -1.0938 Q25.1709 0 22.9521 0 L20.5303 0 L20.5303 -8.5625 L23.2178 -8.5625 Q24.5615 -8.5625 25.5459 -8.0781 Q26.5459 -7.6094 27.0928 -6.6719 Q27.6396 -5.75 27.6396 -4.375 ZM25.749 -4.3125 Q25.749 -5.75 25.124 -6.4062 Q24.499 -7.0781 23.3115 -7.0781 L22.3428 -7.0781 L22.3428 -1.5 L23.124 -1.5 Q25.749 -1.5 25.749 -4.3125 ZM31.9572 -6.6875 Q33.2697 -6.6875 33.9728 -6.1094 Q34.676 -5.5469 34.676 -4.375 L34.676 0 L33.426 0 L33.0822 -0.8906 L33.0353 -0.8906 Q32.6135 -0.3594 32.1447 -0.1094 Q31.676 0.125 30.8635 0.125 Q29.9885 0.125 29.4103 -0.3906 Q28.8322 -0.9062 28.8322 -1.9531 Q28.8322 -3 29.5666 -3.5 Q30.301 -4 31.7697 -4.0469 L32.9103 -4.0781 L32.9103 -4.375 Q32.9103 -4.8906 32.6291 -5.125 Q32.3635 -5.3594 31.8791 -5.3594 Q31.4103 -5.3594 30.9416 -5.2188 Q30.4885 -5.0938 30.0353 -4.8906 L29.4416 -6.0938 Q29.9728 -6.375 30.6135 -6.5312 Q31.2541 -6.6875 31.9572 -6.6875 ZM32.2072 -3.0156 Q31.3478 -2.9844 31.0041 -2.6875 Q30.676 -2.4062 30.676 -1.9375 Q30.676 -1.5312 30.9103 -1.3594 Q31.1447 -1.1875 31.5353 -1.1875 Q32.1135 -1.1875 32.5041 -1.5312 Q32.9103 -1.875 32.9103 -2.5 L32.9103 -3.0312 L32.2072 -3.0156 ZM39.2834 -1.3125 Q39.5803 -1.3125 39.8459 -1.3594 Q40.1271 -1.4219 40.4084 -1.5156 L40.4084 -0.1875 Q40.1115 -0.0625 39.6896 0.0312 Q39.2678 0.125 38.7678 0.125 Q38.174 0.125 37.7053 -0.0625 Q37.2521 -0.2656 36.9709 -0.7344 Q36.7053 -1.2188 36.7053 -2.0469 L36.7053 -5.2031 L35.8615 -5.2031 L35.8615 -5.9688 L36.8459 -6.5625 L37.3615 -7.9375 L38.5021 -7.9375 L38.5021 -6.5469 L40.3303 -6.5469 L40.3303 -5.2031 L38.5021 -5.2031 L38.5021 -2.0469 Q38.5021 -1.6875 38.7053 -1.5 Q38.924 -1.3125 39.2834 -1.3125 ZM44.4133 -6.6875 Q45.7258 -6.6875 46.4289 -6.1094 Q47.132 -5.5469 47.132 -4.375 L47.132 0 L45.882 0 L45.5383 -0.8906 L45.4914 -0.8906 Q45.0695 -0.3594 44.6008 -0.1094 Q44.132 0.125 43.3195 0.125 Q42.4445 0.125 41.8664 -0.3906 Q41.2883 -0.9062 41.2883 -1.9531 Q41.2883 -3 42.0227 -3.5 Q42.757 -4 44.2258 -4.0469 L45.3664 -4.0781 L45.3664 -4.375 Q45.3664 -4.8906 45.0852 -5.125 Q44.8195 -5.3594 44.3352 -5.3594 Q43.8664 -5.3594 43.3977 -5.2188 Q42.9445 -5.0938 42.4914 -4.8906 L41.8977 -6.0938 Q42.4289 -6.375 43.0695 -6.5312 Q43.7102 -6.6875 44.4133 -6.6875 ZM44.6633 -3.0156 Q43.8039 -2.9844 43.4602 -2.6875 Q43.132 -2.4062 43.132 -1.9375 Q43.132 -1.5312 43.3664 -1.3594 Q43.6008 -1.1875 43.9914 -1.1875 Q44.5695 -1.1875 44.9602 -1.5312 Q45.3664 -1.875 45.3664 -2.5 L45.3664 -3.0312 L44.6633 -3.0156 Z" style="stroke:none; clip-path:url(#clipPath33);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="665.7877" x2="1604.5144" y1="767.9891" style="fill:none; clip-path:url(#clipPath2);" y2="767.9891"
+      /><line x1="1604.5144" x2="1605.7964" y1="767.9891" style="fill:none; clip-path:url(#clipPath2);" y2="-413.859"
+      /><line x1="1605.7964" x2="1360.8369" y1="-413.859" style="fill:none; clip-path:url(#clipPath2);" y2="-413.859"
+      /><line x1="665.7877" x2="676.18" y1="767.9891" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="761.9891"
+      /><line x1="665.7877" x2="676.18" y1="767.9891" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="773.9891"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-764.0115" y="-419.05" width="108.4766" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="-764.0115" y="-419.05" width="108.4766" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-754.0115,-401.05)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 ZM32.295 -7.1719 Q31.2481 -7.1719 30.6856 -6.3906 Q30.1387 -5.6094 30.1387 -4.2656 Q30.1387 -2.8906 30.6543 -2.1406 Q31.17 -1.3906 32.295 -1.3906 Q32.8262 -1.3906 33.3418 -1.5 Q33.8575 -1.625 34.4825 -1.8438 L34.4825 -0.3281 Q33.92 -0.0938 33.3575 0.0156 Q32.8106 0.125 32.1231 0.125 Q30.8106 0.125 29.9512 -0.4219 Q29.0918 -0.9688 28.6856 -1.9531 Q28.2793 -2.9531 28.2793 -4.2656 Q28.2793 -5.5625 28.7325 -6.5625 Q29.2012 -7.5625 30.0918 -8.125 Q30.9981 -8.6875 32.295 -8.6875 Q32.9356 -8.6875 33.5762 -8.5156 Q34.2168 -8.3594 34.795 -8.0938 L34.2168 -6.6094 Q33.7325 -6.8438 33.2481 -7 Q32.7637 -7.1719 32.295 -7.1719 ZM42.1109 -3.2812 Q42.1109 -1.6562 41.2515 -0.7656 Q40.3921 0.125 38.9234 0.125 Q38.0015 0.125 37.2828 -0.2656 Q36.5796 -0.6719 36.1734 -1.4375 Q35.7671 -2.2031 35.7671 -3.2812 Q35.7671 -4.9219 36.6109 -5.7969 Q37.4703 -6.6719 38.9546 -6.6719 Q39.8765 -6.6719 40.5796 -6.2656 Q41.2984 -5.875 41.7046 -5.125 Q42.1109 -4.375 42.1109 -3.2812 ZM37.5796 -3.2812 Q37.5796 -2.3125 37.8921 -1.8125 Q38.2203 -1.3125 38.939 -1.3125 Q39.6421 -1.3125 39.9546 -1.8125 Q40.2828 -2.3125 40.2828 -3.2812 Q40.2828 -4.2656 39.9546 -4.75 Q39.6421 -5.2344 38.9234 -5.2344 Q38.2203 -5.2344 37.8921 -4.75 Q37.5796 -4.2656 37.5796 -3.2812 ZM47.3046 -6.6719 Q48.3671 -6.6719 48.9921 -6.0938 Q49.6327 -5.5312 49.6327 -4.2656 L49.6327 0 L47.8514 0 L47.8514 -3.8281 Q47.8514 -4.5312 47.5858 -4.8906 Q47.3358 -5.25 46.7889 -5.25 Q45.9764 -5.25 45.6639 -4.6875 Q45.3671 -4.125 45.3671 -3.0781 L45.3671 0 L43.5858 0 L43.5858 -6.5469 L44.9452 -6.5469 L45.1952 -5.7188 L45.2889 -5.7188 Q45.6014 -6.2188 46.1483 -6.4375 Q46.6952 -6.6719 47.3046 -6.6719 ZM54.2355 -1.3125 Q54.5324 -1.3125 54.798 -1.3594 Q55.0792 -1.4219 55.3605 -1.5156 L55.3605 -0.1875 Q55.0636 -0.0625 54.6417 0.0312 Q54.2199 0.125 53.7199 0.125 Q53.1261 0.125 52.6574 -0.0625 Q52.2042 -0.2656 51.923 -0.7344 Q51.6574 -1.2188 51.6574 -2.0469 L51.6574 -5.2031 L50.8136 -5.2031 L50.8136 -5.9688 L51.798 -6.5625 L52.3136 -7.9375 L53.4542 -7.9375 L53.4542 -6.5469 L55.2824 -6.5469 L55.2824 -5.2031 L53.4542 -5.2031 L53.4542 -2.0469 Q53.4542 -1.6875 53.6574 -1.5 Q53.8761 -1.3125 54.2355 -1.3125 ZM60.3342 -6.6719 Q60.4748 -6.6719 60.6467 -6.6562 Q60.8342 -6.6406 60.9435 -6.625 L60.8029 -4.9375 Q60.7248 -4.9688 60.5529 -4.9844 Q60.3967 -5 60.2717 -5 Q59.8185 -5 59.3967 -4.8438 Q58.9748 -4.6875 58.7092 -4.3125 Q58.4592 -3.9531 58.4592 -3.3438 L58.4592 0 L56.6779 0 L56.6779 -6.5469 L58.0373 -6.5469 L58.3029 -5.4531 L58.381 -5.4531 Q58.6623 -5.9531 59.1623 -6.3125 Q59.6779 -6.6719 60.3342 -6.6719 ZM68.0791 -3.2812 Q68.0791 -1.6562 67.2197 -0.7656 Q66.3603 0.125 64.8916 0.125 Q63.9697 0.125 63.2509 -0.2656 Q62.5478 -0.6719 62.1416 -1.4375 Q61.7353 -2.2031 61.7353 -3.2812 Q61.7353 -4.9219 62.5791 -5.7969 Q63.4384 -6.6719 64.9228 -6.6719 Q65.8447 -6.6719 66.5478 -6.2656 Q67.2666 -5.875 67.6728 -5.125 Q68.0791 -4.375 68.0791 -3.2812 ZM63.5478 -3.2812 Q63.5478 -2.3125 63.8603 -1.8125 Q64.1884 -1.3125 64.9072 -1.3125 Q65.6103 -1.3125 65.9228 -1.8125 Q66.2509 -2.3125 66.2509 -3.2812 Q66.2509 -4.2656 65.9228 -4.75 Q65.6103 -5.2344 64.8916 -5.2344 Q64.1884 -5.2344 63.8603 -4.75 Q63.5478 -4.2656 63.5478 -3.2812 ZM71.3353 0 L69.554 0 L69.554 -9.125 L71.3353 -9.125 L71.3353 0 ZM74.9953 0 L73.214 0 L73.214 -9.125 L74.9953 -9.125 L74.9953 0 ZM79.5772 -6.6719 Q80.9209 -6.6719 81.7178 -5.8906 Q82.5147 -5.125 82.5147 -3.7031 L82.5147 -2.8281 L78.2959 -2.8281 Q78.3115 -2.0781 78.7334 -1.6406 Q79.1709 -1.2188 79.9209 -1.2188 Q80.5615 -1.2188 81.0772 -1.3438 Q81.5928 -1.4688 82.1397 -1.7344 L82.1397 -0.3438 Q81.6553 -0.1094 81.124 0 Q80.5928 0.125 79.8428 0.125 Q78.8584 0.125 78.0928 -0.2344 Q77.3428 -0.6094 76.9053 -1.3438 Q76.4834 -2.0938 76.4834 -3.2344 Q76.4834 -4.375 76.8584 -5.1406 Q77.249 -5.9062 77.9522 -6.2812 Q78.6553 -6.6719 79.5772 -6.6719 ZM79.5772 -5.4062 Q79.0615 -5.4062 78.7178 -5.0625 Q78.3897 -4.7344 78.3272 -4.0156 L80.8272 -4.0156 Q80.8272 -4.625 80.5147 -5.0156 Q80.2178 -5.4062 79.5772 -5.4062 ZM87.6223 -6.6719 Q87.763 -6.6719 87.9348 -6.6562 Q88.1223 -6.6406 88.2317 -6.625 L88.0911 -4.9375 Q88.013 -4.9688 87.8411 -4.9844 Q87.6848 -5 87.5598 -5 Q87.1067 -5 86.6848 -4.8438 Q86.263 -4.6875 85.9973 -4.3125 Q85.7473 -3.9531 85.7473 -3.3438 L85.7473 0 L83.9661 0 L83.9661 -6.5469 L85.3255 -6.5469 L85.5911 -5.4531 L85.6692 -5.4531 Q85.9505 -5.9531 86.4505 -6.3125 Q86.9661 -6.6719 87.6223 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath34);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><path d="M-655.5349 -404.0922 C103.1412 -404.6813 -655.5349 -404.0922 103.1412 -404.6813" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="103.1412" x2="92.7536" y1="-404.6813" style="fill:none; clip-path:url(#clipPath2);" y2="-398.6732"
+      /><line x1="103.1412" x2="92.7443" y1="-404.6813" style="fill:none; clip-path:url(#clipPath2);" y2="-410.6732"
+      /><line x1="-35.2292" x2="-35.2292" y1="-967.1634" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-710.1512"
+      /><line x1="-35.2292" x2="-709.7731" y1="-710.1512" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-710.1512"
+      /><line x1="-709.7731" x2="-709.7731" y1="-710.1512" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-419.05"
+      /><line x1="-35.2292" x2="-29.2292" y1="-967.1634" style="fill:none; clip-path:url(#clipPath2);" y2="-956.7711"
+      /><line x1="-35.2292" x2="-41.2292" y1="-967.1634" style="fill:none; clip-path:url(#clipPath2);" y2="-956.7711"
+      /><line x1="498.935" x2="-709.7731" y1="768.368" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="768.368"
+      /><line x1="-709.7731" x2="-709.7731" y1="768.368" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-389.05"
+      /><line x1="498.935" x2="488.5427" y1="768.368" style="fill:none; clip-path:url(#clipPath2);" y2="774.368"
+      /><line x1="498.935" x2="488.5427" y1="768.368" style="fill:none; clip-path:url(#clipPath2);" y2="762.368"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-750.1925" y="-557.6765" width="134.7328" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="-750.1925" y="-557.6765" width="134.7328" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-740.1925,-539.6765)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 ZM58.5511 -7.1719 Q57.5043 -7.1719 56.9418 -6.3906 Q56.3949 -5.6094 56.3949 -4.2656 Q56.3949 -2.8906 56.9105 -2.1406 Q57.4261 -1.3906 58.5511 -1.3906 Q59.0824 -1.3906 59.598 -1.5 Q60.1136 -1.625 60.7386 -1.8438 L60.7386 -0.3281 Q60.1761 -0.0938 59.6136 0.0156 Q59.0668 0.125 58.3793 0.125 Q57.0668 0.125 56.2074 -0.4219 Q55.348 -0.9688 54.9418 -1.9531 Q54.5355 -2.9531 54.5355 -4.2656 Q54.5355 -5.5625 54.9886 -6.5625 Q55.4574 -7.5625 56.348 -8.125 Q57.2543 -8.6875 58.5511 -8.6875 Q59.1918 -8.6875 59.8324 -8.5156 Q60.473 -8.3594 61.0511 -8.0938 L60.473 -6.6094 Q59.9886 -6.8438 59.5043 -7 Q59.0199 -7.1719 58.5511 -7.1719 ZM68.3671 -3.2812 Q68.3671 -1.6562 67.5077 -0.7656 Q66.6483 0.125 65.1796 0.125 Q64.2577 0.125 63.5389 -0.2656 Q62.8358 -0.6719 62.4296 -1.4375 Q62.0233 -2.2031 62.0233 -3.2812 Q62.0233 -4.9219 62.8671 -5.7969 Q63.7264 -6.6719 65.2108 -6.6719 Q66.1327 -6.6719 66.8358 -6.2656 Q67.5546 -5.875 67.9608 -5.125 Q68.3671 -4.375 68.3671 -3.2812 ZM63.8358 -3.2812 Q63.8358 -2.3125 64.1483 -1.8125 Q64.4764 -1.3125 65.1952 -1.3125 Q65.8983 -1.3125 66.2108 -1.8125 Q66.5389 -2.3125 66.5389 -3.2812 Q66.5389 -4.2656 66.2108 -4.75 Q65.8983 -5.2344 65.1796 -5.2344 Q64.4764 -5.2344 64.1483 -4.75 Q63.8358 -4.2656 63.8358 -3.2812 ZM73.5607 -6.6719 Q74.6232 -6.6719 75.2482 -6.0938 Q75.8889 -5.5312 75.8889 -4.2656 L75.8889 0 L74.1076 0 L74.1076 -3.8281 Q74.1076 -4.5312 73.842 -4.8906 Q73.592 -5.25 73.0451 -5.25 Q72.2326 -5.25 71.9201 -4.6875 Q71.6232 -4.125 71.6232 -3.0781 L71.6232 0 L69.842 0 L69.842 -6.5469 L71.2014 -6.5469 L71.4514 -5.7188 L71.5451 -5.7188 Q71.8576 -6.2188 72.4045 -6.4375 Q72.9514 -6.6719 73.5607 -6.6719 ZM80.4917 -1.3125 Q80.7885 -1.3125 81.0542 -1.3594 Q81.3354 -1.4219 81.6167 -1.5156 L81.6167 -0.1875 Q81.3198 -0.0625 80.8979 0.0312 Q80.476 0.125 79.976 0.125 Q79.3823 0.125 78.9135 -0.0625 Q78.4604 -0.2656 78.1792 -0.7344 Q77.9135 -1.2188 77.9135 -2.0469 L77.9135 -5.2031 L77.0698 -5.2031 L77.0698 -5.9688 L78.0542 -6.5625 L78.5698 -7.9375 L79.7104 -7.9375 L79.7104 -6.5469 L81.5385 -6.5469 L81.5385 -5.2031 L79.7104 -5.2031 L79.7104 -2.0469 Q79.7104 -1.6875 79.9135 -1.5 Q80.1323 -1.3125 80.4917 -1.3125 ZM86.5903 -6.6719 Q86.731 -6.6719 86.9028 -6.6562 Q87.0903 -6.6406 87.1997 -6.625 L87.0591 -4.9375 Q86.981 -4.9688 86.8091 -4.9844 Q86.6528 -5 86.5278 -5 Q86.0747 -5 85.6528 -4.8438 Q85.231 -4.6875 84.9653 -4.3125 Q84.7153 -3.9531 84.7153 -3.3438 L84.7153 0 L82.9341 0 L82.9341 -6.5469 L84.2935 -6.5469 L84.5591 -5.4531 L84.6372 -5.4531 Q84.9185 -5.9531 85.4185 -6.3125 Q85.9341 -6.6719 86.5903 -6.6719 ZM94.3353 -3.2812 Q94.3353 -1.6562 93.4759 -0.7656 Q92.6165 0.125 91.1478 0.125 Q90.2259 0.125 89.5071 -0.2656 Q88.804 -0.6719 88.3978 -1.4375 Q87.9915 -2.2031 87.9915 -3.2812 Q87.9915 -4.9219 88.8353 -5.7969 Q89.6946 -6.6719 91.179 -6.6719 Q92.1009 -6.6719 92.804 -6.2656 Q93.5228 -5.875 93.929 -5.125 Q94.3353 -4.375 94.3353 -3.2812 ZM89.804 -3.2812 Q89.804 -2.3125 90.1165 -1.8125 Q90.4446 -1.3125 91.1634 -1.3125 Q91.8665 -1.3125 92.179 -1.8125 Q92.5071 -2.3125 92.5071 -3.2812 Q92.5071 -4.2656 92.179 -4.75 Q91.8665 -5.2344 91.1478 -5.2344 Q90.4446 -5.2344 90.1165 -4.75 Q89.804 -4.2656 89.804 -3.2812 ZM97.5914 0 L95.8102 0 L95.8102 -9.125 L97.5914 -9.125 L97.5914 0 ZM101.2514 0 L99.4702 0 L99.4702 -9.125 L101.2514 -9.125 L101.2514 0 ZM105.8333 -6.6719 Q107.1771 -6.6719 107.974 -5.8906 Q108.7708 -5.125 108.7708 -3.7031 L108.7708 -2.8281 L104.5521 -2.8281 Q104.5677 -2.0781 104.9896 -1.6406 Q105.4271 -1.2188 106.1771 -1.2188 Q106.8177 -1.2188 107.3333 -1.3438 Q107.849 -1.4688 108.3958 -1.7344 L108.3958 -0.3438 Q107.9115 -0.1094 107.3802 0 Q106.849 0.125 106.099 0.125 Q105.1146 0.125 104.349 -0.2344 Q103.599 -0.6094 103.1615 -1.3438 Q102.7396 -2.0938 102.7396 -3.2344 Q102.7396 -4.375 103.1146 -5.1406 Q103.5052 -5.9062 104.2083 -6.2812 Q104.9115 -6.6719 105.8333 -6.6719 ZM105.8333 -5.4062 Q105.3177 -5.4062 104.974 -5.0625 Q104.6458 -4.7344 104.5833 -4.0156 L107.0833 -4.0156 Q107.0833 -4.625 106.7708 -5.0156 Q106.474 -5.4062 105.8333 -5.4062 ZM113.8785 -6.6719 Q114.0191 -6.6719 114.191 -6.6562 Q114.3785 -6.6406 114.4879 -6.625 L114.3473 -4.9375 Q114.2691 -4.9688 114.0973 -4.9844 Q113.941 -5 113.816 -5 Q113.3629 -5 112.941 -4.8438 Q112.5191 -4.6875 112.2535 -4.3125 Q112.0035 -3.9531 112.0035 -3.3438 L112.0035 0 L110.2223 0 L110.2223 -6.5469 L111.5816 -6.5469 L111.8473 -5.4531 L111.9254 -5.4531 Q112.2066 -5.9531 112.7066 -6.3125 Q113.2223 -6.6719 113.8785 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath35);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="371.9608" y="194.0995" width="79.5204" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="371.9608" y="194.0995" width="79.5204" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(381.9608,212.0995)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM24.6055 -6.5469 Q25.7618 -6.5469 26.3399 -5.9844 Q26.9336 -5.4375 26.9336 -4.1875 L26.9336 0 L25.9024 0 L25.9024 -4.1094 Q25.9024 -5.6562 24.4493 -5.6562 Q23.3868 -5.6562 22.9805 -5.0625 Q22.5743 -4.4688 22.5743 -3.3438 L22.5743 0 L21.5118 0 L21.5118 -6.4375 L22.3711 -6.4375 L22.5274 -5.5625 L22.5899 -5.5625 Q22.9024 -6.0625 23.4493 -6.2969 Q23.9961 -6.5469 24.6055 -6.5469 ZM31.0841 -0.75 Q31.3184 -0.75 31.5684 -0.7812 Q31.8184 -0.8281 31.9747 -0.875 L31.9747 -0.0781 Q31.8184 0.0156 31.5059 0.0625 Q31.1934 0.125 30.8966 0.125 Q30.3966 0.125 29.9591 -0.0469 Q29.5372 -0.2344 29.2716 -0.6562 Q29.0216 -1.0938 29.0216 -1.875 L29.0216 -5.6094 L28.0997 -5.6094 L28.0997 -6.125 L29.0216 -6.5469 L29.4434 -7.9062 L30.0684 -7.9062 L30.0684 -6.4375 L31.9278 -6.4375 L31.9278 -5.6094 L30.0684 -5.6094 L30.0684 -1.8906 Q30.0684 -1.3125 30.3497 -1.0312 Q30.6309 -0.75 31.0841 -0.75 ZM33.8067 -8.8438 Q34.0411 -8.8438 34.2286 -8.6719 Q34.4161 -8.5156 34.4161 -8.1719 Q34.4161 -7.8438 34.2286 -7.6719 Q34.0411 -7.5 33.8067 -7.5 Q33.5411 -7.5 33.3536 -7.6719 Q33.1817 -7.8438 33.1817 -8.1719 Q33.1817 -8.5156 33.3536 -8.6719 Q33.5411 -8.8438 33.8067 -8.8438 ZM34.3223 -6.4375 L34.3223 0 L33.2598 0 L33.2598 -6.4375 L34.3223 -6.4375 ZM38.5121 -0.75 Q38.7465 -0.75 38.9965 -0.7812 Q39.2465 -0.8281 39.4027 -0.875 L39.4027 -0.0781 Q39.2465 0.0156 38.934 0.0625 Q38.6215 0.125 38.3246 0.125 Q37.8246 0.125 37.3871 -0.0469 Q36.9652 -0.2344 36.6996 -0.6562 Q36.4496 -1.0938 36.4496 -1.875 L36.4496 -5.6094 L35.5277 -5.6094 L35.5277 -6.125 L36.4496 -6.5469 L36.8715 -7.9062 L37.4965 -7.9062 L37.4965 -6.4375 L39.3559 -6.4375 L39.3559 -5.6094 L37.4965 -5.6094 L37.4965 -1.8906 Q37.4965 -1.3125 37.7777 -1.0312 Q38.059 -0.75 38.5121 -0.75 ZM39.6879 -6.4375 L40.8129 -6.4375 L42.2035 -2.7656 Q42.391 -2.2969 42.5316 -1.8594 Q42.6723 -1.4219 42.7504 -1.0156 L42.7973 -1.0156 Q42.8598 -1.3125 43.016 -1.7969 Q43.1723 -2.2969 43.3441 -2.7812 L44.6566 -6.4375 L45.7973 -6.4375 L43.016 0.8906 Q42.6879 1.7969 42.141 2.3281 Q41.6098 2.875 40.6879 2.875 Q40.391 2.875 40.1723 2.8438 Q39.9535 2.8125 39.7973 2.7812 L39.7973 1.9375 Q39.9379 1.9688 40.1254 1.9844 Q40.3129 2.0156 40.516 2.0156 Q41.0629 2.0156 41.4066 1.7031 Q41.7504 1.3906 41.9379 0.875 L42.2816 0.0312 L39.6879 -6.4375 ZM46.3861 -2.3281 L50.9173 -4.2188 L46.3861 -6.3594 L46.3861 -7.2969 L52.0423 -4.4688 L52.0423 -3.875 L46.3861 -1.3906 L46.3861 -2.3281 ZM53.2501 -2.3281 L57.7814 -4.2188 L53.2501 -6.3594 L53.2501 -7.2969 L58.9064 -4.4688 L58.9064 -3.875 L53.2501 -1.3906 L53.2501 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath36);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(393.721,228.4436)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 Z" style="stroke:none; clip-path:url(#clipPath37);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="451.4812" x2="481.3933" y1="214.4436" style="fill:none; clip-path:url(#clipPath2);" y2="214.4436"
+      /><line x1="481.3933" x2="481.3933" y1="214.4436" style="fill:none; clip-path:url(#clipPath2);" y2="-404.7164"
+      /><line x1="481.3933" x2="193.6178" y1="-404.7164" style="fill:none; clip-path:url(#clipPath2);" y2="-404.7164"
+      /><line x1="451.4812" x2="461.8735" y1="214.4436" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="208.4436"
+      /><line x1="451.4812" x2="461.8735" y1="214.4436" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="220.4436"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="465.7504" y="282.4694" width="79.5204" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="465.7504" y="282.4694" width="79.5204" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(475.7504,300.4694)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM24.6055 -6.5469 Q25.7618 -6.5469 26.3399 -5.9844 Q26.9336 -5.4375 26.9336 -4.1875 L26.9336 0 L25.9024 0 L25.9024 -4.1094 Q25.9024 -5.6562 24.4493 -5.6562 Q23.3868 -5.6562 22.9805 -5.0625 Q22.5743 -4.4688 22.5743 -3.3438 L22.5743 0 L21.5118 0 L21.5118 -6.4375 L22.3711 -6.4375 L22.5274 -5.5625 L22.5899 -5.5625 Q22.9024 -6.0625 23.4493 -6.2969 Q23.9961 -6.5469 24.6055 -6.5469 ZM31.0841 -0.75 Q31.3184 -0.75 31.5684 -0.7812 Q31.8184 -0.8281 31.9747 -0.875 L31.9747 -0.0781 Q31.8184 0.0156 31.5059 0.0625 Q31.1934 0.125 30.8966 0.125 Q30.3966 0.125 29.9591 -0.0469 Q29.5372 -0.2344 29.2716 -0.6562 Q29.0216 -1.0938 29.0216 -1.875 L29.0216 -5.6094 L28.0997 -5.6094 L28.0997 -6.125 L29.0216 -6.5469 L29.4434 -7.9062 L30.0684 -7.9062 L30.0684 -6.4375 L31.9278 -6.4375 L31.9278 -5.6094 L30.0684 -5.6094 L30.0684 -1.8906 Q30.0684 -1.3125 30.3497 -1.0312 Q30.6309 -0.75 31.0841 -0.75 ZM33.8067 -8.8438 Q34.0411 -8.8438 34.2286 -8.6719 Q34.4161 -8.5156 34.4161 -8.1719 Q34.4161 -7.8438 34.2286 -7.6719 Q34.0411 -7.5 33.8067 -7.5 Q33.5411 -7.5 33.3536 -7.6719 Q33.1817 -7.8438 33.1817 -8.1719 Q33.1817 -8.5156 33.3536 -8.6719 Q33.5411 -8.8438 33.8067 -8.8438 ZM34.3223 -6.4375 L34.3223 0 L33.2598 0 L33.2598 -6.4375 L34.3223 -6.4375 ZM38.5121 -0.75 Q38.7465 -0.75 38.9965 -0.7812 Q39.2465 -0.8281 39.4027 -0.875 L39.4027 -0.0781 Q39.2465 0.0156 38.934 0.0625 Q38.6215 0.125 38.3246 0.125 Q37.8246 0.125 37.3871 -0.0469 Q36.9652 -0.2344 36.6996 -0.6562 Q36.4496 -1.0938 36.4496 -1.875 L36.4496 -5.6094 L35.5277 -5.6094 L35.5277 -6.125 L36.4496 -6.5469 L36.8715 -7.9062 L37.4965 -7.9062 L37.4965 -6.4375 L39.3559 -6.4375 L39.3559 -5.6094 L37.4965 -5.6094 L37.4965 -1.8906 Q37.4965 -1.3125 37.7777 -1.0312 Q38.059 -0.75 38.5121 -0.75 ZM39.6879 -6.4375 L40.8129 -6.4375 L42.2035 -2.7656 Q42.391 -2.2969 42.5316 -1.8594 Q42.6723 -1.4219 42.7504 -1.0156 L42.7973 -1.0156 Q42.8598 -1.3125 43.016 -1.7969 Q43.1723 -2.2969 43.3441 -2.7812 L44.6566 -6.4375 L45.7973 -6.4375 L43.016 0.8906 Q42.6879 1.7969 42.141 2.3281 Q41.6098 2.875 40.6879 2.875 Q40.391 2.875 40.1723 2.8438 Q39.9535 2.8125 39.7973 2.7812 L39.7973 1.9375 Q39.9379 1.9688 40.1254 1.9844 Q40.3129 2.0156 40.516 2.0156 Q41.0629 2.0156 41.4066 1.7031 Q41.7504 1.3906 41.9379 0.875 L42.2816 0.0312 L39.6879 -6.4375 ZM46.3861 -2.3281 L50.9173 -4.2188 L46.3861 -6.3594 L46.3861 -7.2969 L52.0423 -4.4688 L52.0423 -3.875 L46.3861 -1.3906 L46.3861 -2.3281 ZM53.2501 -2.3281 L57.7814 -4.2188 L53.2501 -6.3594 L53.2501 -7.2969 L58.9064 -4.4688 L58.9064 -3.875 L53.2501 -1.3906 L53.2501 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath38);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(491.7225,316.8136)"
+    ><path d="M8.0469 -3.0312 Q8.0469 -2.1406 7.6562 -1.4219 Q7.2656 -0.7031 6.4844 -0.2812 Q5.7031 0.125 4.5 0.125 Q2.7969 0.125 1.9062 -0.75 Q1.0156 -1.625 1.0156 -3.0469 L1.0156 -8.5625 L2.8281 -8.5625 L2.8281 -3.3281 Q2.8281 -2.2656 3.2656 -1.8281 Q3.7031 -1.4062 4.5469 -1.4062 Q5.4375 -1.4062 5.8281 -1.875 Q6.2344 -2.3438 6.2344 -3.3438 L6.2344 -8.5625 L8.0469 -8.5625 L8.0469 -3.0312 ZM14.5877 -1.9375 Q14.5877 -0.9531 13.8846 -0.4062 Q13.1814 0.125 11.7908 0.125 Q11.1033 0.125 10.6033 0.0312 Q10.1189 -0.0625 9.6189 -0.2656 L9.6189 -1.7344 Q10.1502 -1.5 10.7596 -1.3438 Q11.3689 -1.1875 11.8377 -1.1875 Q12.3689 -1.1875 12.5877 -1.3438 Q12.8221 -1.5 12.8221 -1.75 Q12.8221 -1.9219 12.7283 -2.0469 Q12.6346 -2.1875 12.3377 -2.3438 Q12.0408 -2.5156 11.4002 -2.7812 Q10.7908 -3.0469 10.3846 -3.2969 Q9.9939 -3.5625 9.8064 -3.9219 Q9.6189 -4.2969 9.6189 -4.8438 Q9.6189 -5.7656 10.3221 -6.2188 Q11.0252 -6.6719 12.1971 -6.6719 Q12.8221 -6.6719 13.3689 -6.5469 Q13.9158 -6.4375 14.5096 -6.1562 L13.9627 -4.875 Q13.4939 -5.0781 13.0564 -5.2188 Q12.6189 -5.3594 12.1814 -5.3594 Q11.3846 -5.3594 11.3846 -4.9219 Q11.3846 -4.7656 11.4783 -4.6406 Q11.5877 -4.5156 11.8846 -4.3594 Q12.1814 -4.2188 12.7596 -3.9844 Q13.3221 -3.75 13.7283 -3.5 Q14.1346 -3.2656 14.3533 -2.8906 Q14.5877 -2.5312 14.5877 -1.9375 ZM18.6767 -6.6719 Q20.0205 -6.6719 20.8174 -5.8906 Q21.6142 -5.125 21.6142 -3.7031 L21.6142 -2.8281 L17.3955 -2.8281 Q17.4111 -2.0781 17.833 -1.6406 Q18.2705 -1.2188 19.0205 -1.2188 Q19.6611 -1.2188 20.1767 -1.3438 Q20.6924 -1.4688 21.2392 -1.7344 L21.2392 -0.3438 Q20.7549 -0.1094 20.2236 0 Q19.6924 0.125 18.9424 0.125 Q17.958 0.125 17.1924 -0.2344 Q16.4424 -0.6094 16.0049 -1.3438 Q15.583 -2.0938 15.583 -3.2344 Q15.583 -4.375 15.958 -5.1406 Q16.3486 -5.9062 17.0517 -6.2812 Q17.7549 -6.6719 18.6767 -6.6719 ZM18.6767 -5.4062 Q18.1611 -5.4062 17.8174 -5.0625 Q17.4892 -4.7344 17.4267 -4.0156 L19.9267 -4.0156 Q19.9267 -4.625 19.6142 -5.0156 Q19.3174 -5.4062 18.6767 -5.4062 ZM26.7219 -6.6719 Q26.8625 -6.6719 27.0344 -6.6562 Q27.2219 -6.6406 27.3313 -6.625 L27.1907 -4.9375 Q27.1125 -4.9688 26.9407 -4.9844 Q26.7844 -5 26.6594 -5 Q26.2063 -5 25.7844 -4.8438 Q25.3625 -4.6875 25.0969 -4.3125 Q24.8469 -3.9531 24.8469 -3.3438 L24.8469 0 L23.0657 0 L23.0657 -6.5469 L24.425 -6.5469 L24.6907 -5.4531 L24.7688 -5.4531 Q25.05 -5.9531 25.55 -6.3125 Q26.0657 -6.6719 26.7219 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath39);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M465.7504 302.8335 C-63.0022 303.3551 465.7504 302.8335 -63.0022 303.3551" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="465.7504" x2="455.3641" y1="302.8335" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="308.8438"
+      /><line x1="465.7504" x2="455.3522" y1="302.8335" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="296.8438"
+      /><line x1="526.9734" x2="526.9734" y1="282.4694" style="fill:none; clip-path:url(#clipPath2);" y2="-404.7164"
+      /><line x1="526.9734" x2="193.6178" y1="-404.7164" style="fill:none; clip-path:url(#clipPath2);" y2="-404.7164"
+      /><line x1="526.9734" x2="520.9734" y1="282.4694" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="272.0771"
+      /><line x1="526.9734" x2="532.9734" y1="282.4694" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="272.0771"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-179.0766" y="351.015" width="120" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-179.0766" y="351.015" width="120" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-158.0766,369.015)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath40);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-169.0766,385.3592)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 ZM38.7264 -8.5625 Q40.4764 -8.5625 41.3045 -7.9219 Q42.1482 -7.2969 42.1482 -6 Q42.1482 -5.4062 41.9139 -4.9688 Q41.6951 -4.5312 41.3201 -4.2188 Q40.9607 -3.9219 40.5545 -3.7344 L43.0701 0 L41.0545 0 L39.0076 -3.2812 L38.0389 -3.2812 L38.0389 0 L36.2264 0 L36.2264 -8.5625 L38.7264 -8.5625 ZM38.5857 -7.0781 L38.0389 -7.0781 L38.0389 -4.7656 L38.6326 -4.7656 Q39.5232 -4.7656 39.9139 -5.0625 Q40.3045 -5.3594 40.3045 -5.9531 Q40.3045 -6.5625 39.8826 -6.8125 Q39.4764 -7.0781 38.5857 -7.0781 ZM46.7089 -6.6719 Q48.0527 -6.6719 48.8495 -5.8906 Q49.6464 -5.125 49.6464 -3.7031 L49.6464 -2.8281 L45.4277 -2.8281 Q45.4433 -2.0781 45.8652 -1.6406 Q46.3027 -1.2188 47.0527 -1.2188 Q47.6933 -1.2188 48.2089 -1.3438 Q48.7245 -1.4688 49.2714 -1.7344 L49.2714 -0.3438 Q48.787 -0.1094 48.2558 0 Q47.7245 0.125 46.9745 0.125 Q45.9902 0.125 45.2245 -0.2344 Q44.4745 -0.6094 44.037 -1.3438 Q43.6152 -2.0938 43.6152 -3.2344 Q43.6152 -4.375 43.9902 -5.1406 Q44.3808 -5.9062 45.0839 -6.2812 Q45.787 -6.6719 46.7089 -6.6719 ZM46.7089 -5.4062 Q46.1933 -5.4062 45.8495 -5.0625 Q45.5214 -4.7344 45.4589 -4.0156 L47.9589 -4.0156 Q47.9589 -4.625 47.6464 -5.0156 Q47.3495 -5.4062 46.7089 -5.4062 ZM54.7385 -6.6719 Q55.8479 -6.6719 56.5354 -5.8125 Q57.2229 -4.9531 57.2229 -3.2812 Q57.2229 -1.625 56.5041 -0.75 Q55.801 0.125 54.6916 0.125 Q53.9885 0.125 53.5666 -0.125 Q53.1447 -0.3906 52.8791 -0.7188 L52.7854 -0.7188 Q52.8791 -0.2188 52.8791 0.2344 L52.8791 2.875 L51.0979 2.875 L51.0979 -6.5469 L52.551 -6.5469 L52.801 -5.7031 L52.8791 -5.7031 Q53.1447 -6.0938 53.5822 -6.375 Q54.0354 -6.6719 54.7385 -6.6719 ZM54.176 -5.25 Q53.4729 -5.25 53.1916 -4.8125 Q52.9104 -4.375 52.8791 -3.4844 L52.8791 -3.2969 Q52.8791 -2.3594 53.1604 -1.8438 Q53.4416 -1.3281 54.1916 -1.3281 Q54.801 -1.3281 55.0979 -1.8438 Q55.3947 -2.3594 55.3947 -3.3125 Q55.3947 -5.25 54.176 -5.25 ZM64.647 -3.2812 Q64.647 -1.6562 63.7877 -0.7656 Q62.9283 0.125 61.4595 0.125 Q60.5377 0.125 59.8189 -0.2656 Q59.1158 -0.6719 58.7095 -1.4375 Q58.3033 -2.2031 58.3033 -3.2812 Q58.3033 -4.9219 59.147 -5.7969 Q60.0064 -6.6719 61.4908 -6.6719 Q62.4127 -6.6719 63.1158 -6.2656 Q63.8345 -5.875 64.2408 -5.125 Q64.647 -4.375 64.647 -3.2812 ZM60.1158 -3.2812 Q60.1158 -2.3125 60.4283 -1.8125 Q60.7564 -1.3125 61.4752 -1.3125 Q62.1783 -1.3125 62.4908 -1.8125 Q62.8189 -2.3125 62.8189 -3.2812 Q62.8189 -4.2656 62.4908 -4.75 Q62.1783 -5.2344 61.4595 -5.2344 Q60.7564 -5.2344 60.4283 -4.75 Q60.1158 -4.2656 60.1158 -3.2812 ZM70.7001 -1.9375 Q70.7001 -0.9531 69.997 -0.4062 Q69.2938 0.125 67.9032 0.125 Q67.2157 0.125 66.7157 0.0312 Q66.2313 -0.0625 65.7313 -0.2656 L65.7313 -1.7344 Q66.2626 -1.5 66.872 -1.3438 Q67.4813 -1.1875 67.9501 -1.1875 Q68.4813 -1.1875 68.7001 -1.3438 Q68.9345 -1.5 68.9345 -1.75 Q68.9345 -1.9219 68.8407 -2.0469 Q68.747 -2.1875 68.4501 -2.3438 Q68.1532 -2.5156 67.5126 -2.7812 Q66.9032 -3.0469 66.497 -3.2969 Q66.1063 -3.5625 65.9188 -3.9219 Q65.7313 -4.2969 65.7313 -4.8438 Q65.7313 -5.7656 66.4345 -6.2188 Q67.1376 -6.6719 68.3095 -6.6719 Q68.9345 -6.6719 69.4813 -6.5469 Q70.0282 -6.4375 70.622 -6.1562 L70.0751 -4.875 Q69.6063 -5.0781 69.1688 -5.2188 Q68.7313 -5.3594 68.2938 -5.3594 Q67.497 -5.3594 67.497 -4.9219 Q67.497 -4.7656 67.5907 -4.6406 Q67.7001 -4.5156 67.997 -4.3594 Q68.2938 -4.2188 68.872 -3.9844 Q69.4345 -3.75 69.8407 -3.5 Q70.247 -3.2656 70.4657 -2.8906 Q70.7001 -2.5312 70.7001 -1.9375 ZM72.9922 -9.125 Q73.3829 -9.125 73.6641 -8.9375 Q73.961 -8.75 73.961 -8.25 Q73.961 -7.75 73.6641 -7.5625 Q73.3829 -7.375 72.9922 -7.375 Q72.5704 -7.375 72.2891 -7.5625 Q72.0079 -7.75 72.0079 -8.25 Q72.0079 -8.75 72.2891 -8.9375 Q72.5704 -9.125 72.9922 -9.125 ZM73.8672 -6.5469 L73.8672 0 L72.086 0 L72.086 -6.5469 L73.8672 -6.5469 ZM78.5116 -1.3125 Q78.8085 -1.3125 79.0741 -1.3594 Q79.3554 -1.4219 79.6366 -1.5156 L79.6366 -0.1875 Q79.3398 -0.0625 78.9179 0.0312 Q78.496 0.125 77.996 0.125 Q77.4023 0.125 76.9335 -0.0625 Q76.4804 -0.2656 76.1991 -0.7344 Q75.9335 -1.2188 75.9335 -2.0469 L75.9335 -5.2031 L75.0898 -5.2031 L75.0898 -5.9688 L76.0741 -6.5625 L76.5898 -7.9375 L77.7304 -7.9375 L77.7304 -6.5469 L79.5585 -6.5469 L79.5585 -5.2031 L77.7304 -5.2031 L77.7304 -2.0469 Q77.7304 -1.6875 77.9335 -1.5 Q78.1523 -1.3125 78.5116 -1.3125 ZM86.9072 -3.2812 Q86.9072 -1.6562 86.0478 -0.7656 Q85.1884 0.125 83.7197 0.125 Q82.7978 0.125 82.0791 -0.2656 Q81.3759 -0.6719 80.9697 -1.4375 Q80.5634 -2.2031 80.5634 -3.2812 Q80.5634 -4.9219 81.4072 -5.7969 Q82.2666 -6.6719 83.7509 -6.6719 Q84.6728 -6.6719 85.3759 -6.2656 Q86.0947 -5.875 86.5009 -5.125 Q86.9072 -4.375 86.9072 -3.2812 ZM82.3759 -3.2812 Q82.3759 -2.3125 82.6884 -1.8125 Q83.0166 -1.3125 83.7353 -1.3125 Q84.4384 -1.3125 84.7509 -1.8125 Q85.0791 -2.3125 85.0791 -3.2812 Q85.0791 -4.2656 84.7509 -4.75 Q84.4384 -5.2344 83.7197 -5.2344 Q83.0166 -5.2344 82.6884 -4.75 Q82.3759 -4.2656 82.3759 -3.2812 ZM92.0384 -6.6719 Q92.179 -6.6719 92.3509 -6.6562 Q92.5384 -6.6406 92.6477 -6.625 L92.5071 -4.9375 Q92.429 -4.9688 92.2571 -4.9844 Q92.1009 -5 91.9759 -5 Q91.5227 -5 91.1009 -4.8438 Q90.679 -4.6875 90.4134 -4.3125 Q90.1634 -3.9531 90.1634 -3.3438 L90.1634 0 L88.3821 0 L88.3821 -6.5469 L89.7415 -6.5469 L90.0071 -5.4531 L90.0852 -5.4531 Q90.3665 -5.9531 90.8665 -6.3125 Q91.3821 -6.6719 92.0384 -6.6719 ZM92.8927 -6.5469 L94.8458 -6.5469 L96.0802 -2.875 Q96.1739 -2.6094 96.2208 -2.3281 Q96.2833 -2.0469 96.2989 -1.7344 L96.3302 -1.7344 Q96.377 -2.0469 96.4395 -2.3281 Q96.502 -2.6094 96.5958 -2.875 L97.7989 -6.5469 L99.7208 -6.5469 L96.9552 0.8438 Q96.5802 1.8594 95.8614 2.3594 Q95.1427 2.875 94.2052 2.875 Q93.9083 2.875 93.6895 2.8438 Q93.4708 2.8125 93.2989 2.7812 L93.2989 1.375 Q93.4395 1.3906 93.6114 1.4062 Q93.7989 1.4375 94.002 1.4375 Q94.5802 1.4375 94.9083 1.0938 Q95.2364 0.75 95.3927 0.2812 L95.502 -0.0469 L92.8927 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath41);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="371.4184" y="-231.5434" width="99" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="371.4184" y="-231.5434" width="99" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(381.4184,-213.5434)"
+    ><path d="M4.7188 -7.1719 Q3.6719 -7.1719 3.1094 -6.3906 Q2.5625 -5.6094 2.5625 -4.2656 Q2.5625 -2.8906 3.0781 -2.1406 Q3.5938 -1.3906 4.7188 -1.3906 Q5.25 -1.3906 5.7656 -1.5 Q6.2812 -1.625 6.9062 -1.8438 L6.9062 -0.3281 Q6.3438 -0.0938 5.7812 0.0156 Q5.2344 0.125 4.5469 0.125 Q3.2344 0.125 2.375 -0.4219 Q1.5156 -0.9688 1.1094 -1.9531 Q0.7031 -2.9531 0.7031 -4.2656 Q0.7031 -5.5625 1.1562 -6.5625 Q1.625 -7.5625 2.5156 -8.125 Q3.4219 -8.6875 4.7188 -8.6875 Q5.3594 -8.6875 6 -8.5156 Q6.6406 -8.3594 7.2188 -8.0938 L6.6406 -6.6094 Q6.1562 -6.8438 5.6719 -7 Q5.1875 -7.1719 4.7188 -7.1719 ZM10.3628 0 L8.5816 0 L8.5816 -9.125 L10.3628 -9.125 L10.3628 0 ZM13.1478 -9.125 Q13.5385 -9.125 13.8197 -8.9375 Q14.1166 -8.75 14.1166 -8.25 Q14.1166 -7.75 13.8197 -7.5625 Q13.5385 -7.375 13.1478 -7.375 Q12.726 -7.375 12.4447 -7.5625 Q12.1635 -7.75 12.1635 -8.25 Q12.1635 -8.75 12.4447 -8.9375 Q12.726 -9.125 13.1478 -9.125 ZM14.0228 -6.5469 L14.0228 0 L12.2416 0 L12.2416 -6.5469 L14.0228 -6.5469 ZM18.6047 -6.6719 Q19.9485 -6.6719 20.7453 -5.8906 Q21.5422 -5.125 21.5422 -3.7031 L21.5422 -2.8281 L17.3235 -2.8281 Q17.3391 -2.0781 17.761 -1.6406 Q18.1985 -1.2188 18.9485 -1.2188 Q19.5891 -1.2188 20.1047 -1.3438 Q20.6203 -1.4688 21.1672 -1.7344 L21.1672 -0.3438 Q20.6828 -0.1094 20.1516 0 Q19.6203 0.125 18.8703 0.125 Q17.886 0.125 17.1203 -0.2344 Q16.3703 -0.6094 15.9328 -1.3438 Q15.511 -2.0938 15.511 -3.2344 Q15.511 -4.375 15.886 -5.1406 Q16.2766 -5.9062 16.9797 -6.2812 Q17.6828 -6.6719 18.6047 -6.6719 ZM18.6047 -5.4062 Q18.0891 -5.4062 17.7453 -5.0625 Q17.4172 -4.7344 17.3547 -4.0156 L19.8547 -4.0156 Q19.8547 -4.625 19.5422 -5.0156 Q19.2453 -5.4062 18.6047 -5.4062 ZM26.7124 -6.6719 Q27.7749 -6.6719 28.3999 -6.0938 Q29.0405 -5.5312 29.0405 -4.2656 L29.0405 0 L27.2593 0 L27.2593 -3.8281 Q27.2593 -4.5312 26.9937 -4.8906 Q26.7437 -5.25 26.1968 -5.25 Q25.3843 -5.25 25.0718 -4.6875 Q24.7749 -4.125 24.7749 -3.0781 L24.7749 0 L22.9937 0 L22.9937 -6.5469 L24.353 -6.5469 L24.603 -5.7188 L24.6968 -5.7188 Q25.0093 -6.2188 25.5562 -6.4375 Q26.103 -6.6719 26.7124 -6.6719 ZM33.6433 -1.3125 Q33.9402 -1.3125 34.2058 -1.3594 Q34.4871 -1.4219 34.7683 -1.5156 L34.7683 -0.1875 Q34.4715 -0.0625 34.0496 0.0312 Q33.6277 0.125 33.1277 0.125 Q32.534 0.125 32.0652 -0.0625 Q31.6121 -0.2656 31.3308 -0.7344 Q31.0652 -1.2188 31.0652 -2.0469 L31.0652 -5.2031 L30.2215 -5.2031 L30.2215 -5.9688 L31.2058 -6.5625 L31.7215 -7.9375 L32.8621 -7.9375 L32.8621 -6.5469 L34.6902 -6.5469 L34.6902 -5.2031 L32.8621 -5.2031 L32.8621 -2.0469 Q32.8621 -1.6875 33.0652 -1.5 Q33.284 -1.3125 33.6433 -1.3125 ZM41.2732 -2.375 Q41.2732 -1.2344 40.4451 -0.5469 Q39.6326 0.125 38.117 0.125 Q36.7732 0.125 35.6951 -0.3906 L35.6951 -2.0938 Q36.3045 -1.8281 36.9607 -1.5938 Q37.617 -1.375 38.2732 -1.375 Q38.9451 -1.375 39.2264 -1.625 Q39.5076 -1.8906 39.5076 -2.2969 Q39.5076 -2.6094 39.2732 -2.8438 Q39.0545 -3.0781 38.6795 -3.2656 Q38.3201 -3.4688 37.8357 -3.7031 Q37.5389 -3.8438 37.1795 -4.0312 Q36.8357 -4.2344 36.5232 -4.5312 Q36.2107 -4.8281 35.992 -5.2344 Q35.7889 -5.6562 35.7889 -6.25 Q35.7889 -7.4062 36.5701 -8.0469 Q37.3514 -8.6875 38.6951 -8.6875 Q39.367 -8.6875 39.9764 -8.5312 Q40.5857 -8.375 41.242 -8.0938 L40.6639 -6.6719 Q40.0701 -6.9062 39.6014 -7.0312 Q39.1326 -7.1719 38.6326 -7.1719 Q38.117 -7.1719 37.8357 -6.9375 Q37.5701 -6.7031 37.5701 -6.3125 Q37.5701 -5.8594 37.9764 -5.5938 Q38.3826 -5.3281 39.1951 -4.9375 Q39.8514 -4.625 40.3045 -4.2812 Q40.7732 -3.9531 41.0232 -3.5 Q41.2732 -3.0469 41.2732 -2.375 ZM45.4009 -6.6719 Q46.7447 -6.6719 47.5415 -5.8906 Q48.3384 -5.125 48.3384 -3.7031 L48.3384 -2.8281 L44.1197 -2.8281 Q44.1353 -2.0781 44.5572 -1.6406 Q44.9947 -1.2188 45.7447 -1.2188 Q46.3853 -1.2188 46.9009 -1.3438 Q47.4165 -1.4688 47.9634 -1.7344 L47.9634 -0.3438 Q47.479 -0.1094 46.9478 0 Q46.4165 0.125 45.6665 0.125 Q44.6822 0.125 43.9165 -0.2344 Q43.1665 -0.6094 42.729 -1.3438 Q42.3072 -2.0938 42.3072 -3.2344 Q42.3072 -4.375 42.6822 -5.1406 Q43.0728 -5.9062 43.7759 -6.2812 Q44.479 -6.6719 45.4009 -6.6719 ZM45.4009 -5.4062 Q44.8853 -5.4062 44.5415 -5.0625 Q44.2134 -4.7344 44.1509 -4.0156 L46.6509 -4.0156 Q46.6509 -4.625 46.3384 -5.0156 Q46.0415 -5.4062 45.4009 -5.4062 ZM53.4461 -6.6719 Q53.5867 -6.6719 53.7586 -6.6562 Q53.9461 -6.6406 54.0555 -6.625 L53.9148 -4.9375 Q53.8367 -4.9688 53.6648 -4.9844 Q53.5086 -5 53.3836 -5 Q52.9305 -5 52.5086 -4.8438 Q52.0867 -4.6875 51.8211 -4.3125 Q51.5711 -3.9531 51.5711 -3.3438 L51.5711 0 L49.7898 0 L49.7898 -6.5469 L51.1492 -6.5469 L51.4148 -5.4531 L51.493 -5.4531 Q51.7742 -5.9531 52.2742 -6.3125 Q52.7898 -6.6719 53.4461 -6.6719 ZM56.8004 0 L54.3004 -6.5469 L56.1754 -6.5469 L57.4254 -2.8125 Q57.5348 -2.4844 57.5973 -2.125 Q57.6754 -1.7656 57.691 -1.4688 L57.7379 -1.4688 Q57.7691 -2.125 58.0035 -2.8125 L59.2535 -6.5469 L61.1285 -6.5469 L58.6285 0 L56.8004 0 ZM62.9722 -9.125 Q63.3628 -9.125 63.6441 -8.9375 Q63.9409 -8.75 63.9409 -8.25 Q63.9409 -7.75 63.6441 -7.5625 Q63.3628 -7.375 62.9722 -7.375 Q62.5503 -7.375 62.2691 -7.5625 Q61.9878 -7.75 61.9878 -8.25 Q61.9878 -8.75 62.2691 -8.9375 Q62.5503 -9.125 62.9722 -9.125 ZM63.8472 -6.5469 L63.8472 0 L62.0659 0 L62.0659 -6.5469 L63.8472 -6.5469 ZM68.3822 0.125 Q66.9291 0.125 66.1322 -0.6875 Q65.3353 -1.5 65.3353 -3.2344 Q65.3353 -4.4375 65.7416 -5.1875 Q66.1478 -5.9531 66.8666 -6.3125 Q67.601 -6.6719 68.5385 -6.6719 Q69.2103 -6.6719 69.7103 -6.5312 Q70.2103 -6.4062 70.5853 -6.2344 L70.0541 -4.8438 Q69.6322 -5.0156 69.2572 -5.125 Q68.8978 -5.2344 68.5385 -5.2344 Q67.1478 -5.2344 67.1478 -3.25 Q67.1478 -2.2656 67.5072 -1.7969 Q67.8822 -1.3281 68.5385 -1.3281 Q69.101 -1.3281 69.5385 -1.4688 Q69.976 -1.625 70.3822 -1.8906 L70.3822 -0.375 Q69.976 -0.1094 69.5228 0 Q69.0697 0.125 68.3822 0.125 ZM74.5971 -6.6719 Q75.9409 -6.6719 76.7377 -5.8906 Q77.5346 -5.125 77.5346 -3.7031 L77.5346 -2.8281 L73.3159 -2.8281 Q73.3315 -2.0781 73.7534 -1.6406 Q74.1909 -1.2188 74.9409 -1.2188 Q75.5815 -1.2188 76.0971 -1.3438 Q76.6127 -1.4688 77.1596 -1.7344 L77.1596 -0.3438 Q76.6752 -0.1094 76.144 0 Q75.6127 0.125 74.8627 0.125 Q73.8784 0.125 73.1127 -0.2344 Q72.3627 -0.6094 71.9252 -1.3438 Q71.5034 -2.0938 71.5034 -3.2344 Q71.5034 -4.375 71.8784 -5.1406 Q72.269 -5.9062 72.9721 -6.2812 Q73.6752 -6.6719 74.5971 -6.6719 ZM74.5971 -5.4062 Q74.0815 -5.4062 73.7377 -5.0625 Q73.4096 -4.7344 73.3471 -4.0156 L75.8471 -4.0156 Q75.8471 -4.625 75.5346 -5.0156 Q75.2377 -5.4062 74.5971 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath42);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="827.1441" y="-910.1025" width="109" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="827.1441" y="-910.1025" width="109" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(837.1441,-892.1025)"
+    ><path d="M6.125 -2.375 Q6.125 -1.2344 5.2969 -0.5469 Q4.4844 0.125 2.9688 0.125 Q1.625 0.125 0.5469 -0.3906 L0.5469 -2.0938 Q1.1562 -1.8281 1.8125 -1.5938 Q2.4688 -1.375 3.125 -1.375 Q3.7969 -1.375 4.0781 -1.625 Q4.3594 -1.8906 4.3594 -2.2969 Q4.3594 -2.6094 4.125 -2.8438 Q3.9062 -3.0781 3.5312 -3.2656 Q3.1719 -3.4688 2.6875 -3.7031 Q2.3906 -3.8438 2.0312 -4.0312 Q1.6875 -4.2344 1.375 -4.5312 Q1.0625 -4.8281 0.8438 -5.2344 Q0.6406 -5.6562 0.6406 -6.25 Q0.6406 -7.4062 1.4219 -8.0469 Q2.2031 -8.6875 3.5469 -8.6875 Q4.2188 -8.6875 4.8281 -8.5312 Q5.4375 -8.375 6.0938 -8.0938 L5.5156 -6.6719 Q4.9219 -6.9062 4.4531 -7.0312 Q3.9844 -7.1719 3.4844 -7.1719 Q2.9688 -7.1719 2.6875 -6.9375 Q2.4219 -6.7031 2.4219 -6.3125 Q2.4219 -5.8594 2.8281 -5.5938 Q3.2344 -5.3281 4.0469 -4.9375 Q4.7031 -4.625 5.1562 -4.2812 Q5.625 -3.9531 5.875 -3.5 Q6.125 -3.0469 6.125 -2.375 ZM10.2527 -6.6719 Q11.5964 -6.6719 12.3933 -5.8906 Q13.1902 -5.125 13.1902 -3.7031 L13.1902 -2.8281 L8.9714 -2.8281 Q8.987 -2.0781 9.4089 -1.6406 Q9.8464 -1.2188 10.5964 -1.2188 Q11.237 -1.2188 11.7527 -1.3438 Q12.2683 -1.4688 12.8152 -1.7344 L12.8152 -0.3438 Q12.3308 -0.1094 11.7995 0 Q11.2683 0.125 10.5183 0.125 Q9.5339 0.125 8.7683 -0.2344 Q8.0183 -0.6094 7.5808 -1.3438 Q7.1589 -2.0938 7.1589 -3.2344 Q7.1589 -4.375 7.5339 -5.1406 Q7.9245 -5.9062 8.6277 -6.2812 Q9.3308 -6.6719 10.2527 -6.6719 ZM10.2527 -5.4062 Q9.737 -5.4062 9.3933 -5.0625 Q9.0652 -4.7344 9.0027 -4.0156 L11.5027 -4.0156 Q11.5027 -4.625 11.1902 -5.0156 Q10.8933 -5.4062 10.2527 -5.4062 ZM17.2979 0.125 Q15.8447 0.125 15.0479 -0.6875 Q14.251 -1.5 14.251 -3.2344 Q14.251 -4.4375 14.6572 -5.1875 Q15.0635 -5.9531 15.7822 -6.3125 Q16.5166 -6.6719 17.4541 -6.6719 Q18.126 -6.6719 18.626 -6.5312 Q19.126 -6.4062 19.501 -6.2344 L18.9697 -4.8438 Q18.5479 -5.0156 18.1729 -5.125 Q17.8135 -5.2344 17.4541 -5.2344 Q16.0635 -5.2344 16.0635 -3.25 Q16.0635 -2.2656 16.4229 -1.7969 Q16.7979 -1.3281 17.4541 -1.3281 Q18.0166 -1.3281 18.4541 -1.4688 Q18.8916 -1.625 19.2979 -1.8906 L19.2979 -0.375 Q18.8916 -0.1094 18.4385 0 Q17.9854 0.125 17.2979 0.125 ZM26.8253 -6.5469 L26.8253 0 L25.4503 0 L25.2159 -0.8438 L25.1221 -0.8438 Q24.8096 -0.3438 24.2628 -0.1094 Q23.7159 0.125 23.1065 0.125 Q22.044 0.125 21.4034 -0.4375 Q20.7784 -1.0156 20.7784 -2.2812 L20.7784 -6.5469 L22.5596 -6.5469 L22.5596 -2.7188 Q22.5596 -2.0312 22.8096 -1.6719 Q23.0596 -1.3125 23.6221 -1.3125 Q24.4346 -1.3125 24.7315 -1.8594 Q25.0284 -2.4219 25.0284 -3.4688 L25.0284 -6.5469 L26.8253 -6.5469 ZM32.3499 -6.6719 Q32.4906 -6.6719 32.6624 -6.6562 Q32.8499 -6.6406 32.9593 -6.625 L32.8187 -4.9375 Q32.7406 -4.9688 32.5687 -4.9844 Q32.4124 -5 32.2874 -5 Q31.8343 -5 31.4124 -4.8438 Q30.9906 -4.6875 30.7249 -4.3125 Q30.4749 -3.9531 30.4749 -3.3438 L30.4749 0 L28.6937 0 L28.6937 -6.5469 L30.0531 -6.5469 L30.3187 -5.4531 L30.3968 -5.4531 Q30.6781 -5.9531 31.1781 -6.3125 Q31.6937 -6.6719 32.3499 -6.6719 ZM35.048 -9.125 Q35.4386 -9.125 35.7199 -8.9375 Q36.0167 -8.75 36.0167 -8.25 Q36.0167 -7.75 35.7199 -7.5625 Q35.4386 -7.375 35.048 -7.375 Q34.6261 -7.375 34.3449 -7.5625 Q34.0636 -7.75 34.0636 -8.25 Q34.0636 -8.75 34.3449 -8.9375 Q34.6261 -9.125 35.048 -9.125 ZM35.923 -6.5469 L35.923 0 L34.1417 0 L34.1417 -6.5469 L35.923 -6.5469 ZM40.5674 -1.3125 Q40.8643 -1.3125 41.1299 -1.3594 Q41.4111 -1.4219 41.6924 -1.5156 L41.6924 -0.1875 Q41.3955 -0.0625 40.9736 0.0312 Q40.5518 0.125 40.0518 0.125 Q39.458 0.125 38.9893 -0.0625 Q38.5361 -0.2656 38.2549 -0.7344 Q37.9893 -1.2188 37.9893 -2.0469 L37.9893 -5.2031 L37.1455 -5.2031 L37.1455 -5.9688 L38.1299 -6.5625 L38.6455 -7.9375 L39.7861 -7.9375 L39.7861 -6.5469 L41.6143 -6.5469 L41.6143 -5.2031 L39.7861 -5.2031 L39.7861 -2.0469 Q39.7861 -1.6875 39.9893 -1.5 Q40.208 -1.3125 40.5674 -1.3125 ZM42.0723 -6.5469 L44.0254 -6.5469 L45.2598 -2.875 Q45.3535 -2.6094 45.4004 -2.3281 Q45.4629 -2.0469 45.4785 -1.7344 L45.5098 -1.7344 Q45.5567 -2.0469 45.6192 -2.3281 Q45.6817 -2.6094 45.7754 -2.875 L46.9785 -6.5469 L48.9004 -6.5469 L46.1348 0.8438 Q45.7598 1.8594 45.041 2.3594 Q44.3223 2.875 43.3848 2.875 Q43.0879 2.875 42.8692 2.8438 Q42.6504 2.8125 42.4785 2.7812 L42.4785 1.375 Q42.6192 1.3906 42.791 1.4062 Q42.9785 1.4375 43.1817 1.4375 Q43.7598 1.4375 44.0879 1.0938 Q44.416 0.75 44.5723 0.2812 L44.6817 -0.0469 L42.0723 -6.5469 ZM53.6191 -7.1719 Q52.5722 -7.1719 52.0097 -6.3906 Q51.4628 -5.6094 51.4628 -4.2656 Q51.4628 -2.8906 51.9785 -2.1406 Q52.4941 -1.3906 53.6191 -1.3906 Q54.1503 -1.3906 54.666 -1.5 Q55.1816 -1.625 55.8066 -1.8438 L55.8066 -0.3281 Q55.2441 -0.0938 54.6816 0.0156 Q54.1347 0.125 53.4472 0.125 Q52.1347 0.125 51.2753 -0.4219 Q50.416 -0.9688 50.0097 -1.9531 Q49.6035 -2.9531 49.6035 -4.2656 Q49.6035 -5.5625 50.0566 -6.5625 Q50.5253 -7.5625 51.416 -8.125 Q52.3222 -8.6875 53.6191 -8.6875 Q54.2597 -8.6875 54.9003 -8.5156 Q55.541 -8.3594 56.1191 -8.0938 L55.541 -6.6094 Q55.0566 -6.8438 54.5722 -7 Q54.0878 -7.1719 53.6191 -7.1719 ZM63.435 -3.2812 Q63.435 -1.6562 62.5757 -0.7656 Q61.7163 0.125 60.2475 0.125 Q59.3257 0.125 58.6069 -0.2656 Q57.9038 -0.6719 57.4975 -1.4375 Q57.0913 -2.2031 57.0913 -3.2812 Q57.0913 -4.9219 57.935 -5.7969 Q58.7944 -6.6719 60.2788 -6.6719 Q61.2007 -6.6719 61.9038 -6.2656 Q62.6225 -5.875 63.0288 -5.125 Q63.435 -4.375 63.435 -3.2812 ZM58.9038 -3.2812 Q58.9038 -2.3125 59.2163 -1.8125 Q59.5444 -1.3125 60.2632 -1.3125 Q60.9663 -1.3125 61.2788 -1.8125 Q61.6069 -2.3125 61.6069 -3.2812 Q61.6069 -4.2656 61.2788 -4.75 Q60.9663 -5.2344 60.2475 -5.2344 Q59.5444 -5.2344 59.2163 -4.75 Q58.9038 -4.2656 58.9038 -3.2812 ZM68.6287 -6.6719 Q69.6912 -6.6719 70.3162 -6.0938 Q70.9568 -5.5312 70.9568 -4.2656 L70.9568 0 L69.1756 0 L69.1756 -3.8281 Q69.1756 -4.5312 68.91 -4.8906 Q68.66 -5.25 68.1131 -5.25 Q67.3006 -5.25 66.9881 -4.6875 Q66.6912 -4.125 66.6912 -3.0781 L66.6912 0 L64.91 0 L64.91 -6.5469 L66.2693 -6.5469 L66.5193 -5.7188 L66.6131 -5.7188 Q66.9256 -6.2188 67.4725 -6.4375 Q68.0193 -6.6719 68.6287 -6.6719 ZM76.419 -5.2031 L74.8721 -5.2031 L74.8721 0 L73.0753 0 L73.0753 -5.2031 L72.0909 -5.2031 L72.0909 -6.0781 L73.0753 -6.5469 L73.0753 -7.0312 Q73.0753 -7.875 73.3565 -8.3281 Q73.6378 -8.7969 74.1534 -8.9844 Q74.6846 -9.1875 75.4034 -9.1875 Q75.919 -9.1875 76.3409 -9.0938 Q76.7784 -9.0156 77.044 -8.9062 L76.5909 -7.5938 Q76.3878 -7.6562 76.1378 -7.7031 Q75.9034 -7.7656 75.5909 -7.7656 Q75.2159 -7.7656 75.044 -7.5312 Q74.8721 -7.3125 74.8721 -6.9531 L74.8721 -6.5469 L76.419 -6.5469 L76.419 -5.2031 ZM78.3443 -9.125 Q78.7349 -9.125 79.0162 -8.9375 Q79.313 -8.75 79.313 -8.25 Q79.313 -7.75 79.0162 -7.5625 Q78.7349 -7.375 78.3443 -7.375 Q77.9224 -7.375 77.6412 -7.5625 Q77.3599 -7.75 77.3599 -8.25 Q77.3599 -8.75 77.6412 -8.9375 Q77.9224 -9.125 78.3443 -9.125 ZM79.2193 -6.5469 L79.2193 0 L77.438 0 L77.438 -6.5469 L79.2193 -6.5469 ZM83.2231 -6.6719 Q84.4262 -6.6719 85.1137 -5.7188 L85.1606 -5.7188 L85.3012 -6.5469 L86.8168 -6.5469 L86.8168 0.0156 Q86.8168 1.4219 85.9887 2.1406 Q85.1606 2.875 83.5512 2.875 Q82.8481 2.875 82.2543 2.7969 Q81.6606 2.7188 81.0981 2.5 L81.0981 1.0625 Q82.3012 1.5781 83.6449 1.5781 Q85.0356 1.5781 85.0356 0.0781 L85.0356 -0.0469 Q85.0356 -0.25 85.0512 -0.4688 Q85.0668 -0.6875 85.0824 -0.8594 L85.0356 -0.8594 Q84.6918 -0.3438 84.2231 -0.1094 Q83.7543 0.125 83.1762 0.125 Q82.0043 0.125 81.3481 -0.7656 Q80.7074 -1.6719 80.7074 -3.2656 Q80.7074 -4.875 81.3793 -5.7656 Q82.0512 -6.6719 83.2231 -6.6719 ZM83.7856 -5.2188 Q82.5199 -5.2188 82.5199 -3.2344 Q82.5199 -1.2812 83.8012 -1.2812 Q84.4887 -1.2812 84.8168 -1.6719 Q85.1449 -2.0625 85.1449 -3.0312 L85.1449 -3.25 Q85.1449 -4.3125 84.8168 -4.7656 Q84.5043 -5.2188 83.7856 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath43);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="1183.831" y="-276.1292" width="89.0365" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="1183.831" y="-276.1292" width="89.0365" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(1193.831,-258.1292)"
+    ><path d="M3.75 -8.5625 Q5.4531 -8.5625 6.3281 -8.0781 Q7.2188 -7.6094 7.2188 -6.3906 Q7.2188 -5.6562 6.875 -5.1562 Q6.5312 -4.6562 5.8906 -4.5469 L5.8906 -4.4844 Q6.3281 -4.4062 6.6719 -4.1875 Q7.0156 -3.9688 7.2188 -3.5625 Q7.4219 -3.1562 7.4219 -2.4844 Q7.4219 -1.3125 6.5781 -0.6562 Q5.75 0 4.2812 0 L1.0781 0 L1.0781 -8.5625 L3.75 -8.5625 ZM3.9531 -5.1719 Q4.7344 -5.1719 5.0469 -5.4219 Q5.3594 -5.6719 5.3594 -6.1562 Q5.3594 -6.6406 4.9844 -6.8594 Q4.625 -7.0781 3.8594 -7.0781 L2.8906 -7.0781 L2.8906 -5.1719 L3.9531 -5.1719 ZM2.8906 -3.7344 L2.8906 -1.5 L4.0781 -1.5 Q4.8906 -1.5 5.2188 -1.8125 Q5.5469 -2.1406 5.5469 -2.6562 Q5.5469 -3.1406 5.2188 -3.4375 Q4.8906 -3.7344 4.0156 -3.7344 L2.8906 -3.7344 ZM14.9547 -3.2812 Q14.9547 -1.6562 14.0953 -0.7656 Q13.2359 0.125 11.7672 0.125 Q10.8453 0.125 10.1266 -0.2656 Q9.4234 -0.6719 9.0172 -1.4375 Q8.6109 -2.2031 8.6109 -3.2812 Q8.6109 -4.9219 9.4547 -5.7969 Q10.3141 -6.6719 11.7984 -6.6719 Q12.7203 -6.6719 13.4234 -6.2656 Q14.1422 -5.875 14.5484 -5.125 Q14.9547 -4.375 14.9547 -3.2812 ZM10.4234 -3.2812 Q10.4234 -2.3125 10.7359 -1.8125 Q11.0641 -1.3125 11.7828 -1.3125 Q12.4859 -1.3125 12.7984 -1.8125 Q13.1266 -2.3125 13.1266 -3.2812 Q13.1266 -4.2656 12.7984 -4.75 Q12.4859 -5.2344 11.7672 -5.2344 Q11.0641 -5.2344 10.7359 -4.75 Q10.4234 -4.2656 10.4234 -3.2812 ZM22.3827 -3.2812 Q22.3827 -1.6562 21.5234 -0.7656 Q20.664 0.125 19.1952 0.125 Q18.2734 0.125 17.5546 -0.2656 Q16.8515 -0.6719 16.4452 -1.4375 Q16.039 -2.2031 16.039 -3.2812 Q16.039 -4.9219 16.8827 -5.7969 Q17.7421 -6.6719 19.2265 -6.6719 Q20.1484 -6.6719 20.8515 -6.2656 Q21.5702 -5.875 21.9765 -5.125 Q22.3827 -4.375 22.3827 -3.2812 ZM17.8515 -3.2812 Q17.8515 -2.3125 18.164 -1.8125 Q18.4921 -1.3125 19.2109 -1.3125 Q19.914 -1.3125 20.2265 -1.8125 Q20.5546 -2.3125 20.5546 -3.2812 Q20.5546 -4.2656 20.2265 -4.75 Q19.914 -5.2344 19.1952 -5.2344 Q18.4921 -5.2344 18.164 -4.75 Q17.8515 -4.2656 17.8515 -3.2812 ZM25.6389 -5.0469 Q25.6389 -4.6719 25.6077 -4.2969 Q25.5764 -3.9375 25.5452 -3.5625 L25.5764 -3.5625 Q25.7483 -3.8125 25.9358 -4.0625 Q26.1389 -4.3281 26.3577 -4.5625 L28.1858 -6.5469 L30.2014 -6.5469 L27.6077 -3.7031 L30.3577 0 L28.2952 0 L26.4045 -2.6562 L25.6389 -2.0469 L25.6389 0 L23.8577 0 L23.8577 -9.125 L25.6389 -9.125 L25.6389 -5.0469 ZM32.204 -9.125 Q32.5946 -9.125 32.8758 -8.9375 Q33.1727 -8.75 33.1727 -8.25 Q33.1727 -7.75 32.8758 -7.5625 Q32.5946 -7.375 32.204 -7.375 Q31.7821 -7.375 31.5008 -7.5625 Q31.2196 -7.75 31.2196 -8.25 Q31.2196 -8.75 31.5008 -8.9375 Q31.7821 -9.125 32.204 -9.125 ZM33.079 -6.5469 L33.079 0 L31.2977 0 L31.2977 -6.5469 L33.079 -6.5469 ZM38.6765 -6.6719 Q39.739 -6.6719 40.364 -6.0938 Q41.0046 -5.5312 41.0046 -4.2656 L41.0046 0 L39.2234 0 L39.2234 -3.8281 Q39.2234 -4.5312 38.9577 -4.8906 Q38.7077 -5.25 38.1609 -5.25 Q37.3484 -5.25 37.0359 -4.6875 Q36.739 -4.125 36.739 -3.0781 L36.739 0 L34.9577 0 L34.9577 -6.5469 L36.3171 -6.5469 L36.5671 -5.7188 L36.6609 -5.7188 Q36.9734 -6.2188 37.5202 -6.4375 Q38.0671 -6.6719 38.6765 -6.6719 ZM44.9668 -6.6719 Q46.1699 -6.6719 46.8574 -5.7188 L46.9043 -5.7188 L47.0449 -6.5469 L48.5605 -6.5469 L48.5605 0.0156 Q48.5605 1.4219 47.7324 2.1406 Q46.9043 2.875 45.2949 2.875 Q44.5918 2.875 43.998 2.7969 Q43.4043 2.7188 42.8418 2.5 L42.8418 1.0625 Q44.0449 1.5781 45.3887 1.5781 Q46.7793 1.5781 46.7793 0.0781 L46.7793 -0.0469 Q46.7793 -0.25 46.7949 -0.4688 Q46.8105 -0.6875 46.8262 -0.8594 L46.7793 -0.8594 Q46.4355 -0.3438 45.9668 -0.1094 Q45.498 0.125 44.9199 0.125 Q43.748 0.125 43.0918 -0.7656 Q42.4512 -1.6719 42.4512 -3.2656 Q42.4512 -4.875 43.123 -5.7656 Q43.7949 -6.6719 44.9668 -6.6719 ZM45.5293 -5.2188 Q44.2637 -5.2188 44.2637 -3.2344 Q44.2637 -1.2812 45.5449 -1.2812 Q46.2324 -1.2812 46.5605 -1.6719 Q46.8887 -2.0625 46.8887 -3.0312 L46.8887 -3.25 Q46.8887 -4.3125 46.5605 -4.7656 Q46.248 -5.2188 45.5293 -5.2188 ZM55.8285 0 L55.2035 -2.0469 L52.0785 -2.0469 L51.4535 0 L49.5003 0 L52.5316 -8.6094 L54.7503 -8.6094 L57.7816 0 L55.8285 0 ZM54.141 -5.5625 Q54.0785 -5.7656 53.9847 -6.0781 Q53.891 -6.3906 53.7972 -6.7031 Q53.7035 -7.0312 53.641 -7.2656 Q53.5785 -7.0312 53.4691 -6.6719 Q53.3753 -6.3281 53.2816 -6 Q53.2035 -5.6875 53.141 -5.5625 L52.5316 -3.5625 L54.766 -3.5625 L54.141 -5.5625 ZM62.3585 -6.6719 Q63.4679 -6.6719 64.1554 -5.8125 Q64.8429 -4.9531 64.8429 -3.2812 Q64.8429 -1.625 64.1241 -0.75 Q63.421 0.125 62.3116 0.125 Q61.6085 0.125 61.1866 -0.125 Q60.7648 -0.3906 60.4991 -0.7188 L60.4054 -0.7188 Q60.4991 -0.2188 60.4991 0.2344 L60.4991 2.875 L58.7179 2.875 L58.7179 -6.5469 L60.171 -6.5469 L60.421 -5.7031 L60.4991 -5.7031 Q60.7648 -6.0938 61.2023 -6.375 Q61.6554 -6.6719 62.3585 -6.6719 ZM61.796 -5.25 Q61.0929 -5.25 60.8116 -4.8125 Q60.5304 -4.375 60.4991 -3.4844 L60.4991 -3.2969 Q60.4991 -2.3594 60.7804 -1.8438 Q61.0616 -1.3281 61.8116 -1.3281 Q62.421 -1.3281 62.7179 -1.8438 Q63.0148 -2.3594 63.0148 -3.3125 Q63.0148 -5.25 61.796 -5.25 ZM67.2202 -9.125 Q67.6108 -9.125 67.8921 -8.9375 Q68.1889 -8.75 68.1889 -8.25 Q68.1889 -7.75 67.8921 -7.5625 Q67.6108 -7.375 67.2202 -7.375 Q66.7983 -7.375 66.5171 -7.5625 Q66.2358 -7.75 66.2358 -8.25 Q66.2358 -8.75 66.5171 -8.9375 Q66.7983 -9.125 67.2202 -9.125 ZM68.0952 -6.5469 L68.0952 0 L66.3139 0 L66.3139 -6.5469 L68.0952 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath44);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><path d="M537.665 323.1577 C581.0343 350.5976 537.665 323.1577 581.0343 350.5976" style="fill:none; clip-path:url(#clipPath2);"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" 538 323 544 335 551 324"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" 538 323 544 335 551 324"
+      /><path d="M154.3795 -283.0955 A6 6 0 0 0 142.3795 -283.0955" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M62.4277 -385.1844 A6 6 0 0 0 62.4277 -397.1844" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><path d="M62.4277 -398.7164 A6 6 0 0 0 62.4277 -410.7164" style="fill:none; stroke-dasharray:5,5; clip-path:url(#clipPath2); stroke-linecap:butt;"
+      /><line x1="-2.6089" x2="62.4277" y1="-990.4491" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-990.4491"
+      /><line x1="62.4277" x2="62.4277" y1="-990.4491" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-410.7164"
+      /><line x1="62.4277" x2="62.4277" y1="-398.7164" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-397.1844"
+      /><line x1="62.4277" x2="62.4277" y1="-385.1844" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-283.0955"
+      /><line x1="62.4277" x2="142.3795" y1="-283.0955" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-283.0955"
+      /><line x1="154.3795" x2="420.9184" y1="-283.0955" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-283.0955"
+      /><line x1="420.9184" x2="420.9184" y1="-283.0955" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-231.5434"
+      /><line x1="-2.6089" x2="7.7834" y1="-990.4491" style="fill:none; clip-path:url(#clipPath2);" y2="-996.4491"
+      /><line x1="-2.6089" x2="7.7834" y1="-990.4491" style="fill:none; clip-path:url(#clipPath2);" y2="-984.4491"
+      /><line x1="1326.3093" x2="1326.3093" y1="-428.859" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-728.0999"
+      /><line x1="1326.3093" x2="881.6441" y1="-728.0999" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-728.0999"
+      /><line x1="881.6441" x2="881.6441" y1="-728.0999" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-880.1025"
+      /><line x1="1326.3093" x2="1320.3093" y1="-428.859" style="fill:none; clip-path:url(#clipPath2);" y2="-439.2513"
+      /><line x1="1326.3093" x2="1332.3093" y1="-428.859" style="fill:none; clip-path:url(#clipPath2);" y2="-439.2513"
+      /><path d="M483.9188 282.4695 C433.3128 234.7877 483.9188 282.4695 433.3128 234.7877" style="fill:none; clip-path:url(#clipPath2);"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" 484 282 480 270 471 279"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" 484 282 480 270 471 279"
+      /><path d="M-577.3369 -222.4342 C371.4184 -216.8356 -577.3369 -222.4342 371.4184 -216.8356" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="371.4184" x2="360.9909" y1="-216.8356" style="fill:none; clip-path:url(#clipPath2);" y2="-210.897"
+      /><line x1="371.4184" x2="361.0617" y1="-216.8356" style="fill:none; clip-path:url(#clipPath2);" y2="-222.8968"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="1133.7493" y="-585.7789" width="72.1044" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="1133.7493" y="-585.7789" width="72.1044" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(1143.7493,-567.7789)"
+    ><path d="M8.0938 0 L6.2812 0 L6.2812 -3.7031 L2.8906 -3.7031 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -5.2031 L6.2812 -5.2031 L6.2812 -8.5625 L8.0938 -8.5625 L8.0938 0 ZM16.0707 -3.2812 Q16.0707 -1.6562 15.2113 -0.7656 Q14.3519 0.125 12.8832 0.125 Q11.9613 0.125 11.2426 -0.2656 Q10.5394 -0.6719 10.1332 -1.4375 Q9.7269 -2.2031 9.7269 -3.2812 Q9.7269 -4.9219 10.5707 -5.7969 Q11.4301 -6.6719 12.9144 -6.6719 Q13.8363 -6.6719 14.5394 -6.2656 Q15.2582 -5.875 15.6644 -5.125 Q16.0707 -4.375 16.0707 -3.2812 ZM11.5394 -3.2812 Q11.5394 -2.3125 11.8519 -1.8125 Q12.1801 -1.3125 12.8988 -1.3125 Q13.6019 -1.3125 13.9144 -1.8125 Q14.2426 -2.3125 14.2426 -3.2812 Q14.2426 -4.2656 13.9144 -4.75 Q13.6019 -5.2344 12.8832 -5.2344 Q12.1801 -5.2344 11.8519 -4.75 Q11.5394 -4.2656 11.5394 -3.2812 ZM20.3112 -1.3125 Q20.6081 -1.3125 20.8737 -1.3594 Q21.155 -1.4219 21.4362 -1.5156 L21.4362 -0.1875 Q21.1394 -0.0625 20.7175 0.0312 Q20.2956 0.125 19.7956 0.125 Q19.2019 0.125 18.7331 -0.0625 Q18.28 -0.2656 17.9987 -0.7344 Q17.7331 -1.2188 17.7331 -2.0469 L17.7331 -5.2031 L16.8894 -5.2031 L16.8894 -5.9688 L17.8737 -6.5625 L18.3894 -7.9375 L19.53 -7.9375 L19.53 -6.5469 L21.3581 -6.5469 L21.3581 -5.2031 L19.53 -5.2031 L19.53 -2.0469 Q19.53 -1.6875 19.7331 -1.5 Q19.9519 -1.3125 20.3112 -1.3125 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1912 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4412 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0037 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1287 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9412 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM31.627 0 L29.8457 0 L29.8457 -9.125 L31.627 -9.125 L31.627 0 ZM38.8964 0 L38.2714 -2.0469 L35.1464 -2.0469 L34.5214 0 L32.5682 0 L35.5995 -8.6094 L37.8182 -8.6094 L40.8495 0 L38.8964 0 ZM37.2089 -5.5625 Q37.1464 -5.7656 37.0526 -6.0781 Q36.9589 -6.3906 36.8651 -6.7031 Q36.7714 -7.0312 36.7089 -7.2656 Q36.6464 -7.0312 36.537 -6.6719 Q36.4432 -6.3281 36.3495 -6 Q36.2714 -5.6875 36.2089 -5.5625 L35.5995 -3.5625 L37.8339 -3.5625 L37.2089 -5.5625 ZM45.4264 -6.6719 Q46.5358 -6.6719 47.2233 -5.8125 Q47.9108 -4.9531 47.9108 -3.2812 Q47.9108 -1.625 47.192 -0.75 Q46.4889 0.125 45.3795 0.125 Q44.6764 0.125 44.2545 -0.125 Q43.8327 -0.3906 43.567 -0.7188 L43.4733 -0.7188 Q43.567 -0.2188 43.567 0.2344 L43.567 2.875 L41.7858 2.875 L41.7858 -6.5469 L43.2389 -6.5469 L43.4889 -5.7031 L43.567 -5.7031 Q43.8327 -6.0938 44.2702 -6.375 Q44.7233 -6.6719 45.4264 -6.6719 ZM44.8639 -5.25 Q44.1608 -5.25 43.8795 -4.8125 Q43.5983 -4.375 43.567 -3.4844 L43.567 -3.2969 Q43.567 -2.3594 43.8483 -1.8438 Q44.1295 -1.3281 44.8795 -1.3281 Q45.4889 -1.3281 45.7858 -1.8438 Q46.0827 -2.3594 46.0827 -3.3125 Q46.0827 -5.25 44.8639 -5.25 ZM50.2881 -9.125 Q50.6787 -9.125 50.96 -8.9375 Q51.2569 -8.75 51.2569 -8.25 Q51.2569 -7.75 50.96 -7.5625 Q50.6787 -7.375 50.2881 -7.375 Q49.8662 -7.375 49.585 -7.5625 Q49.3037 -7.75 49.3037 -8.25 Q49.3037 -8.75 49.585 -8.9375 Q49.8662 -9.125 50.2881 -9.125 ZM51.1631 -6.5469 L51.1631 0 L49.3819 0 L49.3819 -6.5469 L51.1631 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath45);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M371.9608 227.5582 C-59.0766 361.6573 371.9608 227.5582 -59.0766 361.6573" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="371.9608" x2="363.82" y1="227.5582" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="236.3746"
+      /><line x1="371.9608" x2="360.2552" y1="227.5582" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="224.9163"
+      /><path d="M148.3795 -277.0955 A6 6 0 0 0 148.3795 -289.0955" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><line x1="148.3795" x2="148.3795" y1="-389.7164" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-289.0955"
+      /><line x1="148.3795" x2="148.3795" y1="-277.0955" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-216.5434"
+      /><line x1="148.3795" x2="371.4184" y1="-216.5434" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-216.5434"
+      /><line x1="371.4184" x2="361.0261" y1="-216.5434" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-210.5434"
+      /><line x1="371.4184" x2="361.0261" y1="-216.5434" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-222.5434"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-188.279" y="215.4618" width="138.4048" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-188.279" y="215.4618" width="138.4048" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-158.0766,233.4618)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath46);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-178.279,249.806)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 ZM57.4105 -8.5625 Q59.1605 -8.5625 59.9886 -7.9219 Q60.8324 -7.2969 60.8324 -6 Q60.8324 -5.4062 60.598 -4.9688 Q60.3793 -4.5312 60.0043 -4.2188 Q59.6449 -3.9219 59.2386 -3.7344 L61.7543 0 L59.7386 0 L57.6918 -3.2812 L56.723 -3.2812 L56.723 0 L54.9105 0 L54.9105 -8.5625 L57.4105 -8.5625 ZM57.2699 -7.0781 L56.723 -7.0781 L56.723 -4.7656 L57.3168 -4.7656 Q58.2074 -4.7656 58.598 -5.0625 Q58.9886 -5.3594 58.9886 -5.9531 Q58.9886 -6.5625 58.5668 -6.8125 Q58.1605 -7.0781 57.2699 -7.0781 ZM65.3931 -6.6719 Q66.7368 -6.6719 67.5337 -5.8906 Q68.3306 -5.125 68.3306 -3.7031 L68.3306 -2.8281 L64.1118 -2.8281 Q64.1274 -2.0781 64.5493 -1.6406 Q64.9868 -1.2188 65.7368 -1.2188 Q66.3774 -1.2188 66.8931 -1.3438 Q67.4087 -1.4688 67.9556 -1.7344 L67.9556 -0.3438 Q67.4712 -0.1094 66.9399 0 Q66.4087 0.125 65.6587 0.125 Q64.6743 0.125 63.9087 -0.2344 Q63.1587 -0.6094 62.7212 -1.3438 Q62.2993 -2.0938 62.2993 -3.2344 Q62.2993 -4.375 62.6743 -5.1406 Q63.0649 -5.9062 63.7681 -6.2812 Q64.4712 -6.6719 65.3931 -6.6719 ZM65.3931 -5.4062 Q64.8774 -5.4062 64.5337 -5.0625 Q64.2056 -4.7344 64.1431 -4.0156 L66.6431 -4.0156 Q66.6431 -4.625 66.3306 -5.0156 Q66.0337 -5.4062 65.3931 -5.4062 ZM73.4226 -6.6719 Q74.532 -6.6719 75.2195 -5.8125 Q75.907 -4.9531 75.907 -3.2812 Q75.907 -1.625 75.1882 -0.75 Q74.4851 0.125 73.3757 0.125 Q72.6726 0.125 72.2507 -0.125 Q71.8289 -0.3906 71.5632 -0.7188 L71.4695 -0.7188 Q71.5632 -0.2188 71.5632 0.2344 L71.5632 2.875 L69.782 2.875 L69.782 -6.5469 L71.2351 -6.5469 L71.4851 -5.7031 L71.5632 -5.7031 Q71.8289 -6.0938 72.2664 -6.375 Q72.7195 -6.6719 73.4226 -6.6719 ZM72.8601 -5.25 Q72.157 -5.25 71.8757 -4.8125 Q71.5945 -4.375 71.5632 -3.4844 L71.5632 -3.2969 Q71.5632 -2.3594 71.8445 -1.8438 Q72.1257 -1.3281 72.8757 -1.3281 Q73.4851 -1.3281 73.782 -1.8438 Q74.0789 -2.3594 74.0789 -3.3125 Q74.0789 -5.25 72.8601 -5.25 ZM83.3312 -3.2812 Q83.3312 -1.6562 82.4718 -0.7656 Q81.6124 0.125 80.1437 0.125 Q79.2218 0.125 78.5031 -0.2656 Q77.7999 -0.6719 77.3937 -1.4375 Q76.9874 -2.2031 76.9874 -3.2812 Q76.9874 -4.9219 77.8312 -5.7969 Q78.6906 -6.6719 80.1749 -6.6719 Q81.0968 -6.6719 81.7999 -6.2656 Q82.5187 -5.875 82.9249 -5.125 Q83.3312 -4.375 83.3312 -3.2812 ZM78.7999 -3.2812 Q78.7999 -2.3125 79.1124 -1.8125 Q79.4406 -1.3125 80.1593 -1.3125 Q80.8624 -1.3125 81.1749 -1.8125 Q81.5031 -2.3125 81.5031 -3.2812 Q81.5031 -4.2656 81.1749 -4.75 Q80.8624 -5.2344 80.1437 -5.2344 Q79.4406 -5.2344 79.1124 -4.75 Q78.7999 -4.2656 78.7999 -3.2812 ZM89.3842 -1.9375 Q89.3842 -0.9531 88.6811 -0.4062 Q87.978 0.125 86.5874 0.125 Q85.8999 0.125 85.3999 0.0312 Q84.9155 -0.0625 84.4155 -0.2656 L84.4155 -1.7344 Q84.9467 -1.5 85.5561 -1.3438 Q86.1655 -1.1875 86.6342 -1.1875 Q87.1655 -1.1875 87.3842 -1.3438 Q87.6186 -1.5 87.6186 -1.75 Q87.6186 -1.9219 87.5249 -2.0469 Q87.4311 -2.1875 87.1342 -2.3438 Q86.8374 -2.5156 86.1967 -2.7812 Q85.5874 -3.0469 85.1811 -3.2969 Q84.7905 -3.5625 84.603 -3.9219 Q84.4155 -4.2969 84.4155 -4.8438 Q84.4155 -5.7656 85.1186 -6.2188 Q85.8217 -6.6719 86.9936 -6.6719 Q87.6186 -6.6719 88.1655 -6.5469 Q88.7124 -6.4375 89.3061 -6.1562 L88.7592 -4.875 Q88.2905 -5.0781 87.853 -5.2188 Q87.4155 -5.3594 86.978 -5.3594 Q86.1811 -5.3594 86.1811 -4.9219 Q86.1811 -4.7656 86.2749 -4.6406 Q86.3842 -4.5156 86.6811 -4.3594 Q86.978 -4.2188 87.5561 -3.9844 Q88.1186 -3.75 88.5249 -3.5 Q88.9311 -3.2656 89.1499 -2.8906 Q89.3842 -2.5312 89.3842 -1.9375 ZM91.6764 -9.125 Q92.067 -9.125 92.3483 -8.9375 Q92.6451 -8.75 92.6451 -8.25 Q92.6451 -7.75 92.3483 -7.5625 Q92.067 -7.375 91.6764 -7.375 Q91.2545 -7.375 90.9733 -7.5625 Q90.692 -7.75 90.692 -8.25 Q90.692 -8.75 90.9733 -8.9375 Q91.2545 -9.125 91.6764 -9.125 ZM92.5514 -6.5469 L92.5514 0 L90.7701 0 L90.7701 -6.5469 L92.5514 -6.5469 ZM97.1958 -1.3125 Q97.4927 -1.3125 97.7583 -1.3594 Q98.0395 -1.4219 98.3208 -1.5156 L98.3208 -0.1875 Q98.0239 -0.0625 97.602 0.0312 Q97.1802 0.125 96.6802 0.125 Q96.0864 0.125 95.6177 -0.0625 Q95.1645 -0.2656 94.8833 -0.7344 Q94.6177 -1.2188 94.6177 -2.0469 L94.6177 -5.2031 L93.7739 -5.2031 L93.7739 -5.9688 L94.7583 -6.5625 L95.2739 -7.9375 L96.4145 -7.9375 L96.4145 -6.5469 L98.2427 -6.5469 L98.2427 -5.2031 L96.4145 -5.2031 L96.4145 -2.0469 Q96.4145 -1.6875 96.6177 -1.5 Q96.8364 -1.3125 97.1958 -1.3125 ZM105.5913 -3.2812 Q105.5913 -1.6562 104.7319 -0.7656 Q103.8726 0.125 102.4038 0.125 Q101.4819 0.125 100.7632 -0.2656 Q100.0601 -0.6719 99.6538 -1.4375 Q99.2476 -2.2031 99.2476 -3.2812 Q99.2476 -4.9219 100.0913 -5.7969 Q100.9507 -6.6719 102.4351 -6.6719 Q103.3569 -6.6719 104.0601 -6.2656 Q104.7788 -5.875 105.1851 -5.125 Q105.5913 -4.375 105.5913 -3.2812 ZM101.0601 -3.2812 Q101.0601 -2.3125 101.3726 -1.8125 Q101.7007 -1.3125 102.4194 -1.3125 Q103.1226 -1.3125 103.4351 -1.8125 Q103.7632 -2.3125 103.7632 -3.2812 Q103.7632 -4.2656 103.4351 -4.75 Q103.1226 -5.2344 102.4038 -5.2344 Q101.7007 -5.2344 101.3726 -4.75 Q101.0601 -4.2656 101.0601 -3.2812 ZM110.7225 -6.6719 Q110.8631 -6.6719 111.035 -6.6562 Q111.2225 -6.6406 111.3319 -6.625 L111.1913 -4.9375 Q111.1131 -4.9688 110.9413 -4.9844 Q110.785 -5 110.66 -5 Q110.2069 -5 109.785 -4.8438 Q109.3631 -4.6875 109.0975 -4.3125 Q108.8475 -3.9531 108.8475 -3.3438 L108.8475 0 L107.0663 0 L107.0663 -6.5469 L108.4256 -6.5469 L108.6913 -5.4531 L108.7694 -5.4531 Q109.0506 -5.9531 109.5506 -6.3125 Q110.0663 -6.6719 110.7225 -6.6719 ZM111.5768 -6.5469 L113.5299 -6.5469 L114.7643 -2.875 Q114.858 -2.6094 114.9049 -2.3281 Q114.9674 -2.0469 114.983 -1.7344 L115.0143 -1.7344 Q115.0612 -2.0469 115.1237 -2.3281 Q115.1862 -2.6094 115.2799 -2.875 L116.483 -6.5469 L118.4049 -6.5469 L115.6393 0.8438 Q115.2643 1.8594 114.5455 2.3594 Q113.8268 2.875 112.8893 2.875 Q112.5924 2.875 112.3737 2.8438 Q112.1549 2.8125 111.983 2.7812 L111.983 1.375 Q112.1237 1.3906 112.2955 1.4062 Q112.483 1.4375 112.6862 1.4375 Q113.2643 1.4375 113.5924 1.0938 Q113.9205 0.75 114.0768 0.2812 L114.1862 -0.0469 L111.5768 -6.5469 Z" style="stroke:none; clip-path:url(#clipPath47);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M412.1551 194.0995 C420.5983 -201.5434 412.1551 194.0995 420.5983 -201.5434" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="412.1551" x2="406.3782" y1="194.0995" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="183.5815"
+      /><line x1="412.1551" x2="418.3755" y1="194.0995" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="183.8375"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="540.0264" y="-1005.3855" width="143" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="540.0264" y="-1005.3855" width="143" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(550.0264,-987.3855)"
+    ><path d="M3.5781 -8.5625 Q5.3281 -8.5625 6.1562 -7.9219 Q7 -7.2969 7 -6 Q7 -5.4062 6.7656 -4.9688 Q6.5469 -4.5312 6.1719 -4.2188 Q5.8125 -3.9219 5.4062 -3.7344 L7.9219 0 L5.9062 0 L3.8594 -3.2812 L2.8906 -3.2812 L2.8906 0 L1.0781 0 L1.0781 -8.5625 L3.5781 -8.5625 ZM3.4375 -7.0781 L2.8906 -7.0781 L2.8906 -4.7656 L3.4844 -4.7656 Q4.375 -4.7656 4.7656 -5.0625 Q5.1562 -5.3594 5.1562 -5.9531 Q5.1562 -6.5625 4.7344 -6.8125 Q4.3281 -7.0781 3.4375 -7.0781 ZM11.5607 -6.6719 Q12.9044 -6.6719 13.7013 -5.8906 Q14.4982 -5.125 14.4982 -3.7031 L14.4982 -2.8281 L10.2794 -2.8281 Q10.2951 -2.0781 10.7169 -1.6406 Q11.1544 -1.2188 11.9044 -1.2188 Q12.5451 -1.2188 13.0607 -1.3438 Q13.5763 -1.4688 14.1232 -1.7344 L14.1232 -0.3438 Q13.6388 -0.1094 13.1076 0 Q12.5763 0.125 11.8263 0.125 Q10.8419 0.125 10.0763 -0.2344 Q9.3263 -0.6094 8.8888 -1.3438 Q8.4669 -2.0938 8.4669 -3.2344 Q8.4669 -4.375 8.8419 -5.1406 Q9.2326 -5.9062 9.9357 -6.2812 Q10.6388 -6.6719 11.5607 -6.6719 ZM11.5607 -5.4062 Q11.0451 -5.4062 10.7013 -5.0625 Q10.3732 -4.7344 10.3107 -4.0156 L12.8107 -4.0156 Q12.8107 -4.625 12.4982 -5.0156 Q12.2013 -5.4062 11.5607 -5.4062 ZM20.5277 -1.9375 Q20.5277 -0.9531 19.8246 -0.4062 Q19.1215 0.125 17.7309 0.125 Q17.0434 0.125 16.5434 0.0312 Q16.059 -0.0625 15.559 -0.2656 L15.559 -1.7344 Q16.0902 -1.5 16.6996 -1.3438 Q17.309 -1.1875 17.7777 -1.1875 Q18.309 -1.1875 18.5277 -1.3438 Q18.7621 -1.5 18.7621 -1.75 Q18.7621 -1.9219 18.6684 -2.0469 Q18.5746 -2.1875 18.2777 -2.3438 Q17.9809 -2.5156 17.3402 -2.7812 Q16.7309 -3.0469 16.3246 -3.2969 Q15.934 -3.5625 15.7465 -3.9219 Q15.559 -4.2969 15.559 -4.8438 Q15.559 -5.7656 16.2621 -6.2188 Q16.9652 -6.6719 18.1371 -6.6719 Q18.7621 -6.6719 19.309 -6.5469 Q19.8559 -6.4375 20.4496 -6.1562 L19.9027 -4.875 Q19.434 -5.0781 18.9965 -5.2188 Q18.559 -5.3594 18.1215 -5.3594 Q17.3246 -5.3594 17.3246 -4.9219 Q17.3246 -4.7656 17.4184 -4.6406 Q17.5277 -4.5156 17.8246 -4.3594 Q18.1215 -4.2188 18.6996 -3.9844 Q19.2621 -3.75 19.6684 -3.5 Q20.0746 -3.2656 20.2934 -2.8906 Q20.5277 -2.5312 20.5277 -1.9375 ZM24.6793 -1.3125 Q24.9762 -1.3125 25.2418 -1.3594 Q25.523 -1.4219 25.8043 -1.5156 L25.8043 -0.1875 Q25.5074 -0.0625 25.0855 0.0312 Q24.6637 0.125 24.1637 0.125 Q23.5699 0.125 23.1012 -0.0625 Q22.648 -0.2656 22.3668 -0.7344 Q22.1012 -1.2188 22.1012 -2.0469 L22.1012 -5.2031 L21.2574 -5.2031 L21.2574 -5.9688 L22.2418 -6.5625 L22.7574 -7.9375 L23.898 -7.9375 L23.898 -6.5469 L25.7262 -6.5469 L25.7262 -5.2031 L23.898 -5.2031 L23.898 -2.0469 Q23.898 -1.6875 24.1012 -1.5 Q24.3199 -1.3125 24.6793 -1.3125 ZM30.5592 0 L28.7467 0 L28.7467 -7.0625 L26.4186 -7.0625 L26.4186 -8.5625 L32.8873 -8.5625 L32.8873 -7.0625 L30.5592 -7.0625 L30.5592 0 ZM36.7729 -6.6719 Q38.1166 -6.6719 38.9135 -5.8906 Q39.7104 -5.125 39.7104 -3.7031 L39.7104 -2.8281 L35.4916 -2.8281 Q35.5072 -2.0781 35.9291 -1.6406 Q36.3666 -1.2188 37.1166 -1.2188 Q37.7572 -1.2188 38.2729 -1.3438 Q38.7885 -1.4688 39.3354 -1.7344 L39.3354 -0.3438 Q38.851 -0.1094 38.3197 0 Q37.7885 0.125 37.0385 0.125 Q36.0541 0.125 35.2885 -0.2344 Q34.5385 -0.6094 34.101 -1.3438 Q33.6791 -2.0938 33.6791 -3.2344 Q33.6791 -4.375 34.0541 -5.1406 Q34.4447 -5.9062 35.1479 -6.2812 Q35.851 -6.6719 36.7729 -6.6719 ZM36.7729 -5.4062 Q36.2572 -5.4062 35.9135 -5.0625 Q35.5854 -4.7344 35.5229 -4.0156 L38.0229 -4.0156 Q38.0229 -4.625 37.7104 -5.0156 Q37.4135 -5.4062 36.7729 -5.4062 ZM48.8493 -6.6719 Q49.9743 -6.6719 50.5368 -6.0938 Q51.1149 -5.5312 51.1149 -4.2656 L51.1149 0 L49.318 0 L49.318 -3.8281 Q49.318 -5.25 48.3337 -5.25 Q47.6305 -5.25 47.318 -4.7344 Q47.0212 -4.2344 47.0212 -3.2812 L47.0212 0 L45.2399 0 L45.2399 -3.8281 Q45.2399 -5.25 44.2555 -5.25 Q43.5055 -5.25 43.2243 -4.6875 Q42.943 -4.125 42.943 -3.0781 L42.943 0 L41.1618 0 L41.1618 -6.5469 L42.5212 -6.5469 L42.7712 -5.7188 L42.8649 -5.7188 Q43.1618 -6.2188 43.6774 -6.4375 Q44.2087 -6.6719 44.7712 -6.6719 Q45.4899 -6.6719 45.9899 -6.4375 Q46.5055 -6.2031 46.7712 -5.7188 L46.9274 -5.7188 Q47.2243 -6.2188 47.7555 -6.4375 Q48.2868 -6.6719 48.8493 -6.6719 ZM56.5865 -6.6719 Q57.6959 -6.6719 58.3834 -5.8125 Q59.0709 -4.9531 59.0709 -3.2812 Q59.0709 -1.625 58.3521 -0.75 Q57.649 0.125 56.5396 0.125 Q55.8365 0.125 55.4146 -0.125 Q54.9928 -0.3906 54.7271 -0.7188 L54.6334 -0.7188 Q54.7271 -0.2188 54.7271 0.2344 L54.7271 2.875 L52.9459 2.875 L52.9459 -6.5469 L54.399 -6.5469 L54.649 -5.7031 L54.7271 -5.7031 Q54.9928 -6.0938 55.4303 -6.375 Q55.8834 -6.6719 56.5865 -6.6719 ZM56.024 -5.25 Q55.3209 -5.25 55.0396 -4.8125 Q54.7584 -4.375 54.7271 -3.4844 L54.7271 -3.2969 Q54.7271 -2.3594 55.0084 -1.8438 Q55.2896 -1.3281 56.0396 -1.3281 Q56.649 -1.3281 56.9459 -1.8438 Q57.2428 -2.3594 57.2428 -3.3125 Q57.2428 -5.25 56.024 -5.25 ZM63.2294 -6.6875 Q64.5419 -6.6875 65.2451 -6.1094 Q65.9482 -5.5469 65.9482 -4.375 L65.9482 0 L64.6982 0 L64.3544 -0.8906 L64.3076 -0.8906 Q63.8857 -0.3594 63.4169 -0.1094 Q62.9482 0.125 62.1357 0.125 Q61.2607 0.125 60.6826 -0.3906 Q60.1044 -0.9062 60.1044 -1.9531 Q60.1044 -3 60.8388 -3.5 Q61.5732 -4 63.0419 -4.0469 L64.1826 -4.0781 L64.1826 -4.375 Q64.1826 -4.8906 63.9013 -5.125 Q63.6357 -5.3594 63.1513 -5.3594 Q62.6826 -5.3594 62.2138 -5.2188 Q61.7607 -5.0938 61.3076 -4.8906 L60.7138 -6.0938 Q61.2451 -6.375 61.8857 -6.5312 Q62.5263 -6.6875 63.2294 -6.6875 ZM63.4794 -3.0156 Q62.6201 -2.9844 62.2763 -2.6875 Q61.9482 -2.4062 61.9482 -1.9375 Q61.9482 -1.5312 62.1826 -1.3594 Q62.4169 -1.1875 62.8076 -1.1875 Q63.3857 -1.1875 63.7763 -1.5312 Q64.1826 -1.875 64.1826 -2.5 L64.1826 -3.0312 L63.4794 -3.0156 ZM69.5712 0 L67.79 0 L67.79 -9.125 L69.5712 -9.125 L69.5712 0 ZM74.2156 -1.3125 Q74.5125 -1.3125 74.7781 -1.3594 Q75.0594 -1.4219 75.3406 -1.5156 L75.3406 -0.1875 Q75.0437 -0.0625 74.6219 0.0312 Q74.2 0.125 73.7 0.125 Q73.1062 0.125 72.6375 -0.0625 Q72.1844 -0.2656 71.9031 -0.7344 Q71.6375 -1.2188 71.6375 -2.0469 L71.6375 -5.2031 L70.7937 -5.2031 L70.7937 -5.9688 L71.7781 -6.5625 L72.2937 -7.9375 L73.4344 -7.9375 L73.4344 -6.5469 L75.2625 -6.5469 L75.2625 -5.2031 L73.4344 -5.2031 L73.4344 -2.0469 Q73.4344 -1.6875 73.6375 -1.5 Q73.8562 -1.3125 74.2156 -1.3125 ZM79.3612 -6.6719 Q80.7049 -6.6719 81.5018 -5.8906 Q82.2987 -5.125 82.2987 -3.7031 L82.2987 -2.8281 L78.0799 -2.8281 Q78.0955 -2.0781 78.5174 -1.6406 Q78.9549 -1.2188 79.7049 -1.2188 Q80.3455 -1.2188 80.8612 -1.3438 Q81.3768 -1.4688 81.9237 -1.7344 L81.9237 -0.3438 Q81.4393 -0.1094 80.908 0 Q80.3768 0.125 79.6268 0.125 Q78.6424 0.125 77.8768 -0.2344 Q77.1268 -0.6094 76.6893 -1.3438 Q76.2674 -2.0938 76.2674 -3.2344 Q76.2674 -4.375 76.6424 -5.1406 Q77.033 -5.9062 77.7362 -6.2812 Q78.4393 -6.6719 79.3612 -6.6719 ZM79.3612 -5.4062 Q78.8455 -5.4062 78.5018 -5.0625 Q78.1737 -4.7344 78.1112 -4.0156 L80.6112 -4.0156 Q80.6112 -4.625 80.2987 -5.0156 Q80.0018 -5.4062 79.3612 -5.4062 ZM87.5313 -7.1719 Q86.4845 -7.1719 85.922 -6.3906 Q85.3751 -5.6094 85.3751 -4.2656 Q85.3751 -2.8906 85.8907 -2.1406 Q86.4063 -1.3906 87.5313 -1.3906 Q88.0626 -1.3906 88.5782 -1.5 Q89.0938 -1.625 89.7188 -1.8438 L89.7188 -0.3281 Q89.1563 -0.0938 88.5938 0.0156 Q88.047 0.125 87.3595 0.125 Q86.047 0.125 85.1876 -0.4219 Q84.3282 -0.9688 83.922 -1.9531 Q83.5157 -2.9531 83.5157 -4.2656 Q83.5157 -5.5625 83.9688 -6.5625 Q84.4376 -7.5625 85.3282 -8.125 Q86.2345 -8.6875 87.5313 -8.6875 Q88.172 -8.6875 88.8126 -8.5156 Q89.4532 -8.3594 90.0313 -8.0938 L89.4532 -6.6094 Q88.9688 -6.8438 88.4845 -7 Q88.0001 -7.1719 87.5313 -7.1719 ZM97.3473 -3.2812 Q97.3473 -1.6562 96.4879 -0.7656 Q95.6285 0.125 94.1598 0.125 Q93.2379 0.125 92.5191 -0.2656 Q91.816 -0.6719 91.4098 -1.4375 Q91.0035 -2.2031 91.0035 -3.2812 Q91.0035 -4.9219 91.8473 -5.7969 Q92.7066 -6.6719 94.191 -6.6719 Q95.1129 -6.6719 95.816 -6.2656 Q96.5348 -5.875 96.941 -5.125 Q97.3473 -4.375 97.3473 -3.2812 ZM92.816 -3.2812 Q92.816 -2.3125 93.1285 -1.8125 Q93.4566 -1.3125 94.1754 -1.3125 Q94.8785 -1.3125 95.191 -1.8125 Q95.5191 -2.3125 95.5191 -3.2812 Q95.5191 -4.2656 95.191 -4.75 Q94.8785 -5.2344 94.1598 -5.2344 Q93.4566 -5.2344 93.1285 -4.75 Q92.816 -4.2656 92.816 -3.2812 ZM102.541 -6.6719 Q103.6035 -6.6719 104.2285 -6.0938 Q104.8691 -5.5312 104.8691 -4.2656 L104.8691 0 L103.0878 0 L103.0878 -3.8281 Q103.0878 -4.5312 102.8222 -4.8906 Q102.5722 -5.25 102.0253 -5.25 Q101.2128 -5.25 100.9003 -4.6875 Q100.6035 -4.125 100.6035 -3.0781 L100.6035 0 L98.8222 0 L98.8222 -6.5469 L100.1816 -6.5469 L100.4316 -5.7188 L100.5253 -5.7188 Q100.8378 -6.2188 101.3847 -6.4375 Q101.9316 -6.6719 102.541 -6.6719 ZM110.3313 -5.2031 L108.7844 -5.2031 L108.7844 0 L106.9875 0 L106.9875 -5.2031 L106.0031 -5.2031 L106.0031 -6.0781 L106.9875 -6.5469 L106.9875 -7.0312 Q106.9875 -7.875 107.2688 -8.3281 Q107.55 -8.7969 108.0656 -8.9844 Q108.5969 -9.1875 109.3156 -9.1875 Q109.8313 -9.1875 110.2531 -9.0938 Q110.6906 -9.0156 110.9563 -8.9062 L110.5031 -7.5938 Q110.3 -7.6562 110.05 -7.7031 Q109.8156 -7.7656 109.5031 -7.7656 Q109.1281 -7.7656 108.9563 -7.5312 Q108.7844 -7.3125 108.7844 -6.9531 L108.7844 -6.5469 L110.3313 -6.5469 L110.3313 -5.2031 ZM112.2565 -9.125 Q112.6472 -9.125 112.9284 -8.9375 Q113.2253 -8.75 113.2253 -8.25 Q113.2253 -7.75 112.9284 -7.5625 Q112.6472 -7.375 112.2565 -7.375 Q111.8347 -7.375 111.5534 -7.5625 Q111.2722 -7.75 111.2722 -8.25 Q111.2722 -8.75 111.5534 -8.9375 Q111.8347 -9.125 112.2565 -9.125 ZM113.1315 -6.5469 L113.1315 0 L111.3503 0 L111.3503 -6.5469 L113.1315 -6.5469 ZM117.1353 -6.6719 Q118.3384 -6.6719 119.0259 -5.7188 L119.0728 -5.7188 L119.2134 -6.5469 L120.729 -6.5469 L120.729 0.0156 Q120.729 1.4219 119.9009 2.1406 Q119.0728 2.875 117.4634 2.875 Q116.7603 2.875 116.1665 2.7969 Q115.5728 2.7188 115.0103 2.5 L115.0103 1.0625 Q116.2134 1.5781 117.5572 1.5781 Q118.9478 1.5781 118.9478 0.0781 L118.9478 -0.0469 Q118.9478 -0.25 118.9634 -0.4688 Q118.979 -0.6875 118.9947 -0.8594 L118.9478 -0.8594 Q118.604 -0.3438 118.1353 -0.1094 Q117.6665 0.125 117.0884 0.125 Q115.9165 0.125 115.2603 -0.7656 Q114.6197 -1.6719 114.6197 -3.2656 Q114.6197 -4.875 115.2915 -5.7656 Q115.9634 -6.6719 117.1353 -6.6719 ZM117.6978 -5.2188 Q116.4322 -5.2188 116.4322 -3.2344 Q116.4322 -1.2812 117.7134 -1.2812 Q118.4009 -1.2812 118.729 -1.6719 Q119.0572 -2.0625 119.0572 -3.0312 L119.0572 -3.25 Q119.0572 -4.3125 118.729 -4.7656 Q118.4165 -5.2188 117.6978 -5.2188 Z" style="stroke:none; clip-path:url(#clipPath48);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M573.4285 365.1111 C-49.8741 248.7275 573.4285 365.1111 -49.8741 248.7275" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="573.4285" x2="562.1114" y1="365.1111" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="369.1017"
+      /><line x1="573.4285" x2="564.314" y1="365.1111" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="357.3055"
+      /><path d="M154.3795 -19.3094 A6 6 0 0 0 142.3795 -19.3094" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><line x1="371.4184" x2="292.8041" y1="-216.5434" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-216.5434"
+      /><line x1="292.8041" x2="292.8041" y1="-216.5434" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-19.3094"
+      /><line x1="292.8041" x2="154.3795" y1="-19.3094" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-19.3094"
+      /><line x1="142.3795" x2="42.8041" y1="-19.3094" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-19.3094"
+      /><line x1="42.8041" x2="42.8041" y1="-19.3094" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="371.3592"
+      /><line x1="42.8041" x2="-59.0766" y1="371.3592" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="371.3592"
+      /><line x1="-59.0766" x2="-48.6843" y1="371.3592" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="365.3592"
+      /><line x1="-59.0766" x2="-48.6843" y1="371.3592" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="377.3592"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="1097.9808" y="-903.5264" width="161.805" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="1097.9808" y="-903.5264" width="161.805" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(1107.9808,-885.5264)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM9.7845 -2.2969 Q9.7377 -2.5 9.6439 -2.8906 Q9.5658 -3.2969 9.4564 -3.75 Q9.347 -4.2188 9.2533 -4.6094 Q9.1595 -5 9.1127 -5.1875 L9.0658 -5.1875 Q9.0345 -5 8.9408 -4.6094 Q8.8627 -4.2188 8.7533 -3.75 Q8.6439 -3.2969 8.5345 -2.8906 Q8.4408 -2.4844 8.3939 -2.2656 L7.8783 0 L5.9564 0 L4.097 -6.5469 L5.8627 -6.5469 L6.6283 -3.6406 Q6.7064 -3.3438 6.7689 -2.9219 Q6.847 -2.5156 6.8939 -2.125 Q6.9564 -1.7344 6.9877 -1.5 L7.0345 -1.5 Q7.0502 -1.6719 7.0814 -1.9531 Q7.1127 -2.2344 7.1595 -2.5312 Q7.222 -2.8281 7.2689 -3.0781 Q7.3158 -3.3281 7.3314 -3.4062 L8.1283 -6.5469 L10.097 -6.5469 L10.8783 -3.4062 Q10.9252 -3.2344 10.9877 -2.8594 Q11.0502 -2.5 11.097 -2.1094 Q11.1595 -1.7344 11.1595 -1.5 L11.2064 -1.5 Q11.2377 -1.7031 11.2845 -2.0938 Q11.347 -2.4844 11.4252 -2.9062 Q11.5033 -3.3438 11.597 -3.6406 L12.3783 -6.5469 L14.1283 -6.5469 L12.2377 0 L10.3002 0 L9.7845 -2.2969 ZM17.9472 -1.3125 Q18.2441 -1.3125 18.5097 -1.3594 Q18.791 -1.4219 19.0722 -1.5156 L19.0722 -0.1875 Q18.7754 -0.0625 18.3535 0.0312 Q17.9316 0.125 17.4316 0.125 Q16.8379 0.125 16.3691 -0.0625 Q15.916 -0.2656 15.6347 -0.7344 Q15.3691 -1.2188 15.3691 -2.0469 L15.3691 -5.2031 L14.5254 -5.2031 L14.5254 -5.9688 L15.5097 -6.5625 L16.0254 -7.9375 L17.166 -7.9375 L17.166 -6.5469 L18.9941 -6.5469 L18.9941 -5.2031 L17.166 -5.2031 L17.166 -2.0469 Q17.166 -1.6875 17.3691 -1.5 Q17.5879 -1.3125 17.9472 -1.3125 ZM25.7803 0 L25.1553 -2.0469 L22.0303 -2.0469 L21.4053 0 L19.4521 0 L22.4834 -8.6094 L24.7021 -8.6094 L27.7334 0 L25.7803 0 ZM24.0928 -5.5625 Q24.0303 -5.7656 23.9365 -6.0781 Q23.8428 -6.3906 23.749 -6.7031 Q23.6553 -7.0312 23.5928 -7.2656 Q23.5303 -7.0312 23.4209 -6.6719 Q23.3271 -6.3281 23.2334 -6 Q23.1553 -5.6875 23.0928 -5.5625 L22.4834 -3.5625 L24.7178 -3.5625 L24.0928 -5.5625 ZM34.6853 -6.5469 L34.6853 0 L33.3103 0 L33.076 -0.8438 L32.9822 -0.8438 Q32.6697 -0.3438 32.1228 -0.1094 Q31.576 0.125 30.9666 0.125 Q29.9041 0.125 29.2635 -0.4375 Q28.6385 -1.0156 28.6385 -2.2812 L28.6385 -6.5469 L30.4197 -6.5469 L30.4197 -2.7188 Q30.4197 -2.0312 30.6697 -1.6719 Q30.9197 -1.3125 31.4822 -1.3125 Q32.2947 -1.3125 32.5916 -1.8594 Q32.8885 -2.4219 32.8885 -3.4688 L32.8885 -6.5469 L34.6853 -6.5469 ZM39.3194 -1.3125 Q39.6163 -1.3125 39.8819 -1.3594 Q40.1631 -1.4219 40.4444 -1.5156 L40.4444 -0.1875 Q40.1475 -0.0625 39.7256 0.0312 Q39.3038 0.125 38.8038 0.125 Q38.21 0.125 37.7413 -0.0625 Q37.2881 -0.2656 37.0069 -0.7344 Q36.7413 -1.2188 36.7413 -2.0469 L36.7413 -5.2031 L35.8975 -5.2031 L35.8975 -5.9688 L36.8819 -6.5625 L37.3975 -7.9375 L38.5381 -7.9375 L38.5381 -6.5469 L40.3663 -6.5469 L40.3663 -5.2031 L38.5381 -5.2031 L38.5381 -2.0469 Q38.5381 -1.6875 38.7413 -1.5 Q38.96 -1.3125 39.3194 -1.3125 ZM43.543 -7.2656 Q43.543 -6.7812 43.5118 -6.3281 Q43.4805 -5.8906 43.4649 -5.7188 L43.5587 -5.7188 Q43.8712 -6.2188 44.3555 -6.4375 Q44.8555 -6.6719 45.4493 -6.6719 Q46.5274 -6.6719 47.168 -6.0938 Q47.8087 -5.5312 47.8087 -4.2656 L47.8087 0 L46.0274 0 L46.0274 -3.8281 Q46.0274 -5.25 44.9649 -5.25 Q44.168 -5.25 43.8555 -4.6875 Q43.543 -4.125 43.543 -3.0781 L43.543 0 L41.7618 0 L41.7618 -9.125 L43.543 -9.125 L43.543 -7.2656 ZM52.349 -6.6719 Q53.6927 -6.6719 54.4896 -5.8906 Q55.2865 -5.125 55.2865 -3.7031 L55.2865 -2.8281 L51.0677 -2.8281 Q51.0833 -2.0781 51.5052 -1.6406 Q51.9427 -1.2188 52.6927 -1.2188 Q53.3333 -1.2188 53.849 -1.3438 Q54.3646 -1.4688 54.9115 -1.7344 L54.9115 -0.3438 Q54.4271 -0.1094 53.8958 0 Q53.3646 0.125 52.6146 0.125 Q51.6302 0.125 50.8646 -0.2344 Q50.1146 -0.6094 49.6771 -1.3438 Q49.2552 -2.0938 49.2552 -3.2344 Q49.2552 -4.375 49.6302 -5.1406 Q50.0208 -5.9062 50.724 -6.2812 Q51.4271 -6.6719 52.349 -6.6719 ZM52.349 -5.4062 Q51.8333 -5.4062 51.4896 -5.0625 Q51.1615 -4.7344 51.099 -4.0156 L53.599 -4.0156 Q53.599 -4.625 53.2865 -5.0156 Q52.9896 -5.4062 52.349 -5.4062 ZM60.4566 -6.6719 Q61.5191 -6.6719 62.1441 -6.0938 Q62.7848 -5.5312 62.7848 -4.2656 L62.7848 0 L61.0035 0 L61.0035 -3.8281 Q61.0035 -4.5312 60.7379 -4.8906 Q60.4879 -5.25 59.941 -5.25 Q59.1285 -5.25 58.816 -4.6875 Q58.5191 -4.125 58.5191 -3.0781 L58.5191 0 L56.7379 0 L56.7379 -6.5469 L58.0973 -6.5469 L58.3473 -5.7188 L58.441 -5.7188 Q58.7535 -6.2188 59.3004 -6.4375 Q59.8473 -6.6719 60.4566 -6.6719 ZM67.3876 -1.3125 Q67.6844 -1.3125 67.9501 -1.3594 Q68.2313 -1.4219 68.5126 -1.5156 L68.5126 -0.1875 Q68.2157 -0.0625 67.7938 0.0312 Q67.3719 0.125 66.8719 0.125 Q66.2782 0.125 65.8094 -0.0625 Q65.3563 -0.2656 65.0751 -0.7344 Q64.8094 -1.2188 64.8094 -2.0469 L64.8094 -5.2031 L63.9657 -5.2031 L63.9657 -5.9688 L64.9501 -6.5625 L65.4657 -7.9375 L66.6063 -7.9375 L66.6063 -6.5469 L68.4344 -6.5469 L68.4344 -5.2031 L66.6063 -5.2031 L66.6063 -2.0469 Q66.6063 -1.6875 66.8094 -1.5 Q67.0282 -1.3125 67.3876 -1.3125 ZM70.7362 -9.125 Q71.1269 -9.125 71.4081 -8.9375 Q71.705 -8.75 71.705 -8.25 Q71.705 -7.75 71.4081 -7.5625 Q71.1269 -7.375 70.7362 -7.375 Q70.3144 -7.375 70.0331 -7.5625 Q69.7519 -7.75 69.7519 -8.25 Q69.7519 -8.75 70.0331 -8.9375 Q70.3144 -9.125 70.7362 -9.125 ZM71.6112 -6.5469 L71.6112 0 L69.83 0 L69.83 -6.5469 L71.6112 -6.5469 ZM76.1463 0.125 Q74.6931 0.125 73.8963 -0.6875 Q73.0994 -1.5 73.0994 -3.2344 Q73.0994 -4.4375 73.5056 -5.1875 Q73.9119 -5.9531 74.6306 -6.3125 Q75.365 -6.6719 76.3025 -6.6719 Q76.9744 -6.6719 77.4744 -6.5312 Q77.9744 -6.4062 78.3494 -6.2344 L77.8181 -4.8438 Q77.3963 -5.0156 77.0213 -5.125 Q76.6619 -5.2344 76.3025 -5.2344 Q74.9119 -5.2344 74.9119 -3.25 Q74.9119 -2.2656 75.2713 -1.7969 Q75.6463 -1.3281 76.3025 -1.3281 Q76.865 -1.3281 77.3025 -1.4688 Q77.74 -1.625 78.1463 -1.8906 L78.1463 -0.375 Q77.74 -0.1094 77.2869 0 Q76.8338 0.125 76.1463 0.125 ZM82.3456 -6.6875 Q83.6581 -6.6875 84.3612 -6.1094 Q85.0643 -5.5469 85.0643 -4.375 L85.0643 0 L83.8143 0 L83.4706 -0.8906 L83.4237 -0.8906 Q83.0018 -0.3594 82.5331 -0.1094 Q82.0643 0.125 81.2518 0.125 Q80.3768 0.125 79.7987 -0.3906 Q79.2206 -0.9062 79.2206 -1.9531 Q79.2206 -3 79.9549 -3.5 Q80.6893 -4 82.1581 -4.0469 L83.2987 -4.0781 L83.2987 -4.375 Q83.2987 -4.8906 83.0174 -5.125 Q82.7518 -5.3594 82.2674 -5.3594 Q81.7987 -5.3594 81.3299 -5.2188 Q80.8768 -5.0938 80.4237 -4.8906 L79.8299 -6.0938 Q80.3612 -6.375 81.0018 -6.5312 Q81.6424 -6.6875 82.3456 -6.6875 ZM82.5956 -3.0156 Q81.7362 -2.9844 81.3924 -2.6875 Q81.0643 -2.4062 81.0643 -1.9375 Q81.0643 -1.5312 81.2987 -1.3594 Q81.5331 -1.1875 81.9237 -1.1875 Q82.5018 -1.1875 82.8924 -1.5312 Q83.2987 -1.875 83.2987 -2.5 L83.2987 -3.0312 L82.5956 -3.0156 ZM89.6717 -1.3125 Q89.9686 -1.3125 90.2342 -1.3594 Q90.5155 -1.4219 90.7967 -1.5156 L90.7967 -0.1875 Q90.4998 -0.0625 90.078 0.0312 Q89.6561 0.125 89.1561 0.125 Q88.5623 0.125 88.0936 -0.0625 Q87.6405 -0.2656 87.3592 -0.7344 Q87.0936 -1.2188 87.0936 -2.0469 L87.0936 -5.2031 L86.2498 -5.2031 L86.2498 -5.9688 L87.2342 -6.5625 L87.7498 -7.9375 L88.8905 -7.9375 L88.8905 -6.5469 L90.7186 -6.5469 L90.7186 -5.2031 L88.8905 -5.2031 L88.8905 -2.0469 Q88.8905 -1.6875 89.0936 -1.5 Q89.3123 -1.3125 89.6717 -1.3125 ZM93.0204 -9.125 Q93.411 -9.125 93.6923 -8.9375 Q93.9891 -8.75 93.9891 -8.25 Q93.9891 -7.75 93.6923 -7.5625 Q93.411 -7.375 93.0204 -7.375 Q92.5985 -7.375 92.3173 -7.5625 Q92.036 -7.75 92.036 -8.25 Q92.036 -8.75 92.3173 -8.9375 Q92.5985 -9.125 93.0204 -9.125 ZM93.8954 -6.5469 L93.8954 0 L92.1141 0 L92.1141 -6.5469 L93.8954 -6.5469 ZM101.7273 -3.2812 Q101.7273 -1.6562 100.8679 -0.7656 Q100.0085 0.125 98.5398 0.125 Q97.6179 0.125 96.8992 -0.2656 Q96.196 -0.6719 95.7898 -1.4375 Q95.3835 -2.2031 95.3835 -3.2812 Q95.3835 -4.9219 96.2273 -5.7969 Q97.0867 -6.6719 98.571 -6.6719 Q99.4929 -6.6719 100.196 -6.2656 Q100.9148 -5.875 101.321 -5.125 Q101.7273 -4.375 101.7273 -3.2812 ZM97.196 -3.2812 Q97.196 -2.3125 97.5085 -1.8125 Q97.8367 -1.3125 98.5554 -1.3125 Q99.2585 -1.3125 99.571 -1.8125 Q99.8992 -2.3125 99.8992 -3.2812 Q99.8992 -4.2656 99.571 -4.75 Q99.2585 -5.2344 98.5398 -5.2344 Q97.8367 -5.2344 97.5085 -4.75 Q97.196 -4.2656 97.196 -3.2812 ZM106.921 -6.6719 Q107.9835 -6.6719 108.6085 -6.0938 Q109.2491 -5.5312 109.2491 -4.2656 L109.2491 0 L107.4678 0 L107.4678 -3.8281 Q107.4678 -4.5312 107.2022 -4.8906 Q106.9522 -5.25 106.4053 -5.25 Q105.5928 -5.25 105.2803 -4.6875 Q104.9835 -4.125 104.9835 -3.0781 L104.9835 0 L103.2022 0 L103.2022 -6.5469 L104.5616 -6.5469 L104.8116 -5.7188 L104.9053 -5.7188 Q105.2178 -6.2188 105.7647 -6.4375 Q106.3116 -6.6719 106.921 -6.6719 ZM113.0238 0 L111.2269 0 L111.2269 -8.5625 L116.1331 -8.5625 L116.1331 -7.0781 L113.0238 -7.0781 L113.0238 -4.875 L115.9144 -4.875 L115.9144 -3.3906 L113.0238 -3.3906 L113.0238 0 ZM118.5806 -9.125 Q118.9712 -9.125 119.2524 -8.9375 Q119.5493 -8.75 119.5493 -8.25 Q119.5493 -7.75 119.2524 -7.5625 Q118.9712 -7.375 118.5806 -7.375 Q118.1587 -7.375 117.8774 -7.5625 Q117.5962 -7.75 117.5962 -8.25 Q117.5962 -8.75 117.8774 -8.9375 Q118.1587 -9.125 118.5806 -9.125 ZM119.4556 -6.5469 L119.4556 0 L117.6743 0 L117.6743 -6.5469 L119.4556 -6.5469 ZM123.1156 0 L121.3343 0 L121.3343 -9.125 L123.1156 -9.125 L123.1156 0 ZM127.76 -1.3125 Q128.0568 -1.3125 128.3225 -1.3594 Q128.6037 -1.4219 128.885 -1.5156 L128.885 -0.1875 Q128.5881 -0.0625 128.1662 0.0312 Q127.7443 0.125 127.2443 0.125 Q126.6506 0.125 126.1818 -0.0625 Q125.7287 -0.2656 125.4475 -0.7344 Q125.1818 -1.2188 125.1818 -2.0469 L125.1818 -5.2031 L124.3381 -5.2031 L124.3381 -5.9688 L125.3225 -6.5625 L125.8381 -7.9375 L126.9787 -7.9375 L126.9787 -6.5469 L128.8068 -6.5469 L128.8068 -5.2031 L126.9787 -5.2031 L126.9787 -2.0469 Q126.9787 -1.6875 127.1818 -1.5 Q127.4006 -1.3125 127.76 -1.3125 ZM132.9055 -6.6719 Q134.2493 -6.6719 135.0461 -5.8906 Q135.843 -5.125 135.843 -3.7031 L135.843 -2.8281 L131.6243 -2.8281 Q131.6399 -2.0781 132.0618 -1.6406 Q132.4993 -1.2188 133.2493 -1.2188 Q133.8899 -1.2188 134.4055 -1.3438 Q134.9211 -1.4688 135.468 -1.7344 L135.468 -0.3438 Q134.9836 -0.1094 134.4524 0 Q133.9211 0.125 133.1711 0.125 Q132.1868 0.125 131.4211 -0.2344 Q130.6711 -0.6094 130.2336 -1.3438 Q129.8118 -2.0938 129.8118 -3.2344 Q129.8118 -4.375 130.1868 -5.1406 Q130.5774 -5.9062 131.2805 -6.2812 Q131.9836 -6.6719 132.9055 -6.6719 ZM132.9055 -5.4062 Q132.3899 -5.4062 132.0461 -5.0625 Q131.718 -4.7344 131.6555 -4.0156 L134.1555 -4.0156 Q134.1555 -4.625 133.843 -5.0156 Q133.5461 -5.4062 132.9055 -5.4062 ZM140.9507 -6.6719 Q141.0913 -6.6719 141.2632 -6.6562 Q141.4507 -6.6406 141.5601 -6.625 L141.4194 -4.9375 Q141.3413 -4.9688 141.1694 -4.9844 Q141.0132 -5 140.8882 -5 Q140.4351 -5 140.0132 -4.8438 Q139.5913 -4.6875 139.3257 -4.3125 Q139.0757 -3.9531 139.0757 -3.3438 L139.0757 0 L137.2944 0 L137.2944 -6.5469 L138.6538 -6.5469 L138.9194 -5.4531 L138.9976 -5.4531 Q139.2788 -5.9531 139.7788 -6.3125 Q140.2944 -6.6719 140.9507 -6.6719 Z" style="stroke:none; clip-path:url(#clipPath49);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><path d="M470.4184 -218.5016 C1183.8309 -258.6254 470.4184 -218.5016 1183.8309 -258.6254" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1183.831" x2="1173.792" y1="-258.6254" style="fill:none; clip-path:url(#clipPath2);" y2="-252.0513"
+      /><line x1="1183.831" x2="1173.1182" y1="-258.6254" style="fill:none; clip-path:url(#clipPath2);" y2="-264.0324"
+      /><line x1="665.7877" x2="1833.1174" y1="767.9891" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="767.9891"
+      /><line x1="1833.1174" x2="1833.1174" y1="767.9891" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-745.1645"
+      /><line x1="1833.1174" x2="1178.8833" y1="-745.1645" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-745.1645"
+      /><line x1="1178.8833" x2="1178.8833" y1="-745.1645" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-873.5264"
+      /><line x1="665.7877" x2="676.18" y1="767.9891" style="fill:none; clip-path:url(#clipPath2);" y2="761.9891"
+      /><line x1="665.7877" x2="676.18" y1="767.9891" style="fill:none; clip-path:url(#clipPath2);" y2="773.9891"
+      /><line x1="1097.9808" x2="936.1441" y1="-890.3163" style="stroke-linecap:butt; clip-path:url(#clipPath2); fill:none; stroke-dasharray:5,5;" y2="-893.8968"
+      /><line x1="1097.9808" x2="1087.4584" y1="-890.3163" style="fill:none; clip-path:url(#clipPath2);" y2="-884.5476"
+      /><line x1="1097.9808" x2="1087.7238" y1="-890.3163" style="fill:none; clip-path:url(#clipPath2);" y2="-896.5447"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="-425.5757" y="351.015" width="176" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-425.5757" y="351.015" width="176" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-376.5757,369.015)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath50);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-415.5757,385.3592)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 ZM89.7323 -1.1875 L83.9042 -3.75 L83.9042 -4.5938 L89.7323 -7.5 L89.7323 -6.0938 L85.7167 -4.2344 L89.7323 -2.5938 L89.7323 -1.1875 ZM94.9714 -7.1719 Q93.9245 -7.1719 93.362 -6.3906 Q92.8151 -5.6094 92.8151 -4.2656 Q92.8151 -2.8906 93.3308 -2.1406 Q93.8464 -1.3906 94.9714 -1.3906 Q95.5026 -1.3906 96.0183 -1.5 Q96.5339 -1.625 97.1589 -1.8438 L97.1589 -0.3281 Q96.5964 -0.0938 96.0339 0.0156 Q95.487 0.125 94.7995 0.125 Q93.487 0.125 92.6276 -0.4219 Q91.7683 -0.9688 91.362 -1.9531 Q90.9558 -2.9531 90.9558 -4.2656 Q90.9558 -5.5625 91.4089 -6.5625 Q91.8776 -7.5625 92.7683 -8.125 Q93.6745 -8.6875 94.9714 -8.6875 Q95.612 -8.6875 96.2526 -8.5156 Q96.8933 -8.3594 97.4714 -8.0938 L96.8933 -6.6094 Q96.4089 -6.8438 95.9245 -7 Q95.4401 -7.1719 94.9714 -7.1719 ZM100.6154 0 L98.8342 0 L98.8342 -9.125 L100.6154 -9.125 L100.6154 0 ZM103.4005 -9.125 Q103.7911 -9.125 104.0723 -8.9375 Q104.3692 -8.75 104.3692 -8.25 Q104.3692 -7.75 104.0723 -7.5625 Q103.7911 -7.375 103.4005 -7.375 Q102.9786 -7.375 102.6973 -7.5625 Q102.4161 -7.75 102.4161 -8.25 Q102.4161 -8.75 102.6973 -8.9375 Q102.9786 -9.125 103.4005 -9.125 ZM104.2755 -6.5469 L104.2755 0 L102.4942 0 L102.4942 -6.5469 L104.2755 -6.5469 ZM108.8574 -6.6719 Q110.2011 -6.6719 110.998 -5.8906 Q111.7949 -5.125 111.7949 -3.7031 L111.7949 -2.8281 L107.5761 -2.8281 Q107.5917 -2.0781 108.0136 -1.6406 Q108.4511 -1.2188 109.2011 -1.2188 Q109.8417 -1.2188 110.3574 -1.3438 Q110.873 -1.4688 111.4199 -1.7344 L111.4199 -0.3438 Q110.9355 -0.1094 110.4042 0 Q109.873 0.125 109.123 0.125 Q108.1386 0.125 107.373 -0.2344 Q106.623 -0.6094 106.1855 -1.3438 Q105.7636 -2.0938 105.7636 -3.2344 Q105.7636 -4.375 106.1386 -5.1406 Q106.5292 -5.9062 107.2324 -6.2812 Q107.9355 -6.6719 108.8574 -6.6719 ZM108.8574 -5.4062 Q108.3417 -5.4062 107.998 -5.0625 Q107.6699 -4.7344 107.6074 -4.0156 L110.1074 -4.0156 Q110.1074 -4.625 109.7949 -5.0156 Q109.498 -5.4062 108.8574 -5.4062 ZM116.965 -6.6719 Q118.0275 -6.6719 118.6525 -6.0938 Q119.2932 -5.5312 119.2932 -4.2656 L119.2932 0 L117.5119 0 L117.5119 -3.8281 Q117.5119 -4.5312 117.2463 -4.8906 Q116.9963 -5.25 116.4494 -5.25 Q115.6369 -5.25 115.3244 -4.6875 Q115.0275 -4.125 115.0275 -3.0781 L115.0275 0 L113.2463 0 L113.2463 -6.5469 L114.6057 -6.5469 L114.8557 -5.7188 L114.9494 -5.7188 Q115.2619 -6.2188 115.8088 -6.4375 Q116.3557 -6.6719 116.965 -6.6719 ZM123.896 -1.3125 Q124.1928 -1.3125 124.4585 -1.3594 Q124.7397 -1.4219 125.021 -1.5156 L125.021 -0.1875 Q124.7241 -0.0625 124.3022 0.0312 Q123.8803 0.125 123.3803 0.125 Q122.7866 0.125 122.3178 -0.0625 Q121.8647 -0.2656 121.5835 -0.7344 Q121.3178 -1.2188 121.3178 -2.0469 L121.3178 -5.2031 L120.4741 -5.2031 L120.4741 -5.9688 L121.4585 -6.5625 L121.9741 -7.9375 L123.1147 -7.9375 L123.1147 -6.5469 L124.9428 -6.5469 L124.9428 -5.2031 L123.1147 -5.2031 L123.1147 -2.0469 Q123.1147 -1.6875 123.3178 -1.5 Q123.5366 -1.3125 123.896 -1.3125 ZM128.0884 -1.2656 Q127.9321 -0.625 127.6353 0.125 Q127.354 0.8906 127.0571 1.5469 L125.7759 1.5469 Q125.9478 0.8438 126.104 0.0312 Q126.2759 -0.7656 126.354 -1.3906 L128.0103 -1.3906 L128.0884 -1.2656 ZM133.7847 -9.125 Q134.1753 -9.125 134.4566 -8.9375 Q134.7534 -8.75 134.7534 -8.25 Q134.7534 -7.75 134.4566 -7.5625 Q134.1753 -7.375 133.7847 -7.375 Q133.3628 -7.375 133.0816 -7.5625 Q132.8003 -7.75 132.8003 -8.25 Q132.8003 -8.75 133.0816 -8.9375 Q133.3628 -9.125 133.7847 -9.125 ZM134.6597 -6.5469 L134.6597 0 L132.8784 0 L132.8784 -6.5469 L134.6597 -6.5469 ZM140.2572 -6.6719 Q141.3197 -6.6719 141.9447 -6.0938 Q142.5853 -5.5312 142.5853 -4.2656 L142.5853 0 L140.8041 0 L140.8041 -3.8281 Q140.8041 -4.5312 140.5385 -4.8906 Q140.2885 -5.25 139.7416 -5.25 Q138.9291 -5.25 138.6166 -4.6875 Q138.3197 -4.125 138.3197 -3.0781 L138.3197 0 L136.5385 0 L136.5385 -6.5469 L137.8978 -6.5469 L138.1478 -5.7188 L138.2416 -5.7188 Q138.5541 -6.2188 139.101 -6.4375 Q139.6478 -6.6719 140.2572 -6.6719 ZM147.1881 -1.3125 Q147.485 -1.3125 147.7506 -1.3594 Q148.0319 -1.4219 148.3131 -1.5156 L148.3131 -0.1875 Q148.0163 -0.0625 147.5944 0.0312 Q147.1725 0.125 146.6725 0.125 Q146.0788 0.125 145.61 -0.0625 Q145.1569 -0.2656 144.8756 -0.7344 Q144.61 -1.2188 144.61 -2.0469 L144.61 -5.2031 L143.7663 -5.2031 L143.7663 -5.9688 L144.7506 -6.5625 L145.2663 -7.9375 L146.4069 -7.9375 L146.4069 -6.5469 L148.235 -6.5469 L148.235 -5.2031 L146.4069 -5.2031 L146.4069 -2.0469 Q146.4069 -1.6875 146.61 -1.5 Q146.8288 -1.3125 147.1881 -1.3125 ZM149.2087 -2.5938 L153.2243 -4.2344 L149.2087 -6.0938 L149.2087 -7.5 L155.0368 -4.5938 L155.0368 -3.75 L149.2087 -1.1875 L149.2087 -2.5938 Z" style="stroke:none; clip-path:url(#clipPath51);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); font-weight:bold; stroke-width:2;"
+    ><rect x="381.5717" y="-569.0404" width="116.7327" style="clip-path:url(#clipPath2); stroke:none;" height="30"
+      /><rect x="381.5717" y="-569.0404" width="116.7327" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="30"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(391.5717,-551.0404)"
+    ><path d="M4.7031 0 L2.6406 -6.7188 L2.5938 -6.7188 Q2.6094 -6.4844 2.625 -6 Q2.6562 -5.5156 2.6719 -4.9688 Q2.7031 -4.4219 2.7031 -3.9844 L2.7031 0 L1.0781 0 L1.0781 -8.5625 L3.5469 -8.5625 L5.5781 -2.0156 L5.6094 -2.0156 L7.7656 -8.5625 L10.2344 -8.5625 L10.2344 0 L8.5469 0 L8.5469 -4.0625 Q8.5469 -4.4688 8.5625 -4.9844 Q8.5781 -5.5156 8.5938 -5.9844 Q8.6094 -6.4688 8.625 -6.7031 L8.5781 -6.7031 L6.375 0 L4.7031 0 ZM14.9411 -6.6875 Q16.2536 -6.6875 16.9567 -6.1094 Q17.6598 -5.5469 17.6598 -4.375 L17.6598 0 L16.4098 0 L16.0661 -0.8906 L16.0192 -0.8906 Q15.5973 -0.3594 15.1286 -0.1094 Q14.6598 0.125 13.8473 0.125 Q12.9723 0.125 12.3942 -0.3906 Q11.8161 -0.9062 11.8161 -1.9531 Q11.8161 -3 12.5505 -3.5 Q13.2848 -4 14.7536 -4.0469 L15.8942 -4.0781 L15.8942 -4.375 Q15.8942 -4.8906 15.613 -5.125 Q15.3473 -5.3594 14.863 -5.3594 Q14.3942 -5.3594 13.9255 -5.2188 Q13.4723 -5.0938 13.0192 -4.8906 L12.4255 -6.0938 Q12.9567 -6.375 13.5973 -6.5312 Q14.238 -6.6875 14.9411 -6.6875 ZM15.1911 -3.0156 Q14.3317 -2.9844 13.988 -2.6875 Q13.6598 -2.4062 13.6598 -1.9375 Q13.6598 -1.5312 13.8942 -1.3594 Q14.1286 -1.1875 14.5192 -1.1875 Q15.0973 -1.1875 15.488 -1.5312 Q15.8942 -1.875 15.8942 -2.5 L15.8942 -3.0312 L15.1911 -3.0156 ZM23.2204 -6.6719 Q24.2829 -6.6719 24.9079 -6.0938 Q25.5485 -5.5312 25.5485 -4.2656 L25.5485 0 L23.7673 0 L23.7673 -3.8281 Q23.7673 -4.5312 23.5016 -4.8906 Q23.2516 -5.25 22.7048 -5.25 Q21.8923 -5.25 21.5798 -4.6875 Q21.2829 -4.125 21.2829 -3.0781 L21.2829 0 L19.5016 0 L19.5016 -6.5469 L20.861 -6.5469 L21.111 -5.7188 L21.2048 -5.7188 Q21.5173 -6.2188 22.0641 -6.4375 Q22.611 -6.6719 23.2204 -6.6719 ZM30.0732 -6.6875 Q31.3857 -6.6875 32.0888 -6.1094 Q32.7919 -5.5469 32.7919 -4.375 L32.7919 0 L31.5419 0 L31.1982 -0.8906 L31.1513 -0.8906 Q30.7294 -0.3594 30.2607 -0.1094 Q29.7919 0.125 28.9794 0.125 Q28.1044 0.125 27.5263 -0.3906 Q26.9482 -0.9062 26.9482 -1.9531 Q26.9482 -3 27.6826 -3.5 Q28.4169 -4 29.8857 -4.0469 L31.0263 -4.0781 L31.0263 -4.375 Q31.0263 -4.8906 30.7451 -5.125 Q30.4794 -5.3594 29.9951 -5.3594 Q29.5263 -5.3594 29.0576 -5.2188 Q28.6044 -5.0938 28.1513 -4.8906 L27.5576 -6.0938 Q28.0888 -6.375 28.7294 -6.5312 Q29.3701 -6.6875 30.0732 -6.6875 ZM30.3232 -3.0156 Q29.4638 -2.9844 29.1201 -2.6875 Q28.7919 -2.4062 28.7919 -1.9375 Q28.7919 -1.5312 29.0263 -1.3594 Q29.2607 -1.1875 29.6513 -1.1875 Q30.2294 -1.1875 30.6201 -1.5312 Q31.0263 -1.875 31.0263 -2.5 L31.0263 -3.0312 L30.3232 -3.0156 ZM36.7587 -6.6719 Q37.9619 -6.6719 38.6494 -5.7188 L38.6962 -5.7188 L38.8369 -6.5469 L40.3525 -6.5469 L40.3525 0.0156 Q40.3525 1.4219 39.5244 2.1406 Q38.6962 2.875 37.0869 2.875 Q36.3837 2.875 35.79 2.7969 Q35.1962 2.7188 34.6337 2.5 L34.6337 1.0625 Q35.8369 1.5781 37.1806 1.5781 Q38.5712 1.5781 38.5712 0.0781 L38.5712 -0.0469 Q38.5712 -0.25 38.5869 -0.4688 Q38.6025 -0.6875 38.6181 -0.8594 L38.5712 -0.8594 Q38.2275 -0.3438 37.7587 -0.1094 Q37.29 0.125 36.7119 0.125 Q35.54 0.125 34.8837 -0.7656 Q34.2431 -1.6719 34.2431 -3.2656 Q34.2431 -4.875 34.915 -5.7656 Q35.5869 -6.6719 36.7587 -6.6719 ZM37.3212 -5.2188 Q36.0556 -5.2188 36.0556 -3.2344 Q36.0556 -1.2812 37.3369 -1.2812 Q38.0244 -1.2812 38.3525 -1.6719 Q38.6806 -2.0625 38.6806 -3.0312 L38.6806 -3.25 Q38.6806 -4.3125 38.3525 -4.7656 Q38.04 -5.2188 37.3212 -5.2188 ZM44.9329 -6.6719 Q46.2767 -6.6719 47.0735 -5.8906 Q47.8704 -5.125 47.8704 -3.7031 L47.8704 -2.8281 L43.6517 -2.8281 Q43.6673 -2.0781 44.0892 -1.6406 Q44.5267 -1.2188 45.2767 -1.2188 Q45.9173 -1.2188 46.4329 -1.3438 Q46.9485 -1.4688 47.4954 -1.7344 L47.4954 -0.3438 Q47.011 -0.1094 46.4798 0 Q45.9485 0.125 45.1985 0.125 Q44.2142 0.125 43.4485 -0.2344 Q42.6985 -0.6094 42.261 -1.3438 Q41.8392 -2.0938 41.8392 -3.2344 Q41.8392 -4.375 42.2142 -5.1406 Q42.6048 -5.9062 43.3079 -6.2812 Q44.011 -6.6719 44.9329 -6.6719 ZM44.9329 -5.4062 Q44.4173 -5.4062 44.0735 -5.0625 Q43.7454 -4.7344 43.6829 -4.0156 L46.1829 -4.0156 Q46.1829 -4.625 45.8704 -5.0156 Q45.5735 -5.4062 44.9329 -5.4062 ZM52.9781 -6.6719 Q53.1187 -6.6719 53.2906 -6.6562 Q53.4781 -6.6406 53.5875 -6.625 L53.4468 -4.9375 Q53.3687 -4.9688 53.1968 -4.9844 Q53.0406 -5 52.9156 -5 Q52.4625 -5 52.0406 -4.8438 Q51.6187 -4.6875 51.3531 -4.3125 Q51.1031 -3.9531 51.1031 -3.3438 L51.1031 0 L49.3218 0 L49.3218 -6.5469 L50.6812 -6.5469 L50.9468 -5.4531 L51.025 -5.4531 Q51.3062 -5.9531 51.8062 -6.3125 Q52.3218 -6.6719 52.9781 -6.6719 ZM59.9574 -2.375 Q59.9574 -1.2344 59.1293 -0.5469 Q58.3168 0.125 56.8011 0.125 Q55.4574 0.125 54.3793 -0.3906 L54.3793 -2.0938 Q54.9886 -1.8281 55.6449 -1.5938 Q56.3011 -1.375 56.9574 -1.375 Q57.6293 -1.375 57.9105 -1.625 Q58.1918 -1.8906 58.1918 -2.2969 Q58.1918 -2.6094 57.9574 -2.8438 Q57.7386 -3.0781 57.3636 -3.2656 Q57.0043 -3.4688 56.5199 -3.7031 Q56.223 -3.8438 55.8636 -4.0312 Q55.5199 -4.2344 55.2074 -4.5312 Q54.8949 -4.8281 54.6761 -5.2344 Q54.473 -5.6562 54.473 -6.25 Q54.473 -7.4062 55.2543 -8.0469 Q56.0355 -8.6875 57.3793 -8.6875 Q58.0511 -8.6875 58.6605 -8.5312 Q59.2699 -8.375 59.9261 -8.0938 L59.348 -6.6719 Q58.7543 -6.9062 58.2855 -7.0312 Q57.8168 -7.1719 57.3168 -7.1719 Q56.8011 -7.1719 56.5199 -6.9375 Q56.2543 -6.7031 56.2543 -6.3125 Q56.2543 -5.8594 56.6605 -5.5938 Q57.0668 -5.3281 57.8793 -4.9375 Q58.5355 -4.625 58.9886 -4.2812 Q59.4574 -3.9531 59.7074 -3.5 Q59.9574 -3.0469 59.9574 -2.375 ZM64.0851 -6.6719 Q65.4288 -6.6719 66.2257 -5.8906 Q67.0226 -5.125 67.0226 -3.7031 L67.0226 -2.8281 L62.8038 -2.8281 Q62.8194 -2.0781 63.2413 -1.6406 Q63.6788 -1.2188 64.4288 -1.2188 Q65.0694 -1.2188 65.5851 -1.3438 Q66.1007 -1.4688 66.6476 -1.7344 L66.6476 -0.3438 Q66.1632 -0.1094 65.6319 0 Q65.1007 0.125 64.3507 0.125 Q63.3663 0.125 62.6007 -0.2344 Q61.8507 -0.6094 61.4132 -1.3438 Q60.9913 -2.0938 60.9913 -3.2344 Q60.9913 -4.375 61.3663 -5.1406 Q61.7569 -5.9062 62.4601 -6.2812 Q63.1632 -6.6719 64.0851 -6.6719 ZM64.0851 -5.4062 Q63.5694 -5.4062 63.2257 -5.0625 Q62.8976 -4.7344 62.8351 -4.0156 L65.3351 -4.0156 Q65.3351 -4.625 65.0226 -5.0156 Q64.7257 -5.4062 64.0851 -5.4062 ZM72.1302 -6.6719 Q72.2709 -6.6719 72.4427 -6.6562 Q72.6302 -6.6406 72.7396 -6.625 L72.599 -4.9375 Q72.5209 -4.9688 72.349 -4.9844 Q72.1927 -5 72.0677 -5 Q71.6146 -5 71.1927 -4.8438 Q70.7709 -4.6875 70.5052 -4.3125 Q70.2552 -3.9531 70.2552 -3.3438 L70.2552 0 L68.474 0 L68.474 -6.5469 L69.8334 -6.5469 L70.099 -5.4531 L70.1771 -5.4531 Q70.4584 -5.9531 70.9584 -6.3125 Q71.474 -6.6719 72.1302 -6.6719 ZM75.4845 0 L72.9845 -6.5469 L74.8595 -6.5469 L76.1095 -2.8125 Q76.2189 -2.4844 76.2814 -2.125 Q76.3595 -1.7656 76.3752 -1.4688 L76.422 -1.4688 Q76.4533 -2.125 76.6877 -2.8125 L77.9377 -6.5469 L79.8127 -6.5469 L77.3127 0 L75.4845 0 ZM81.6563 -9.125 Q82.047 -9.125 82.3282 -8.9375 Q82.6251 -8.75 82.6251 -8.25 Q82.6251 -7.75 82.3282 -7.5625 Q82.047 -7.375 81.6563 -7.375 Q81.2345 -7.375 80.9532 -7.5625 Q80.672 -7.75 80.672 -8.25 Q80.672 -8.75 80.9532 -8.9375 Q81.2345 -9.125 81.6563 -9.125 ZM82.5313 -6.5469 L82.5313 0 L80.7501 0 L80.7501 -6.5469 L82.5313 -6.5469 ZM87.0663 0.125 Q85.6132 0.125 84.8163 -0.6875 Q84.0195 -1.5 84.0195 -3.2344 Q84.0195 -4.4375 84.4257 -5.1875 Q84.832 -5.9531 85.5507 -6.3125 Q86.2851 -6.6719 87.2226 -6.6719 Q87.8945 -6.6719 88.3945 -6.5312 Q88.8945 -6.4062 89.2695 -6.2344 L88.7382 -4.8438 Q88.3163 -5.0156 87.9413 -5.125 Q87.582 -5.2344 87.2226 -5.2344 Q85.832 -5.2344 85.832 -3.25 Q85.832 -2.2656 86.1913 -1.7969 Q86.5663 -1.3281 87.2226 -1.3281 Q87.7851 -1.3281 88.2226 -1.4688 Q88.6601 -1.625 89.0663 -1.8906 L89.0663 -0.375 Q88.6601 -0.1094 88.207 0 Q87.7538 0.125 87.0663 0.125 ZM93.2813 -6.6719 Q94.625 -6.6719 95.4219 -5.8906 Q96.2188 -5.125 96.2188 -3.7031 L96.2188 -2.8281 L92 -2.8281 Q92.0156 -2.0781 92.4375 -1.6406 Q92.875 -1.2188 93.625 -1.2188 Q94.2656 -1.2188 94.7813 -1.3438 Q95.2969 -1.4688 95.8438 -1.7344 L95.8438 -0.3438 Q95.3594 -0.1094 94.8281 0 Q94.2969 0.125 93.5469 0.125 Q92.5625 0.125 91.7969 -0.2344 Q91.0469 -0.6094 90.6094 -1.3438 Q90.1875 -2.0938 90.1875 -3.2344 Q90.1875 -4.375 90.5625 -5.1406 Q90.9531 -5.9062 91.6563 -6.2812 Q92.3594 -6.6719 93.2813 -6.6719 ZM93.2813 -5.4062 Q92.7656 -5.4062 92.4219 -5.0625 Q92.0938 -4.7344 92.0313 -4.0156 L94.5313 -4.0156 Q94.5313 -4.625 94.2188 -5.0156 Q93.9219 -5.4062 93.2813 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath52);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M-703.9711 274.8425 A6 6 0 0 0 -715.5752 271.7857" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-414.8058" x2="-703.9711" y1="351.015" style="fill:none; clip-path:url(#clipPath2);" y2="274.8425"
+      /><line x1="-715.5752" x2="-1027.5504" y1="271.7857" style="fill:none; clip-path:url(#clipPath2);" y2="189.6046"
+      /><line x1="-1027.5504" x2="-1015.9725" y1="189.6046" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="186.4497"
+      /><line x1="-1027.5504" x2="-1019.0293" y1="189.6046" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="198.0539"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-747.5423,267.9657)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath53);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-773.6964,271.1377)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM29.1079 5.0937 Q27.7173 5.0937 26.9204 6.0156 Q26.1392 6.9375 26.1392 8.5468 Q26.1392 10.1406 26.8735 11.0781 Q27.6079 12 29.0923 12 Q29.6548 12 30.1548 11.9062 Q30.6548 11.8125 31.1392 11.6718 L31.1392 12.5937 Q30.6548 12.7812 30.1392 12.8593 Q29.6392 12.9531 28.936 12.9531 Q27.6235 12.9531 26.7485 12.4218 Q25.8735 11.875 25.436 10.875 Q24.9985 9.875 24.9985 8.5312 Q24.9985 7.2343 25.4673 6.25 Q25.9517 5.25 26.8735 4.7031 Q27.7954 4.1406 29.1079 4.1406 Q30.4673 4.1406 31.4829 4.6406 L31.0454 5.5625 Q30.6548 5.375 30.1548 5.2343 Q29.6704 5.0937 29.1079 5.0937 ZM33.9263 12.8281 L32.8638 12.8281 L32.8638 3.7031 L33.9263 3.7031 L33.9263 12.8281 ZM36.5067 3.9843 Q36.7411 3.9843 36.9286 4.1562 Q37.1161 4.3125 37.1161 4.6562 Q37.1161 4.9843 36.9286 5.1562 Q36.7411 5.3281 36.5067 5.3281 Q36.2411 5.3281 36.0536 5.1562 Q35.8817 4.9843 35.8817 4.6562 Q35.8817 4.3125 36.0536 4.1562 Q36.2411 3.9843 36.5067 3.9843 ZM37.0224 6.3906 L37.0224 12.8281 L35.9599 12.8281 L35.9599 6.3906 L37.0224 6.3906 ZM41.5403 6.2812 Q42.3684 6.2812 42.9621 6.6406 Q43.5559 7 43.8684 7.6562 Q44.1965 8.2968 44.1965 9.1875 L44.1965 9.8125 L39.7903 9.8125 Q39.8215 10.9062 40.3528 11.4843 Q40.884 12.0468 41.8371 12.0468 Q42.4621 12.0468 42.9309 11.9375 Q43.3996 11.8125 43.9153 11.6093 L43.9153 12.5312 Q43.4153 12.75 42.9309 12.8437 Q42.4621 12.9531 41.7903 12.9531 Q40.884 12.9531 40.1809 12.5781 Q39.4778 12.2031 39.0871 11.4687 Q38.6965 10.7343 38.6965 9.6562 Q38.6965 8.6093 39.0559 7.8593 Q39.4153 7.0937 40.0559 6.6875 Q40.6965 6.2812 41.5403 6.2812 ZM41.5246 7.1406 Q40.7746 7.1406 40.3371 7.625 Q39.8996 8.1093 39.8215 8.9687 L43.0871 8.9687 Q43.0871 8.1562 42.7121 7.6562 Q42.3371 7.1406 41.5246 7.1406 ZM48.9177 6.2812 Q50.0739 6.2812 50.6521 6.8437 Q51.2458 7.3906 51.2458 8.6406 L51.2458 12.8281 L50.2146 12.8281 L50.2146 8.7187 Q50.2146 7.1718 48.7614 7.1718 Q47.6989 7.1718 47.2927 7.7656 Q46.8864 8.3593 46.8864 9.4843 L46.8864 12.8281 L45.8239 12.8281 L45.8239 6.3906 L46.6833 6.3906 L46.8396 7.2656 L46.9021 7.2656 Q47.2146 6.7656 47.7614 6.5312 Q48.3083 6.2812 48.9177 6.2812 ZM55.3962 12.0781 Q55.6306 12.0781 55.8806 12.0468 Q56.1306 12 56.2869 11.9531 L56.2869 12.75 Q56.1306 12.8437 55.8181 12.8906 Q55.5056 12.9531 55.2087 12.9531 Q54.7087 12.9531 54.2712 12.7812 Q53.8494 12.5937 53.5837 12.1718 Q53.3337 11.7343 53.3337 10.9531 L53.3337 7.2187 L52.4119 7.2187 L52.4119 6.7031 L53.3337 6.2812 L53.7556 4.9218 L54.3806 4.9218 L54.3806 6.3906 L56.24 6.3906 L56.24 7.2187 L54.3806 7.2187 L54.3806 10.9375 Q54.3806 11.5156 54.6619 11.7968 Q54.9431 12.0781 55.3962 12.0781 ZM58.8533 11.5625 Q58.697 12.2031 58.4001 12.9687 Q58.1189 13.7343 57.822 14.375 L57.0408 14.375 Q57.2126 13.6875 57.3845 12.875 Q57.572 12.0625 57.6501 11.4375 L58.7751 11.4375 L58.8533 11.5625 ZM63.3505 12.8281 L60.2568 12.8281 L60.2568 12.2031 L61.2568 11.9687 L61.2568 5.125 L60.2568 4.8906 L60.2568 4.2656 L63.3505 4.2656 L63.3505 4.8906 L62.3349 5.125 L62.3349 11.9687 L63.3505 12.2031 L63.3505 12.8281 ZM71.8717 8.4531 Q71.8717 10.625 70.6842 11.7343 Q69.4967 12.8281 67.3873 12.8281 L64.9967 12.8281 L64.9967 4.2656 L67.6373 4.2656 Q68.9342 4.2656 69.8873 4.75 Q70.8404 5.2187 71.3561 6.1562 Q71.8717 7.0781 71.8717 8.4531 ZM70.7311 8.5 Q70.7311 6.7812 69.8873 5.9843 Q69.0436 5.1875 67.4811 5.1875 L66.0904 5.1875 L66.0904 11.9062 L67.2467 11.9062 Q70.7311 11.9062 70.7311 8.5 ZM73.0849 10.0781 L73.0849 9.1406 L75.9911 9.1406 L75.9911 10.0781 L73.0849 10.0781 ZM77.0583 10.5 L81.5895 8.6093 L77.0583 6.4687 L77.0583 5.5312 L82.7145 8.3593 L82.7145 8.9531 L77.0583 11.4375 L77.0583 10.5 ZM84.8911 3.9843 Q85.1254 3.9843 85.3129 4.1562 Q85.5004 4.3125 85.5004 4.6562 Q85.5004 4.9843 85.3129 5.1562 Q85.1254 5.3281 84.8911 5.3281 Q84.6254 5.3281 84.4379 5.1562 Q84.2661 4.9843 84.2661 4.6562 Q84.2661 4.3125 84.4379 4.1562 Q84.6254 3.9843 84.8911 3.9843 ZM85.4067 6.3906 L85.4067 12.8281 L84.3442 12.8281 L84.3442 6.3906 L85.4067 6.3906 ZM90.534 6.2812 Q91.6902 6.2812 92.2683 6.8437 Q92.8621 7.3906 92.8621 8.6406 L92.8621 12.8281 L91.8308 12.8281 L91.8308 8.7187 Q91.8308 7.1718 90.3777 7.1718 Q89.3152 7.1718 88.909 7.7656 Q88.5027 8.3593 88.5027 9.4843 L88.5027 12.8281 L87.4402 12.8281 L87.4402 6.3906 L88.2996 6.3906 L88.4558 7.2656 L88.5183 7.2656 Q88.8308 6.7656 89.3777 6.5312 Q89.9246 6.2812 90.534 6.2812 ZM97.0125 12.0781 Q97.2469 12.0781 97.4969 12.0468 Q97.7469 12 97.9031 11.9531 L97.9031 12.75 Q97.7469 12.8437 97.4344 12.8906 Q97.1219 12.9531 96.825 12.9531 Q96.325 12.9531 95.8875 12.7812 Q95.4656 12.5937 95.2 12.1718 Q94.95 11.7343 94.95 10.9531 L94.95 7.2187 L94.0281 7.2187 L94.0281 6.7031 L94.95 6.2812 L95.3719 4.9218 L95.9969 4.9218 L95.9969 6.3906 L97.8563 6.3906 L97.8563 7.2187 L95.9969 7.2187 L95.9969 10.9375 Q95.9969 11.5156 96.2781 11.7968 Q96.5594 12.0781 97.0125 12.0781 ZM98.7664 10.5 L103.2977 8.6093 L98.7664 6.4687 L98.7664 5.5312 L104.4227 8.3593 L104.4227 8.9531 L98.7664 11.4375 L98.7664 10.5 Z" style="stroke:none; clip-path:url(#clipPath54);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><path d="M68.4277 -982.1634 A6 6 0 0 0 56.4277 -982.1634" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-2.6089" x2="56.4277" y1="-982.1634" style="fill:none; clip-path:url(#clipPath2);" y2="-982.1634"
+      /><line x1="68.4277" x2="439.9381" y1="-982.1634" style="fill:none; clip-path:url(#clipPath2);" y2="-982.1634"
+      /><line x1="439.9381" x2="439.9381" y1="-982.1634" style="fill:none; clip-path:url(#clipPath2);" y2="-569.0404"
+      /><line x1="-2.6089" x2="7.7834" y1="-982.1634" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-988.1634"
+      /><line x1="-2.6089" x2="7.7834" y1="-982.1634" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-976.1634"
+      /><path d="M-249.5757 371.3592 C-179.0766 371.3592 -249.5757 371.3592 -179.0766 371.3592" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+    /></g
+    ><g style="fill:white; text-rendering:optimizeLegibility; font-family:sans-serif; stroke:white;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -250 371 -238 378 -238 365"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -250 371 -238 378 -238 365"
+      /><path d="M-615.4597 -543.3724 C381.5717 -553.671 -615.4597 -543.3724 381.5717 -553.671" style="fill:none; clip-path:url(#clipPath2); stroke:black;"
+      /><line x1="381.5717" x2="371.242" y1="-553.671" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-547.564"
+      /><line x1="381.5717" x2="371.118" y1="-553.671" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-559.5633"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-434.6963" y="214.4202" width="194.2412" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-434.6963" y="214.4202" width="194.2412" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-376.5757,232.4202)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath55);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-424.6963,248.7643)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 ZM89.7323 -1.1875 L83.9042 -3.75 L83.9042 -4.5938 L89.7323 -7.5 L89.7323 -6.0938 L85.7167 -4.2344 L89.7323 -2.5938 L89.7323 -1.1875 ZM94.9558 0 L92.8933 -6.7188 L92.8464 -6.7188 Q92.862 -6.4844 92.8776 -6 Q92.9089 -5.5156 92.9245 -4.9688 Q92.9558 -4.4219 92.9558 -3.9844 L92.9558 0 L91.3308 0 L91.3308 -8.5625 L93.7995 -8.5625 L95.8308 -2.0156 L95.862 -2.0156 L98.0183 -8.5625 L100.487 -8.5625 L100.487 0 L98.7995 0 L98.7995 -4.0625 Q98.7995 -4.4688 98.8151 -4.9844 Q98.8308 -5.5156 98.8464 -5.9844 Q98.862 -6.4688 98.8776 -6.7031 L98.8308 -6.7031 L96.6276 0 L94.9558 0 ZM105.1937 -6.6875 Q106.5062 -6.6875 107.2094 -6.1094 Q107.9125 -5.5469 107.9125 -4.375 L107.9125 0 L106.6625 0 L106.3187 -0.8906 L106.2719 -0.8906 Q105.85 -0.3594 105.3812 -0.1094 Q104.9125 0.125 104.1 0.125 Q103.225 0.125 102.6469 -0.3906 Q102.0687 -0.9062 102.0687 -1.9531 Q102.0687 -3 102.8031 -3.5 Q103.5375 -4 105.0062 -4.0469 L106.1469 -4.0781 L106.1469 -4.375 Q106.1469 -4.8906 105.8656 -5.125 Q105.6 -5.3594 105.1156 -5.3594 Q104.6469 -5.3594 104.1781 -5.2188 Q103.725 -5.0938 103.2719 -4.8906 L102.6781 -6.0938 Q103.2094 -6.375 103.85 -6.5312 Q104.4906 -6.6875 105.1937 -6.6875 ZM105.4437 -3.0156 Q104.5844 -2.9844 104.2406 -2.6875 Q103.9125 -2.4062 103.9125 -1.9375 Q103.9125 -1.5312 104.1469 -1.3594 Q104.3812 -1.1875 104.7719 -1.1875 Q105.35 -1.1875 105.7406 -1.5312 Q106.1469 -1.875 106.1469 -2.5 L106.1469 -3.0312 L105.4437 -3.0156 ZM113.473 -6.6719 Q114.5355 -6.6719 115.1605 -6.0938 Q115.8011 -5.5312 115.8011 -4.2656 L115.8011 0 L114.0199 0 L114.0199 -3.8281 Q114.0199 -4.5312 113.7543 -4.8906 Q113.5043 -5.25 112.9574 -5.25 Q112.1449 -5.25 111.8324 -4.6875 Q111.5355 -4.125 111.5355 -3.0781 L111.5355 0 L109.7543 0 L109.7543 -6.5469 L111.1136 -6.5469 L111.3636 -5.7188 L111.4574 -5.7188 Q111.7699 -6.2188 112.3168 -6.4375 Q112.8636 -6.6719 113.473 -6.6719 ZM120.3258 -6.6875 Q121.6383 -6.6875 122.3414 -6.1094 Q123.0446 -5.5469 123.0446 -4.375 L123.0446 0 L121.7946 0 L121.4508 -0.8906 L121.4039 -0.8906 Q120.9821 -0.3594 120.5133 -0.1094 Q120.0446 0.125 119.2321 0.125 Q118.3571 0.125 117.7789 -0.3906 Q117.2008 -0.9062 117.2008 -1.9531 Q117.2008 -3 117.9352 -3.5 Q118.6696 -4 120.1383 -4.0469 L121.2789 -4.0781 L121.2789 -4.375 Q121.2789 -4.8906 120.9977 -5.125 Q120.7321 -5.3594 120.2477 -5.3594 Q119.7789 -5.3594 119.3102 -5.2188 Q118.8571 -5.0938 118.4039 -4.8906 L117.8102 -6.0938 Q118.3414 -6.375 118.9821 -6.5312 Q119.6227 -6.6875 120.3258 -6.6875 ZM120.5758 -3.0156 Q119.7164 -2.9844 119.3727 -2.6875 Q119.0446 -2.4062 119.0446 -1.9375 Q119.0446 -1.5312 119.2789 -1.3594 Q119.5133 -1.1875 119.9039 -1.1875 Q120.4821 -1.1875 120.8727 -1.5312 Q121.2789 -1.875 121.2789 -2.5 L121.2789 -3.0312 L120.5758 -3.0156 ZM127.0114 -6.6719 Q128.2145 -6.6719 128.902 -5.7188 L128.9489 -5.7188 L129.0895 -6.5469 L130.6051 -6.5469 L130.6051 0.0156 Q130.6051 1.4219 129.777 2.1406 Q128.9489 2.875 127.3395 2.875 Q126.6364 2.875 126.0426 2.7969 Q125.4489 2.7188 124.8864 2.5 L124.8864 1.0625 Q126.0895 1.5781 127.4332 1.5781 Q128.8239 1.5781 128.8239 0.0781 L128.8239 -0.0469 Q128.8239 -0.25 128.8395 -0.4688 Q128.8551 -0.6875 128.8707 -0.8594 L128.8239 -0.8594 Q128.4801 -0.3438 128.0114 -0.1094 Q127.5426 0.125 126.9645 0.125 Q125.7926 0.125 125.1364 -0.7656 Q124.4957 -1.6719 124.4957 -3.2656 Q124.4957 -4.875 125.1676 -5.7656 Q125.8395 -6.6719 127.0114 -6.6719 ZM127.5739 -5.2188 Q126.3082 -5.2188 126.3082 -3.2344 Q126.3082 -1.2812 127.5895 -1.2812 Q128.277 -1.2812 128.6051 -1.6719 Q128.9332 -2.0625 128.9332 -3.0312 L128.9332 -3.25 Q128.9332 -4.3125 128.6051 -4.7656 Q128.2926 -5.2188 127.5739 -5.2188 ZM135.1855 -6.6719 Q136.5293 -6.6719 137.3262 -5.8906 Q138.123 -5.125 138.123 -3.7031 L138.123 -2.8281 L133.9043 -2.8281 Q133.9199 -2.0781 134.3418 -1.6406 Q134.7793 -1.2188 135.5293 -1.2188 Q136.1699 -1.2188 136.6855 -1.3438 Q137.2012 -1.4688 137.748 -1.7344 L137.748 -0.3438 Q137.2637 -0.1094 136.7324 0 Q136.2012 0.125 135.4512 0.125 Q134.4668 0.125 133.7012 -0.2344 Q132.9512 -0.6094 132.5137 -1.3438 Q132.0918 -2.0938 132.0918 -3.2344 Q132.0918 -4.375 132.4668 -5.1406 Q132.8574 -5.9062 133.5605 -6.2812 Q134.2637 -6.6719 135.1855 -6.6719 ZM135.1855 -5.4062 Q134.6699 -5.4062 134.3262 -5.0625 Q133.998 -4.7344 133.9355 -4.0156 L136.4355 -4.0156 Q136.4355 -4.625 136.123 -5.0156 Q135.8262 -5.4062 135.1855 -5.4062 ZM143.2307 -6.6719 Q143.3714 -6.6719 143.5432 -6.6562 Q143.7307 -6.6406 143.8401 -6.625 L143.6995 -4.9375 Q143.6214 -4.9688 143.4495 -4.9844 Q143.2932 -5 143.1682 -5 Q142.7151 -5 142.2932 -4.8438 Q141.8714 -4.6875 141.6057 -4.3125 Q141.3557 -3.9531 141.3557 -3.3438 L141.3557 0 L139.5745 0 L139.5745 -6.5469 L140.9339 -6.5469 L141.1995 -5.4531 L141.2776 -5.4531 Q141.5589 -5.9531 142.0589 -6.3125 Q142.5745 -6.6719 143.2307 -6.6719 ZM146.7725 -1.2656 Q146.6163 -0.625 146.3194 0.125 Q146.0381 0.8906 145.7413 1.5469 L144.46 1.5469 Q144.6319 0.8438 144.7881 0.0312 Q144.96 -0.7656 145.0381 -1.3906 L146.6944 -1.3906 L146.7725 -1.2656 ZM152.4688 -9.125 Q152.8595 -9.125 153.1407 -8.9375 Q153.4376 -8.75 153.4376 -8.25 Q153.4376 -7.75 153.1407 -7.5625 Q152.8595 -7.375 152.4688 -7.375 Q152.047 -7.375 151.7657 -7.5625 Q151.4845 -7.75 151.4845 -8.25 Q151.4845 -8.75 151.7657 -8.9375 Q152.047 -9.125 152.4688 -9.125 ZM153.3438 -6.5469 L153.3438 0 L151.5626 0 L151.5626 -6.5469 L153.3438 -6.5469 ZM158.9413 -6.6719 Q160.0038 -6.6719 160.6288 -6.0938 Q161.2695 -5.5312 161.2695 -4.2656 L161.2695 0 L159.4882 0 L159.4882 -3.8281 Q159.4882 -4.5312 159.2226 -4.8906 Q158.9726 -5.25 158.4257 -5.25 Q157.6132 -5.25 157.3007 -4.6875 Q157.0038 -4.125 157.0038 -3.0781 L157.0038 0 L155.2226 0 L155.2226 -6.5469 L156.582 -6.5469 L156.832 -5.7188 L156.9257 -5.7188 Q157.2382 -6.2188 157.7851 -6.4375 Q158.332 -6.6719 158.9413 -6.6719 ZM165.8723 -1.3125 Q166.1691 -1.3125 166.4348 -1.3594 Q166.716 -1.4219 166.9973 -1.5156 L166.9973 -0.1875 Q166.7004 -0.0625 166.2785 0.0312 Q165.8566 0.125 165.3566 0.125 Q164.7629 0.125 164.2941 -0.0625 Q163.841 -0.2656 163.5598 -0.7344 Q163.2941 -1.2188 163.2941 -2.0469 L163.2941 -5.2031 L162.4504 -5.2031 L162.4504 -5.9688 L163.4348 -6.5625 L163.9504 -7.9375 L165.091 -7.9375 L165.091 -6.5469 L166.9191 -6.5469 L166.9191 -5.2031 L165.091 -5.2031 L165.091 -2.0469 Q165.091 -1.6875 165.2941 -1.5 Q165.5129 -1.3125 165.8723 -1.3125 ZM167.8928 -2.5938 L171.9084 -4.2344 L167.8928 -6.0938 L167.8928 -7.5 L173.7209 -4.5938 L173.7209 -3.75 L167.8928 -1.1875 L167.8928 -2.5938 Z" style="stroke:none; clip-path:url(#clipPath56);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><line x1="652.9489" x2="941.7381" y1="370.9417" style="fill:none; clip-path:url(#clipPath2);" y2="370.9417"
+      /><line x1="941.7381" x2="941.7381" y1="370.9417" style="fill:none; clip-path:url(#clipPath2);" y2="-621.8886"
+      /><line x1="941.7381" x2="483.1174" y1="-621.8886" style="fill:none; clip-path:url(#clipPath2);" y2="-621.8886"
+      /><line x1="483.1174" x2="483.1174" y1="-621.8886" style="fill:none; clip-path:url(#clipPath2);" y2="-569.0404"
+      /><line x1="652.9489" x2="663.3412" y1="370.9417" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="364.9417"
+      /><line x1="652.9489" x2="663.3412" y1="370.9417" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="376.9417"
+      /><path d="M-703.7919 205.7417 A6 6 0 0 0 -715.7544 204.7937" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-434.6963" x2="-703.7919" y1="227.0675" style="fill:none; clip-path:url(#clipPath2);" y2="205.7417"
+      /><line x1="-715.7544" x2="-1027.5504" y1="204.7937" style="fill:none; clip-path:url(#clipPath2);" y2="180.0839"
+      /><line x1="-1027.5504" x2="-1016.7166" y1="180.0839" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="174.9237"
+      /><line x1="-1027.5504" x2="-1017.6646" y1="180.0839" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="186.8862"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-757.4875,201.2316)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath57);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-793.1234,204.4036)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM29.2017 12.8281 L26.3892 5.3125 L26.3423 5.3125 Q26.3735 5.6875 26.3892 6.3281 Q26.4204 6.9531 26.4204 7.625 L26.4204 12.8281 L25.4204 12.8281 L25.4204 4.2656 L27.0298 4.2656 L29.6704 11.2812 L29.7173 11.2812 L32.4048 4.2656 L33.9829 4.2656 L33.9829 12.8281 L32.9204 12.8281 L32.9204 7.5625 Q32.9204 6.9375 32.9517 6.3281 Q32.9829 5.7187 32.9985 5.3281 L32.9517 5.3281 L30.0923 12.8281 L29.2017 12.8281 ZM38.6014 6.2812 Q39.7732 6.2812 40.3357 6.7968 Q40.9139 7.3125 40.9139 8.4531 L40.9139 12.8281 L40.1326 12.8281 L39.9295 11.9218 L39.8826 11.9218 Q39.4607 12.4375 38.992 12.7031 Q38.5389 12.9531 37.7264 12.9531 Q36.8514 12.9531 36.2732 12.5 Q35.6951 12.0312 35.6951 11.0468 Q35.6951 10.0781 36.4451 9.5625 Q37.2107 9.0312 38.7889 8.9843 L39.8826 8.9531 L39.8826 8.5625 Q39.8826 7.7656 39.5232 7.4531 Q39.1795 7.1406 38.5389 7.1406 Q38.0389 7.1406 37.5857 7.2968 Q37.1326 7.4375 36.7264 7.625 L36.4139 6.8437 Q36.8357 6.6093 37.3982 6.4531 Q37.9764 6.2812 38.6014 6.2812 ZM38.9139 9.7187 Q37.7107 9.7656 37.242 10.1093 Q36.7889 10.4375 36.7889 11.0468 Q36.7889 11.5937 37.117 11.8437 Q37.4451 12.0937 37.9607 12.0937 Q38.7889 12.0937 39.3201 11.6562 Q39.867 11.2031 39.867 10.2656 L39.867 9.6875 L38.9139 9.7187 ZM45.9897 6.2812 Q47.1459 6.2812 47.724 6.8437 Q48.3178 7.3906 48.3178 8.6406 L48.3178 12.8281 L47.2865 12.8281 L47.2865 8.7187 Q47.2865 7.1718 45.8334 7.1718 Q44.7709 7.1718 44.3647 7.7656 Q43.9584 8.3593 43.9584 9.4843 L43.9584 12.8281 L42.8959 12.8281 L42.8959 6.3906 L43.7553 6.3906 L43.9115 7.2656 L43.974 7.2656 Q44.2865 6.7656 44.8334 6.5312 Q45.3803 6.2812 45.9897 6.2812 ZM52.7495 6.2812 Q53.9213 6.2812 54.4838 6.7968 Q55.062 7.3125 55.062 8.4531 L55.062 12.8281 L54.2807 12.8281 L54.0776 11.9218 L54.0307 11.9218 Q53.6088 12.4375 53.1401 12.7031 Q52.687 12.9531 51.8745 12.9531 Q50.9995 12.9531 50.4213 12.5 Q49.8432 12.0312 49.8432 11.0468 Q49.8432 10.0781 50.5932 9.5625 Q51.3588 9.0312 52.937 8.9843 L54.0307 8.9531 L54.0307 8.5625 Q54.0307 7.7656 53.6713 7.4531 Q53.3276 7.1406 52.687 7.1406 Q52.187 7.1406 51.7338 7.2968 Q51.2807 7.4375 50.8745 7.625 L50.562 6.8437 Q50.9838 6.6093 51.5463 6.4531 Q52.1245 6.2812 52.7495 6.2812 ZM53.062 9.7187 Q51.8588 9.7656 51.3901 10.1093 Q50.937 10.4375 50.937 11.0468 Q50.937 11.5937 51.2651 11.8437 Q51.5932 12.0937 52.1088 12.0937 Q52.937 12.0937 53.4682 11.6562 Q54.0151 11.2031 54.0151 10.2656 L54.0151 9.6875 L53.062 9.7187 ZM59.3252 6.2812 Q59.9659 6.2812 60.4659 6.5156 Q60.9815 6.75 61.3409 7.25 L61.4034 7.25 L61.544 6.3906 L62.3877 6.3906 L62.3877 12.9375 Q62.3877 14.3125 61.6846 15 Q60.9815 15.7031 59.5127 15.7031 Q58.0909 15.7031 57.1846 15.2968 L57.1846 14.3281 Q58.1377 14.8281 59.5752 14.8281 Q60.4034 14.8281 60.8721 14.3437 Q61.3409 13.8593 61.3409 13.0156 L61.3409 12.7656 Q61.3409 12.625 61.3565 12.3593 Q61.3721 12.0781 61.3877 11.9687 L61.3252 11.9687 Q60.6846 12.9531 59.3409 12.9531 Q58.0909 12.9531 57.3877 12.0781 Q56.6846 11.2031 56.6846 9.625 Q56.6846 8.0937 57.3877 7.1875 Q58.0909 6.2812 59.3252 6.2812 ZM59.4659 7.1718 Q58.669 7.1718 58.2159 7.8125 Q57.7784 8.4531 57.7784 9.6406 Q57.7784 10.8281 58.2159 11.4531 Q58.6534 12.0781 59.4971 12.0781 Q60.4659 12.0781 60.9034 11.5625 Q61.3565 11.0468 61.3565 9.875 L61.3565 9.625 Q61.3565 8.2968 60.9034 7.7343 Q60.4502 7.1718 59.4659 7.1718 ZM66.9084 6.2812 Q67.7365 6.2812 68.3303 6.6406 Q68.924 7 69.2365 7.6562 Q69.5647 8.2968 69.5647 9.1875 L69.5647 9.8125 L65.1584 9.8125 Q65.1897 10.9062 65.7209 11.4843 Q66.2522 12.0468 67.2053 12.0468 Q67.8303 12.0468 68.299 11.9375 Q68.7678 11.8125 69.2834 11.6093 L69.2834 12.5312 Q68.7834 12.75 68.299 12.8437 Q67.8303 12.9531 67.1584 12.9531 Q66.2522 12.9531 65.549 12.5781 Q64.8459 12.2031 64.4553 11.4687 Q64.0647 10.7343 64.0647 9.6562 Q64.0647 8.6093 64.424 7.8593 Q64.7834 7.0937 65.424 6.6875 Q66.0647 6.2812 66.9084 6.2812 ZM66.8928 7.1406 Q66.1428 7.1406 65.7053 7.625 Q65.2678 8.1093 65.1897 8.9687 L68.4553 8.9687 Q68.4553 8.1562 68.0803 7.6562 Q67.7053 7.1406 66.8928 7.1406 ZM74.1921 6.2812 Q74.3796 6.2812 74.5827 6.2968 Q74.8015 6.3125 74.9577 6.3437 L74.8171 7.3125 Q74.6608 7.2812 74.4733 7.2656 Q74.2858 7.2343 74.1296 7.2343 Q73.6296 7.2343 73.1921 7.5156 Q72.7702 7.7812 72.5046 8.2656 Q72.2546 8.75 72.2546 9.3906 L72.2546 12.8281 L71.1921 12.8281 L71.1921 6.3906 L72.0671 6.3906 L72.1765 7.5781 L72.2233 7.5781 Q72.5358 7.0468 73.0202 6.6718 Q73.5202 6.2812 74.1921 6.2812 ZM77.4294 11.5625 Q77.2731 12.2031 76.9763 12.9687 Q76.695 13.7343 76.3981 14.375 L75.6169 14.375 Q75.7888 13.6875 75.9606 12.875 Q76.1481 12.0625 76.2263 11.4375 L77.3513 11.4375 L77.4294 11.5625 ZM81.9267 12.8281 L78.8329 12.8281 L78.8329 12.2031 L79.8329 11.9687 L79.8329 5.125 L78.8329 4.8906 L78.8329 4.2656 L81.9267 4.2656 L81.9267 4.8906 L80.911 5.125 L80.911 11.9687 L81.9267 12.2031 L81.9267 12.8281 ZM90.4478 8.4531 Q90.4478 10.625 89.2603 11.7343 Q88.0728 12.8281 85.9634 12.8281 L83.5728 12.8281 L83.5728 4.2656 L86.2134 4.2656 Q87.5103 4.2656 88.4634 4.75 Q89.4165 5.2187 89.9322 6.1562 Q90.4478 7.0781 90.4478 8.4531 ZM89.3072 8.5 Q89.3072 6.7812 88.4634 5.9843 Q87.6197 5.1875 86.0572 5.1875 L84.6665 5.1875 L84.6665 11.9062 L85.8228 11.9062 Q89.3072 11.9062 89.3072 8.5 ZM91.661 10.0781 L91.661 9.1406 L94.5672 9.1406 L94.5672 10.0781 L91.661 10.0781 ZM95.6344 10.5 L100.1656 8.6093 L95.6344 6.4687 L95.6344 5.5312 L101.2906 8.3593 L101.2906 8.9531 L95.6344 11.4375 L95.6344 10.5 ZM103.4672 3.9843 Q103.7016 3.9843 103.8891 4.1562 Q104.0766 4.3125 104.0766 4.6562 Q104.0766 4.9843 103.8891 5.1562 Q103.7016 5.3281 103.4672 5.3281 Q103.2016 5.3281 103.0141 5.1562 Q102.8422 4.9843 102.8422 4.6562 Q102.8422 4.3125 103.0141 4.1562 Q103.2016 3.9843 103.4672 3.9843 ZM103.9828 6.3906 L103.9828 12.8281 L102.9203 12.8281 L102.9203 6.3906 L103.9828 6.3906 ZM109.1101 6.2812 Q110.2663 6.2812 110.8445 6.8437 Q111.4382 7.3906 111.4382 8.6406 L111.4382 12.8281 L110.407 12.8281 L110.407 8.7187 Q110.407 7.1718 108.9538 7.1718 Q107.8913 7.1718 107.4851 7.7656 Q107.0788 8.3593 107.0788 9.4843 L107.0788 12.8281 L106.0163 12.8281 L106.0163 6.3906 L106.8757 6.3906 L107.032 7.2656 L107.0945 7.2656 Q107.407 6.7656 107.9538 6.5312 Q108.5007 6.2812 109.1101 6.2812 ZM115.5886 12.0781 Q115.823 12.0781 116.073 12.0468 Q116.323 12 116.4792 11.9531 L116.4792 12.75 Q116.323 12.8437 116.0105 12.8906 Q115.698 12.9531 115.4011 12.9531 Q114.9011 12.9531 114.4636 12.7812 Q114.0417 12.5937 113.7761 12.1718 Q113.5261 11.7343 113.5261 10.9531 L113.5261 7.2187 L112.6042 7.2187 L112.6042 6.7031 L113.5261 6.2812 L113.948 4.9218 L114.573 4.9218 L114.573 6.3906 L116.4324 6.3906 L116.4324 7.2187 L114.573 7.2187 L114.573 10.9375 Q114.573 11.5156 114.8542 11.7968 Q115.1355 12.0781 115.5886 12.0781 ZM117.3425 10.5 L121.8738 8.6093 L117.3425 6.4687 L117.3425 5.5312 L122.9988 8.3593 L122.9988 8.9531 L117.3425 11.4375 L117.3425 10.5 Z" style="stroke:none; clip-path:url(#clipPath58);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><line x1="148.3795" x2="148.3795" y1="-419.7164" style="fill:none; clip-path:url(#clipPath2);" y2="-553.6319"
+      /><line x1="148.3795" x2="381.5717" y1="-553.6319" style="fill:none; clip-path:url(#clipPath2);" y2="-553.6319"
+      /><line x1="381.5717" x2="371.1794" y1="-553.6319" style="fill:none; clip-path:url(#clipPath2);" y2="-547.6319"
+      /><line x1="381.5717" x2="371.1794" y1="-553.6319" style="fill:none; clip-path:url(#clipPath2);" y2="-559.6319"
+      /><path d="M-240.4551 235.2273 C-188.279 235.476 -240.4551 235.2273 -188.279 235.476" style="fill:none; clip-path:url(#clipPath2);"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" -240 235 -229 242 -229 229"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" -240 235 -229 242 -229 229"
+      /><path d="M498.3044 -555.379 C1133.7494 -569.9521 498.3044 -555.379 1133.7494 -569.9521" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="1133.7493" x2="1123.4973" y1="-569.9521" style="fill:none; clip-path:url(#clipPath2);" y2="-563.7154"
+      /><line x1="1133.7493" x2="1123.2222" y1="-569.9521" style="fill:none; clip-path:url(#clipPath2);" y2="-575.7123"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-421.5682" y="283.0663" width="167.985" style="clip-path:url(#clipPath2); stroke:none;" height="40.6882"
+      /><rect x="-421.5682" y="283.0663" width="167.985" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="40.6882"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-376.5757,301.0663)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.2906 -8.8438 Q15.525 -8.8438 15.7125 -8.6719 Q15.9 -8.5156 15.9 -8.1719 Q15.9 -7.8438 15.7125 -7.6719 Q15.525 -7.5 15.2906 -7.5 Q15.025 -7.5 14.8375 -7.6719 Q14.6656 -7.8438 14.6656 -8.1719 Q14.6656 -8.5156 14.8375 -8.6719 Q15.025 -8.8438 15.2906 -8.8438 ZM15.8062 -6.4375 L15.8062 0 L14.7437 0 L14.7437 -6.4375 L15.8062 -6.4375 ZM20.9335 -6.5469 Q22.0897 -6.5469 22.6679 -5.9844 Q23.2616 -5.4375 23.2616 -4.1875 L23.2616 0 L22.2304 0 L22.2304 -4.1094 Q22.2304 -5.6562 20.7772 -5.6562 Q19.7147 -5.6562 19.3085 -5.0625 Q18.9022 -4.4688 18.9022 -3.3438 L18.9022 0 L17.8397 0 L17.8397 -6.4375 L18.6991 -6.4375 L18.8554 -5.5625 L18.9179 -5.5625 Q19.2304 -6.0625 19.7772 -6.2969 Q20.3241 -6.5469 20.9335 -6.5469 ZM27.412 -0.75 Q27.6464 -0.75 27.8964 -0.7812 Q28.1464 -0.8281 28.3027 -0.875 L28.3027 -0.0781 Q28.1464 0.0156 27.8339 0.0625 Q27.5214 0.125 27.2245 0.125 Q26.7245 0.125 26.287 -0.0469 Q25.8652 -0.2344 25.5995 -0.6562 Q25.3495 -1.0938 25.3495 -1.875 L25.3495 -5.6094 L24.4277 -5.6094 L24.4277 -6.125 L25.3495 -6.5469 L25.7714 -7.9062 L26.3964 -7.9062 L26.3964 -6.4375 L28.2558 -6.4375 L28.2558 -5.6094 L26.3964 -5.6094 L26.3964 -1.8906 Q26.3964 -1.3125 26.6777 -1.0312 Q26.9589 -0.75 27.412 -0.75 ZM32.0722 -6.5469 Q32.9003 -6.5469 33.4941 -6.1875 Q34.0878 -5.8281 34.4003 -5.1719 Q34.7284 -4.5312 34.7284 -3.6406 L34.7284 -3.0156 L30.3222 -3.0156 Q30.3534 -1.9219 30.8847 -1.3438 Q31.4159 -0.7812 32.3691 -0.7812 Q32.9941 -0.7812 33.4628 -0.8906 Q33.9316 -1.0156 34.4472 -1.2188 L34.4472 -0.2969 Q33.9472 -0.0781 33.4628 0.0156 Q32.9941 0.125 32.3222 0.125 Q31.4159 0.125 30.7128 -0.25 Q30.0097 -0.625 29.6191 -1.3594 Q29.2284 -2.0938 29.2284 -3.1719 Q29.2284 -4.2188 29.5878 -4.9688 Q29.9472 -5.7344 30.5878 -6.1406 Q31.2284 -6.5469 32.0722 -6.5469 ZM32.0566 -5.6875 Q31.3066 -5.6875 30.8691 -5.2031 Q30.4316 -4.7188 30.3534 -3.8594 L33.6191 -3.8594 Q33.6191 -4.6719 33.2441 -5.1719 Q32.8691 -5.6875 32.0566 -5.6875 ZM39.3559 -6.5469 Q39.5434 -6.5469 39.7465 -6.5312 Q39.9652 -6.5156 40.1215 -6.4844 L39.9809 -5.5156 Q39.8246 -5.5469 39.6371 -5.5625 Q39.4496 -5.5938 39.2934 -5.5938 Q38.7934 -5.5938 38.3559 -5.3125 Q37.934 -5.0469 37.6684 -4.5625 Q37.4184 -4.0781 37.4184 -3.4375 L37.4184 0 L36.3559 0 L36.3559 -6.4375 L37.2309 -6.4375 L37.3402 -5.25 L37.3871 -5.25 Q37.6996 -5.7812 38.184 -6.1562 Q38.684 -6.5469 39.3559 -6.5469 ZM44.2807 -5.6094 L42.6557 -5.6094 L42.6557 0 L41.6088 0 L41.6088 -5.6094 L40.4838 -5.6094 L40.4838 -6.1094 L41.6088 -6.4688 L41.6088 -6.8438 Q41.6088 -8.0938 42.1557 -8.6406 Q42.7025 -9.1875 43.6869 -9.1875 Q44.0775 -9.1875 44.39 -9.1094 Q44.7182 -9.0469 44.9369 -8.9688 L44.6713 -8.1406 Q44.4682 -8.2031 44.2182 -8.25 Q43.9682 -8.3125 43.7025 -8.3125 Q43.1713 -8.3125 42.9057 -7.9531 Q42.6557 -7.6094 42.6557 -6.8594 L42.6557 -6.4375 L44.2807 -6.4375 L44.2807 -5.6094 ZM47.8774 -6.5469 Q49.0493 -6.5469 49.6118 -6.0312 Q50.1899 -5.5156 50.1899 -4.375 L50.1899 0 L49.4087 0 L49.2056 -0.9062 L49.1587 -0.9062 Q48.7368 -0.3906 48.2681 -0.125 Q47.8149 0.125 47.0024 0.125 Q46.1274 0.125 45.5493 -0.3281 Q44.9712 -0.7969 44.9712 -1.7812 Q44.9712 -2.75 45.7212 -3.2656 Q46.4868 -3.7969 48.0649 -3.8438 L49.1587 -3.875 L49.1587 -4.2656 Q49.1587 -5.0625 48.7993 -5.375 Q48.4556 -5.6875 47.8149 -5.6875 Q47.3149 -5.6875 46.8618 -5.5312 Q46.4087 -5.3906 46.0024 -5.2031 L45.6899 -5.9844 Q46.1118 -6.2188 46.6743 -6.375 Q47.2524 -6.5469 47.8774 -6.5469 ZM48.1899 -3.1094 Q46.9868 -3.0625 46.5181 -2.7188 Q46.0649 -2.3906 46.0649 -1.7812 Q46.0649 -1.2344 46.3931 -0.9844 Q46.7212 -0.7344 47.2368 -0.7344 Q48.0649 -0.7344 48.5962 -1.1719 Q49.1431 -1.625 49.1431 -2.5625 L49.1431 -3.1406 L48.1899 -3.1094 ZM54.7501 0.125 Q53.9064 0.125 53.2345 -0.2188 Q52.5782 -0.5781 52.1876 -1.3125 Q51.8126 -2.0469 51.8126 -3.1875 Q51.8126 -4.375 52.2032 -5.1094 Q52.6095 -5.8594 53.2814 -6.2031 Q53.9689 -6.5469 54.8282 -6.5469 Q55.3126 -6.5469 55.7657 -6.4375 Q56.2345 -6.3438 56.5157 -6.2031 L56.2032 -5.3281 Q55.9064 -5.4375 55.5157 -5.5312 Q55.1407 -5.625 54.797 -5.625 Q52.9064 -5.625 52.9064 -3.1875 Q52.9064 -2.0312 53.3595 -1.4062 Q53.8282 -0.7969 54.7501 -0.7969 Q55.2657 -0.7969 55.672 -0.9062 Q56.0782 -1.0156 56.4064 -1.1562 L56.4064 -0.2344 Q56.0939 -0.0625 55.7032 0.0312 Q55.3126 0.125 54.7501 0.125 ZM60.4164 -6.5469 Q61.2445 -6.5469 61.8383 -6.1875 Q62.432 -5.8281 62.7445 -5.1719 Q63.0726 -4.5312 63.0726 -3.6406 L63.0726 -3.0156 L58.6664 -3.0156 Q58.6976 -1.9219 59.2289 -1.3438 Q59.7601 -0.7812 60.7133 -0.7812 Q61.3383 -0.7812 61.807 -0.8906 Q62.2758 -1.0156 62.7914 -1.2188 L62.7914 -0.2969 Q62.2914 -0.0781 61.807 0.0156 Q61.3383 0.125 60.6664 0.125 Q59.7601 0.125 59.057 -0.25 Q58.3539 -0.625 57.9633 -1.3594 Q57.5726 -2.0938 57.5726 -3.1719 Q57.5726 -4.2188 57.932 -4.9688 Q58.2914 -5.7344 58.932 -6.1406 Q59.5726 -6.5469 60.4164 -6.5469 ZM60.4008 -5.6875 Q59.6508 -5.6875 59.2133 -5.2031 Q58.7758 -4.7188 58.6976 -3.8594 L61.9633 -3.8594 Q61.9633 -4.6719 61.5883 -5.1719 Q61.2133 -5.6875 60.4008 -5.6875 ZM64.2782 -2.3281 L68.8094 -4.2188 L64.2782 -6.3594 L64.2782 -7.2969 L69.9344 -4.4688 L69.9344 -3.875 L64.2782 -1.3906 L64.2782 -2.3281 ZM71.1422 -2.3281 L75.6735 -4.2188 L71.1422 -6.3594 L71.1422 -7.2969 L76.7985 -4.4688 L76.7985 -3.875 L71.1422 -1.3906 L71.1422 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath59);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-411.5682,317.4104)"
+    ><path d="M0.1875 2.5156 Q-0.1719 2.5156 -0.4375 2.4688 Q-0.7031 2.4375 -0.8906 2.3906 L-0.8906 0.875 Q-0.7031 0.9219 -0.4844 0.9531 Q-0.2812 1 -0.0312 1 Q0.2812 1 0.5312 0.875 Q0.7969 0.75 0.9375 0.4062 Q1.0781 0.0781 1.0781 -0.5469 L1.0781 -8.5625 L2.8906 -8.5625 L2.8906 -0.5469 Q2.8906 0.5469 2.5469 1.2188 Q2.2031 1.9062 1.5938 2.2031 Q0.9844 2.5156 0.1875 2.5156 ZM8.5502 -6.6719 Q9.6595 -6.6719 10.347 -5.8125 Q11.0345 -4.9531 11.0345 -3.2812 Q11.0345 -1.625 10.3158 -0.75 Q9.6127 0.125 8.5033 0.125 Q7.8002 0.125 7.3783 -0.125 Q6.9564 -0.3906 6.6908 -0.7188 L6.597 -0.7188 Q6.6908 -0.2188 6.6908 0.2344 L6.6908 2.875 L4.9095 2.875 L4.9095 -6.5469 L6.3627 -6.5469 L6.6127 -5.7031 L6.6908 -5.7031 Q6.9564 -6.0938 7.3939 -6.375 Q7.847 -6.6719 8.5502 -6.6719 ZM7.9877 -5.25 Q7.2845 -5.25 7.0033 -4.8125 Q6.722 -4.375 6.6908 -3.4844 L6.6908 -3.2969 Q6.6908 -2.3594 6.972 -1.8438 Q7.2533 -1.3281 8.0033 -1.3281 Q8.6127 -1.3281 8.9095 -1.8438 Q9.2064 -2.3594 9.2064 -3.3125 Q9.2064 -5.25 7.9877 -5.25 ZM15.1931 -6.6875 Q16.5056 -6.6875 17.2087 -6.1094 Q17.9118 -5.5469 17.9118 -4.375 L17.9118 0 L16.6618 0 L16.3181 -0.8906 L16.2712 -0.8906 Q15.8493 -0.3594 15.3806 -0.1094 Q14.9118 0.125 14.0993 0.125 Q13.2243 0.125 12.6462 -0.3906 Q12.0681 -0.9062 12.0681 -1.9531 Q12.0681 -3 12.8025 -3.5 Q13.5368 -4 15.0056 -4.0469 L16.1462 -4.0781 L16.1462 -4.375 Q16.1462 -4.8906 15.865 -5.125 Q15.5993 -5.3594 15.115 -5.3594 Q14.6462 -5.3594 14.1775 -5.2188 Q13.7243 -5.0938 13.2712 -4.8906 L12.6775 -6.0938 Q13.2087 -6.375 13.8493 -6.5312 Q14.49 -6.6875 15.1931 -6.6875 ZM15.4431 -3.0156 Q14.5837 -2.9844 14.24 -2.6875 Q13.9118 -2.4062 13.9118 -1.9375 Q13.9118 -1.5312 14.1462 -1.3594 Q14.3806 -1.1875 14.7712 -1.1875 Q15.3493 -1.1875 15.74 -1.5312 Q16.1462 -1.875 16.1462 -2.5 L16.1462 -3.0312 L15.4431 -3.0156 ZM22.3943 -8.5625 Q24.1443 -8.5625 24.9724 -7.9219 Q25.8161 -7.2969 25.8161 -6 Q25.8161 -5.4062 25.5818 -4.9688 Q25.363 -4.5312 24.988 -4.2188 Q24.6286 -3.9219 24.2224 -3.7344 L26.738 0 L24.7224 0 L22.6755 -3.2812 L21.7068 -3.2812 L21.7068 0 L19.8943 0 L19.8943 -8.5625 L22.3943 -8.5625 ZM22.2536 -7.0781 L21.7068 -7.0781 L21.7068 -4.7656 L22.3005 -4.7656 Q23.1911 -4.7656 23.5818 -5.0625 Q23.9724 -5.3594 23.9724 -5.9531 Q23.9724 -6.5625 23.5505 -6.8125 Q23.1443 -7.0781 22.2536 -7.0781 ZM30.3768 -6.6719 Q31.7206 -6.6719 32.5174 -5.8906 Q33.3143 -5.125 33.3143 -3.7031 L33.3143 -2.8281 L29.0956 -2.8281 Q29.1112 -2.0781 29.5331 -1.6406 Q29.9706 -1.2188 30.7206 -1.2188 Q31.3612 -1.2188 31.8768 -1.3438 Q32.3924 -1.4688 32.9393 -1.7344 L32.9393 -0.3438 Q32.4549 -0.1094 31.9237 0 Q31.3924 0.125 30.6424 0.125 Q29.6581 0.125 28.8924 -0.2344 Q28.1424 -0.6094 27.7049 -1.3438 Q27.2831 -2.0938 27.2831 -3.2344 Q27.2831 -4.375 27.6581 -5.1406 Q28.0487 -5.9062 28.7518 -6.2812 Q29.4549 -6.6719 30.3768 -6.6719 ZM30.3768 -5.4062 Q29.8612 -5.4062 29.5174 -5.0625 Q29.1893 -4.7344 29.1268 -4.0156 L31.6268 -4.0156 Q31.6268 -4.625 31.3143 -5.0156 Q31.0174 -5.4062 30.3768 -5.4062 ZM38.4064 -6.6719 Q39.5157 -6.6719 40.2032 -5.8125 Q40.8907 -4.9531 40.8907 -3.2812 Q40.8907 -1.625 40.172 -0.75 Q39.4689 0.125 38.3595 0.125 Q37.6564 0.125 37.2345 -0.125 Q36.8126 -0.3906 36.547 -0.7188 L36.4532 -0.7188 Q36.547 -0.2188 36.547 0.2344 L36.547 2.875 L34.7657 2.875 L34.7657 -6.5469 L36.2189 -6.5469 L36.4689 -5.7031 L36.547 -5.7031 Q36.8126 -6.0938 37.2501 -6.375 Q37.7032 -6.6719 38.4064 -6.6719 ZM37.8439 -5.25 Q37.1407 -5.25 36.8595 -4.8125 Q36.5782 -4.375 36.547 -3.4844 L36.547 -3.2969 Q36.547 -2.3594 36.8282 -1.8438 Q37.1095 -1.3281 37.8595 -1.3281 Q38.4689 -1.3281 38.7657 -1.8438 Q39.0626 -2.3594 39.0626 -3.3125 Q39.0626 -5.25 37.8439 -5.25 ZM48.3149 -3.2812 Q48.3149 -1.6562 47.4556 -0.7656 Q46.5962 0.125 45.1274 0.125 Q44.2056 0.125 43.4868 -0.2656 Q42.7837 -0.6719 42.3774 -1.4375 Q41.9712 -2.2031 41.9712 -3.2812 Q41.9712 -4.9219 42.8149 -5.7969 Q43.6743 -6.6719 45.1587 -6.6719 Q46.0806 -6.6719 46.7837 -6.2656 Q47.5024 -5.875 47.9087 -5.125 Q48.3149 -4.375 48.3149 -3.2812 ZM43.7837 -3.2812 Q43.7837 -2.3125 44.0962 -1.8125 Q44.4243 -1.3125 45.1431 -1.3125 Q45.8462 -1.3125 46.1587 -1.8125 Q46.4868 -2.3125 46.4868 -3.2812 Q46.4868 -4.2656 46.1587 -4.75 Q45.8462 -5.2344 45.1274 -5.2344 Q44.4243 -5.2344 44.0962 -4.75 Q43.7837 -4.2656 43.7837 -3.2812 ZM54.368 -1.9375 Q54.368 -0.9531 53.6649 -0.4062 Q52.9617 0.125 51.5711 0.125 Q50.8836 0.125 50.3836 0.0312 Q49.8992 -0.0625 49.3992 -0.2656 L49.3992 -1.7344 Q49.9305 -1.5 50.5399 -1.3438 Q51.1492 -1.1875 51.618 -1.1875 Q52.1492 -1.1875 52.368 -1.3438 Q52.6024 -1.5 52.6024 -1.75 Q52.6024 -1.9219 52.5086 -2.0469 Q52.4149 -2.1875 52.118 -2.3438 Q51.8211 -2.5156 51.1805 -2.7812 Q50.5711 -3.0469 50.1649 -3.2969 Q49.7742 -3.5625 49.5867 -3.9219 Q49.3992 -4.2969 49.3992 -4.8438 Q49.3992 -5.7656 50.1024 -6.2188 Q50.8055 -6.6719 51.9774 -6.6719 Q52.6024 -6.6719 53.1492 -6.5469 Q53.6961 -6.4375 54.2899 -6.1562 L53.743 -4.875 Q53.2742 -5.0781 52.8367 -5.2188 Q52.3992 -5.3594 51.9617 -5.3594 Q51.1649 -5.3594 51.1649 -4.9219 Q51.1649 -4.7656 51.2586 -4.6406 Q51.368 -4.5156 51.6649 -4.3594 Q51.9617 -4.2188 52.5399 -3.9844 Q53.1024 -3.75 53.5086 -3.5 Q53.9149 -3.2656 54.1336 -2.8906 Q54.368 -2.5312 54.368 -1.9375 ZM56.6601 -9.125 Q57.0508 -9.125 57.332 -8.9375 Q57.6289 -8.75 57.6289 -8.25 Q57.6289 -7.75 57.332 -7.5625 Q57.0508 -7.375 56.6601 -7.375 Q56.2383 -7.375 55.957 -7.5625 Q55.6758 -7.75 55.6758 -8.25 Q55.6758 -8.75 55.957 -8.9375 Q56.2383 -9.125 56.6601 -9.125 ZM57.5351 -6.5469 L57.5351 0 L55.7539 0 L55.7539 -6.5469 L57.5351 -6.5469 ZM62.1795 -1.3125 Q62.4764 -1.3125 62.742 -1.3594 Q63.0233 -1.4219 63.3045 -1.5156 L63.3045 -0.1875 Q63.0077 -0.0625 62.5858 0.0312 Q62.1639 0.125 61.6639 0.125 Q61.0702 0.125 60.6014 -0.0625 Q60.1483 -0.2656 59.867 -0.7344 Q59.6014 -1.2188 59.6014 -2.0469 L59.6014 -5.2031 L58.7577 -5.2031 L58.7577 -5.9688 L59.742 -6.5625 L60.2577 -7.9375 L61.3983 -7.9375 L61.3983 -6.5469 L63.2264 -6.5469 L63.2264 -5.2031 L61.3983 -5.2031 L61.3983 -2.0469 Q61.3983 -1.6875 61.6014 -1.5 Q61.8202 -1.3125 62.1795 -1.3125 ZM70.5751 -3.2812 Q70.5751 -1.6562 69.7157 -0.7656 Q68.8563 0.125 67.3876 0.125 Q66.4657 0.125 65.7469 -0.2656 Q65.0438 -0.6719 64.6376 -1.4375 Q64.2313 -2.2031 64.2313 -3.2812 Q64.2313 -4.9219 65.0751 -5.7969 Q65.9344 -6.6719 67.4188 -6.6719 Q68.3407 -6.6719 69.0438 -6.2656 Q69.7626 -5.875 70.1688 -5.125 Q70.5751 -4.375 70.5751 -3.2812 ZM66.0438 -3.2812 Q66.0438 -2.3125 66.3563 -1.8125 Q66.6844 -1.3125 67.4032 -1.3125 Q68.1063 -1.3125 68.4188 -1.8125 Q68.7469 -2.3125 68.7469 -3.2812 Q68.7469 -4.2656 68.4188 -4.75 Q68.1063 -5.2344 67.3876 -5.2344 Q66.6844 -5.2344 66.3563 -4.75 Q66.0438 -4.2656 66.0438 -3.2812 ZM75.7063 -6.6719 Q75.8469 -6.6719 76.0188 -6.6562 Q76.2063 -6.6406 76.3156 -6.625 L76.175 -4.9375 Q76.0969 -4.9688 75.925 -4.9844 Q75.7688 -5 75.6438 -5 Q75.1906 -5 74.7688 -4.8438 Q74.3469 -4.6875 74.0813 -4.3125 Q73.8313 -3.9531 73.8313 -3.3438 L73.8313 0 L72.05 0 L72.05 -6.5469 L73.4094 -6.5469 L73.675 -5.4531 L73.7531 -5.4531 Q74.0344 -5.9531 74.5344 -6.3125 Q75.05 -6.6719 75.7063 -6.6719 ZM76.5605 -6.5469 L78.5137 -6.5469 L79.748 -2.875 Q79.8418 -2.6094 79.8887 -2.3281 Q79.9512 -2.0469 79.9668 -1.7344 L79.998 -1.7344 Q80.0449 -2.0469 80.1074 -2.3281 Q80.1699 -2.6094 80.2637 -2.875 L81.4668 -6.5469 L83.3887 -6.5469 L80.623 0.8438 Q80.248 1.8594 79.5293 2.3594 Q78.8105 2.875 77.873 2.875 Q77.5762 2.875 77.3574 2.8438 Q77.1387 2.8125 76.9668 2.7812 L76.9668 1.375 Q77.1074 1.3906 77.2793 1.4062 Q77.4668 1.4375 77.6699 1.4375 Q78.248 1.4375 78.5762 1.0938 Q78.9043 0.75 79.0605 0.2812 L79.1699 -0.0469 L76.5605 -6.5469 ZM89.7323 -1.1875 L83.9042 -3.75 L83.9042 -4.5938 L89.7323 -7.5 L89.7323 -6.0938 L85.7167 -4.2344 L89.7323 -2.5938 L89.7323 -1.1875 ZM98.2995 -3.0312 Q98.2995 -2.1406 97.9089 -1.4219 Q97.5183 -0.7031 96.737 -0.2812 Q95.9558 0.125 94.7526 0.125 Q93.0495 0.125 92.1589 -0.75 Q91.2683 -1.625 91.2683 -3.0469 L91.2683 -8.5625 L93.0808 -8.5625 L93.0808 -3.3281 Q93.0808 -2.2656 93.5183 -1.8281 Q93.9558 -1.4062 94.7995 -1.4062 Q95.6901 -1.4062 96.0808 -1.875 Q96.487 -2.3438 96.487 -3.3438 L96.487 -8.5625 L98.2995 -8.5625 L98.2995 -3.0312 ZM104.8403 -1.9375 Q104.8403 -0.9531 104.1372 -0.4062 Q103.4341 0.125 102.0435 0.125 Q101.356 0.125 100.856 0.0312 Q100.3716 -0.0625 99.8716 -0.2656 L99.8716 -1.7344 Q100.4028 -1.5 101.0122 -1.3438 Q101.6216 -1.1875 102.0903 -1.1875 Q102.6216 -1.1875 102.8403 -1.3438 Q103.0747 -1.5 103.0747 -1.75 Q103.0747 -1.9219 102.981 -2.0469 Q102.8872 -2.1875 102.5903 -2.3438 Q102.2935 -2.5156 101.6528 -2.7812 Q101.0435 -3.0469 100.6372 -3.2969 Q100.2466 -3.5625 100.0591 -3.9219 Q99.8716 -4.2969 99.8716 -4.8438 Q99.8716 -5.7656 100.5747 -6.2188 Q101.2778 -6.6719 102.4497 -6.6719 Q103.0747 -6.6719 103.6216 -6.5469 Q104.1685 -6.4375 104.7622 -6.1562 L104.2153 -4.875 Q103.7466 -5.0781 103.3091 -5.2188 Q102.8716 -5.3594 102.4341 -5.3594 Q101.6372 -5.3594 101.6372 -4.9219 Q101.6372 -4.7656 101.731 -4.6406 Q101.8403 -4.5156 102.1372 -4.3594 Q102.4341 -4.2188 103.0122 -3.9844 Q103.5747 -3.75 103.981 -3.5 Q104.3872 -3.2656 104.606 -2.8906 Q104.8403 -2.5312 104.8403 -1.9375 ZM108.9294 -6.6719 Q110.2731 -6.6719 111.07 -5.8906 Q111.8669 -5.125 111.8669 -3.7031 L111.8669 -2.8281 L107.6481 -2.8281 Q107.6637 -2.0781 108.0856 -1.6406 Q108.5231 -1.2188 109.2731 -1.2188 Q109.9137 -1.2188 110.4294 -1.3438 Q110.945 -1.4688 111.4919 -1.7344 L111.4919 -0.3438 Q111.0075 -0.1094 110.4762 0 Q109.945 0.125 109.195 0.125 Q108.2106 0.125 107.445 -0.2344 Q106.695 -0.6094 106.2575 -1.3438 Q105.8356 -2.0938 105.8356 -3.2344 Q105.8356 -4.375 106.2106 -5.1406 Q106.6012 -5.9062 107.3044 -6.2812 Q108.0075 -6.6719 108.9294 -6.6719 ZM108.9294 -5.4062 Q108.4137 -5.4062 108.07 -5.0625 Q107.7419 -4.7344 107.6794 -4.0156 L110.1794 -4.0156 Q110.1794 -4.625 109.8669 -5.0156 Q109.57 -5.4062 108.9294 -5.4062 ZM116.9745 -6.6719 Q117.1152 -6.6719 117.287 -6.6562 Q117.4745 -6.6406 117.5839 -6.625 L117.4433 -4.9375 Q117.3652 -4.9688 117.1933 -4.9844 Q117.037 -5 116.912 -5 Q116.4589 -5 116.037 -4.8438 Q115.6152 -4.6875 115.3495 -4.3125 Q115.0995 -3.9531 115.0995 -3.3438 L115.0995 0 L113.3183 0 L113.3183 -6.5469 L114.6777 -6.5469 L114.9433 -5.4531 L115.0214 -5.4531 Q115.3027 -5.9531 115.8027 -6.3125 Q116.3183 -6.6719 116.9745 -6.6719 ZM120.5163 -1.2656 Q120.3601 -0.625 120.0632 0.125 Q119.782 0.8906 119.4851 1.5469 L118.2038 1.5469 Q118.3757 0.8438 118.532 0.0312 Q118.7038 -0.7656 118.782 -1.3906 L120.4382 -1.3906 L120.5163 -1.2656 ZM126.2126 -9.125 Q126.6033 -9.125 126.8845 -8.9375 Q127.1814 -8.75 127.1814 -8.25 Q127.1814 -7.75 126.8845 -7.5625 Q126.6033 -7.375 126.2126 -7.375 Q125.7908 -7.375 125.5095 -7.5625 Q125.2283 -7.75 125.2283 -8.25 Q125.2283 -8.75 125.5095 -8.9375 Q125.7908 -9.125 126.2126 -9.125 ZM127.0876 -6.5469 L127.0876 0 L125.3064 0 L125.3064 -6.5469 L127.0876 -6.5469 ZM132.6852 -6.6719 Q133.7477 -6.6719 134.3727 -6.0938 Q135.0133 -5.5312 135.0133 -4.2656 L135.0133 0 L133.232 0 L133.232 -3.8281 Q133.232 -4.5312 132.9664 -4.8906 Q132.7164 -5.25 132.1695 -5.25 Q131.357 -5.25 131.0445 -4.6875 Q130.7477 -4.125 130.7477 -3.0781 L130.7477 0 L128.9664 0 L128.9664 -6.5469 L130.3258 -6.5469 L130.5758 -5.7188 L130.6695 -5.7188 Q130.982 -6.2188 131.5289 -6.4375 Q132.0758 -6.6719 132.6852 -6.6719 ZM139.6161 -1.3125 Q139.913 -1.3125 140.1786 -1.3594 Q140.4598 -1.4219 140.7411 -1.5156 L140.7411 -0.1875 Q140.4442 -0.0625 140.0223 0.0312 Q139.6005 0.125 139.1005 0.125 Q138.5067 0.125 138.038 -0.0625 Q137.5848 -0.2656 137.3036 -0.7344 Q137.038 -1.2188 137.038 -2.0469 L137.038 -5.2031 L136.1942 -5.2031 L136.1942 -5.9688 L137.1786 -6.5625 L137.6942 -7.9375 L138.8348 -7.9375 L138.8348 -6.5469 L140.663 -6.5469 L140.663 -5.2031 L138.8348 -5.2031 L138.8348 -2.0469 Q138.8348 -1.6875 139.038 -1.5 Q139.2567 -1.3125 139.6161 -1.3125 ZM141.6366 -2.5938 L145.6523 -4.2344 L141.6366 -6.0938 L141.6366 -7.5 L147.4648 -4.5938 L147.4648 -3.75 L141.6366 -1.1875 L141.6366 -2.5938 Z" style="stroke:none; clip-path:url(#clipPath60);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M-703.8598 240.4806 A6 6 0 0 0 -715.6865 238.4487" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-421.5682" x2="-703.8598" y1="288.98" style="fill:none; clip-path:url(#clipPath2);" y2="240.4806"
+      /><line x1="-715.6865" x2="-1027.5504" y1="238.4487" style="fill:none; clip-path:url(#clipPath2);" y2="184.8685"
+      /><line x1="-1027.5504" x2="-1016.2922" y1="184.8685" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="180.7148"
+      /><line x1="-1027.5504" x2="-1018.3241" y1="184.8685" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="192.5416"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-750.9235,234.5802)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath61);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-774.5593,237.7522)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM31.9517 9.7968 Q31.9517 10.6875 31.5767 11.4062 Q31.2173 12.125 30.4829 12.5468 Q29.7485 12.9531 28.6079 12.9531 Q27.0142 12.9531 26.1704 12.0781 Q25.3423 11.2031 25.3423 9.7812 L25.3423 4.2656 L26.4204 4.2656 L26.4204 9.8125 Q26.4204 10.8593 26.9829 11.4375 Q27.5454 12.0156 28.6704 12.0156 Q29.8267 12.0156 30.3423 11.4062 Q30.8735 10.7812 30.8735 9.7968 L30.8735 4.2656 L31.9517 4.2656 L31.9517 9.7968 ZM38.2393 11.0468 Q38.2393 11.9843 37.5362 12.4687 Q36.8487 12.9531 35.6768 12.9531 Q35.005 12.9531 34.5206 12.8437 Q34.0362 12.7343 33.6612 12.5468 L33.6612 11.5781 Q34.0518 11.7656 34.5831 11.9375 Q35.13 12.0937 35.6925 12.0937 Q36.505 12.0937 36.8643 11.8437 Q37.2237 11.5781 37.2237 11.1406 Q37.2237 10.9062 37.0831 10.7187 Q36.9581 10.5312 36.6143 10.3437 Q36.2706 10.1406 35.6456 9.9062 Q35.0206 9.6562 34.5675 9.4218 Q34.13 9.1875 33.88 8.8593 Q33.6456 8.5156 33.6456 7.9843 Q33.6456 7.1718 34.3018 6.7343 Q34.9737 6.2812 36.0675 6.2812 Q36.6456 6.2812 37.1456 6.3906 Q37.6612 6.5 38.1143 6.7031 L37.755 7.5468 Q37.3487 7.375 36.8956 7.2656 Q36.4581 7.1406 35.9893 7.1406 Q35.3331 7.1406 34.9893 7.3593 Q34.6612 7.5625 34.6612 7.9218 Q34.6612 8.1875 34.8175 8.375 Q34.9737 8.5625 35.3331 8.7343 Q35.6925 8.9062 36.3175 9.1406 Q36.9268 9.375 37.3487 9.625 Q37.7862 9.8593 38.005 10.2031 Q38.2393 10.5312 38.2393 11.0468 ZM42.2843 6.2812 Q43.1124 6.2812 43.7061 6.6406 Q44.2999 7 44.6124 7.6562 Q44.9405 8.2968 44.9405 9.1875 L44.9405 9.8125 L40.5343 9.8125 Q40.5655 10.9062 41.0968 11.4843 Q41.628 12.0468 42.5811 12.0468 Q43.2061 12.0468 43.6749 11.9375 Q44.1436 11.8125 44.6593 11.6093 L44.6593 12.5312 Q44.1593 12.75 43.6749 12.8437 Q43.2061 12.9531 42.5343 12.9531 Q41.628 12.9531 40.9249 12.5781 Q40.2218 12.2031 39.8311 11.4687 Q39.4405 10.7343 39.4405 9.6562 Q39.4405 8.6093 39.7999 7.8593 Q40.1593 7.0937 40.7999 6.6875 Q41.4405 6.2812 42.2843 6.2812 ZM42.2686 7.1406 Q41.5186 7.1406 41.0811 7.625 Q40.6436 8.1093 40.5655 8.9687 L43.8311 8.9687 Q43.8311 8.1562 43.4561 7.6562 Q43.0811 7.1406 42.2686 7.1406 ZM49.5679 6.2812 Q49.7554 6.2812 49.9586 6.2968 Q50.1773 6.3125 50.3336 6.3437 L50.1929 7.3125 Q50.0367 7.2812 49.8492 7.2656 Q49.6617 7.2343 49.5054 7.2343 Q49.0054 7.2343 48.5679 7.5156 Q48.1461 7.7812 47.8804 8.2656 Q47.6304 8.75 47.6304 9.3906 L47.6304 12.8281 L46.5679 12.8281 L46.5679 6.3906 L47.4429 6.3906 L47.5523 7.5781 L47.5992 7.5781 Q47.9117 7.0468 48.3961 6.6718 Q48.8961 6.2812 49.5679 6.2812 ZM52.8052 11.5625 Q52.649 12.2031 52.3521 12.9687 Q52.0709 13.7343 51.774 14.375 L50.9927 14.375 Q51.1646 13.6875 51.3365 12.875 Q51.524 12.0625 51.6021 11.4375 L52.7271 11.4375 L52.8052 11.5625 ZM57.3025 12.8281 L54.2088 12.8281 L54.2088 12.2031 L55.2088 11.9687 L55.2088 5.125 L54.2088 4.8906 L54.2088 4.2656 L57.3025 4.2656 L57.3025 4.8906 L56.2869 5.125 L56.2869 11.9687 L57.3025 12.2031 L57.3025 12.8281 ZM65.8237 8.4531 Q65.8237 10.625 64.6362 11.7343 Q63.4487 12.8281 61.3393 12.8281 L58.9487 12.8281 L58.9487 4.2656 L61.5893 4.2656 Q62.8862 4.2656 63.8393 4.75 Q64.7924 5.2187 65.308 6.1562 Q65.8237 7.0781 65.8237 8.4531 ZM64.683 8.5 Q64.683 6.7812 63.8393 5.9843 Q62.9955 5.1875 61.433 5.1875 L60.0424 5.1875 L60.0424 11.9062 L61.1987 11.9062 Q64.683 11.9062 64.683 8.5 ZM67.0368 10.0781 L67.0368 9.1406 L69.9431 9.1406 L69.9431 10.0781 L67.0368 10.0781 ZM71.0102 10.5 L75.5415 8.6093 L71.0102 6.4687 L71.0102 5.5312 L76.6665 8.3593 L76.6665 8.9531 L71.0102 11.4375 L71.0102 10.5 ZM78.843 3.9843 Q79.0774 3.9843 79.2649 4.1562 Q79.4524 4.3125 79.4524 4.6562 Q79.4524 4.9843 79.2649 5.1562 Q79.0774 5.3281 78.843 5.3281 Q78.5774 5.3281 78.3899 5.1562 Q78.218 4.9843 78.218 4.6562 Q78.218 4.3125 78.3899 4.1562 Q78.5774 3.9843 78.843 3.9843 ZM79.3587 6.3906 L79.3587 12.8281 L78.2962 12.8281 L78.2962 6.3906 L79.3587 6.3906 ZM84.4859 6.2812 Q85.6422 6.2812 86.2203 6.8437 Q86.8141 7.3906 86.8141 8.6406 L86.8141 12.8281 L85.7828 12.8281 L85.7828 8.7187 Q85.7828 7.1718 84.3297 7.1718 Q83.2672 7.1718 82.8609 7.7656 Q82.4547 8.3593 82.4547 9.4843 L82.4547 12.8281 L81.3922 12.8281 L81.3922 6.3906 L82.2516 6.3906 L82.4078 7.2656 L82.4703 7.2656 Q82.7828 6.7656 83.3297 6.5312 Q83.8766 6.2812 84.4859 6.2812 ZM90.9645 12.0781 Q91.1989 12.0781 91.4489 12.0468 Q91.6989 12 91.8551 11.9531 L91.8551 12.75 Q91.6989 12.8437 91.3864 12.8906 Q91.0739 12.9531 90.777 12.9531 Q90.277 12.9531 89.8395 12.7812 Q89.4176 12.5937 89.152 12.1718 Q88.902 11.7343 88.902 10.9531 L88.902 7.2187 L87.9801 7.2187 L87.9801 6.7031 L88.902 6.2812 L89.3239 4.9218 L89.9489 4.9218 L89.9489 6.3906 L91.8082 6.3906 L91.8082 7.2187 L89.9489 7.2187 L89.9489 10.9375 Q89.9489 11.5156 90.2301 11.7968 Q90.5114 12.0781 90.9645 12.0781 ZM92.7184 10.5 L97.2496 8.6093 L92.7184 6.4687 L92.7184 5.5312 L98.3746 8.3593 L98.3746 8.9531 L92.7184 11.4375 L92.7184 10.5 Z" style="stroke:none; clip-path:url(#clipPath62);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><path d="M-80.6334 -36.7469 A6 6 0 0 0 -80.6334 -48.7469" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M-37.1334 -73.9969 A6 6 0 0 0 -49.1334 -73.9969" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M154.3795 -73.9969 A6 6 0 0 0 142.3795 -73.9969" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M241.2416 -210.5434 A6 6 0 0 0 241.2416 -222.5434" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M241.2416 -277.0955 A6 6 0 0 0 241.2416 -289.0955" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M241.2416 -398.7164 A6 6 0 0 0 241.2416 -410.7164" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="381.5717" x2="241.2416" y1="-554.0404" style="fill:none; clip-path:url(#clipPath2);" y2="-554.0404"
+      /><line x1="241.2416" x2="241.2416" y1="-554.0404" style="fill:none; clip-path:url(#clipPath2);" y2="-410.7164"
+      /><line x1="241.2416" x2="241.2416" y1="-398.7164" style="fill:none; clip-path:url(#clipPath2);" y2="-289.0955"
+      /><line x1="241.2416" x2="241.2416" y1="-277.0955" style="fill:none; clip-path:url(#clipPath2);" y2="-222.5434"
+      /><line x1="241.2416" x2="241.2416" y1="-210.5434" style="fill:none; clip-path:url(#clipPath2);" y2="-73.9969"
+      /><line x1="241.2416" x2="154.3795" y1="-73.9969" style="fill:none; clip-path:url(#clipPath2);" y2="-73.9969"
+      /><line x1="142.3795" x2="-37.1334" y1="-73.9969" style="fill:none; clip-path:url(#clipPath2);" y2="-73.9969"
+      /><line x1="-49.1334" x2="-80.6334" y1="-73.9969" style="fill:none; clip-path:url(#clipPath2);" y2="-73.9969"
+      /><line x1="-80.6334" x2="-80.6334" y1="-73.9969" style="fill:none; clip-path:url(#clipPath2);" y2="-48.7469"
+      /><line x1="-80.6334" x2="-80.6334" y1="-36.7469" style="fill:none; clip-path:url(#clipPath2);" y2="215.4618"
+      /><line x1="-80.6334" x2="-86.6334" y1="215.4618" style="fill:none; clip-path:url(#clipPath2);" y2="205.0695"
+      /><line x1="-80.6334" x2="-74.6334" y1="215.4618" style="fill:none; clip-path:url(#clipPath2);" y2="205.0695"
+      /><path d="M-253.5832 303.4104 C-175.1509 303.4104 -253.5832 303.4104 -175.1509 303.4104" style="fill:none; clip-path:url(#clipPath2);"
+      /><polygon style="fill:white; clip-path:url(#clipPath2); stroke:none;" points=" -254 303 -242 310 -242 297"
+      /><polygon style="fill:none; clip-path:url(#clipPath2);" points=" -254 303 -242 310 -242 297"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="645.3426" y="-445.3143" width="99.6926" style="clip-path:url(#clipPath2); stroke:none;" height="43.3441"
+      /><rect x="645.3426" y="-445.3143" width="99.6926" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="43.3441"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><line x1="645.3426" x2="745.0352" y1="-412.9702" style="fill:none; clip-path:url(#clipPath2);" y2="-412.9702"
+      /><line x1="645.3426" x2="745.0352" y1="-420.9702" style="fill:none; clip-path:url(#clipPath2);" y2="-420.9702"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; font-weight:bold; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(655.3426,-427.3143)"
+    ><path d="M4.375 0 L2.5625 0 L2.5625 -7.0625 L0.2344 -7.0625 L0.2344 -8.5625 L6.7031 -8.5625 L6.7031 -7.0625 L4.375 -7.0625 L4.375 0 ZM13.8387 -3.2812 Q13.8387 -1.6562 12.9793 -0.7656 Q12.1199 0.125 10.6512 0.125 Q9.7293 0.125 9.0105 -0.2656 Q8.3074 -0.6719 7.9012 -1.4375 Q7.4949 -2.2031 7.4949 -3.2812 Q7.4949 -4.9219 8.3387 -5.7969 Q9.198 -6.6719 10.6824 -6.6719 Q11.6043 -6.6719 12.3074 -6.2656 Q13.0262 -5.875 13.4324 -5.125 Q13.8387 -4.375 13.8387 -3.2812 ZM9.3074 -3.2812 Q9.3074 -2.3125 9.6199 -1.8125 Q9.948 -1.3125 10.6668 -1.3125 Q11.3699 -1.3125 11.6824 -1.8125 Q12.0105 -2.3125 12.0105 -3.2812 Q12.0105 -4.2656 11.6824 -4.75 Q11.3699 -5.2344 10.6512 -5.2344 Q9.948 -5.2344 9.6199 -4.75 Q9.3074 -4.2656 9.3074 -3.2812 ZM17.0948 -5.0469 Q17.0948 -4.6719 17.0636 -4.2969 Q17.0323 -3.9375 17.0011 -3.5625 L17.0323 -3.5625 Q17.2042 -3.8125 17.3917 -4.0625 Q17.5948 -4.3281 17.8136 -4.5625 L19.6417 -6.5469 L21.6573 -6.5469 L19.0636 -3.7031 L21.8136 0 L19.7511 0 L17.8605 -2.6562 L17.0948 -2.0469 L17.0948 0 L15.3136 0 L15.3136 -9.125 L17.0948 -9.125 L17.0948 -5.0469 ZM25.4568 -6.6719 Q26.8005 -6.6719 27.5974 -5.8906 Q28.3943 -5.125 28.3943 -3.7031 L28.3943 -2.8281 L24.1755 -2.8281 Q24.1911 -2.0781 24.613 -1.6406 Q25.0505 -1.2188 25.8005 -1.2188 Q26.4411 -1.2188 26.9568 -1.3438 Q27.4724 -1.4688 28.0193 -1.7344 L28.0193 -0.3438 Q27.5349 -0.1094 27.0036 0 Q26.4724 0.125 25.7224 0.125 Q24.738 0.125 23.9724 -0.2344 Q23.2224 -0.6094 22.7849 -1.3438 Q22.363 -2.0938 22.363 -3.2344 Q22.363 -4.375 22.738 -5.1406 Q23.1286 -5.9062 23.8318 -6.2812 Q24.5349 -6.6719 25.4568 -6.6719 ZM25.4568 -5.4062 Q24.9411 -5.4062 24.5974 -5.0625 Q24.2693 -4.7344 24.2068 -4.0156 L26.7068 -4.0156 Q26.7068 -4.625 26.3943 -5.0156 Q26.0974 -5.4062 25.4568 -5.4062 ZM33.5645 -6.6719 Q34.627 -6.6719 35.252 -6.0938 Q35.8926 -5.5312 35.8926 -4.2656 L35.8926 0 L34.1113 0 L34.1113 -3.8281 Q34.1113 -4.5312 33.8457 -4.8906 Q33.5957 -5.25 33.0488 -5.25 Q32.2363 -5.25 31.9238 -4.6875 Q31.627 -4.125 31.627 -3.0781 L31.627 0 L29.8457 0 L29.8457 -6.5469 L31.2051 -6.5469 L31.4551 -5.7188 L31.5488 -5.7188 Q31.8613 -6.2188 32.4082 -6.4375 Q32.9551 -6.6719 33.5645 -6.6719 ZM42.9173 -2.375 Q42.9173 -1.2344 42.0891 -0.5469 Q41.2766 0.125 39.761 0.125 Q38.4173 0.125 37.3391 -0.3906 L37.3391 -2.0938 Q37.9485 -1.8281 38.6048 -1.5938 Q39.261 -1.375 39.9173 -1.375 Q40.5891 -1.375 40.8704 -1.625 Q41.1516 -1.8906 41.1516 -2.2969 Q41.1516 -2.6094 40.9173 -2.8438 Q40.6985 -3.0781 40.3235 -3.2656 Q39.9641 -3.4688 39.4798 -3.7031 Q39.1829 -3.8438 38.8235 -4.0312 Q38.4798 -4.2344 38.1673 -4.5312 Q37.8548 -4.8281 37.636 -5.2344 Q37.4329 -5.6562 37.4329 -6.25 Q37.4329 -7.4062 38.2141 -8.0469 Q38.9954 -8.6875 40.3391 -8.6875 Q41.011 -8.6875 41.6204 -8.5312 Q42.2298 -8.375 42.886 -8.0938 L42.3079 -6.6719 Q41.7141 -6.9062 41.2454 -7.0312 Q40.7766 -7.1719 40.2766 -7.1719 Q39.761 -7.1719 39.4798 -6.9375 Q39.2141 -6.7031 39.2141 -6.3125 Q39.2141 -5.8594 39.6204 -5.5938 Q40.0266 -5.3281 40.8391 -4.9375 Q41.4954 -4.625 41.9485 -4.2812 Q42.4173 -3.9531 42.6673 -3.5 Q42.9173 -3.0469 42.9173 -2.375 ZM47.0449 -6.6719 Q48.3887 -6.6719 49.1855 -5.8906 Q49.9824 -5.125 49.9824 -3.7031 L49.9824 -2.8281 L45.7637 -2.8281 Q45.7793 -2.0781 46.2012 -1.6406 Q46.6387 -1.2188 47.3887 -1.2188 Q48.0293 -1.2188 48.5449 -1.3438 Q49.0605 -1.4688 49.6074 -1.7344 L49.6074 -0.3438 Q49.123 -0.1094 48.5918 0 Q48.0605 0.125 47.3105 0.125 Q46.3262 0.125 45.5605 -0.2344 Q44.8105 -0.6094 44.373 -1.3438 Q43.9512 -2.0938 43.9512 -3.2344 Q43.9512 -4.375 44.3262 -5.1406 Q44.7168 -5.9062 45.4199 -6.2812 Q46.123 -6.6719 47.0449 -6.6719 ZM47.0449 -5.4062 Q46.5293 -5.4062 46.1855 -5.0625 Q45.8574 -4.7344 45.7949 -4.0156 L48.2949 -4.0156 Q48.2949 -4.625 47.9824 -5.0156 Q47.6855 -5.4062 47.0449 -5.4062 ZM55.0901 -6.6719 Q55.2307 -6.6719 55.4026 -6.6562 Q55.5901 -6.6406 55.6995 -6.625 L55.5589 -4.9375 Q55.4807 -4.9688 55.3089 -4.9844 Q55.1526 -5 55.0276 -5 Q54.5745 -5 54.1526 -4.8438 Q53.7307 -4.6875 53.4651 -4.3125 Q53.2151 -3.9531 53.2151 -3.3438 L53.2151 0 L51.4339 0 L51.4339 -6.5469 L52.7932 -6.5469 L53.0589 -5.4531 L53.137 -5.4531 Q53.4182 -5.9531 53.9182 -6.3125 Q54.4339 -6.6719 55.0901 -6.6719 ZM58.4444 0 L55.9444 -6.5469 L57.8194 -6.5469 L59.0694 -2.8125 Q59.1788 -2.4844 59.2413 -2.125 Q59.3194 -1.7656 59.335 -1.4688 L59.3819 -1.4688 Q59.4131 -2.125 59.6475 -2.8125 L60.8975 -6.5469 L62.7725 -6.5469 L60.2725 0 L58.4444 0 ZM64.6162 -9.125 Q65.0068 -9.125 65.2881 -8.9375 Q65.5849 -8.75 65.5849 -8.25 Q65.5849 -7.75 65.2881 -7.5625 Q65.0068 -7.375 64.6162 -7.375 Q64.1943 -7.375 63.9131 -7.5625 Q63.6318 -7.75 63.6318 -8.25 Q63.6318 -8.75 63.9131 -8.9375 Q64.1943 -9.125 64.6162 -9.125 ZM65.4912 -6.5469 L65.4912 0 L63.7099 0 L63.7099 -6.5469 L65.4912 -6.5469 ZM70.0262 0.125 Q68.5731 0.125 67.7762 -0.6875 Q66.9793 -1.5 66.9793 -3.2344 Q66.9793 -4.4375 67.3856 -5.1875 Q67.7918 -5.9531 68.5106 -6.3125 Q69.245 -6.6719 70.1825 -6.6719 Q70.8543 -6.6719 71.3543 -6.5312 Q71.8543 -6.4062 72.2293 -6.2344 L71.6981 -4.8438 Q71.2762 -5.0156 70.9012 -5.125 Q70.5418 -5.2344 70.1825 -5.2344 Q68.7918 -5.2344 68.7918 -3.25 Q68.7918 -2.2656 69.1512 -1.7969 Q69.5262 -1.3281 70.1825 -1.3281 Q70.745 -1.3281 71.1825 -1.4688 Q71.62 -1.625 72.0262 -1.8906 L72.0262 -0.375 Q71.62 -0.1094 71.1668 0 Q70.7137 0.125 70.0262 0.125 ZM76.2411 -6.6719 Q77.5849 -6.6719 78.3818 -5.8906 Q79.1786 -5.125 79.1786 -3.7031 L79.1786 -2.8281 L74.9599 -2.8281 Q74.9755 -2.0781 75.3974 -1.6406 Q75.8349 -1.2188 76.5849 -1.2188 Q77.2255 -1.2188 77.7411 -1.3438 Q78.2568 -1.4688 78.8036 -1.7344 L78.8036 -0.3438 Q78.3193 -0.1094 77.788 0 Q77.2568 0.125 76.5068 0.125 Q75.5224 0.125 74.7568 -0.2344 Q74.0068 -0.6094 73.5693 -1.3438 Q73.1474 -2.0938 73.1474 -3.2344 Q73.1474 -4.375 73.5224 -5.1406 Q73.913 -5.9062 74.6161 -6.2812 Q75.3193 -6.6719 76.2411 -6.6719 ZM76.2411 -5.4062 Q75.7255 -5.4062 75.3818 -5.0625 Q75.0536 -4.7344 74.9911 -4.0156 L77.4911 -4.0156 Q77.4911 -4.625 77.1786 -5.0156 Q76.8818 -5.4062 76.2411 -5.4062 Z" style="stroke:none; clip-path:url(#clipPath63);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)" style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-weight:bold; font-family:sans-serif; stroke-linecap:butt;"
+    ><path d="M-703.8598 240.4806 A6 6 0 0 0 -715.6865 238.4487" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-421.5682" x2="-703.8598" y1="288.98" style="fill:none; clip-path:url(#clipPath2);" y2="240.4806"
+      /><line x1="-715.6865" x2="-1027.5504" y1="238.4487" style="fill:none; clip-path:url(#clipPath2);" y2="184.8685"
+      /><line x1="-1027.5504" x2="-1016.2922" y1="184.8685" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="180.7148"
+      /><line x1="-1027.5504" x2="-1018.3241" y1="184.8685" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="192.5416"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-750.9235,234.5802)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM15.8062 -6.9062 Q15.8062 -6.4844 15.7906 -6.125 Q15.775 -5.7812 15.7437 -5.5781 L15.8062 -5.5781 Q16.0875 -5.9844 16.5562 -6.2656 Q17.0406 -6.5469 17.7906 -6.5469 Q18.9937 -6.5469 19.7125 -5.7031 Q20.4468 -4.875 20.4468 -3.2188 Q20.4468 -1.5625 19.7125 -0.7188 Q18.9781 0.125 17.7906 0.125 Q17.0406 0.125 16.5562 -0.1562 Q16.0875 -0.4375 15.8062 -0.8125 L15.7125 -0.8125 L15.5093 0 L14.7437 0 L14.7437 -9.125 L15.8062 -9.125 L15.8062 -6.9062 ZM17.6187 -5.6562 Q16.6031 -5.6562 16.1968 -5.0625 Q15.8062 -4.4844 15.8062 -3.25 L15.8062 -3.2031 Q15.8062 -2.0156 16.1968 -1.375 Q16.5875 -0.75 17.6343 -0.75 Q18.5093 -0.75 18.9312 -1.3906 Q19.3531 -2.0312 19.3531 -3.2344 Q19.3531 -5.6562 17.6187 -5.6562 ZM22.6706 -8.8438 Q22.905 -8.8438 23.0925 -8.6719 Q23.28 -8.5156 23.28 -8.1719 Q23.28 -7.8438 23.0925 -7.6719 Q22.905 -7.5 22.6706 -7.5 Q22.405 -7.5 22.2175 -7.6719 Q22.0456 -7.8438 22.0456 -8.1719 Q22.0456 -8.5156 22.2175 -8.6719 Q22.405 -8.8438 22.6706 -8.8438 ZM23.1863 -6.4375 L23.1863 0 L22.1238 0 L22.1238 -6.4375 L23.1863 -6.4375 ZM28.3135 -6.5469 Q29.4698 -6.5469 30.0479 -5.9844 Q30.6417 -5.4375 30.6417 -4.1875 L30.6417 0 L29.6104 0 L29.6104 -4.1094 Q29.6104 -5.6562 28.1573 -5.6562 Q27.0948 -5.6562 26.6885 -5.0625 Q26.2823 -4.4688 26.2823 -3.3438 L26.2823 0 L25.2198 0 L25.2198 -6.4375 L26.0792 -6.4375 L26.2354 -5.5625 L26.2979 -5.5625 Q26.6104 -6.0625 27.1573 -6.2969 Q27.7042 -6.5469 28.3135 -6.5469 ZM34.9171 0.125 Q33.714 0.125 32.9952 -0.7031 Q32.2765 -1.5469 32.2765 -3.2031 Q32.2765 -4.8594 32.9952 -5.7031 Q33.7296 -6.5469 34.9327 -6.5469 Q35.6827 -6.5469 36.1515 -6.2656 Q36.6202 -6 36.9171 -5.6094 L36.9952 -5.6094 Q36.9796 -5.7656 36.9483 -6.0625 Q36.9171 -6.375 36.9171 -6.5469 L36.9171 -9.125 L37.9796 -9.125 L37.9796 0 L37.1358 0 L36.9796 -0.8594 L36.9171 -0.8594 Q36.6358 -0.4531 36.1515 -0.1562 Q35.6827 0.125 34.9171 0.125 ZM35.089 -0.75 Q36.1046 -0.75 36.5108 -1.3125 Q36.9327 -1.875 36.9327 -3 L36.9327 -3.1875 Q36.9327 -4.3906 36.5421 -5.0312 Q36.1515 -5.6719 35.0733 -5.6719 Q34.2296 -5.6719 33.7921 -4.9844 Q33.3702 -4.3125 33.3702 -3.1875 Q33.3702 -2.0312 33.7921 -1.3906 Q34.2296 -0.75 35.089 -0.75 ZM39.594 -2.3281 L44.1253 -4.2188 L39.594 -6.3594 L39.594 -7.2969 L45.2503 -4.4688 L45.2503 -3.875 L39.594 -1.3906 L39.594 -2.3281 ZM46.4581 -2.3281 L50.9893 -4.2188 L46.4581 -6.3594 L46.4581 -7.2969 L52.1143 -4.4688 L52.1143 -3.875 L46.4581 -1.3906 L46.4581 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath61);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207) translate(-774.5593,237.7522)"
+    ><path d="M6.25 11.4375 L0.5938 8.9531 L0.5938 8.3593 L6.25 5.5312 L6.25 6.4687 L1.7344 8.6093 L6.25 10.5 L6.25 11.4375 ZM10.739 12.8281 L9.6609 12.8281 L9.6609 5.2031 L6.989 5.2031 L6.989 4.2656 L13.4109 4.2656 L13.4109 5.2031 L10.739 5.2031 L10.739 12.8281 ZM14.0205 10.0781 L14.0205 9.1406 L16.9267 9.1406 L16.9267 10.0781 L14.0205 10.0781 ZM17.9939 10.5 L22.5251 8.6093 L17.9939 6.4687 L17.9939 5.5312 L23.6501 8.3593 L23.6501 8.9531 L17.9939 11.4375 L17.9939 10.5 ZM31.9517 9.7968 Q31.9517 10.6875 31.5767 11.4062 Q31.2173 12.125 30.4829 12.5468 Q29.7485 12.9531 28.6079 12.9531 Q27.0142 12.9531 26.1704 12.0781 Q25.3423 11.2031 25.3423 9.7812 L25.3423 4.2656 L26.4204 4.2656 L26.4204 9.8125 Q26.4204 10.8593 26.9829 11.4375 Q27.5454 12.0156 28.6704 12.0156 Q29.8267 12.0156 30.3423 11.4062 Q30.8735 10.7812 30.8735 9.7968 L30.8735 4.2656 L31.9517 4.2656 L31.9517 9.7968 ZM38.2393 11.0468 Q38.2393 11.9843 37.5362 12.4687 Q36.8487 12.9531 35.6768 12.9531 Q35.005 12.9531 34.5206 12.8437 Q34.0362 12.7343 33.6612 12.5468 L33.6612 11.5781 Q34.0518 11.7656 34.5831 11.9375 Q35.13 12.0937 35.6925 12.0937 Q36.505 12.0937 36.8643 11.8437 Q37.2237 11.5781 37.2237 11.1406 Q37.2237 10.9062 37.0831 10.7187 Q36.9581 10.5312 36.6143 10.3437 Q36.2706 10.1406 35.6456 9.9062 Q35.0206 9.6562 34.5675 9.4218 Q34.13 9.1875 33.88 8.8593 Q33.6456 8.5156 33.6456 7.9843 Q33.6456 7.1718 34.3018 6.7343 Q34.9737 6.2812 36.0675 6.2812 Q36.6456 6.2812 37.1456 6.3906 Q37.6612 6.5 38.1143 6.7031 L37.755 7.5468 Q37.3487 7.375 36.8956 7.2656 Q36.4581 7.1406 35.9893 7.1406 Q35.3331 7.1406 34.9893 7.3593 Q34.6612 7.5625 34.6612 7.9218 Q34.6612 8.1875 34.8175 8.375 Q34.9737 8.5625 35.3331 8.7343 Q35.6925 8.9062 36.3175 9.1406 Q36.9268 9.375 37.3487 9.625 Q37.7862 9.8593 38.005 10.2031 Q38.2393 10.5312 38.2393 11.0468 ZM42.2843 6.2812 Q43.1124 6.2812 43.7061 6.6406 Q44.2999 7 44.6124 7.6562 Q44.9405 8.2968 44.9405 9.1875 L44.9405 9.8125 L40.5343 9.8125 Q40.5655 10.9062 41.0968 11.4843 Q41.628 12.0468 42.5811 12.0468 Q43.2061 12.0468 43.6749 11.9375 Q44.1436 11.8125 44.6593 11.6093 L44.6593 12.5312 Q44.1593 12.75 43.6749 12.8437 Q43.2061 12.9531 42.5343 12.9531 Q41.628 12.9531 40.9249 12.5781 Q40.2218 12.2031 39.8311 11.4687 Q39.4405 10.7343 39.4405 9.6562 Q39.4405 8.6093 39.7999 7.8593 Q40.1593 7.0937 40.7999 6.6875 Q41.4405 6.2812 42.2843 6.2812 ZM42.2686 7.1406 Q41.5186 7.1406 41.0811 7.625 Q40.6436 8.1093 40.5655 8.9687 L43.8311 8.9687 Q43.8311 8.1562 43.4561 7.6562 Q43.0811 7.1406 42.2686 7.1406 ZM49.5679 6.2812 Q49.7554 6.2812 49.9586 6.2968 Q50.1773 6.3125 50.3336 6.3437 L50.1929 7.3125 Q50.0367 7.2812 49.8492 7.2656 Q49.6617 7.2343 49.5054 7.2343 Q49.0054 7.2343 48.5679 7.5156 Q48.1461 7.7812 47.8804 8.2656 Q47.6304 8.75 47.6304 9.3906 L47.6304 12.8281 L46.5679 12.8281 L46.5679 6.3906 L47.4429 6.3906 L47.5523 7.5781 L47.5992 7.5781 Q47.9117 7.0468 48.3961 6.6718 Q48.8961 6.2812 49.5679 6.2812 ZM52.8052 11.5625 Q52.649 12.2031 52.3521 12.9687 Q52.0709 13.7343 51.774 14.375 L50.9927 14.375 Q51.1646 13.6875 51.3365 12.875 Q51.524 12.0625 51.6021 11.4375 L52.7271 11.4375 L52.8052 11.5625 ZM57.3025 12.8281 L54.2088 12.8281 L54.2088 12.2031 L55.2088 11.9687 L55.2088 5.125 L54.2088 4.8906 L54.2088 4.2656 L57.3025 4.2656 L57.3025 4.8906 L56.2869 5.125 L56.2869 11.9687 L57.3025 12.2031 L57.3025 12.8281 ZM65.8237 8.4531 Q65.8237 10.625 64.6362 11.7343 Q63.4487 12.8281 61.3393 12.8281 L58.9487 12.8281 L58.9487 4.2656 L61.5893 4.2656 Q62.8862 4.2656 63.8393 4.75 Q64.7924 5.2187 65.308 6.1562 Q65.8237 7.0781 65.8237 8.4531 ZM64.683 8.5 Q64.683 6.7812 63.8393 5.9843 Q62.9955 5.1875 61.433 5.1875 L60.0424 5.1875 L60.0424 11.9062 L61.1987 11.9062 Q64.683 11.9062 64.683 8.5 ZM67.0368 10.0781 L67.0368 9.1406 L69.9431 9.1406 L69.9431 10.0781 L67.0368 10.0781 ZM71.0102 10.5 L75.5415 8.6093 L71.0102 6.4687 L71.0102 5.5312 L76.6665 8.3593 L76.6665 8.9531 L71.0102 11.4375 L71.0102 10.5 ZM78.843 3.9843 Q79.0774 3.9843 79.2649 4.1562 Q79.4524 4.3125 79.4524 4.6562 Q79.4524 4.9843 79.2649 5.1562 Q79.0774 5.3281 78.843 5.3281 Q78.5774 5.3281 78.3899 5.1562 Q78.218 4.9843 78.218 4.6562 Q78.218 4.3125 78.3899 4.1562 Q78.5774 3.9843 78.843 3.9843 ZM79.3587 6.3906 L79.3587 12.8281 L78.2962 12.8281 L78.2962 6.3906 L79.3587 6.3906 ZM84.4859 6.2812 Q85.6422 6.2812 86.2203 6.8437 Q86.8141 7.3906 86.8141 8.6406 L86.8141 12.8281 L85.7828 12.8281 L85.7828 8.7187 Q85.7828 7.1718 84.3297 7.1718 Q83.2672 7.1718 82.8609 7.7656 Q82.4547 8.3593 82.4547 9.4843 L82.4547 12.8281 L81.3922 12.8281 L81.3922 6.3906 L82.2516 6.3906 L82.4078 7.2656 L82.4703 7.2656 Q82.7828 6.7656 83.3297 6.5312 Q83.8766 6.2812 84.4859 6.2812 ZM90.9645 12.0781 Q91.1989 12.0781 91.4489 12.0468 Q91.6989 12 91.8551 11.9531 L91.8551 12.75 Q91.6989 12.8437 91.3864 12.8906 Q91.0739 12.9531 90.777 12.9531 Q90.277 12.9531 89.8395 12.7812 Q89.4176 12.5937 89.152 12.1718 Q88.902 11.7343 88.902 10.9531 L88.902 7.2187 L87.9801 7.2187 L87.9801 6.7031 L88.902 6.2812 L89.3239 4.9218 L89.9489 4.9218 L89.9489 6.3906 L91.8082 6.3906 L91.8082 7.2187 L89.9489 7.2187 L89.9489 10.9375 Q89.9489 11.5156 90.2301 11.7968 Q90.5114 12.0781 90.9645 12.0781 ZM92.7184 10.5 L97.2496 8.6093 L92.7184 6.4687 L92.7184 5.5312 L98.3746 8.3593 L98.3746 8.9531 L92.7184 11.4375 L92.7184 10.5 Z" style="stroke:none; clip-path:url(#clipPath62);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-dasharray:5,5; font-family:sans-serif; stroke-linecap:butt;" transform="matrix(1.3333,0,0,1.3333,1749.8315,1662.9207)"
+    ><path d="M694.8633 -615.8886 A6 6 0 0 0 694.8429 -627.8886" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="695.1522" x2="694.8633" y1="-445.3143" style="fill:none; clip-path:url(#clipPath2);" y2="-615.8886"
+      /><line x1="694.8429" x2="694.392" y1="-627.8886" style="fill:none; clip-path:url(#clipPath2);" y2="-894.1233"
+      /><line x1="695.1522" x2="689.1346" y1="-445.3143" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-455.6965"
+      /><line x1="695.1522" x2="701.1346" y1="-445.3143" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-455.7168"
+      /><path d="M947.7381 -409.9344 A6 6 0 0 0 935.7381 -409.9344" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="631.7695" x2="631.7695" y1="752.9891" style="fill:none; clip-path:url(#clipPath2);" y2="635.3781"
+      /><line x1="631.7695" x2="1031.8666" y1="635.3781" style="fill:none; clip-path:url(#clipPath2);" y2="635.3781"
+      /><line x1="1031.8666" x2="1031.8666" y1="635.3781" style="fill:none; clip-path:url(#clipPath2);" y2="-409.9344"
+      /><line x1="1031.8666" x2="947.7381" y1="-409.9344" style="fill:none; clip-path:url(#clipPath2);" y2="-409.9344"
+      /><line x1="935.7381" x2="745.0352" y1="-409.9344" style="fill:none; clip-path:url(#clipPath2);" y2="-409.9344"
+      /><line x1="631.7695" x2="625.7695" y1="752.9891" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="742.5968"
+      /><line x1="631.7695" x2="637.7695" y1="752.9891" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="742.5968"
+      /><path d="M247.2416 -423.6423 A6 6 0 0 0 235.2416 -423.6423" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><line x1="170.1153" x2="170.1153" y1="-419.7164" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-423.6423"
+      /><line x1="170.1153" x2="235.2416" y1="-423.6423" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-423.6423"
+      /><line x1="247.2416" x2="645.3426" y1="-423.6423" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-423.6423"
+      /><line x1="645.3426" x2="634.9503" y1="-423.6423" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-417.6423"
+      /><line x1="645.3426" x2="634.9503" y1="-423.6423" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-429.6423"
+      /><path d="M745.0352 -422.8651 C1284.5085 -414.454 745.0352 -422.8651 1284.5085 -414.454" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><line x1="1284.5085" x2="1274.0239" y1="-414.454" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-408.6168"
+      /><line x1="1284.5085" x2="1274.211" y1="-414.454" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-420.6153"
+      /><path d="M695.1889 -615.8886 A6 6 0 0 0 695.1889 -627.8886" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="695.1889" x2="695.1889" y1="-445.3143" style="fill:none; clip-path:url(#clipPath2);" y2="-615.8886"
+      /><line x1="695.1889" x2="695.1889" y1="-627.8886" style="fill:none; clip-path:url(#clipPath2);" y2="-836.4969"
+      /><line x1="695.1889" x2="881.6441" y1="-836.4969" style="fill:none; clip-path:url(#clipPath2);" y2="-836.4969"
+      /><line x1="881.6441" x2="881.6441" y1="-836.4969" style="fill:none; clip-path:url(#clipPath2);" y2="-880.1025"
+      /><line x1="695.1889" x2="689.1889" y1="-445.3143" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-455.7066"
+      /><line x1="695.1889" x2="701.1889" y1="-445.3143" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-455.7066"
+      /><path d="M619.1887 -216.5434 A6 6 0 0 0 607.1887 -216.5434" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><path d="M532.9734 -216.5434 A6 6 0 0 0 520.9734 -216.5434" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><path d="M487.3933 -216.5434 A6 6 0 0 0 475.3933 -216.5434" style="fill:none; stroke-dasharray:none; clip-path:url(#clipPath2); stroke-linecap:square;"
+      /><line x1="470.4184" x2="475.3933" y1="-216.5434" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-216.5434"
+      /><line x1="487.3933" x2="520.9734" y1="-216.5434" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-216.5434"
+      /><line x1="532.9734" x2="607.1887" y1="-216.5434" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-216.5434"
+      /><line x1="619.1887" x2="714.1519" y1="-216.5434" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-216.5434"
+      /><line x1="714.1519" x2="714.1519" y1="-216.5434" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-401.9702"
+      /><line x1="714.1519" x2="720.1519" y1="-401.9702" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-391.5779"
+      /><line x1="714.1519" x2="708.1519" y1="-401.9702" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-391.5779"
+      /><line x1="470.0596" x2="470.0596" y1="-539.0404" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-423.6423"
+      /><line x1="470.0596" x2="645.3426" y1="-423.6423" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-423.6423"
+      /><line x1="645.3426" x2="634.9503" y1="-423.6423" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-417.6423"
+      /><line x1="645.3426" x2="634.9503" y1="-423.6423" style="stroke-linecap:square; clip-path:url(#clipPath2); fill:none; stroke-dasharray:none;" y2="-429.6423"
+    /></g
+  ></g
+></svg
+>
diff --git a/diagramas/angular.png b/diagramas/angular.png
new file mode 100644
index 0000000000000000000000000000000000000000..a8e15ea1722e0d0ab9e37af3d6b848bc6cbf2f88
Binary files /dev/null and b/diagramas/angular.png differ
diff --git a/diagramas/despliegue.png b/diagramas/despliegue.png
new file mode 100644
index 0000000000000000000000000000000000000000..18e50c0b9fde7d6a1751795d51f80c62339ae985
Binary files /dev/null and b/diagramas/despliegue.png differ
diff --git a/diagramas/despliegue.png.bak b/diagramas/despliegue.png.bak
new file mode 100644
index 0000000000000000000000000000000000000000..e727215d14c4afa85130be62c1328fc42d73b7cf
Binary files /dev/null and b/diagramas/despliegue.png.bak differ
diff --git a/diagramas/despliegue.svg b/diagramas/despliegue.svg
new file mode 100644
index 0000000000000000000000000000000000000000..bb9f34c6572ce07d0355930bba926c8e42f4863d
--- /dev/null
+++ b/diagramas/despliegue.svg
@@ -0,0 +1,808 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
+          'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
+<svg xmlns:xlink="http://www.w3.org/1999/xlink" style="fill-opacity:1; color-rendering:auto; color-interpolation:auto; text-rendering:auto; stroke:black; stroke-linecap:square; stroke-miterlimit:10; shape-rendering:auto; stroke-opacity:1; fill:black; stroke-dasharray:none; font-weight:normal; stroke-width:1; font-family:'Dialog'; font-style:normal; stroke-linejoin:miter; font-size:12px; stroke-dashoffset:0; image-rendering:auto;" width="2150" height="1118" xmlns="http://www.w3.org/2000/svg"
+><!--Generated by the Batik Graphics2D SVG Generator--><defs id="genericDefs"
+  /><g
+  ><defs id="defs1"
+    ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath1"
+      ><path d="M0 0 L2150 0 L2150 1118 L0 1118 L0 0 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath2"
+      ><path d="M-1846.7349 -462.2045 L-234.2349 -462.2045 L-234.2349 376.2955 L-1846.7349 376.2955 L-1846.7349 -462.2045 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath3"
+      ><path d="M-774.5935 -28 L837.9065 -28 L837.9065 810.5 L-774.5935 810.5 L-774.5935 -28 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath4"
+      ><path d="M-791.9528 -30.5486 L820.5472 -30.5486 L820.5472 807.9514 L-791.9528 807.9514 L-791.9528 -30.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath5"
+      ><path d="M-45 -260.759 L1567.5 -260.759 L1567.5 577.741 L-45 577.741 L-45 -260.759 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath6"
+      ><path d="M-101.2349 -263.5486 L1511.2651 -263.5486 L1511.2651 574.9514 L-101.2349 574.9514 L-101.2349 -263.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath7"
+      ><path d="M-617.6631 -618.5198 L994.8369 -618.5198 L994.8369 219.9802 L-617.6631 219.9802 L-617.6631 -618.5198 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath8"
+      ><path d="M-843.8906 -72.4334 L768.6094 -72.4334 L768.6094 766.0667 L-843.8906 766.0667 L-843.8906 -72.4334 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath9"
+      ><path d="M-903.7349 -75.5486 L708.7651 -75.5486 L708.7651 762.9514 L-903.7349 762.9514 L-903.7349 -75.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath10"
+      ><path d="M-669.9203 -421.7837 L942.5797 -421.7837 L942.5797 416.7163 L-669.9203 416.7163 L-669.9203 -421.7837 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath11"
+      ><path d="M-681.1845 -424.5486 L931.3155 -424.5486 L931.3155 413.9514 L-681.1845 413.9514 L-681.1845 -424.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath12"
+      ><path d="M-652.1002 -483.1348 L960.3998 -483.1348 L960.3998 355.3652 L-652.1002 355.3652 L-652.1002 -483.1348 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath13"
+      ><path d="M-710.7349 -484.5486 L901.7651 -484.5486 L901.7651 353.9514 L-710.7349 353.9514 L-710.7349 -484.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath14"
+      ><path d="M-691.8427 -532.9133 L920.6573 -532.9133 L920.6573 305.5867 L-691.8427 305.5867 L-691.8427 -532.9133 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath15"
+      ><path d="M-702.9286 -535.2574 L909.5714 -535.2574 L909.5714 303.2426 L-702.9286 303.2426 L-702.9286 -535.2574 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath16"
+      ><path d="M-1051.1547 -116.8231 L561.3454 -116.8231 L561.3454 721.6769 L-1051.1547 721.6769 L-1051.1547 -116.8231 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath17"
+      ><path d="M-1061.7349 -119.5486 L550.7651 -119.5486 L550.7651 718.9514 L-1061.7349 718.9514 L-1061.7349 -119.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath18"
+      ><path d="M-1033.3345 -176.4076 L579.1655 -176.4076 L579.1655 662.0923 L-1033.3345 662.0923 L-1033.3345 -176.4076 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath19"
+      ><path d="M-1091.7349 -179.5486 L520.7651 -179.5486 L520.7651 658.9514 L-1091.7349 658.9514 L-1091.7349 -179.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath20"
+      ><path d="M-1073.077 -232.1191 L539.423 -232.1191 L539.423 606.3809 L-1073.077 606.3809 L-1073.077 -232.1191 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath21"
+      ><path d="M-1084.077 -234.4632 L528.423 -234.4632 L528.423 604.0368 L-1084.077 604.0368 L-1084.077 -234.4632 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath22"
+      ><path d="M-924.32 -419.935 L688.18 -419.935 L688.18 418.565 L-924.32 418.565 L-924.32 -419.935 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath23"
+      ><path d="M-1051.1547 -357.8201 L561.3454 -357.8201 L561.3454 480.6799 L-1051.1547 480.6799 L-1051.1547 -357.8201 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath24"
+      ><path d="M-1060.2349 -360.5486 L552.2651 -360.5486 L552.2651 477.9514 L-1060.2349 477.9514 L-1060.2349 -360.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath25"
+      ><path d="M-1033.3345 -413.6161 L579.1655 -413.6161 L579.1655 424.8839 L-1033.3345 424.8839 L-1033.3345 -413.6161 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath26"
+      ><path d="M-1091.7349 -416.5486 L520.7651 -416.5486 L520.7651 421.9514 L-1091.7349 421.9514 L-1091.7349 -416.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath27"
+      ><path d="M-1073.077 -473.1161 L539.423 -473.1161 L539.423 365.3839 L-1073.077 365.3839 L-1073.077 -473.1161 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath28"
+      ><path d="M-1082.4049 -475.4602 L530.0952 -475.4602 L530.0952 363.0398 L-1082.4049 363.0398 L-1082.4049 -475.4602 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath29"
+      ><path d="M-924.32 -523.9212 L688.18 -523.9212 L688.18 314.5788 L-924.32 314.5788 L-924.32 -523.9212 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath30"
+      ><path d="M-1051.1547 -604.8718 L561.3454 -604.8718 L561.3454 233.6282 L-1051.1547 233.6282 L-1051.1547 -604.8718 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath31"
+      ><path d="M-1052.2904 -606.5486 L560.2095 -606.5486 L560.2095 231.9514 L-1052.2904 231.9514 L-1052.2904 -606.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath32"
+      ><path d="M-1033.3345 -667.5196 L579.1655 -667.5196 L579.1655 170.9804 L-1033.3345 170.9804 L-1033.3345 -667.5196 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath33"
+      ><path d="M-1091.7349 -669.5486 L520.7651 -669.5486 L520.7651 168.9514 L-1091.7349 168.9514 L-1091.7349 -669.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath34"
+      ><path d="M-1073.077 -709.5944 L539.423 -709.5944 L539.423 128.9056 L-1073.077 128.9056 L-1073.077 -709.5944 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath35"
+      ><path d="M-1074.2688 -711.9385 L538.2312 -711.9385 L538.2312 126.5615 L-1074.2688 126.5615 L-1074.2688 -711.9385 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath36"
+      ><path d="M-924.32 -596.9208 L688.18 -596.9208 L688.18 241.5792 L-924.32 241.5792 L-924.32 -596.9208 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath37"
+      ><path d="M-341.0094 -464.3969 L1271.4906 -464.3969 L1271.4906 374.1031 L-341.0094 374.1031 L-341.0094 -464.3969 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath38"
+      ><path d="M-379.2349 -467.5486 L1233.2651 -467.5486 L1233.2651 370.9514 L-379.2349 370.9514 L-379.2349 -467.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath39"
+      ><path d="M-1396.895 -130.9684 L215.605 -130.9684 L215.605 707.5316 L-1396.895 707.5316 L-1396.895 -130.9684 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath40"
+      ><path d="M-1417.2349 -133.5486 L195.2651 -133.5486 L195.2651 704.9514 L-1417.2349 704.9514 L-1417.2349 -133.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath41"
+      ><path d="M-355.3015 -524.5183 L1257.1985 -524.5183 L1257.1985 313.9817 L-355.3015 313.9817 L-355.3015 -524.5183 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath42"
+      ><path d="M-419.4708 -526.5486 L1193.0292 -526.5486 L1193.0292 311.9514 L-419.4708 311.9514 L-419.4708 -526.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath43"
+      ><path d="M-1379.0748 -177.1405 L233.4251 -177.1405 L233.4251 661.3595 L-1379.0748 661.3595 L-1379.0748 -177.1405 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath44"
+      ><path d="M-1439.1088 -179.5486 L173.3913 -179.5486 L173.3913 658.9514 L-1439.1088 658.9514 L-1439.1088 -179.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath45"
+      ><path d="M-1273.4037 -211.0601 L339.0964 -211.0601 L339.0964 627.4399 L-1273.4037 627.4399 L-1273.4037 -211.0601 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath46"
+      ><path d="M-382.7477 -553.0963 L1229.7523 -553.0963 L1229.7523 285.4037 L-382.7477 285.4037 L-382.7477 -553.0963 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath47"
+      ><path d="M-1396.895 -357.8201 L215.605 -357.8201 L215.605 480.6799 L-1396.895 480.6799 L-1396.895 -357.8201 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath48"
+      ><path d="M-1416.0986 -360.5486 L196.4014 -360.5486 L196.4014 477.9514 L-1416.0986 477.9514 L-1416.0986 -360.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath49"
+      ><path d="M-1412.8174 -217.9737 L199.6826 -217.9737 L199.6826 620.5263 L-1412.8174 620.5263 L-1412.8174 -217.9737 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath50"
+      ><path d="M-1427.8174 -220.3178 L184.6826 -220.3178 L184.6826 618.1822 L-1427.8174 618.1822 L-1427.8174 -220.3178 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath51"
+      ><path d="M-1379.0748 -417.4047 L233.4251 -417.4047 L233.4251 421.0953 L-1379.0748 421.0953 L-1379.0748 -417.4047 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath52"
+      ><path d="M-1439.1088 -420.5486 L173.3913 -420.5486 L173.3913 417.9514 L-1439.1088 417.9514 L-1439.1088 -420.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath53"
+      ><path d="M-1273.7172 -451.6401 L338.7828 -451.6401 L338.7828 386.8599 L-1273.7172 386.8599 L-1273.7172 -451.6401 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath54"
+      ><path d="M-1396.895 -599.5851 L215.605 -599.5851 L215.605 238.9149 L-1396.895 238.9149 L-1396.895 -599.5851 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath55"
+      ><path d="M-1407.9625 -601.5486 L204.5375 -601.5486 L204.5375 236.9514 L-1407.9625 236.9514 L-1407.9625 -601.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath56"
+      ><path d="M-1412.8174 -473.1161 L199.6826 -473.1161 L199.6826 365.3839 L-1412.8174 365.3839 L-1412.8174 -473.1161 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath57"
+      ><path d="M-1426.3174 -475.4602 L186.1826 -475.4602 L186.1826 363.0398 L-1426.3174 363.0398 L-1426.3174 -475.4602 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath58"
+      ><path d="M-1379.0748 -659.1697 L233.4251 -659.1697 L233.4251 179.3303 L-1379.0748 179.3303 L-1379.0748 -659.1697 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath59"
+      ><path d="M-1439.1088 -660.5486 L173.3913 -660.5486 L173.3913 177.9514 L-1439.1088 177.9514 L-1439.1088 -660.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath60"
+      ><path d="M-1273.7172 -693.4052 L338.7828 -693.4052 L338.7828 145.0948 L-1273.7172 145.0948 L-1273.7172 -693.4052 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath61"
+      ><path d="M-670.4222 -239.966 L942.0778 -239.966 L942.0778 598.5341 L-670.4222 598.5341 L-670.4222 -239.966 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath62"
+      ><path d="M-696.6766 -242.5486 L915.8234 -242.5486 L915.8234 595.9514 L-696.6766 595.9514 L-696.6766 -242.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath63"
+      ><path d="M-1412.8174 -714.8811 L199.6826 -714.8811 L199.6826 123.6189 L-1412.8174 123.6189 L-1412.8174 -714.8811 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath64"
+      ><path d="M-1418.3531 -717.2252 L194.1468 -717.2252 L194.1468 121.2748 L-1418.3531 121.2748 L-1418.3531 -717.2252 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath65"
+      ><path d="M-670.4222 -291.4089 L942.0778 -291.4089 L942.0778 547.0911 L-670.4222 547.0911 L-670.4222 -291.4089 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath66"
+      ><path d="M-716.9928 -294.5486 L895.5072 -294.5486 L895.5072 543.9514 L-716.9928 543.9514 L-716.9928 -294.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath67"
+      ><path d="M-878.0704 -245.0182 L734.4296 -245.0182 L734.4296 593.4818 L-878.0704 593.4818 L-878.0704 -245.0182 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath68"
+      ><path d="M-878.0704 -400.2502 L734.4296 -400.2502 L734.4296 438.2498 L-878.0704 438.2498 L-878.0704 -400.2502 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath69"
+      ><path d="M-878.0704 -492.5911 L734.4296 -492.5911 L734.4296 345.9089 L-878.0704 345.9089 L-878.0704 -492.5911 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath70"
+      ><path d="M-572.9225 -450.1497 L1039.5775 -450.1497 L1039.5775 388.3503 L-572.9225 388.3503 L-572.9225 -450.1497 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath71"
+      ><path d="M-373.1216 -205.3049 L1239.3784 -205.3049 L1239.3784 633.1951 L-373.1216 633.1951 L-373.1216 -205.3049 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath72"
+      ><path d="M-377.3625 -208.5486 L1235.1376 -208.5486 L1235.1376 629.9514 L-377.3625 629.9514 L-377.3625 -208.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath73"
+      ><path d="M-355.3015 -254.3161 L1257.1985 -254.3161 L1257.1985 584.184 L-355.3015 584.184 L-355.3015 -254.3161 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath74"
+      ><path d="M-419.4708 -257.5486 L1193.0292 -257.5486 L1193.0292 580.9514 L-419.4708 580.9514 L-419.4708 -257.5486 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath75"
+      ><path d="M-260.1632 -289.1049 L1352.3368 -289.1049 L1352.3368 549.3951 L-260.1632 549.3951 L-260.1632 -289.1049 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath76"
+      ><path d="M-395.4978 -289.5305 L1217.0022 -289.5305 L1217.0022 548.9694 L-395.4978 548.9694 L-395.4978 -289.5305 Z"
+      /></clipPath
+      ><clipPath clipPathUnits="userSpaceOnUse" id="clipPath77"
+      ><path d="M-572.9225 -316.6114 L1039.5775 -316.6114 L1039.5775 521.8885 L-572.9225 521.8885 L-572.9225 -316.6114 Z"
+      /></clipPath
+    ></defs
+    ><g style="fill:white; stroke:white;"
+    ><rect x="0" y="0" width="2150" style="clip-path:url(#clipPath1); stroke:none;" height="1118"
+    /></g
+    ><g style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; stroke:rgb(255,255,204);" transform="scale(1.3333,1.3333) translate(1846.7349,462.2045)"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1836 -452 -1832 -456 -239 -456 -239 363 -243 367 -1836 367"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1836 -452 -1832 -456 -239 -456 -239 363 -243 367 -1836 367"
+      /><line x1="-243" x2="-240" y1="-452" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-455"
+      /><line x1="-1836" x2="-243" y1="-452" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-452"
+      /><line x1="-243" x2="-243" y1="-452" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="367"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1072.1414,-434.2045)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM24.6081 -6.5469 Q25.4363 -6.5469 26.03 -6.1875 Q26.6238 -5.8281 26.9363 -5.1719 Q27.2644 -4.5312 27.2644 -3.6406 L27.2644 -3.0156 L22.8581 -3.0156 Q22.8894 -1.9219 23.4206 -1.3438 Q23.9519 -0.7812 24.905 -0.7812 Q25.53 -0.7812 25.9988 -0.8906 Q26.4675 -1.0156 26.9831 -1.2188 L26.9831 -0.2969 Q26.4831 -0.0781 25.9988 0.0156 Q25.53 0.125 24.8581 0.125 Q23.9519 0.125 23.2488 -0.25 Q22.5456 -0.625 22.155 -1.3594 Q21.7644 -2.0938 21.7644 -3.1719 Q21.7644 -4.2188 22.1238 -4.9688 Q22.4831 -5.7344 23.1238 -6.1406 Q23.7644 -6.5469 24.6081 -6.5469 ZM24.5925 -5.6875 Q23.8425 -5.6875 23.405 -5.2031 Q22.9675 -4.7188 22.8894 -3.8594 L26.155 -3.8594 Q26.155 -4.6719 25.78 -5.1719 Q25.405 -5.6875 24.5925 -5.6875 ZM30.3137 0 L27.8762 -6.4375 L29.0012 -6.4375 L30.3762 -2.6406 Q30.4699 -2.375 30.5793 -2.0469 Q30.6887 -1.7344 30.7668 -1.4375 Q30.8449 -1.1406 30.8918 -0.9375 L30.9387 -0.9375 Q30.9856 -1.1406 31.0637 -1.4375 Q31.1574 -1.7344 31.2668 -2.0625 Q31.3918 -2.3906 31.4699 -2.6406 L32.8449 -6.4375 L33.9699 -6.4375 L31.5168 0 L30.3137 0 ZM35.5347 -8.8438 Q35.7691 -8.8438 35.9566 -8.6719 Q36.1441 -8.5156 36.1441 -8.1719 Q36.1441 -7.8438 35.9566 -7.6719 Q35.7691 -7.5 35.5347 -7.5 Q35.2691 -7.5 35.0816 -7.6719 Q34.9097 -7.8438 34.9097 -8.1719 Q34.9097 -8.5156 35.0816 -8.6719 Q35.2691 -8.8438 35.5347 -8.8438 ZM36.0504 -6.4375 L36.0504 0 L34.9879 0 L34.9879 -6.4375 L36.0504 -6.4375 ZM40.662 0.125 Q39.8183 0.125 39.1464 -0.2188 Q38.4901 -0.5781 38.0995 -1.3125 Q37.7245 -2.0469 37.7245 -3.1875 Q37.7245 -4.375 38.1151 -5.1094 Q38.5214 -5.8594 39.1933 -6.2031 Q39.8808 -6.5469 40.7401 -6.5469 Q41.2245 -6.5469 41.6776 -6.4375 Q42.1464 -6.3438 42.4276 -6.2031 L42.1151 -5.3281 Q41.8183 -5.4375 41.4276 -5.5312 Q41.0526 -5.625 40.7089 -5.625 Q38.8183 -5.625 38.8183 -3.1875 Q38.8183 -2.0312 39.2714 -1.4062 Q39.7401 -0.7969 40.662 -0.7969 Q41.1776 -0.7969 41.5839 -0.9062 Q41.9901 -1.0156 42.3183 -1.1562 L42.3183 -0.2344 Q42.0058 -0.0625 41.6151 0.0312 Q41.2245 0.125 40.662 0.125 ZM46.3283 -6.5469 Q47.1564 -6.5469 47.7502 -6.1875 Q48.3439 -5.8281 48.6564 -5.1719 Q48.9845 -4.5312 48.9845 -3.6406 L48.9845 -3.0156 L44.5783 -3.0156 Q44.6095 -1.9219 45.1408 -1.3438 Q45.672 -0.7812 46.6252 -0.7812 Q47.2502 -0.7812 47.7189 -0.8906 Q48.1877 -1.0156 48.7033 -1.2188 L48.7033 -0.2969 Q48.2033 -0.0781 47.7189 0.0156 Q47.2502 0.125 46.5783 0.125 Q45.672 0.125 44.9689 -0.25 Q44.2658 -0.625 43.8752 -1.3594 Q43.4845 -2.0938 43.4845 -3.1719 Q43.4845 -4.2188 43.8439 -4.9688 Q44.2033 -5.7344 44.8439 -6.1406 Q45.4845 -6.5469 46.3283 -6.5469 ZM46.3127 -5.6875 Q45.5627 -5.6875 45.1252 -5.2031 Q44.6877 -4.7188 44.6095 -3.8594 L47.8752 -3.8594 Q47.8752 -4.6719 47.5002 -5.1719 Q47.1252 -5.6875 46.3127 -5.6875 ZM50.1901 -2.3281 L54.7213 -4.2188 L50.1901 -6.3594 L50.1901 -7.2969 L55.8463 -4.4688 L55.8463 -3.875 L50.1901 -1.3906 L50.1901 -2.3281 ZM57.0541 -2.3281 L61.5854 -4.2188 L57.0541 -6.3594 L57.0541 -7.2969 L62.7104 -4.4688 L62.7104 -3.875 L57.0541 -1.3906 L57.0541 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath3);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1054.7821,-431.6559)"
+    ><path d="M1.1562 12.8281 L1.1562 4.2656 L2.25 4.2656 L2.25 11.875 L5.9844 11.875 L5.9844 12.8281 L1.1562 12.8281 ZM7.8505 3.9843 Q8.0849 3.9843 8.2724 4.1562 Q8.4599 4.3125 8.4599 4.6562 Q8.4599 4.9843 8.2724 5.1562 Q8.0849 5.3281 7.8505 5.3281 Q7.5849 5.3281 7.3974 5.1562 Q7.2255 4.9843 7.2255 4.6562 Q7.2255 4.3125 7.3974 4.1562 Q7.5849 3.9843 7.8505 3.9843 ZM8.3662 6.3906 L8.3662 12.8281 L7.3037 12.8281 L7.3037 6.3906 L8.3662 6.3906 ZM13.4934 6.2812 Q14.6497 6.2812 15.2278 6.8437 Q15.8216 7.3906 15.8216 8.6406 L15.8216 12.8281 L14.7903 12.8281 L14.7903 8.7187 Q14.7903 7.1718 13.3372 7.1718 Q12.2747 7.1718 11.8684 7.7656 Q11.4622 8.3593 11.4622 9.4843 L11.4622 12.8281 L10.3997 12.8281 L10.3997 6.3906 L11.2591 6.3906 L11.4153 7.2656 L11.4778 7.2656 Q11.7903 6.7656 12.3372 6.5312 Q12.8841 6.2812 13.4934 6.2812 ZM23.1907 6.3906 L23.1907 12.8281 L22.3314 12.8281 L22.1751 11.9687 L22.1282 11.9687 Q21.8157 12.4843 21.2532 12.7187 Q20.7064 12.9531 20.0814 12.9531 Q18.9251 12.9531 18.3314 12.3906 Q17.7532 11.8281 17.7532 10.6093 L17.7532 6.3906 L18.8157 6.3906 L18.8157 10.5312 Q18.8157 12.0781 20.2376 12.0781 Q21.3157 12.0781 21.722 11.4843 Q22.1439 10.875 22.1439 9.75 L22.1439 6.3906 L23.1907 6.3906 ZM26.763 9.5468 L24.5443 6.3906 L25.7474 6.3906 L27.4037 8.8125 L29.0443 6.3906 L30.2318 6.3906 L28.013 9.5468 L30.3412 12.8281 L29.1537 12.8281 L27.4037 10.2656 L25.6224 12.8281 L24.4349 12.8281 L26.763 9.5468 Z" style="stroke:none; clip-path:url(#clipPath4);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1821 -219 -1817 -223 -1619 -223 -1619 -160 -1623 -156 -1821 -156"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1821 -219 -1817 -223 -1619 -223 -1619 -160 -1623 -156 -1821 -156"
+      /><line x1="-1623" x2="-1620" y1="-219" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-222"
+      /><line x1="-1821" x2="-1623" y1="-219" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-219"
+      /><line x1="-1623" x2="-1623" y1="-219" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-156"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1801.7349,-201.4455)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath5);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1745.5,-198.6559)"
+    ><path d="M3.6094 4.2656 Q5.2188 4.2656 6.0312 4.7343 Q6.8594 5.2031 6.8594 6.3906 Q6.8594 7.1406 6.4375 7.6406 Q6.0312 8.1406 5.2344 8.2812 L5.2344 8.3437 Q5.7656 8.4218 6.2031 8.6562 Q6.6406 8.875 6.8906 9.2968 Q7.1562 9.7187 7.1562 10.3906 Q7.1562 11.5625 6.3594 12.2031 Q5.5625 12.8281 4.1719 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.6094 4.2656 ZM3.8281 7.9062 Q4.9375 7.9062 5.3438 7.5625 Q5.75 7.2031 5.75 6.5 Q5.75 5.7968 5.25 5.5 Q4.75 5.1875 3.6562 5.1875 L2.25 5.1875 L2.25 7.9062 L3.8281 7.9062 ZM2.25 8.8125 L2.25 11.9218 L3.9688 11.9218 Q5.1094 11.9218 5.5469 11.4843 Q6 11.0312 6 10.3125 Q6 9.6406 5.5312 9.2343 Q5.0781 8.8125 3.8906 8.8125 L2.25 8.8125 ZM11.8157 6.2812 Q12.0032 6.2812 12.2063 6.2968 Q12.425 6.3125 12.5813 6.3437 L12.4407 7.3125 Q12.2844 7.2812 12.0969 7.2656 Q11.9094 7.2343 11.7532 7.2343 Q11.2532 7.2343 10.8157 7.5156 Q10.3938 7.7812 10.1282 8.2656 Q9.8782 8.75 9.8782 9.3906 L9.8782 12.8281 L8.8157 12.8281 L8.8157 6.3906 L9.6907 6.3906 L9.8 7.5781 L9.8469 7.5781 Q10.1594 7.0468 10.6438 6.6718 Q11.1438 6.2812 11.8157 6.2812 ZM19.3655 9.5937 Q19.3655 11.2031 18.553 12.0781 Q17.7405 12.9531 16.3655 12.9531 Q15.5217 12.9531 14.8498 12.5625 Q14.178 12.1718 13.7873 11.4218 Q13.4123 10.6718 13.4123 9.5937 Q13.4123 8 14.2092 7.1406 Q15.0217 6.2812 16.3967 6.2812 Q17.2873 6.2812 17.9436 6.6718 Q18.6155 7.0625 18.9905 7.7968 Q19.3655 8.5312 19.3655 9.5937 ZM14.5061 9.5937 Q14.5061 10.7343 14.9592 11.4062 Q15.4123 12.0781 16.3967 12.0781 Q17.3655 12.0781 17.8186 11.4062 Q18.2717 10.7343 18.2717 9.5937 Q18.2717 8.4531 17.8186 7.8125 Q17.3655 7.1718 16.3811 7.1718 Q15.3967 7.1718 14.9436 7.8125 Q14.5061 8.4531 14.5061 9.5937 ZM25.188 9.1875 Q25.0318 8.7031 24.9068 8.2343 Q24.7974 7.75 24.7505 7.4843 L24.7036 7.4843 Q24.6411 7.75 24.5318 8.2343 Q24.438 8.7031 24.2661 9.2031 L23.1099 12.8125 L21.9068 12.8125 L20.1411 6.3906 L21.2349 6.3906 L22.1255 9.8125 Q22.2661 10.3281 22.3755 10.8593 Q22.5005 11.3906 22.5474 11.7343 L22.5943 11.7343 Q22.6411 11.5312 22.7036 11.2343 Q22.7818 10.9375 22.8599 10.6093 Q22.938 10.2656 23.0318 10.0156 L24.1724 6.3906 L25.313 6.3906 L26.4224 10.0156 Q26.563 10.4218 26.688 10.9062 Q26.813 11.375 26.8599 11.7187 L26.9068 11.7187 Q26.938 11.4218 27.063 10.9062 Q27.188 10.375 27.3286 9.8125 L28.2349 6.3906 L29.313 6.3906 L27.5318 12.8125 L26.2974 12.8125 L25.188 9.1875 ZM34.6513 11.0468 Q34.6513 11.9843 33.9482 12.4687 Q33.2607 12.9531 32.0888 12.9531 Q31.417 12.9531 30.9326 12.8437 Q30.4482 12.7343 30.0732 12.5468 L30.0732 11.5781 Q30.4638 11.7656 30.9951 11.9375 Q31.542 12.0937 32.1045 12.0937 Q32.917 12.0937 33.2763 11.8437 Q33.6357 11.5781 33.6357 11.1406 Q33.6357 10.9062 33.4951 10.7187 Q33.3701 10.5312 33.0263 10.3437 Q32.6826 10.1406 32.0576 9.9062 Q31.4326 9.6562 30.9795 9.4218 Q30.542 9.1875 30.292 8.8593 Q30.0576 8.5156 30.0576 7.9843 Q30.0576 7.1718 30.7138 6.7343 Q31.3857 6.2812 32.4795 6.2812 Q33.0576 6.2812 33.5576 6.3906 Q34.0732 6.5 34.5263 6.7031 L34.167 7.5468 Q33.7607 7.375 33.3076 7.2656 Q32.8701 7.1406 32.4013 7.1406 Q31.7451 7.1406 31.4013 7.3593 Q31.0732 7.5625 31.0732 7.9218 Q31.0732 8.1875 31.2295 8.375 Q31.3857 8.5625 31.7451 8.7343 Q32.1045 8.9062 32.7295 9.1406 Q33.3388 9.375 33.7607 9.625 Q34.1982 9.8593 34.417 10.2031 Q34.6513 10.5312 34.6513 11.0468 ZM38.6963 6.2812 Q39.5244 6.2812 40.1181 6.6406 Q40.7119 7 41.0244 7.6562 Q41.3525 8.2968 41.3525 9.1875 L41.3525 9.8125 L36.9463 9.8125 Q36.9775 10.9062 37.5088 11.4843 Q38.04 12.0468 38.9931 12.0468 Q39.6181 12.0468 40.0869 11.9375 Q40.5556 11.8125 41.0713 11.6093 L41.0713 12.5312 Q40.5713 12.75 40.0869 12.8437 Q39.6181 12.9531 38.9463 12.9531 Q38.04 12.9531 37.3369 12.5781 Q36.6338 12.2031 36.2431 11.4687 Q35.8525 10.7343 35.8525 9.6562 Q35.8525 8.6093 36.2119 7.8593 Q36.5713 7.0937 37.2119 6.6875 Q37.8525 6.2812 38.6963 6.2812 ZM38.6806 7.1406 Q37.9306 7.1406 37.4931 7.625 Q37.0556 8.1093 36.9775 8.9687 L40.2431 8.9687 Q40.2431 8.1562 39.8681 7.6562 Q39.4931 7.1406 38.6806 7.1406 ZM45.9799 6.2812 Q46.1674 6.2812 46.3706 6.2968 Q46.5893 6.3125 46.7456 6.3437 L46.6049 7.3125 Q46.4487 7.2812 46.2612 7.2656 Q46.0737 7.2343 45.9174 7.2343 Q45.4174 7.2343 44.9799 7.5156 Q44.5581 7.7812 44.2924 8.2656 Q44.0424 8.75 44.0424 9.3906 L44.0424 12.8281 L42.9799 12.8281 L42.9799 6.3906 L43.8549 6.3906 L43.9643 7.5781 L44.0112 7.5781 Q44.3237 7.0468 44.8081 6.6718 Q45.3081 6.2812 45.9799 6.2812 Z" style="stroke:none; clip-path:url(#clipPath6);"
+    /></g
+    ><g style="fill:rgb(255,204,204); text-rendering:optimizeLegibility; font-family:sans-serif; stroke:rgb(255,204,204);" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1231 154 -1231 326 -1001 326 -1001 164 -1011 154"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1231 154 -1231 326 -1001 326 -1001 164 -1011 154"
+      /><line x1="-1001.3326" x2="-1011.3326" y1="164.3153" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="164.3153"
+      /><line x1="-1011.3326" x2="-1011.3326" y1="164.3153" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="154.3153"
+      /><path d="M1.1562 12.8281 L1.1562 4.2656 L2.25 4.2656 L2.25 11.875 L5.9844 11.875 L5.9844 12.8281 L1.1562 12.8281 ZM12.8974 9.5937 Q12.8974 11.2031 12.0849 12.0781 Q11.2724 12.9531 9.8974 12.9531 Q9.0537 12.9531 8.3818 12.5625 Q7.7099 12.1718 7.3193 11.4218 Q6.9443 10.6718 6.9443 9.5937 Q6.9443 8 7.7412 7.1406 Q8.5537 6.2812 9.9287 6.2812 Q10.8193 6.2812 11.4755 6.6718 Q12.1474 7.0625 12.5224 7.7968 Q12.8974 8.5312 12.8974 9.5937 ZM8.038 9.5937 Q8.038 10.7343 8.4912 11.4062 Q8.9443 12.0781 9.9287 12.0781 Q10.8974 12.0781 11.3505 11.4062 Q11.8037 10.7343 11.8037 9.5937 Q11.8037 8.4531 11.3505 7.8125 Q10.8974 7.1718 9.913 7.1718 Q8.9287 7.1718 8.4755 7.8125 Q8.038 8.4531 8.038 9.5937 ZM18.7512 11.0468 Q18.7512 11.9843 18.0481 12.4687 Q17.3606 12.9531 16.1887 12.9531 Q15.5168 12.9531 15.0325 12.8437 Q14.5481 12.7343 14.1731 12.5468 L14.1731 11.5781 Q14.5637 11.7656 15.095 11.9375 Q15.6418 12.0937 16.2043 12.0937 Q17.0168 12.0937 17.3762 11.8437 Q17.7356 11.5781 17.7356 11.1406 Q17.7356 10.9062 17.595 10.7187 Q17.47 10.5312 17.1262 10.3437 Q16.7825 10.1406 16.1575 9.9062 Q15.5325 9.6562 15.0793 9.4218 Q14.6418 9.1875 14.3918 8.8593 Q14.1575 8.5156 14.1575 7.9843 Q14.1575 7.1718 14.8137 6.7343 Q15.4856 6.2812 16.5793 6.2812 Q17.1575 6.2812 17.6575 6.3906 Q18.1731 6.5 18.6262 6.7031 L18.2668 7.5468 Q17.8606 7.375 17.4075 7.2656 Q16.97 7.1406 16.5012 7.1406 Q15.845 7.1406 15.5012 7.3593 Q15.1731 7.5625 15.1731 7.9218 Q15.1731 8.1875 15.3293 8.375 Q15.4856 8.5625 15.845 8.7343 Q16.2043 8.9062 16.8293 9.1406 Q17.4387 9.375 17.8606 9.625 Q18.2981 9.8593 18.5168 10.2031 Q18.7512 10.5312 18.7512 11.0468 ZM30.4943 6.2812 Q31.588 6.2812 32.1193 6.8437 Q32.6662 7.3906 32.6662 8.6406 L32.6662 12.8281 L31.6193 12.8281 L31.6193 8.6875 Q31.6193 7.1718 30.3068 7.1718 Q29.3693 7.1718 28.963 7.7187 Q28.5724 8.25 28.5724 9.2812 L28.5724 12.8281 L27.5255 12.8281 L27.5255 8.6875 Q27.5255 7.1718 26.213 7.1718 Q25.2287 7.1718 24.8537 7.7656 Q24.4943 8.3593 24.4943 9.4843 L24.4943 12.8281 L23.4318 12.8281 L23.4318 6.3906 L24.2912 6.3906 L24.4474 7.2656 L24.5099 7.2656 Q24.8068 6.7656 25.3068 6.5312 Q25.8224 6.2812 26.4005 6.2812 Q27.9162 6.2812 28.3693 7.3593 L28.4318 7.3593 Q28.7599 6.7968 29.3068 6.5468 Q29.8693 6.2812 30.4943 6.2812 ZM35.1987 3.9843 Q35.4331 3.9843 35.6206 4.1562 Q35.8081 4.3125 35.8081 4.6562 Q35.8081 4.9843 35.6206 5.1562 Q35.4331 5.3281 35.1987 5.3281 Q34.9331 5.3281 34.7456 5.1562 Q34.5737 4.9843 34.5737 4.6562 Q34.5737 4.3125 34.7456 4.1562 Q34.9331 3.9843 35.1987 3.9843 ZM35.7144 6.3906 L35.7144 12.8281 L34.6519 12.8281 L34.6519 6.3906 L35.7144 6.3906 ZM40.326 12.9531 Q39.4823 12.9531 38.8104 12.6093 Q38.1541 12.25 37.7635 11.5156 Q37.3885 10.7812 37.3885 9.6406 Q37.3885 8.4531 37.7791 7.7187 Q38.1854 6.9687 38.8573 6.625 Q39.5448 6.2812 40.4041 6.2812 Q40.8885 6.2812 41.3416 6.3906 Q41.8104 6.4843 42.0916 6.625 L41.7791 7.5 Q41.4823 7.3906 41.0916 7.2968 Q40.7166 7.2031 40.3729 7.2031 Q38.4823 7.2031 38.4823 9.6406 Q38.4823 10.7968 38.9354 11.4218 Q39.4041 12.0312 40.326 12.0312 Q40.8416 12.0312 41.2479 11.9218 Q41.6541 11.8125 41.9823 11.6718 L41.9823 12.5937 Q41.6698 12.7656 41.2791 12.8593 Q40.8885 12.9531 40.326 12.9531 ZM46.5079 6.2812 Q46.6954 6.2812 46.8986 6.2968 Q47.1173 6.3125 47.2736 6.3437 L47.1329 7.3125 Q46.9767 7.2812 46.7892 7.2656 Q46.6017 7.2343 46.4454 7.2343 Q45.9454 7.2343 45.5079 7.5156 Q45.0861 7.7812 44.8204 8.2656 Q44.5704 8.75 44.5704 9.3906 L44.5704 12.8281 L43.5079 12.8281 L43.5079 6.3906 L44.3829 6.3906 L44.4923 7.5781 L44.5392 7.5781 Q44.8517 7.0468 45.3361 6.6718 Q45.8361 6.2812 46.5079 6.2812 ZM54.0577 9.5937 Q54.0577 11.2031 53.2452 12.0781 Q52.4327 12.9531 51.0577 12.9531 Q50.214 12.9531 49.5421 12.5625 Q48.8702 12.1718 48.4796 11.4218 Q48.1046 10.6718 48.1046 9.5937 Q48.1046 8 48.9015 7.1406 Q49.714 6.2812 51.089 6.2812 Q51.9796 6.2812 52.6358 6.6718 Q53.3077 7.0625 53.6827 7.7968 Q54.0577 8.5312 54.0577 9.5937 ZM49.1983 9.5937 Q49.1983 10.7343 49.6515 11.4062 Q50.1046 12.0781 51.089 12.0781 Q52.0577 12.0781 52.5108 11.4062 Q52.964 10.7343 52.964 9.5937 Q52.964 8.4531 52.5108 7.8125 Q52.0577 7.1718 51.0733 7.1718 Q50.089 7.1718 49.6358 7.8125 Q49.1983 8.4531 49.1983 9.5937 ZM59.9115 11.0468 Q59.9115 11.9843 59.2084 12.4687 Q58.5209 12.9531 57.349 12.9531 Q56.6772 12.9531 56.1928 12.8437 Q55.7084 12.7343 55.3334 12.5468 L55.3334 11.5781 Q55.724 11.7656 56.2553 11.9375 Q56.8022 12.0937 57.3647 12.0937 Q58.1772 12.0937 58.5365 11.8437 Q58.8959 11.5781 58.8959 11.1406 Q58.8959 10.9062 58.7553 10.7187 Q58.6303 10.5312 58.2865 10.3437 Q57.9428 10.1406 57.3178 9.9062 Q56.6928 9.6562 56.2397 9.4218 Q55.8022 9.1875 55.5522 8.8593 Q55.3178 8.5156 55.3178 7.9843 Q55.3178 7.1718 55.974 6.7343 Q56.6459 6.2812 57.7397 6.2812 Q58.3178 6.2812 58.8178 6.3906 Q59.3334 6.5 59.7865 6.7031 L59.4272 7.5468 Q59.0209 7.375 58.5678 7.2656 Q58.1303 7.1406 57.6615 7.1406 Q57.0053 7.1406 56.6615 7.3593 Q56.3334 7.5625 56.3334 7.9218 Q56.3334 8.1875 56.4897 8.375 Q56.6459 8.5625 57.0053 8.7343 Q57.3647 8.9062 57.9897 9.1406 Q58.599 9.375 59.0209 9.625 Q59.4584 9.8593 59.6772 10.2031 Q59.9115 10.5312 59.9115 11.0468 ZM63.9565 6.2812 Q64.7846 6.2812 65.3783 6.6406 Q65.9721 7 66.2846 7.6562 Q66.6127 8.2968 66.6127 9.1875 L66.6127 9.8125 L62.2065 9.8125 Q62.2377 10.9062 62.769 11.4843 Q63.3002 12.0468 64.2533 12.0468 Q64.8783 12.0468 65.3471 11.9375 Q65.8158 11.8125 66.3315 11.6093 L66.3315 12.5312 Q65.8315 12.75 65.3471 12.8437 Q64.8783 12.9531 64.2065 12.9531 Q63.3002 12.9531 62.5971 12.5781 Q61.894 12.2031 61.5033 11.4687 Q61.1127 10.7343 61.1127 9.6562 Q61.1127 8.6093 61.4721 7.8593 Q61.8315 7.0937 62.4721 6.6875 Q63.1127 6.2812 63.9565 6.2812 ZM63.9408 7.1406 Q63.1908 7.1406 62.7533 7.625 Q62.3158 8.1093 62.2377 8.9687 L65.5033 8.9687 Q65.5033 8.1562 65.1283 7.6562 Q64.7533 7.1406 63.9408 7.1406 ZM71.2401 6.2812 Q71.4276 6.2812 71.6308 6.2968 Q71.8495 6.3125 72.0058 6.3437 L71.8651 7.3125 Q71.7089 7.2812 71.5214 7.2656 Q71.3339 7.2343 71.1776 7.2343 Q70.6776 7.2343 70.2401 7.5156 Q69.8183 7.7812 69.5526 8.2656 Q69.3026 8.75 69.3026 9.3906 L69.3026 12.8281 L68.2401 12.8281 L68.2401 6.3906 L69.1151 6.3906 L69.2245 7.5781 L69.2714 7.5781 Q69.5839 7.0468 70.0683 6.6718 Q70.5683 6.2812 71.2401 6.2812 ZM74.618 12.8281 L72.1805 6.3906 L73.3055 6.3906 L74.6805 10.1875 Q74.7743 10.4531 74.8837 10.7812 Q74.993 11.0937 75.0712 11.3906 Q75.1493 11.6875 75.1962 11.8906 L75.243 11.8906 Q75.2899 11.6875 75.368 11.3906 Q75.4618 11.0937 75.5712 10.7656 Q75.6962 10.4375 75.7743 10.1875 L77.1493 6.3906 L78.2743 6.3906 L75.8212 12.8281 L74.618 12.8281 ZM79.8391 3.9843 Q80.0735 3.9843 80.261 4.1562 Q80.4485 4.3125 80.4485 4.6562 Q80.4485 4.9843 80.261 5.1562 Q80.0735 5.3281 79.8391 5.3281 Q79.5735 5.3281 79.386 5.1562 Q79.2141 4.9843 79.2141 4.6562 Q79.2141 4.3125 79.386 4.1562 Q79.5735 3.9843 79.8391 3.9843 ZM80.3547 6.3906 L80.3547 12.8281 L79.2922 12.8281 L79.2922 6.3906 L80.3547 6.3906 ZM84.9664 12.9531 Q84.1226 12.9531 83.4507 12.6093 Q82.7945 12.25 82.4039 11.5156 Q82.0289 10.7812 82.0289 9.6406 Q82.0289 8.4531 82.4195 7.7187 Q82.8257 6.9687 83.4976 6.625 Q84.1851 6.2812 85.0445 6.2812 Q85.5289 6.2812 85.982 6.3906 Q86.4507 6.4843 86.732 6.625 L86.4195 7.5 Q86.1226 7.3906 85.732 7.2968 Q85.357 7.2031 85.0132 7.2031 Q83.1226 7.2031 83.1226 9.6406 Q83.1226 10.7968 83.5757 11.4218 Q84.0445 12.0312 84.9664 12.0312 Q85.482 12.0312 85.8882 11.9218 Q86.2945 11.8125 86.6226 11.6718 L86.6226 12.5937 Q86.3101 12.7656 85.9195 12.8593 Q85.5289 12.9531 84.9664 12.9531 ZM88.6951 3.9843 Q88.9295 3.9843 89.117 4.1562 Q89.3045 4.3125 89.3045 4.6562 Q89.3045 4.9843 89.117 5.1562 Q88.9295 5.3281 88.6951 5.3281 Q88.4295 5.3281 88.242 5.1562 Q88.0701 4.9843 88.0701 4.6562 Q88.0701 4.3125 88.242 4.1562 Q88.4295 3.9843 88.6951 3.9843 ZM89.2108 6.3906 L89.2108 12.8281 L88.1483 12.8281 L88.1483 6.3906 L89.2108 6.3906 ZM96.838 9.5937 Q96.838 11.2031 96.0255 12.0781 Q95.213 12.9531 93.838 12.9531 Q92.9943 12.9531 92.3224 12.5625 Q91.6505 12.1718 91.2599 11.4218 Q90.8849 10.6718 90.8849 9.5937 Q90.8849 8 91.6818 7.1406 Q92.4943 6.2812 93.8693 6.2812 Q94.7599 6.2812 95.4162 6.6718 Q96.088 7.0625 96.463 7.7968 Q96.838 8.5312 96.838 9.5937 ZM91.9787 9.5937 Q91.9787 10.7343 92.4318 11.4062 Q92.8849 12.0781 93.8693 12.0781 Q94.838 12.0781 95.2912 11.4062 Q95.7443 10.7343 95.7443 9.5937 Q95.7443 8.4531 95.2912 7.8125 Q94.838 7.1718 93.8537 7.1718 Q92.8693 7.1718 92.4162 7.8125 Q91.9787 8.4531 91.9787 9.5937 ZM102.6918 11.0468 Q102.6918 11.9843 101.9887 12.4687 Q101.3012 12.9531 100.1293 12.9531 Q99.4575 12.9531 98.9731 12.8437 Q98.4887 12.7343 98.1137 12.5468 L98.1137 11.5781 Q98.5043 11.7656 99.0356 11.9375 Q99.5825 12.0937 100.145 12.0937 Q100.9575 12.0937 101.3168 11.8437 Q101.6762 11.5781 101.6762 11.1406 Q101.6762 10.9062 101.5356 10.7187 Q101.4106 10.5312 101.0668 10.3437 Q100.7231 10.1406 100.0981 9.9062 Q99.4731 9.6562 99.02 9.4218 Q98.5825 9.1875 98.3325 8.8593 Q98.0981 8.5156 98.0981 7.9843 Q98.0981 7.1718 98.7543 6.7343 Q99.4262 6.2812 100.52 6.2812 Q101.0981 6.2812 101.5981 6.3906 Q102.1137 6.5 102.5668 6.7031 L102.2075 7.5468 Q101.8012 7.375 101.3481 7.2656 Q100.9106 7.1406 100.4418 7.1406 Q99.7856 7.1406 99.4418 7.3593 Q99.1137 7.5625 99.1137 7.9218 Q99.1137 8.1875 99.27 8.375 Q99.4262 8.5625 99.7856 8.7343 Q100.145 8.9062 100.77 9.1406 Q101.3793 9.375 101.8012 9.625 Q102.2387 9.8593 102.4575 10.2031 Q102.6918 10.5312 102.6918 11.0468 ZM111.5599 11.0468 Q111.5599 11.9843 110.8568 12.4687 Q110.1693 12.9531 108.9974 12.9531 Q108.3255 12.9531 107.8412 12.8437 Q107.3568 12.7343 106.9818 12.5468 L106.9818 11.5781 Q107.3724 11.7656 107.9037 11.9375 Q108.4505 12.0937 109.013 12.0937 Q109.8255 12.0937 110.1849 11.8437 Q110.5443 11.5781 110.5443 11.1406 Q110.5443 10.9062 110.4037 10.7187 Q110.2787 10.5312 109.9349 10.3437 Q109.5912 10.1406 108.9662 9.9062 Q108.3412 9.6562 107.888 9.4218 Q107.4505 9.1875 107.2005 8.8593 Q106.9662 8.5156 106.9662 7.9843 Q106.9662 7.1718 107.6224 6.7343 Q108.2943 6.2812 109.388 6.2812 Q109.9662 6.2812 110.4662 6.3906 Q110.9818 6.5 111.4349 6.7031 L111.0755 7.5468 Q110.6693 7.375 110.2162 7.2656 Q109.7787 7.1406 109.3099 7.1406 Q108.6537 7.1406 108.3099 7.3593 Q107.9818 7.5625 107.9818 7.9218 Q107.9818 8.1875 108.138 8.375 Q108.2943 8.5625 108.6537 8.7343 Q109.013 8.9062 109.638 9.1406 Q110.2474 9.375 110.6693 9.625 Q111.1068 9.8593 111.3255 10.2031 Q111.5599 10.5312 111.5599 11.0468 ZM115.6048 6.2812 Q116.433 6.2812 117.0267 6.6406 Q117.6205 7 117.933 7.6562 Q118.2611 8.2968 118.2611 9.1875 L118.2611 9.8125 L113.8548 9.8125 Q113.8861 10.9062 114.4173 11.4843 Q114.9486 12.0468 115.9017 12.0468 Q116.5267 12.0468 116.9955 11.9375 Q117.4642 11.8125 117.9798 11.6093 L117.9798 12.5312 Q117.4798 12.75 116.9955 12.8437 Q116.5267 12.9531 115.8548 12.9531 Q114.9486 12.9531 114.2455 12.5781 Q113.5423 12.2031 113.1517 11.4687 Q112.7611 10.7343 112.7611 9.6562 Q112.7611 8.6093 113.1205 7.8593 Q113.4798 7.0937 114.1205 6.6875 Q114.7611 6.2812 115.6048 6.2812 ZM115.5892 7.1406 Q114.8392 7.1406 114.4017 7.625 Q113.9642 8.1093 113.8861 8.9687 L117.1517 8.9687 Q117.1517 8.1562 116.7767 7.6562 Q116.4017 7.1406 115.5892 7.1406 ZM125.5867 12.9531 Q124.7429 12.9531 124.071 12.6093 Q123.4148 12.25 123.0242 11.5156 Q122.6492 10.7812 122.6492 9.6406 Q122.6492 8.4531 123.0398 7.7187 Q123.446 6.9687 124.1179 6.625 Q124.8054 6.2812 125.6648 6.2812 Q126.1492 6.2812 126.6023 6.3906 Q127.071 6.4843 127.3523 6.625 L127.0398 7.5 Q126.7429 7.3906 126.3523 7.2968 Q125.9773 7.2031 125.6335 7.2031 Q123.7429 7.2031 123.7429 9.6406 Q123.7429 10.7968 124.196 11.4218 Q124.6648 12.0312 125.5867 12.0312 Q126.1023 12.0312 126.5085 11.9218 Q126.9148 11.8125 127.2429 11.6718 L127.2429 12.5937 Q126.9304 12.7656 126.5398 12.8593 Q126.1492 12.9531 125.5867 12.9531 ZM134.3623 9.5937 Q134.3623 11.2031 133.5498 12.0781 Q132.7373 12.9531 131.3623 12.9531 Q130.5186 12.9531 129.8467 12.5625 Q129.1748 12.1718 128.7842 11.4218 Q128.4092 10.6718 128.4092 9.5937 Q128.4092 8 129.2061 7.1406 Q130.0186 6.2812 131.3936 6.2812 Q132.2842 6.2812 132.9405 6.6718 Q133.6123 7.0625 133.9873 7.7968 Q134.3623 8.5312 134.3623 9.5937 ZM129.503 9.5937 Q129.503 10.7343 129.9561 11.4062 Q130.4092 12.0781 131.3936 12.0781 Q132.3623 12.0781 132.8155 11.4062 Q133.2686 10.7343 133.2686 9.5937 Q133.2686 8.4531 132.8155 7.8125 Q132.3623 7.1718 131.378 7.1718 Q130.3936 7.1718 129.9405 7.8125 Q129.503 8.4531 129.503 9.5937 ZM143.0911 6.2812 Q144.1849 6.2812 144.7161 6.8437 Q145.263 7.3906 145.263 8.6406 L145.263 12.8281 L144.2161 12.8281 L144.2161 8.6875 Q144.2161 7.1718 142.9036 7.1718 Q141.9661 7.1718 141.5599 7.7187 Q141.1693 8.25 141.1693 9.2812 L141.1693 12.8281 L140.1224 12.8281 L140.1224 8.6875 Q140.1224 7.1718 138.8099 7.1718 Q137.8255 7.1718 137.4505 7.7656 Q137.0911 8.3593 137.0911 9.4843 L137.0911 12.8281 L136.0286 12.8281 L136.0286 6.3906 L136.888 6.3906 L137.0443 7.2656 L137.1068 7.2656 Q137.4036 6.7656 137.9036 6.5312 Q138.4193 6.2812 138.9974 6.2812 Q140.513 6.2812 140.9661 7.3593 L141.0286 7.3593 Q141.3568 6.7968 141.9036 6.5468 Q142.4661 6.2812 143.0911 6.2812 ZM152.6237 6.3906 L152.6237 12.8281 L151.7643 12.8281 L151.6081 11.9687 L151.5612 11.9687 Q151.2487 12.4843 150.6862 12.7187 Q150.1393 12.9531 149.5143 12.9531 Q148.3581 12.9531 147.7643 12.3906 Q147.1862 11.8281 147.1862 10.6093 L147.1862 6.3906 L148.2487 6.3906 L148.2487 10.5312 Q148.2487 12.0781 149.6706 12.0781 Q150.7487 12.0781 151.155 11.4843 Q151.5768 10.875 151.5768 9.75 L151.5768 6.3906 L152.6237 6.3906 ZM157.7585 6.2812 Q158.9148 6.2812 159.4929 6.8437 Q160.0866 7.3906 160.0866 8.6406 L160.0866 12.8281 L159.0554 12.8281 L159.0554 8.7187 Q159.0554 7.1718 157.6023 7.1718 Q156.5398 7.1718 156.1335 7.7656 Q155.7273 8.3593 155.7273 9.4843 L155.7273 12.8281 L154.6648 12.8281 L154.6648 6.3906 L155.5241 6.3906 L155.6804 7.2656 L155.7429 7.2656 Q156.0554 6.7656 156.6023 6.5312 Q157.1491 6.2812 157.7585 6.2812 ZM162.6277 3.9843 Q162.8621 3.9843 163.0496 4.1562 Q163.2371 4.3125 163.2371 4.6562 Q163.2371 4.9843 163.0496 5.1562 Q162.8621 5.3281 162.6277 5.3281 Q162.3621 5.3281 162.1746 5.1562 Q162.0027 4.9843 162.0027 4.6562 Q162.0027 4.3125 162.1746 4.1562 Q162.3621 3.9843 162.6277 3.9843 ZM163.1433 6.3906 L163.1433 12.8281 L162.0808 12.8281 L162.0808 6.3906 L163.1433 6.3906 ZM167.755 12.9531 Q166.9112 12.9531 166.2393 12.6093 Q165.5831 12.25 165.1925 11.5156 Q164.8175 10.7812 164.8175 9.6406 Q164.8175 8.4531 165.2081 7.7187 Q165.6143 6.9687 166.2862 6.625 Q166.9737 6.2812 167.8331 6.2812 Q168.3175 6.2812 168.7706 6.3906 Q169.2393 6.4843 169.5206 6.625 L169.2081 7.5 Q168.9112 7.3906 168.5206 7.2968 Q168.1456 7.2031 167.8018 7.2031 Q165.9112 7.2031 165.9112 9.6406 Q165.9112 10.7968 166.3643 11.4218 Q166.8331 12.0312 167.755 12.0312 Q168.2706 12.0312 168.6768 11.9218 Q169.0831 11.8125 169.4112 11.6718 L169.4112 12.5937 Q169.0987 12.7656 168.7081 12.8593 Q168.3175 12.9531 167.755 12.9531 ZM173.3744 6.2812 Q174.5462 6.2812 175.1087 6.7968 Q175.6869 7.3125 175.6869 8.4531 L175.6869 12.8281 L174.9056 12.8281 L174.7025 11.9218 L174.6556 11.9218 Q174.2337 12.4375 173.765 12.7031 Q173.3119 12.9531 172.4994 12.9531 Q171.6244 12.9531 171.0462 12.5 Q170.4681 12.0312 170.4681 11.0468 Q170.4681 10.0781 171.2181 9.5625 Q171.9837 9.0312 173.5619 8.9843 L174.6556 8.9531 L174.6556 8.5625 Q174.6556 7.7656 174.2962 7.4531 Q173.9525 7.1406 173.3119 7.1406 Q172.8119 7.1406 172.3587 7.2968 Q171.9056 7.4375 171.4994 7.625 L171.1869 6.8437 Q171.6087 6.6093 172.1712 6.4531 Q172.7494 6.2812 173.3744 6.2812 ZM173.6869 9.7187 Q172.4837 9.7656 172.015 10.1093 Q171.5619 10.4375 171.5619 11.0468 Q171.5619 11.5937 171.89 11.8437 Q172.2181 12.0937 172.7337 12.0937 Q173.5619 12.0937 174.0931 11.6562 Q174.64 11.2031 174.64 10.2656 L174.64 9.6875 L173.6869 9.7187 ZM180.7627 6.2812 Q181.9189 6.2812 182.497 6.8437 Q183.0908 7.3906 183.0908 8.6406 L183.0908 12.8281 L182.0595 12.8281 L182.0595 8.7187 Q182.0595 7.1718 180.6064 7.1718 Q179.5439 7.1718 179.1377 7.7656 Q178.7314 8.3593 178.7314 9.4843 L178.7314 12.8281 L177.6689 12.8281 L177.6689 6.3906 L178.5283 6.3906 L178.6845 7.2656 L178.747 7.2656 Q179.0595 6.7656 179.6064 6.5312 Q180.1533 6.2812 180.7627 6.2812 Z" style="fill:black; clip-path:url(#clipPath7); stroke:none;" transform="translate(-1229.0718,156.3153)"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1229.0718,156.3153)"
+    ><path d="M1.5625 20.3285 Q1.7969 20.3285 1.9844 20.5003 Q2.1719 20.6566 2.1719 21.0003 Q2.1719 21.3285 1.9844 21.5003 Q1.7969 21.6722 1.5625 21.6722 Q1.2969 21.6722 1.1094 21.5003 Q0.9375 21.3285 0.9375 21.0003 Q0.9375 20.6566 1.1094 20.5003 Q1.2969 20.3285 1.5625 20.3285 ZM2.0781 22.7347 L2.0781 29.1722 L1.0156 29.1722 L1.0156 22.7347 L2.0781 22.7347 ZM7.2054 22.6253 Q8.3616 22.6253 8.9398 23.1878 Q9.5335 23.7347 9.5335 24.9847 L9.5335 29.1722 L8.5023 29.1722 L8.5023 25.0628 Q8.5023 23.516 7.0491 23.516 Q5.9866 23.516 5.5804 24.1097 Q5.1741 24.7035 5.1741 25.8285 L5.1741 29.1722 L4.1116 29.1722 L4.1116 22.7347 L4.971 22.7347 L5.1273 23.6097 L5.1898 23.6097 Q5.5023 23.1097 6.0491 22.8753 Q6.596 22.6253 7.2054 22.6253 ZM13.6839 28.4222 Q13.9183 28.4222 14.1683 28.391 Q14.4183 28.3441 14.5746 28.2972 L14.5746 29.0941 Q14.4183 29.1878 14.1058 29.2347 Q13.7933 29.2972 13.4964 29.2972 Q12.9964 29.2972 12.5589 29.1253 Q12.1371 28.9378 11.8714 28.516 Q11.6214 28.0785 11.6214 27.2972 L11.6214 23.5628 L10.6996 23.5628 L10.6996 23.0472 L11.6214 22.6253 L12.0433 21.266 L12.6683 21.266 L12.6683 22.7347 L14.5277 22.7347 L14.5277 23.5628 L12.6683 23.5628 L12.6683 27.2816 Q12.6683 27.8597 12.9496 28.141 Q13.2308 28.4222 13.6839 28.4222 ZM18.3441 22.6253 Q19.1722 22.6253 19.766 22.9847 Q20.3597 23.3441 20.6722 24.0003 Q21.0004 24.641 21.0004 25.5316 L21.0004 26.1566 L16.5941 26.1566 Q16.6254 27.2503 17.1566 27.8285 Q17.6879 28.391 18.641 28.391 Q19.266 28.391 19.7347 28.2816 Q20.2035 28.1566 20.7191 27.9535 L20.7191 28.8753 Q20.2191 29.0941 19.7347 29.1878 Q19.266 29.2972 18.5941 29.2972 Q17.6879 29.2972 16.9847 28.9222 Q16.2816 28.5472 15.891 27.8128 Q15.5004 27.0785 15.5004 26.0003 Q15.5004 24.9535 15.8597 24.2035 Q16.2191 23.4378 16.8597 23.0316 Q17.5004 22.6253 18.3441 22.6253 ZM18.3285 23.4847 Q17.5785 23.4847 17.141 23.9691 Q16.7035 24.4535 16.6254 25.3128 L19.891 25.3128 Q19.891 24.5003 19.516 24.0003 Q19.141 23.4847 18.3285 23.4847 ZM25.6278 22.6253 Q25.8153 22.6253 26.0184 22.641 Q26.2372 22.6566 26.3934 22.6878 L26.2528 23.6566 Q26.0965 23.6253 25.909 23.6097 Q25.7215 23.5785 25.5653 23.5785 Q25.0653 23.5785 24.6278 23.8597 Q24.2059 24.1253 23.9403 24.6097 Q23.6903 25.0941 23.6903 25.7347 L23.6903 29.1722 L22.6278 29.1722 L22.6278 22.7347 L23.5028 22.7347 L23.6122 23.9222 L23.659 23.9222 Q23.9715 23.391 24.4559 23.016 Q24.9559 22.6253 25.6278 22.6253 ZM30.6776 22.6253 Q31.8338 22.6253 32.4119 23.1878 Q33.0057 23.7347 33.0057 24.9847 L33.0057 29.1722 L31.9744 29.1722 L31.9744 25.0628 Q31.9744 23.516 30.5213 23.516 Q29.4588 23.516 29.0526 24.1097 Q28.6463 24.7035 28.6463 25.8285 L28.6463 29.1722 L27.5838 29.1722 L27.5838 22.7347 L28.4432 22.7347 L28.5994 23.6097 L28.6619 23.6097 Q28.9744 23.1097 29.5213 22.8753 Q30.0682 22.6253 30.6776 22.6253 ZM37.4374 22.6253 Q38.6092 22.6253 39.1717 23.141 Q39.7499 23.6566 39.7499 24.7972 L39.7499 29.1722 L38.9686 29.1722 L38.7655 28.266 L38.7186 28.266 Q38.2967 28.7816 37.828 29.0472 Q37.3749 29.2972 36.5624 29.2972 Q35.6874 29.2972 35.1092 28.8441 Q34.5311 28.3753 34.5311 27.391 Q34.5311 26.4222 35.2811 25.9066 Q36.0467 25.3753 37.6249 25.3285 L38.7186 25.2972 L38.7186 24.9066 Q38.7186 24.1097 38.3592 23.7972 Q38.0155 23.4847 37.3749 23.4847 Q36.8749 23.4847 36.4217 23.641 Q35.9686 23.7816 35.5624 23.9691 L35.2499 23.1878 Q35.6717 22.9535 36.2342 22.7972 Q36.8124 22.6253 37.4374 22.6253 ZM37.7499 26.0628 Q36.5467 26.1097 36.078 26.4535 Q35.6249 26.7816 35.6249 27.391 Q35.6249 27.9378 35.953 28.1878 Q36.2811 28.4378 36.7967 28.4378 Q37.6249 28.4378 38.1561 28.0003 Q38.703 27.5472 38.703 26.6097 L38.703 26.0316 L37.7499 26.0628 ZM48.7944 22.6253 Q49.8882 22.6253 50.4194 23.1878 Q50.9663 23.7347 50.9663 24.9847 L50.9663 29.1722 L49.9194 29.1722 L49.9194 25.0316 Q49.9194 23.516 48.6069 23.516 Q47.6694 23.516 47.2632 24.0628 Q46.8725 24.5941 46.8725 25.6253 L46.8725 29.1722 L45.8257 29.1722 L45.8257 25.0316 Q45.8257 23.516 44.5132 23.516 Q43.5288 23.516 43.1538 24.1097 Q42.7944 24.7035 42.7944 25.8285 L42.7944 29.1722 L41.7319 29.1722 L41.7319 22.7347 L42.5913 22.7347 L42.7475 23.6097 L42.81 23.6097 Q43.1069 23.1097 43.6069 22.8753 Q44.1225 22.6253 44.7007 22.6253 Q46.2163 22.6253 46.6694 23.7035 L46.7319 23.7035 Q47.06 23.141 47.6069 22.891 Q48.1694 22.6253 48.7944 22.6253 ZM55.4364 22.6253 Q56.2645 22.6253 56.8582 22.9847 Q57.452 23.3441 57.7645 24.0003 Q58.0926 24.641 58.0926 25.5316 L58.0926 26.1566 L53.6864 26.1566 Q53.7176 27.2503 54.2489 27.8285 Q54.7801 28.391 55.7332 28.391 Q56.3582 28.391 56.827 28.2816 Q57.2957 28.1566 57.8114 27.9535 L57.8114 28.8753 Q57.3114 29.0941 56.827 29.1878 Q56.3582 29.2972 55.6864 29.2972 Q54.7801 29.2972 54.077 28.9222 Q53.3739 28.5472 52.9832 27.8128 Q52.5926 27.0785 52.5926 26.0003 Q52.5926 24.9535 52.952 24.2035 Q53.3114 23.4378 53.952 23.0316 Q54.5926 22.6253 55.4364 22.6253 ZM55.4207 23.4847 Q54.6707 23.4847 54.2332 23.9691 Q53.7957 24.4535 53.7176 25.3128 L56.9832 25.3128 Q56.9832 24.5003 56.6082 24.0003 Q56.2332 23.4847 55.4207 23.4847 ZM62.8138 22.6253 Q63.97 22.6253 64.5482 23.1878 Q65.1419 23.7347 65.1419 24.9847 L65.1419 29.1722 L64.1107 29.1722 L64.1107 25.0628 Q64.1107 23.516 62.6575 23.516 Q61.595 23.516 61.1888 24.1097 Q60.7825 24.7035 60.7825 25.8285 L60.7825 29.1722 L59.72 29.1722 L59.72 22.7347 L60.5794 22.7347 L60.7357 23.6097 L60.7982 23.6097 Q61.1107 23.1097 61.6575 22.8753 Q62.2044 22.6253 62.8138 22.6253 ZM69.2923 28.4222 Q69.5267 28.4222 69.7767 28.391 Q70.0267 28.3441 70.183 28.2972 L70.183 29.0941 Q70.0267 29.1878 69.7142 29.2347 Q69.4017 29.2972 69.1048 29.2972 Q68.6048 29.2972 68.1673 29.1253 Q67.7455 28.9378 67.4798 28.516 Q67.2298 28.0785 67.2298 27.2972 L67.2298 23.5628 L66.308 23.5628 L66.308 23.0472 L67.2298 22.6253 L67.6517 21.266 L68.2767 21.266 L68.2767 22.7347 L70.1361 22.7347 L70.1361 23.5628 L68.2767 23.5628 L68.2767 27.2816 Q68.2767 27.8597 68.558 28.141 Q68.8392 28.4222 69.2923 28.4222 ZM73.9525 22.6253 Q74.7806 22.6253 75.3744 22.9847 Q75.9681 23.3441 76.2806 24.0003 Q76.6087 24.641 76.6087 25.5316 L76.6087 26.1566 L72.2025 26.1566 Q72.2337 27.2503 72.765 27.8285 Q73.2962 28.391 74.2494 28.391 Q74.8744 28.391 75.3431 28.2816 Q75.8119 28.1566 76.3275 27.9535 L76.3275 28.8753 Q75.8275 29.0941 75.3431 29.1878 Q74.8744 29.2972 74.2025 29.2972 Q73.2962 29.2972 72.5931 28.9222 Q71.89 28.5472 71.4994 27.8128 Q71.1087 27.0785 71.1087 26.0003 Q71.1087 24.9535 71.4681 24.2035 Q71.8275 23.4378 72.4681 23.0316 Q73.1087 22.6253 73.9525 22.6253 ZM73.9369 23.4847 Q73.1869 23.4847 72.7494 23.9691 Q72.3119 24.4535 72.2337 25.3128 L75.4994 25.3128 Q75.4994 24.5003 75.1244 24.0003 Q74.7494 23.4847 73.9369 23.4847 ZM83.9343 29.2972 Q83.0906 29.2972 82.4187 28.9535 Q81.7624 28.5941 81.3718 27.8597 Q80.9968 27.1253 80.9968 25.9847 Q80.9968 24.7972 81.3874 24.0628 Q81.7937 23.3128 82.4656 22.9691 Q83.1531 22.6253 84.0124 22.6253 Q84.4968 22.6253 84.9499 22.7347 Q85.4187 22.8285 85.6999 22.9691 L85.3874 23.8441 Q85.0906 23.7347 84.6999 23.641 Q84.3249 23.5472 83.9812 23.5472 Q82.0906 23.5472 82.0906 25.9847 Q82.0906 27.141 82.5437 27.766 Q83.0124 28.3753 83.9343 28.3753 Q84.4499 28.3753 84.8562 28.266 Q85.2624 28.1566 85.5906 28.016 L85.5906 28.9378 Q85.2781 29.1097 84.8874 29.2035 Q84.4968 29.2972 83.9343 29.2972 ZM92.71 25.9378 Q92.71 27.5472 91.8975 28.4222 Q91.085 29.2972 89.71 29.2972 Q88.8662 29.2972 88.1944 28.9066 Q87.5225 28.516 87.1319 27.766 Q86.7569 27.016 86.7569 25.9378 Q86.7569 24.3441 87.5537 23.4847 Q88.3662 22.6253 89.7412 22.6253 Q90.6319 22.6253 91.2881 23.016 Q91.96 23.4066 92.335 24.141 Q92.71 24.8753 92.71 25.9378 ZM87.8506 25.9378 Q87.8506 27.0785 88.3037 27.7503 Q88.7569 28.4222 89.7412 28.4222 Q90.71 28.4222 91.1631 27.7503 Q91.6162 27.0785 91.6162 25.9378 Q91.6162 24.7972 91.1631 24.1566 Q90.71 23.516 89.7256 23.516 Q88.7412 23.516 88.2881 24.1566 Q87.8506 24.7972 87.8506 25.9378 ZM97.47 22.6253 Q98.6263 22.6253 99.2044 23.1878 Q99.7982 23.7347 99.7982 24.9847 L99.7982 29.1722 L98.7669 29.1722 L98.7669 25.0628 Q98.7669 23.516 97.3138 23.516 Q96.2513 23.516 95.845 24.1097 Q95.4388 24.7035 95.4388 25.8285 L95.4388 29.1722 L94.3763 29.1722 L94.3763 22.7347 L95.2357 22.7347 L95.3919 23.6097 L95.4544 23.6097 Q95.7669 23.1097 96.3138 22.8753 Q96.8607 22.6253 97.47 22.6253 ZM107.3967 22.6253 Q108.2249 22.6253 108.8186 22.9847 Q109.4124 23.3441 109.7249 24.0003 Q110.053 24.641 110.053 25.5316 L110.053 26.1566 L105.6467 26.1566 Q105.678 27.2503 106.2092 27.8285 Q106.7405 28.391 107.6936 28.391 Q108.3186 28.391 108.7874 28.2816 Q109.2561 28.1566 109.7717 27.9535 L109.7717 28.8753 Q109.2717 29.0941 108.7874 29.1878 Q108.3186 29.2972 107.6467 29.2972 Q106.7405 29.2972 106.0374 28.9222 Q105.3342 28.5472 104.9436 27.8128 Q104.553 27.0785 104.553 26.0003 Q104.553 24.9535 104.9124 24.2035 Q105.2717 23.4378 105.9124 23.0316 Q106.553 22.6253 107.3967 22.6253 ZM107.3811 23.4847 Q106.6311 23.4847 106.1936 23.9691 Q105.7561 24.4535 105.678 25.3128 L108.9436 25.3128 Q108.9436 24.5003 108.5686 24.0003 Q108.1936 23.4847 107.3811 23.4847 ZM112.7429 29.1722 L111.6804 29.1722 L111.6804 20.0472 L112.7429 20.0472 L112.7429 29.1722 ZM122.084 27.391 Q122.084 28.3285 121.3808 28.8128 Q120.6933 29.2972 119.5215 29.2972 Q118.8496 29.2972 118.3652 29.1878 Q117.8808 29.0785 117.5058 28.891 L117.5058 27.9222 Q117.8965 28.1097 118.4277 28.2816 Q118.9746 28.4378 119.5371 28.4378 Q120.3496 28.4378 120.709 28.1878 Q121.0683 27.9222 121.0683 27.4847 Q121.0683 27.2503 120.9277 27.0628 Q120.8027 26.8753 120.459 26.6878 Q120.1152 26.4847 119.4902 26.2503 Q118.8652 26.0003 118.4121 25.766 Q117.9746 25.5316 117.7246 25.2035 Q117.4902 24.8597 117.4902 24.3285 Q117.4902 23.516 118.1465 23.0785 Q118.8183 22.6253 119.9121 22.6253 Q120.4902 22.6253 120.9902 22.7347 Q121.5058 22.8441 121.959 23.0472 L121.5996 23.891 Q121.1933 23.7191 120.7402 23.6097 Q120.3027 23.4847 119.834 23.4847 Q119.1777 23.4847 118.834 23.7035 Q118.5058 23.9066 118.5058 24.266 Q118.5058 24.5316 118.6621 24.7191 Q118.8183 24.9066 119.1777 25.0785 Q119.5371 25.2503 120.1621 25.4847 Q120.7715 25.7191 121.1933 25.9691 Q121.6308 26.2035 121.8496 26.5472 Q122.084 26.8753 122.084 27.391 ZM126.1289 22.6253 Q126.957 22.6253 127.5508 22.9847 Q128.1445 23.3441 128.457 24.0003 Q128.7851 24.641 128.7851 25.5316 L128.7851 26.1566 L124.3789 26.1566 Q124.4101 27.2503 124.9414 27.8285 Q125.4726 28.391 126.4258 28.391 Q127.0508 28.391 127.5195 28.2816 Q127.9883 28.1566 128.5039 27.9535 L128.5039 28.8753 Q128.0039 29.0941 127.5195 29.1878 Q127.0508 29.2972 126.3789 29.2972 Q125.4726 29.2972 124.7695 28.9222 Q124.0664 28.5472 123.6758 27.8128 Q123.2851 27.0785 123.2851 26.0003 Q123.2851 24.9535 123.6445 24.2035 Q124.0039 23.4378 124.6445 23.0316 Q125.2851 22.6253 126.1289 22.6253 ZM126.1133 23.4847 Q125.3633 23.4847 124.9258 23.9691 Q124.4883 24.4535 124.4101 25.3128 L127.6758 25.3128 Q127.6758 24.5003 127.3008 24.0003 Q126.9258 23.4847 126.1133 23.4847 ZM133.4126 22.6253 Q133.6001 22.6253 133.8032 22.641 Q134.0219 22.6566 134.1782 22.6878 L134.0376 23.6566 Q133.8813 23.6253 133.6938 23.6097 Q133.5063 23.5785 133.3501 23.5785 Q132.8501 23.5785 132.4126 23.8597 Q131.9907 24.1253 131.7251 24.6097 Q131.4751 25.0941 131.4751 25.7347 L131.4751 29.1722 L130.4126 29.1722 L130.4126 22.7347 L131.2876 22.7347 L131.3969 23.9222 L131.4438 23.9222 Q131.7563 23.391 132.2407 23.016 Q132.7407 22.6253 133.4126 22.6253 ZM136.7905 29.1722 L134.353 22.7347 L135.478 22.7347 L136.853 26.5316 Q136.9467 26.7972 137.0561 27.1253 Q137.1655 27.4378 137.2436 27.7347 Q137.3217 28.0316 137.3686 28.2347 L137.4155 28.2347 Q137.4623 28.0316 137.5405 27.7347 Q137.6342 27.4378 137.7436 27.1097 Q137.8686 26.7816 137.9467 26.5316 L139.3217 22.7347 L140.4467 22.7347 L137.9936 29.1722 L136.7905 29.1722 ZM142.0115 20.3285 Q142.2459 20.3285 142.4334 20.5003 Q142.6209 20.6566 142.6209 21.0003 Q142.6209 21.3285 142.4334 21.5003 Q142.2459 21.6722 142.0115 21.6722 Q141.7459 21.6722 141.5584 21.5003 Q141.3865 21.3285 141.3865 21.0003 Q141.3865 20.6566 141.5584 20.5003 Q141.7459 20.3285 142.0115 20.3285 ZM142.5271 22.7347 L142.5271 29.1722 L141.4646 29.1722 L141.4646 22.7347 L142.5271 22.7347 ZM147.1388 29.2972 Q146.295 29.2972 145.6232 28.9535 Q144.9669 28.5941 144.5763 27.8597 Q144.2013 27.1253 144.2013 25.9847 Q144.2013 24.7972 144.5919 24.0628 Q144.9982 23.3128 145.67 22.9691 Q146.3575 22.6253 147.2169 22.6253 Q147.7013 22.6253 148.1544 22.7347 Q148.6232 22.8285 148.9044 22.9691 L148.5919 23.8441 Q148.295 23.7347 147.9044 23.641 Q147.5294 23.5472 147.1857 23.5472 Q145.295 23.5472 145.295 25.9847 Q145.295 27.141 145.7482 27.766 Q146.2169 28.3753 147.1388 28.3753 Q147.6544 28.3753 148.0607 28.266 Q148.4669 28.1566 148.795 28.016 L148.795 28.9378 Q148.4825 29.1097 148.0919 29.2035 Q147.7013 29.2972 147.1388 29.2972 ZM150.8676 20.3285 Q151.1019 20.3285 151.2894 20.5003 Q151.4769 20.6566 151.4769 21.0003 Q151.4769 21.3285 151.2894 21.5003 Q151.1019 21.6722 150.8676 21.6722 Q150.6019 21.6722 150.4144 21.5003 Q150.2426 21.3285 150.2426 21.0003 Q150.2426 20.6566 150.4144 20.5003 Q150.6019 20.3285 150.8676 20.3285 ZM151.3832 22.7347 L151.3832 29.1722 L150.3207 29.1722 L150.3207 22.7347 L151.3832 22.7347 ZM159.0105 25.9378 Q159.0105 27.5472 158.198 28.4222 Q157.3855 29.2972 156.0105 29.2972 Q155.1667 29.2972 154.4948 28.9066 Q153.823 28.516 153.4323 27.766 Q153.0573 27.016 153.0573 25.9378 Q153.0573 24.3441 153.8542 23.4847 Q154.6667 22.6253 156.0417 22.6253 Q156.9323 22.6253 157.5886 23.016 Q158.2605 23.4066 158.6355 24.141 Q159.0105 24.8753 159.0105 25.9378 ZM154.1511 25.9378 Q154.1511 27.0785 154.6042 27.7503 Q155.0573 28.4222 156.0417 28.4222 Q157.0105 28.4222 157.4636 27.7503 Q157.9167 27.0785 157.9167 25.9378 Q157.9167 24.7972 157.4636 24.1566 Q157.0105 23.516 156.0261 23.516 Q155.0417 23.516 154.5886 24.1566 Q154.1511 24.7972 154.1511 25.9378 ZM169.328 29.1722 L168.2968 26.516 L164.8905 26.516 L163.8749 29.1722 L162.7812 29.1722 L166.1249 20.5628 L167.0937 20.5628 L170.4374 29.1722 L169.328 29.1722 ZM166.9999 22.9691 Q166.9687 22.8753 166.8749 22.6253 Q166.7968 22.3753 166.7187 22.1097 Q166.6405 21.8285 166.5937 21.6878 Q166.5155 22.0628 166.4062 22.4222 Q166.2968 22.766 166.2187 22.9691 L165.2499 25.5628 L167.9687 25.5628 L166.9999 22.9691 ZM176.8399 22.7347 L176.8399 29.1722 L175.9805 29.1722 L175.8242 28.3128 L175.7774 28.3128 Q175.4649 28.8285 174.9024 29.0628 Q174.3555 29.2972 173.7305 29.2972 Q172.5742 29.2972 171.9805 28.7347 Q171.4024 28.1722 171.4024 26.9535 L171.4024 22.7347 L172.4649 22.7347 L172.4649 26.8753 Q172.4649 28.4222 173.8867 28.4222 Q174.9649 28.4222 175.3711 27.8285 Q175.793 27.2191 175.793 26.0941 L175.793 22.7347 L176.8399 22.7347 ZM181.0372 28.4222 Q181.2715 28.4222 181.5215 28.391 Q181.7715 28.3441 181.9278 28.2972 L181.9278 29.0941 Q181.7715 29.1878 181.459 29.2347 Q181.1465 29.2972 180.8497 29.2972 Q180.3497 29.2972 179.9122 29.1253 Q179.4903 28.9378 179.2247 28.516 Q178.9747 28.0785 178.9747 27.2972 L178.9747 23.5628 L178.0528 23.5628 L178.0528 23.0472 L178.9747 22.6253 L179.3965 21.266 L180.0215 21.266 L180.0215 22.7347 L181.8809 22.7347 L181.8809 23.5628 L180.0215 23.5628 L180.0215 27.2816 Q180.0215 27.8597 180.3028 28.141 Q180.584 28.4222 181.0372 28.4222 ZM184.2754 22.7347 Q184.2754 23.2035 184.2129 23.6253 L184.2911 23.6253 Q184.6036 23.141 185.1348 22.891 Q185.6661 22.6253 186.2911 22.6253 Q187.4629 22.6253 188.0411 23.1878 Q188.6348 23.7503 188.6348 24.9847 L188.6348 29.1722 L187.6036 29.1722 L187.6036 25.0628 Q187.6036 23.516 186.1504 23.516 Q185.0723 23.516 184.6661 24.1253 Q184.2754 24.7191 184.2754 25.8441 L184.2754 29.1722 L183.2129 29.1722 L183.2129 20.0472 L184.2754 20.0472 L184.2754 22.7347 ZM196.3271 29.2972 Q195.4834 29.2972 194.8115 28.9535 Q194.1553 28.5941 193.7646 27.8597 Q193.3896 27.1253 193.3896 25.9847 Q193.3896 24.7972 193.7803 24.0628 Q194.1865 23.3128 194.8584 22.9691 Q195.5459 22.6253 196.4053 22.6253 Q196.8896 22.6253 197.3428 22.7347 Q197.8115 22.8285 198.0928 22.9691 L197.7803 23.8441 Q197.4834 23.7347 197.0928 23.641 Q196.7178 23.5472 196.374 23.5472 Q194.4834 23.5472 194.4834 25.9847 Q194.4834 27.141 194.9365 27.766 Q195.4053 28.3753 196.3271 28.3753 Q196.8428 28.3753 197.249 28.266 Q197.6553 28.1566 197.9834 28.016 L197.9834 28.9378 Q197.6709 29.1097 197.2803 29.2035 Q196.8896 29.2972 196.3271 29.2972 ZM205.1028 25.9378 Q205.1028 27.5472 204.2903 28.4222 Q203.4778 29.2972 202.1028 29.2972 Q201.259 29.2972 200.5872 28.9066 Q199.9153 28.516 199.5247 27.766 Q199.1497 27.016 199.1497 25.9378 Q199.1497 24.3441 199.9465 23.4847 Q200.759 22.6253 202.134 22.6253 Q203.0247 22.6253 203.6809 23.016 Q204.3528 23.4066 204.7278 24.141 Q205.1028 24.8753 205.1028 25.9378 ZM200.2434 25.9378 Q200.2434 27.0785 200.6965 27.7503 Q201.1497 28.4222 202.134 28.4222 Q203.1028 28.4222 203.5559 27.7503 Q204.009 27.0785 204.009 25.9378 Q204.009 24.7972 203.5559 24.1566 Q203.1028 23.516 202.1184 23.516 Q201.134 23.516 200.6809 24.1566 Q200.2434 24.7972 200.2434 25.9378 ZM209.8629 22.6253 Q211.0191 22.6253 211.5972 23.1878 Q212.191 23.7347 212.191 24.9847 L212.191 29.1722 L211.1597 29.1722 L211.1597 25.0628 Q211.1597 23.516 209.7066 23.516 Q208.6441 23.516 208.2379 24.1097 Q207.8316 24.7035 207.8316 25.8285 L207.8316 29.1722 L206.7691 29.1722 L206.7691 22.7347 L207.6285 22.7347 L207.7847 23.6097 L207.8472 23.6097 Q208.1597 23.1097 208.7066 22.8753 Q209.2535 22.6253 209.8629 22.6253 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1229.0718,156.3153)"
+    ><path d="M3.5 38.9694 Q4.3281 38.9694 4.9219 39.3288 Q5.5156 39.6882 5.8281 40.3444 Q6.1562 40.9851 6.1562 41.8757 L6.1562 42.5007 L1.75 42.5007 Q1.7812 43.5944 2.3125 44.1726 Q2.8438 44.7351 3.7969 44.7351 Q4.4219 44.7351 4.8906 44.6257 Q5.3594 44.5007 5.875 44.2976 L5.875 45.2194 Q5.375 45.4382 4.8906 45.5319 Q4.4219 45.6413 3.75 45.6413 Q2.8438 45.6413 2.1406 45.2663 Q1.4375 44.8913 1.0469 44.1569 Q0.6562 43.4226 0.6562 42.3444 Q0.6562 41.2976 1.0156 40.5476 Q1.375 39.7819 2.0156 39.3757 Q2.6562 38.9694 3.5 38.9694 ZM3.4844 39.8288 Q2.7344 39.8288 2.2969 40.3132 Q1.8594 40.7976 1.7812 41.6569 L5.0469 41.6569 Q5.0469 40.8444 4.6719 40.3444 Q4.2969 39.8288 3.4844 39.8288 ZM8.8462 45.5163 L7.7837 45.5163 L7.7837 36.3913 L8.8462 36.3913 L8.8462 45.5163 ZM16.9685 39.9069 L15.3435 39.9069 L15.3435 45.5163 L14.2966 45.5163 L14.2966 39.9069 L13.1716 39.9069 L13.1716 39.4069 L14.2966 39.0476 L14.2966 38.6726 Q14.2966 37.4226 14.8435 36.8757 Q15.3904 36.3288 16.3747 36.3288 Q16.7654 36.3288 17.0779 36.4069 Q17.406 36.4694 17.6247 36.5476 L17.3591 37.3757 Q17.156 37.3132 16.906 37.2663 Q16.656 37.2038 16.3904 37.2038 Q15.8591 37.2038 15.5935 37.5632 Q15.3435 37.9069 15.3435 38.6569 L15.3435 39.0788 L16.9685 39.0788 L16.9685 39.9069 ZM18.6746 36.6726 Q18.909 36.6726 19.0965 36.8444 Q19.284 37.0007 19.284 37.3444 Q19.284 37.6726 19.0965 37.8444 Q18.909 38.0163 18.6746 38.0163 Q18.409 38.0163 18.2215 37.8444 Q18.0496 37.6726 18.0496 37.3444 Q18.0496 37.0007 18.2215 36.8444 Q18.409 36.6726 18.6746 36.6726 ZM19.1903 39.0788 L19.1903 45.5163 L18.1278 45.5163 L18.1278 39.0788 L19.1903 39.0788 ZM24.3175 38.9694 Q25.4738 38.9694 26.0519 39.5319 Q26.6457 40.0788 26.6457 41.3288 L26.6457 45.5163 L25.6144 45.5163 L25.6144 41.4069 Q25.6144 39.8601 24.1613 39.8601 Q23.0988 39.8601 22.6925 40.4538 Q22.2863 41.0476 22.2863 42.1726 L22.2863 45.5163 L21.2238 45.5163 L21.2238 39.0788 L22.0832 39.0788 L22.2394 39.9538 L22.3019 39.9538 Q22.6144 39.4538 23.1613 39.2194 Q23.7082 38.9694 24.3175 38.9694 ZM34.0411 45.6413 Q32.838 45.6413 32.1192 44.8132 Q31.4005 43.9694 31.4005 42.3132 Q31.4005 40.6569 32.1192 39.8132 Q32.8536 38.9694 34.0567 38.9694 Q34.8067 38.9694 35.2755 39.2507 Q35.7442 39.5163 36.0411 39.9069 L36.1192 39.9069 Q36.1036 39.7507 36.0724 39.4538 Q36.0411 39.1413 36.0411 38.9694 L36.0411 36.3913 L37.1036 36.3913 L37.1036 45.5163 L36.2599 45.5163 L36.1036 44.6569 L36.0411 44.6569 Q35.7599 45.0632 35.2755 45.3601 Q34.8067 45.6413 34.0411 45.6413 ZM34.213 44.7663 Q35.2286 44.7663 35.6349 44.2038 Q36.0567 43.6413 36.0567 42.5163 L36.0567 42.3288 Q36.0567 41.1257 35.6661 40.4851 Q35.2755 39.8444 34.1974 39.8444 Q33.3536 39.8444 32.9161 40.5319 Q32.4942 41.2038 32.4942 42.3288 Q32.4942 43.4851 32.9161 44.1257 Q33.3536 44.7663 34.213 44.7663 ZM41.6243 38.9694 Q42.4524 38.9694 43.0462 39.3288 Q43.6399 39.6882 43.9524 40.3444 Q44.2805 40.9851 44.2805 41.8757 L44.2805 42.5007 L39.8743 42.5007 Q39.9055 43.5944 40.4368 44.1726 Q40.968 44.7351 41.9212 44.7351 Q42.5462 44.7351 43.0149 44.6257 Q43.4837 44.5007 43.9993 44.2976 L43.9993 45.2194 Q43.4993 45.4382 43.0149 45.5319 Q42.5462 45.6413 41.8743 45.6413 Q40.968 45.6413 40.2649 45.2663 Q39.5618 44.8913 39.1712 44.1569 Q38.7805 43.4226 38.7805 42.3444 Q38.7805 41.2976 39.1399 40.5476 Q39.4993 39.7819 40.1399 39.3757 Q40.7805 38.9694 41.6243 38.9694 ZM41.6087 39.8288 Q40.8587 39.8288 40.4212 40.3132 Q39.9837 40.7976 39.9055 41.6569 L43.1712 41.6569 Q43.1712 40.8444 42.7962 40.3444 Q42.4212 39.8288 41.6087 39.8288 ZM49.5749 36.6726 Q49.8092 36.6726 49.9967 36.8444 Q50.1842 37.0007 50.1842 37.3444 Q50.1842 37.6726 49.9967 37.8444 Q49.8092 38.0163 49.5749 38.0163 Q49.3092 38.0163 49.1217 37.8444 Q48.9499 37.6726 48.9499 37.3444 Q48.9499 37.0007 49.1217 36.8444 Q49.3092 36.6726 49.5749 36.6726 ZM50.0905 39.0788 L50.0905 45.5163 L49.028 45.5163 L49.028 39.0788 L50.0905 39.0788 ZM54.4053 45.6413 Q53.2021 45.6413 52.4834 44.8132 Q51.7646 43.9694 51.7646 42.3132 Q51.7646 40.6569 52.4834 39.8132 Q53.2178 38.9694 54.4209 38.9694 Q55.1709 38.9694 55.6396 39.2507 Q56.1084 39.5163 56.4053 39.9069 L56.4834 39.9069 Q56.4678 39.7507 56.4365 39.4538 Q56.4053 39.1413 56.4053 38.9694 L56.4053 36.3913 L57.4678 36.3913 L57.4678 45.5163 L56.624 45.5163 L56.4678 44.6569 L56.4053 44.6569 Q56.124 45.0632 55.6396 45.3601 Q55.1709 45.6413 54.4053 45.6413 ZM54.5771 44.7663 Q55.5928 44.7663 55.999 44.2038 Q56.4209 43.6413 56.4209 42.5163 L56.4209 42.3288 Q56.4209 41.1257 56.0303 40.4851 Q55.6396 39.8444 54.5615 39.8444 Q53.7178 39.8444 53.2803 40.5319 Q52.8584 41.2038 52.8584 42.3288 Q52.8584 43.4851 53.2803 44.1257 Q53.7178 44.7663 54.5771 44.7663 ZM61.9884 38.9694 Q62.8166 38.9694 63.4103 39.3288 Q64.0041 39.6882 64.3166 40.3444 Q64.6447 40.9851 64.6447 41.8757 L64.6447 42.5007 L60.2384 42.5007 Q60.2697 43.5944 60.8009 44.1726 Q61.3322 44.7351 62.2853 44.7351 Q62.9103 44.7351 63.3791 44.6257 Q63.8478 44.5007 64.3634 44.2976 L64.3634 45.2194 Q63.8634 45.4382 63.3791 45.5319 Q62.9103 45.6413 62.2384 45.6413 Q61.3322 45.6413 60.6291 45.2663 Q59.9259 44.8913 59.5353 44.1569 Q59.1447 43.4226 59.1447 42.3444 Q59.1447 41.2976 59.5041 40.5476 Q59.8634 39.7819 60.5041 39.3757 Q61.1447 38.9694 61.9884 38.9694 ZM61.9728 39.8288 Q61.2228 39.8288 60.7853 40.3132 Q60.3478 40.7976 60.2697 41.6569 L63.5353 41.6569 Q63.5353 40.8444 63.1603 40.3444 Q62.7853 39.8288 61.9728 39.8288 ZM69.3659 38.9694 Q70.5221 38.9694 71.1002 39.5319 Q71.694 40.0788 71.694 41.3288 L71.694 45.5163 L70.6627 45.5163 L70.6627 41.4069 Q70.6627 39.8601 69.2096 39.8601 Q68.1471 39.8601 67.7409 40.4538 Q67.3346 41.0476 67.3346 42.1726 L67.3346 45.5163 L66.2721 45.5163 L66.2721 39.0788 L67.1315 39.0788 L67.2877 39.9538 L67.3502 39.9538 Q67.6627 39.4538 68.2096 39.2194 Q68.7565 38.9694 69.3659 38.9694 ZM75.8444 44.7663 Q76.0788 44.7663 76.3288 44.7351 Q76.5788 44.6882 76.735 44.6413 L76.735 45.4382 Q76.5788 45.5319 76.2663 45.5788 Q75.9538 45.6413 75.6569 45.6413 Q75.1569 45.6413 74.7194 45.4694 Q74.2975 45.2819 74.0319 44.8601 Q73.7819 44.4226 73.7819 43.6413 L73.7819 39.9069 L72.86 39.9069 L72.86 39.3913 L73.7819 38.9694 L74.2038 37.6101 L74.8288 37.6101 L74.8288 39.0788 L76.6882 39.0788 L76.6882 39.9069 L74.8288 39.9069 L74.8288 43.6257 Q74.8288 44.2038 75.11 44.4851 Q75.3913 44.7663 75.8444 44.7663 ZM78.5671 36.6726 Q78.8014 36.6726 78.9889 36.8444 Q79.1764 37.0007 79.1764 37.3444 Q79.1764 37.6726 78.9889 37.8444 Q78.8014 38.0163 78.5671 38.0163 Q78.3014 38.0163 78.1139 37.8444 Q77.9421 37.6726 77.9421 37.3444 Q77.9421 37.0007 78.1139 36.8444 Q78.3014 36.6726 78.5671 36.6726 ZM79.0827 39.0788 L79.0827 45.5163 L78.0202 45.5163 L78.0202 39.0788 L79.0827 39.0788 ZM84.085 39.9069 L82.46 39.9069 L82.46 45.5163 L81.4131 45.5163 L81.4131 39.9069 L80.2881 39.9069 L80.2881 39.4069 L81.4131 39.0476 L81.4131 38.6726 Q81.4131 37.4226 81.96 36.8757 Q82.5068 36.3288 83.4912 36.3288 Q83.8818 36.3288 84.1943 36.4069 Q84.5225 36.4694 84.7412 36.5476 L84.4756 37.3757 Q84.2725 37.3132 84.0225 37.2663 Q83.7725 37.2038 83.5068 37.2038 Q82.9756 37.2038 82.71 37.5632 Q82.46 37.9069 82.46 38.6569 L82.46 39.0788 L84.085 39.0788 L84.085 39.9069 ZM85.7911 36.6726 Q86.0255 36.6726 86.213 36.8444 Q86.4005 37.0007 86.4005 37.3444 Q86.4005 37.6726 86.213 37.8444 Q86.0255 38.0163 85.7911 38.0163 Q85.5255 38.0163 85.338 37.8444 Q85.1661 37.6726 85.1661 37.3444 Q85.1661 37.0007 85.338 36.8444 Q85.5255 36.6726 85.7911 36.6726 ZM86.3067 39.0788 L86.3067 45.5163 L85.2442 45.5163 L85.2442 39.0788 L86.3067 39.0788 ZM90.9184 45.6413 Q90.0746 45.6413 89.4028 45.2976 Q88.7465 44.9382 88.3559 44.2038 Q87.9809 43.4694 87.9809 42.3288 Q87.9809 41.1413 88.3715 40.4069 Q88.7778 39.6569 89.4496 39.3132 Q90.1371 38.9694 90.9965 38.9694 Q91.4809 38.9694 91.934 39.0788 Q92.4028 39.1726 92.684 39.3132 L92.3715 40.1882 Q92.0746 40.0788 91.684 39.9851 Q91.309 39.8913 90.9653 39.8913 Q89.0746 39.8913 89.0746 42.3288 Q89.0746 43.4851 89.5278 44.1101 Q89.9965 44.7194 90.9184 44.7194 Q91.434 44.7194 91.8403 44.6101 Q92.2465 44.5007 92.5746 44.3601 L92.5746 45.2819 Q92.2621 45.4538 91.8715 45.5476 Q91.4809 45.6413 90.9184 45.6413 ZM96.5378 38.9694 Q97.7097 38.9694 98.2722 39.4851 Q98.8503 40.0007 98.8503 41.1413 L98.8503 45.5163 L98.0691 45.5163 L97.8659 44.6101 L97.8191 44.6101 Q97.3972 45.1257 96.9284 45.3913 Q96.4753 45.6413 95.6628 45.6413 Q94.7878 45.6413 94.2097 45.1882 Q93.6316 44.7194 93.6316 43.7351 Q93.6316 42.7663 94.3816 42.2507 Q95.1472 41.7194 96.7253 41.6726 L97.8191 41.6413 L97.8191 41.2507 Q97.8191 40.4538 97.4597 40.1413 Q97.1159 39.8288 96.4753 39.8288 Q95.9753 39.8288 95.5222 39.9851 Q95.0691 40.1257 94.6628 40.3132 L94.3503 39.5319 Q94.7722 39.2976 95.3347 39.1413 Q95.9128 38.9694 96.5378 38.9694 ZM96.8503 42.4069 Q95.6472 42.4538 95.1784 42.7976 Q94.7253 43.1257 94.7253 43.7351 Q94.7253 44.2819 95.0534 44.5319 Q95.3816 44.7819 95.8972 44.7819 Q96.7253 44.7819 97.2566 44.3444 Q97.8034 43.8913 97.8034 42.9538 L97.8034 42.3757 L96.8503 42.4069 ZM103.8324 38.9694 Q104.0199 38.9694 104.223 38.9851 Q104.4417 39.0007 104.598 39.0319 L104.4574 40.0007 Q104.3011 39.9694 104.1136 39.9538 Q103.9261 39.9226 103.7699 39.9226 Q103.2699 39.9226 102.8324 40.2038 Q102.4105 40.4694 102.1449 40.9538 Q101.8949 41.4382 101.8949 42.0788 L101.8949 45.5163 L100.8324 45.5163 L100.8324 39.0788 L101.7074 39.0788 L101.8167 40.2663 L101.8636 40.2663 Q102.1761 39.7351 102.6605 39.3601 Q103.1605 38.9694 103.8324 38.9694 ZM109.9759 43.7351 Q109.9759 44.6726 109.2728 45.1569 Q108.5853 45.6413 107.4134 45.6413 Q106.7415 45.6413 106.2571 45.5319 Q105.7728 45.4226 105.3978 45.2351 L105.3978 44.2663 Q105.7884 44.4538 106.3196 44.6257 Q106.8665 44.7819 107.429 44.7819 Q108.2415 44.7819 108.6009 44.5319 Q108.9603 44.2663 108.9603 43.8288 Q108.9603 43.5944 108.8196 43.4069 Q108.6946 43.2194 108.3509 43.0319 Q108.0071 42.8288 107.3821 42.5944 Q106.7571 42.3444 106.304 42.1101 Q105.8665 41.8757 105.6165 41.5476 Q105.3821 41.2038 105.3821 40.6726 Q105.3821 39.8601 106.0384 39.4226 Q106.7103 38.9694 107.804 38.9694 Q108.3821 38.9694 108.8821 39.0788 Q109.3978 39.1882 109.8509 39.3913 L109.4915 40.2351 Q109.0853 40.0632 108.6321 39.9538 Q108.1946 39.8288 107.7259 39.8288 Q107.0696 39.8288 106.7259 40.0476 Q106.3978 40.2507 106.3978 40.6101 Q106.3978 40.8757 106.554 41.0632 Q106.7103 41.2507 107.0696 41.4226 Q107.429 41.5944 108.054 41.8288 Q108.6634 42.0632 109.0853 42.3132 Q109.5228 42.5476 109.7415 42.8913 Q109.9759 43.2194 109.9759 43.7351 ZM114.0208 38.9694 Q114.8489 38.9694 115.4427 39.3288 Q116.0364 39.6882 116.3489 40.3444 Q116.6771 40.9851 116.6771 41.8757 L116.6771 42.5007 L112.2708 42.5007 Q112.3021 43.5944 112.8333 44.1726 Q113.3646 44.7351 114.3177 44.7351 Q114.9427 44.7351 115.4114 44.6257 Q115.8802 44.5007 116.3958 44.2976 L116.3958 45.2194 Q115.8958 45.4382 115.4114 45.5319 Q114.9427 45.6413 114.2708 45.6413 Q113.3646 45.6413 112.6614 45.2663 Q111.9583 44.8913 111.5677 44.1569 Q111.1771 43.4226 111.1771 42.3444 Q111.1771 41.2976 111.5364 40.5476 Q111.8958 39.7819 112.5364 39.3757 Q113.1771 38.9694 114.0208 38.9694 ZM114.0052 39.8288 Q113.2552 39.8288 112.8177 40.3132 Q112.3802 40.7976 112.3021 41.6569 L115.5677 41.6569 Q115.5677 40.8444 115.1927 40.3444 Q114.8177 39.8288 114.0052 39.8288 ZM123.9089 38.9694 Q124.737 38.9694 125.3308 39.3288 Q125.9245 39.6882 126.237 40.3444 Q126.5651 40.9851 126.5651 41.8757 L126.5651 42.5007 L122.1589 42.5007 Q122.1901 43.5944 122.7214 44.1726 Q123.2526 44.7351 124.2058 44.7351 Q124.8308 44.7351 125.2995 44.6257 Q125.7683 44.5007 126.2839 44.2976 L126.2839 45.2194 Q125.7839 45.4382 125.2995 45.5319 Q124.8308 45.6413 124.1589 45.6413 Q123.2526 45.6413 122.5495 45.2663 Q121.8464 44.8913 121.4558 44.1569 Q121.0651 43.4226 121.0651 42.3444 Q121.0651 41.2976 121.4245 40.5476 Q121.7839 39.7819 122.4245 39.3757 Q123.0651 38.9694 123.9089 38.9694 ZM123.8933 39.8288 Q123.1433 39.8288 122.7058 40.3132 Q122.2683 40.7976 122.1901 41.6569 L125.4558 41.6569 Q125.4558 40.8444 125.0808 40.3444 Q124.7058 39.8288 123.8933 39.8288 ZM131.2863 38.9694 Q132.4426 38.9694 133.0207 39.5319 Q133.6144 40.0788 133.6144 41.3288 L133.6144 45.5163 L132.5832 45.5163 L132.5832 41.4069 Q132.5832 39.8601 131.1301 39.8601 Q130.0676 39.8601 129.6613 40.4538 Q129.2551 41.0476 129.2551 42.1726 L129.2551 45.5163 L128.1926 45.5163 L128.1926 39.0788 L129.0519 39.0788 L129.2082 39.9538 L129.2707 39.9538 Q129.5832 39.4538 130.1301 39.2194 Q130.6769 38.9694 131.2863 38.9694 ZM137.7649 44.7663 Q137.9992 44.7663 138.2492 44.7351 Q138.4992 44.6882 138.6555 44.6413 L138.6555 45.4382 Q138.4992 45.5319 138.1867 45.5788 Q137.8742 45.6413 137.5774 45.6413 Q137.0774 45.6413 136.6399 45.4694 Q136.218 45.2819 135.9524 44.8601 Q135.7024 44.4226 135.7024 43.6413 L135.7024 39.9069 L134.7805 39.9069 L134.7805 39.3913 L135.7024 38.9694 L136.1242 37.6101 L136.7492 37.6101 L136.7492 39.0788 L138.6086 39.0788 L138.6086 39.9069 L136.7492 39.9069 L136.7492 43.6257 Q136.7492 44.2038 137.0305 44.4851 Q137.3117 44.7663 137.7649 44.7663 ZM142.9406 38.9694 Q143.1281 38.9694 143.3313 38.9851 Q143.55 39.0007 143.7063 39.0319 L143.5656 40.0007 Q143.4094 39.9694 143.2219 39.9538 Q143.0344 39.9226 142.8781 39.9226 Q142.3781 39.9226 141.9406 40.2038 Q141.5188 40.4694 141.2531 40.9538 Q141.0031 41.4382 141.0031 42.0788 L141.0031 45.5163 L139.9406 45.5163 L139.9406 39.0788 L140.8156 39.0788 L140.925 40.2663 L140.9719 40.2663 Q141.2844 39.7351 141.7688 39.3601 Q142.2688 38.9694 142.9406 38.9694 ZM147.3811 38.9694 Q148.2092 38.9694 148.8029 39.3288 Q149.3967 39.6882 149.7092 40.3444 Q150.0373 40.9851 150.0373 41.8757 L150.0373 42.5007 L145.6311 42.5007 Q145.6623 43.5944 146.1936 44.1726 Q146.7248 44.7351 147.6779 44.7351 Q148.3029 44.7351 148.7717 44.6257 Q149.2404 44.5007 149.7561 44.2976 L149.7561 45.2194 Q149.2561 45.4382 148.7717 45.5319 Q148.3029 45.6413 147.6311 45.6413 Q146.7248 45.6413 146.0217 45.2663 Q145.3186 44.8913 144.9279 44.1569 Q144.5373 43.4226 144.5373 42.3444 Q144.5373 41.2976 144.8967 40.5476 Q145.2561 39.7819 145.8967 39.3757 Q146.5373 38.9694 147.3811 38.9694 ZM147.3654 39.8288 Q146.6154 39.8288 146.1779 40.3132 Q145.7404 40.7976 145.6623 41.6569 L148.9279 41.6569 Q148.9279 40.8444 148.5529 40.3444 Q148.1779 39.8288 147.3654 39.8288 ZM157.2691 38.9694 Q158.0973 38.9694 158.691 39.3288 Q159.2848 39.6882 159.5973 40.3444 Q159.9254 40.9851 159.9254 41.8757 L159.9254 42.5007 L155.5191 42.5007 Q155.5504 43.5944 156.0816 44.1726 Q156.6129 44.7351 157.566 44.7351 Q158.191 44.7351 158.6598 44.6257 Q159.1285 44.5007 159.6441 44.2976 L159.6441 45.2194 Q159.1441 45.4382 158.6598 45.5319 Q158.191 45.6413 157.5191 45.6413 Q156.6129 45.6413 155.9098 45.2663 Q155.2066 44.8913 154.816 44.1569 Q154.4254 43.4226 154.4254 42.3444 Q154.4254 41.2976 154.7848 40.5476 Q155.1441 39.7819 155.7848 39.3757 Q156.4254 38.9694 157.2691 38.9694 ZM157.2535 39.8288 Q156.5035 39.8288 156.066 40.3132 Q155.6285 40.7976 155.5504 41.6569 L158.816 41.6569 Q158.816 40.8444 158.441 40.3444 Q158.066 39.8288 157.2535 39.8288 ZM162.6153 45.5163 L161.5528 45.5163 L161.5528 36.3913 L162.6153 36.3913 L162.6153 45.5163 ZM165.7113 45.5163 L164.6488 45.5163 L164.6488 36.3913 L165.7113 36.3913 L165.7113 45.5163 ZM173.3386 42.2819 Q173.3386 43.8913 172.5261 44.7663 Q171.7136 45.6413 170.3386 45.6413 Q169.4949 45.6413 168.823 45.2507 Q168.1511 44.8601 167.7605 44.1101 Q167.3855 43.3601 167.3855 42.2819 Q167.3855 40.6882 168.1824 39.8288 Q168.9949 38.9694 170.3699 38.9694 Q171.2605 38.9694 171.9167 39.3601 Q172.5886 39.7507 172.9636 40.4851 Q173.3386 41.2194 173.3386 42.2819 ZM168.4792 42.2819 Q168.4792 43.4226 168.9324 44.0944 Q169.3855 44.7663 170.3699 44.7663 Q171.3386 44.7663 171.7917 44.0944 Q172.2449 43.4226 172.2449 42.2819 Q172.2449 41.1413 171.7917 40.5007 Q171.3386 39.8601 170.3542 39.8601 Q169.3699 39.8601 168.9167 40.5007 Q168.4792 41.1413 168.4792 42.2819 ZM179.1924 43.7351 Q179.1924 44.6726 178.4893 45.1569 Q177.8018 45.6413 176.6299 45.6413 Q175.958 45.6413 175.4737 45.5319 Q174.9893 45.4226 174.6143 45.2351 L174.6143 44.2663 Q175.0049 44.4538 175.5362 44.6257 Q176.083 44.7819 176.6455 44.7819 Q177.458 44.7819 177.8174 44.5319 Q178.1768 44.2663 178.1768 43.8288 Q178.1768 43.5944 178.0362 43.4069 Q177.9112 43.2194 177.5674 43.0319 Q177.2237 42.8288 176.5987 42.5944 Q175.9737 42.3444 175.5205 42.1101 Q175.083 41.8757 174.833 41.5476 Q174.5987 41.2038 174.5987 40.6726 Q174.5987 39.8601 175.2549 39.4226 Q175.9268 38.9694 177.0205 38.9694 Q177.5987 38.9694 178.0987 39.0788 Q178.6143 39.1882 179.0674 39.3913 L178.708 40.2351 Q178.3018 40.0632 177.8487 39.9538 Q177.4112 39.8288 176.9424 39.8288 Q176.2862 39.8288 175.9424 40.0476 Q175.6143 40.2507 175.6143 40.6101 Q175.6143 40.8757 175.7705 41.0632 Q175.9268 41.2507 176.2862 41.4226 Q176.6455 41.5944 177.2705 41.8288 Q177.8799 42.0632 178.3018 42.3132 Q178.7393 42.5476 178.958 42.8913 Q179.1924 43.2194 179.1924 43.7351 ZM182.0342 44.2507 Q181.878 44.8913 181.5811 45.6569 Q181.2998 46.4226 181.003 47.0632 L180.2217 47.0632 Q180.3936 46.3757 180.5655 45.5632 Q180.753 44.7507 180.8311 44.1257 L181.9561 44.1257 L182.0342 44.2507 ZM189.3703 45.6413 Q188.1671 45.6413 187.4484 44.8132 Q186.7296 43.9694 186.7296 42.3132 Q186.7296 40.6569 187.4484 39.8132 Q188.1828 38.9694 189.3859 38.9694 Q190.1359 38.9694 190.6046 39.2507 Q191.0734 39.5163 191.3703 39.9069 L191.4484 39.9069 Q191.4328 39.7507 191.4015 39.4538 Q191.3703 39.1413 191.3703 38.9694 L191.3703 36.3913 L192.4328 36.3913 L192.4328 45.5163 L191.589 45.5163 L191.4328 44.6569 L191.3703 44.6569 Q191.089 45.0632 190.6046 45.3601 Q190.1359 45.6413 189.3703 45.6413 ZM189.5421 44.7663 Q190.5578 44.7663 190.964 44.2038 Q191.3859 43.6413 191.3859 42.5163 L191.3859 42.3288 Q191.3859 41.1257 190.9953 40.4851 Q190.6046 39.8444 189.5265 39.8444 Q188.6828 39.8444 188.2453 40.5319 Q187.8234 41.2038 187.8234 42.3288 Q187.8234 43.4851 188.2453 44.1257 Q188.6828 44.7663 189.5421 44.7663 ZM196.9534 38.9694 Q197.7816 38.9694 198.3753 39.3288 Q198.9691 39.6882 199.2816 40.3444 Q199.6097 40.9851 199.6097 41.8757 L199.6097 42.5007 L195.2034 42.5007 Q195.2347 43.5944 195.7659 44.1726 Q196.2972 44.7351 197.2503 44.7351 Q197.8753 44.7351 198.3441 44.6257 Q198.8128 44.5007 199.3284 44.2976 L199.3284 45.2194 Q198.8284 45.4382 198.3441 45.5319 Q197.8753 45.6413 197.2034 45.6413 Q196.2972 45.6413 195.5941 45.2663 Q194.8909 44.8913 194.5003 44.1569 Q194.1097 43.4226 194.1097 42.3444 Q194.1097 41.2976 194.4691 40.5476 Q194.8284 39.7819 195.4691 39.3757 Q196.1097 38.9694 196.9534 38.9694 ZM196.9378 39.8288 Q196.1878 39.8288 195.7503 40.3132 Q195.3128 40.7976 195.2347 41.6569 L198.5003 41.6569 Q198.5003 40.8444 198.1253 40.3444 Q197.7503 39.8288 196.9378 39.8288 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1229.0718,156.3153)"
+    ><path d="M3.9844 56.2511 L2.3594 56.2511 L2.3594 61.8604 L1.3125 61.8604 L1.3125 56.2511 L0.1875 56.2511 L0.1875 55.7511 L1.3125 55.3917 L1.3125 55.0167 Q1.3125 53.7667 1.8594 53.2198 Q2.4062 52.6729 3.3906 52.6729 Q3.7812 52.6729 4.0938 52.7511 Q4.4219 52.8136 4.6406 52.8917 L4.375 53.7198 Q4.1719 53.6573 3.9219 53.6104 Q3.6719 53.5479 3.4062 53.5479 Q2.875 53.5479 2.6094 53.9073 Q2.3594 54.2511 2.3594 55.0011 L2.3594 55.4229 L3.9844 55.4229 L3.9844 56.2511 ZM10.7374 58.6261 Q10.7374 60.2354 9.9249 61.1104 Q9.1124 61.9854 7.7374 61.9854 Q6.8937 61.9854 6.2218 61.5948 Q5.5499 61.2042 5.1593 60.4542 Q4.7843 59.7042 4.7843 58.6261 Q4.7843 57.0323 5.5812 56.1729 Q6.3937 55.3136 7.7687 55.3136 Q8.6593 55.3136 9.3155 55.7042 Q9.9874 56.0948 10.3624 56.8292 Q10.7374 57.5636 10.7374 58.6261 ZM5.878 58.6261 Q5.878 59.7667 6.3312 60.4386 Q6.7843 61.1104 7.7687 61.1104 Q8.7374 61.1104 9.1905 60.4386 Q9.6437 59.7667 9.6437 58.6261 Q9.6437 57.4854 9.1905 56.8448 Q8.7374 56.2042 7.753 56.2042 Q6.7687 56.2042 6.3155 56.8448 Q5.878 57.4854 5.878 58.6261 ZM15.4037 55.3136 Q15.5912 55.3136 15.7943 55.3292 Q16.0131 55.3448 16.1693 55.3761 L16.0287 56.3448 Q15.8725 56.3136 15.685 56.2979 Q15.4975 56.2667 15.3412 56.2667 Q14.8412 56.2667 14.4037 56.5479 Q13.9818 56.8136 13.7162 57.2979 Q13.4662 57.7823 13.4662 58.4229 L13.4662 61.8604 L12.4037 61.8604 L12.4037 55.4229 L13.2787 55.4229 L13.3881 56.6104 L13.435 56.6104 Q13.7475 56.0792 14.2318 55.7042 Q14.7318 55.3136 15.4037 55.3136 ZM24.4223 55.3136 Q25.516 55.3136 26.0473 55.8761 Q26.5941 56.4229 26.5941 57.6729 L26.5941 61.8604 L25.5473 61.8604 L25.5473 57.7198 Q25.5473 56.2042 24.2348 56.2042 Q23.2973 56.2042 22.891 56.7511 Q22.5004 57.2823 22.5004 58.3136 L22.5004 61.8604 L21.4535 61.8604 L21.4535 57.7198 Q21.4535 56.2042 20.141 56.2042 Q19.1566 56.2042 18.7816 56.7979 Q18.4223 57.3917 18.4223 58.5167 L18.4223 61.8604 L17.3598 61.8604 L17.3598 55.4229 L18.2191 55.4229 L18.3754 56.2979 L18.4379 56.2979 Q18.7348 55.7979 19.2348 55.5636 Q19.7504 55.3136 20.3285 55.3136 Q21.8441 55.3136 22.2973 56.3917 L22.3598 56.3917 Q22.6879 55.8292 23.2348 55.5792 Q23.7973 55.3136 24.4223 55.3136 ZM31.0173 55.3136 Q32.1892 55.3136 32.7517 55.8292 Q33.3298 56.3448 33.3298 57.4854 L33.3298 61.8604 L32.5486 61.8604 L32.3455 60.9542 L32.2986 60.9542 Q31.8767 61.4698 31.408 61.7354 Q30.9548 61.9854 30.1423 61.9854 Q29.2673 61.9854 28.6892 61.5323 Q28.1111 61.0636 28.1111 60.0792 Q28.1111 59.1104 28.8611 58.5948 Q29.6267 58.0636 31.2048 58.0167 L32.2986 57.9854 L32.2986 57.5948 Q32.2986 56.7979 31.9392 56.4854 Q31.5955 56.1729 30.9548 56.1729 Q30.4548 56.1729 30.0017 56.3292 Q29.5486 56.4698 29.1423 56.6573 L28.8298 55.8761 Q29.2517 55.6417 29.8142 55.4854 Q30.3923 55.3136 31.0173 55.3136 ZM31.3298 58.7511 Q30.1267 58.7979 29.658 59.1417 Q29.2048 59.4698 29.2048 60.0792 Q29.2048 60.6261 29.533 60.8761 Q29.8611 61.1261 30.3767 61.1261 Q31.2048 61.1261 31.7361 60.6886 Q32.283 60.2354 32.283 59.2979 L32.283 58.7198 L31.3298 58.7511 ZM38.9788 53.0167 Q39.2132 53.0167 39.4007 53.1886 Q39.5882 53.3448 39.5882 53.6886 Q39.5882 54.0167 39.4007 54.1886 Q39.2132 54.3604 38.9788 54.3604 Q38.7132 54.3604 38.5257 54.1886 Q38.3538 54.0167 38.3538 53.6886 Q38.3538 53.3448 38.5257 53.1886 Q38.7132 53.0167 38.9788 53.0167 ZM39.4944 55.4229 L39.4944 61.8604 L38.4319 61.8604 L38.4319 55.4229 L39.4944 55.4229 ZM44.6217 55.3136 Q45.7779 55.3136 46.356 55.8761 Q46.9498 56.4229 46.9498 57.6729 L46.9498 61.8604 L45.9185 61.8604 L45.9185 57.7511 Q45.9185 56.2042 44.4654 56.2042 Q43.4029 56.2042 42.9967 56.7979 Q42.5904 57.3917 42.5904 58.5167 L42.5904 61.8604 L41.5279 61.8604 L41.5279 55.4229 L42.3873 55.4229 L42.5435 56.2979 L42.606 56.2979 Q42.9185 55.7979 43.4654 55.5636 Q44.0123 55.3136 44.6217 55.3136 ZM51.1002 61.1104 Q51.3346 61.1104 51.5846 61.0792 Q51.8346 61.0323 51.9908 60.9854 L51.9908 61.7823 Q51.8346 61.8761 51.5221 61.9229 Q51.2096 61.9854 50.9127 61.9854 Q50.4127 61.9854 49.9752 61.8136 Q49.5533 61.6261 49.2877 61.2042 Q49.0377 60.7667 49.0377 59.9854 L49.0377 56.2511 L48.1158 56.2511 L48.1158 55.7354 L49.0377 55.3136 L49.4596 53.9542 L50.0846 53.9542 L50.0846 55.4229 L51.944 55.4229 L51.944 56.2511 L50.0846 56.2511 L50.0846 59.9698 Q50.0846 60.5479 50.3658 60.8292 Q50.6471 61.1104 51.1002 61.1104 ZM55.7604 55.3136 Q56.5885 55.3136 57.1823 55.6729 Q57.776 56.0323 58.0885 56.6886 Q58.4166 57.3292 58.4166 58.2198 L58.4166 58.8448 L54.0104 58.8448 Q54.0416 59.9386 54.5729 60.5167 Q55.1041 61.0792 56.0573 61.0792 Q56.6823 61.0792 57.151 60.9698 Q57.6198 60.8448 58.1354 60.6417 L58.1354 61.5636 Q57.6354 61.7823 57.151 61.8761 Q56.6823 61.9854 56.0104 61.9854 Q55.1041 61.9854 54.401 61.6104 Q53.6979 61.2354 53.3073 60.5011 Q52.9166 59.7667 52.9166 58.6886 Q52.9166 57.6417 53.276 56.8917 Q53.6354 56.1261 54.276 55.7198 Q54.9166 55.3136 55.7604 55.3136 ZM55.7448 56.1729 Q54.9948 56.1729 54.5573 56.6573 Q54.1198 57.1417 54.0416 58.0011 L57.3073 58.0011 Q57.3073 57.1886 56.9323 56.6886 Q56.5573 56.1729 55.7448 56.1729 ZM63.0441 55.3136 Q63.2316 55.3136 63.4347 55.3292 Q63.6534 55.3448 63.8097 55.3761 L63.6691 56.3448 Q63.5128 56.3136 63.3253 56.2979 Q63.1378 56.2667 62.9816 56.2667 Q62.4816 56.2667 62.0441 56.5479 Q61.6222 56.8136 61.3566 57.2979 Q61.1066 57.7823 61.1066 58.4229 L61.1066 61.8604 L60.0441 61.8604 L60.0441 55.4229 L60.9191 55.4229 L61.0284 56.6104 L61.0753 56.6104 Q61.3878 56.0792 61.8722 55.7042 Q62.3722 55.3136 63.0441 55.3136 ZM68.0938 55.3136 Q69.2501 55.3136 69.8282 55.8761 Q70.422 56.4229 70.422 57.6729 L70.422 61.8604 L69.3907 61.8604 L69.3907 57.7511 Q69.3907 56.2042 67.9376 56.2042 Q66.8751 56.2042 66.4688 56.7979 Q66.0626 57.3917 66.0626 58.5167 L66.0626 61.8604 L65.0001 61.8604 L65.0001 55.4229 L65.8595 55.4229 L66.0157 56.2979 L66.0782 56.2979 Q66.3907 55.7979 66.9376 55.5636 Q67.4845 55.3136 68.0938 55.3136 ZM74.8536 55.3136 Q76.0255 55.3136 76.588 55.8292 Q77.1661 56.3448 77.1661 57.4854 L77.1661 61.8604 L76.3849 61.8604 L76.1818 60.9542 L76.1349 60.9542 Q75.713 61.4698 75.2443 61.7354 Q74.7911 61.9854 73.9786 61.9854 Q73.1036 61.9854 72.5255 61.5323 Q71.9474 61.0636 71.9474 60.0792 Q71.9474 59.1104 72.6974 58.5948 Q73.463 58.0636 75.0411 58.0167 L76.1349 57.9854 L76.1349 57.5948 Q76.1349 56.7979 75.7755 56.4854 Q75.4318 56.1729 74.7911 56.1729 Q74.2911 56.1729 73.838 56.3292 Q73.3849 56.4698 72.9786 56.6573 L72.6661 55.8761 Q73.088 55.6417 73.6505 55.4854 Q74.2286 55.3136 74.8536 55.3136 ZM75.1661 58.7511 Q73.963 58.7979 73.4943 59.1417 Q73.0411 59.4698 73.0411 60.0792 Q73.0411 60.6261 73.3693 60.8761 Q73.6974 61.1261 74.213 61.1261 Q75.0411 61.1261 75.5724 60.6886 Q76.1193 60.2354 76.1193 59.2979 L76.1193 58.7198 L75.1661 58.7511 ZM80.4294 60.5948 Q80.2732 61.2354 79.9763 62.0011 Q79.6951 62.7667 79.3982 63.4073 L78.6169 63.4073 Q78.7888 62.7198 78.9607 61.9073 Q79.1482 61.0948 79.2263 60.4698 L80.3513 60.4698 L80.4294 60.5948 ZM87.9686 55.3136 Q88.7967 55.3136 89.3905 55.6729 Q89.9842 56.0323 90.2967 56.6886 Q90.6248 57.3292 90.6248 58.2198 L90.6248 58.8448 L86.2186 58.8448 Q86.2498 59.9386 86.7811 60.5167 Q87.3123 61.0792 88.2655 61.0792 Q88.8905 61.0792 89.3592 60.9698 Q89.828 60.8448 90.3436 60.6417 L90.3436 61.5636 Q89.8436 61.7823 89.3592 61.8761 Q88.8905 61.9854 88.2186 61.9854 Q87.3123 61.9854 86.6092 61.6104 Q85.9061 61.2354 85.5155 60.5011 Q85.1248 59.7667 85.1248 58.6886 Q85.1248 57.6417 85.4842 56.8917 Q85.8436 56.1261 86.4842 55.7198 Q87.1248 55.3136 87.9686 55.3136 ZM87.953 56.1729 Q87.203 56.1729 86.7655 56.6573 Q86.328 57.1417 86.2498 58.0011 L89.5155 58.0011 Q89.5155 57.1886 89.1405 56.6886 Q88.7655 56.1729 87.953 56.1729 ZM95.9192 53.0167 Q96.1535 53.0167 96.341 53.1886 Q96.5285 53.3448 96.5285 53.6886 Q96.5285 54.0167 96.341 54.1886 Q96.1535 54.3604 95.9192 54.3604 Q95.6535 54.3604 95.466 54.1886 Q95.2942 54.0167 95.2942 53.6886 Q95.2942 53.3448 95.466 53.1886 Q95.6535 53.0167 95.9192 53.0167 ZM96.4348 55.4229 L96.4348 61.8604 L95.3723 61.8604 L95.3723 55.4229 L96.4348 55.4229 ZM100.7496 61.9854 Q99.5464 61.9854 98.8277 61.1573 Q98.1089 60.3136 98.1089 58.6573 Q98.1089 57.0011 98.8277 56.1573 Q99.5621 55.3136 100.7652 55.3136 Q101.5152 55.3136 101.9839 55.5948 Q102.4527 55.8604 102.7496 56.2511 L102.8277 56.2511 Q102.8121 56.0948 102.7808 55.7979 Q102.7496 55.4854 102.7496 55.3136 L102.7496 52.7354 L103.8121 52.7354 L103.8121 61.8604 L102.9683 61.8604 L102.8121 61.0011 L102.7496 61.0011 Q102.4683 61.4073 101.9839 61.7042 Q101.5152 61.9854 100.7496 61.9854 ZM100.9214 61.1104 Q101.9371 61.1104 102.3433 60.5479 Q102.7652 59.9854 102.7652 58.8604 L102.7652 58.6729 Q102.7652 57.4698 102.3746 56.8292 Q101.9839 56.1886 100.9058 56.1886 Q100.0621 56.1886 99.6246 56.8761 Q99.2027 57.5479 99.2027 58.6729 Q99.2027 59.8292 99.6246 60.4698 Q100.0621 61.1104 100.9214 61.1104 ZM108.3327 55.3136 Q109.1609 55.3136 109.7546 55.6729 Q110.3484 56.0323 110.6609 56.6886 Q110.989 57.3292 110.989 58.2198 L110.989 58.8448 L106.5827 58.8448 Q106.614 59.9386 107.1452 60.5167 Q107.6765 61.0792 108.6296 61.0792 Q109.2546 61.0792 109.7234 60.9698 Q110.1921 60.8448 110.7077 60.6417 L110.7077 61.5636 Q110.2077 61.7823 109.7234 61.8761 Q109.2546 61.9854 108.5827 61.9854 Q107.6765 61.9854 106.9734 61.6104 Q106.2702 61.2354 105.8796 60.5011 Q105.489 59.7667 105.489 58.6886 Q105.489 57.6417 105.8484 56.8917 Q106.2077 56.1261 106.8484 55.7198 Q107.489 55.3136 108.3327 55.3136 ZM108.3171 56.1729 Q107.5671 56.1729 107.1296 56.6573 Q106.6921 57.1417 106.614 58.0011 L109.8796 58.0011 Q109.8796 57.1886 109.5046 56.6886 Q109.1296 56.1729 108.3171 56.1729 ZM115.7102 55.3136 Q116.8664 55.3136 117.4445 55.8761 Q118.0383 56.4229 118.0383 57.6729 L118.0383 61.8604 L117.007 61.8604 L117.007 57.7511 Q117.007 56.2042 115.5539 56.2042 Q114.4914 56.2042 114.0852 56.7979 Q113.6789 57.3917 113.6789 58.5167 L113.6789 61.8604 L112.6164 61.8604 L112.6164 55.4229 L113.4758 55.4229 L113.632 56.2979 L113.6945 56.2979 Q114.007 55.7979 114.5539 55.5636 Q115.1008 55.3136 115.7102 55.3136 ZM122.1887 61.1104 Q122.4231 61.1104 122.6731 61.0792 Q122.9231 61.0323 123.0793 60.9854 L123.0793 61.7823 Q122.9231 61.8761 122.6106 61.9229 Q122.2981 61.9854 122.0012 61.9854 Q121.5012 61.9854 121.0637 61.8136 Q120.6418 61.6261 120.3762 61.2042 Q120.1262 60.7667 120.1262 59.9854 L120.1262 56.2511 L119.2043 56.2511 L119.2043 55.7354 L120.1262 55.3136 L120.5481 53.9542 L121.1731 53.9542 L121.1731 55.4229 L123.0325 55.4229 L123.0325 56.2511 L121.1731 56.2511 L121.1731 59.9698 Q121.1731 60.5479 121.4543 60.8292 Q121.7356 61.1104 122.1887 61.1104 ZM124.9114 53.0167 Q125.1458 53.0167 125.3333 53.1886 Q125.5208 53.3448 125.5208 53.6886 Q125.5208 54.0167 125.3333 54.1886 Q125.1458 54.3604 124.9114 54.3604 Q124.6458 54.3604 124.4583 54.1886 Q124.2864 54.0167 124.2864 53.6886 Q124.2864 53.3448 124.4583 53.1886 Q124.6458 53.0167 124.9114 53.0167 ZM125.427 55.4229 L125.427 61.8604 L124.3645 61.8604 L124.3645 55.4229 L125.427 55.4229 ZM130.4293 56.2511 L128.8043 56.2511 L128.8043 61.8604 L127.7574 61.8604 L127.7574 56.2511 L126.6324 56.2511 L126.6324 55.7511 L127.7574 55.3917 L127.7574 55.0167 Q127.7574 53.7667 128.3043 53.2198 Q128.8512 52.6729 129.8355 52.6729 Q130.2262 52.6729 130.5387 52.7511 Q130.8668 52.8136 131.0855 52.8917 L130.8199 53.7198 Q130.6168 53.6573 130.3668 53.6104 Q130.1168 53.5479 129.8512 53.5479 Q129.3199 53.5479 129.0543 53.9073 Q128.8043 54.2511 128.8043 55.0011 L128.8043 55.4229 L130.4293 55.4229 L130.4293 56.2511 ZM132.1354 53.0167 Q132.3698 53.0167 132.5573 53.1886 Q132.7448 53.3448 132.7448 53.6886 Q132.7448 54.0167 132.5573 54.1886 Q132.3698 54.3604 132.1354 54.3604 Q131.8698 54.3604 131.6823 54.1886 Q131.5104 54.0167 131.5104 53.6886 Q131.5104 53.3448 131.6823 53.1886 Q131.8698 53.0167 132.1354 53.0167 ZM132.6511 55.4229 L132.6511 61.8604 L131.5886 61.8604 L131.5886 55.4229 L132.6511 55.4229 ZM137.2627 61.9854 Q136.419 61.9854 135.7471 61.6417 Q135.0908 61.2823 134.7002 60.5479 Q134.3252 59.8136 134.3252 58.6729 Q134.3252 57.4854 134.7158 56.7511 Q135.1221 56.0011 135.794 55.6573 Q136.4815 55.3136 137.3408 55.3136 Q137.8252 55.3136 138.2783 55.4229 Q138.7471 55.5167 139.0283 55.6573 L138.7158 56.5323 Q138.419 56.4229 138.0283 56.3292 Q137.6533 56.2354 137.3096 56.2354 Q135.419 56.2354 135.419 58.6729 Q135.419 59.8292 135.8721 60.4542 Q136.3408 61.0636 137.2627 61.0636 Q137.7783 61.0636 138.1846 60.9542 Q138.5908 60.8448 138.919 60.7042 L138.919 61.6261 Q138.6065 61.7979 138.2158 61.8917 Q137.8252 61.9854 137.2627 61.9854 ZM142.8821 55.3136 Q144.054 55.3136 144.6165 55.8292 Q145.1946 56.3448 145.1946 57.4854 L145.1946 61.8604 L144.4134 61.8604 L144.2103 60.9542 L144.1634 60.9542 Q143.7415 61.4698 143.2728 61.7354 Q142.8196 61.9854 142.0071 61.9854 Q141.1321 61.9854 140.554 61.5323 Q139.9759 61.0636 139.9759 60.0792 Q139.9759 59.1104 140.7259 58.5948 Q141.4915 58.0636 143.0696 58.0167 L144.1634 57.9854 L144.1634 57.5948 Q144.1634 56.7979 143.804 56.4854 Q143.4603 56.1729 142.8196 56.1729 Q142.3196 56.1729 141.8665 56.3292 Q141.4134 56.4698 141.0071 56.6573 L140.6946 55.8761 Q141.1165 55.6417 141.679 55.4854 Q142.2571 55.3136 142.8821 55.3136 ZM143.1946 58.7511 Q141.9915 58.7979 141.5228 59.1417 Q141.0696 59.4698 141.0696 60.0792 Q141.0696 60.6261 141.3978 60.8761 Q141.7259 61.1261 142.2415 61.1261 Q143.0696 61.1261 143.6009 60.6886 Q144.1478 60.2354 144.1478 59.2979 L144.1478 58.7198 L143.1946 58.7511 ZM150.1767 55.3136 Q150.3642 55.3136 150.5673 55.3292 Q150.786 55.3448 150.9423 55.3761 L150.8017 56.3448 Q150.6454 56.3136 150.4579 56.2979 Q150.2704 56.2667 150.1142 56.2667 Q149.6142 56.2667 149.1767 56.5479 Q148.7548 56.8136 148.4892 57.2979 Q148.2392 57.7823 148.2392 58.4229 L148.2392 61.8604 L147.1767 61.8604 L147.1767 55.4229 L148.0517 55.4229 L148.161 56.6104 L148.2079 56.6104 Q148.5204 56.0792 149.0048 55.7042 Q149.5048 55.3136 150.1767 55.3136 ZM157.6902 55.3136 Q158.8621 55.3136 159.4246 55.8292 Q160.0027 56.3448 160.0027 57.4854 L160.0027 61.8604 L159.2215 61.8604 L159.0184 60.9542 L158.9715 60.9542 Q158.5496 61.4698 158.0809 61.7354 Q157.6277 61.9854 156.8152 61.9854 Q155.9402 61.9854 155.3621 61.5323 Q154.784 61.0636 154.784 60.0792 Q154.784 59.1104 155.534 58.5948 Q156.2996 58.0636 157.8777 58.0167 L158.9715 57.9854 L158.9715 57.5948 Q158.9715 56.7979 158.6121 56.4854 Q158.2684 56.1729 157.6277 56.1729 Q157.1277 56.1729 156.6746 56.3292 Q156.2215 56.4698 155.8152 56.6573 L155.5027 55.8761 Q155.9246 55.6417 156.4871 55.4854 Q157.0652 55.3136 157.6902 55.3136 ZM158.0027 58.7511 Q156.7996 58.7979 156.3309 59.1417 Q155.8777 59.4698 155.8777 60.0792 Q155.8777 60.6261 156.2059 60.8761 Q156.534 61.1261 157.0496 61.1261 Q157.8777 61.1261 158.409 60.6886 Q158.9559 60.2354 158.9559 59.2979 L158.9559 58.7198 L158.0027 58.7511 ZM166.1673 61.8604 L165.1048 61.8604 L165.1048 52.7354 L166.1673 52.7354 L166.1673 61.8604 ZM173.7946 58.6261 Q173.7946 60.2354 172.9821 61.1104 Q172.1696 61.9854 170.7946 61.9854 Q169.9508 61.9854 169.2789 61.5948 Q168.6071 61.2042 168.2164 60.4542 Q167.8414 59.7042 167.8414 58.6261 Q167.8414 57.0323 168.6383 56.1729 Q169.4508 55.3136 170.8258 55.3136 Q171.7164 55.3136 172.3727 55.7042 Q173.0446 56.0948 173.4196 56.8292 Q173.7946 57.5636 173.7946 58.6261 ZM168.9352 58.6261 Q168.9352 59.7667 169.3883 60.4386 Q169.8414 61.1104 170.8258 61.1104 Q171.7946 61.1104 172.2477 60.4386 Q172.7008 59.7667 172.7008 58.6261 Q172.7008 57.4854 172.2477 56.8448 Q171.7946 56.2042 170.8102 56.2042 Q169.8258 56.2042 169.3727 56.8448 Q168.9352 57.4854 168.9352 58.6261 ZM179.6484 60.0792 Q179.6484 61.0167 178.9453 61.5011 Q178.2578 61.9854 177.0859 61.9854 Q176.414 61.9854 175.9296 61.8761 Q175.4453 61.7667 175.0703 61.5792 L175.0703 60.6104 Q175.4609 60.7979 175.9921 60.9698 Q176.539 61.1261 177.1015 61.1261 Q177.914 61.1261 178.2734 60.8761 Q178.6328 60.6104 178.6328 60.1729 Q178.6328 59.9386 178.4921 59.7511 Q178.3671 59.5636 178.0234 59.3761 Q177.6796 59.1729 177.0546 58.9386 Q176.4296 58.6886 175.9765 58.4542 Q175.539 58.2198 175.289 57.8917 Q175.0546 57.5479 175.0546 57.0167 Q175.0546 56.2042 175.7109 55.7667 Q176.3828 55.3136 177.4765 55.3136 Q178.0546 55.3136 178.5546 55.4229 Q179.0703 55.5323 179.5234 55.7354 L179.164 56.5792 Q178.7578 56.4073 178.3046 56.2979 Q177.8671 56.1729 177.3984 56.1729 Q176.7421 56.1729 176.3984 56.3917 Q176.0703 56.5948 176.0703 56.9542 Q176.0703 57.2198 176.2265 57.4073 Q176.3828 57.5948 176.7421 57.7667 Q177.1015 57.9386 177.7265 58.1729 Q178.3359 58.4073 178.7578 58.6573 Q179.1953 58.8917 179.414 59.2354 Q179.6484 59.5636 179.6484 60.0792 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1229.0718,156.3153)"
+    ><path d="M6.3906 71.767 L6.3906 78.2045 L5.5312 78.2045 L5.375 77.3452 L5.3281 77.3452 Q5.0156 77.8608 4.4531 78.0952 Q3.9062 78.3295 3.2812 78.3295 Q2.125 78.3295 1.5312 77.767 Q0.9531 77.2045 0.9531 75.9858 L0.9531 71.767 L2.0156 71.767 L2.0156 75.9077 Q2.0156 77.4545 3.4375 77.4545 Q4.5156 77.4545 4.9219 76.8608 Q5.3438 76.2514 5.3438 75.1264 L5.3438 71.767 L6.3906 71.767 ZM12.6192 76.4233 Q12.6192 77.3608 11.916 77.8452 Q11.2285 78.3295 10.0567 78.3295 Q9.3848 78.3295 8.9004 78.2202 Q8.416 78.1108 8.041 77.9233 L8.041 76.9545 Q8.4317 77.142 8.9629 77.3139 Q9.5098 77.4702 10.0723 77.4702 Q10.8848 77.4702 11.2442 77.2202 Q11.6035 76.9545 11.6035 76.517 Q11.6035 76.2827 11.4629 76.0952 Q11.3379 75.9077 10.9942 75.7202 Q10.6504 75.517 10.0254 75.2827 Q9.4004 75.0327 8.9473 74.7983 Q8.5098 74.5639 8.2598 74.2358 Q8.0254 73.892 8.0254 73.3608 Q8.0254 72.5483 8.6817 72.1108 Q9.3535 71.6577 10.4473 71.6577 Q11.0254 71.6577 11.5254 71.767 Q12.041 71.8764 12.4942 72.0795 L12.1348 72.9233 Q11.7285 72.7514 11.2754 72.642 Q10.8379 72.517 10.3692 72.517 Q9.7129 72.517 9.3692 72.7358 Q9.041 72.9389 9.041 73.2983 Q9.041 73.5639 9.1973 73.7514 Q9.3535 73.9389 9.7129 74.1108 Q10.0723 74.2827 10.6973 74.517 Q11.3067 74.7514 11.7285 75.0014 Q12.166 75.2358 12.3848 75.5795 Q12.6192 75.9077 12.6192 76.4233 ZM19.5547 71.767 L19.5547 78.2045 L18.6953 78.2045 L18.5391 77.3452 L18.4922 77.3452 Q18.1797 77.8608 17.6172 78.0952 Q17.0703 78.3295 16.4453 78.3295 Q15.2891 78.3295 14.6953 77.767 Q14.1172 77.2045 14.1172 75.9858 L14.1172 71.767 L15.1797 71.767 L15.1797 75.9077 Q15.1797 77.4545 16.6016 77.4545 Q17.6797 77.4545 18.086 76.8608 Q18.5078 76.2514 18.5078 75.1264 L18.5078 71.767 L19.5547 71.767 ZM24.0333 71.6577 Q25.2051 71.6577 25.7676 72.1733 Q26.3458 72.6889 26.3458 73.8295 L26.3458 78.2045 L25.5645 78.2045 L25.3614 77.2983 L25.3145 77.2983 Q24.8926 77.8139 24.4239 78.0795 Q23.9708 78.3295 23.1583 78.3295 Q22.2833 78.3295 21.7051 77.8764 Q21.127 77.4077 21.127 76.4233 Q21.127 75.4545 21.877 74.9389 Q22.6426 74.4077 24.2208 74.3608 L25.3145 74.3295 L25.3145 73.9389 Q25.3145 73.142 24.9551 72.8295 Q24.6114 72.517 23.9708 72.517 Q23.4708 72.517 23.0176 72.6733 Q22.5645 72.8139 22.1583 73.0014 L21.8458 72.2202 Q22.2676 71.9858 22.8301 71.8295 Q23.4083 71.6577 24.0333 71.6577 ZM24.3458 75.0952 Q23.1426 75.142 22.6739 75.4858 Q22.2208 75.8139 22.2208 76.4233 Q22.2208 76.9702 22.5489 77.2202 Q22.877 77.4702 23.3926 77.4702 Q24.2208 77.4702 24.752 77.0327 Q25.2989 76.5795 25.2989 75.642 L25.2989 75.0639 L24.3458 75.0952 ZM31.3278 71.6577 Q31.5153 71.6577 31.7184 71.6733 Q31.9372 71.6889 32.0934 71.7202 L31.9528 72.6889 Q31.7966 72.6577 31.6091 72.642 Q31.4216 72.6108 31.2653 72.6108 Q30.7653 72.6108 30.3278 72.892 Q29.9059 73.1577 29.6403 73.642 Q29.3903 74.1264 29.3903 74.767 L29.3903 78.2045 L28.3278 78.2045 L28.3278 71.767 L29.2028 71.767 L29.3122 72.9545 L29.3591 72.9545 Q29.6716 72.4233 30.1559 72.0483 Q30.6559 71.6577 31.3278 71.6577 ZM33.8307 69.3608 Q34.0651 69.3608 34.2526 69.5327 Q34.4401 69.6889 34.4401 70.0327 Q34.4401 70.3608 34.2526 70.5327 Q34.0651 70.7045 33.8307 70.7045 Q33.5651 70.7045 33.3776 70.5327 Q33.2057 70.3608 33.2057 70.0327 Q33.2057 69.6889 33.3776 69.5327 Q33.5651 69.3608 33.8307 69.3608 ZM34.3463 71.767 L34.3463 78.2045 L33.2838 78.2045 L33.2838 71.767 L34.3463 71.767 ZM41.9736 74.9702 Q41.9736 76.5795 41.1611 77.4545 Q40.3486 78.3295 38.9736 78.3295 Q38.1299 78.3295 37.458 77.9389 Q36.7861 77.5483 36.3955 76.7983 Q36.0205 76.0483 36.0205 74.9702 Q36.0205 73.3764 36.8174 72.517 Q37.6299 71.6577 39.0049 71.6577 Q39.8955 71.6577 40.5517 72.0483 Q41.2236 72.4389 41.5986 73.1733 Q41.9736 73.9077 41.9736 74.9702 ZM37.1142 74.9702 Q37.1142 76.1108 37.5674 76.7827 Q38.0205 77.4545 39.0049 77.4545 Q39.9736 77.4545 40.4267 76.7827 Q40.8799 76.1108 40.8799 74.9702 Q40.8799 73.8295 40.4267 73.1889 Q39.9736 72.5483 38.9892 72.5483 Q38.0049 72.5483 37.5517 73.1889 Q37.1142 73.8295 37.1142 74.9702 ZM47.8274 76.4233 Q47.8274 77.3608 47.1243 77.8452 Q46.4368 78.3295 45.2649 78.3295 Q44.593 78.3295 44.1087 78.2202 Q43.6243 78.1108 43.2493 77.9233 L43.2493 76.9545 Q43.6399 77.142 44.1712 77.3139 Q44.718 77.4702 45.2805 77.4702 Q46.093 77.4702 46.4524 77.2202 Q46.8118 76.9545 46.8118 76.517 Q46.8118 76.2827 46.6712 76.0952 Q46.5462 75.9077 46.2024 75.7202 Q45.8587 75.517 45.2337 75.2827 Q44.6087 75.0327 44.1555 74.7983 Q43.718 74.5639 43.468 74.2358 Q43.2337 73.892 43.2337 73.3608 Q43.2337 72.5483 43.8899 72.1108 Q44.5618 71.6577 45.6555 71.6577 Q46.2337 71.6577 46.7337 71.767 Q47.2493 71.8764 47.7024 72.0795 L47.343 72.9233 Q46.9368 72.7514 46.4837 72.642 Q46.0462 72.517 45.5774 72.517 Q44.9212 72.517 44.5774 72.7358 Q44.2493 72.9389 44.2493 73.2983 Q44.2493 73.5639 44.4055 73.7514 Q44.5618 73.9389 44.9212 74.1108 Q45.2805 74.2827 45.9055 74.517 Q46.5149 74.7514 46.9368 75.0014 Q47.3743 75.2358 47.593 75.5795 Q47.8274 75.9077 47.8274 76.4233 ZM54.9924 71.6577 Q55.8205 71.6577 56.4142 72.017 Q57.008 72.3764 57.3205 73.0327 Q57.6486 73.6733 57.6486 74.5639 L57.6486 75.1889 L53.2424 75.1889 Q53.2736 76.2827 53.8049 76.8608 Q54.3361 77.4233 55.2892 77.4233 Q55.9142 77.4233 56.383 77.3139 Q56.8517 77.1889 57.3674 76.9858 L57.3674 77.9077 Q56.8674 78.1264 56.383 78.2202 Q55.9142 78.3295 55.2424 78.3295 Q54.3361 78.3295 53.633 77.9545 Q52.9299 77.5795 52.5392 76.8452 Q52.1486 76.1108 52.1486 75.0327 Q52.1486 73.9858 52.508 73.2358 Q52.8674 72.4702 53.508 72.0639 Q54.1486 71.6577 54.9924 71.6577 ZM54.9767 72.517 Q54.2267 72.517 53.7892 73.0014 Q53.3517 73.4858 53.2736 74.3452 L56.5392 74.3452 Q56.5392 73.5327 56.1642 73.0327 Q55.7892 72.517 54.9767 72.517 ZM60.8073 74.9233 L58.5885 71.767 L59.7917 71.767 L61.4479 74.1889 L63.0885 71.767 L64.276 71.767 L62.0573 74.9233 L64.3854 78.2045 L63.1979 78.2045 L61.4479 75.642 L59.6667 78.2045 L58.4792 78.2045 L60.8073 74.9233 ZM67.7803 77.4545 Q68.0147 77.4545 68.2647 77.4233 Q68.5147 77.3764 68.671 77.3295 L68.671 78.1264 Q68.5147 78.2202 68.2022 78.267 Q67.8897 78.3295 67.5928 78.3295 Q67.0928 78.3295 66.6553 78.1577 Q66.2335 77.9702 65.9678 77.5483 Q65.7178 77.1108 65.7178 76.3295 L65.7178 72.5952 L64.796 72.5952 L64.796 72.0795 L65.7178 71.6577 L66.1397 70.2983 L66.7647 70.2983 L66.7647 71.767 L68.6241 71.767 L68.6241 72.5952 L66.7647 72.5952 L66.7647 76.3139 Q66.7647 76.892 67.046 77.1733 Q67.3272 77.4545 67.7803 77.4545 ZM72.4405 71.6577 Q73.2686 71.6577 73.8624 72.017 Q74.4561 72.3764 74.7686 73.0327 Q75.0967 73.6733 75.0967 74.5639 L75.0967 75.1889 L70.6905 75.1889 Q70.7217 76.2827 71.253 76.8608 Q71.7842 77.4233 72.7374 77.4233 Q73.3624 77.4233 73.8311 77.3139 Q74.2999 77.1889 74.8155 76.9858 L74.8155 77.9077 Q74.3155 78.1264 73.8311 78.2202 Q73.3624 78.3295 72.6905 78.3295 Q71.7842 78.3295 71.0811 77.9545 Q70.378 77.5795 69.9874 76.8452 Q69.5967 76.1108 69.5967 75.0327 Q69.5967 73.9858 69.9561 73.2358 Q70.3155 72.4702 70.9561 72.0639 Q71.5967 71.6577 72.4405 71.6577 ZM72.4249 72.517 Q71.6749 72.517 71.2374 73.0014 Q70.7999 73.4858 70.7217 74.3452 L73.9874 74.3452 Q73.9874 73.5327 73.6124 73.0327 Q73.2374 72.517 72.4249 72.517 ZM79.7242 71.6577 Q79.9117 71.6577 80.1148 71.6733 Q80.3335 71.6889 80.4898 71.7202 L80.3492 72.6889 Q80.1929 72.6577 80.0054 72.642 Q79.8179 72.6108 79.6617 72.6108 Q79.1617 72.6108 78.7242 72.892 Q78.3023 73.1577 78.0367 73.642 Q77.7867 74.1264 77.7867 74.767 L77.7867 78.2045 L76.7242 78.2045 L76.7242 71.767 L77.5992 71.767 L77.7085 72.9545 L77.7554 72.9545 Q78.0679 72.4233 78.5523 72.0483 Q79.0523 71.6577 79.7242 71.6577 ZM84.774 71.6577 Q85.9302 71.6577 86.5083 72.2202 Q87.1021 72.767 87.1021 74.017 L87.1021 78.2045 L86.0708 78.2045 L86.0708 74.0952 Q86.0708 72.5483 84.6177 72.5483 Q83.5552 72.5483 83.149 73.142 Q82.7427 73.7358 82.7427 74.8608 L82.7427 78.2045 L81.6802 78.2045 L81.6802 71.767 L82.5396 71.767 L82.6958 72.642 L82.7583 72.642 Q83.0708 72.142 83.6177 71.9077 Q84.1646 71.6577 84.774 71.6577 ZM94.69 74.9702 Q94.69 76.5795 93.8775 77.4545 Q93.065 78.3295 91.69 78.3295 Q90.8463 78.3295 90.1744 77.9389 Q89.5025 77.5483 89.1119 76.7983 Q88.7369 76.0483 88.7369 74.9702 Q88.7369 73.3764 89.5338 72.517 Q90.3463 71.6577 91.7213 71.6577 Q92.6119 71.6577 93.2681 72.0483 Q93.94 72.4389 94.315 73.1733 Q94.69 73.9077 94.69 74.9702 ZM89.8306 74.9702 Q89.8306 76.1108 90.2838 76.7827 Q90.7369 77.4545 91.7213 77.4545 Q92.69 77.4545 93.1431 76.7827 Q93.5963 76.1108 93.5963 74.9702 Q93.5963 73.8295 93.1431 73.1889 Q92.69 72.5483 91.7056 72.5483 Q90.7213 72.5483 90.2681 73.1889 Q89.8306 73.8295 89.8306 74.9702 ZM100.5438 76.4233 Q100.5438 77.3608 99.8407 77.8452 Q99.1532 78.3295 97.9813 78.3295 Q97.3094 78.3295 96.8251 78.2202 Q96.3407 78.1108 95.9657 77.9233 L95.9657 76.9545 Q96.3563 77.142 96.8876 77.3139 Q97.4344 77.4702 97.9969 77.4702 Q98.8094 77.4702 99.1688 77.2202 Q99.5282 76.9545 99.5282 76.517 Q99.5282 76.2827 99.3876 76.0952 Q99.2626 75.9077 98.9188 75.7202 Q98.5751 75.517 97.9501 75.2827 Q97.3251 75.0327 96.8719 74.7983 Q96.4344 74.5639 96.1844 74.2358 Q95.9501 73.892 95.9501 73.3608 Q95.9501 72.5483 96.6063 72.1108 Q97.2782 71.6577 98.3719 71.6577 Q98.9501 71.6577 99.4501 71.767 Q99.9657 71.8764 100.4188 72.0795 L100.0594 72.9233 Q99.6532 72.7514 99.2001 72.642 Q98.7626 72.517 98.2938 72.517 Q97.6376 72.517 97.2938 72.7358 Q96.9657 72.9389 96.9657 73.2983 Q96.9657 73.5639 97.1219 73.7514 Q97.2782 73.9389 97.6376 74.1108 Q97.9969 74.2827 98.6219 74.517 Q99.2313 74.7514 99.6532 75.0014 Q100.0907 75.2358 100.3094 75.5795 Q100.5438 75.9077 100.5438 76.4233 ZM107.6619 71.6577 Q108.8338 71.6577 109.3963 72.1733 Q109.9744 72.6889 109.9744 73.8295 L109.9744 78.2045 L109.1931 78.2045 L108.99 77.2983 L108.9431 77.2983 Q108.5213 77.8139 108.0525 78.0795 Q107.5994 78.3295 106.7869 78.3295 Q105.9119 78.3295 105.3338 77.8764 Q104.7556 77.4077 104.7556 76.4233 Q104.7556 75.4545 105.5056 74.9389 Q106.2713 74.4077 107.8494 74.3608 L108.9431 74.3295 L108.9431 73.9389 Q108.9431 73.142 108.5838 72.8295 Q108.24 72.517 107.5994 72.517 Q107.0994 72.517 106.6463 72.6733 Q106.1931 72.8139 105.7869 73.0014 L105.4744 72.2202 Q105.8963 71.9858 106.4588 71.8295 Q107.0369 71.6577 107.6619 71.6577 ZM107.9744 75.0952 Q106.7713 75.142 106.3025 75.4858 Q105.8494 75.8139 105.8494 76.4233 Q105.8494 76.9702 106.1775 77.2202 Q106.5056 77.4702 107.0213 77.4702 Q107.8494 77.4702 108.3806 77.0327 Q108.9275 76.5795 108.9275 75.642 L108.9275 75.0639 L107.9744 75.0952 ZM117.2327 77.4545 Q117.4671 77.4545 117.7171 77.4233 Q117.9671 77.3764 118.1233 77.3295 L118.1233 78.1264 Q117.9671 78.2202 117.6546 78.267 Q117.3421 78.3295 117.0452 78.3295 Q116.5452 78.3295 116.1077 78.1577 Q115.6858 77.9702 115.4202 77.5483 Q115.1702 77.1108 115.1702 76.3295 L115.1702 72.5952 L114.2483 72.5952 L114.2483 72.0795 L115.1702 71.6577 L115.5921 70.2983 L116.2171 70.2983 L116.2171 71.767 L118.0764 71.767 L118.0764 72.5952 L116.2171 72.5952 L116.2171 76.3139 Q116.2171 76.892 116.4983 77.1733 Q116.7796 77.4545 117.2327 77.4545 ZM122.4085 71.6577 Q122.596 71.6577 122.7991 71.6733 Q123.0179 71.6889 123.1741 71.7202 L123.0335 72.6889 Q122.8772 72.6577 122.6897 72.642 Q122.5022 72.6108 122.346 72.6108 Q121.846 72.6108 121.4085 72.892 Q120.9866 73.1577 120.721 73.642 Q120.471 74.1264 120.471 74.767 L120.471 78.2045 L119.4085 78.2045 L119.4085 71.767 L120.2835 71.767 L120.3929 72.9545 L120.4397 72.9545 Q120.7522 72.4233 121.2366 72.0483 Q121.7366 71.6577 122.4085 71.6577 ZM126.802 71.6577 Q127.9739 71.6577 128.5364 72.1733 Q129.1145 72.6889 129.1145 73.8295 L129.1145 78.2045 L128.3333 78.2045 L128.1301 77.2983 L128.0833 77.2983 Q127.6614 77.8139 127.1926 78.0795 Q126.7395 78.3295 125.927 78.3295 Q125.052 78.3295 124.4739 77.8764 Q123.8958 77.4077 123.8958 76.4233 Q123.8958 75.4545 124.6458 74.9389 Q125.4114 74.4077 126.9895 74.3608 L128.0833 74.3295 L128.0833 73.9389 Q128.0833 73.142 127.7239 72.8295 Q127.3801 72.517 126.7395 72.517 Q126.2395 72.517 125.7864 72.6733 Q125.3333 72.8139 124.927 73.0014 L124.6145 72.2202 Q125.0364 71.9858 125.5989 71.8295 Q126.177 71.6577 126.802 71.6577 ZM127.1145 75.0952 Q125.9114 75.142 125.4426 75.4858 Q124.9895 75.8139 124.9895 76.4233 Q124.9895 76.9702 125.3176 77.2202 Q125.6458 77.4702 126.1614 77.4702 Q126.9895 77.4702 127.5208 77.0327 Q128.0676 76.5795 128.0676 75.642 L128.0676 75.0639 L127.1145 75.0952 ZM132.5184 78.2045 L130.0809 71.767 L131.2059 71.767 L132.5809 75.5639 Q132.6747 75.8295 132.7841 76.1577 Q132.8934 76.4702 132.9716 76.767 Q133.0497 77.0639 133.0966 77.267 L133.1434 77.267 Q133.1903 77.0639 133.2684 76.767 Q133.3622 76.4702 133.4716 76.142 Q133.5966 75.8139 133.6747 75.5639 L135.0497 71.767 L136.1747 71.767 L133.7216 78.2045 L132.5184 78.2045 ZM139.677 71.6577 Q140.5051 71.6577 141.0988 72.017 Q141.6926 72.3764 142.0051 73.0327 Q142.3332 73.6733 142.3332 74.5639 L142.3332 75.1889 L137.927 75.1889 Q137.9582 76.2827 138.4895 76.8608 Q139.0207 77.4233 139.9738 77.4233 Q140.5988 77.4233 141.0676 77.3139 Q141.5363 77.1889 142.052 76.9858 L142.052 77.9077 Q141.552 78.1264 141.0676 78.2202 Q140.5988 78.3295 139.927 78.3295 Q139.0207 78.3295 138.3176 77.9545 Q137.6145 77.5795 137.2238 76.8452 Q136.8332 76.1108 136.8332 75.0327 Q136.8332 73.9858 137.1926 73.2358 Q137.552 72.4702 138.1926 72.0639 Q138.8332 71.6577 139.677 71.6577 ZM139.6613 72.517 Q138.9113 72.517 138.4738 73.0014 Q138.0363 73.4858 137.9582 74.3452 L141.2238 74.3452 Q141.2238 73.5327 140.8488 73.0327 Q140.4738 72.517 139.6613 72.517 ZM141.2863 69.1264 Q141.1457 69.3452 140.8332 69.6889 Q140.5363 70.0327 140.1926 70.3764 Q139.8645 70.7202 139.5676 70.9389 L138.8801 70.9389 L138.8801 70.7827 Q139.052 70.5639 139.2551 70.2514 Q139.4738 69.9389 139.677 69.6108 Q139.8801 69.2827 140.0207 69.017 L141.2863 69.017 L141.2863 69.1264 ZM148.1481 76.4233 Q148.1481 77.3608 147.445 77.8452 Q146.7575 78.3295 145.5856 78.3295 Q144.9138 78.3295 144.4294 78.2202 Q143.945 78.1108 143.57 77.9233 L143.57 76.9545 Q143.9606 77.142 144.4919 77.3139 Q145.0388 77.4702 145.6013 77.4702 Q146.4138 77.4702 146.7731 77.2202 Q147.1325 76.9545 147.1325 76.517 Q147.1325 76.2827 146.9919 76.0952 Q146.8669 75.9077 146.5231 75.7202 Q146.1794 75.517 145.5544 75.2827 Q144.9294 75.0327 144.4763 74.7983 Q144.0388 74.5639 143.7888 74.2358 Q143.5544 73.892 143.5544 73.3608 Q143.5544 72.5483 144.2106 72.1108 Q144.8825 71.6577 145.9763 71.6577 Q146.5544 71.6577 147.0544 71.767 Q147.57 71.8764 148.0231 72.0795 L147.6638 72.9233 Q147.2575 72.7514 146.8044 72.642 Q146.3669 72.517 145.8981 72.517 Q145.2419 72.517 144.8981 72.7358 Q144.57 72.9389 144.57 73.2983 Q144.57 73.5639 144.7263 73.7514 Q144.8825 73.9389 145.2419 74.1108 Q145.6013 74.2827 146.2263 74.517 Q146.8356 74.7514 147.2575 75.0014 Q147.695 75.2358 147.9138 75.5795 Q148.1481 75.9077 148.1481 76.4233 ZM155.11 78.3295 Q153.9068 78.3295 153.1881 77.5014 Q152.4693 76.6577 152.4693 75.0014 Q152.4693 73.3452 153.1881 72.5014 Q153.9225 71.6577 155.1256 71.6577 Q155.8756 71.6577 156.3443 71.9389 Q156.8131 72.2045 157.11 72.5952 L157.1881 72.5952 Q157.1725 72.4389 157.1412 72.142 Q157.11 71.8295 157.11 71.6577 L157.11 69.0795 L158.1725 69.0795 L158.1725 78.2045 L157.3287 78.2045 L157.1725 77.3452 L157.11 77.3452 Q156.8287 77.7514 156.3443 78.0483 Q155.8756 78.3295 155.11 78.3295 ZM155.2818 77.4545 Q156.2975 77.4545 156.7037 76.892 Q157.1256 76.3295 157.1256 75.2045 L157.1256 75.017 Q157.1256 73.8139 156.735 73.1733 Q156.3443 72.5327 155.2662 72.5327 Q154.4225 72.5327 153.985 73.2202 Q153.5631 73.892 153.5631 75.017 Q153.5631 76.1733 153.985 76.8139 Q154.4225 77.4545 155.2818 77.4545 ZM162.6931 71.6577 Q163.5213 71.6577 164.115 72.017 Q164.7088 72.3764 165.0213 73.0327 Q165.3494 73.6733 165.3494 74.5639 L165.3494 75.1889 L160.9431 75.1889 Q160.9744 76.2827 161.5056 76.8608 Q162.0369 77.4233 162.99 77.4233 Q163.615 77.4233 164.0838 77.3139 Q164.5525 77.1889 165.0681 76.9858 L165.0681 77.9077 Q164.5681 78.1264 164.0838 78.2202 Q163.615 78.3295 162.9431 78.3295 Q162.0369 78.3295 161.3338 77.9545 Q160.6306 77.5795 160.24 76.8452 Q159.8494 76.1108 159.8494 75.0327 Q159.8494 73.9858 160.2088 73.2358 Q160.5681 72.4702 161.2088 72.0639 Q161.8494 71.6577 162.6931 71.6577 ZM162.6775 72.517 Q161.9275 72.517 161.49 73.0014 Q161.0525 73.4858 160.9744 74.3452 L164.24 74.3452 Q164.24 73.5327 163.865 73.0327 Q163.49 72.517 162.6775 72.517 ZM173.1593 71.6577 Q174.3468 71.6577 175.0656 72.4858 Q175.8 73.3139 175.8 74.9702 Q175.8 76.6264 175.0656 77.4858 Q174.3468 78.3295 173.1437 78.3295 Q172.4093 78.3295 171.925 78.0483 Q171.4406 77.767 171.1593 77.392 L171.0812 77.392 Q171.1125 77.5952 171.1281 77.9077 Q171.1593 78.2202 171.1593 78.4389 L171.1593 81.0795 L170.0968 81.0795 L170.0968 71.767 L170.9718 71.767 L171.1125 72.642 L171.1593 72.642 Q171.4406 72.2358 171.9093 71.9545 Q172.3781 71.6577 173.1593 71.6577 ZM172.9718 72.5483 Q171.9875 72.5483 171.5812 73.0952 Q171.175 73.642 171.1593 74.767 L171.1593 74.9702 Q171.1593 76.1577 171.55 76.8139 Q171.9406 77.4545 172.9875 77.4545 Q173.5812 77.4545 173.9562 77.1264 Q174.3312 76.7983 174.5187 76.2514 Q174.7062 75.6889 174.7062 74.9702 Q174.7062 73.8608 174.2843 73.2045 Q173.8625 72.5483 172.9718 72.5483 ZM179.9144 71.6577 Q181.0863 71.6577 181.6488 72.1733 Q182.2269 72.6889 182.2269 73.8295 L182.2269 78.2045 L181.4456 78.2045 L181.2425 77.2983 L181.1956 77.2983 Q180.7738 77.8139 180.305 78.0795 Q179.8519 78.3295 179.0394 78.3295 Q178.1644 78.3295 177.5863 77.8764 Q177.0081 77.4077 177.0081 76.4233 Q177.0081 75.4545 177.7581 74.9389 Q178.5238 74.4077 180.1019 74.3608 L181.1956 74.3295 L181.1956 73.9389 Q181.1956 73.142 180.8363 72.8295 Q180.4925 72.517 179.8519 72.517 Q179.3519 72.517 178.8988 72.6733 Q178.4456 72.8139 178.0394 73.0014 L177.7269 72.2202 Q178.1488 71.9858 178.7113 71.8295 Q179.2894 71.6577 179.9144 71.6577 ZM180.2269 75.0952 Q179.0238 75.142 178.555 75.4858 Q178.1019 75.8139 178.1019 76.4233 Q178.1019 76.9702 178.43 77.2202 Q178.7581 77.4702 179.2738 77.4702 Q180.1019 77.4702 180.6331 77.0327 Q181.18 76.5795 181.18 75.642 L181.18 75.0639 L180.2269 75.0952 ZM186.3652 77.4545 Q186.5996 77.4545 186.8496 77.4233 Q187.0996 77.3764 187.2558 77.3295 L187.2558 78.1264 Q187.0996 78.2202 186.7871 78.267 Q186.4746 78.3295 186.1777 78.3295 Q185.6777 78.3295 185.2402 78.1577 Q184.8183 77.9702 184.5527 77.5483 Q184.3027 77.1108 184.3027 76.3295 L184.3027 72.5952 L183.3808 72.5952 L183.3808 72.0795 L184.3027 71.6577 L184.7246 70.2983 L185.3496 70.2983 L185.3496 71.767 L187.2089 71.767 L187.2089 72.5952 L185.3496 72.5952 L185.3496 76.3139 Q185.3496 76.892 185.6308 77.1733 Q185.9121 77.4545 186.3652 77.4545 ZM189.6035 71.767 Q189.6035 72.2358 189.541 72.6577 L189.6191 72.6577 Q189.9316 72.1733 190.4628 71.9233 Q190.9941 71.6577 191.6191 71.6577 Q192.791 71.6577 193.3691 72.2202 Q193.9628 72.7827 193.9628 74.017 L193.9628 78.2045 L192.9316 78.2045 L192.9316 74.0952 Q192.9316 72.5483 191.4785 72.5483 Q190.4003 72.5483 189.9941 73.1577 Q189.6035 73.7514 189.6035 74.8764 L189.6035 78.2045 L188.541 78.2045 L188.541 69.0795 L189.6035 69.0795 L189.6035 71.767 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1229.0718,156.3153)"
+    ><path d="M4.3438 85.9862 L1.1562 94.5487 L0.125 94.5487 L3.3125 85.9862 L4.3438 85.9862 ZM7.6359 93.7987 Q7.8703 93.7987 8.1203 93.7674 Q8.3703 93.7205 8.5265 93.6737 L8.5265 94.4705 Q8.3703 94.5643 8.0578 94.6112 Q7.7453 94.6737 7.4484 94.6737 Q6.9484 94.6737 6.5109 94.5018 Q6.089 94.3143 5.8234 93.8924 Q5.5734 93.4549 5.5734 92.6737 L5.5734 88.9393 L4.6515 88.9393 L4.6515 88.4237 L5.5734 88.0018 L5.9953 86.6424 L6.6203 86.6424 L6.6203 88.1112 L8.4797 88.1112 L8.4797 88.9393 L6.6203 88.9393 L6.6203 92.658 Q6.6203 93.2362 6.9015 93.5174 Q7.1828 93.7987 7.6359 93.7987 ZM15.4054 91.3143 Q15.4054 92.9237 14.5929 93.7987 Q13.7804 94.6737 12.4054 94.6737 Q11.5617 94.6737 10.8898 94.283 Q10.2179 93.8924 9.8273 93.1424 Q9.4523 92.3924 9.4523 91.3143 Q9.4523 89.7205 10.2492 88.8612 Q11.0617 88.0018 12.4367 88.0018 Q13.3273 88.0018 13.9836 88.3924 Q14.6554 88.783 15.0304 89.5174 Q15.4054 90.2518 15.4054 91.3143 ZM10.5461 91.3143 Q10.5461 92.4549 10.9992 93.1268 Q11.4523 93.7987 12.4367 93.7987 Q13.4054 93.7987 13.8586 93.1268 Q14.3117 92.4549 14.3117 91.3143 Q14.3117 90.1737 13.8586 89.533 Q13.4054 88.8924 12.4211 88.8924 Q11.4367 88.8924 10.9836 89.533 Q10.5461 90.1737 10.5461 91.3143 ZM18.1186 90.1893 Q18.1186 90.3924 18.103 90.7049 Q18.0874 91.0018 18.0717 91.2362 L18.1186 91.2362 Q18.1967 91.1424 18.3374 90.9705 Q18.478 90.783 18.6186 90.5955 Q18.7749 90.408 18.8842 90.283 L20.9467 88.1112 L22.1811 88.1112 L19.5717 90.8612 L22.353 94.5487 L21.0874 94.5487 L18.853 91.5487 L18.1186 92.1893 L18.1186 94.5487 L17.0717 94.5487 L17.0717 85.4237 L18.1186 85.4237 L18.1186 90.1893 ZM25.9642 88.0018 Q26.7923 88.0018 27.386 88.3612 Q27.9798 88.7205 28.2923 89.3768 Q28.6204 90.0174 28.6204 90.908 L28.6204 91.533 L24.2142 91.533 Q24.2454 92.6268 24.7767 93.2049 Q25.3079 93.7674 26.261 93.7674 Q26.886 93.7674 27.3548 93.658 Q27.8235 93.533 28.3392 93.3299 L28.3392 94.2518 Q27.8392 94.4705 27.3548 94.5643 Q26.886 94.6737 26.2142 94.6737 Q25.3079 94.6737 24.6048 94.2987 Q23.9017 93.9237 23.511 93.1893 Q23.1204 92.4549 23.1204 91.3768 Q23.1204 90.3299 23.4798 89.5799 Q23.8392 88.8143 24.4798 88.408 Q25.1204 88.0018 25.9642 88.0018 ZM25.9485 88.8612 Q25.1985 88.8612 24.761 89.3455 Q24.3235 89.8299 24.2454 90.6893 L27.511 90.6893 Q27.511 89.8768 27.136 89.3768 Q26.761 88.8612 25.9485 88.8612 ZM33.3416 88.0018 Q34.4978 88.0018 35.076 88.5643 Q35.6697 89.1112 35.6697 90.3612 L35.6697 94.5487 L34.6385 94.5487 L34.6385 90.4393 Q34.6385 88.8924 33.1853 88.8924 Q32.1228 88.8924 31.7166 89.4862 Q31.3103 90.0799 31.3103 91.2049 L31.3103 94.5487 L30.2478 94.5487 L30.2478 88.1112 L31.1072 88.1112 L31.2635 88.9862 L31.326 88.9862 Q31.6385 88.4862 32.1853 88.2518 Q32.7322 88.0018 33.3416 88.0018 ZM37.5076 93.908 Q37.5076 93.4549 37.7264 93.283 Q37.9451 93.0955 38.242 93.0955 Q38.5545 93.0955 38.7733 93.283 Q39.0076 93.4549 39.0076 93.908 Q39.0076 94.3299 38.7733 94.533 Q38.5545 94.7205 38.242 94.7205 Q37.9451 94.7205 37.7264 94.533 Q37.5076 94.3299 37.5076 93.908 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1229.0718,156.3153)"
+    ><path d="M3.4375 118.6744 Q5.1094 118.6744 5.875 119.3306 Q6.6406 119.9869 6.6406 121.19 Q6.6406 121.8931 6.3281 122.5181 Q6.0156 123.1275 5.2656 123.5181 Q4.5156 123.8931 3.2344 123.8931 L2.25 123.8931 L2.25 127.2369 L1.1562 127.2369 L1.1562 118.6744 L3.4375 118.6744 ZM3.3438 119.5963 L2.25 119.5963 L2.25 122.9713 L3.1094 122.9713 Q4.3281 122.9713 4.9219 122.5806 Q5.5312 122.19 5.5312 121.2369 Q5.5312 120.4088 5 120.0025 Q4.4688 119.5963 3.3438 119.5963 ZM10.7132 120.69 Q11.8851 120.69 12.4476 121.2056 Q13.0257 121.7213 13.0257 122.8619 L13.0257 127.2369 L12.2444 127.2369 L12.0413 126.3306 L11.9944 126.3306 Q11.5726 126.8463 11.1038 127.1119 Q10.6507 127.3619 9.8382 127.3619 Q8.9632 127.3619 8.3851 126.9088 Q7.8069 126.44 7.8069 125.4556 Q7.8069 124.4869 8.5569 123.9713 Q9.3226 123.44 10.9007 123.3931 L11.9944 123.3619 L11.9944 122.9713 Q11.9944 122.1744 11.6351 121.8619 Q11.2913 121.5494 10.6507 121.5494 Q10.1507 121.5494 9.6976 121.7056 Q9.2444 121.8463 8.8382 122.0338 L8.5257 121.2525 Q8.9476 121.0181 9.5101 120.8619 Q10.0882 120.69 10.7132 120.69 ZM11.0257 124.1275 Q9.8226 124.1744 9.3538 124.5181 Q8.9007 124.8463 8.9007 125.4556 Q8.9007 126.0025 9.2288 126.2525 Q9.5569 126.5025 10.0726 126.5025 Q10.9007 126.5025 11.4319 126.065 Q11.9788 125.6119 11.9788 124.6744 L11.9788 124.0963 L11.0257 124.1275 ZM18.0077 120.69 Q18.1952 120.69 18.3983 120.7056 Q18.6171 120.7213 18.7733 120.7525 L18.6327 121.7213 Q18.4765 121.69 18.289 121.6744 Q18.1015 121.6431 17.9452 121.6431 Q17.4452 121.6431 17.0077 121.9244 Q16.5858 122.19 16.3202 122.6744 Q16.0702 123.1588 16.0702 123.7994 L16.0702 127.2369 L15.0077 127.2369 L15.0077 120.7994 L15.8827 120.7994 L15.9921 121.9869 L16.039 121.9869 Q16.3515 121.4556 16.8358 121.0806 Q17.3358 120.69 18.0077 120.69 ZM22.4013 120.69 Q23.5731 120.69 24.1356 121.2056 Q24.7138 121.7213 24.7138 122.8619 L24.7138 127.2369 L23.9325 127.2369 L23.7294 126.3306 L23.6825 126.3306 Q23.2606 126.8463 22.7919 127.1119 Q22.3388 127.3619 21.5263 127.3619 Q20.6513 127.3619 20.0731 126.9088 Q19.495 126.44 19.495 125.4556 Q19.495 124.4869 20.245 123.9713 Q21.0106 123.44 22.5888 123.3931 L23.6825 123.3619 L23.6825 122.9713 Q23.6825 122.1744 23.3231 121.8619 Q22.9794 121.5494 22.3388 121.5494 Q21.8388 121.5494 21.3856 121.7056 Q20.9325 121.8463 20.5263 122.0338 L20.2138 121.2525 Q20.6356 121.0181 21.1981 120.8619 Q21.7763 120.69 22.4013 120.69 ZM22.7138 124.1275 Q21.5106 124.1744 21.0419 124.5181 Q20.5888 124.8463 20.5888 125.4556 Q20.5888 126.0025 20.9169 126.2525 Q21.245 126.5025 21.7606 126.5025 Q22.5888 126.5025 23.12 126.065 Q23.6669 125.6119 23.6669 124.6744 L23.6669 124.0963 L22.7138 124.1275 ZM32.394 127.3619 Q31.5502 127.3619 30.8783 127.0181 Q30.2221 126.6588 29.8315 125.9244 Q29.4565 125.19 29.4565 124.0494 Q29.4565 122.8619 29.8471 122.1275 Q30.2533 121.3775 30.9252 121.0338 Q31.6127 120.69 32.4721 120.69 Q32.9565 120.69 33.4096 120.7994 Q33.8783 120.8931 34.1596 121.0338 L33.8471 121.9088 Q33.5502 121.7994 33.1596 121.7056 Q32.7846 121.6119 32.4408 121.6119 Q30.5502 121.6119 30.5502 124.0494 Q30.5502 125.2056 31.0033 125.8306 Q31.4721 126.44 32.394 126.44 Q32.9096 126.44 33.3158 126.3306 Q33.7221 126.2213 34.0502 126.0806 L34.0502 127.0025 Q33.7377 127.1744 33.3471 127.2681 Q32.9565 127.3619 32.394 127.3619 ZM41.1696 124.0025 Q41.1696 125.6119 40.3571 126.4869 Q39.5446 127.3619 38.1696 127.3619 Q37.3259 127.3619 36.654 126.9713 Q35.9821 126.5806 35.5915 125.8306 Q35.2165 125.0806 35.2165 124.0025 Q35.2165 122.4088 36.0134 121.5494 Q36.8259 120.69 38.2009 120.69 Q39.0915 120.69 39.7477 121.0806 Q40.4196 121.4713 40.7946 122.2056 Q41.1696 122.94 41.1696 124.0025 ZM36.3102 124.0025 Q36.3102 125.1431 36.7634 125.815 Q37.2165 126.4869 38.2009 126.4869 Q39.1696 126.4869 39.6227 125.815 Q40.0759 125.1431 40.0759 124.0025 Q40.0759 122.8619 39.6227 122.2213 Q39.1696 121.5806 38.1852 121.5806 Q37.2009 121.5806 36.7477 122.2213 Q36.3102 122.8619 36.3102 124.0025 ZM49.8984 120.69 Q50.9922 120.69 51.5234 121.2525 Q52.0703 121.7994 52.0703 123.0494 L52.0703 127.2369 L51.0234 127.2369 L51.0234 123.0963 Q51.0234 121.5806 49.7109 121.5806 Q48.7734 121.5806 48.3672 122.1275 Q47.9765 122.6588 47.9765 123.69 L47.9765 127.2369 L46.9297 127.2369 L46.9297 123.0963 Q46.9297 121.5806 45.6172 121.5806 Q44.6328 121.5806 44.2578 122.1744 Q43.8984 122.7681 43.8984 123.8931 L43.8984 127.2369 L42.8359 127.2369 L42.8359 120.7994 L43.6953 120.7994 L43.8515 121.6744 L43.914 121.6744 Q44.2109 121.1744 44.7109 120.94 Q45.2265 120.69 45.8047 120.69 Q47.3203 120.69 47.7734 121.7681 L47.8359 121.7681 Q48.164 121.2056 48.7109 120.9556 Q49.2734 120.69 49.8984 120.69 ZM59.431 120.7994 L59.431 127.2369 L58.5716 127.2369 L58.4154 126.3775 L58.3685 126.3775 Q58.056 126.8931 57.4935 127.1275 Q56.9466 127.3619 56.3216 127.3619 Q55.1654 127.3619 54.5716 126.7994 Q53.9935 126.2369 53.9935 125.0181 L53.9935 120.7994 L55.056 120.7994 L55.056 124.94 Q55.056 126.4869 56.4779 126.4869 Q57.556 126.4869 57.9622 125.8931 Q58.3841 125.2838 58.3841 124.1588 L58.3841 120.7994 L59.431 120.7994 ZM64.5658 120.69 Q65.722 120.69 66.3002 121.2525 Q66.8939 121.7994 66.8939 123.0494 L66.8939 127.2369 L65.8627 127.2369 L65.8627 123.1275 Q65.8627 121.5806 64.4095 121.5806 Q63.347 121.5806 62.9408 122.1744 Q62.5345 122.7681 62.5345 123.8931 L62.5345 127.2369 L61.472 127.2369 L61.472 120.7994 L62.3314 120.7994 L62.4877 121.6744 L62.5502 121.6744 Q62.8627 121.1744 63.4095 120.94 Q63.9564 120.69 64.5658 120.69 ZM69.435 118.3931 Q69.6693 118.3931 69.8568 118.565 Q70.0443 118.7213 70.0443 119.065 Q70.0443 119.3931 69.8568 119.565 Q69.6693 119.7369 69.435 119.7369 Q69.1693 119.7369 68.9818 119.565 Q68.81 119.3931 68.81 119.065 Q68.81 118.7213 68.9818 118.565 Q69.1693 118.3931 69.435 118.3931 ZM69.9506 120.7994 L69.9506 127.2369 L68.8881 127.2369 L68.8881 120.7994 L69.9506 120.7994 ZM74.5622 127.3619 Q73.7185 127.3619 73.0466 127.0181 Q72.3904 126.6588 71.9997 125.9244 Q71.6247 125.19 71.6247 124.0494 Q71.6247 122.8619 72.0154 122.1275 Q72.4216 121.3775 73.0935 121.0338 Q73.781 120.69 74.6404 120.69 Q75.1247 120.69 75.5779 120.7994 Q76.0466 120.8931 76.3279 121.0338 L76.0154 121.9088 Q75.7185 121.7994 75.3279 121.7056 Q74.9529 121.6119 74.6091 121.6119 Q72.7185 121.6119 72.7185 124.0494 Q72.7185 125.2056 73.1716 125.8306 Q73.6404 126.44 74.5622 126.44 Q75.0779 126.44 75.4841 126.3306 Q75.8904 126.2213 76.2185 126.0806 L76.2185 127.0025 Q75.906 127.1744 75.5154 127.2681 Q75.1247 127.3619 74.5622 127.3619 ZM80.1817 120.69 Q81.3535 120.69 81.916 121.2056 Q82.4942 121.7213 82.4942 122.8619 L82.4942 127.2369 L81.7129 127.2369 L81.5098 126.3306 L81.4629 126.3306 Q81.041 126.8463 80.5723 127.1119 Q80.1192 127.3619 79.3067 127.3619 Q78.4317 127.3619 77.8535 126.9088 Q77.2754 126.44 77.2754 125.4556 Q77.2754 124.4869 78.0254 123.9713 Q78.791 123.44 80.3692 123.3931 L81.4629 123.3619 L81.4629 122.9713 Q81.4629 122.1744 81.1035 121.8619 Q80.7598 121.5494 80.1192 121.5494 Q79.6192 121.5494 79.166 121.7056 Q78.7129 121.8463 78.3067 122.0338 L77.9942 121.2525 Q78.416 121.0181 78.9785 120.8619 Q79.5567 120.69 80.1817 120.69 ZM80.4942 124.1275 Q79.291 124.1744 78.8223 124.5181 Q78.3692 124.8463 78.3692 125.4556 Q78.3692 126.0025 78.6973 126.2525 Q79.0254 126.5025 79.541 126.5025 Q80.3692 126.5025 80.9004 126.065 Q81.4473 125.6119 81.4473 124.6744 L81.4473 124.0963 L80.4942 124.1275 ZM87.4762 120.69 Q87.6637 120.69 87.8668 120.7056 Q88.0856 120.7213 88.2418 120.7525 L88.1012 121.7213 Q87.9449 121.69 87.7574 121.6744 Q87.5699 121.6431 87.4137 121.6431 Q86.9137 121.6431 86.4762 121.9244 Q86.0543 122.19 85.7887 122.6744 Q85.5387 123.1588 85.5387 123.7994 L85.5387 127.2369 L84.4762 127.2369 L84.4762 120.7994 L85.3512 120.7994 L85.4606 121.9869 L85.5074 121.9869 Q85.8199 121.4556 86.3043 121.0806 Q86.8043 120.69 87.4762 120.69 ZM93.6197 125.4556 Q93.6197 126.3931 92.9166 126.8775 Q92.2291 127.3619 91.0572 127.3619 Q90.3854 127.3619 89.901 127.2525 Q89.4166 127.1431 89.0416 126.9556 L89.0416 125.9869 Q89.4322 126.1744 89.9635 126.3463 Q90.5104 126.5025 91.0729 126.5025 Q91.8854 126.5025 92.2447 126.2525 Q92.6041 125.9869 92.6041 125.5494 Q92.6041 125.315 92.4635 125.1275 Q92.3385 124.94 91.9947 124.7525 Q91.651 124.5494 91.026 124.315 Q90.401 124.065 89.9479 123.8306 Q89.5104 123.5963 89.2604 123.2681 Q89.026 122.9244 89.026 122.3931 Q89.026 121.5806 89.6822 121.1431 Q90.3541 120.69 91.4479 120.69 Q92.026 120.69 92.526 120.7994 Q93.0416 120.9088 93.4947 121.1119 L93.1354 121.9556 Q92.7291 121.7838 92.276 121.6744 Q91.8385 121.5494 91.3697 121.5494 Q90.7135 121.5494 90.3697 121.7681 Q90.0416 121.9713 90.0416 122.3306 Q90.0416 122.5963 90.1979 122.7838 Q90.3541 122.9713 90.7135 123.1431 Q91.0729 123.315 91.6979 123.5494 Q92.3072 123.7838 92.7291 124.0338 Q93.1666 124.2681 93.3854 124.6119 Q93.6197 124.94 93.6197 125.4556 ZM97.6647 120.69 Q98.4928 120.69 99.0865 121.0494 Q99.6803 121.4088 99.9928 122.065 Q100.3209 122.7056 100.3209 123.5963 L100.3209 124.2213 L95.9147 124.2213 Q95.9459 125.315 96.4772 125.8931 Q97.0084 126.4556 97.9615 126.4556 Q98.5865 126.4556 99.0553 126.3463 Q99.524 126.2213 100.0397 126.0181 L100.0397 126.94 Q99.5397 127.1588 99.0553 127.2525 Q98.5865 127.3619 97.9147 127.3619 Q97.0084 127.3619 96.3053 126.9869 Q95.6022 126.6119 95.2115 125.8775 Q94.8209 125.1431 94.8209 124.065 Q94.8209 123.0181 95.1803 122.2681 Q95.5397 121.5025 96.1803 121.0963 Q96.8209 120.69 97.6647 120.69 ZM97.649 121.5494 Q96.899 121.5494 96.4615 122.0338 Q96.024 122.5181 95.9459 123.3775 L99.2115 123.3775 Q99.2115 122.565 98.8365 122.065 Q98.4615 121.5494 97.649 121.5494 ZM107.5527 120.69 Q108.3809 120.69 108.9746 121.0494 Q109.5684 121.4088 109.8809 122.065 Q110.209 122.7056 110.209 123.5963 L110.209 124.2213 L105.8027 124.2213 Q105.834 125.315 106.3652 125.8931 Q106.8965 126.4556 107.8496 126.4556 Q108.4746 126.4556 108.9434 126.3463 Q109.4121 126.2213 109.9277 126.0181 L109.9277 126.94 Q109.4277 127.1588 108.9434 127.2525 Q108.4746 127.3619 107.8027 127.3619 Q106.8965 127.3619 106.1934 126.9869 Q105.4902 126.6119 105.0996 125.8775 Q104.709 125.1431 104.709 124.065 Q104.709 123.0181 105.0684 122.2681 Q105.4277 121.5025 106.0684 121.0963 Q106.709 120.69 107.5527 120.69 ZM107.5371 121.5494 Q106.7871 121.5494 106.3496 122.0338 Q105.9121 122.5181 105.834 123.3775 L109.0996 123.3775 Q109.0996 122.565 108.7246 122.065 Q108.3496 121.5494 107.5371 121.5494 ZM114.9302 120.69 Q116.0864 120.69 116.6645 121.2525 Q117.2583 121.7994 117.2583 123.0494 L117.2583 127.2369 L116.227 127.2369 L116.227 123.1275 Q116.227 121.5806 114.7739 121.5806 Q113.7114 121.5806 113.3052 122.1744 Q112.8989 122.7681 112.8989 123.8931 L112.8989 127.2369 L111.8364 127.2369 L111.8364 120.7994 L112.6958 120.7994 L112.852 121.6744 L112.9145 121.6744 Q113.227 121.1744 113.7739 120.94 Q114.3208 120.69 114.9302 120.69 ZM121.4087 126.4869 Q121.6431 126.4869 121.8931 126.4556 Q122.1431 126.4088 122.2993 126.3619 L122.2993 127.1588 Q122.1431 127.2525 121.8306 127.2994 Q121.5181 127.3619 121.2212 127.3619 Q120.7212 127.3619 120.2837 127.19 Q119.8618 127.0025 119.5962 126.5806 Q119.3462 126.1431 119.3462 125.3619 L119.3462 121.6275 L118.4243 121.6275 L118.4243 121.1119 L119.3462 120.69 L119.7681 119.3306 L120.3931 119.3306 L120.3931 120.7994 L122.2525 120.7994 L122.2525 121.6275 L120.3931 121.6275 L120.3931 125.3463 Q120.3931 125.9244 120.6743 126.2056 Q120.9556 126.4869 121.4087 126.4869 ZM126.5845 120.69 Q126.772 120.69 126.9751 120.7056 Q127.1939 120.7213 127.3501 120.7525 L127.2095 121.7213 Q127.0532 121.69 126.8657 121.6744 Q126.6782 121.6431 126.522 121.6431 Q126.022 121.6431 125.5845 121.9244 Q125.1626 122.19 124.897 122.6744 Q124.647 123.1588 124.647 123.7994 L124.647 127.2369 L123.5845 127.2369 L123.5845 120.7994 L124.4595 120.7994 L124.5689 121.9869 L124.6157 121.9869 Q124.9282 121.4556 125.4126 121.0806 Q125.9126 120.69 126.5845 120.69 ZM131.0249 120.69 Q131.853 120.69 132.4468 121.0494 Q133.0405 121.4088 133.353 122.065 Q133.6812 122.7056 133.6812 123.5963 L133.6812 124.2213 L129.2749 124.2213 Q129.3062 125.315 129.8374 125.8931 Q130.3687 126.4556 131.3218 126.4556 Q131.9468 126.4556 132.4155 126.3463 Q132.8843 126.2213 133.3999 126.0181 L133.3999 126.94 Q132.8999 127.1588 132.4155 127.2525 Q131.9468 127.3619 131.2749 127.3619 Q130.3687 127.3619 129.6655 126.9869 Q128.9624 126.6119 128.5718 125.8775 Q128.1812 125.1431 128.1812 124.065 Q128.1812 123.0181 128.5405 122.2681 Q128.8999 121.5025 129.5405 121.0963 Q130.1812 120.69 131.0249 120.69 ZM131.0093 121.5494 Q130.2593 121.5494 129.8218 122.0338 Q129.3843 122.5181 129.3062 123.3775 L132.5718 123.3775 Q132.5718 122.565 132.1968 122.065 Q131.8218 121.5494 131.0093 121.5494 ZM142.6161 125.4556 Q142.6161 126.3931 141.913 126.8775 Q141.2255 127.3619 140.0536 127.3619 Q139.3817 127.3619 138.8974 127.2525 Q138.413 127.1431 138.038 126.9556 L138.038 125.9869 Q138.4286 126.1744 138.9599 126.3463 Q139.5067 126.5025 140.0692 126.5025 Q140.8817 126.5025 141.2411 126.2525 Q141.6005 125.9869 141.6005 125.5494 Q141.6005 125.315 141.4599 125.1275 Q141.3349 124.94 140.9911 124.7525 Q140.6474 124.5494 140.0224 124.315 Q139.3974 124.065 138.9442 123.8306 Q138.5067 123.5963 138.2567 123.2681 Q138.0224 122.9244 138.0224 122.3931 Q138.0224 121.5806 138.6786 121.1431 Q139.3505 120.69 140.4442 120.69 Q141.0224 120.69 141.5224 120.7994 Q142.038 120.9088 142.4911 121.1119 L142.1317 121.9556 Q141.7255 121.7838 141.2724 121.6744 Q140.8349 121.5494 140.3661 121.5494 Q139.7099 121.5494 139.3661 121.7681 Q139.038 121.9713 139.038 122.3306 Q139.038 122.5963 139.1942 122.7838 Q139.3505 122.9713 139.7099 123.1431 Q140.0692 123.315 140.6942 123.5494 Q141.3036 123.7838 141.7255 124.0338 Q142.163 124.2681 142.3817 124.6119 Q142.6161 124.94 142.6161 125.4556 ZM145.2392 127.2369 L144.1767 127.2369 L144.1767 120.7994 L145.2392 120.7994 L145.2392 127.2369 ZM146.3954 118.1588 Q146.2548 118.3775 145.9423 118.7213 Q145.6454 119.065 145.3017 119.4088 Q144.9735 119.7525 144.6767 119.9713 L143.9892 119.9713 L143.9892 119.815 Q144.161 119.5963 144.3642 119.2838 Q144.5829 118.9713 144.786 118.6431 Q144.9892 118.315 145.1298 118.0494 L146.3954 118.0494 L146.3954 118.1588 ZM149.8615 123.9556 Q149.8615 122.4869 150.2833 121.1275 Q150.7052 119.7681 151.6271 118.6744 L152.6115 118.6744 Q151.7833 119.7994 151.3458 121.1588 Q150.924 122.5025 150.924 123.94 Q150.924 125.3306 151.3458 126.6744 Q151.7833 128.0025 152.6115 129.1275 L151.6271 129.1275 Q150.7052 128.0806 150.2833 126.7369 Q149.8615 125.3931 149.8615 123.9556 ZM156.5708 127.3619 Q155.7271 127.3619 155.0552 127.0181 Q154.399 126.6588 154.0083 125.9244 Q153.6333 125.19 153.6333 124.0494 Q153.6333 122.8619 154.024 122.1275 Q154.4302 121.3775 155.1021 121.0338 Q155.7896 120.69 156.649 120.69 Q157.1333 120.69 157.5865 120.7994 Q158.0552 120.8931 158.3365 121.0338 L158.024 121.9088 Q157.7271 121.7994 157.3365 121.7056 Q156.9615 121.6119 156.6177 121.6119 Q154.7271 121.6119 154.7271 124.0494 Q154.7271 125.2056 155.1802 125.8306 Q155.649 126.44 156.5708 126.44 Q157.0865 126.44 157.4927 126.3306 Q157.899 126.2213 158.2271 126.0806 L158.2271 127.0025 Q157.9146 127.1744 157.524 127.2681 Q157.1333 127.3619 156.5708 127.3619 ZM165.3465 124.0025 Q165.3465 125.6119 164.534 126.4869 Q163.7215 127.3619 162.3465 127.3619 Q161.5028 127.3619 160.8309 126.9713 Q160.159 126.5806 159.7684 125.8306 Q159.3934 125.0806 159.3934 124.0025 Q159.3934 122.4088 160.1903 121.5494 Q161.0028 120.69 162.3778 120.69 Q163.2684 120.69 163.9246 121.0806 Q164.5965 121.4713 164.9715 122.2056 Q165.3465 122.94 165.3465 124.0025 ZM160.4871 124.0025 Q160.4871 125.1431 160.9403 125.815 Q161.3934 126.4869 162.3778 126.4869 Q163.3465 126.4869 163.7996 125.815 Q164.2528 125.1431 164.2528 124.0025 Q164.2528 122.8619 163.7996 122.2213 Q163.3465 121.5806 162.3621 121.5806 Q161.3778 121.5806 160.9246 122.2213 Q160.4871 122.8619 160.4871 124.0025 ZM170.1066 120.69 Q171.2628 120.69 171.8409 121.2525 Q172.4347 121.7994 172.4347 123.0494 L172.4347 127.2369 L171.4034 127.2369 L171.4034 123.1275 Q171.4034 121.5806 169.9503 121.5806 Q168.8878 121.5806 168.4816 122.1744 Q168.0753 122.7681 168.0753 123.8931 L168.0753 127.2369 L167.0128 127.2369 L167.0128 120.7994 L167.8722 120.7994 L168.0284 121.6744 L168.0909 121.6744 Q168.4034 121.1744 168.9503 120.94 Q169.4972 120.69 170.1066 120.69 ZM180.0333 120.69 Q180.8614 120.69 181.4551 121.0494 Q182.0489 121.4088 182.3614 122.065 Q182.6895 122.7056 182.6895 123.5963 L182.6895 124.2213 L178.2833 124.2213 Q178.3145 125.315 178.8458 125.8931 Q179.377 126.4556 180.3301 126.4556 Q180.9551 126.4556 181.4239 126.3463 Q181.8926 126.2213 182.4083 126.0181 L182.4083 126.94 Q181.9083 127.1588 181.4239 127.2525 Q180.9551 127.3619 180.2833 127.3619 Q179.377 127.3619 178.6739 126.9869 Q177.9708 126.6119 177.5801 125.8775 Q177.1895 125.1431 177.1895 124.065 Q177.1895 123.0181 177.5489 122.2681 Q177.9083 121.5025 178.5489 121.0963 Q179.1895 120.69 180.0333 120.69 ZM180.0176 121.5494 Q179.2676 121.5494 178.8301 122.0338 Q178.3926 122.5181 178.3145 123.3775 L181.5801 123.3775 Q181.5801 122.565 181.2051 122.065 Q180.8301 121.5494 180.0176 121.5494 ZM185.3794 127.2369 L184.3169 127.2369 L184.3169 118.1119 L185.3794 118.1119 L185.3794 127.2369 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1229.0718,156.3153)"
+    ><path d="M4.0156 137.0341 Q4.2031 137.0341 4.4062 137.0498 Q4.625 137.0654 4.7812 137.0966 L4.6406 138.0654 Q4.4844 138.0341 4.2969 138.0185 Q4.1094 137.9873 3.9531 137.9873 Q3.4531 137.9873 3.0156 138.2685 Q2.5938 138.5341 2.3281 139.0185 Q2.0781 139.5029 2.0781 140.1435 L2.0781 143.581 L1.0156 143.581 L1.0156 137.1435 L1.8906 137.1435 L2 138.331 L2.0469 138.331 Q2.3594 137.7998 2.8438 137.4248 Q3.3438 137.0341 4.0156 137.0341 ZM8.456 137.0341 Q9.2842 137.0341 9.8779 137.3935 Q10.4717 137.7529 10.7842 138.4091 Q11.1123 139.0498 11.1123 139.9404 L11.1123 140.5654 L6.706 140.5654 Q6.7373 141.6591 7.2685 142.2373 Q7.7998 142.7998 8.7529 142.7998 Q9.3779 142.7998 9.8467 142.6904 Q10.3154 142.5654 10.831 142.3623 L10.831 143.2841 Q10.331 143.5029 9.8467 143.5966 Q9.3779 143.706 8.706 143.706 Q7.7998 143.706 7.0967 143.331 Q6.3935 142.956 6.0029 142.2216 Q5.6123 141.4873 5.6123 140.4091 Q5.6123 139.3623 5.9717 138.6123 Q6.331 137.8466 6.9717 137.4404 Q7.6123 137.0341 8.456 137.0341 ZM8.4404 137.8935 Q7.6904 137.8935 7.2529 138.3779 Q6.8154 138.8623 6.7373 139.7216 L10.0029 139.7216 Q10.0029 138.9091 9.6279 138.4091 Q9.2529 137.8935 8.4404 137.8935 ZM16.9272 141.7998 Q16.9272 142.7373 16.2241 143.2216 Q15.5366 143.706 14.3647 143.706 Q13.6928 143.706 13.2085 143.5966 Q12.7241 143.4873 12.3491 143.2998 L12.3491 142.331 Q12.7397 142.5185 13.271 142.6904 Q13.8178 142.8466 14.3803 142.8466 Q15.1928 142.8466 15.5522 142.5966 Q15.9116 142.331 15.9116 141.8935 Q15.9116 141.6591 15.771 141.4716 Q15.646 141.2841 15.3022 141.0966 Q14.9585 140.8935 14.3335 140.6591 Q13.7085 140.4091 13.2553 140.1748 Q12.8178 139.9404 12.5678 139.6123 Q12.3335 139.2685 12.3335 138.7373 Q12.3335 137.9248 12.9897 137.4873 Q13.6616 137.0341 14.7553 137.0341 Q15.3335 137.0341 15.8335 137.1435 Q16.3491 137.2529 16.8022 137.456 L16.4428 138.2998 Q16.0366 138.1279 15.5835 138.0185 Q15.146 137.8935 14.6772 137.8935 Q14.021 137.8935 13.6772 138.1123 Q13.3491 138.3154 13.3491 138.6748 Q13.3491 138.9404 13.5053 139.1279 Q13.6616 139.3154 14.021 139.4873 Q14.3803 139.6591 15.0053 139.8935 Q15.6147 140.1279 16.0366 140.3779 Q16.4741 140.6123 16.6928 140.956 Q16.9272 141.2841 16.9272 141.7998 ZM20.644 142.831 Q20.8784 142.831 21.1284 142.7998 Q21.3784 142.7529 21.5346 142.706 L21.5346 143.5029 Q21.3784 143.5966 21.0659 143.6435 Q20.7534 143.706 20.4565 143.706 Q19.9565 143.706 19.519 143.5341 Q19.0971 143.3466 18.8315 142.9248 Q18.5815 142.4873 18.5815 141.706 L18.5815 137.9716 L17.6596 137.9716 L17.6596 137.456 L18.5815 137.0341 L19.0034 135.6748 L19.6284 135.6748 L19.6284 137.1435 L21.4878 137.1435 L21.4878 137.9716 L19.6284 137.9716 L19.6284 141.6904 Q19.6284 142.2685 19.9096 142.5498 Q20.1909 142.831 20.644 142.831 ZM28.4135 140.3466 Q28.4135 141.956 27.601 142.831 Q26.7885 143.706 25.4135 143.706 Q24.5698 143.706 23.8979 143.3154 Q23.226 142.9248 22.8354 142.1748 Q22.4604 141.4248 22.4604 140.3466 Q22.4604 138.7529 23.2573 137.8935 Q24.0698 137.0341 25.4448 137.0341 Q26.3354 137.0341 26.9917 137.4248 Q27.6635 137.8154 28.0385 138.5498 Q28.4135 139.2841 28.4135 140.3466 ZM23.5542 140.3466 Q23.5542 141.4873 24.0073 142.1591 Q24.4604 142.831 25.4448 142.831 Q26.4135 142.831 26.8667 142.1591 Q27.3198 141.4873 27.3198 140.3466 Q27.3198 139.206 26.8667 138.5654 Q26.4135 137.9248 25.4292 137.9248 Q24.4448 137.9248 23.9917 138.5654 Q23.5542 139.206 23.5542 140.3466 ZM35.4811 143.706 Q34.278 143.706 33.5592 142.8779 Q32.8405 142.0341 32.8405 140.3779 Q32.8405 138.7216 33.5592 137.8779 Q34.2936 137.0341 35.4967 137.0341 Q36.2467 137.0341 36.7155 137.3154 Q37.1842 137.581 37.4811 137.9716 L37.5592 137.9716 Q37.5436 137.8154 37.5124 137.5185 Q37.4811 137.206 37.4811 137.0341 L37.4811 134.456 L38.5436 134.456 L38.5436 143.581 L37.6999 143.581 L37.5436 142.7216 L37.4811 142.7216 Q37.1999 143.1279 36.7155 143.4248 Q36.2467 143.706 35.4811 143.706 ZM35.653 142.831 Q36.6686 142.831 37.0749 142.2685 Q37.4967 141.706 37.4967 140.581 L37.4967 140.3935 Q37.4967 139.1904 37.1061 138.5498 Q36.7155 137.9091 35.6374 137.9091 Q34.7936 137.9091 34.3561 138.5966 Q33.9342 139.2685 33.9342 140.3935 Q33.9342 141.5498 34.3561 142.1904 Q34.7936 142.831 35.653 142.831 ZM43.0643 137.0341 Q43.8924 137.0341 44.4862 137.3935 Q45.0799 137.7529 45.3924 138.4091 Q45.7206 139.0498 45.7206 139.9404 L45.7206 140.5654 L41.3143 140.5654 Q41.3456 141.6591 41.8768 142.2373 Q42.4081 142.7998 43.3612 142.7998 Q43.9862 142.7998 44.4549 142.6904 Q44.9237 142.5654 45.4393 142.3623 L45.4393 143.2841 Q44.9393 143.5029 44.4549 143.5966 Q43.9862 143.706 43.3143 143.706 Q42.4081 143.706 41.7049 143.331 Q41.0018 142.956 40.6112 142.2216 Q40.2206 141.4873 40.2206 140.4091 Q40.2206 139.3623 40.5799 138.6123 Q40.9393 137.8466 41.5799 137.4404 Q42.2206 137.0341 43.0643 137.0341 ZM43.0487 137.8935 Q42.2987 137.8935 41.8612 138.3779 Q41.4237 138.8623 41.3456 139.7216 L44.6112 139.7216 Q44.6112 138.9091 44.2362 138.4091 Q43.8612 137.8935 43.0487 137.8935 ZM57.5305 137.0341 Q58.6243 137.0341 59.1555 137.5966 Q59.7024 138.1435 59.7024 139.3935 L59.7024 143.581 L58.6555 143.581 L58.6555 139.4404 Q58.6555 137.9248 57.343 137.9248 Q56.4055 137.9248 55.9993 138.4716 Q55.6086 139.0029 55.6086 140.0341 L55.6086 143.581 L54.5618 143.581 L54.5618 139.4404 Q54.5618 137.9248 53.2493 137.9248 Q52.2649 137.9248 51.8899 138.5185 Q51.5305 139.1123 51.5305 140.2373 L51.5305 143.581 L50.468 143.581 L50.468 137.1435 L51.3274 137.1435 L51.4836 138.0185 L51.5461 138.0185 Q51.843 137.5185 52.343 137.2841 Q52.8586 137.0341 53.4368 137.0341 Q54.9524 137.0341 55.4055 138.1123 L55.468 138.1123 Q55.7961 137.5498 56.343 137.2998 Q56.9055 137.0341 57.5305 137.0341 ZM62.235 134.7373 Q62.4693 134.7373 62.6568 134.9091 Q62.8443 135.0654 62.8443 135.4091 Q62.8443 135.7373 62.6568 135.9091 Q62.4693 136.081 62.235 136.081 Q61.9693 136.081 61.7818 135.9091 Q61.61 135.7373 61.61 135.4091 Q61.61 135.0654 61.7818 134.9091 Q61.9693 134.7373 62.235 134.7373 ZM62.7506 137.1435 L62.7506 143.581 L61.6881 143.581 L61.6881 137.1435 L62.7506 137.1435 ZM67.3622 143.706 Q66.5185 143.706 65.8466 143.3623 Q65.1904 143.0029 64.7997 142.2685 Q64.4247 141.5341 64.4247 140.3935 Q64.4247 139.206 64.8154 138.4716 Q65.2216 137.7216 65.8935 137.3779 Q66.581 137.0341 67.4404 137.0341 Q67.9247 137.0341 68.3779 137.1435 Q68.8466 137.2373 69.1279 137.3779 L68.8154 138.2529 Q68.5185 138.1435 68.1279 138.0498 Q67.7529 137.956 67.4091 137.956 Q65.5185 137.956 65.5185 140.3935 Q65.5185 141.5498 65.9716 142.1748 Q66.4404 142.7841 67.3622 142.7841 Q67.8779 142.7841 68.2841 142.6748 Q68.6904 142.5654 69.0185 142.4248 L69.0185 143.3466 Q68.706 143.5185 68.3154 143.6123 Q67.9247 143.706 67.3622 143.706 ZM73.5441 137.0341 Q73.7316 137.0341 73.9348 137.0498 Q74.1535 137.0654 74.3098 137.0966 L74.1691 138.0654 Q74.0129 138.0341 73.8254 138.0185 Q73.6379 137.9873 73.4816 137.9873 Q72.9816 137.9873 72.5441 138.2685 Q72.1223 138.5341 71.8566 139.0185 Q71.6066 139.5029 71.6066 140.1435 L71.6066 143.581 L70.5441 143.581 L70.5441 137.1435 L71.4191 137.1435 L71.5285 138.331 L71.5754 138.331 Q71.8879 137.7998 72.3723 137.4248 Q72.8723 137.0341 73.5441 137.0341 ZM81.0939 140.3466 Q81.0939 141.956 80.2814 142.831 Q79.4689 143.706 78.0939 143.706 Q77.2502 143.706 76.5783 143.3154 Q75.9064 142.9248 75.5158 142.1748 Q75.1408 141.4248 75.1408 140.3466 Q75.1408 138.7529 75.9377 137.8935 Q76.7502 137.0341 78.1252 137.0341 Q79.0158 137.0341 79.6721 137.4248 Q80.3439 137.8154 80.7189 138.5498 Q81.0939 139.2841 81.0939 140.3466 ZM76.2346 140.3466 Q76.2346 141.4873 76.6877 142.1591 Q77.1408 142.831 78.1252 142.831 Q79.0939 142.831 79.5471 142.1591 Q80.0002 141.4873 80.0002 140.3466 Q80.0002 139.206 79.5471 138.5654 Q79.0939 137.9248 78.1096 137.9248 Q77.1252 137.9248 76.6721 138.5654 Q76.2346 139.206 76.2346 140.3466 ZM86.9477 141.7998 Q86.9477 142.7373 86.2446 143.2216 Q85.5571 143.706 84.3852 143.706 Q83.7134 143.706 83.229 143.5966 Q82.7446 143.4873 82.3696 143.2998 L82.3696 142.331 Q82.7602 142.5185 83.2915 142.6904 Q83.8384 142.8466 84.4009 142.8466 Q85.2134 142.8466 85.5727 142.5966 Q85.9321 142.331 85.9321 141.8935 Q85.9321 141.6591 85.7915 141.4716 Q85.6665 141.2841 85.3227 141.0966 Q84.979 140.8935 84.354 140.6591 Q83.729 140.4091 83.2759 140.1748 Q82.8384 139.9404 82.5884 139.6123 Q82.354 139.2685 82.354 138.7373 Q82.354 137.9248 83.0102 137.4873 Q83.6821 137.0341 84.7759 137.0341 Q85.354 137.0341 85.854 137.1435 Q86.3696 137.2529 86.8227 137.456 L86.4634 138.2998 Q86.0571 138.1279 85.604 138.0185 Q85.1665 137.8935 84.6977 137.8935 Q84.0415 137.8935 83.6977 138.1123 Q83.3696 138.3154 83.3696 138.6748 Q83.3696 138.9404 83.5259 139.1279 Q83.6821 139.3154 84.0415 139.4873 Q84.4009 139.6591 85.0259 139.8935 Q85.6352 140.1279 86.0571 140.3779 Q86.4946 140.6123 86.7134 140.956 Q86.9477 141.2841 86.9477 141.7998 ZM90.9927 137.0341 Q91.8208 137.0341 92.4145 137.3935 Q93.0083 137.7529 93.3208 138.4091 Q93.6489 139.0498 93.6489 139.9404 L93.6489 140.5654 L89.2427 140.5654 Q89.2739 141.6591 89.8052 142.2373 Q90.3364 142.7998 91.2895 142.7998 Q91.9145 142.7998 92.3833 142.6904 Q92.852 142.5654 93.3677 142.3623 L93.3677 143.2841 Q92.8677 143.5029 92.3833 143.5966 Q91.9145 143.706 91.2427 143.706 Q90.3364 143.706 89.6333 143.331 Q88.9302 142.956 88.5395 142.2216 Q88.1489 141.4873 88.1489 140.4091 Q88.1489 139.3623 88.5083 138.6123 Q88.8677 137.8466 89.5083 137.4404 Q90.1489 137.0341 90.9927 137.0341 ZM90.977 137.8935 Q90.227 137.8935 89.7895 138.3779 Q89.352 138.8623 89.2739 139.7216 L92.5395 139.7216 Q92.5395 138.9091 92.1645 138.4091 Q91.7895 137.8935 90.977 137.8935 ZM98.2763 137.0341 Q98.4638 137.0341 98.667 137.0498 Q98.8857 137.0654 99.042 137.0966 L98.9013 138.0654 Q98.7451 138.0341 98.5576 138.0185 Q98.3701 137.9873 98.2138 137.9873 Q97.7138 137.9873 97.2763 138.2685 Q96.8545 138.5341 96.5888 139.0185 Q96.3388 139.5029 96.3388 140.1435 L96.3388 143.581 L95.2763 143.581 L95.2763 137.1435 L96.1513 137.1435 L96.2607 138.331 L96.3076 138.331 Q96.6201 137.7998 97.1045 137.4248 Q97.6045 137.0341 98.2763 137.0341 ZM101.6543 143.581 L99.2168 137.1435 L100.3418 137.1435 L101.7168 140.9404 Q101.8105 141.206 101.9199 141.5341 Q102.0293 141.8466 102.1074 142.1435 Q102.1855 142.4404 102.2324 142.6435 L102.2793 142.6435 Q102.3261 142.4404 102.4043 142.1435 Q102.498 141.8466 102.6074 141.5185 Q102.7324 141.1904 102.8105 140.9404 L104.1855 137.1435 L105.3105 137.1435 L102.8574 143.581 L101.6543 143.581 ZM106.8753 134.7373 Q107.1097 134.7373 107.2972 134.9091 Q107.4847 135.0654 107.4847 135.4091 Q107.4847 135.7373 107.2972 135.9091 Q107.1097 136.081 106.8753 136.081 Q106.6097 136.081 106.4222 135.9091 Q106.2503 135.7373 106.2503 135.4091 Q106.2503 135.0654 106.4222 134.9091 Q106.6097 134.7373 106.8753 134.7373 ZM107.3909 137.1435 L107.3909 143.581 L106.3284 143.581 L106.3284 137.1435 L107.3909 137.1435 ZM112.0026 143.706 Q111.1588 143.706 110.4869 143.3623 Q109.8307 143.0029 109.4401 142.2685 Q109.0651 141.5341 109.0651 140.3935 Q109.0651 139.206 109.4557 138.4716 Q109.8619 137.7216 110.5338 137.3779 Q111.2213 137.0341 112.0807 137.0341 Q112.5651 137.0341 113.0182 137.1435 Q113.4869 137.2373 113.7682 137.3779 L113.4557 138.2529 Q113.1588 138.1435 112.7682 138.0498 Q112.3932 137.956 112.0494 137.956 Q110.1588 137.956 110.1588 140.3935 Q110.1588 141.5498 110.6119 142.1748 Q111.0807 142.7841 112.0026 142.7841 Q112.5182 142.7841 112.9244 142.6748 Q113.3307 142.5654 113.6588 142.4248 L113.6588 143.3466 Q113.3463 143.5185 112.9557 143.6123 Q112.5651 143.706 112.0026 143.706 ZM115.7314 134.7373 Q115.9657 134.7373 116.1532 134.9091 Q116.3407 135.0654 116.3407 135.4091 Q116.3407 135.7373 116.1532 135.9091 Q115.9657 136.081 115.7314 136.081 Q115.4657 136.081 115.2782 135.9091 Q115.1064 135.7373 115.1064 135.4091 Q115.1064 135.0654 115.2782 134.9091 Q115.4657 134.7373 115.7314 134.7373 ZM116.247 137.1435 L116.247 143.581 L115.1845 143.581 L115.1845 137.1435 L116.247 137.1435 ZM123.8743 140.3466 Q123.8743 141.956 123.0618 142.831 Q122.2493 143.706 120.8743 143.706 Q120.0305 143.706 119.3586 143.3154 Q118.6868 142.9248 118.2961 142.1748 Q117.9211 141.4248 117.9211 140.3466 Q117.9211 138.7529 118.718 137.8935 Q119.5305 137.0341 120.9055 137.0341 Q121.7961 137.0341 122.4524 137.4248 Q123.1243 137.8154 123.4993 138.5498 Q123.8743 139.2841 123.8743 140.3466 ZM119.0149 140.3466 Q119.0149 141.4873 119.468 142.1591 Q119.9211 142.831 120.9055 142.831 Q121.8743 142.831 122.3274 142.1591 Q122.7805 141.4873 122.7805 140.3466 Q122.7805 139.206 122.3274 138.5654 Q121.8743 137.9248 120.8899 137.9248 Q119.9055 137.9248 119.4524 138.5654 Q119.0149 139.206 119.0149 140.3466 ZM129.7281 141.7998 Q129.7281 142.7373 129.0249 143.2216 Q128.3374 143.706 127.1656 143.706 Q126.4937 143.706 126.0093 143.5966 Q125.5249 143.4873 125.1499 143.2998 L125.1499 142.331 Q125.5406 142.5185 126.0718 142.6904 Q126.6187 142.8466 127.1812 142.8466 Q127.9937 142.8466 128.3531 142.5966 Q128.7124 142.331 128.7124 141.8935 Q128.7124 141.6591 128.5718 141.4716 Q128.4468 141.2841 128.1031 141.0966 Q127.7593 140.8935 127.1343 140.6591 Q126.5093 140.4091 126.0562 140.1748 Q125.6187 139.9404 125.3687 139.6123 Q125.1343 139.2685 125.1343 138.7373 Q125.1343 137.9248 125.7906 137.4873 Q126.4624 137.0341 127.5562 137.0341 Q128.1343 137.0341 128.6343 137.1435 Q129.1499 137.2529 129.6031 137.456 L129.2437 138.2998 Q128.8374 138.1279 128.3843 138.0185 Q127.9468 137.8935 127.4781 137.8935 Q126.8218 137.8935 126.4781 138.1123 Q126.1499 138.3154 126.1499 138.6748 Q126.1499 138.9404 126.3062 139.1279 Q126.4624 139.3154 126.8218 139.4873 Q127.1812 139.6591 127.8062 139.8935 Q128.4156 140.1279 128.8374 140.3779 Q129.2749 140.6123 129.4937 140.956 Q129.7281 141.2841 129.7281 141.7998 ZM133.398 140.2998 Q133.398 141.7373 132.9605 143.081 Q132.5386 144.4248 131.6324 145.4716 L130.648 145.4716 Q131.4761 144.3466 131.898 143.0185 Q132.3199 141.6748 132.3199 140.2841 Q132.3199 138.8466 131.898 137.5029 Q131.4761 136.1435 130.6324 135.0185 L131.6324 135.0185 Q132.5386 136.1123 132.9605 137.4716 Q133.398 138.831 133.398 140.2998 ZM142.1962 141.7998 Q142.1962 142.7373 141.493 143.2216 Q140.8055 143.706 139.6337 143.706 Q138.9618 143.706 138.4774 143.5966 Q137.993 143.4873 137.618 143.2998 L137.618 142.331 Q138.0087 142.5185 138.5399 142.6904 Q139.0868 142.8466 139.6493 142.8466 Q140.4618 142.8466 140.8212 142.5966 Q141.1805 142.331 141.1805 141.8935 Q141.1805 141.6591 141.0399 141.4716 Q140.9149 141.2841 140.5712 141.0966 Q140.2274 140.8935 139.6024 140.6591 Q138.9774 140.4091 138.5243 140.1748 Q138.0868 139.9404 137.8368 139.6123 Q137.6024 139.2685 137.6024 138.7373 Q137.6024 137.9248 138.2587 137.4873 Q138.9305 137.0341 140.0243 137.0341 Q140.6024 137.0341 141.1024 137.1435 Q141.618 137.2529 142.0712 137.456 L141.7118 138.2998 Q141.3055 138.1279 140.8524 138.0185 Q140.4149 137.8935 139.9462 137.8935 Q139.2899 137.8935 138.9462 138.1123 Q138.618 138.3154 138.618 138.6748 Q138.618 138.9404 138.7743 139.1279 Q138.9305 139.3154 139.2899 139.4873 Q139.6493 139.6591 140.2743 139.8935 Q140.8837 140.1279 141.3055 140.3779 Q141.743 140.6123 141.9618 140.956 Q142.1962 141.2841 142.1962 141.7998 ZM146.2411 137.0341 Q147.0692 137.0341 147.6629 137.3935 Q148.2567 137.7529 148.5692 138.4091 Q148.8973 139.0498 148.8973 139.9404 L148.8973 140.5654 L144.4911 140.5654 Q144.5223 141.6591 145.0536 142.2373 Q145.5848 142.7998 146.5379 142.7998 Q147.1629 142.7998 147.6317 142.6904 Q148.1004 142.5654 148.6161 142.3623 L148.6161 143.2841 Q148.1161 143.5029 147.6317 143.5966 Q147.1629 143.706 146.4911 143.706 Q145.5848 143.706 144.8817 143.331 Q144.1786 142.956 143.7879 142.2216 Q143.3973 141.4873 143.3973 140.4091 Q143.3973 139.3623 143.7567 138.6123 Q144.1161 137.8466 144.7567 137.4404 Q145.3973 137.0341 146.2411 137.0341 ZM146.2254 137.8935 Q145.4754 137.8935 145.0379 138.3779 Q144.6004 138.8623 144.5223 139.7216 L147.7879 139.7216 Q147.7879 138.9091 147.4129 138.4091 Q147.0379 137.8935 146.2254 137.8935 ZM156.2229 143.706 Q155.3792 143.706 154.7073 143.3623 Q154.051 143.0029 153.6604 142.2685 Q153.2854 141.5341 153.2854 140.3935 Q153.2854 139.206 153.676 138.4716 Q154.0823 137.7216 154.7542 137.3779 Q155.4417 137.0341 156.301 137.0341 Q156.7854 137.0341 157.2385 137.1435 Q157.7073 137.2373 157.9885 137.3779 L157.676 138.2529 Q157.3792 138.1435 156.9885 138.0498 Q156.6135 137.956 156.2698 137.956 Q154.3792 137.956 154.3792 140.3935 Q154.3792 141.5498 154.8323 142.1748 Q155.301 142.7841 156.2229 142.7841 Q156.7385 142.7841 157.1448 142.6748 Q157.551 142.5654 157.8792 142.4248 L157.8792 143.3466 Q157.5667 143.5185 157.176 143.6123 Q156.7854 143.706 156.2229 143.706 ZM164.9986 140.3466 Q164.9986 141.956 164.1861 142.831 Q163.3736 143.706 161.9986 143.706 Q161.1548 143.706 160.4829 143.3154 Q159.8111 142.9248 159.4204 142.1748 Q159.0454 141.4248 159.0454 140.3466 Q159.0454 138.7529 159.8423 137.8935 Q160.6548 137.0341 162.0298 137.0341 Q162.9204 137.0341 163.5767 137.4248 Q164.2486 137.8154 164.6236 138.5498 Q164.9986 139.2841 164.9986 140.3466 ZM160.1392 140.3466 Q160.1392 141.4873 160.5923 142.1591 Q161.0454 142.831 162.0298 142.831 Q162.9986 142.831 163.4517 142.1591 Q163.9048 141.4873 163.9048 140.3466 Q163.9048 139.206 163.4517 138.5654 Q162.9986 137.9248 162.0142 137.9248 Q161.0298 137.9248 160.5767 138.5654 Q160.1392 139.206 160.1392 140.3466 ZM173.7274 137.0341 Q174.8211 137.0341 175.3524 137.5966 Q175.8992 138.1435 175.8992 139.3935 L175.8992 143.581 L174.8524 143.581 L174.8524 139.4404 Q174.8524 137.9248 173.5399 137.9248 Q172.6024 137.9248 172.1961 138.4716 Q171.8055 139.0029 171.8055 140.0341 L171.8055 143.581 L170.7586 143.581 L170.7586 139.4404 Q170.7586 137.9248 169.4461 137.9248 Q168.4617 137.9248 168.0867 138.5185 Q167.7274 139.1123 167.7274 140.2373 L167.7274 143.581 L166.6649 143.581 L166.6649 137.1435 L167.5242 137.1435 L167.6805 138.0185 L167.743 138.0185 Q168.0399 137.5185 168.5399 137.2841 Q169.0555 137.0341 169.6336 137.0341 Q171.1492 137.0341 171.6024 138.1123 L171.6649 138.1123 Q171.993 137.5498 172.5399 137.2998 Q173.1024 137.0341 173.7274 137.0341 ZM183.2599 137.1435 L183.2599 143.581 L182.4006 143.581 L182.2443 142.7216 L182.1974 142.7216 Q181.8849 143.2373 181.3224 143.4716 Q180.7756 143.706 180.1506 143.706 Q178.9943 143.706 178.4006 143.1435 Q177.8224 142.581 177.8224 141.3623 L177.8224 137.1435 L178.8849 137.1435 L178.8849 141.2841 Q178.8849 142.831 180.3068 142.831 Q181.3849 142.831 181.7912 142.2373 Q182.2131 141.6279 182.2131 140.5029 L182.2131 137.1435 L183.2599 137.1435 ZM188.3947 137.0341 Q189.551 137.0341 190.1291 137.5966 Q190.7229 138.1435 190.7229 139.3935 L190.7229 143.581 L189.6916 143.581 L189.6916 139.4716 Q189.6916 137.9248 188.2385 137.9248 Q187.176 137.9248 186.7697 138.5185 Q186.3635 139.1123 186.3635 140.2373 L186.3635 143.581 L185.301 143.581 L185.301 137.1435 L186.1604 137.1435 L186.3166 138.0185 L186.3791 138.0185 Q186.6916 137.5185 187.2385 137.2841 Q187.7854 137.0341 188.3947 137.0341 ZM193.2639 134.7373 Q193.4983 134.7373 193.6858 134.9091 Q193.8733 135.0654 193.8733 135.4091 Q193.8733 135.7373 193.6858 135.9091 Q193.4983 136.081 193.2639 136.081 Q192.9983 136.081 192.8108 135.9091 Q192.6389 135.7373 192.6389 135.4091 Q192.6389 135.0654 192.8108 134.9091 Q192.9983 134.7373 193.2639 134.7373 ZM193.7795 137.1435 L193.7795 143.581 L192.717 143.581 L192.717 137.1435 L193.7795 137.1435 ZM198.3912 143.706 Q197.5474 143.706 196.8756 143.3623 Q196.2193 143.0029 195.8287 142.2685 Q195.4537 141.5341 195.4537 140.3935 Q195.4537 139.206 195.8443 138.4716 Q196.2506 137.7216 196.9224 137.3779 Q197.6099 137.0341 198.4693 137.0341 Q198.9537 137.0341 199.4068 137.1435 Q199.8756 137.2373 200.1568 137.3779 L199.8443 138.2529 Q199.5474 138.1435 199.1568 138.0498 Q198.7818 137.956 198.4381 137.956 Q196.5474 137.956 196.5474 140.3935 Q196.5474 141.5498 197.0006 142.1748 Q197.4693 142.7841 198.3912 142.7841 Q198.9068 142.7841 199.3131 142.6748 Q199.7193 142.5654 200.0474 142.4248 L200.0474 143.3466 Q199.7349 143.5185 199.3443 143.6123 Q198.9537 143.706 198.3912 143.706 ZM204.0106 137.0341 Q205.1825 137.0341 205.745 137.5498 Q206.3231 138.0654 206.3231 139.206 L206.3231 143.581 L205.5419 143.581 L205.3387 142.6748 L205.2919 142.6748 Q204.87 143.1904 204.4012 143.456 Q203.9481 143.706 203.1356 143.706 Q202.2606 143.706 201.6825 143.2529 Q201.1044 142.7841 201.1044 141.7998 Q201.1044 140.831 201.8544 140.3154 Q202.62 139.7841 204.1981 139.7373 L205.2919 139.706 L205.2919 139.3154 Q205.2919 138.5185 204.9325 138.206 Q204.5887 137.8935 203.9481 137.8935 Q203.4481 137.8935 202.995 138.0498 Q202.5419 138.1904 202.1356 138.3779 L201.8231 137.5966 Q202.245 137.3623 202.8075 137.206 Q203.3856 137.0341 204.0106 137.0341 ZM204.3231 140.4716 Q203.12 140.5185 202.6512 140.8623 Q202.1981 141.1904 202.1981 141.7998 Q202.1981 142.3466 202.5262 142.5966 Q202.8544 142.8466 203.37 142.8466 Q204.1981 142.8466 204.7294 142.4091 Q205.2762 141.956 205.2762 141.0185 L205.2762 140.4404 L204.3231 140.4716 ZM211.3989 137.0341 Q212.5551 137.0341 213.1333 137.5966 Q213.727 138.1435 213.727 139.3935 L213.727 143.581 L212.6958 143.581 L212.6958 139.4716 Q212.6958 137.9248 211.2426 137.9248 Q210.1801 137.9248 209.7739 138.5185 Q209.3676 139.1123 209.3676 140.2373 L209.3676 143.581 L208.3051 143.581 L208.3051 137.1435 L209.1645 137.1435 L209.3208 138.0185 L209.3833 138.0185 Q209.6958 137.5185 210.2426 137.2841 Q210.7895 137.0341 211.3989 137.0341 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1229.0718,156.3153)"
+    ><path d="M3.4531 153.3783 Q4.625 153.3783 5.1875 153.8939 Q5.7656 154.4095 5.7656 155.5501 L5.7656 159.9251 L4.9844 159.9251 L4.7812 159.0189 L4.7344 159.0189 Q4.3125 159.5345 3.8438 159.8001 Q3.3906 160.0501 2.5781 160.0501 Q1.7031 160.0501 1.125 159.597 Q0.5469 159.1283 0.5469 158.1439 Q0.5469 157.1751 1.2969 156.6595 Q2.0625 156.1283 3.6406 156.0814 L4.7344 156.0501 L4.7344 155.6595 Q4.7344 154.8626 4.375 154.5501 Q4.0312 154.2376 3.3906 154.2376 Q2.8906 154.2376 2.4375 154.3939 Q1.9844 154.5345 1.5781 154.722 L1.2656 153.9408 Q1.6875 153.7064 2.25 153.5501 Q2.8281 153.3783 3.4531 153.3783 ZM3.7656 156.8158 Q2.5625 156.8626 2.0938 157.2064 Q1.6406 157.5345 1.6406 158.1439 Q1.6406 158.6908 1.9688 158.9408 Q2.2969 159.1908 2.8125 159.1908 Q3.6406 159.1908 4.1719 158.7533 Q4.7188 158.3001 4.7188 157.3626 L4.7188 156.7845 L3.7656 156.8158 ZM13.0239 159.1751 Q13.2583 159.1751 13.5083 159.1439 Q13.7583 159.097 13.9146 159.0501 L13.9146 159.847 Q13.7583 159.9408 13.4458 159.9876 Q13.1333 160.0501 12.8364 160.0501 Q12.3364 160.0501 11.8989 159.8783 Q11.4771 159.6908 11.2114 159.2689 Q10.9614 158.8314 10.9614 158.0501 L10.9614 154.3158 L10.0396 154.3158 L10.0396 153.8001 L10.9614 153.3783 L11.3833 152.0189 L12.0083 152.0189 L12.0083 153.4876 L13.8677 153.4876 L13.8677 154.3158 L12.0083 154.3158 L12.0083 158.0345 Q12.0083 158.6126 12.2896 158.8939 Q12.5708 159.1751 13.0239 159.1751 ZM18.1997 153.3783 Q18.3872 153.3783 18.5903 153.3939 Q18.8091 153.4095 18.9653 153.4408 L18.8247 154.4095 Q18.6685 154.3783 18.481 154.3626 Q18.2935 154.3314 18.1372 154.3314 Q17.6372 154.3314 17.1997 154.6126 Q16.7778 154.8783 16.5122 155.3626 Q16.2622 155.847 16.2622 156.4876 L16.2622 159.9251 L15.1997 159.9251 L15.1997 153.4876 L16.0747 153.4876 L16.1841 154.6751 L16.231 154.6751 Q16.5435 154.1439 17.0278 153.7689 Q17.5278 153.3783 18.1997 153.3783 ZM22.5933 153.3783 Q23.7651 153.3783 24.3276 153.8939 Q24.9058 154.4095 24.9058 155.5501 L24.9058 159.9251 L24.1245 159.9251 L23.9214 159.0189 L23.8745 159.0189 Q23.4526 159.5345 22.9839 159.8001 Q22.5308 160.0501 21.7183 160.0501 Q20.8433 160.0501 20.2651 159.597 Q19.687 159.1283 19.687 158.1439 Q19.687 157.1751 20.437 156.6595 Q21.2026 156.1283 22.7808 156.0814 L23.8745 156.0501 L23.8745 155.6595 Q23.8745 154.8626 23.5151 154.5501 Q23.1714 154.2376 22.5308 154.2376 Q22.0308 154.2376 21.5776 154.3939 Q21.1245 154.5345 20.7183 154.722 L20.4058 153.9408 Q20.8276 153.7064 21.3901 153.5501 Q21.9683 153.3783 22.5933 153.3783 ZM22.9058 156.8158 Q21.7026 156.8626 21.2339 157.2064 Q20.7808 157.5345 20.7808 158.1439 Q20.7808 158.6908 21.1089 158.9408 Q21.437 159.1908 21.9526 159.1908 Q22.7808 159.1908 23.312 158.7533 Q23.8589 158.3001 23.8589 157.3626 L23.8589 156.7845 L22.9058 156.8158 ZM28.3097 159.9251 L25.8722 153.4876 L26.9972 153.4876 L28.3722 157.2845 Q28.4659 157.5501 28.5753 157.8783 Q28.6847 158.1908 28.7628 158.4876 Q28.8409 158.7845 28.8878 158.9876 L28.9347 158.9876 Q28.9816 158.7845 29.0597 158.4876 Q29.1534 158.1908 29.2628 157.8626 Q29.3878 157.5345 29.4659 157.2845 L30.8409 153.4876 L31.9659 153.4876 L29.5128 159.9251 L28.3097 159.9251 ZM35.4682 153.3783 Q36.2963 153.3783 36.8901 153.7376 Q37.4838 154.097 37.7963 154.7533 Q38.1245 155.3939 38.1245 156.2845 L38.1245 156.9095 L33.7182 156.9095 Q33.7495 158.0033 34.2807 158.5814 Q34.812 159.1439 35.7651 159.1439 Q36.3901 159.1439 36.8588 159.0345 Q37.3276 158.9095 37.8432 158.7064 L37.8432 159.6283 Q37.3432 159.847 36.8588 159.9408 Q36.3901 160.0501 35.7182 160.0501 Q34.812 160.0501 34.1088 159.6751 Q33.4057 159.3001 33.0151 158.5658 Q32.6245 157.8314 32.6245 156.7533 Q32.6245 155.7064 32.9838 154.9564 Q33.3432 154.1908 33.9838 153.7845 Q34.6245 153.3783 35.4682 153.3783 ZM35.4526 154.2376 Q34.7026 154.2376 34.2651 154.722 Q33.8276 155.2064 33.7495 156.0658 L37.0151 156.0658 Q37.0151 155.2533 36.6401 154.7533 Q36.2651 154.2376 35.4526 154.2376 ZM37.0776 150.847 Q36.937 151.0658 36.6245 151.4095 Q36.3276 151.7533 35.9838 152.097 Q35.6557 152.4408 35.3588 152.6595 L34.6713 152.6595 L34.6713 152.5033 Q34.8432 152.2845 35.0463 151.972 Q35.2651 151.6595 35.4682 151.3314 Q35.6713 151.0033 35.812 150.7376 L37.0776 150.7376 L37.0776 150.847 ZM43.9394 158.1439 Q43.9394 159.0814 43.2363 159.5658 Q42.5488 160.0501 41.3769 160.0501 Q40.705 160.0501 40.2206 159.9408 Q39.7363 159.8314 39.3613 159.6439 L39.3613 158.6751 Q39.7519 158.8626 40.2831 159.0345 Q40.83 159.1908 41.3925 159.1908 Q42.205 159.1908 42.5644 158.9408 Q42.9238 158.6751 42.9238 158.2376 Q42.9238 158.0033 42.7831 157.8158 Q42.6581 157.6283 42.3144 157.4408 Q41.9706 157.2376 41.3456 157.0033 Q40.7206 156.7533 40.2675 156.5189 Q39.83 156.2845 39.58 155.9564 Q39.3456 155.6126 39.3456 155.0814 Q39.3456 154.2689 40.0019 153.8314 Q40.6738 153.3783 41.7675 153.3783 Q42.3456 153.3783 42.8456 153.4876 Q43.3613 153.597 43.8144 153.8001 L43.455 154.6439 Q43.0488 154.472 42.5956 154.3626 Q42.1581 154.2376 41.6894 154.2376 Q41.0331 154.2376 40.6894 154.4564 Q40.3613 154.6595 40.3613 155.0189 Q40.3613 155.2845 40.5175 155.472 Q40.6738 155.6595 41.0331 155.8314 Q41.3925 156.0033 42.0175 156.2376 Q42.6269 156.472 43.0488 156.722 Q43.4863 156.9564 43.705 157.3001 Q43.9394 157.6283 43.9394 158.1439 ZM50.9012 160.0501 Q49.6981 160.0501 48.9793 159.222 Q48.2606 158.3783 48.2606 156.722 Q48.2606 155.0658 48.9793 154.222 Q49.7137 153.3783 50.9168 153.3783 Q51.6668 153.3783 52.1356 153.6595 Q52.6043 153.9251 52.9012 154.3158 L52.9793 154.3158 Q52.9637 154.1595 52.9325 153.8626 Q52.9012 153.5501 52.9012 153.3783 L52.9012 150.8001 L53.9637 150.8001 L53.9637 159.9251 L53.12 159.9251 L52.9637 159.0658 L52.9012 159.0658 Q52.62 159.472 52.1356 159.7689 Q51.6668 160.0501 50.9012 160.0501 ZM51.0731 159.1751 Q52.0887 159.1751 52.495 158.6126 Q52.9168 158.0501 52.9168 156.9251 L52.9168 156.7376 Q52.9168 155.5345 52.5262 154.8939 Q52.1356 154.2533 51.0575 154.2533 Q50.2137 154.2533 49.7762 154.9408 Q49.3543 155.6126 49.3543 156.7376 Q49.3543 157.8939 49.7762 158.5345 Q50.2137 159.1751 51.0731 159.1751 ZM58.4844 153.3783 Q59.3125 153.3783 59.9063 153.7376 Q60.5 154.097 60.8125 154.7533 Q61.1406 155.3939 61.1406 156.2845 L61.1406 156.9095 L56.7344 156.9095 Q56.7656 158.0033 57.2969 158.5814 Q57.8281 159.1439 58.7813 159.1439 Q59.4063 159.1439 59.875 159.0345 Q60.3438 158.9095 60.8594 158.7064 L60.8594 159.6283 Q60.3594 159.847 59.875 159.9408 Q59.4063 160.0501 58.7344 160.0501 Q57.8281 160.0501 57.125 159.6751 Q56.4219 159.3001 56.0313 158.5658 Q55.6406 157.8314 55.6406 156.7533 Q55.6406 155.7064 56 154.9564 Q56.3594 154.1908 57 153.7845 Q57.6406 153.3783 58.4844 153.3783 ZM58.4688 154.2376 Q57.7188 154.2376 57.2813 154.722 Q56.8438 155.2064 56.7656 156.0658 L60.0313 156.0658 Q60.0313 155.2533 59.6563 154.7533 Q59.2813 154.2376 58.4688 154.2376 ZM66.935 155.5658 Q66.935 155.7689 66.9193 156.0814 Q66.9037 156.3783 66.8881 156.6126 L66.935 156.6126 Q67.0131 156.5189 67.1537 156.347 Q67.2943 156.1595 67.435 155.972 Q67.5912 155.7845 67.7006 155.6595 L69.7631 153.4876 L70.9975 153.4876 L68.3881 156.2376 L71.1693 159.9251 L69.9037 159.9251 L67.6693 156.9251 L66.935 157.5658 L66.935 159.9251 L65.8881 159.9251 L65.8881 150.8001 L66.935 150.8001 L66.935 155.5658 ZM77.8899 156.6908 Q77.8899 158.3001 77.0774 159.1751 Q76.2649 160.0501 74.8899 160.0501 Q74.0461 160.0501 73.3743 159.6595 Q72.7024 159.2689 72.3118 158.5189 Q71.9368 157.7689 71.9368 156.6908 Q71.9368 155.097 72.7336 154.2376 Q73.5461 153.3783 74.9211 153.3783 Q75.8118 153.3783 76.468 153.7689 Q77.1399 154.1595 77.5149 154.8939 Q77.8899 155.6283 77.8899 156.6908 ZM73.0305 156.6908 Q73.0305 157.8314 73.4836 158.5033 Q73.9368 159.1751 74.9211 159.1751 Q75.8899 159.1751 76.343 158.5033 Q76.7961 157.8314 76.7961 156.6908 Q76.7961 155.5501 76.343 154.9095 Q75.8899 154.2689 74.9055 154.2689 Q73.9211 154.2689 73.468 154.9095 Q73.0305 155.5501 73.0305 156.6908 ZM82.6499 153.3783 Q83.8062 153.3783 84.3843 153.9408 Q84.9781 154.4876 84.9781 155.7376 L84.9781 159.9251 L83.9468 159.9251 L83.9468 155.8158 Q83.9468 154.2689 82.4937 154.2689 Q81.4312 154.2689 81.0249 154.8626 Q80.6187 155.4564 80.6187 156.5814 L80.6187 159.9251 L79.5562 159.9251 L79.5562 153.4876 L80.4156 153.4876 L80.5718 154.3626 L80.6343 154.3626 Q80.9468 153.8626 81.4937 153.6283 Q82.0406 153.3783 82.6499 153.3783 ZM89.2535 153.3783 Q89.8941 153.3783 90.3941 153.6126 Q90.9097 153.847 91.2691 154.347 L91.3316 154.347 L91.4722 153.4876 L92.316 153.4876 L92.316 160.0345 Q92.316 161.4095 91.6129 162.097 Q90.9097 162.8001 89.441 162.8001 Q88.0191 162.8001 87.1129 162.3939 L87.1129 161.4251 Q88.066 161.9251 89.5035 161.9251 Q90.3316 161.9251 90.8004 161.4408 Q91.2691 160.9564 91.2691 160.1126 L91.2691 159.8626 Q91.2691 159.722 91.2847 159.4564 Q91.3004 159.1751 91.316 159.0658 L91.2535 159.0658 Q90.6129 160.0501 89.2691 160.0501 Q88.0191 160.0501 87.316 159.1751 Q86.6129 158.3001 86.6129 156.722 Q86.6129 155.1908 87.316 154.2845 Q88.0191 153.3783 89.2535 153.3783 ZM89.3941 154.2689 Q88.5972 154.2689 88.1441 154.9095 Q87.7066 155.5501 87.7066 156.7376 Q87.7066 157.9251 88.1441 158.5501 Q88.5816 159.1751 89.4254 159.1751 Q90.3941 159.1751 90.8316 158.6595 Q91.2847 158.1439 91.2847 156.972 L91.2847 156.722 Q91.2847 155.3939 90.8316 154.8314 Q90.3785 154.2689 89.3941 154.2689 Z" style="stroke:none; clip-path:url(#clipPath7);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1588 -407 -1584 -411 -254 -411 -254 347 -258 351 -1588 351"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1588 -407 -1584 -411 -254 -411 -254 347 -258 351 -1588 351"
+      /><line x1="-258" x2="-255" y1="-407" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-410"
+      /><line x1="-1588" x2="-258" y1="-407" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-407"
+      /><line x1="-258" x2="-258" y1="-407" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="351"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1002.8443,-389.7712)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath8);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-943,-386.6559)"
+    ><path d="M8.0312 8.4531 Q8.0312 10.625 6.8438 11.7343 Q5.6562 12.8281 3.5469 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.7969 4.2656 Q5.0938 4.2656 6.0469 4.75 Q7 5.2187 7.5156 6.1562 Q8.0312 7.0781 8.0312 8.4531 ZM6.8906 8.5 Q6.8906 6.7812 6.0469 5.9843 Q5.2031 5.1875 3.6406 5.1875 L2.25 5.1875 L2.25 11.9062 L3.4062 11.9062 Q6.8906 11.9062 6.8906 8.5 ZM15.3694 9.5937 Q15.3694 11.2031 14.5569 12.0781 Q13.7444 12.9531 12.3694 12.9531 Q11.5257 12.9531 10.8538 12.5625 Q10.1819 12.1718 9.7913 11.4218 Q9.4163 10.6718 9.4163 9.5937 Q9.4163 8 10.2132 7.1406 Q11.0257 6.2812 12.4007 6.2812 Q13.2913 6.2812 13.9476 6.6718 Q14.6194 7.0625 14.9944 7.7968 Q15.3694 8.5312 15.3694 9.5937 ZM10.5101 9.5937 Q10.5101 10.7343 10.9632 11.4062 Q11.4163 12.0781 12.4007 12.0781 Q13.3694 12.0781 13.8226 11.4062 Q14.2757 10.7343 14.2757 9.5937 Q14.2757 8.4531 13.8226 7.8125 Q13.3694 7.1718 12.3851 7.1718 Q11.4007 7.1718 10.9476 7.8125 Q10.5101 8.4531 10.5101 9.5937 ZM19.6139 12.9531 Q18.7701 12.9531 18.0982 12.6093 Q17.442 12.25 17.0514 11.5156 Q16.6764 10.7812 16.6764 9.6406 Q16.6764 8.4531 17.067 7.7187 Q17.4732 6.9687 18.1451 6.625 Q18.8326 6.2812 19.692 6.2812 Q20.1764 6.2812 20.6295 6.3906 Q21.0982 6.4843 21.3795 6.625 L21.067 7.5 Q20.7701 7.3906 20.3795 7.2968 Q20.0045 7.2031 19.6607 7.2031 Q17.7701 7.2031 17.7701 9.6406 Q17.7701 10.7968 18.2232 11.4218 Q18.692 12.0312 19.6139 12.0312 Q20.1295 12.0312 20.5357 11.9218 Q20.942 11.8125 21.2701 11.6718 L21.2701 12.5937 Q20.9576 12.7656 20.567 12.8593 Q20.1764 12.9531 19.6139 12.9531 ZM23.8427 8.4687 Q23.8427 8.6718 23.827 8.9843 Q23.8114 9.2812 23.7958 9.5156 L23.8427 9.5156 Q23.9208 9.4218 24.0614 9.25 Q24.202 9.0625 24.3427 8.875 Q24.4989 8.6875 24.6083 8.5625 L26.6708 6.3906 L27.9052 6.3906 L25.2958 9.1406 L28.077 12.8281 L26.8114 12.8281 L24.577 9.8281 L23.8427 10.4687 L23.8427 12.8281 L22.7958 12.8281 L22.7958 3.7031 L23.8427 3.7031 L23.8427 8.4687 ZM31.6882 6.2812 Q32.5163 6.2812 33.1101 6.6406 Q33.7038 7 34.0163 7.6562 Q34.3445 8.2968 34.3445 9.1875 L34.3445 9.8125 L29.9382 9.8125 Q29.9695 10.9062 30.5007 11.4843 Q31.032 12.0468 31.9851 12.0468 Q32.6101 12.0468 33.0788 11.9375 Q33.5476 11.8125 34.0632 11.6093 L34.0632 12.5312 Q33.5632 12.75 33.0788 12.8437 Q32.6101 12.9531 31.9382 12.9531 Q31.032 12.9531 30.3288 12.5781 Q29.6257 12.2031 29.2351 11.4687 Q28.8445 10.7343 28.8445 9.6562 Q28.8445 8.6093 29.2038 7.8593 Q29.5632 7.0937 30.2038 6.6875 Q30.8445 6.2812 31.6882 6.2812 ZM31.6726 7.1406 Q30.9226 7.1406 30.4851 7.625 Q30.0476 8.1093 29.9695 8.9687 L33.2351 8.9687 Q33.2351 8.1562 32.8601 7.6562 Q32.4851 7.1406 31.6726 7.1406 ZM38.9719 6.2812 Q39.1594 6.2812 39.3625 6.2968 Q39.5813 6.3125 39.7375 6.3437 L39.5969 7.3125 Q39.4406 7.2812 39.2531 7.2656 Q39.0656 7.2343 38.9094 7.2343 Q38.4094 7.2343 37.9719 7.5156 Q37.55 7.7812 37.2844 8.2656 Q37.0344 8.75 37.0344 9.3906 L37.0344 12.8281 L35.9719 12.8281 L35.9719 6.3906 L36.8469 6.3906 L36.9563 7.5781 L37.0031 7.5781 Q37.3156 7.0468 37.8 6.6718 Q38.3 6.2812 38.9719 6.2812 Z" style="stroke:none; clip-path:url(#clipPath9);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1229 -58 -1225 -62 -997 -62 -997 127 -1001 131 -1229 131"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1229 -58 -1225 -62 -997 -62 -997 127 -1001 131 -1229 131"
+      /><line x1="-1001" x2="-998" y1="-58" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-61"
+      /><line x1="-1229" x2="-1001" y1="-58" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-58"
+      /><line x1="-1001" x2="-1001" y1="-58" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="131"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1176.8146,-40.4209)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM27.7175 -3.2344 Q27.7175 -1.625 26.905 -0.75 Q26.0925 0.125 24.7175 0.125 Q23.8738 0.125 23.2019 -0.2656 Q22.53 -0.6562 22.1394 -1.4062 Q21.7644 -2.1562 21.7644 -3.2344 Q21.7644 -4.8281 22.5613 -5.6875 Q23.3738 -6.5469 24.7488 -6.5469 Q25.6394 -6.5469 26.2956 -6.1562 Q26.9675 -5.7656 27.3425 -5.0312 Q27.7175 -4.2969 27.7175 -3.2344 ZM22.8581 -3.2344 Q22.8581 -2.0938 23.3113 -1.4219 Q23.7644 -0.75 24.7488 -0.75 Q25.7175 -0.75 26.1706 -1.4219 Q26.6238 -2.0938 26.6238 -3.2344 Q26.6238 -4.375 26.1706 -5.0156 Q25.7175 -5.6562 24.7331 -5.6562 Q23.7488 -5.6562 23.2956 -5.0156 Q22.8581 -4.375 22.8581 -3.2344 ZM31.9619 0.125 Q31.1182 0.125 30.4463 -0.2188 Q29.7901 -0.5781 29.3994 -1.3125 Q29.0244 -2.0469 29.0244 -3.1875 Q29.0244 -4.375 29.4151 -5.1094 Q29.8213 -5.8594 30.4932 -6.2031 Q31.1807 -6.5469 32.0401 -6.5469 Q32.5244 -6.5469 32.9776 -6.4375 Q33.4463 -6.3438 33.7276 -6.2031 L33.4151 -5.3281 Q33.1182 -5.4375 32.7276 -5.5312 Q32.3526 -5.625 32.0088 -5.625 Q30.1182 -5.625 30.1182 -3.1875 Q30.1182 -2.0312 30.5713 -1.4062 Q31.0401 -0.7969 31.9619 -0.7969 Q32.4776 -0.7969 32.8838 -0.9062 Q33.2901 -1.0156 33.6182 -1.1562 L33.6182 -0.2344 Q33.3057 -0.0625 32.9151 0.0312 Q32.5244 0.125 31.9619 0.125 ZM36.1907 -4.3594 Q36.1907 -4.1562 36.1751 -3.8438 Q36.1595 -3.5469 36.1439 -3.3125 L36.1907 -3.3125 Q36.2689 -3.4062 36.4095 -3.5781 Q36.5501 -3.7656 36.6907 -3.9531 Q36.847 -4.1406 36.9564 -4.2656 L39.0189 -6.4375 L40.2532 -6.4375 L37.6439 -3.6875 L40.4251 0 L39.1595 0 L36.9251 -3 L36.1907 -2.3594 L36.1907 0 L35.1439 0 L35.1439 -9.125 L36.1907 -9.125 L36.1907 -4.3594 ZM44.0363 -6.5469 Q44.8644 -6.5469 45.4582 -6.1875 Q46.0519 -5.8281 46.3644 -5.1719 Q46.6925 -4.5312 46.6925 -3.6406 L46.6925 -3.0156 L42.2863 -3.0156 Q42.3175 -1.9219 42.8488 -1.3438 Q43.38 -0.7812 44.3332 -0.7812 Q44.9582 -0.7812 45.4269 -0.8906 Q45.8957 -1.0156 46.4113 -1.2188 L46.4113 -0.2969 Q45.9113 -0.0781 45.4269 0.0156 Q44.9582 0.125 44.2863 0.125 Q43.38 0.125 42.6769 -0.25 Q41.9738 -0.625 41.5832 -1.3594 Q41.1925 -2.0938 41.1925 -3.1719 Q41.1925 -4.2188 41.5519 -4.9688 Q41.9113 -5.7344 42.5519 -6.1406 Q43.1925 -6.5469 44.0363 -6.5469 ZM44.0207 -5.6875 Q43.2707 -5.6875 42.8332 -5.2031 Q42.3957 -4.7188 42.3175 -3.8594 L45.5832 -3.8594 Q45.5832 -4.6719 45.2082 -5.1719 Q44.8332 -5.6875 44.0207 -5.6875 ZM51.32 -6.5469 Q51.5075 -6.5469 51.7106 -6.5312 Q51.9293 -6.5156 52.0856 -6.4844 L51.945 -5.5156 Q51.7887 -5.5469 51.6012 -5.5625 Q51.4137 -5.5938 51.2575 -5.5938 Q50.7575 -5.5938 50.32 -5.3125 Q49.8981 -5.0469 49.6325 -4.5625 Q49.3825 -4.0781 49.3825 -3.4375 L49.3825 0 L48.32 0 L48.32 -6.4375 L49.195 -6.4375 L49.3043 -5.25 L49.3512 -5.25 Q49.6637 -5.7812 50.1481 -6.1562 Q50.6481 -6.5469 51.32 -6.5469 ZM58.9742 0.125 Q58.1304 0.125 57.4585 -0.2188 Q56.8023 -0.5781 56.4117 -1.3125 Q56.0367 -2.0469 56.0367 -3.1875 Q56.0367 -4.375 56.4273 -5.1094 Q56.8335 -5.8594 57.5054 -6.2031 Q58.1929 -6.5469 59.0523 -6.5469 Q59.5367 -6.5469 59.9898 -6.4375 Q60.4585 -6.3438 60.7398 -6.2031 L60.4273 -5.3281 Q60.1304 -5.4375 59.7398 -5.5312 Q59.3648 -5.625 59.021 -5.625 Q57.1304 -5.625 57.1304 -3.1875 Q57.1304 -2.0312 57.5835 -1.4062 Q58.0523 -0.7969 58.9742 -0.7969 Q59.4898 -0.7969 59.896 -0.9062 Q60.3023 -1.0156 60.6304 -1.1562 L60.6304 -0.2344 Q60.3179 -0.0625 59.9273 0.0312 Q59.5367 0.125 58.9742 0.125 ZM67.7498 -3.2344 Q67.7498 -1.625 66.9373 -0.75 Q66.1248 0.125 64.7498 0.125 Q63.9061 0.125 63.2342 -0.2656 Q62.5623 -0.6562 62.1717 -1.4062 Q61.7967 -2.1562 61.7967 -3.2344 Q61.7967 -4.8281 62.5936 -5.6875 Q63.4061 -6.5469 64.7811 -6.5469 Q65.6717 -6.5469 66.3279 -6.1562 Q66.9998 -5.7656 67.3748 -5.0312 Q67.7498 -4.2969 67.7498 -3.2344 ZM62.8904 -3.2344 Q62.8904 -2.0938 63.3436 -1.4219 Q63.7967 -0.75 64.7811 -0.75 Q65.7498 -0.75 66.2029 -1.4219 Q66.6561 -2.0938 66.6561 -3.2344 Q66.6561 -4.375 66.2029 -5.0156 Q65.7498 -5.6562 64.7654 -5.6562 Q63.7811 -5.6562 63.3279 -5.0156 Q62.8904 -4.375 62.8904 -3.2344 ZM72.5099 -6.5469 Q73.6661 -6.5469 74.2442 -5.9844 Q74.838 -5.4375 74.838 -4.1875 L74.838 0 L73.8067 0 L73.8067 -4.1094 Q73.8067 -5.6562 72.3536 -5.6562 Q71.2911 -5.6562 70.8849 -5.0625 Q70.4786 -4.4688 70.4786 -3.3438 L70.4786 0 L69.4161 0 L69.4161 -6.4375 L70.2755 -6.4375 L70.4317 -5.5625 L70.4942 -5.5625 Q70.8067 -6.0625 71.3536 -6.2969 Q71.9005 -6.5469 72.5099 -6.5469 ZM78.9884 -0.75 Q79.2228 -0.75 79.4728 -0.7812 Q79.7228 -0.8281 79.879 -0.875 L79.879 -0.0781 Q79.7228 0.0156 79.4103 0.0625 Q79.0978 0.125 78.8009 0.125 Q78.3009 0.125 77.8634 -0.0469 Q77.4415 -0.2344 77.1759 -0.6562 Q76.9259 -1.0938 76.9259 -1.875 L76.9259 -5.6094 L76.004 -5.6094 L76.004 -6.125 L76.9259 -6.5469 L77.3478 -7.9062 L77.9728 -7.9062 L77.9728 -6.4375 L79.8322 -6.4375 L79.8322 -5.6094 L77.9728 -5.6094 L77.9728 -1.8906 Q77.9728 -1.3125 78.254 -1.0312 Q78.5353 -0.75 78.9884 -0.75 ZM83.6017 -6.5469 Q84.7736 -6.5469 85.3361 -6.0312 Q85.9142 -5.5156 85.9142 -4.375 L85.9142 0 L85.1329 0 L84.9298 -0.9062 L84.8829 -0.9062 Q84.4611 -0.3906 83.9923 -0.125 Q83.5392 0.125 82.7267 0.125 Q81.8517 0.125 81.2736 -0.3281 Q80.6954 -0.7969 80.6954 -1.7812 Q80.6954 -2.75 81.4454 -3.2656 Q82.2111 -3.7969 83.7892 -3.8438 L84.8829 -3.875 L84.8829 -4.2656 Q84.8829 -5.0625 84.5236 -5.375 Q84.1798 -5.6875 83.5392 -5.6875 Q83.0392 -5.6875 82.5861 -5.5312 Q82.1329 -5.3906 81.7267 -5.2031 L81.4142 -5.9844 Q81.8361 -6.2188 82.3986 -6.375 Q82.9767 -6.5469 83.6017 -6.5469 ZM83.9142 -3.1094 Q82.7111 -3.0625 82.2423 -2.7188 Q81.7892 -2.3906 81.7892 -1.7812 Q81.7892 -1.2344 82.1173 -0.9844 Q82.4454 -0.7344 82.9611 -0.7344 Q83.7892 -0.7344 84.3204 -1.1719 Q84.8673 -1.625 84.8673 -2.5625 L84.8673 -3.1406 L83.9142 -3.1094 ZM88.4431 -8.8438 Q88.6775 -8.8438 88.865 -8.6719 Q89.0525 -8.5156 89.0525 -8.1719 Q89.0525 -7.8438 88.865 -7.6719 Q88.6775 -7.5 88.4431 -7.5 Q88.1775 -7.5 87.99 -7.6719 Q87.8181 -7.8438 87.8181 -8.1719 Q87.8181 -8.5156 87.99 -8.6719 Q88.1775 -8.8438 88.4431 -8.8438 ZM88.9587 -6.4375 L88.9587 0 L87.8962 0 L87.8962 -6.4375 L88.9587 -6.4375 ZM94.086 -6.5469 Q95.2423 -6.5469 95.8204 -5.9844 Q96.4141 -5.4375 96.4141 -4.1875 L96.4141 0 L95.3829 0 L95.3829 -4.1094 Q95.3829 -5.6562 93.9298 -5.6562 Q92.8673 -5.6562 92.461 -5.0625 Q92.0548 -4.4688 92.0548 -3.3438 L92.0548 0 L90.9923 0 L90.9923 -6.4375 L91.8516 -6.4375 L92.0079 -5.5625 L92.0704 -5.5625 Q92.3829 -6.0625 92.9298 -6.2969 Q93.4766 -6.5469 94.086 -6.5469 ZM100.8927 -6.5469 Q101.7208 -6.5469 102.3146 -6.1875 Q102.9083 -5.8281 103.2208 -5.1719 Q103.5489 -4.5312 103.5489 -3.6406 L103.5489 -3.0156 L99.1427 -3.0156 Q99.1739 -1.9219 99.7052 -1.3438 Q100.2364 -0.7812 101.1896 -0.7812 Q101.8146 -0.7812 102.2833 -0.8906 Q102.7521 -1.0156 103.2677 -1.2188 L103.2677 -0.2969 Q102.7677 -0.0781 102.2833 0.0156 Q101.8146 0.125 101.1427 0.125 Q100.2364 0.125 99.5333 -0.25 Q98.8302 -0.625 98.4396 -1.3594 Q98.0489 -2.0938 98.0489 -3.1719 Q98.0489 -4.2188 98.4083 -4.9688 Q98.7677 -5.7344 99.4083 -6.1406 Q100.0489 -6.5469 100.8927 -6.5469 ZM100.8771 -5.6875 Q100.1271 -5.6875 99.6896 -5.2031 Q99.2521 -4.7188 99.1739 -3.8594 L102.4396 -3.8594 Q102.4396 -4.6719 102.0646 -5.1719 Q101.6896 -5.6875 100.8771 -5.6875 ZM108.1764 -6.5469 Q108.3639 -6.5469 108.567 -6.5312 Q108.7857 -6.5156 108.942 -6.4844 L108.8014 -5.5156 Q108.6451 -5.5469 108.4576 -5.5625 Q108.2701 -5.5938 108.1139 -5.5938 Q107.6139 -5.5938 107.1764 -5.3125 Q106.7545 -5.0469 106.4889 -4.5625 Q106.2389 -4.0781 106.2389 -3.4375 L106.2389 0 L105.1764 0 L105.1764 -6.4375 L106.0514 -6.4375 L106.1607 -5.25 L106.2076 -5.25 Q106.5201 -5.7812 107.0045 -6.1562 Q107.5045 -6.5469 108.1764 -6.5469 ZM109.7105 -2.3281 L114.2418 -4.2188 L109.7105 -6.3594 L109.7105 -7.2969 L115.3668 -4.4688 L115.3668 -3.875 L109.7105 -1.3906 L109.7105 -2.3281 ZM116.5746 -2.3281 L121.1058 -4.2188 L116.5746 -6.3594 L116.5746 -7.2969 L122.2308 -4.4688 L122.2308 -3.875 L116.5746 -1.3906 L116.5746 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath10);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1165.5504,-37.6559)"
+    ><path d="M6.5469 12.8281 L5.5156 10.1718 L2.1094 10.1718 L1.0938 12.8281 L0 12.8281 L3.3438 4.2187 L4.3125 4.2187 L7.6562 12.8281 L6.5469 12.8281 ZM4.2188 6.625 Q4.1875 6.5312 4.0938 6.2812 Q4.0156 6.0312 3.9375 5.7656 Q3.8594 5.4843 3.8125 5.3437 Q3.7344 5.7187 3.625 6.0781 Q3.5156 6.4218 3.4375 6.625 L2.4688 9.2187 L5.1875 9.2187 L4.2188 6.625 ZM14.0587 6.3906 L14.0587 12.8281 L13.1993 12.8281 L13.0431 11.9687 L12.9962 11.9687 Q12.6837 12.4843 12.1212 12.7187 Q11.5743 12.9531 10.9493 12.9531 Q9.7931 12.9531 9.1993 12.3906 Q8.6212 11.8281 8.6212 10.6093 L8.6212 6.3906 L9.6837 6.3906 L9.6837 10.5312 Q9.6837 12.0781 11.1056 12.0781 Q12.1837 12.0781 12.5899 11.4843 Q13.0118 10.875 13.0118 9.75 L13.0118 6.3906 L14.0587 6.3906 ZM18.256 12.0781 Q18.4904 12.0781 18.7404 12.0468 Q18.9904 12 19.1466 11.9531 L19.1466 12.75 Q18.9904 12.8437 18.6779 12.8906 Q18.3654 12.9531 18.0685 12.9531 Q17.5685 12.9531 17.131 12.7812 Q16.7091 12.5937 16.4435 12.1718 Q16.1935 11.7343 16.1935 10.9531 L16.1935 7.2187 L15.2716 7.2187 L15.2716 6.7031 L16.1935 6.2812 L16.6154 4.9218 L17.2404 4.9218 L17.2404 6.3906 L19.0997 6.3906 L19.0997 7.2187 L17.2404 7.2187 L17.2404 10.9375 Q17.2404 11.5156 17.5216 11.7968 Q17.8029 12.0781 18.256 12.0781 ZM21.4943 6.3906 Q21.4943 6.8593 21.4318 7.2812 L21.5099 7.2812 Q21.8224 6.7968 22.3536 6.5468 Q22.8849 6.2812 23.5099 6.2812 Q24.6818 6.2812 25.2599 6.8437 Q25.8536 7.4062 25.8536 8.6406 L25.8536 12.8281 L24.8224 12.8281 L24.8224 8.7187 Q24.8224 7.1718 23.3693 7.1718 Q22.2911 7.1718 21.8849 7.7812 Q21.4943 8.375 21.4943 9.5 L21.4943 12.8281 L20.4318 12.8281 L20.4318 3.7031 L21.4943 3.7031 L21.4943 6.3906 ZM34.8897 12.8281 L32.0772 5.3125 L32.0303 5.3125 Q32.0616 5.6875 32.0772 6.3281 Q32.1085 6.9531 32.1085 7.625 L32.1085 12.8281 L31.1085 12.8281 L31.1085 4.2656 L32.7178 4.2656 L35.3585 11.2812 L35.4053 11.2812 L38.0928 4.2656 L39.671 4.2656 L39.671 12.8281 L38.6085 12.8281 L38.6085 7.5625 Q38.6085 6.9375 38.6397 6.3281 Q38.671 5.7187 38.6866 5.3281 L38.6397 5.3281 L35.7803 12.8281 L34.8897 12.8281 ZM42.3988 3.9843 Q42.6332 3.9843 42.8207 4.1562 Q43.0082 4.3125 43.0082 4.6562 Q43.0082 4.9843 42.8207 5.1562 Q42.6332 5.3281 42.3988 5.3281 Q42.1332 5.3281 41.9457 5.1562 Q41.7738 4.9843 41.7738 4.6562 Q41.7738 4.3125 41.9457 4.1562 Q42.1332 3.9843 42.3988 3.9843 ZM42.9144 6.3906 L42.9144 12.8281 L41.8519 12.8281 L41.8519 6.3906 L42.9144 6.3906 ZM47.5261 12.9531 Q46.6823 12.9531 46.0104 12.6093 Q45.3542 12.25 44.9636 11.5156 Q44.5886 10.7812 44.5886 9.6406 Q44.5886 8.4531 44.9792 7.7187 Q45.3854 6.9687 46.0573 6.625 Q46.7448 6.2812 47.6042 6.2812 Q48.0886 6.2812 48.5417 6.3906 Q49.0104 6.4843 49.2917 6.625 L48.9792 7.5 Q48.6823 7.3906 48.2917 7.2968 Q47.9167 7.2031 47.5729 7.2031 Q45.6823 7.2031 45.6823 9.6406 Q45.6823 10.7968 46.1354 11.4218 Q46.6042 12.0312 47.5261 12.0312 Q48.0417 12.0312 48.4479 11.9218 Q48.8542 11.8125 49.1823 11.6718 L49.1823 12.5937 Q48.8698 12.7656 48.4792 12.8593 Q48.0886 12.9531 47.5261 12.9531 ZM53.708 6.2812 Q53.8955 6.2812 54.0986 6.2968 Q54.3174 6.3125 54.4736 6.3437 L54.333 7.3125 Q54.1767 7.2812 53.9892 7.2656 Q53.8017 7.2343 53.6455 7.2343 Q53.1455 7.2343 52.708 7.5156 Q52.2861 7.7812 52.0205 8.2656 Q51.7705 8.75 51.7705 9.3906 L51.7705 12.8281 L50.708 12.8281 L50.708 6.3906 L51.583 6.3906 L51.6924 7.5781 L51.7392 7.5781 Q52.0517 7.0468 52.5361 6.6718 Q53.0361 6.2812 53.708 6.2812 ZM61.2578 9.5937 Q61.2578 11.2031 60.4453 12.0781 Q59.6328 12.9531 58.2578 12.9531 Q57.414 12.9531 56.7421 12.5625 Q56.0703 12.1718 55.6796 11.4218 Q55.3046 10.6718 55.3046 9.5937 Q55.3046 8 56.1015 7.1406 Q56.914 6.2812 58.289 6.2812 Q59.1796 6.2812 59.8359 6.6718 Q60.5078 7.0625 60.8828 7.7968 Q61.2578 8.5312 61.2578 9.5937 ZM56.3984 9.5937 Q56.3984 10.7343 56.8515 11.4062 Q57.3046 12.0781 58.289 12.0781 Q59.2578 12.0781 59.7109 11.4062 Q60.164 10.7343 60.164 9.5937 Q60.164 8.4531 59.7109 7.8125 Q59.2578 7.1718 58.2734 7.1718 Q57.289 7.1718 56.8359 7.8125 Q56.3984 8.4531 56.3984 9.5937 ZM67.1116 11.0468 Q67.1116 11.9843 66.4084 12.4687 Q65.7209 12.9531 64.5491 12.9531 Q63.8772 12.9531 63.3928 12.8437 Q62.9084 12.7343 62.5334 12.5468 L62.5334 11.5781 Q62.9241 11.7656 63.4553 11.9375 Q64.0022 12.0937 64.5647 12.0937 Q65.3772 12.0937 65.7366 11.8437 Q66.0959 11.5781 66.0959 11.1406 Q66.0959 10.9062 65.9553 10.7187 Q65.8303 10.5312 65.4866 10.3437 Q65.1428 10.1406 64.5178 9.9062 Q63.8928 9.6562 63.4397 9.4218 Q63.0022 9.1875 62.7522 8.8593 Q62.5178 8.5156 62.5178 7.9843 Q62.5178 7.1718 63.1741 6.7343 Q63.8459 6.2812 64.9397 6.2812 Q65.5178 6.2812 66.0178 6.3906 Q66.5334 6.5 66.9866 6.7031 L66.6272 7.5468 Q66.2209 7.375 65.7678 7.2656 Q65.3303 7.1406 64.8616 7.1406 Q64.2053 7.1406 63.8616 7.3593 Q63.5334 7.5625 63.5334 7.9218 Q63.5334 8.1875 63.6897 8.375 Q63.8459 8.5625 64.2053 8.7343 Q64.5647 8.9062 65.1897 9.1406 Q65.7991 9.375 66.2209 9.625 Q66.6584 9.8593 66.8772 10.2031 Q67.1116 10.5312 67.1116 11.0468 ZM71.1565 6.2812 Q71.9846 6.2812 72.5784 6.6406 Q73.1721 7 73.4846 7.6562 Q73.8127 8.2968 73.8127 9.1875 L73.8127 9.8125 L69.4065 9.8125 Q69.4377 10.9062 69.969 11.4843 Q70.5002 12.0468 71.4534 12.0468 Q72.0784 12.0468 72.5471 11.9375 Q73.0159 11.8125 73.5315 11.6093 L73.5315 12.5312 Q73.0315 12.75 72.5471 12.8437 Q72.0784 12.9531 71.4065 12.9531 Q70.5002 12.9531 69.7971 12.5781 Q69.094 12.2031 68.7034 11.4687 Q68.3127 10.7343 68.3127 9.6562 Q68.3127 8.6093 68.6721 7.8593 Q69.0315 7.0937 69.6721 6.6875 Q70.3127 6.2812 71.1565 6.2812 ZM71.1409 7.1406 Q70.3909 7.1406 69.9534 7.625 Q69.5159 8.1093 69.4377 8.9687 L72.7034 8.9687 Q72.7034 8.1562 72.3284 7.6562 Q71.9534 7.1406 71.1409 7.1406 ZM78.4402 6.2812 Q78.6277 6.2812 78.8308 6.2968 Q79.0495 6.3125 79.2058 6.3437 L79.0652 7.3125 Q78.9089 7.2812 78.7214 7.2656 Q78.5339 7.2343 78.3777 7.2343 Q77.8777 7.2343 77.4402 7.5156 Q77.0183 7.7812 76.7527 8.2656 Q76.5027 8.75 76.5027 9.3906 L76.5027 12.8281 L75.4402 12.8281 L75.4402 6.3906 L76.3152 6.3906 L76.4245 7.5781 L76.4714 7.5781 Q76.7839 7.0468 77.2683 6.6718 Q77.7683 6.2812 78.4402 6.2812 ZM81.8181 12.8281 L79.3806 6.3906 L80.5056 6.3906 L81.8806 10.1875 Q81.9743 10.4531 82.0837 10.7812 Q82.1931 11.0937 82.2712 11.3906 Q82.3493 11.6875 82.3962 11.8906 L82.4431 11.8906 Q82.49 11.6875 82.5681 11.3906 Q82.6618 11.0937 82.7712 10.7656 Q82.8962 10.4375 82.9743 10.1875 L84.3493 6.3906 L85.4743 6.3906 L83.0212 12.8281 L81.8181 12.8281 ZM87.0391 3.9843 Q87.2735 3.9843 87.461 4.1562 Q87.6485 4.3125 87.6485 4.6562 Q87.6485 4.9843 87.461 5.1562 Q87.2735 5.3281 87.0391 5.3281 Q86.7735 5.3281 86.586 5.1562 Q86.4141 4.9843 86.4141 4.6562 Q86.4141 4.3125 86.586 4.1562 Q86.7735 3.9843 87.0391 3.9843 ZM87.5547 6.3906 L87.5547 12.8281 L86.4922 12.8281 L86.4922 6.3906 L87.5547 6.3906 ZM92.1664 12.9531 Q91.3226 12.9531 90.6508 12.6093 Q89.9945 12.25 89.6039 11.5156 Q89.2289 10.7812 89.2289 9.6406 Q89.2289 8.4531 89.6195 7.7187 Q90.0258 6.9687 90.6976 6.625 Q91.3851 6.2812 92.2445 6.2812 Q92.7289 6.2812 93.182 6.3906 Q93.6508 6.4843 93.932 6.625 L93.6195 7.5 Q93.3226 7.3906 92.932 7.2968 Q92.557 7.2031 92.2133 7.2031 Q90.3226 7.2031 90.3226 9.6406 Q90.3226 10.7968 90.7758 11.4218 Q91.2445 12.0312 92.1664 12.0312 Q92.682 12.0312 93.0883 11.9218 Q93.4945 11.8125 93.8226 11.6718 L93.8226 12.5937 Q93.5101 12.7656 93.1195 12.8593 Q92.7289 12.9531 92.1664 12.9531 ZM97.8327 6.2812 Q98.6608 6.2812 99.2546 6.6406 Q99.8483 7 100.1608 7.6562 Q100.4889 8.2968 100.4889 9.1875 L100.4889 9.8125 L96.0827 9.8125 Q96.1139 10.9062 96.6452 11.4843 Q97.1764 12.0468 98.1296 12.0468 Q98.7546 12.0468 99.2233 11.9375 Q99.6921 11.8125 100.2077 11.6093 L100.2077 12.5312 Q99.7077 12.75 99.2233 12.8437 Q98.7546 12.9531 98.0827 12.9531 Q97.1764 12.9531 96.4733 12.5781 Q95.7702 12.2031 95.3796 11.4687 Q94.9889 10.7343 94.9889 9.6562 Q94.9889 8.6093 95.3483 7.8593 Q95.7077 7.0937 96.3483 6.6875 Q96.9889 6.2812 97.8327 6.2812 ZM97.8171 7.1406 Q97.0671 7.1406 96.6296 7.625 Q96.1921 8.1093 96.1139 8.9687 L99.3796 8.9687 Q99.3796 8.1562 99.0046 7.6562 Q98.6296 7.1406 97.8171 7.1406 Z" style="stroke:none; clip-path:url(#clipPath11);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1214 2 -1210 -2 -1012 -2 -1012 111 -1016 115 -1214 115"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1214 2 -1210 -2 -1012 -2 -1012 111 -1016 115 -1214 115"
+      /><line x1="-1016" x2="-1013" y1="2" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-1"
+      /><line x1="-1214" x2="-1016" y1="2" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="2"
+      /><line x1="-1016" x2="-1016" y1="2" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="115"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1194.6347,20.9303)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath12);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1136,22.3441)"
+    ><path d="M3.875 12.8281 L2.7969 12.8281 L2.7969 5.2031 L0.125 5.2031 L0.125 4.2656 L6.5469 4.2656 L6.5469 5.2031 L3.875 5.2031 L3.875 12.8281 ZM13.2814 9.5937 Q13.2814 11.2031 12.4689 12.0781 Q11.6564 12.9531 10.2814 12.9531 Q9.4377 12.9531 8.7658 12.5625 Q8.0939 12.1718 7.7033 11.4218 Q7.3283 10.6718 7.3283 9.5937 Q7.3283 8 8.1252 7.1406 Q8.9377 6.2812 10.3127 6.2812 Q11.2033 6.2812 11.8595 6.6718 Q12.5314 7.0625 12.9064 7.7968 Q13.2814 8.5312 13.2814 9.5937 ZM8.422 9.5937 Q8.422 10.7343 8.8752 11.4062 Q9.3283 12.0781 10.3127 12.0781 Q11.2814 12.0781 11.7345 11.4062 Q12.1877 10.7343 12.1877 9.5937 Q12.1877 8.4531 11.7345 7.8125 Q11.2814 7.1718 10.297 7.1718 Q9.3127 7.1718 8.8595 7.8125 Q8.422 8.4531 8.422 9.5937 ZM22.0102 6.2812 Q23.104 6.2812 23.6352 6.8437 Q24.1821 7.3906 24.1821 8.6406 L24.1821 12.8281 L23.1352 12.8281 L23.1352 8.6875 Q23.1352 7.1718 21.8227 7.1718 Q20.8852 7.1718 20.479 7.7187 Q20.0883 8.25 20.0883 9.2812 L20.0883 12.8281 L19.0415 12.8281 L19.0415 8.6875 Q19.0415 7.1718 17.729 7.1718 Q16.7446 7.1718 16.3696 7.7656 Q16.0102 8.3593 16.0102 9.4843 L16.0102 12.8281 L14.9477 12.8281 L14.9477 6.3906 L15.8071 6.3906 L15.9633 7.2656 L16.0258 7.2656 Q16.3227 6.7656 16.8227 6.5312 Q17.3383 6.2812 17.9165 6.2812 Q19.4321 6.2812 19.8852 7.3593 L19.9477 7.3593 Q20.2758 6.7968 20.8227 6.5468 Q21.3852 6.2812 22.0102 6.2812 ZM28.7459 12.9531 Q27.9022 12.9531 27.2303 12.6093 Q26.5741 12.25 26.1834 11.5156 Q25.8084 10.7812 25.8084 9.6406 Q25.8084 8.4531 26.1991 7.7187 Q26.6053 6.9687 27.2772 6.625 Q27.9647 6.2812 28.8241 6.2812 Q29.3084 6.2812 29.7616 6.3906 Q30.2303 6.4843 30.5116 6.625 L30.1991 7.5 Q29.9022 7.3906 29.5116 7.2968 Q29.1366 7.2031 28.7928 7.2031 Q26.9022 7.2031 26.9022 9.6406 Q26.9022 10.7968 27.3553 11.4218 Q27.8241 12.0312 28.7459 12.0312 Q29.2616 12.0312 29.6678 11.9218 Q30.0741 11.8125 30.4022 11.6718 L30.4022 12.5937 Q30.0897 12.7656 29.6991 12.8593 Q29.3084 12.9531 28.7459 12.9531 ZM34.3653 6.2812 Q35.5372 6.2812 36.0997 6.7968 Q36.6778 7.3125 36.6778 8.4531 L36.6778 12.8281 L35.8966 12.8281 L35.6935 11.9218 L35.6466 11.9218 Q35.2247 12.4375 34.756 12.7031 Q34.3028 12.9531 33.4903 12.9531 Q32.6153 12.9531 32.0372 12.5 Q31.4591 12.0312 31.4591 11.0468 Q31.4591 10.0781 32.2091 9.5625 Q32.9747 9.0312 34.5528 8.9843 L35.6466 8.9531 L35.6466 8.5625 Q35.6466 7.7656 35.2872 7.4531 Q34.9435 7.1406 34.3028 7.1406 Q33.8028 7.1406 33.3497 7.2968 Q32.8966 7.4375 32.4903 7.625 L32.1778 6.8437 Q32.5997 6.6093 33.1622 6.4531 Q33.7403 6.2812 34.3653 6.2812 ZM34.6778 9.7187 Q33.4747 9.7656 33.006 10.1093 Q32.5528 10.4375 32.5528 11.0468 Q32.5528 11.5937 32.881 11.8437 Q33.2091 12.0937 33.7247 12.0937 Q34.5528 12.0937 35.0841 11.6562 Q35.631 11.2031 35.631 10.2656 L35.631 9.6875 L34.6778 9.7187 ZM40.8161 12.0781 Q41.0505 12.0781 41.3005 12.0468 Q41.5505 12 41.7068 11.9531 L41.7068 12.75 Q41.5505 12.8437 41.238 12.8906 Q40.9255 12.9531 40.6286 12.9531 Q40.1286 12.9531 39.6911 12.7812 Q39.2693 12.5937 39.0036 12.1718 Q38.7536 11.7343 38.7536 10.9531 L38.7536 7.2187 L37.8318 7.2187 L37.8318 6.7031 L38.7536 6.2812 L39.1755 4.9218 L39.8005 4.9218 L39.8005 6.3906 L41.6599 6.3906 L41.6599 7.2187 L39.8005 7.2187 L39.8005 10.9375 Q39.8005 11.5156 40.0818 11.7968 Q40.363 12.0781 40.8161 12.0781 Z" style="stroke:none; clip-path:url(#clipPath13);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-1174.8921" y="52.7088" width="119" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="-1174.8921" y="52.7088" width="119" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="-1073.8921" y="58.7088" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="-1073.8921" y="58.7088" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="-1075.8921" y="66.7088" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-1075.8921" y="66.7088" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="-1075.8921" y="61.7088" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-1075.8921" y="61.7088" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1154.8921,70.7088)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath14);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1143.8063,73.0529)"
+    ><path d="M6.5469 12.8281 L5.5156 10.1718 L2.1094 10.1718 L1.0938 12.8281 L0 12.8281 L3.3438 4.2187 L4.3125 4.2187 L7.6562 12.8281 L6.5469 12.8281 ZM4.2188 6.625 Q4.1875 6.5312 4.0938 6.2812 Q4.0156 6.0312 3.9375 5.7656 Q3.8594 5.4843 3.8125 5.3437 Q3.7344 5.7187 3.625 6.0781 Q3.5156 6.4218 3.4375 6.625 L2.4688 9.2187 L5.1875 9.2187 L4.2188 6.625 ZM14.0587 6.3906 L14.0587 12.8281 L13.1993 12.8281 L13.0431 11.9687 L12.9962 11.9687 Q12.6837 12.4843 12.1212 12.7187 Q11.5743 12.9531 10.9493 12.9531 Q9.7931 12.9531 9.1993 12.3906 Q8.6212 11.8281 8.6212 10.6093 L8.6212 6.3906 L9.6837 6.3906 L9.6837 10.5312 Q9.6837 12.0781 11.1056 12.0781 Q12.1837 12.0781 12.5899 11.4843 Q13.0118 10.875 13.0118 9.75 L13.0118 6.3906 L14.0587 6.3906 ZM18.256 12.0781 Q18.4904 12.0781 18.7404 12.0468 Q18.9904 12 19.1466 11.9531 L19.1466 12.75 Q18.9904 12.8437 18.6779 12.8906 Q18.3654 12.9531 18.0685 12.9531 Q17.5685 12.9531 17.131 12.7812 Q16.7091 12.5937 16.4435 12.1718 Q16.1935 11.7343 16.1935 10.9531 L16.1935 7.2187 L15.2716 7.2187 L15.2716 6.7031 L16.1935 6.2812 L16.6154 4.9218 L17.2404 4.9218 L17.2404 6.3906 L19.0997 6.3906 L19.0997 7.2187 L17.2404 7.2187 L17.2404 10.9375 Q17.2404 11.5156 17.5216 11.7968 Q17.8029 12.0781 18.256 12.0781 ZM21.4943 6.3906 Q21.4943 6.8593 21.4318 7.2812 L21.5099 7.2812 Q21.8224 6.7968 22.3536 6.5468 Q22.8849 6.2812 23.5099 6.2812 Q24.6818 6.2812 25.2599 6.8437 Q25.8536 7.4062 25.8536 8.6406 L25.8536 12.8281 L24.8224 12.8281 L24.8224 8.7187 Q24.8224 7.1718 23.3693 7.1718 Q22.2911 7.1718 21.8849 7.7812 Q21.4943 8.375 21.4943 9.5 L21.4943 12.8281 L20.4318 12.8281 L20.4318 3.7031 L21.4943 3.7031 L21.4943 6.3906 ZM33.3791 12.8281 L32.3478 10.1718 L28.9416 10.1718 L27.9259 12.8281 L26.8322 12.8281 L30.1759 4.2187 L31.1447 4.2187 L34.4884 12.8281 L33.3791 12.8281 ZM31.0509 6.625 Q31.0197 6.5312 30.9259 6.2812 Q30.8478 6.0312 30.7697 5.7656 Q30.6916 5.4843 30.6447 5.3437 Q30.5666 5.7187 30.4572 6.0781 Q30.3478 6.4218 30.2697 6.625 L29.3009 9.2187 L32.0197 9.2187 L31.0509 6.625 ZM37.9377 4.2656 Q39.6096 4.2656 40.3752 4.9218 Q41.1409 5.5781 41.1409 6.7812 Q41.1409 7.4843 40.8284 8.1093 Q40.5159 8.7187 39.7659 9.1093 Q39.0159 9.4843 37.7346 9.4843 L36.7502 9.4843 L36.7502 12.8281 L35.6565 12.8281 L35.6565 4.2656 L37.9377 4.2656 ZM37.844 5.1875 L36.7502 5.1875 L36.7502 8.5625 L37.6096 8.5625 Q38.8284 8.5625 39.4221 8.1718 Q40.0315 7.7812 40.0315 6.8281 Q40.0315 6 39.5002 5.5937 Q38.969 5.1875 37.844 5.1875 ZM45.3384 12.8281 L42.2447 12.8281 L42.2447 12.2031 L43.2447 11.9687 L43.2447 5.125 L42.2447 4.8906 L42.2447 4.2656 L45.3384 4.2656 L45.3384 4.8906 L44.3228 5.125 L44.3228 11.9687 L45.3384 12.2031 L45.3384 12.8281 Z" style="stroke:none; clip-path:url(#clipPath15);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -848 -363 -844 -367 -616 -367 -616 -174 -620 -170 -848 -170"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -848 -363 -844 -367 -616 -367 -616 -174 -620 -170 -848 -170"
+      /><line x1="-620" x2="-617" y1="-363" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-366"
+      /><line x1="-848" x2="-620" y1="-363" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-363"
+      /><line x1="-620" x2="-620" y1="-363" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-170"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-795.5803,-345.3814)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM27.7175 -3.2344 Q27.7175 -1.625 26.905 -0.75 Q26.0925 0.125 24.7175 0.125 Q23.8738 0.125 23.2019 -0.2656 Q22.53 -0.6562 22.1394 -1.4062 Q21.7644 -2.1562 21.7644 -3.2344 Q21.7644 -4.8281 22.5613 -5.6875 Q23.3738 -6.5469 24.7488 -6.5469 Q25.6394 -6.5469 26.2956 -6.1562 Q26.9675 -5.7656 27.3425 -5.0312 Q27.7175 -4.2969 27.7175 -3.2344 ZM22.8581 -3.2344 Q22.8581 -2.0938 23.3113 -1.4219 Q23.7644 -0.75 24.7488 -0.75 Q25.7175 -0.75 26.1706 -1.4219 Q26.6238 -2.0938 26.6238 -3.2344 Q26.6238 -4.375 26.1706 -5.0156 Q25.7175 -5.6562 24.7331 -5.6562 Q23.7488 -5.6562 23.2956 -5.0156 Q22.8581 -4.375 22.8581 -3.2344 ZM31.9619 0.125 Q31.1182 0.125 30.4463 -0.2188 Q29.7901 -0.5781 29.3994 -1.3125 Q29.0244 -2.0469 29.0244 -3.1875 Q29.0244 -4.375 29.4151 -5.1094 Q29.8213 -5.8594 30.4932 -6.2031 Q31.1807 -6.5469 32.0401 -6.5469 Q32.5244 -6.5469 32.9776 -6.4375 Q33.4463 -6.3438 33.7276 -6.2031 L33.4151 -5.3281 Q33.1182 -5.4375 32.7276 -5.5312 Q32.3526 -5.625 32.0088 -5.625 Q30.1182 -5.625 30.1182 -3.1875 Q30.1182 -2.0312 30.5713 -1.4062 Q31.0401 -0.7969 31.9619 -0.7969 Q32.4776 -0.7969 32.8838 -0.9062 Q33.2901 -1.0156 33.6182 -1.1562 L33.6182 -0.2344 Q33.3057 -0.0625 32.9151 0.0312 Q32.5244 0.125 31.9619 0.125 ZM36.1907 -4.3594 Q36.1907 -4.1562 36.1751 -3.8438 Q36.1595 -3.5469 36.1439 -3.3125 L36.1907 -3.3125 Q36.2689 -3.4062 36.4095 -3.5781 Q36.5501 -3.7656 36.6907 -3.9531 Q36.847 -4.1406 36.9564 -4.2656 L39.0189 -6.4375 L40.2532 -6.4375 L37.6439 -3.6875 L40.4251 0 L39.1595 0 L36.9251 -3 L36.1907 -2.3594 L36.1907 0 L35.1439 0 L35.1439 -9.125 L36.1907 -9.125 L36.1907 -4.3594 ZM44.0363 -6.5469 Q44.8644 -6.5469 45.4582 -6.1875 Q46.0519 -5.8281 46.3644 -5.1719 Q46.6925 -4.5312 46.6925 -3.6406 L46.6925 -3.0156 L42.2863 -3.0156 Q42.3175 -1.9219 42.8488 -1.3438 Q43.38 -0.7812 44.3332 -0.7812 Q44.9582 -0.7812 45.4269 -0.8906 Q45.8957 -1.0156 46.4113 -1.2188 L46.4113 -0.2969 Q45.9113 -0.0781 45.4269 0.0156 Q44.9582 0.125 44.2863 0.125 Q43.38 0.125 42.6769 -0.25 Q41.9738 -0.625 41.5832 -1.3594 Q41.1925 -2.0938 41.1925 -3.1719 Q41.1925 -4.2188 41.5519 -4.9688 Q41.9113 -5.7344 42.5519 -6.1406 Q43.1925 -6.5469 44.0363 -6.5469 ZM44.0207 -5.6875 Q43.2707 -5.6875 42.8332 -5.2031 Q42.3957 -4.7188 42.3175 -3.8594 L45.5832 -3.8594 Q45.5832 -4.6719 45.2082 -5.1719 Q44.8332 -5.6875 44.0207 -5.6875 ZM51.32 -6.5469 Q51.5075 -6.5469 51.7106 -6.5312 Q51.9293 -6.5156 52.0856 -6.4844 L51.945 -5.5156 Q51.7887 -5.5469 51.6012 -5.5625 Q51.4137 -5.5938 51.2575 -5.5938 Q50.7575 -5.5938 50.32 -5.3125 Q49.8981 -5.0469 49.6325 -4.5625 Q49.3825 -4.0781 49.3825 -3.4375 L49.3825 0 L48.32 0 L48.32 -6.4375 L49.195 -6.4375 L49.3043 -5.25 L49.3512 -5.25 Q49.6637 -5.7812 50.1481 -6.1562 Q50.6481 -6.5469 51.32 -6.5469 ZM58.9742 0.125 Q58.1304 0.125 57.4585 -0.2188 Q56.8023 -0.5781 56.4117 -1.3125 Q56.0367 -2.0469 56.0367 -3.1875 Q56.0367 -4.375 56.4273 -5.1094 Q56.8335 -5.8594 57.5054 -6.2031 Q58.1929 -6.5469 59.0523 -6.5469 Q59.5367 -6.5469 59.9898 -6.4375 Q60.4585 -6.3438 60.7398 -6.2031 L60.4273 -5.3281 Q60.1304 -5.4375 59.7398 -5.5312 Q59.3648 -5.625 59.021 -5.625 Q57.1304 -5.625 57.1304 -3.1875 Q57.1304 -2.0312 57.5835 -1.4062 Q58.0523 -0.7969 58.9742 -0.7969 Q59.4898 -0.7969 59.896 -0.9062 Q60.3023 -1.0156 60.6304 -1.1562 L60.6304 -0.2344 Q60.3179 -0.0625 59.9273 0.0312 Q59.5367 0.125 58.9742 0.125 ZM67.7498 -3.2344 Q67.7498 -1.625 66.9373 -0.75 Q66.1248 0.125 64.7498 0.125 Q63.9061 0.125 63.2342 -0.2656 Q62.5623 -0.6562 62.1717 -1.4062 Q61.7967 -2.1562 61.7967 -3.2344 Q61.7967 -4.8281 62.5936 -5.6875 Q63.4061 -6.5469 64.7811 -6.5469 Q65.6717 -6.5469 66.3279 -6.1562 Q66.9998 -5.7656 67.3748 -5.0312 Q67.7498 -4.2969 67.7498 -3.2344 ZM62.8904 -3.2344 Q62.8904 -2.0938 63.3436 -1.4219 Q63.7967 -0.75 64.7811 -0.75 Q65.7498 -0.75 66.2029 -1.4219 Q66.6561 -2.0938 66.6561 -3.2344 Q66.6561 -4.375 66.2029 -5.0156 Q65.7498 -5.6562 64.7654 -5.6562 Q63.7811 -5.6562 63.3279 -5.0156 Q62.8904 -4.375 62.8904 -3.2344 ZM72.5099 -6.5469 Q73.6661 -6.5469 74.2442 -5.9844 Q74.838 -5.4375 74.838 -4.1875 L74.838 0 L73.8067 0 L73.8067 -4.1094 Q73.8067 -5.6562 72.3536 -5.6562 Q71.2911 -5.6562 70.8849 -5.0625 Q70.4786 -4.4688 70.4786 -3.3438 L70.4786 0 L69.4161 0 L69.4161 -6.4375 L70.2755 -6.4375 L70.4317 -5.5625 L70.4942 -5.5625 Q70.8067 -6.0625 71.3536 -6.2969 Q71.9005 -6.5469 72.5099 -6.5469 ZM78.9884 -0.75 Q79.2228 -0.75 79.4728 -0.7812 Q79.7228 -0.8281 79.879 -0.875 L79.879 -0.0781 Q79.7228 0.0156 79.4103 0.0625 Q79.0978 0.125 78.8009 0.125 Q78.3009 0.125 77.8634 -0.0469 Q77.4415 -0.2344 77.1759 -0.6562 Q76.9259 -1.0938 76.9259 -1.875 L76.9259 -5.6094 L76.004 -5.6094 L76.004 -6.125 L76.9259 -6.5469 L77.3478 -7.9062 L77.9728 -7.9062 L77.9728 -6.4375 L79.8322 -6.4375 L79.8322 -5.6094 L77.9728 -5.6094 L77.9728 -1.8906 Q77.9728 -1.3125 78.254 -1.0312 Q78.5353 -0.75 78.9884 -0.75 ZM83.6017 -6.5469 Q84.7736 -6.5469 85.3361 -6.0312 Q85.9142 -5.5156 85.9142 -4.375 L85.9142 0 L85.1329 0 L84.9298 -0.9062 L84.8829 -0.9062 Q84.4611 -0.3906 83.9923 -0.125 Q83.5392 0.125 82.7267 0.125 Q81.8517 0.125 81.2736 -0.3281 Q80.6954 -0.7969 80.6954 -1.7812 Q80.6954 -2.75 81.4454 -3.2656 Q82.2111 -3.7969 83.7892 -3.8438 L84.8829 -3.875 L84.8829 -4.2656 Q84.8829 -5.0625 84.5236 -5.375 Q84.1798 -5.6875 83.5392 -5.6875 Q83.0392 -5.6875 82.5861 -5.5312 Q82.1329 -5.3906 81.7267 -5.2031 L81.4142 -5.9844 Q81.8361 -6.2188 82.3986 -6.375 Q82.9767 -6.5469 83.6017 -6.5469 ZM83.9142 -3.1094 Q82.7111 -3.0625 82.2423 -2.7188 Q81.7892 -2.3906 81.7892 -1.7812 Q81.7892 -1.2344 82.1173 -0.9844 Q82.4454 -0.7344 82.9611 -0.7344 Q83.7892 -0.7344 84.3204 -1.1719 Q84.8673 -1.625 84.8673 -2.5625 L84.8673 -3.1406 L83.9142 -3.1094 ZM88.4431 -8.8438 Q88.6775 -8.8438 88.865 -8.6719 Q89.0525 -8.5156 89.0525 -8.1719 Q89.0525 -7.8438 88.865 -7.6719 Q88.6775 -7.5 88.4431 -7.5 Q88.1775 -7.5 87.99 -7.6719 Q87.8181 -7.8438 87.8181 -8.1719 Q87.8181 -8.5156 87.99 -8.6719 Q88.1775 -8.8438 88.4431 -8.8438 ZM88.9587 -6.4375 L88.9587 0 L87.8962 0 L87.8962 -6.4375 L88.9587 -6.4375 ZM94.086 -6.5469 Q95.2423 -6.5469 95.8204 -5.9844 Q96.4141 -5.4375 96.4141 -4.1875 L96.4141 0 L95.3829 0 L95.3829 -4.1094 Q95.3829 -5.6562 93.9298 -5.6562 Q92.8673 -5.6562 92.461 -5.0625 Q92.0548 -4.4688 92.0548 -3.3438 L92.0548 0 L90.9923 0 L90.9923 -6.4375 L91.8516 -6.4375 L92.0079 -5.5625 L92.0704 -5.5625 Q92.3829 -6.0625 92.9298 -6.2969 Q93.4766 -6.5469 94.086 -6.5469 ZM100.8927 -6.5469 Q101.7208 -6.5469 102.3146 -6.1875 Q102.9083 -5.8281 103.2208 -5.1719 Q103.5489 -4.5312 103.5489 -3.6406 L103.5489 -3.0156 L99.1427 -3.0156 Q99.1739 -1.9219 99.7052 -1.3438 Q100.2364 -0.7812 101.1896 -0.7812 Q101.8146 -0.7812 102.2833 -0.8906 Q102.7521 -1.0156 103.2677 -1.2188 L103.2677 -0.2969 Q102.7677 -0.0781 102.2833 0.0156 Q101.8146 0.125 101.1427 0.125 Q100.2364 0.125 99.5333 -0.25 Q98.8302 -0.625 98.4396 -1.3594 Q98.0489 -2.0938 98.0489 -3.1719 Q98.0489 -4.2188 98.4083 -4.9688 Q98.7677 -5.7344 99.4083 -6.1406 Q100.0489 -6.5469 100.8927 -6.5469 ZM100.8771 -5.6875 Q100.1271 -5.6875 99.6896 -5.2031 Q99.2521 -4.7188 99.1739 -3.8594 L102.4396 -3.8594 Q102.4396 -4.6719 102.0646 -5.1719 Q101.6896 -5.6875 100.8771 -5.6875 ZM108.1764 -6.5469 Q108.3639 -6.5469 108.567 -6.5312 Q108.7857 -6.5156 108.942 -6.4844 L108.8014 -5.5156 Q108.6451 -5.5469 108.4576 -5.5625 Q108.2701 -5.5938 108.1139 -5.5938 Q107.6139 -5.5938 107.1764 -5.3125 Q106.7545 -5.0469 106.4889 -4.5625 Q106.2389 -4.0781 106.2389 -3.4375 L106.2389 0 L105.1764 0 L105.1764 -6.4375 L106.0514 -6.4375 L106.1607 -5.25 L106.2076 -5.25 Q106.5201 -5.7812 107.0045 -6.1562 Q107.5045 -6.5469 108.1764 -6.5469 ZM109.7105 -2.3281 L114.2418 -4.2188 L109.7105 -6.3594 L109.7105 -7.2969 L115.3668 -4.4688 L115.3668 -3.875 L109.7105 -1.3906 L109.7105 -2.3281 ZM116.5746 -2.3281 L121.1058 -4.2188 L116.5746 -6.3594 L116.5746 -7.2969 L122.2308 -4.4688 L122.2308 -3.875 L116.5746 -1.3906 L116.5746 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath16);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-785,-342.6559)"
+    ><path d="M7.6875 9.7968 Q7.6875 10.6875 7.3125 11.4062 Q6.9531 12.125 6.2188 12.5468 Q5.4844 12.9531 4.3438 12.9531 Q2.75 12.9531 1.9062 12.0781 Q1.0781 11.2031 1.0781 9.7812 L1.0781 4.2656 L2.1562 4.2656 L2.1562 9.8125 Q2.1562 10.8593 2.7188 11.4375 Q3.2812 12.0156 4.4062 12.0156 Q5.5625 12.0156 6.0781 11.4062 Q6.6094 10.7812 6.6094 9.7968 L6.6094 4.2656 L7.6875 4.2656 L7.6875 9.7968 ZM13.9752 11.0468 Q13.9752 11.9843 13.2721 12.4687 Q12.5846 12.9531 11.4127 12.9531 Q10.7408 12.9531 10.2564 12.8437 Q9.7721 12.7343 9.3971 12.5468 L9.3971 11.5781 Q9.7877 11.7656 10.3189 11.9375 Q10.8658 12.0937 11.4283 12.0937 Q12.2408 12.0937 12.6002 11.8437 Q12.9596 11.5781 12.9596 11.1406 Q12.9596 10.9062 12.8189 10.7187 Q12.6939 10.5312 12.3502 10.3437 Q12.0064 10.1406 11.3814 9.9062 Q10.7564 9.6562 10.3033 9.4218 Q9.8658 9.1875 9.6158 8.8593 Q9.3814 8.5156 9.3814 7.9843 Q9.3814 7.1718 10.0377 6.7343 Q10.7096 6.2812 11.8033 6.2812 Q12.3814 6.2812 12.8814 6.3906 Q13.3971 6.5 13.8502 6.7031 L13.4908 7.5468 Q13.0846 7.375 12.6314 7.2656 Q12.1939 7.1406 11.7252 7.1406 Q11.0689 7.1406 10.7252 7.3593 Q10.3971 7.5625 10.3971 7.9218 Q10.3971 8.1875 10.5533 8.375 Q10.7096 8.5625 11.0689 8.7343 Q11.4283 8.9062 12.0533 9.1406 Q12.6627 9.375 13.0846 9.625 Q13.5221 9.8593 13.7408 10.2031 Q13.9752 10.5312 13.9752 11.0468 ZM18.0201 6.2812 Q18.8482 6.2812 19.442 6.6406 Q20.0357 7 20.3482 7.6562 Q20.6764 8.2968 20.6764 9.1875 L20.6764 9.8125 L16.2701 9.8125 Q16.3014 10.9062 16.8326 11.4843 Q17.3639 12.0468 18.317 12.0468 Q18.942 12.0468 19.4107 11.9375 Q19.8795 11.8125 20.3951 11.6093 L20.3951 12.5312 Q19.8951 12.75 19.4107 12.8437 Q18.942 12.9531 18.2701 12.9531 Q17.3639 12.9531 16.6607 12.5781 Q15.9576 12.2031 15.567 11.4687 Q15.1764 10.7343 15.1764 9.6562 Q15.1764 8.6093 15.5357 7.8593 Q15.8951 7.0937 16.5357 6.6875 Q17.1764 6.2812 18.0201 6.2812 ZM18.0045 7.1406 Q17.2545 7.1406 16.817 7.625 Q16.3795 8.1093 16.3014 8.9687 L19.567 8.9687 Q19.567 8.1562 19.192 7.6562 Q18.817 7.1406 18.0045 7.1406 ZM25.3038 6.2812 Q25.4913 6.2812 25.6944 6.2968 Q25.9132 6.3125 26.0694 6.3437 L25.9288 7.3125 Q25.7725 7.2812 25.585 7.2656 Q25.3975 7.2343 25.2413 7.2343 Q24.7413 7.2343 24.3038 7.5156 Q23.8819 7.7812 23.6163 8.2656 Q23.3663 8.75 23.3663 9.3906 L23.3663 12.8281 L22.3038 12.8281 L22.3038 6.3906 L23.1788 6.3906 L23.2882 7.5781 L23.335 7.5781 Q23.6475 7.0468 24.1319 6.6718 Q24.6319 6.2812 25.3038 6.2812 ZM34.3017 12.8281 L31.4892 5.3125 L31.4424 5.3125 Q31.4736 5.6875 31.4892 6.3281 Q31.5205 6.9531 31.5205 7.625 L31.5205 12.8281 L30.5205 12.8281 L30.5205 4.2656 L32.1299 4.2656 L34.7705 11.2812 L34.8174 11.2812 L37.5049 4.2656 L39.083 4.2656 L39.083 12.8281 L38.0205 12.8281 L38.0205 7.5625 Q38.0205 6.9375 38.0517 6.3281 Q38.083 5.7187 38.0986 5.3281 L38.0517 5.3281 L35.1924 12.8281 L34.3017 12.8281 ZM41.8108 3.9843 Q42.0452 3.9843 42.2327 4.1562 Q42.4202 4.3125 42.4202 4.6562 Q42.4202 4.9843 42.2327 5.1562 Q42.0452 5.3281 41.8108 5.3281 Q41.5452 5.3281 41.3577 5.1562 Q41.1858 4.9843 41.1858 4.6562 Q41.1858 4.3125 41.3577 4.1562 Q41.5452 3.9843 41.8108 3.9843 ZM42.3264 6.3906 L42.3264 12.8281 L41.2639 12.8281 L41.2639 6.3906 L42.3264 6.3906 ZM46.9381 12.9531 Q46.0943 12.9531 45.4225 12.6093 Q44.7662 12.25 44.3756 11.5156 Q44.0006 10.7812 44.0006 9.6406 Q44.0006 8.4531 44.3912 7.7187 Q44.7975 6.9687 45.4693 6.625 Q46.1568 6.2812 47.0162 6.2812 Q47.5006 6.2812 47.9537 6.3906 Q48.4225 6.4843 48.7037 6.625 L48.3912 7.5 Q48.0943 7.3906 47.7037 7.2968 Q47.3287 7.2031 46.985 7.2031 Q45.0943 7.2031 45.0943 9.6406 Q45.0943 10.7968 45.5475 11.4218 Q46.0162 12.0312 46.9381 12.0312 Q47.4537 12.0312 47.86 11.9218 Q48.2662 11.8125 48.5943 11.6718 L48.5943 12.5937 Q48.2818 12.7656 47.8912 12.8593 Q47.5006 12.9531 46.9381 12.9531 ZM53.12 6.2812 Q53.3075 6.2812 53.5106 6.2968 Q53.7294 6.3125 53.8856 6.3437 L53.745 7.3125 Q53.5887 7.2812 53.4012 7.2656 Q53.2137 7.2343 53.0575 7.2343 Q52.5575 7.2343 52.12 7.5156 Q51.6981 7.7812 51.4325 8.2656 Q51.1825 8.75 51.1825 9.3906 L51.1825 12.8281 L50.12 12.8281 L50.12 6.3906 L50.995 6.3906 L51.1044 7.5781 L51.1512 7.5781 Q51.4637 7.0468 51.9481 6.6718 Q52.4481 6.2812 53.12 6.2812 ZM60.6698 9.5937 Q60.6698 11.2031 59.8573 12.0781 Q59.0448 12.9531 57.6698 12.9531 Q56.826 12.9531 56.1542 12.5625 Q55.4823 12.1718 55.0917 11.4218 Q54.7167 10.6718 54.7167 9.5937 Q54.7167 8 55.5135 7.1406 Q56.326 6.2812 57.701 6.2812 Q58.5917 6.2812 59.2479 6.6718 Q59.9198 7.0625 60.2948 7.7968 Q60.6698 8.5312 60.6698 9.5937 ZM55.8104 9.5937 Q55.8104 10.7343 56.2635 11.4062 Q56.7167 12.0781 57.701 12.0781 Q58.6698 12.0781 59.1229 11.4062 Q59.576 10.7343 59.576 9.5937 Q59.576 8.4531 59.1229 7.8125 Q58.6698 7.1718 57.6854 7.1718 Q56.701 7.1718 56.2479 7.8125 Q55.8104 8.4531 55.8104 9.5937 ZM66.5236 11.0468 Q66.5236 11.9843 65.8205 12.4687 Q65.133 12.9531 63.9611 12.9531 Q63.2892 12.9531 62.8048 12.8437 Q62.3205 12.7343 61.9455 12.5468 L61.9455 11.5781 Q62.3361 11.7656 62.8673 11.9375 Q63.4142 12.0937 63.9767 12.0937 Q64.7892 12.0937 65.1486 11.8437 Q65.508 11.5781 65.508 11.1406 Q65.508 10.9062 65.3673 10.7187 Q65.2423 10.5312 64.8986 10.3437 Q64.5548 10.1406 63.9298 9.9062 Q63.3048 9.6562 62.8517 9.4218 Q62.4142 9.1875 62.1642 8.8593 Q61.9298 8.5156 61.9298 7.9843 Q61.9298 7.1718 62.5861 6.7343 Q63.258 6.2812 64.3517 6.2812 Q64.9298 6.2812 65.4298 6.3906 Q65.9455 6.5 66.3986 6.7031 L66.0392 7.5468 Q65.633 7.375 65.1798 7.2656 Q64.7423 7.1406 64.2736 7.1406 Q63.6173 7.1406 63.2736 7.3593 Q62.9455 7.5625 62.9455 7.9218 Q62.9455 8.1875 63.1017 8.375 Q63.258 8.5625 63.6173 8.7343 Q63.9767 8.9062 64.6017 9.1406 Q65.2111 9.375 65.633 9.625 Q66.0705 9.8593 66.2892 10.2031 Q66.5236 10.5312 66.5236 11.0468 ZM70.5685 6.2812 Q71.3966 6.2812 71.9904 6.6406 Q72.5841 7 72.8966 7.6562 Q73.2248 8.2968 73.2248 9.1875 L73.2248 9.8125 L68.8185 9.8125 Q68.8498 10.9062 69.381 11.4843 Q69.9123 12.0468 70.8654 12.0468 Q71.4904 12.0468 71.9591 11.9375 Q72.4279 11.8125 72.9435 11.6093 L72.9435 12.5312 Q72.4435 12.75 71.9591 12.8437 Q71.4904 12.9531 70.8185 12.9531 Q69.9123 12.9531 69.2091 12.5781 Q68.506 12.2031 68.1154 11.4687 Q67.7248 10.7343 67.7248 9.6562 Q67.7248 8.6093 68.0841 7.8593 Q68.4435 7.0937 69.0841 6.6875 Q69.7248 6.2812 70.5685 6.2812 ZM70.5529 7.1406 Q69.8029 7.1406 69.3654 7.625 Q68.9279 8.1093 68.8498 8.9687 L72.1154 8.9687 Q72.1154 8.1562 71.7404 7.6562 Q71.3654 7.1406 70.5529 7.1406 ZM77.8522 6.2812 Q78.0397 6.2812 78.2428 6.2968 Q78.4616 6.3125 78.6178 6.3437 L78.4772 7.3125 Q78.3209 7.2812 78.1334 7.2656 Q77.9459 7.2343 77.7897 7.2343 Q77.2897 7.2343 76.8522 7.5156 Q76.4303 7.7812 76.1647 8.2656 Q75.9147 8.75 75.9147 9.3906 L75.9147 12.8281 L74.8522 12.8281 L74.8522 6.3906 L75.7272 6.3906 L75.8366 7.5781 L75.8834 7.5781 Q76.1959 7.0468 76.6803 6.6718 Q77.1803 6.2812 77.8522 6.2812 ZM81.2301 12.8281 L78.7926 6.3906 L79.9176 6.3906 L81.2926 10.1875 Q81.3864 10.4531 81.4957 10.7812 Q81.6051 11.0937 81.6832 11.3906 Q81.7614 11.6875 81.8082 11.8906 L81.8551 11.8906 Q81.902 11.6875 81.9801 11.3906 Q82.0739 11.0937 82.1832 10.7656 Q82.3082 10.4375 82.3864 10.1875 L83.7614 6.3906 L84.8864 6.3906 L82.4332 12.8281 L81.2301 12.8281 ZM86.4511 3.9843 Q86.6855 3.9843 86.873 4.1562 Q87.0605 4.3125 87.0605 4.6562 Q87.0605 4.9843 86.873 5.1562 Q86.6855 5.3281 86.4511 5.3281 Q86.1855 5.3281 85.998 5.1562 Q85.8261 4.9843 85.8261 4.6562 Q85.8261 4.3125 85.998 4.1562 Q86.1855 3.9843 86.4511 3.9843 ZM86.9668 6.3906 L86.9668 12.8281 L85.9043 12.8281 L85.9043 6.3906 L86.9668 6.3906 ZM91.5784 12.9531 Q90.7347 12.9531 90.0628 12.6093 Q89.4065 12.25 89.0159 11.5156 Q88.6409 10.7812 88.6409 9.6406 Q88.6409 8.4531 89.0315 7.7187 Q89.4378 6.9687 90.1097 6.625 Q90.7972 6.2812 91.6565 6.2812 Q92.1409 6.2812 92.594 6.3906 Q93.0628 6.4843 93.344 6.625 L93.0315 7.5 Q92.7347 7.3906 92.344 7.2968 Q91.969 7.2031 91.6253 7.2031 Q89.7347 7.2031 89.7347 9.6406 Q89.7347 10.7968 90.1878 11.4218 Q90.6565 12.0312 91.5784 12.0312 Q92.094 12.0312 92.5003 11.9218 Q92.9065 11.8125 93.2347 11.6718 L93.2347 12.5937 Q92.9222 12.7656 92.5315 12.8593 Q92.1409 12.9531 91.5784 12.9531 ZM97.2447 6.2812 Q98.0728 6.2812 98.6666 6.6406 Q99.2603 7 99.5728 7.6562 Q99.901 8.2968 99.901 9.1875 L99.901 9.8125 L95.4947 9.8125 Q95.526 10.9062 96.0572 11.4843 Q96.5885 12.0468 97.5416 12.0468 Q98.1666 12.0468 98.6353 11.9375 Q99.1041 11.8125 99.6197 11.6093 L99.6197 12.5312 Q99.1197 12.75 98.6353 12.8437 Q98.1666 12.9531 97.4947 12.9531 Q96.5885 12.9531 95.8853 12.5781 Q95.1822 12.2031 94.7916 11.4687 Q94.401 10.7343 94.401 9.6562 Q94.401 8.6093 94.7603 7.8593 Q95.1197 7.0937 95.7603 6.6875 Q96.401 6.2812 97.2447 6.2812 ZM97.2291 7.1406 Q96.4791 7.1406 96.0416 7.625 Q95.6041 8.1093 95.526 8.9687 L98.7916 8.9687 Q98.7916 8.1562 98.4166 7.6562 Q98.0416 7.1406 97.2291 7.1406 Z" style="stroke:none; clip-path:url(#clipPath17);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -833 -303 -829 -307 -631 -307 -631 -188 -635 -184 -833 -184"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -833 -303 -829 -307 -631 -307 -631 -188 -635 -184 -833 -184"
+      /><line x1="-635" x2="-632" y1="-303" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-306"
+      /><line x1="-833" x2="-635" y1="-303" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-303"
+      /><line x1="-635" x2="-635" y1="-303" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-184"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-813.4004,-285.7969)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath18);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-755,-282.6559)"
+    ><path d="M3.875 12.8281 L2.7969 12.8281 L2.7969 5.2031 L0.125 5.2031 L0.125 4.2656 L6.5469 4.2656 L6.5469 5.2031 L3.875 5.2031 L3.875 12.8281 ZM13.2814 9.5937 Q13.2814 11.2031 12.4689 12.0781 Q11.6564 12.9531 10.2814 12.9531 Q9.4377 12.9531 8.7658 12.5625 Q8.0939 12.1718 7.7033 11.4218 Q7.3283 10.6718 7.3283 9.5937 Q7.3283 8 8.1252 7.1406 Q8.9377 6.2812 10.3127 6.2812 Q11.2033 6.2812 11.8595 6.6718 Q12.5314 7.0625 12.9064 7.7968 Q13.2814 8.5312 13.2814 9.5937 ZM8.422 9.5937 Q8.422 10.7343 8.8752 11.4062 Q9.3283 12.0781 10.3127 12.0781 Q11.2814 12.0781 11.7345 11.4062 Q12.1877 10.7343 12.1877 9.5937 Q12.1877 8.4531 11.7345 7.8125 Q11.2814 7.1718 10.297 7.1718 Q9.3127 7.1718 8.8595 7.8125 Q8.422 8.4531 8.422 9.5937 ZM22.0102 6.2812 Q23.104 6.2812 23.6352 6.8437 Q24.1821 7.3906 24.1821 8.6406 L24.1821 12.8281 L23.1352 12.8281 L23.1352 8.6875 Q23.1352 7.1718 21.8227 7.1718 Q20.8852 7.1718 20.479 7.7187 Q20.0883 8.25 20.0883 9.2812 L20.0883 12.8281 L19.0415 12.8281 L19.0415 8.6875 Q19.0415 7.1718 17.729 7.1718 Q16.7446 7.1718 16.3696 7.7656 Q16.0102 8.3593 16.0102 9.4843 L16.0102 12.8281 L14.9477 12.8281 L14.9477 6.3906 L15.8071 6.3906 L15.9633 7.2656 L16.0258 7.2656 Q16.3227 6.7656 16.8227 6.5312 Q17.3383 6.2812 17.9165 6.2812 Q19.4321 6.2812 19.8852 7.3593 L19.9477 7.3593 Q20.2758 6.7968 20.8227 6.5468 Q21.3852 6.2812 22.0102 6.2812 ZM28.7459 12.9531 Q27.9022 12.9531 27.2303 12.6093 Q26.5741 12.25 26.1834 11.5156 Q25.8084 10.7812 25.8084 9.6406 Q25.8084 8.4531 26.1991 7.7187 Q26.6053 6.9687 27.2772 6.625 Q27.9647 6.2812 28.8241 6.2812 Q29.3084 6.2812 29.7616 6.3906 Q30.2303 6.4843 30.5116 6.625 L30.1991 7.5 Q29.9022 7.3906 29.5116 7.2968 Q29.1366 7.2031 28.7928 7.2031 Q26.9022 7.2031 26.9022 9.6406 Q26.9022 10.7968 27.3553 11.4218 Q27.8241 12.0312 28.7459 12.0312 Q29.2616 12.0312 29.6678 11.9218 Q30.0741 11.8125 30.4022 11.6718 L30.4022 12.5937 Q30.0897 12.7656 29.6991 12.8593 Q29.3084 12.9531 28.7459 12.9531 ZM34.3653 6.2812 Q35.5372 6.2812 36.0997 6.7968 Q36.6778 7.3125 36.6778 8.4531 L36.6778 12.8281 L35.8966 12.8281 L35.6935 11.9218 L35.6466 11.9218 Q35.2247 12.4375 34.756 12.7031 Q34.3028 12.9531 33.4903 12.9531 Q32.6153 12.9531 32.0372 12.5 Q31.4591 12.0312 31.4591 11.0468 Q31.4591 10.0781 32.2091 9.5625 Q32.9747 9.0312 34.5528 8.9843 L35.6466 8.9531 L35.6466 8.5625 Q35.6466 7.7656 35.2872 7.4531 Q34.9435 7.1406 34.3028 7.1406 Q33.8028 7.1406 33.3497 7.2968 Q32.8966 7.4375 32.4903 7.625 L32.1778 6.8437 Q32.5997 6.6093 33.1622 6.4531 Q33.7403 6.2812 34.3653 6.2812 ZM34.6778 9.7187 Q33.4747 9.7656 33.006 10.1093 Q32.5528 10.4375 32.5528 11.0468 Q32.5528 11.5937 32.881 11.8437 Q33.2091 12.0937 33.7247 12.0937 Q34.5528 12.0937 35.0841 11.6562 Q35.631 11.2031 35.631 10.2656 L35.631 9.6875 L34.6778 9.7187 ZM40.8161 12.0781 Q41.0505 12.0781 41.3005 12.0468 Q41.5505 12 41.7068 11.9531 L41.7068 12.75 Q41.5505 12.8437 41.238 12.8906 Q40.9255 12.9531 40.6286 12.9531 Q40.1286 12.9531 39.6911 12.7812 Q39.2693 12.5937 39.0036 12.1718 Q38.7536 11.7343 38.7536 10.9531 L38.7536 7.2187 L37.8318 7.2187 L37.8318 6.7031 L38.7536 6.2812 L39.1755 4.9218 L39.8005 4.9218 L39.8005 6.3906 L41.6599 6.3906 L41.6599 7.2187 L39.8005 7.2187 L39.8005 10.9375 Q39.8005 11.5156 40.0818 11.7968 Q40.363 12.0781 40.8161 12.0781 Z" style="stroke:none; clip-path:url(#clipPath19);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-793.6578" y="-248.0854" width="119" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="-793.6578" y="-248.0854" width="119" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="-692.6578" y="-242.0854" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="-692.6578" y="-242.0854" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="-694.6578" y="-234.0854" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-694.6578" y="-234.0854" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="-694.6578" y="-239.0854" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-694.6578" y="-239.0854" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-773.6578,-230.0854)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath20);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-762.6578,-227.7413)"
+    ><path d="M7.6875 9.7968 Q7.6875 10.6875 7.3125 11.4062 Q6.9531 12.125 6.2188 12.5468 Q5.4844 12.9531 4.3438 12.9531 Q2.75 12.9531 1.9062 12.0781 Q1.0781 11.2031 1.0781 9.7812 L1.0781 4.2656 L2.1562 4.2656 L2.1562 9.8125 Q2.1562 10.8593 2.7188 11.4375 Q3.2812 12.0156 4.4062 12.0156 Q5.5625 12.0156 6.0781 11.4062 Q6.6094 10.7812 6.6094 9.7968 L6.6094 4.2656 L7.6875 4.2656 L7.6875 9.7968 ZM13.9752 11.0468 Q13.9752 11.9843 13.2721 12.4687 Q12.5846 12.9531 11.4127 12.9531 Q10.7408 12.9531 10.2564 12.8437 Q9.7721 12.7343 9.3971 12.5468 L9.3971 11.5781 Q9.7877 11.7656 10.3189 11.9375 Q10.8658 12.0937 11.4283 12.0937 Q12.2408 12.0937 12.6002 11.8437 Q12.9596 11.5781 12.9596 11.1406 Q12.9596 10.9062 12.8189 10.7187 Q12.6939 10.5312 12.3502 10.3437 Q12.0064 10.1406 11.3814 9.9062 Q10.7564 9.6562 10.3033 9.4218 Q9.8658 9.1875 9.6158 8.8593 Q9.3814 8.5156 9.3814 7.9843 Q9.3814 7.1718 10.0377 6.7343 Q10.7096 6.2812 11.8033 6.2812 Q12.3814 6.2812 12.8814 6.3906 Q13.3971 6.5 13.8502 6.7031 L13.4908 7.5468 Q13.0846 7.375 12.6314 7.2656 Q12.1939 7.1406 11.7252 7.1406 Q11.0689 7.1406 10.7252 7.3593 Q10.3971 7.5625 10.3971 7.9218 Q10.3971 8.1875 10.5533 8.375 Q10.7096 8.5625 11.0689 8.7343 Q11.4283 8.9062 12.0533 9.1406 Q12.6627 9.375 13.0846 9.625 Q13.5221 9.8593 13.7408 10.2031 Q13.9752 10.5312 13.9752 11.0468 ZM18.0201 6.2812 Q18.8482 6.2812 19.442 6.6406 Q20.0357 7 20.3482 7.6562 Q20.6764 8.2968 20.6764 9.1875 L20.6764 9.8125 L16.2701 9.8125 Q16.3014 10.9062 16.8326 11.4843 Q17.3639 12.0468 18.317 12.0468 Q18.942 12.0468 19.4107 11.9375 Q19.8795 11.8125 20.3951 11.6093 L20.3951 12.5312 Q19.8951 12.75 19.4107 12.8437 Q18.942 12.9531 18.2701 12.9531 Q17.3639 12.9531 16.6607 12.5781 Q15.9576 12.2031 15.567 11.4687 Q15.1764 10.7343 15.1764 9.6562 Q15.1764 8.6093 15.5357 7.8593 Q15.8951 7.0937 16.5357 6.6875 Q17.1764 6.2812 18.0201 6.2812 ZM18.0045 7.1406 Q17.2545 7.1406 16.817 7.625 Q16.3795 8.1093 16.3014 8.9687 L19.567 8.9687 Q19.567 8.1562 19.192 7.6562 Q18.817 7.1406 18.0045 7.1406 ZM25.3038 6.2812 Q25.4913 6.2812 25.6944 6.2968 Q25.9132 6.3125 26.0694 6.3437 L25.9288 7.3125 Q25.7725 7.2812 25.585 7.2656 Q25.3975 7.2343 25.2413 7.2343 Q24.7413 7.2343 24.3038 7.5156 Q23.8819 7.7812 23.6163 8.2656 Q23.3663 8.75 23.3663 9.3906 L23.3663 12.8281 L22.3038 12.8281 L22.3038 6.3906 L23.1788 6.3906 L23.2882 7.5781 L23.335 7.5781 Q23.6475 7.0468 24.1319 6.6718 Q24.6319 6.2812 25.3038 6.2812 ZM32.7911 12.8281 L31.7598 10.1718 L28.3536 10.1718 L27.338 12.8281 L26.2442 12.8281 L29.588 4.2187 L30.5567 4.2187 L33.9005 12.8281 L32.7911 12.8281 ZM30.463 6.625 Q30.4317 6.5312 30.338 6.2812 Q30.2598 6.0312 30.1817 5.7656 Q30.1036 5.4843 30.0567 5.3437 Q29.9786 5.7187 29.8692 6.0781 Q29.7598 6.4218 29.6817 6.625 L28.713 9.2187 L31.4317 9.2187 L30.463 6.625 ZM37.3498 4.2656 Q39.0216 4.2656 39.7873 4.9218 Q40.5529 5.5781 40.5529 6.7812 Q40.5529 7.4843 40.2404 8.1093 Q39.9279 8.7187 39.1779 9.1093 Q38.4279 9.4843 37.1466 9.4843 L36.1623 9.4843 L36.1623 12.8281 L35.0685 12.8281 L35.0685 4.2656 L37.3498 4.2656 ZM37.256 5.1875 L36.1623 5.1875 L36.1623 8.5625 L37.0216 8.5625 Q38.2404 8.5625 38.8341 8.1718 Q39.4435 7.7812 39.4435 6.8281 Q39.4435 6 38.9123 5.5937 Q38.381 5.1875 37.256 5.1875 ZM44.7504 12.8281 L41.6567 12.8281 L41.6567 12.2031 L42.6567 11.9687 L42.6567 5.125 L41.6567 4.8906 L41.6567 4.2656 L44.7504 4.2656 L44.7504 4.8906 L43.7348 5.125 L43.7348 11.9687 L44.7504 12.2031 L44.7504 12.8281 Z" style="stroke:none; clip-path:url(#clipPath21);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><line x1="-848.4004" x2="-910.6848" y1="-217.5576" style="fill:none; clip-path:url(#clipPath2);" y2="-217.5576"
+      /><line x1="-910.6848" x2="-910.6848" y1="-217.5576" style="fill:none; clip-path:url(#clipPath2);" y2="75.1822"
+      /><line x1="-910.6848" x2="-1001.1496" y1="75.1822" style="fill:none; clip-path:url(#clipPath2);" y2="75.1822"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-922.4149,-42.2695)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath22);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -848 -122 -844 -126 -616 -126 -616 67 -620 71 -848 71"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -848 -122 -844 -126 -616 -126 -616 67 -620 71 -848 71"
+      /><line x1="-620" x2="-617" y1="-122" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-125"
+      /><line x1="-848" x2="-620" y1="-122" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-122"
+      /><line x1="-620" x2="-620" y1="-122" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="71"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-795.5803,-104.3844)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM27.7175 -3.2344 Q27.7175 -1.625 26.905 -0.75 Q26.0925 0.125 24.7175 0.125 Q23.8738 0.125 23.2019 -0.2656 Q22.53 -0.6562 22.1394 -1.4062 Q21.7644 -2.1562 21.7644 -3.2344 Q21.7644 -4.8281 22.5613 -5.6875 Q23.3738 -6.5469 24.7488 -6.5469 Q25.6394 -6.5469 26.2956 -6.1562 Q26.9675 -5.7656 27.3425 -5.0312 Q27.7175 -4.2969 27.7175 -3.2344 ZM22.8581 -3.2344 Q22.8581 -2.0938 23.3113 -1.4219 Q23.7644 -0.75 24.7488 -0.75 Q25.7175 -0.75 26.1706 -1.4219 Q26.6238 -2.0938 26.6238 -3.2344 Q26.6238 -4.375 26.1706 -5.0156 Q25.7175 -5.6562 24.7331 -5.6562 Q23.7488 -5.6562 23.2956 -5.0156 Q22.8581 -4.375 22.8581 -3.2344 ZM31.9619 0.125 Q31.1182 0.125 30.4463 -0.2188 Q29.7901 -0.5781 29.3994 -1.3125 Q29.0244 -2.0469 29.0244 -3.1875 Q29.0244 -4.375 29.4151 -5.1094 Q29.8213 -5.8594 30.4932 -6.2031 Q31.1807 -6.5469 32.0401 -6.5469 Q32.5244 -6.5469 32.9776 -6.4375 Q33.4463 -6.3438 33.7276 -6.2031 L33.4151 -5.3281 Q33.1182 -5.4375 32.7276 -5.5312 Q32.3526 -5.625 32.0088 -5.625 Q30.1182 -5.625 30.1182 -3.1875 Q30.1182 -2.0312 30.5713 -1.4062 Q31.0401 -0.7969 31.9619 -0.7969 Q32.4776 -0.7969 32.8838 -0.9062 Q33.2901 -1.0156 33.6182 -1.1562 L33.6182 -0.2344 Q33.3057 -0.0625 32.9151 0.0312 Q32.5244 0.125 31.9619 0.125 ZM36.1907 -4.3594 Q36.1907 -4.1562 36.1751 -3.8438 Q36.1595 -3.5469 36.1439 -3.3125 L36.1907 -3.3125 Q36.2689 -3.4062 36.4095 -3.5781 Q36.5501 -3.7656 36.6907 -3.9531 Q36.847 -4.1406 36.9564 -4.2656 L39.0189 -6.4375 L40.2532 -6.4375 L37.6439 -3.6875 L40.4251 0 L39.1595 0 L36.9251 -3 L36.1907 -2.3594 L36.1907 0 L35.1439 0 L35.1439 -9.125 L36.1907 -9.125 L36.1907 -4.3594 ZM44.0363 -6.5469 Q44.8644 -6.5469 45.4582 -6.1875 Q46.0519 -5.8281 46.3644 -5.1719 Q46.6925 -4.5312 46.6925 -3.6406 L46.6925 -3.0156 L42.2863 -3.0156 Q42.3175 -1.9219 42.8488 -1.3438 Q43.38 -0.7812 44.3332 -0.7812 Q44.9582 -0.7812 45.4269 -0.8906 Q45.8957 -1.0156 46.4113 -1.2188 L46.4113 -0.2969 Q45.9113 -0.0781 45.4269 0.0156 Q44.9582 0.125 44.2863 0.125 Q43.38 0.125 42.6769 -0.25 Q41.9738 -0.625 41.5832 -1.3594 Q41.1925 -2.0938 41.1925 -3.1719 Q41.1925 -4.2188 41.5519 -4.9688 Q41.9113 -5.7344 42.5519 -6.1406 Q43.1925 -6.5469 44.0363 -6.5469 ZM44.0207 -5.6875 Q43.2707 -5.6875 42.8332 -5.2031 Q42.3957 -4.7188 42.3175 -3.8594 L45.5832 -3.8594 Q45.5832 -4.6719 45.2082 -5.1719 Q44.8332 -5.6875 44.0207 -5.6875 ZM51.32 -6.5469 Q51.5075 -6.5469 51.7106 -6.5312 Q51.9293 -6.5156 52.0856 -6.4844 L51.945 -5.5156 Q51.7887 -5.5469 51.6012 -5.5625 Q51.4137 -5.5938 51.2575 -5.5938 Q50.7575 -5.5938 50.32 -5.3125 Q49.8981 -5.0469 49.6325 -4.5625 Q49.3825 -4.0781 49.3825 -3.4375 L49.3825 0 L48.32 0 L48.32 -6.4375 L49.195 -6.4375 L49.3043 -5.25 L49.3512 -5.25 Q49.6637 -5.7812 50.1481 -6.1562 Q50.6481 -6.5469 51.32 -6.5469 ZM58.9742 0.125 Q58.1304 0.125 57.4585 -0.2188 Q56.8023 -0.5781 56.4117 -1.3125 Q56.0367 -2.0469 56.0367 -3.1875 Q56.0367 -4.375 56.4273 -5.1094 Q56.8335 -5.8594 57.5054 -6.2031 Q58.1929 -6.5469 59.0523 -6.5469 Q59.5367 -6.5469 59.9898 -6.4375 Q60.4585 -6.3438 60.7398 -6.2031 L60.4273 -5.3281 Q60.1304 -5.4375 59.7398 -5.5312 Q59.3648 -5.625 59.021 -5.625 Q57.1304 -5.625 57.1304 -3.1875 Q57.1304 -2.0312 57.5835 -1.4062 Q58.0523 -0.7969 58.9742 -0.7969 Q59.4898 -0.7969 59.896 -0.9062 Q60.3023 -1.0156 60.6304 -1.1562 L60.6304 -0.2344 Q60.3179 -0.0625 59.9273 0.0312 Q59.5367 0.125 58.9742 0.125 ZM67.7498 -3.2344 Q67.7498 -1.625 66.9373 -0.75 Q66.1248 0.125 64.7498 0.125 Q63.9061 0.125 63.2342 -0.2656 Q62.5623 -0.6562 62.1717 -1.4062 Q61.7967 -2.1562 61.7967 -3.2344 Q61.7967 -4.8281 62.5936 -5.6875 Q63.4061 -6.5469 64.7811 -6.5469 Q65.6717 -6.5469 66.3279 -6.1562 Q66.9998 -5.7656 67.3748 -5.0312 Q67.7498 -4.2969 67.7498 -3.2344 ZM62.8904 -3.2344 Q62.8904 -2.0938 63.3436 -1.4219 Q63.7967 -0.75 64.7811 -0.75 Q65.7498 -0.75 66.2029 -1.4219 Q66.6561 -2.0938 66.6561 -3.2344 Q66.6561 -4.375 66.2029 -5.0156 Q65.7498 -5.6562 64.7654 -5.6562 Q63.7811 -5.6562 63.3279 -5.0156 Q62.8904 -4.375 62.8904 -3.2344 ZM72.5099 -6.5469 Q73.6661 -6.5469 74.2442 -5.9844 Q74.838 -5.4375 74.838 -4.1875 L74.838 0 L73.8067 0 L73.8067 -4.1094 Q73.8067 -5.6562 72.3536 -5.6562 Q71.2911 -5.6562 70.8849 -5.0625 Q70.4786 -4.4688 70.4786 -3.3438 L70.4786 0 L69.4161 0 L69.4161 -6.4375 L70.2755 -6.4375 L70.4317 -5.5625 L70.4942 -5.5625 Q70.8067 -6.0625 71.3536 -6.2969 Q71.9005 -6.5469 72.5099 -6.5469 ZM78.9884 -0.75 Q79.2228 -0.75 79.4728 -0.7812 Q79.7228 -0.8281 79.879 -0.875 L79.879 -0.0781 Q79.7228 0.0156 79.4103 0.0625 Q79.0978 0.125 78.8009 0.125 Q78.3009 0.125 77.8634 -0.0469 Q77.4415 -0.2344 77.1759 -0.6562 Q76.9259 -1.0938 76.9259 -1.875 L76.9259 -5.6094 L76.004 -5.6094 L76.004 -6.125 L76.9259 -6.5469 L77.3478 -7.9062 L77.9728 -7.9062 L77.9728 -6.4375 L79.8322 -6.4375 L79.8322 -5.6094 L77.9728 -5.6094 L77.9728 -1.8906 Q77.9728 -1.3125 78.254 -1.0312 Q78.5353 -0.75 78.9884 -0.75 ZM83.6017 -6.5469 Q84.7736 -6.5469 85.3361 -6.0312 Q85.9142 -5.5156 85.9142 -4.375 L85.9142 0 L85.1329 0 L84.9298 -0.9062 L84.8829 -0.9062 Q84.4611 -0.3906 83.9923 -0.125 Q83.5392 0.125 82.7267 0.125 Q81.8517 0.125 81.2736 -0.3281 Q80.6954 -0.7969 80.6954 -1.7812 Q80.6954 -2.75 81.4454 -3.2656 Q82.2111 -3.7969 83.7892 -3.8438 L84.8829 -3.875 L84.8829 -4.2656 Q84.8829 -5.0625 84.5236 -5.375 Q84.1798 -5.6875 83.5392 -5.6875 Q83.0392 -5.6875 82.5861 -5.5312 Q82.1329 -5.3906 81.7267 -5.2031 L81.4142 -5.9844 Q81.8361 -6.2188 82.3986 -6.375 Q82.9767 -6.5469 83.6017 -6.5469 ZM83.9142 -3.1094 Q82.7111 -3.0625 82.2423 -2.7188 Q81.7892 -2.3906 81.7892 -1.7812 Q81.7892 -1.2344 82.1173 -0.9844 Q82.4454 -0.7344 82.9611 -0.7344 Q83.7892 -0.7344 84.3204 -1.1719 Q84.8673 -1.625 84.8673 -2.5625 L84.8673 -3.1406 L83.9142 -3.1094 ZM88.4431 -8.8438 Q88.6775 -8.8438 88.865 -8.6719 Q89.0525 -8.5156 89.0525 -8.1719 Q89.0525 -7.8438 88.865 -7.6719 Q88.6775 -7.5 88.4431 -7.5 Q88.1775 -7.5 87.99 -7.6719 Q87.8181 -7.8438 87.8181 -8.1719 Q87.8181 -8.5156 87.99 -8.6719 Q88.1775 -8.8438 88.4431 -8.8438 ZM88.9587 -6.4375 L88.9587 0 L87.8962 0 L87.8962 -6.4375 L88.9587 -6.4375 ZM94.086 -6.5469 Q95.2423 -6.5469 95.8204 -5.9844 Q96.4141 -5.4375 96.4141 -4.1875 L96.4141 0 L95.3829 0 L95.3829 -4.1094 Q95.3829 -5.6562 93.9298 -5.6562 Q92.8673 -5.6562 92.461 -5.0625 Q92.0548 -4.4688 92.0548 -3.3438 L92.0548 0 L90.9923 0 L90.9923 -6.4375 L91.8516 -6.4375 L92.0079 -5.5625 L92.0704 -5.5625 Q92.3829 -6.0625 92.9298 -6.2969 Q93.4766 -6.5469 94.086 -6.5469 ZM100.8927 -6.5469 Q101.7208 -6.5469 102.3146 -6.1875 Q102.9083 -5.8281 103.2208 -5.1719 Q103.5489 -4.5312 103.5489 -3.6406 L103.5489 -3.0156 L99.1427 -3.0156 Q99.1739 -1.9219 99.7052 -1.3438 Q100.2364 -0.7812 101.1896 -0.7812 Q101.8146 -0.7812 102.2833 -0.8906 Q102.7521 -1.0156 103.2677 -1.2188 L103.2677 -0.2969 Q102.7677 -0.0781 102.2833 0.0156 Q101.8146 0.125 101.1427 0.125 Q100.2364 0.125 99.5333 -0.25 Q98.8302 -0.625 98.4396 -1.3594 Q98.0489 -2.0938 98.0489 -3.1719 Q98.0489 -4.2188 98.4083 -4.9688 Q98.7677 -5.7344 99.4083 -6.1406 Q100.0489 -6.5469 100.8927 -6.5469 ZM100.8771 -5.6875 Q100.1271 -5.6875 99.6896 -5.2031 Q99.2521 -4.7188 99.1739 -3.8594 L102.4396 -3.8594 Q102.4396 -4.6719 102.0646 -5.1719 Q101.6896 -5.6875 100.8771 -5.6875 ZM108.1764 -6.5469 Q108.3639 -6.5469 108.567 -6.5312 Q108.7857 -6.5156 108.942 -6.4844 L108.8014 -5.5156 Q108.6451 -5.5469 108.4576 -5.5625 Q108.2701 -5.5938 108.1139 -5.5938 Q107.6139 -5.5938 107.1764 -5.3125 Q106.7545 -5.0469 106.4889 -4.5625 Q106.2389 -4.0781 106.2389 -3.4375 L106.2389 0 L105.1764 0 L105.1764 -6.4375 L106.0514 -6.4375 L106.1607 -5.25 L106.2076 -5.25 Q106.5201 -5.7812 107.0045 -6.1562 Q107.5045 -6.5469 108.1764 -6.5469 ZM109.7105 -2.3281 L114.2418 -4.2188 L109.7105 -6.3594 L109.7105 -7.2969 L115.3668 -4.4688 L115.3668 -3.875 L109.7105 -1.3906 L109.7105 -2.3281 ZM116.5746 -2.3281 L121.1058 -4.2188 L116.5746 -6.3594 L116.5746 -7.2969 L122.2308 -4.4688 L122.2308 -3.875 L116.5746 -1.3906 L116.5746 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath23);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-786.5,-101.6559)"
+    ><path d="M7.7188 12.8281 L6.6406 12.8281 L6.6406 8.8281 L2.25 8.8281 L2.25 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.25 4.2656 L2.25 7.8906 L6.6406 7.8906 L6.6406 4.2656 L7.7188 4.2656 L7.7188 12.8281 ZM15.5014 9.5937 Q15.5014 11.2031 14.6889 12.0781 Q13.8764 12.9531 12.5014 12.9531 Q11.6577 12.9531 10.9858 12.5625 Q10.3139 12.1718 9.9233 11.4218 Q9.5483 10.6718 9.5483 9.5937 Q9.5483 8 10.3452 7.1406 Q11.1577 6.2812 12.5327 6.2812 Q13.4233 6.2812 14.0796 6.6718 Q14.7514 7.0625 15.1264 7.7968 Q15.5014 8.5312 15.5014 9.5937 ZM10.6421 9.5937 Q10.6421 10.7343 11.0952 11.4062 Q11.5483 12.0781 12.5327 12.0781 Q13.5014 12.0781 13.9546 11.4062 Q14.4077 10.7343 14.4077 9.5937 Q14.4077 8.4531 13.9546 7.8125 Q13.5014 7.1718 12.5171 7.1718 Q11.5327 7.1718 11.0796 7.8125 Q10.6421 8.4531 10.6421 9.5937 ZM19.324 12.0781 Q19.5584 12.0781 19.8084 12.0468 Q20.0584 12 20.2146 11.9531 L20.2146 12.75 Q20.0584 12.8437 19.7459 12.8906 Q19.4334 12.9531 19.1365 12.9531 Q18.6365 12.9531 18.199 12.7812 Q17.7771 12.5937 17.5115 12.1718 Q17.2615 11.7343 17.2615 10.9531 L17.2615 7.2187 L16.3396 7.2187 L16.3396 6.7031 L17.2615 6.2812 L17.6834 4.9218 L18.3084 4.9218 L18.3084 6.3906 L20.1677 6.3906 L20.1677 7.2187 L18.3084 7.2187 L18.3084 10.9375 Q18.3084 11.5156 18.5896 11.7968 Q18.8709 12.0781 19.324 12.0781 ZM23.9841 6.2812 Q24.8123 6.2812 25.406 6.6406 Q25.9998 7 26.3123 7.6562 Q26.6404 8.2968 26.6404 9.1875 L26.6404 9.8125 L22.2341 9.8125 Q22.2654 10.9062 22.7966 11.4843 Q23.3279 12.0468 24.281 12.0468 Q24.906 12.0468 25.3748 11.9375 Q25.8435 11.8125 26.3591 11.6093 L26.3591 12.5312 Q25.8591 12.75 25.3748 12.8437 Q24.906 12.9531 24.2341 12.9531 Q23.3279 12.9531 22.6248 12.5781 Q21.9216 12.2031 21.531 11.4687 Q21.1404 10.7343 21.1404 9.6562 Q21.1404 8.6093 21.4998 7.8593 Q21.8591 7.0937 22.4998 6.6875 Q23.1404 6.2812 23.9841 6.2812 ZM23.9685 7.1406 Q23.2185 7.1406 22.781 7.625 Q22.3435 8.1093 22.2654 8.9687 L25.531 8.9687 Q25.531 8.1562 25.156 7.6562 Q24.781 7.1406 23.9685 7.1406 ZM29.3303 12.8281 L28.2678 12.8281 L28.2678 3.7031 L29.3303 3.7031 L29.3303 12.8281 ZM38.4057 12.8281 L35.5932 5.3125 L35.5464 5.3125 Q35.5776 5.6875 35.5932 6.3281 Q35.6245 6.9531 35.6245 7.625 L35.6245 12.8281 L34.6245 12.8281 L34.6245 4.2656 L36.2339 4.2656 L38.8745 11.2812 L38.9214 11.2812 L41.6089 4.2656 L43.187 4.2656 L43.187 12.8281 L42.1245 12.8281 L42.1245 7.5625 Q42.1245 6.9375 42.1557 6.3281 Q42.187 5.7187 42.2026 5.3281 L42.1557 5.3281 L39.2964 12.8281 L38.4057 12.8281 ZM45.9148 3.9843 Q46.1492 3.9843 46.3367 4.1562 Q46.5242 4.3125 46.5242 4.6562 Q46.5242 4.9843 46.3367 5.1562 Q46.1492 5.3281 45.9148 5.3281 Q45.6492 5.3281 45.4617 5.1562 Q45.2898 4.9843 45.2898 4.6562 Q45.2898 4.3125 45.4617 4.1562 Q45.6492 3.9843 45.9148 3.9843 ZM46.4305 6.3906 L46.4305 12.8281 L45.368 12.8281 L45.368 6.3906 L46.4305 6.3906 ZM51.0421 12.9531 Q50.1983 12.9531 49.5265 12.6093 Q48.8702 12.25 48.4796 11.5156 Q48.1046 10.7812 48.1046 9.6406 Q48.1046 8.4531 48.4952 7.7187 Q48.9015 6.9687 49.5733 6.625 Q50.2608 6.2812 51.1202 6.2812 Q51.6046 6.2812 52.0577 6.3906 Q52.5265 6.4843 52.8077 6.625 L52.4952 7.5 Q52.1983 7.3906 51.8077 7.2968 Q51.4327 7.2031 51.089 7.2031 Q49.1983 7.2031 49.1983 9.6406 Q49.1983 10.7968 49.6515 11.4218 Q50.1202 12.0312 51.0421 12.0312 Q51.5577 12.0312 51.964 11.9218 Q52.3702 11.8125 52.6983 11.6718 L52.6983 12.5937 Q52.3858 12.7656 51.9952 12.8593 Q51.6046 12.9531 51.0421 12.9531 ZM57.224 6.2812 Q57.4115 6.2812 57.6146 6.2968 Q57.8334 6.3125 57.9896 6.3437 L57.849 7.3125 Q57.6928 7.2812 57.5053 7.2656 Q57.3178 7.2343 57.1615 7.2343 Q56.6615 7.2343 56.224 7.5156 Q55.8021 7.7812 55.5365 8.2656 Q55.2865 8.75 55.2865 9.3906 L55.2865 12.8281 L54.224 12.8281 L54.224 6.3906 L55.099 6.3906 L55.2084 7.5781 L55.2553 7.5781 Q55.5678 7.0468 56.0521 6.6718 Q56.5521 6.2812 57.224 6.2812 ZM64.7738 9.5937 Q64.7738 11.2031 63.9613 12.0781 Q63.1488 12.9531 61.7738 12.9531 Q60.9301 12.9531 60.2582 12.5625 Q59.5863 12.1718 59.1957 11.4218 Q58.8207 10.6718 58.8207 9.5937 Q58.8207 8 59.6176 7.1406 Q60.4301 6.2812 61.8051 6.2812 Q62.6957 6.2812 63.3519 6.6718 Q64.0238 7.0625 64.3988 7.7968 Q64.7738 8.5312 64.7738 9.5937 ZM59.9144 9.5937 Q59.9144 10.7343 60.3676 11.4062 Q60.8207 12.0781 61.8051 12.0781 Q62.7738 12.0781 63.2269 11.4062 Q63.6801 10.7343 63.6801 9.5937 Q63.6801 8.4531 63.2269 7.8125 Q62.7738 7.1718 61.7894 7.1718 Q60.8051 7.1718 60.3519 7.8125 Q59.9144 8.4531 59.9144 9.5937 ZM70.6276 11.0468 Q70.6276 11.9843 69.9245 12.4687 Q69.237 12.9531 68.0651 12.9531 Q67.3932 12.9531 66.9089 12.8437 Q66.4245 12.7343 66.0495 12.5468 L66.0495 11.5781 Q66.4401 11.7656 66.9714 11.9375 Q67.5182 12.0937 68.0807 12.0937 Q68.8932 12.0937 69.2526 11.8437 Q69.612 11.5781 69.612 11.1406 Q69.612 10.9062 69.4714 10.7187 Q69.3464 10.5312 69.0026 10.3437 Q68.6589 10.1406 68.0339 9.9062 Q67.4089 9.6562 66.9557 9.4218 Q66.5182 9.1875 66.2682 8.8593 Q66.0339 8.5156 66.0339 7.9843 Q66.0339 7.1718 66.6901 6.7343 Q67.362 6.2812 68.4557 6.2812 Q69.0339 6.2812 69.5339 6.3906 Q70.0495 6.5 70.5026 6.7031 L70.1432 7.5468 Q69.737 7.375 69.2839 7.2656 Q68.8464 7.1406 68.3776 7.1406 Q67.7214 7.1406 67.3776 7.3593 Q67.0495 7.5625 67.0495 7.9218 Q67.0495 8.1875 67.2057 8.375 Q67.362 8.5625 67.7214 8.7343 Q68.0807 8.9062 68.7057 9.1406 Q69.3151 9.375 69.737 9.625 Q70.1745 9.8593 70.3932 10.2031 Q70.6276 10.5312 70.6276 11.0468 ZM74.6725 6.2812 Q75.5007 6.2812 76.0944 6.6406 Q76.6882 7 77.0007 7.6562 Q77.3288 8.2968 77.3288 9.1875 L77.3288 9.8125 L72.9225 9.8125 Q72.9538 10.9062 73.485 11.4843 Q74.0163 12.0468 74.9694 12.0468 Q75.5944 12.0468 76.0632 11.9375 Q76.5319 11.8125 77.0475 11.6093 L77.0475 12.5312 Q76.5475 12.75 76.0632 12.8437 Q75.5944 12.9531 74.9225 12.9531 Q74.0163 12.9531 73.3132 12.5781 Q72.61 12.2031 72.2194 11.4687 Q71.8288 10.7343 71.8288 9.6562 Q71.8288 8.6093 72.1882 7.8593 Q72.5475 7.0937 73.1882 6.6875 Q73.8288 6.2812 74.6725 6.2812 ZM74.6569 7.1406 Q73.9069 7.1406 73.4694 7.625 Q73.0319 8.1093 72.9538 8.9687 L76.2194 8.9687 Q76.2194 8.1562 75.8444 7.6562 Q75.4694 7.1406 74.6569 7.1406 ZM81.9562 6.2812 Q82.1437 6.2812 82.3468 6.2968 Q82.5656 6.3125 82.7218 6.3437 L82.5812 7.3125 Q82.425 7.2812 82.2375 7.2656 Q82.05 7.2343 81.8937 7.2343 Q81.3937 7.2343 80.9562 7.5156 Q80.5343 7.7812 80.2687 8.2656 Q80.0187 8.75 80.0187 9.3906 L80.0187 12.8281 L78.9562 12.8281 L78.9562 6.3906 L79.8312 6.3906 L79.9406 7.5781 L79.9875 7.5781 Q80.3 7.0468 80.7843 6.6718 Q81.2843 6.2812 81.9562 6.2812 ZM85.3341 12.8281 L82.8966 6.3906 L84.0216 6.3906 L85.3966 10.1875 Q85.4904 10.4531 85.5997 10.7812 Q85.7091 11.0937 85.7872 11.3906 Q85.8654 11.6875 85.9122 11.8906 L85.9591 11.8906 Q86.006 11.6875 86.0841 11.3906 Q86.1779 11.0937 86.2872 10.7656 Q86.4122 10.4375 86.4904 10.1875 L87.8654 6.3906 L88.9904 6.3906 L86.5372 12.8281 L85.3341 12.8281 ZM90.5552 3.9843 Q90.7895 3.9843 90.977 4.1562 Q91.1645 4.3125 91.1645 4.6562 Q91.1645 4.9843 90.977 5.1562 Q90.7895 5.3281 90.5552 5.3281 Q90.2895 5.3281 90.102 5.1562 Q89.9302 4.9843 89.9302 4.6562 Q89.9302 4.3125 90.102 4.1562 Q90.2895 3.9843 90.5552 3.9843 ZM91.0708 6.3906 L91.0708 12.8281 L90.0083 12.8281 L90.0083 6.3906 L91.0708 6.3906 ZM95.6824 12.9531 Q94.8387 12.9531 94.1668 12.6093 Q93.5106 12.25 93.1199 11.5156 Q92.7449 10.7812 92.7449 9.6406 Q92.7449 8.4531 93.1356 7.7187 Q93.5418 6.9687 94.2137 6.625 Q94.9012 6.2812 95.7606 6.2812 Q96.2449 6.2812 96.6981 6.3906 Q97.1668 6.4843 97.4481 6.625 L97.1356 7.5 Q96.8387 7.3906 96.4481 7.2968 Q96.0731 7.2031 95.7293 7.2031 Q93.8387 7.2031 93.8387 9.6406 Q93.8387 10.7968 94.2918 11.4218 Q94.7606 12.0312 95.6824 12.0312 Q96.1981 12.0312 96.6043 11.9218 Q97.0106 11.8125 97.3387 11.6718 L97.3387 12.5937 Q97.0262 12.7656 96.6356 12.8593 Q96.2449 12.9531 95.6824 12.9531 ZM101.3487 6.2812 Q102.1768 6.2812 102.7706 6.6406 Q103.3643 7 103.6768 7.6562 Q104.005 8.2968 104.005 9.1875 L104.005 9.8125 L99.5987 9.8125 Q99.63 10.9062 100.1612 11.4843 Q100.6925 12.0468 101.6456 12.0468 Q102.2706 12.0468 102.7393 11.9375 Q103.2081 11.8125 103.7237 11.6093 L103.7237 12.5312 Q103.2237 12.75 102.7393 12.8437 Q102.2706 12.9531 101.5987 12.9531 Q100.6925 12.9531 99.9893 12.5781 Q99.2862 12.2031 98.8956 11.4687 Q98.505 10.7343 98.505 9.6562 Q98.505 8.6093 98.8643 7.8593 Q99.2237 7.0937 99.8643 6.6875 Q100.505 6.2812 101.3487 6.2812 ZM101.3331 7.1406 Q100.5831 7.1406 100.1456 7.625 Q99.7081 8.1093 99.63 8.9687 L102.8956 8.9687 Q102.8956 8.1562 102.5206 7.6562 Q102.1456 7.1406 101.3331 7.1406 Z" style="stroke:none; clip-path:url(#clipPath24);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -833 -66 -829 -70 -631 -70 -631 53 -635 57 -833 57"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -833 -66 -829 -70 -631 -70 -631 53 -635 57 -833 57"
+      /><line x1="-635" x2="-632" y1="-66" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-69"
+      /><line x1="-833" x2="-635" y1="-66" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-66"
+      /><line x1="-635" x2="-635" y1="-66" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="57"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-813.4004,-48.5884)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath25);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-755,-45.6559)"
+    ><path d="M3.875 12.8281 L2.7969 12.8281 L2.7969 5.2031 L0.125 5.2031 L0.125 4.2656 L6.5469 4.2656 L6.5469 5.2031 L3.875 5.2031 L3.875 12.8281 ZM13.2814 9.5937 Q13.2814 11.2031 12.4689 12.0781 Q11.6564 12.9531 10.2814 12.9531 Q9.4377 12.9531 8.7658 12.5625 Q8.0939 12.1718 7.7033 11.4218 Q7.3283 10.6718 7.3283 9.5937 Q7.3283 8 8.1252 7.1406 Q8.9377 6.2812 10.3127 6.2812 Q11.2033 6.2812 11.8595 6.6718 Q12.5314 7.0625 12.9064 7.7968 Q13.2814 8.5312 13.2814 9.5937 ZM8.422 9.5937 Q8.422 10.7343 8.8752 11.4062 Q9.3283 12.0781 10.3127 12.0781 Q11.2814 12.0781 11.7345 11.4062 Q12.1877 10.7343 12.1877 9.5937 Q12.1877 8.4531 11.7345 7.8125 Q11.2814 7.1718 10.297 7.1718 Q9.3127 7.1718 8.8595 7.8125 Q8.422 8.4531 8.422 9.5937 ZM22.0102 6.2812 Q23.104 6.2812 23.6352 6.8437 Q24.1821 7.3906 24.1821 8.6406 L24.1821 12.8281 L23.1352 12.8281 L23.1352 8.6875 Q23.1352 7.1718 21.8227 7.1718 Q20.8852 7.1718 20.479 7.7187 Q20.0883 8.25 20.0883 9.2812 L20.0883 12.8281 L19.0415 12.8281 L19.0415 8.6875 Q19.0415 7.1718 17.729 7.1718 Q16.7446 7.1718 16.3696 7.7656 Q16.0102 8.3593 16.0102 9.4843 L16.0102 12.8281 L14.9477 12.8281 L14.9477 6.3906 L15.8071 6.3906 L15.9633 7.2656 L16.0258 7.2656 Q16.3227 6.7656 16.8227 6.5312 Q17.3383 6.2812 17.9165 6.2812 Q19.4321 6.2812 19.8852 7.3593 L19.9477 7.3593 Q20.2758 6.7968 20.8227 6.5468 Q21.3852 6.2812 22.0102 6.2812 ZM28.7459 12.9531 Q27.9022 12.9531 27.2303 12.6093 Q26.5741 12.25 26.1834 11.5156 Q25.8084 10.7812 25.8084 9.6406 Q25.8084 8.4531 26.1991 7.7187 Q26.6053 6.9687 27.2772 6.625 Q27.9647 6.2812 28.8241 6.2812 Q29.3084 6.2812 29.7616 6.3906 Q30.2303 6.4843 30.5116 6.625 L30.1991 7.5 Q29.9022 7.3906 29.5116 7.2968 Q29.1366 7.2031 28.7928 7.2031 Q26.9022 7.2031 26.9022 9.6406 Q26.9022 10.7968 27.3553 11.4218 Q27.8241 12.0312 28.7459 12.0312 Q29.2616 12.0312 29.6678 11.9218 Q30.0741 11.8125 30.4022 11.6718 L30.4022 12.5937 Q30.0897 12.7656 29.6991 12.8593 Q29.3084 12.9531 28.7459 12.9531 ZM34.3653 6.2812 Q35.5372 6.2812 36.0997 6.7968 Q36.6778 7.3125 36.6778 8.4531 L36.6778 12.8281 L35.8966 12.8281 L35.6935 11.9218 L35.6466 11.9218 Q35.2247 12.4375 34.756 12.7031 Q34.3028 12.9531 33.4903 12.9531 Q32.6153 12.9531 32.0372 12.5 Q31.4591 12.0312 31.4591 11.0468 Q31.4591 10.0781 32.2091 9.5625 Q32.9747 9.0312 34.5528 8.9843 L35.6466 8.9531 L35.6466 8.5625 Q35.6466 7.7656 35.2872 7.4531 Q34.9435 7.1406 34.3028 7.1406 Q33.8028 7.1406 33.3497 7.2968 Q32.8966 7.4375 32.4903 7.625 L32.1778 6.8437 Q32.5997 6.6093 33.1622 6.4531 Q33.7403 6.2812 34.3653 6.2812 ZM34.6778 9.7187 Q33.4747 9.7656 33.006 10.1093 Q32.5528 10.4375 32.5528 11.0468 Q32.5528 11.5937 32.881 11.8437 Q33.2091 12.0937 33.7247 12.0937 Q34.5528 12.0937 35.0841 11.6562 Q35.631 11.2031 35.631 10.2656 L35.631 9.6875 L34.6778 9.7187 ZM40.8161 12.0781 Q41.0505 12.0781 41.3005 12.0468 Q41.5505 12 41.7068 11.9531 L41.7068 12.75 Q41.5505 12.8437 41.238 12.8906 Q40.9255 12.9531 40.6286 12.9531 Q40.1286 12.9531 39.6911 12.7812 Q39.2693 12.5937 39.0036 12.1718 Q38.7536 11.7343 38.7536 10.9531 L38.7536 7.2187 L37.8318 7.2187 L37.8318 6.7031 L38.7536 6.2812 L39.1755 4.9218 L39.8005 4.9218 L39.8005 6.3906 L41.6599 6.3906 L41.6599 7.2187 L39.8005 7.2187 L39.8005 10.9375 Q39.8005 11.5156 40.0818 11.7968 Q40.363 12.0781 40.8161 12.0781 Z" style="stroke:none; clip-path:url(#clipPath26);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-793.6578" y="-7.0884" width="119" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="-793.6578" y="-7.0884" width="119" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="-692.6578" y="-1.0884" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="-692.6578" y="-1.0884" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="-694.6578" y="6.9116" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-694.6578" y="6.9116" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="-694.6578" y="1.9116" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-694.6578" y="1.9116" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-773.6578,10.9116)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath27);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-764.33,13.2557)"
+    ><path d="M7.7188 12.8281 L6.6406 12.8281 L6.6406 8.8281 L2.25 8.8281 L2.25 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.25 4.2656 L2.25 7.8906 L6.6406 7.8906 L6.6406 4.2656 L7.7188 4.2656 L7.7188 12.8281 ZM15.5014 9.5937 Q15.5014 11.2031 14.6889 12.0781 Q13.8764 12.9531 12.5014 12.9531 Q11.6577 12.9531 10.9858 12.5625 Q10.3139 12.1718 9.9233 11.4218 Q9.5483 10.6718 9.5483 9.5937 Q9.5483 8 10.3452 7.1406 Q11.1577 6.2812 12.5327 6.2812 Q13.4233 6.2812 14.0796 6.6718 Q14.7514 7.0625 15.1264 7.7968 Q15.5014 8.5312 15.5014 9.5937 ZM10.6421 9.5937 Q10.6421 10.7343 11.0952 11.4062 Q11.5483 12.0781 12.5327 12.0781 Q13.5014 12.0781 13.9546 11.4062 Q14.4077 10.7343 14.4077 9.5937 Q14.4077 8.4531 13.9546 7.8125 Q13.5014 7.1718 12.5171 7.1718 Q11.5327 7.1718 11.0796 7.8125 Q10.6421 8.4531 10.6421 9.5937 ZM19.324 12.0781 Q19.5584 12.0781 19.8084 12.0468 Q20.0584 12 20.2146 11.9531 L20.2146 12.75 Q20.0584 12.8437 19.7459 12.8906 Q19.4334 12.9531 19.1365 12.9531 Q18.6365 12.9531 18.199 12.7812 Q17.7771 12.5937 17.5115 12.1718 Q17.2615 11.7343 17.2615 10.9531 L17.2615 7.2187 L16.3396 7.2187 L16.3396 6.7031 L17.2615 6.2812 L17.6834 4.9218 L18.3084 4.9218 L18.3084 6.3906 L20.1677 6.3906 L20.1677 7.2187 L18.3084 7.2187 L18.3084 10.9375 Q18.3084 11.5156 18.5896 11.7968 Q18.8709 12.0781 19.324 12.0781 ZM23.9841 6.2812 Q24.8123 6.2812 25.406 6.6406 Q25.9998 7 26.3123 7.6562 Q26.6404 8.2968 26.6404 9.1875 L26.6404 9.8125 L22.2341 9.8125 Q22.2654 10.9062 22.7966 11.4843 Q23.3279 12.0468 24.281 12.0468 Q24.906 12.0468 25.3748 11.9375 Q25.8435 11.8125 26.3591 11.6093 L26.3591 12.5312 Q25.8591 12.75 25.3748 12.8437 Q24.906 12.9531 24.2341 12.9531 Q23.3279 12.9531 22.6248 12.5781 Q21.9216 12.2031 21.531 11.4687 Q21.1404 10.7343 21.1404 9.6562 Q21.1404 8.6093 21.4998 7.8593 Q21.8591 7.0937 22.4998 6.6875 Q23.1404 6.2812 23.9841 6.2812 ZM23.9685 7.1406 Q23.2185 7.1406 22.781 7.625 Q22.3435 8.1093 22.2654 8.9687 L25.531 8.9687 Q25.531 8.1562 25.156 7.6562 Q24.781 7.1406 23.9685 7.1406 ZM29.3303 12.8281 L28.2678 12.8281 L28.2678 3.7031 L29.3303 3.7031 L29.3303 12.8281 ZM36.8951 12.8281 L35.8638 10.1718 L32.4576 10.1718 L31.442 12.8281 L30.3482 12.8281 L33.692 4.2187 L34.6607 4.2187 L38.0045 12.8281 L36.8951 12.8281 ZM34.567 6.625 Q34.5357 6.5312 34.442 6.2812 Q34.3638 6.0312 34.2857 5.7656 Q34.2076 5.4843 34.1607 5.3437 Q34.0826 5.7187 33.9732 6.0781 Q33.8638 6.4218 33.7857 6.625 L32.817 9.2187 L35.5357 9.2187 L34.567 6.625 ZM41.4538 4.2656 Q43.1257 4.2656 43.8913 4.9218 Q44.6569 5.5781 44.6569 6.7812 Q44.6569 7.4843 44.3444 8.1093 Q44.0319 8.7187 43.2819 9.1093 Q42.5319 9.4843 41.2507 9.4843 L40.2663 9.4843 L40.2663 12.8281 L39.1725 12.8281 L39.1725 4.2656 L41.4538 4.2656 ZM41.36 5.1875 L40.2663 5.1875 L40.2663 8.5625 L41.1257 8.5625 Q42.3444 8.5625 42.9382 8.1718 Q43.5475 7.7812 43.5475 6.8281 Q43.5475 6 43.0163 5.5937 Q42.485 5.1875 41.36 5.1875 ZM48.8545 12.8281 L45.7607 12.8281 L45.7607 12.2031 L46.7607 11.9687 L46.7607 5.125 L45.7607 4.8906 L45.7607 4.2656 L48.8545 4.2656 L48.8545 4.8906 L47.8388 5.125 L47.8388 11.9687 L48.8545 12.2031 L48.8545 12.8281 Z" style="stroke:none; clip-path:url(#clipPath28);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><line x1="-848.4004" x2="-910.6848" y1="-9.5851" style="fill:none; clip-path:url(#clipPath2);" y2="-9.5851"
+      /><line x1="-910.6848" x2="-910.6848" y1="-9.5851" style="fill:none; clip-path:url(#clipPath2);" y2="75.1822"
+      /><line x1="-910.6848" x2="-1001.1496" y1="75.1822" style="fill:none; clip-path:url(#clipPath2);" y2="75.1822"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-922.4149,61.7167)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath29);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -848 124 -844 120 -616 120 -616 303 -620 307 -848 307"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -848 124 -844 120 -616 120 -616 303 -620 307 -848 307"
+      /><line x1="-620" x2="-617" y1="124" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="121"
+      /><line x1="-848" x2="-620" y1="124" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="124"
+      /><line x1="-620" x2="-620" y1="124" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="307"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-795.5803,142.6673)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM27.7175 -3.2344 Q27.7175 -1.625 26.905 -0.75 Q26.0925 0.125 24.7175 0.125 Q23.8738 0.125 23.2019 -0.2656 Q22.53 -0.6562 22.1394 -1.4062 Q21.7644 -2.1562 21.7644 -3.2344 Q21.7644 -4.8281 22.5613 -5.6875 Q23.3738 -6.5469 24.7488 -6.5469 Q25.6394 -6.5469 26.2956 -6.1562 Q26.9675 -5.7656 27.3425 -5.0312 Q27.7175 -4.2969 27.7175 -3.2344 ZM22.8581 -3.2344 Q22.8581 -2.0938 23.3113 -1.4219 Q23.7644 -0.75 24.7488 -0.75 Q25.7175 -0.75 26.1706 -1.4219 Q26.6238 -2.0938 26.6238 -3.2344 Q26.6238 -4.375 26.1706 -5.0156 Q25.7175 -5.6562 24.7331 -5.6562 Q23.7488 -5.6562 23.2956 -5.0156 Q22.8581 -4.375 22.8581 -3.2344 ZM31.9619 0.125 Q31.1182 0.125 30.4463 -0.2188 Q29.7901 -0.5781 29.3994 -1.3125 Q29.0244 -2.0469 29.0244 -3.1875 Q29.0244 -4.375 29.4151 -5.1094 Q29.8213 -5.8594 30.4932 -6.2031 Q31.1807 -6.5469 32.0401 -6.5469 Q32.5244 -6.5469 32.9776 -6.4375 Q33.4463 -6.3438 33.7276 -6.2031 L33.4151 -5.3281 Q33.1182 -5.4375 32.7276 -5.5312 Q32.3526 -5.625 32.0088 -5.625 Q30.1182 -5.625 30.1182 -3.1875 Q30.1182 -2.0312 30.5713 -1.4062 Q31.0401 -0.7969 31.9619 -0.7969 Q32.4776 -0.7969 32.8838 -0.9062 Q33.2901 -1.0156 33.6182 -1.1562 L33.6182 -0.2344 Q33.3057 -0.0625 32.9151 0.0312 Q32.5244 0.125 31.9619 0.125 ZM36.1907 -4.3594 Q36.1907 -4.1562 36.1751 -3.8438 Q36.1595 -3.5469 36.1439 -3.3125 L36.1907 -3.3125 Q36.2689 -3.4062 36.4095 -3.5781 Q36.5501 -3.7656 36.6907 -3.9531 Q36.847 -4.1406 36.9564 -4.2656 L39.0189 -6.4375 L40.2532 -6.4375 L37.6439 -3.6875 L40.4251 0 L39.1595 0 L36.9251 -3 L36.1907 -2.3594 L36.1907 0 L35.1439 0 L35.1439 -9.125 L36.1907 -9.125 L36.1907 -4.3594 ZM44.0363 -6.5469 Q44.8644 -6.5469 45.4582 -6.1875 Q46.0519 -5.8281 46.3644 -5.1719 Q46.6925 -4.5312 46.6925 -3.6406 L46.6925 -3.0156 L42.2863 -3.0156 Q42.3175 -1.9219 42.8488 -1.3438 Q43.38 -0.7812 44.3332 -0.7812 Q44.9582 -0.7812 45.4269 -0.8906 Q45.8957 -1.0156 46.4113 -1.2188 L46.4113 -0.2969 Q45.9113 -0.0781 45.4269 0.0156 Q44.9582 0.125 44.2863 0.125 Q43.38 0.125 42.6769 -0.25 Q41.9738 -0.625 41.5832 -1.3594 Q41.1925 -2.0938 41.1925 -3.1719 Q41.1925 -4.2188 41.5519 -4.9688 Q41.9113 -5.7344 42.5519 -6.1406 Q43.1925 -6.5469 44.0363 -6.5469 ZM44.0207 -5.6875 Q43.2707 -5.6875 42.8332 -5.2031 Q42.3957 -4.7188 42.3175 -3.8594 L45.5832 -3.8594 Q45.5832 -4.6719 45.2082 -5.1719 Q44.8332 -5.6875 44.0207 -5.6875 ZM51.32 -6.5469 Q51.5075 -6.5469 51.7106 -6.5312 Q51.9293 -6.5156 52.0856 -6.4844 L51.945 -5.5156 Q51.7887 -5.5469 51.6012 -5.5625 Q51.4137 -5.5938 51.2575 -5.5938 Q50.7575 -5.5938 50.32 -5.3125 Q49.8981 -5.0469 49.6325 -4.5625 Q49.3825 -4.0781 49.3825 -3.4375 L49.3825 0 L48.32 0 L48.32 -6.4375 L49.195 -6.4375 L49.3043 -5.25 L49.3512 -5.25 Q49.6637 -5.7812 50.1481 -6.1562 Q50.6481 -6.5469 51.32 -6.5469 ZM58.9742 0.125 Q58.1304 0.125 57.4585 -0.2188 Q56.8023 -0.5781 56.4117 -1.3125 Q56.0367 -2.0469 56.0367 -3.1875 Q56.0367 -4.375 56.4273 -5.1094 Q56.8335 -5.8594 57.5054 -6.2031 Q58.1929 -6.5469 59.0523 -6.5469 Q59.5367 -6.5469 59.9898 -6.4375 Q60.4585 -6.3438 60.7398 -6.2031 L60.4273 -5.3281 Q60.1304 -5.4375 59.7398 -5.5312 Q59.3648 -5.625 59.021 -5.625 Q57.1304 -5.625 57.1304 -3.1875 Q57.1304 -2.0312 57.5835 -1.4062 Q58.0523 -0.7969 58.9742 -0.7969 Q59.4898 -0.7969 59.896 -0.9062 Q60.3023 -1.0156 60.6304 -1.1562 L60.6304 -0.2344 Q60.3179 -0.0625 59.9273 0.0312 Q59.5367 0.125 58.9742 0.125 ZM67.7498 -3.2344 Q67.7498 -1.625 66.9373 -0.75 Q66.1248 0.125 64.7498 0.125 Q63.9061 0.125 63.2342 -0.2656 Q62.5623 -0.6562 62.1717 -1.4062 Q61.7967 -2.1562 61.7967 -3.2344 Q61.7967 -4.8281 62.5936 -5.6875 Q63.4061 -6.5469 64.7811 -6.5469 Q65.6717 -6.5469 66.3279 -6.1562 Q66.9998 -5.7656 67.3748 -5.0312 Q67.7498 -4.2969 67.7498 -3.2344 ZM62.8904 -3.2344 Q62.8904 -2.0938 63.3436 -1.4219 Q63.7967 -0.75 64.7811 -0.75 Q65.7498 -0.75 66.2029 -1.4219 Q66.6561 -2.0938 66.6561 -3.2344 Q66.6561 -4.375 66.2029 -5.0156 Q65.7498 -5.6562 64.7654 -5.6562 Q63.7811 -5.6562 63.3279 -5.0156 Q62.8904 -4.375 62.8904 -3.2344 ZM72.5099 -6.5469 Q73.6661 -6.5469 74.2442 -5.9844 Q74.838 -5.4375 74.838 -4.1875 L74.838 0 L73.8067 0 L73.8067 -4.1094 Q73.8067 -5.6562 72.3536 -5.6562 Q71.2911 -5.6562 70.8849 -5.0625 Q70.4786 -4.4688 70.4786 -3.3438 L70.4786 0 L69.4161 0 L69.4161 -6.4375 L70.2755 -6.4375 L70.4317 -5.5625 L70.4942 -5.5625 Q70.8067 -6.0625 71.3536 -6.2969 Q71.9005 -6.5469 72.5099 -6.5469 ZM78.9884 -0.75 Q79.2228 -0.75 79.4728 -0.7812 Q79.7228 -0.8281 79.879 -0.875 L79.879 -0.0781 Q79.7228 0.0156 79.4103 0.0625 Q79.0978 0.125 78.8009 0.125 Q78.3009 0.125 77.8634 -0.0469 Q77.4415 -0.2344 77.1759 -0.6562 Q76.9259 -1.0938 76.9259 -1.875 L76.9259 -5.6094 L76.004 -5.6094 L76.004 -6.125 L76.9259 -6.5469 L77.3478 -7.9062 L77.9728 -7.9062 L77.9728 -6.4375 L79.8322 -6.4375 L79.8322 -5.6094 L77.9728 -5.6094 L77.9728 -1.8906 Q77.9728 -1.3125 78.254 -1.0312 Q78.5353 -0.75 78.9884 -0.75 ZM83.6017 -6.5469 Q84.7736 -6.5469 85.3361 -6.0312 Q85.9142 -5.5156 85.9142 -4.375 L85.9142 0 L85.1329 0 L84.9298 -0.9062 L84.8829 -0.9062 Q84.4611 -0.3906 83.9923 -0.125 Q83.5392 0.125 82.7267 0.125 Q81.8517 0.125 81.2736 -0.3281 Q80.6954 -0.7969 80.6954 -1.7812 Q80.6954 -2.75 81.4454 -3.2656 Q82.2111 -3.7969 83.7892 -3.8438 L84.8829 -3.875 L84.8829 -4.2656 Q84.8829 -5.0625 84.5236 -5.375 Q84.1798 -5.6875 83.5392 -5.6875 Q83.0392 -5.6875 82.5861 -5.5312 Q82.1329 -5.3906 81.7267 -5.2031 L81.4142 -5.9844 Q81.8361 -6.2188 82.3986 -6.375 Q82.9767 -6.5469 83.6017 -6.5469 ZM83.9142 -3.1094 Q82.7111 -3.0625 82.2423 -2.7188 Q81.7892 -2.3906 81.7892 -1.7812 Q81.7892 -1.2344 82.1173 -0.9844 Q82.4454 -0.7344 82.9611 -0.7344 Q83.7892 -0.7344 84.3204 -1.1719 Q84.8673 -1.625 84.8673 -2.5625 L84.8673 -3.1406 L83.9142 -3.1094 ZM88.4431 -8.8438 Q88.6775 -8.8438 88.865 -8.6719 Q89.0525 -8.5156 89.0525 -8.1719 Q89.0525 -7.8438 88.865 -7.6719 Q88.6775 -7.5 88.4431 -7.5 Q88.1775 -7.5 87.99 -7.6719 Q87.8181 -7.8438 87.8181 -8.1719 Q87.8181 -8.5156 87.99 -8.6719 Q88.1775 -8.8438 88.4431 -8.8438 ZM88.9587 -6.4375 L88.9587 0 L87.8962 0 L87.8962 -6.4375 L88.9587 -6.4375 ZM94.086 -6.5469 Q95.2423 -6.5469 95.8204 -5.9844 Q96.4141 -5.4375 96.4141 -4.1875 L96.4141 0 L95.3829 0 L95.3829 -4.1094 Q95.3829 -5.6562 93.9298 -5.6562 Q92.8673 -5.6562 92.461 -5.0625 Q92.0548 -4.4688 92.0548 -3.3438 L92.0548 0 L90.9923 0 L90.9923 -6.4375 L91.8516 -6.4375 L92.0079 -5.5625 L92.0704 -5.5625 Q92.3829 -6.0625 92.9298 -6.2969 Q93.4766 -6.5469 94.086 -6.5469 ZM100.8927 -6.5469 Q101.7208 -6.5469 102.3146 -6.1875 Q102.9083 -5.8281 103.2208 -5.1719 Q103.5489 -4.5312 103.5489 -3.6406 L103.5489 -3.0156 L99.1427 -3.0156 Q99.1739 -1.9219 99.7052 -1.3438 Q100.2364 -0.7812 101.1896 -0.7812 Q101.8146 -0.7812 102.2833 -0.8906 Q102.7521 -1.0156 103.2677 -1.2188 L103.2677 -0.2969 Q102.7677 -0.0781 102.2833 0.0156 Q101.8146 0.125 101.1427 0.125 Q100.2364 0.125 99.5333 -0.25 Q98.8302 -0.625 98.4396 -1.3594 Q98.0489 -2.0938 98.0489 -3.1719 Q98.0489 -4.2188 98.4083 -4.9688 Q98.7677 -5.7344 99.4083 -6.1406 Q100.0489 -6.5469 100.8927 -6.5469 ZM100.8771 -5.6875 Q100.1271 -5.6875 99.6896 -5.2031 Q99.2521 -4.7188 99.1739 -3.8594 L102.4396 -3.8594 Q102.4396 -4.6719 102.0646 -5.1719 Q101.6896 -5.6875 100.8771 -5.6875 ZM108.1764 -6.5469 Q108.3639 -6.5469 108.567 -6.5312 Q108.7857 -6.5156 108.942 -6.4844 L108.8014 -5.5156 Q108.6451 -5.5469 108.4576 -5.5625 Q108.2701 -5.5938 108.1139 -5.5938 Q107.6139 -5.5938 107.1764 -5.3125 Q106.7545 -5.0469 106.4889 -4.5625 Q106.2389 -4.0781 106.2389 -3.4375 L106.2389 0 L105.1764 0 L105.1764 -6.4375 L106.0514 -6.4375 L106.1607 -5.25 L106.2076 -5.25 Q106.5201 -5.7812 107.0045 -6.1562 Q107.5045 -6.5469 108.1764 -6.5469 ZM109.7105 -2.3281 L114.2418 -4.2188 L109.7105 -6.3594 L109.7105 -7.2969 L115.3668 -4.4688 L115.3668 -3.875 L109.7105 -1.3906 L109.7105 -2.3281 ZM116.5746 -2.3281 L121.1058 -4.2188 L116.5746 -6.3594 L116.5746 -7.2969 L122.2308 -4.4688 L122.2308 -3.875 L116.5746 -1.3906 L116.5746 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath30);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-794.4444,144.3441)"
+    ><path d="M3.6094 4.2656 Q5.2188 4.2656 6.0312 4.7343 Q6.8594 5.2031 6.8594 6.3906 Q6.8594 7.1406 6.4375 7.6406 Q6.0312 8.1406 5.2344 8.2812 L5.2344 8.3437 Q5.7656 8.4218 6.2031 8.6562 Q6.6406 8.875 6.8906 9.2968 Q7.1562 9.7187 7.1562 10.3906 Q7.1562 11.5625 6.3594 12.2031 Q5.5625 12.8281 4.1719 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.6094 4.2656 ZM3.8281 7.9062 Q4.9375 7.9062 5.3438 7.5625 Q5.75 7.2031 5.75 6.5 Q5.75 5.7968 5.25 5.5 Q4.75 5.1875 3.6562 5.1875 L2.25 5.1875 L2.25 7.9062 L3.8281 7.9062 ZM2.25 8.8125 L2.25 11.9218 L3.9688 11.9218 Q5.1094 11.9218 5.5469 11.4843 Q6 11.0312 6 10.3125 Q6 9.6406 5.5312 9.2343 Q5.0781 8.8125 3.8906 8.8125 L2.25 8.8125 ZM14.4094 9.5937 Q14.4094 11.2031 13.5969 12.0781 Q12.7844 12.9531 11.4094 12.9531 Q10.5657 12.9531 9.8938 12.5625 Q9.2219 12.1718 8.8313 11.4218 Q8.4563 10.6718 8.4563 9.5937 Q8.4563 8 9.2532 7.1406 Q10.0657 6.2812 11.4407 6.2812 Q12.3313 6.2812 12.9875 6.6718 Q13.6594 7.0625 14.0344 7.7968 Q14.4094 8.5312 14.4094 9.5937 ZM9.55 9.5937 Q9.55 10.7343 10.0032 11.4062 Q10.4563 12.0781 11.4407 12.0781 Q12.4094 12.0781 12.8625 11.4062 Q13.3157 10.7343 13.3157 9.5937 Q13.3157 8.4531 12.8625 7.8125 Q12.4094 7.1718 11.425 7.1718 Q10.4407 7.1718 9.9875 7.8125 Q9.55 8.4531 9.55 9.5937 ZM21.6695 9.5937 Q21.6695 11.2031 20.857 12.0781 Q20.0445 12.9531 18.6695 12.9531 Q17.8257 12.9531 17.1539 12.5625 Q16.482 12.1718 16.0914 11.4218 Q15.7164 10.6718 15.7164 9.5937 Q15.7164 8 16.5132 7.1406 Q17.3257 6.2812 18.7007 6.2812 Q19.5914 6.2812 20.2476 6.6718 Q20.9195 7.0625 21.2945 7.7968 Q21.6695 8.5312 21.6695 9.5937 ZM16.8101 9.5937 Q16.8101 10.7343 17.2632 11.4062 Q17.7164 12.0781 18.7007 12.0781 Q19.6695 12.0781 20.1226 11.4062 Q20.5757 10.7343 20.5757 9.5937 Q20.5757 8.4531 20.1226 7.8125 Q19.6695 7.1718 18.6851 7.1718 Q17.7007 7.1718 17.2476 7.8125 Q16.8101 8.4531 16.8101 9.5937 ZM24.3827 8.4687 Q24.3827 8.6718 24.367 8.9843 Q24.3514 9.2812 24.3358 9.5156 L24.3827 9.5156 Q24.4608 9.4218 24.6014 9.25 Q24.742 9.0625 24.8827 8.875 Q25.0389 8.6875 25.1483 8.5625 L27.2108 6.3906 L28.4452 6.3906 L25.8358 9.1406 L28.617 12.8281 L27.3514 12.8281 L25.117 9.8281 L24.3827 10.4687 L24.3827 12.8281 L23.3358 12.8281 L23.3358 3.7031 L24.3827 3.7031 L24.3827 8.4687 ZM30.2907 3.9843 Q30.5251 3.9843 30.7126 4.1562 Q30.9001 4.3125 30.9001 4.6562 Q30.9001 4.9843 30.7126 5.1562 Q30.5251 5.3281 30.2907 5.3281 Q30.0251 5.3281 29.8376 5.1562 Q29.6657 4.9843 29.6657 4.6562 Q29.6657 4.3125 29.8376 4.1562 Q30.0251 3.9843 30.2907 3.9843 ZM30.8063 6.3906 L30.8063 12.8281 L29.7438 12.8281 L29.7438 6.3906 L30.8063 6.3906 ZM35.9336 6.2812 Q37.0899 6.2812 37.668 6.8437 Q38.2617 7.3906 38.2617 8.6406 L38.2617 12.8281 L37.2305 12.8281 L37.2305 8.7187 Q37.2305 7.1718 35.7774 7.1718 Q34.7149 7.1718 34.3086 7.7656 Q33.9024 8.3593 33.9024 9.4843 L33.9024 12.8281 L32.8399 12.8281 L32.8399 6.3906 L33.6992 6.3906 L33.8555 7.2656 L33.918 7.2656 Q34.2305 6.7656 34.7774 6.5312 Q35.3242 6.2812 35.9336 6.2812 ZM42.5372 6.2812 Q43.1778 6.2812 43.6778 6.5156 Q44.1934 6.75 44.5528 7.25 L44.6153 7.25 L44.7559 6.3906 L45.5997 6.3906 L45.5997 12.9375 Q45.5997 14.3125 44.8965 15 Q44.1934 15.7031 42.7247 15.7031 Q41.3028 15.7031 40.3965 15.2968 L40.3965 14.3281 Q41.3497 14.8281 42.7872 14.8281 Q43.6153 14.8281 44.084 14.3437 Q44.5528 13.8593 44.5528 13.0156 L44.5528 12.7656 Q44.5528 12.625 44.5684 12.3593 Q44.584 12.0781 44.5997 11.9687 L44.5372 11.9687 Q43.8965 12.9531 42.5528 12.9531 Q41.3028 12.9531 40.5997 12.0781 Q39.8965 11.2031 39.8965 9.625 Q39.8965 8.0937 40.5997 7.1875 Q41.3028 6.2812 42.5372 6.2812 ZM42.6778 7.1718 Q41.8809 7.1718 41.4278 7.8125 Q40.9903 8.4531 40.9903 9.6406 Q40.9903 10.8281 41.4278 11.4531 Q41.8653 12.0781 42.709 12.0781 Q43.6778 12.0781 44.1153 11.5625 Q44.5684 11.0468 44.5684 9.875 L44.5684 9.625 Q44.5684 8.2968 44.1153 7.7343 Q43.6622 7.1718 42.6778 7.1718 ZM54.6779 12.8281 L51.8654 5.3125 L51.8185 5.3125 Q51.8497 5.6875 51.8654 6.3281 Q51.8966 6.9531 51.8966 7.625 L51.8966 12.8281 L50.8966 12.8281 L50.8966 4.2656 L52.506 4.2656 L55.1466 11.2812 L55.1935 11.2812 L57.881 4.2656 L59.4591 4.2656 L59.4591 12.8281 L58.3966 12.8281 L58.3966 7.5625 Q58.3966 6.9375 58.4279 6.3281 Q58.4591 5.7187 58.4747 5.3281 L58.4279 5.3281 L55.5685 12.8281 L54.6779 12.8281 ZM62.1869 3.9843 Q62.4213 3.9843 62.6088 4.1562 Q62.7963 4.3125 62.7963 4.6562 Q62.7963 4.9843 62.6088 5.1562 Q62.4213 5.3281 62.1869 5.3281 Q61.9213 5.3281 61.7338 5.1562 Q61.5619 4.9843 61.5619 4.6562 Q61.5619 4.3125 61.7338 4.1562 Q61.9213 3.9843 62.1869 3.9843 ZM62.7026 6.3906 L62.7026 12.8281 L61.6401 12.8281 L61.6401 6.3906 L62.7026 6.3906 ZM67.3142 12.9531 Q66.4705 12.9531 65.7986 12.6093 Q65.1423 12.25 64.7517 11.5156 Q64.3767 10.7812 64.3767 9.6406 Q64.3767 8.4531 64.7673 7.7187 Q65.1736 6.9687 65.8455 6.625 Q66.533 6.2812 67.3923 6.2812 Q67.8767 6.2812 68.3298 6.3906 Q68.7986 6.4843 69.0798 6.625 L68.7673 7.5 Q68.4705 7.3906 68.0798 7.2968 Q67.7048 7.2031 67.3611 7.2031 Q65.4705 7.2031 65.4705 9.6406 Q65.4705 10.7968 65.9236 11.4218 Q66.3923 12.0312 67.3142 12.0312 Q67.8298 12.0312 68.2361 11.9218 Q68.6423 11.8125 68.9705 11.6718 L68.9705 12.5937 Q68.658 12.7656 68.2673 12.8593 Q67.8767 12.9531 67.3142 12.9531 ZM73.4961 6.2812 Q73.6836 6.2812 73.8867 6.2968 Q74.1055 6.3125 74.2617 6.3437 L74.1211 7.3125 Q73.9649 7.2812 73.7774 7.2656 Q73.5899 7.2343 73.4336 7.2343 Q72.9336 7.2343 72.4961 7.5156 Q72.0742 7.7812 71.8086 8.2656 Q71.5586 8.75 71.5586 9.3906 L71.5586 12.8281 L70.4961 12.8281 L70.4961 6.3906 L71.3711 6.3906 L71.4805 7.5781 L71.5274 7.5781 Q71.8399 7.0468 72.3242 6.6718 Q72.8242 6.2812 73.4961 6.2812 ZM81.0459 9.5937 Q81.0459 11.2031 80.2334 12.0781 Q79.4209 12.9531 78.0459 12.9531 Q77.2022 12.9531 76.5303 12.5625 Q75.8584 12.1718 75.4678 11.4218 Q75.0928 10.6718 75.0928 9.5937 Q75.0928 8 75.8897 7.1406 Q76.7022 6.2812 78.0772 6.2812 Q78.9678 6.2812 79.624 6.6718 Q80.2959 7.0625 80.6709 7.7968 Q81.0459 8.5312 81.0459 9.5937 ZM76.1865 9.5937 Q76.1865 10.7343 76.6397 11.4062 Q77.0928 12.0781 78.0772 12.0781 Q79.0459 12.0781 79.499 11.4062 Q79.9522 10.7343 79.9522 9.5937 Q79.9522 8.4531 79.499 7.8125 Q79.0459 7.1718 78.0615 7.1718 Q77.0772 7.1718 76.624 7.8125 Q76.1865 8.4531 76.1865 9.5937 ZM86.8997 11.0468 Q86.8997 11.9843 86.1966 12.4687 Q85.5091 12.9531 84.3372 12.9531 Q83.6653 12.9531 83.181 12.8437 Q82.6966 12.7343 82.3216 12.5468 L82.3216 11.5781 Q82.7122 11.7656 83.2435 11.9375 Q83.7903 12.0937 84.3528 12.0937 Q85.1653 12.0937 85.5247 11.8437 Q85.8841 11.5781 85.8841 11.1406 Q85.8841 10.9062 85.7435 10.7187 Q85.6185 10.5312 85.2747 10.3437 Q84.931 10.1406 84.306 9.9062 Q83.681 9.6562 83.2278 9.4218 Q82.7903 9.1875 82.5403 8.8593 Q82.306 8.5156 82.306 7.9843 Q82.306 7.1718 82.9622 6.7343 Q83.6341 6.2812 84.7278 6.2812 Q85.306 6.2812 85.806 6.3906 Q86.3216 6.5 86.7747 6.7031 L86.4153 7.5468 Q86.0091 7.375 85.556 7.2656 Q85.1185 7.1406 84.6497 7.1406 Q83.9935 7.1406 83.6497 7.3593 Q83.3216 7.5625 83.3216 7.9218 Q83.3216 8.1875 83.4778 8.375 Q83.6341 8.5625 83.9935 8.7343 Q84.3528 8.9062 84.9778 9.1406 Q85.5872 9.375 86.0091 9.625 Q86.4466 9.8593 86.6653 10.2031 Q86.8997 10.5312 86.8997 11.0468 ZM90.9446 6.2812 Q91.7728 6.2812 92.3665 6.6406 Q92.9603 7 93.2728 7.6562 Q93.6009 8.2968 93.6009 9.1875 L93.6009 9.8125 L89.1946 9.8125 Q89.2259 10.9062 89.7571 11.4843 Q90.2884 12.0468 91.2415 12.0468 Q91.8665 12.0468 92.3353 11.9375 Q92.804 11.8125 93.3196 11.6093 L93.3196 12.5312 Q92.8196 12.75 92.3353 12.8437 Q91.8665 12.9531 91.1946 12.9531 Q90.2884 12.9531 89.5853 12.5781 Q88.8821 12.2031 88.4915 11.4687 Q88.1009 10.7343 88.1009 9.6562 Q88.1009 8.6093 88.4603 7.8593 Q88.8196 7.0937 89.4603 6.6875 Q90.1009 6.2812 90.9446 6.2812 ZM90.929 7.1406 Q90.179 7.1406 89.7415 7.625 Q89.304 8.1093 89.2259 8.9687 L92.4915 8.9687 Q92.4915 8.1562 92.1165 7.6562 Q91.7415 7.1406 90.929 7.1406 ZM98.2283 6.2812 Q98.4158 6.2812 98.6189 6.2968 Q98.8377 6.3125 98.9939 6.3437 L98.8533 7.3125 Q98.6971 7.2812 98.5096 7.2656 Q98.3221 7.2343 98.1658 7.2343 Q97.6658 7.2343 97.2283 7.5156 Q96.8064 7.7812 96.5408 8.2656 Q96.2908 8.75 96.2908 9.3906 L96.2908 12.8281 L95.2283 12.8281 L95.2283 6.3906 L96.1033 6.3906 L96.2127 7.5781 L96.2596 7.5781 Q96.5721 7.0468 97.0564 6.6718 Q97.5564 6.2812 98.2283 6.2812 ZM101.6062 12.8281 L99.1687 6.3906 L100.2937 6.3906 L101.6687 10.1875 Q101.7625 10.4531 101.8719 10.7812 Q101.9812 11.0937 102.0594 11.3906 Q102.1375 11.6875 102.1844 11.8906 L102.2312 11.8906 Q102.2781 11.6875 102.3562 11.3906 Q102.45 11.0937 102.5594 10.7656 Q102.6844 10.4375 102.7625 10.1875 L104.1375 6.3906 L105.2625 6.3906 L102.8094 12.8281 L101.6062 12.8281 ZM106.8273 3.9843 Q107.0616 3.9843 107.2491 4.1562 Q107.4366 4.3125 107.4366 4.6562 Q107.4366 4.9843 107.2491 5.1562 Q107.0616 5.3281 106.8273 5.3281 Q106.5616 5.3281 106.3741 5.1562 Q106.2023 4.9843 106.2023 4.6562 Q106.2023 4.3125 106.3741 4.1562 Q106.5616 3.9843 106.8273 3.9843 ZM107.3429 6.3906 L107.3429 12.8281 L106.2804 12.8281 L106.2804 6.3906 L107.3429 6.3906 ZM111.9545 12.9531 Q111.1108 12.9531 110.4389 12.6093 Q109.7827 12.25 109.392 11.5156 Q109.017 10.7812 109.017 9.6406 Q109.017 8.4531 109.4077 7.7187 Q109.8139 6.9687 110.4858 6.625 Q111.1733 6.2812 112.0327 6.2812 Q112.517 6.2812 112.9702 6.3906 Q113.4389 6.4843 113.7202 6.625 L113.4077 7.5 Q113.1108 7.3906 112.7202 7.2968 Q112.3452 7.2031 112.0014 7.2031 Q110.1108 7.2031 110.1108 9.6406 Q110.1108 10.7968 110.5639 11.4218 Q111.0327 12.0312 111.9545 12.0312 Q112.4702 12.0312 112.8764 11.9218 Q113.2827 11.8125 113.6108 11.6718 L113.6108 12.5937 Q113.2983 12.7656 112.9077 12.8593 Q112.517 12.9531 111.9545 12.9531 ZM117.6208 6.2812 Q118.449 6.2812 119.0427 6.6406 Q119.6365 7 119.949 7.6562 Q120.2771 8.2968 120.2771 9.1875 L120.2771 9.8125 L115.8708 9.8125 Q115.9021 10.9062 116.4333 11.4843 Q116.9646 12.0468 117.9177 12.0468 Q118.5427 12.0468 119.0115 11.9375 Q119.4802 11.8125 119.9958 11.6093 L119.9958 12.5312 Q119.4958 12.75 119.0115 12.8437 Q118.5427 12.9531 117.8708 12.9531 Q116.9646 12.9531 116.2615 12.5781 Q115.5583 12.2031 115.1677 11.4687 Q114.7771 10.7343 114.7771 9.6562 Q114.7771 8.6093 115.1365 7.8593 Q115.4958 7.0937 116.1365 6.6875 Q116.7771 6.2812 117.6208 6.2812 ZM117.6052 7.1406 Q116.8552 7.1406 116.4177 7.625 Q115.9802 8.1093 115.9021 8.9687 L119.1677 8.9687 Q119.1677 8.1562 118.7927 7.6562 Q118.4177 7.1406 117.6052 7.1406 Z" style="stroke:none; clip-path:url(#clipPath31);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -833 187 -829 183 -631 183 -631 288 -635 292 -833 292"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -833 187 -829 183 -631 183 -631 288 -635 292 -833 292"
+      /><line x1="-635" x2="-632" y1="187" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="184"
+      /><line x1="-833" x2="-635" y1="187" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="187"
+      /><line x1="-635" x2="-635" y1="187" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="292"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-813.4004,205.3151)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath32);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-755,207.3441)"
+    ><path d="M3.875 12.8281 L2.7969 12.8281 L2.7969 5.2031 L0.125 5.2031 L0.125 4.2656 L6.5469 4.2656 L6.5469 5.2031 L3.875 5.2031 L3.875 12.8281 ZM13.2814 9.5937 Q13.2814 11.2031 12.4689 12.0781 Q11.6564 12.9531 10.2814 12.9531 Q9.4377 12.9531 8.7658 12.5625 Q8.0939 12.1718 7.7033 11.4218 Q7.3283 10.6718 7.3283 9.5937 Q7.3283 8 8.1252 7.1406 Q8.9377 6.2812 10.3127 6.2812 Q11.2033 6.2812 11.8595 6.6718 Q12.5314 7.0625 12.9064 7.7968 Q13.2814 8.5312 13.2814 9.5937 ZM8.422 9.5937 Q8.422 10.7343 8.8752 11.4062 Q9.3283 12.0781 10.3127 12.0781 Q11.2814 12.0781 11.7345 11.4062 Q12.1877 10.7343 12.1877 9.5937 Q12.1877 8.4531 11.7345 7.8125 Q11.2814 7.1718 10.297 7.1718 Q9.3127 7.1718 8.8595 7.8125 Q8.422 8.4531 8.422 9.5937 ZM22.0102 6.2812 Q23.104 6.2812 23.6352 6.8437 Q24.1821 7.3906 24.1821 8.6406 L24.1821 12.8281 L23.1352 12.8281 L23.1352 8.6875 Q23.1352 7.1718 21.8227 7.1718 Q20.8852 7.1718 20.479 7.7187 Q20.0883 8.25 20.0883 9.2812 L20.0883 12.8281 L19.0415 12.8281 L19.0415 8.6875 Q19.0415 7.1718 17.729 7.1718 Q16.7446 7.1718 16.3696 7.7656 Q16.0102 8.3593 16.0102 9.4843 L16.0102 12.8281 L14.9477 12.8281 L14.9477 6.3906 L15.8071 6.3906 L15.9633 7.2656 L16.0258 7.2656 Q16.3227 6.7656 16.8227 6.5312 Q17.3383 6.2812 17.9165 6.2812 Q19.4321 6.2812 19.8852 7.3593 L19.9477 7.3593 Q20.2758 6.7968 20.8227 6.5468 Q21.3852 6.2812 22.0102 6.2812 ZM28.7459 12.9531 Q27.9022 12.9531 27.2303 12.6093 Q26.5741 12.25 26.1834 11.5156 Q25.8084 10.7812 25.8084 9.6406 Q25.8084 8.4531 26.1991 7.7187 Q26.6053 6.9687 27.2772 6.625 Q27.9647 6.2812 28.8241 6.2812 Q29.3084 6.2812 29.7616 6.3906 Q30.2303 6.4843 30.5116 6.625 L30.1991 7.5 Q29.9022 7.3906 29.5116 7.2968 Q29.1366 7.2031 28.7928 7.2031 Q26.9022 7.2031 26.9022 9.6406 Q26.9022 10.7968 27.3553 11.4218 Q27.8241 12.0312 28.7459 12.0312 Q29.2616 12.0312 29.6678 11.9218 Q30.0741 11.8125 30.4022 11.6718 L30.4022 12.5937 Q30.0897 12.7656 29.6991 12.8593 Q29.3084 12.9531 28.7459 12.9531 ZM34.3653 6.2812 Q35.5372 6.2812 36.0997 6.7968 Q36.6778 7.3125 36.6778 8.4531 L36.6778 12.8281 L35.8966 12.8281 L35.6935 11.9218 L35.6466 11.9218 Q35.2247 12.4375 34.756 12.7031 Q34.3028 12.9531 33.4903 12.9531 Q32.6153 12.9531 32.0372 12.5 Q31.4591 12.0312 31.4591 11.0468 Q31.4591 10.0781 32.2091 9.5625 Q32.9747 9.0312 34.5528 8.9843 L35.6466 8.9531 L35.6466 8.5625 Q35.6466 7.7656 35.2872 7.4531 Q34.9435 7.1406 34.3028 7.1406 Q33.8028 7.1406 33.3497 7.2968 Q32.8966 7.4375 32.4903 7.625 L32.1778 6.8437 Q32.5997 6.6093 33.1622 6.4531 Q33.7403 6.2812 34.3653 6.2812 ZM34.6778 9.7187 Q33.4747 9.7656 33.006 10.1093 Q32.5528 10.4375 32.5528 11.0468 Q32.5528 11.5937 32.881 11.8437 Q33.2091 12.0937 33.7247 12.0937 Q34.5528 12.0937 35.0841 11.6562 Q35.631 11.2031 35.631 10.2656 L35.631 9.6875 L34.6778 9.7187 ZM40.8161 12.0781 Q41.0505 12.0781 41.3005 12.0468 Q41.5505 12 41.7068 11.9531 L41.7068 12.75 Q41.5505 12.8437 41.238 12.8906 Q40.9255 12.9531 40.6286 12.9531 Q40.1286 12.9531 39.6911 12.7812 Q39.2693 12.5937 39.0036 12.1718 Q38.7536 11.7343 38.7536 10.9531 L38.7536 7.2187 L37.8318 7.2187 L37.8318 6.7031 L38.7536 6.2812 L39.1755 4.9218 L39.8005 4.9218 L39.8005 6.3906 L41.6599 6.3906 L41.6599 7.2187 L39.8005 7.2187 L39.8005 10.9375 Q39.8005 11.5156 40.0818 11.7968 Q40.363 12.0781 40.8161 12.0781 Z" style="stroke:none; clip-path:url(#clipPath33);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-793.6578" y="229.3899" width="119" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="-793.6578" y="229.3899" width="119" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="-692.6578" y="235.3899" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="-692.6578" y="235.3899" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="-694.6578" y="243.3899" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-694.6578" y="243.3899" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="-694.6578" y="238.3899" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-694.6578" y="238.3899" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-773.6578,247.3899)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM18.9312 -1.7812 Q18.9312 -0.8438 18.2281 -0.3594 Q17.5406 0.125 16.3687 0.125 Q15.6968 0.125 15.2125 0.0156 Q14.7281 -0.0938 14.3531 -0.2812 L14.3531 -1.25 Q14.7437 -1.0625 15.275 -0.8906 Q15.8218 -0.7344 16.3843 -0.7344 Q17.1968 -0.7344 17.5562 -0.9844 Q17.9156 -1.25 17.9156 -1.6875 Q17.9156 -1.9219 17.775 -2.1094 Q17.65 -2.2969 17.3062 -2.4844 Q16.9625 -2.6875 16.3375 -2.9219 Q15.7125 -3.1719 15.2593 -3.4062 Q14.8218 -3.6406 14.5718 -3.9688 Q14.3375 -4.3125 14.3375 -4.8438 Q14.3375 -5.6562 14.9937 -6.0938 Q15.6656 -6.5469 16.7593 -6.5469 Q17.3375 -6.5469 17.8375 -6.4375 Q18.3531 -6.3281 18.8062 -6.125 L18.4468 -5.2812 Q18.0406 -5.4531 17.5875 -5.5625 Q17.15 -5.6875 16.6812 -5.6875 Q16.025 -5.6875 15.6812 -5.4688 Q15.3531 -5.2656 15.3531 -4.9062 Q15.3531 -4.6406 15.5093 -4.4531 Q15.6656 -4.2656 16.025 -4.0938 Q16.3843 -3.9219 17.0093 -3.6875 Q17.6187 -3.4531 18.0406 -3.2031 Q18.4781 -2.9688 18.6968 -2.625 Q18.9312 -2.2969 18.9312 -1.7812 ZM22.9761 -6.5469 Q23.8043 -6.5469 24.398 -6.1875 Q24.9918 -5.8281 25.3043 -5.1719 Q25.6324 -4.5312 25.6324 -3.6406 L25.6324 -3.0156 L21.2261 -3.0156 Q21.2574 -1.9219 21.7886 -1.3438 Q22.3199 -0.7812 23.273 -0.7812 Q23.898 -0.7812 24.3668 -0.8906 Q24.8355 -1.0156 25.3511 -1.2188 L25.3511 -0.2969 Q24.8511 -0.0781 24.3668 0.0156 Q23.898 0.125 23.2261 0.125 Q22.3199 0.125 21.6168 -0.25 Q20.9136 -0.625 20.523 -1.3594 Q20.1324 -2.0938 20.1324 -3.1719 Q20.1324 -4.2188 20.4918 -4.9688 Q20.8511 -5.7344 21.4918 -6.1406 Q22.1324 -6.5469 22.9761 -6.5469 ZM22.9605 -5.6875 Q22.2105 -5.6875 21.773 -5.2031 Q21.3355 -4.7188 21.2574 -3.8594 L24.523 -3.8594 Q24.523 -4.6719 24.148 -5.1719 Q23.773 -5.6875 22.9605 -5.6875 ZM30.2598 -6.5469 Q30.4473 -6.5469 30.6504 -6.5312 Q30.8692 -6.5156 31.0254 -6.4844 L30.8848 -5.5156 Q30.7286 -5.5469 30.5411 -5.5625 Q30.3536 -5.5938 30.1973 -5.5938 Q29.6973 -5.5938 29.2598 -5.3125 Q28.8379 -5.0469 28.5723 -4.5625 Q28.3223 -4.0781 28.3223 -3.4375 L28.3223 0 L27.2598 0 L27.2598 -6.4375 L28.1348 -6.4375 L28.2442 -5.25 L28.2911 -5.25 Q28.6036 -5.7812 29.0879 -6.1562 Q29.5879 -6.5469 30.2598 -6.5469 ZM33.6377 0 L31.2002 -6.4375 L32.3252 -6.4375 L33.7002 -2.6406 Q33.794 -2.375 33.9034 -2.0469 Q34.0127 -1.7344 34.0909 -1.4375 Q34.169 -1.1406 34.2159 -0.9375 L34.2627 -0.9375 Q34.3096 -1.1406 34.3877 -1.4375 Q34.4815 -1.7344 34.5909 -2.0625 Q34.7159 -2.3906 34.794 -2.6406 L36.169 -6.4375 L37.294 -6.4375 L34.8409 0 L33.6377 0 ZM38.8588 -8.8438 Q39.0931 -8.8438 39.2806 -8.6719 Q39.4681 -8.5156 39.4681 -8.1719 Q39.4681 -7.8438 39.2806 -7.6719 Q39.0931 -7.5 38.8588 -7.5 Q38.5931 -7.5 38.4056 -7.6719 Q38.2338 -7.8438 38.2338 -8.1719 Q38.2338 -8.5156 38.4056 -8.6719 Q38.5931 -8.8438 38.8588 -8.8438 ZM39.3744 -6.4375 L39.3744 0 L38.3119 0 L38.3119 -6.4375 L39.3744 -6.4375 ZM43.986 0.125 Q43.1423 0.125 42.4704 -0.2188 Q41.8142 -0.5781 41.4235 -1.3125 Q41.0485 -2.0469 41.0485 -3.1875 Q41.0485 -4.375 41.4392 -5.1094 Q41.8454 -5.8594 42.5173 -6.2031 Q43.2048 -6.5469 44.0642 -6.5469 Q44.5485 -6.5469 45.0017 -6.4375 Q45.4704 -6.3438 45.7517 -6.2031 L45.4392 -5.3281 Q45.1423 -5.4375 44.7517 -5.5312 Q44.3767 -5.625 44.0329 -5.625 Q42.1423 -5.625 42.1423 -3.1875 Q42.1423 -2.0312 42.5954 -1.4062 Q43.0642 -0.7969 43.986 -0.7969 Q44.5017 -0.7969 44.9079 -0.9062 Q45.3142 -1.0156 45.6423 -1.1562 L45.6423 -0.2344 Q45.3298 -0.0625 44.9392 0.0312 Q44.5485 0.125 43.986 0.125 ZM49.6523 -6.5469 Q50.4805 -6.5469 51.0742 -6.1875 Q51.668 -5.8281 51.9805 -5.1719 Q52.3086 -4.5312 52.3086 -3.6406 L52.3086 -3.0156 L47.9023 -3.0156 Q47.9336 -1.9219 48.4648 -1.3438 Q48.9961 -0.7812 49.9492 -0.7812 Q50.5742 -0.7812 51.043 -0.8906 Q51.5117 -1.0156 52.0273 -1.2188 L52.0273 -0.2969 Q51.5273 -0.0781 51.043 0.0156 Q50.5742 0.125 49.9023 0.125 Q48.9961 0.125 48.293 -0.25 Q47.5898 -0.625 47.1992 -1.3594 Q46.8086 -2.0938 46.8086 -3.1719 Q46.8086 -4.2188 47.168 -4.9688 Q47.5273 -5.7344 48.168 -6.1406 Q48.8086 -6.5469 49.6523 -6.5469 ZM49.6367 -5.6875 Q48.8867 -5.6875 48.4492 -5.2031 Q48.0117 -4.7188 47.9336 -3.8594 L51.1992 -3.8594 Q51.1992 -4.6719 50.8242 -5.1719 Q50.4492 -5.6875 49.6367 -5.6875 ZM53.5141 -2.3281 L58.0454 -4.2188 L53.5141 -6.3594 L53.5141 -7.2969 L59.1704 -4.4688 L59.1704 -3.875 L53.5141 -1.3906 L53.5141 -2.3281 ZM60.3782 -2.3281 L64.9094 -4.2188 L60.3782 -6.3594 L60.3782 -7.2969 L66.0344 -4.4688 L66.0344 -3.875 L60.3782 -1.3906 L60.3782 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath34);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-772.4661,249.734)"
+    ><path d="M3.6094 4.2656 Q5.2188 4.2656 6.0312 4.7343 Q6.8594 5.2031 6.8594 6.3906 Q6.8594 7.1406 6.4375 7.6406 Q6.0312 8.1406 5.2344 8.2812 L5.2344 8.3437 Q5.7656 8.4218 6.2031 8.6562 Q6.6406 8.875 6.8906 9.2968 Q7.1562 9.7187 7.1562 10.3906 Q7.1562 11.5625 6.3594 12.2031 Q5.5625 12.8281 4.1719 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.6094 4.2656 ZM3.8281 7.9062 Q4.9375 7.9062 5.3438 7.5625 Q5.75 7.2031 5.75 6.5 Q5.75 5.7968 5.25 5.5 Q4.75 5.1875 3.6562 5.1875 L2.25 5.1875 L2.25 7.9062 L3.8281 7.9062 ZM2.25 8.8125 L2.25 11.9218 L3.9688 11.9218 Q5.1094 11.9218 5.5469 11.4843 Q6 11.0312 6 10.3125 Q6 9.6406 5.5312 9.2343 Q5.0781 8.8125 3.8906 8.8125 L2.25 8.8125 ZM14.4094 9.5937 Q14.4094 11.2031 13.5969 12.0781 Q12.7844 12.9531 11.4094 12.9531 Q10.5657 12.9531 9.8938 12.5625 Q9.2219 12.1718 8.8313 11.4218 Q8.4563 10.6718 8.4563 9.5937 Q8.4563 8 9.2532 7.1406 Q10.0657 6.2812 11.4407 6.2812 Q12.3313 6.2812 12.9875 6.6718 Q13.6594 7.0625 14.0344 7.7968 Q14.4094 8.5312 14.4094 9.5937 ZM9.55 9.5937 Q9.55 10.7343 10.0032 11.4062 Q10.4563 12.0781 11.4407 12.0781 Q12.4094 12.0781 12.8625 11.4062 Q13.3157 10.7343 13.3157 9.5937 Q13.3157 8.4531 12.8625 7.8125 Q12.4094 7.1718 11.425 7.1718 Q10.4407 7.1718 9.9875 7.8125 Q9.55 8.4531 9.55 9.5937 ZM21.6695 9.5937 Q21.6695 11.2031 20.857 12.0781 Q20.0445 12.9531 18.6695 12.9531 Q17.8257 12.9531 17.1539 12.5625 Q16.482 12.1718 16.0914 11.4218 Q15.7164 10.6718 15.7164 9.5937 Q15.7164 8 16.5132 7.1406 Q17.3257 6.2812 18.7007 6.2812 Q19.5914 6.2812 20.2476 6.6718 Q20.9195 7.0625 21.2945 7.7968 Q21.6695 8.5312 21.6695 9.5937 ZM16.8101 9.5937 Q16.8101 10.7343 17.2632 11.4062 Q17.7164 12.0781 18.7007 12.0781 Q19.6695 12.0781 20.1226 11.4062 Q20.5757 10.7343 20.5757 9.5937 Q20.5757 8.4531 20.1226 7.8125 Q19.6695 7.1718 18.6851 7.1718 Q17.7007 7.1718 17.2476 7.8125 Q16.8101 8.4531 16.8101 9.5937 ZM24.3827 8.4687 Q24.3827 8.6718 24.367 8.9843 Q24.3514 9.2812 24.3358 9.5156 L24.3827 9.5156 Q24.4608 9.4218 24.6014 9.25 Q24.742 9.0625 24.8827 8.875 Q25.0389 8.6875 25.1483 8.5625 L27.2108 6.3906 L28.4452 6.3906 L25.8358 9.1406 L28.617 12.8281 L27.3514 12.8281 L25.117 9.8281 L24.3827 10.4687 L24.3827 12.8281 L23.3358 12.8281 L23.3358 3.7031 L24.3827 3.7031 L24.3827 8.4687 ZM30.2907 3.9843 Q30.5251 3.9843 30.7126 4.1562 Q30.9001 4.3125 30.9001 4.6562 Q30.9001 4.9843 30.7126 5.1562 Q30.5251 5.3281 30.2907 5.3281 Q30.0251 5.3281 29.8376 5.1562 Q29.6657 4.9843 29.6657 4.6562 Q29.6657 4.3125 29.8376 4.1562 Q30.0251 3.9843 30.2907 3.9843 ZM30.8063 6.3906 L30.8063 12.8281 L29.7438 12.8281 L29.7438 6.3906 L30.8063 6.3906 ZM35.9336 6.2812 Q37.0899 6.2812 37.668 6.8437 Q38.2617 7.3906 38.2617 8.6406 L38.2617 12.8281 L37.2305 12.8281 L37.2305 8.7187 Q37.2305 7.1718 35.7774 7.1718 Q34.7149 7.1718 34.3086 7.7656 Q33.9024 8.3593 33.9024 9.4843 L33.9024 12.8281 L32.8399 12.8281 L32.8399 6.3906 L33.6992 6.3906 L33.8555 7.2656 L33.918 7.2656 Q34.2305 6.7656 34.7774 6.5312 Q35.3242 6.2812 35.9336 6.2812 ZM42.5372 6.2812 Q43.1778 6.2812 43.6778 6.5156 Q44.1934 6.75 44.5528 7.25 L44.6153 7.25 L44.7559 6.3906 L45.5997 6.3906 L45.5997 12.9375 Q45.5997 14.3125 44.8965 15 Q44.1934 15.7031 42.7247 15.7031 Q41.3028 15.7031 40.3965 15.2968 L40.3965 14.3281 Q41.3497 14.8281 42.7872 14.8281 Q43.6153 14.8281 44.084 14.3437 Q44.5528 13.8593 44.5528 13.0156 L44.5528 12.7656 Q44.5528 12.625 44.5684 12.3593 Q44.584 12.0781 44.5997 11.9687 L44.5372 11.9687 Q43.8965 12.9531 42.5528 12.9531 Q41.3028 12.9531 40.5997 12.0781 Q39.8965 11.2031 39.8965 9.625 Q39.8965 8.0937 40.5997 7.1875 Q41.3028 6.2812 42.5372 6.2812 ZM42.6778 7.1718 Q41.8809 7.1718 41.4278 7.8125 Q40.9903 8.4531 40.9903 9.6406 Q40.9903 10.8281 41.4278 11.4531 Q41.8653 12.0781 42.709 12.0781 Q43.6778 12.0781 44.1153 11.5625 Q44.5684 11.0468 44.5684 9.875 L44.5684 9.625 Q44.5684 8.2968 44.1153 7.7343 Q43.6622 7.1718 42.6778 7.1718 ZM53.1672 12.8281 L52.136 10.1718 L48.7297 10.1718 L47.7141 12.8281 L46.6203 12.8281 L49.9641 4.2187 L50.9328 4.2187 L54.2766 12.8281 L53.1672 12.8281 ZM50.8391 6.625 Q50.8078 6.5312 50.7141 6.2812 Q50.636 6.0312 50.5578 5.7656 Q50.4797 5.4843 50.4328 5.3437 Q50.3547 5.7187 50.2453 6.0781 Q50.136 6.4218 50.0578 6.625 L49.0891 9.2187 L51.8078 9.2187 L50.8391 6.625 ZM57.7259 4.2656 Q59.3978 4.2656 60.1634 4.9218 Q60.929 5.5781 60.929 6.7812 Q60.929 7.4843 60.6165 8.1093 Q60.304 8.7187 59.554 9.1093 Q58.804 9.4843 57.5228 9.4843 L56.5384 9.4843 L56.5384 12.8281 L55.4446 12.8281 L55.4446 4.2656 L57.7259 4.2656 ZM57.6321 5.1875 L56.5384 5.1875 L56.5384 8.5625 L57.3978 8.5625 Q58.6165 8.5625 59.2103 8.1718 Q59.8196 7.7812 59.8196 6.8281 Q59.8196 6 59.2884 5.5937 Q58.7571 5.1875 57.6321 5.1875 ZM65.1266 12.8281 L62.0328 12.8281 L62.0328 12.2031 L63.0328 11.9687 L63.0328 5.125 L62.0328 4.8906 L62.0328 4.2656 L65.1266 4.2656 L65.1266 4.8906 L64.1109 5.125 L64.1109 11.9687 L65.1266 12.2031 L65.1266 12.8281 Z" style="stroke:none; clip-path:url(#clipPath35);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><line x1="-848.4004" x2="-910.6848" y1="192.7748" style="fill:none; clip-path:url(#clipPath2);" y2="192.7748"
+      /><line x1="-910.6848" x2="-910.6848" y1="192.7748" style="fill:none; clip-path:url(#clipPath2);" y2="75.1822"
+      /><line x1="-910.6848" x2="-1001.1496" y1="75.1822" style="fill:none; clip-path:url(#clipPath2);" y2="75.1822"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-922.4149,134.7162)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath36);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1526 -15 -1522 -19 -1294 -19 -1294 158 -1298 162 -1526 162"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1526 -15 -1522 -19 -1294 -19 -1294 158 -1298 162 -1526 162"
+      /><line x1="-1298" x2="-1295" y1="-15" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-18"
+      /><line x1="-1526" x2="-1298" y1="-15" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-15"
+      /><line x1="-1298" x2="-1298" y1="-15" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="162"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1505.7255,2.1924)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM24.5743 -6.5469 Q25.7618 -6.5469 26.4805 -5.7188 Q27.2149 -4.8906 27.2149 -3.2344 Q27.2149 -1.5781 26.4805 -0.7188 Q25.7618 0.125 24.5586 0.125 Q23.8243 0.125 23.3399 -0.1562 Q22.8555 -0.4375 22.5743 -0.8125 L22.4961 -0.8125 Q22.5274 -0.6094 22.543 -0.2969 Q22.5743 0.0156 22.5743 0.2344 L22.5743 2.875 L21.5118 2.875 L21.5118 -6.4375 L22.3868 -6.4375 L22.5274 -5.5625 L22.5743 -5.5625 Q22.8555 -5.9688 23.3243 -6.25 Q23.793 -6.5469 24.5743 -6.5469 ZM24.3868 -5.6562 Q23.4024 -5.6562 22.9961 -5.1094 Q22.5899 -4.5625 22.5743 -3.4375 L22.5743 -3.2344 Q22.5743 -2.0469 22.9649 -1.3906 Q23.3555 -0.75 24.4024 -0.75 Q24.9961 -0.75 25.3711 -1.0781 Q25.7461 -1.4062 25.9336 -1.9531 Q26.1211 -2.5156 26.1211 -3.2344 Q26.1211 -4.3438 25.6993 -5 Q25.2774 -5.6562 24.3868 -5.6562 ZM29.9543 -6.4375 Q29.9543 -5.9688 29.8918 -5.5469 L29.9699 -5.5469 Q30.2824 -6.0312 30.8137 -6.2812 Q31.3449 -6.5469 31.9699 -6.5469 Q33.1418 -6.5469 33.7199 -5.9844 Q34.3137 -5.4219 34.3137 -4.1875 L34.3137 0 L33.2824 0 L33.2824 -4.1094 Q33.2824 -5.6562 31.8293 -5.6562 Q30.7512 -5.6562 30.3449 -5.0469 Q29.9543 -4.4531 29.9543 -3.3281 L29.9543 0 L28.8918 0 L28.8918 -9.125 L29.9543 -9.125 L29.9543 -6.4375 ZM38.7922 -6.5469 Q39.6204 -6.5469 40.2141 -6.1875 Q40.8079 -5.8281 41.1204 -5.1719 Q41.4485 -4.5312 41.4485 -3.6406 L41.4485 -3.0156 L37.0422 -3.0156 Q37.0735 -1.9219 37.6047 -1.3438 Q38.136 -0.7812 39.0891 -0.7812 Q39.7141 -0.7812 40.1829 -0.8906 Q40.6516 -1.0156 41.1672 -1.2188 L41.1672 -0.2969 Q40.6672 -0.0781 40.1829 0.0156 Q39.7141 0.125 39.0422 0.125 Q38.136 0.125 37.4329 -0.25 Q36.7297 -0.625 36.3391 -1.3594 Q35.9485 -2.0938 35.9485 -3.1719 Q35.9485 -4.2188 36.3079 -4.9688 Q36.6672 -5.7344 37.3079 -6.1406 Q37.9485 -6.5469 38.7922 -6.5469 ZM38.7766 -5.6875 Q38.0266 -5.6875 37.5891 -5.2031 Q37.1516 -4.7188 37.0735 -3.8594 L40.3391 -3.8594 Q40.3391 -4.6719 39.9641 -5.1719 Q39.5891 -5.6875 38.7766 -5.6875 ZM50.1384 -6.5469 Q51.2322 -6.5469 51.7634 -5.9844 Q52.3103 -5.4375 52.3103 -4.1875 L52.3103 0 L51.2634 0 L51.2634 -4.1406 Q51.2634 -5.6562 49.9509 -5.6562 Q49.0134 -5.6562 48.6072 -5.1094 Q48.2165 -4.5781 48.2165 -3.5469 L48.2165 0 L47.1697 0 L47.1697 -4.1406 Q47.1697 -5.6562 45.8572 -5.6562 Q44.8728 -5.6562 44.4978 -5.0625 Q44.1384 -4.4688 44.1384 -3.3438 L44.1384 0 L43.0759 0 L43.0759 -6.4375 L43.9353 -6.4375 L44.0915 -5.5625 L44.154 -5.5625 Q44.4509 -6.0625 44.9509 -6.2969 Q45.4665 -6.5469 46.0447 -6.5469 Q47.5603 -6.5469 48.0134 -5.4688 L48.0759 -5.4688 Q48.404 -6.0312 48.9509 -6.2812 Q49.5134 -6.5469 50.1384 -6.5469 ZM56.7804 -6.5469 Q57.6085 -6.5469 58.2022 -6.1875 Q58.796 -5.8281 59.1085 -5.1719 Q59.4366 -4.5312 59.4366 -3.6406 L59.4366 -3.0156 L55.0304 -3.0156 Q55.0616 -1.9219 55.5929 -1.3438 Q56.1241 -0.7812 57.0772 -0.7812 Q57.7022 -0.7812 58.171 -0.8906 Q58.6397 -1.0156 59.1554 -1.2188 L59.1554 -0.2969 Q58.6554 -0.0781 58.171 0.0156 Q57.7022 0.125 57.0304 0.125 Q56.1241 0.125 55.421 -0.25 Q54.7179 -0.625 54.3272 -1.3594 Q53.9366 -2.0938 53.9366 -3.1719 Q53.9366 -4.2188 54.296 -4.9688 Q54.6554 -5.7344 55.296 -6.1406 Q55.9366 -6.5469 56.7804 -6.5469 ZM56.7647 -5.6875 Q56.0147 -5.6875 55.5772 -5.2031 Q55.1397 -4.7188 55.0616 -3.8594 L58.3272 -3.8594 Q58.3272 -4.6719 57.9522 -5.1719 Q57.5772 -5.6875 56.7647 -5.6875 ZM64.064 -6.5469 Q64.2515 -6.5469 64.4547 -6.5312 Q64.6734 -6.5156 64.8297 -6.4844 L64.689 -5.5156 Q64.5328 -5.5469 64.3453 -5.5625 Q64.1578 -5.5938 64.0015 -5.5938 Q63.5015 -5.5938 63.064 -5.3125 Q62.6422 -5.0469 62.3765 -4.5625 Q62.1265 -4.0781 62.1265 -3.4375 L62.1265 0 L61.064 0 L61.064 -6.4375 L61.939 -6.4375 L62.0484 -5.25 L62.0953 -5.25 Q62.4078 -5.7812 62.8922 -6.1562 Q63.3922 -6.5469 64.064 -6.5469 ZM68.4576 -6.5469 Q69.6295 -6.5469 70.192 -6.0312 Q70.7701 -5.5156 70.7701 -4.375 L70.7701 0 L69.9888 0 L69.7857 -0.9062 L69.7388 -0.9062 Q69.317 -0.3906 68.8482 -0.125 Q68.3951 0.125 67.5826 0.125 Q66.7076 0.125 66.1295 -0.3281 Q65.5513 -0.7969 65.5513 -1.7812 Q65.5513 -2.75 66.3013 -3.2656 Q67.067 -3.7969 68.6451 -3.8438 L69.7388 -3.875 L69.7388 -4.2656 Q69.7388 -5.0625 69.3795 -5.375 Q69.0357 -5.6875 68.3951 -5.6875 Q67.8951 -5.6875 67.442 -5.5312 Q66.9888 -5.3906 66.5826 -5.2031 L66.2701 -5.9844 Q66.692 -6.2188 67.2545 -6.375 Q67.8326 -6.5469 68.4576 -6.5469 ZM68.7701 -3.1094 Q67.567 -3.0625 67.0982 -2.7188 Q66.6451 -2.3906 66.6451 -1.7812 Q66.6451 -1.2344 66.9732 -0.9844 Q67.3013 -0.7344 67.817 -0.7344 Q68.6451 -0.7344 69.1763 -1.1719 Q69.7232 -1.625 69.7232 -2.5625 L69.7232 -3.1406 L68.7701 -3.1094 ZM73.8146 0 L72.7521 0 L72.7521 -9.125 L73.8146 -9.125 L73.8146 0 ZM81.2494 0.125 Q80.0463 0.125 79.3275 -0.7031 Q78.6088 -1.5469 78.6088 -3.2031 Q78.6088 -4.8594 79.3275 -5.7031 Q80.0619 -6.5469 81.265 -6.5469 Q82.015 -6.5469 82.4838 -6.2656 Q82.9525 -6 83.2494 -5.6094 L83.3275 -5.6094 Q83.3119 -5.7656 83.2807 -6.0625 Q83.2494 -6.375 83.2494 -6.5469 L83.2494 -9.125 L84.3119 -9.125 L84.3119 0 L83.4682 0 L83.3119 -0.8594 L83.2494 -0.8594 Q82.9682 -0.4531 82.4838 -0.1562 Q82.015 0.125 81.2494 0.125 ZM81.4213 -0.75 Q82.4369 -0.75 82.8432 -1.3125 Q83.265 -1.875 83.265 -3 L83.265 -3.1875 Q83.265 -4.3906 82.8744 -5.0312 Q82.4838 -5.6719 81.4057 -5.6719 Q80.5619 -5.6719 80.1244 -4.9844 Q79.7025 -4.3125 79.7025 -3.1875 Q79.7025 -2.0312 80.1244 -1.3906 Q80.5619 -0.75 81.4213 -0.75 ZM91.942 -3.2344 Q91.942 -1.625 91.1295 -0.75 Q90.317 0.125 88.942 0.125 Q88.0982 0.125 87.4263 -0.2656 Q86.7545 -0.6562 86.3638 -1.4062 Q85.9888 -2.1562 85.9888 -3.2344 Q85.9888 -4.8281 86.7857 -5.6875 Q87.5982 -6.5469 88.9732 -6.5469 Q89.8638 -6.5469 90.5201 -6.1562 Q91.192 -5.7656 91.567 -5.0312 Q91.942 -4.2969 91.942 -3.2344 ZM87.0826 -3.2344 Q87.0826 -2.0938 87.5357 -1.4219 Q87.9888 -0.75 88.9732 -0.75 Q89.942 -0.75 90.3951 -1.4219 Q90.8482 -2.0938 90.8482 -3.2344 Q90.8482 -4.375 90.3951 -5.0156 Q89.942 -5.6562 88.9576 -5.6562 Q87.9732 -5.6562 87.5201 -5.0156 Q87.0826 -4.375 87.0826 -3.2344 ZM96.1864 0.125 Q95.3427 0.125 94.6708 -0.2188 Q94.0145 -0.5781 93.6239 -1.3125 Q93.2489 -2.0469 93.2489 -3.1875 Q93.2489 -4.375 93.6395 -5.1094 Q94.0458 -5.8594 94.7177 -6.2031 Q95.4052 -6.5469 96.2645 -6.5469 Q96.7489 -6.5469 97.202 -6.4375 Q97.6708 -6.3438 97.952 -6.2031 L97.6395 -5.3281 Q97.3427 -5.4375 96.952 -5.5312 Q96.577 -5.625 96.2333 -5.625 Q94.3427 -5.625 94.3427 -3.1875 Q94.3427 -2.0312 94.7958 -1.4062 Q95.2645 -0.7969 96.1864 -0.7969 Q96.702 -0.7969 97.1083 -0.9062 Q97.5145 -1.0156 97.8427 -1.1562 L97.8427 -0.2344 Q97.5302 -0.0625 97.1395 0.0312 Q96.7489 0.125 96.1864 0.125 ZM100.4152 -4.3594 Q100.4152 -4.1562 100.3996 -3.8438 Q100.3839 -3.5469 100.3683 -3.3125 L100.4152 -3.3125 Q100.4933 -3.4062 100.6339 -3.5781 Q100.7746 -3.7656 100.9152 -3.9531 Q101.0714 -4.1406 101.1808 -4.2656 L103.2433 -6.4375 L104.4777 -6.4375 L101.8683 -3.6875 L104.6496 0 L103.3839 0 L101.1496 -3 L100.4152 -2.3594 L100.4152 0 L99.3683 0 L99.3683 -9.125 L100.4152 -9.125 L100.4152 -4.3594 ZM108.2607 -6.5469 Q109.0889 -6.5469 109.6826 -6.1875 Q110.2764 -5.8281 110.5889 -5.1719 Q110.917 -4.5312 110.917 -3.6406 L110.917 -3.0156 L106.5107 -3.0156 Q106.542 -1.9219 107.0732 -1.3438 Q107.6045 -0.7812 108.5576 -0.7812 Q109.1826 -0.7812 109.6514 -0.8906 Q110.1201 -1.0156 110.6357 -1.2188 L110.6357 -0.2969 Q110.1357 -0.0781 109.6514 0.0156 Q109.1826 0.125 108.5107 0.125 Q107.6045 0.125 106.9014 -0.25 Q106.1982 -0.625 105.8076 -1.3594 Q105.417 -2.0938 105.417 -3.1719 Q105.417 -4.2188 105.7764 -4.9688 Q106.1357 -5.7344 106.7764 -6.1406 Q107.417 -6.5469 108.2607 -6.5469 ZM108.2451 -5.6875 Q107.4951 -5.6875 107.0576 -5.2031 Q106.6201 -4.7188 106.542 -3.8594 L109.8076 -3.8594 Q109.8076 -4.6719 109.4326 -5.1719 Q109.0576 -5.6875 108.2451 -5.6875 ZM115.5444 -6.5469 Q115.7319 -6.5469 115.935 -6.5312 Q116.1538 -6.5156 116.31 -6.4844 L116.1694 -5.5156 Q116.0132 -5.5469 115.8257 -5.5625 Q115.6382 -5.5938 115.4819 -5.5938 Q114.9819 -5.5938 114.5444 -5.3125 Q114.1225 -5.0469 113.8569 -4.5625 Q113.6069 -4.0781 113.6069 -3.4375 L113.6069 0 L112.5444 0 L112.5444 -6.4375 L113.4194 -6.4375 L113.5288 -5.25 L113.5757 -5.25 Q113.8882 -5.7812 114.3725 -6.1562 Q114.8725 -6.5469 115.5444 -6.5469 ZM123.1986 0.125 Q122.3549 0.125 121.683 -0.2188 Q121.0267 -0.5781 120.6361 -1.3125 Q120.2611 -2.0469 120.2611 -3.1875 Q120.2611 -4.375 120.6517 -5.1094 Q121.058 -5.8594 121.7299 -6.2031 Q122.4174 -6.5469 123.2767 -6.5469 Q123.7611 -6.5469 124.2142 -6.4375 Q124.683 -6.3438 124.9642 -6.2031 L124.6517 -5.3281 Q124.3549 -5.4375 123.9642 -5.5312 Q123.5892 -5.625 123.2455 -5.625 Q121.3549 -5.625 121.3549 -3.1875 Q121.3549 -2.0312 121.808 -1.4062 Q122.2767 -0.7969 123.1986 -0.7969 Q123.7142 -0.7969 124.1205 -0.9062 Q124.5267 -1.0156 124.8549 -1.1562 L124.8549 -0.2344 Q124.5424 -0.0625 124.1517 0.0312 Q123.7611 0.125 123.1986 0.125 ZM131.9743 -3.2344 Q131.9743 -1.625 131.1618 -0.75 Q130.3493 0.125 128.9743 0.125 Q128.1305 0.125 127.4586 -0.2656 Q126.7868 -0.6562 126.3961 -1.4062 Q126.0211 -2.1562 126.0211 -3.2344 Q126.0211 -4.8281 126.818 -5.6875 Q127.6305 -6.5469 129.0055 -6.5469 Q129.8961 -6.5469 130.5524 -6.1562 Q131.2243 -5.7656 131.5993 -5.0312 Q131.9743 -4.2969 131.9743 -3.2344 ZM127.1149 -3.2344 Q127.1149 -2.0938 127.568 -1.4219 Q128.0211 -0.75 129.0055 -0.75 Q129.9743 -0.75 130.4274 -1.4219 Q130.8805 -2.0938 130.8805 -3.2344 Q130.8805 -4.375 130.4274 -5.0156 Q129.9743 -5.6562 128.9899 -5.6562 Q128.0055 -5.6562 127.5524 -5.0156 Q127.1149 -4.375 127.1149 -3.2344 ZM136.7343 -6.5469 Q137.8906 -6.5469 138.4687 -5.9844 Q139.0625 -5.4375 139.0625 -4.1875 L139.0625 0 L138.0312 0 L138.0312 -4.1094 Q138.0312 -5.6562 136.5781 -5.6562 Q135.5156 -5.6562 135.1093 -5.0625 Q134.7031 -4.4688 134.7031 -3.3438 L134.7031 0 L133.6406 0 L133.6406 -6.4375 L134.5 -6.4375 L134.6562 -5.5625 L134.7187 -5.5625 Q135.0312 -6.0625 135.5781 -6.2969 Q136.125 -6.5469 136.7343 -6.5469 ZM143.2129 -0.75 Q143.4473 -0.75 143.6973 -0.7812 Q143.9473 -0.8281 144.1035 -0.875 L144.1035 -0.0781 Q143.9473 0.0156 143.6348 0.0625 Q143.3223 0.125 143.0254 0.125 Q142.5254 0.125 142.0879 -0.0469 Q141.666 -0.2344 141.4004 -0.6562 Q141.1504 -1.0938 141.1504 -1.875 L141.1504 -5.6094 L140.2285 -5.6094 L140.2285 -6.125 L141.1504 -6.5469 L141.5723 -7.9062 L142.1973 -7.9062 L142.1973 -6.4375 L144.0566 -6.4375 L144.0566 -5.6094 L142.1973 -5.6094 L142.1973 -1.8906 Q142.1973 -1.3125 142.4785 -1.0312 Q142.7598 -0.75 143.2129 -0.75 ZM147.8262 -6.5469 Q148.998 -6.5469 149.5605 -6.0312 Q150.1387 -5.5156 150.1387 -4.375 L150.1387 0 L149.3574 0 L149.1543 -0.9062 L149.1074 -0.9062 Q148.6855 -0.3906 148.2168 -0.125 Q147.7637 0.125 146.9512 0.125 Q146.0762 0.125 145.498 -0.3281 Q144.9199 -0.7969 144.9199 -1.7812 Q144.9199 -2.75 145.6699 -3.2656 Q146.4355 -3.7969 148.0137 -3.8438 L149.1074 -3.875 L149.1074 -4.2656 Q149.1074 -5.0625 148.748 -5.375 Q148.4043 -5.6875 147.7637 -5.6875 Q147.2637 -5.6875 146.8105 -5.5312 Q146.3574 -5.3906 145.9512 -5.2031 L145.6387 -5.9844 Q146.0605 -6.2188 146.623 -6.375 Q147.2012 -6.5469 147.8262 -6.5469 ZM148.1387 -3.1094 Q146.9355 -3.0625 146.4668 -2.7188 Q146.0137 -2.3906 146.0137 -1.7812 Q146.0137 -1.2344 146.3418 -0.9844 Q146.6699 -0.7344 147.1855 -0.7344 Q148.0137 -0.7344 148.5449 -1.1719 Q149.0918 -1.625 149.0918 -2.5625 L149.0918 -3.1406 L148.1387 -3.1094 ZM152.6676 -8.8438 Q152.9019 -8.8438 153.0894 -8.6719 Q153.2769 -8.5156 153.2769 -8.1719 Q153.2769 -7.8438 153.0894 -7.6719 Q152.9019 -7.5 152.6676 -7.5 Q152.4019 -7.5 152.2144 -7.6719 Q152.0426 -7.8438 152.0426 -8.1719 Q152.0426 -8.5156 152.2144 -8.6719 Q152.4019 -8.8438 152.6676 -8.8438 ZM153.1832 -6.4375 L153.1832 0 L152.1207 0 L152.1207 -6.4375 L153.1832 -6.4375 ZM158.3105 -6.5469 Q159.4667 -6.5469 160.0448 -5.9844 Q160.6386 -5.4375 160.6386 -4.1875 L160.6386 0 L159.6073 0 L159.6073 -4.1094 Q159.6073 -5.6562 158.1542 -5.6562 Q157.0917 -5.6562 156.6855 -5.0625 Q156.2792 -4.4688 156.2792 -3.3438 L156.2792 0 L155.2167 0 L155.2167 -6.4375 L156.0761 -6.4375 L156.2323 -5.5625 L156.2948 -5.5625 Q156.6073 -6.0625 157.1542 -6.2969 Q157.7011 -6.5469 158.3105 -6.5469 ZM165.1171 -6.5469 Q165.9453 -6.5469 166.539 -6.1875 Q167.1328 -5.8281 167.4453 -5.1719 Q167.7734 -4.5312 167.7734 -3.6406 L167.7734 -3.0156 L163.3671 -3.0156 Q163.3984 -1.9219 163.9296 -1.3438 Q164.4609 -0.7812 165.414 -0.7812 Q166.039 -0.7812 166.5078 -0.8906 Q166.9765 -1.0156 167.4921 -1.2188 L167.4921 -0.2969 Q166.9921 -0.0781 166.5078 0.0156 Q166.039 0.125 165.3671 0.125 Q164.4609 0.125 163.7578 -0.25 Q163.0546 -0.625 162.664 -1.3594 Q162.2734 -2.0938 162.2734 -3.1719 Q162.2734 -4.2188 162.6328 -4.9688 Q162.9921 -5.7344 163.6328 -6.1406 Q164.2734 -6.5469 165.1171 -6.5469 ZM165.1015 -5.6875 Q164.3515 -5.6875 163.914 -5.2031 Q163.4765 -4.7188 163.3984 -3.8594 L166.664 -3.8594 Q166.664 -4.6719 166.289 -5.1719 Q165.914 -5.6875 165.1015 -5.6875 ZM172.4008 -6.5469 Q172.5883 -6.5469 172.7914 -6.5312 Q173.0102 -6.5156 173.1664 -6.4844 L173.0258 -5.5156 Q172.8696 -5.5469 172.6821 -5.5625 Q172.4946 -5.5938 172.3383 -5.5938 Q171.8383 -5.5938 171.4008 -5.3125 Q170.9789 -5.0469 170.7133 -4.5625 Q170.4633 -4.0781 170.4633 -3.4375 L170.4633 0 L169.4008 0 L169.4008 -6.4375 L170.2758 -6.4375 L170.3852 -5.25 L170.4321 -5.25 Q170.7446 -5.7812 171.2289 -6.1562 Q171.7289 -6.5469 172.4008 -6.5469 ZM173.935 -2.3281 L178.4662 -4.2188 L173.935 -6.3594 L173.935 -7.2969 L179.5912 -4.4688 L179.5912 -3.875 L173.935 -1.3906 L173.935 -2.3281 ZM180.799 -2.3281 L185.3303 -4.2188 L180.799 -6.3594 L180.799 -7.2969 L186.4553 -4.4688 L186.4553 -3.875 L180.799 -1.3906 L180.799 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath37);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1467.5,5.3441)"
+    ><path d="M4.8906 8.2968 L7.8438 8.2968 L7.8438 12.5 Q7.1562 12.7343 6.4375 12.8437 Q5.7344 12.9531 4.8438 12.9531 Q3.5 12.9531 2.5938 12.4218 Q1.6875 11.875 1.2031 10.8906 Q0.7344 9.9062 0.7344 8.5468 Q0.7344 7.2031 1.25 6.2187 Q1.7812 5.2343 2.7656 4.6875 Q3.7656 4.1406 5.1719 4.1406 Q5.8906 4.1406 6.5312 4.2812 Q7.1719 4.4062 7.7344 4.6406 L7.3125 5.5781 Q6.8594 5.375 6.2812 5.2343 Q5.7188 5.0937 5.1094 5.0937 Q3.5781 5.0937 2.7188 6.0156 Q1.8594 6.9375 1.8594 8.5468 Q1.8594 9.5625 2.1875 10.3593 Q2.5156 11.1406 3.2188 11.5781 Q3.9375 12.0156 5.0938 12.0156 Q5.6562 12.0156 6.0469 11.9531 Q6.4375 11.8906 6.7656 11.8125 L6.7656 9.2656 L4.8906 9.2656 L4.8906 8.2968 ZM12.2361 6.2812 Q13.0642 6.2812 13.6579 6.6406 Q14.2517 7 14.5642 7.6562 Q14.8923 8.2968 14.8923 9.1875 L14.8923 9.8125 L10.4861 9.8125 Q10.5173 10.9062 11.0486 11.4843 Q11.5798 12.0468 12.5329 12.0468 Q13.1579 12.0468 13.6267 11.9375 Q14.0954 11.8125 14.6111 11.6093 L14.6111 12.5312 Q14.1111 12.75 13.6267 12.8437 Q13.1579 12.9531 12.4861 12.9531 Q11.5798 12.9531 10.8767 12.5781 Q10.1736 12.2031 9.7829 11.4687 Q9.3923 10.7343 9.3923 9.6562 Q9.3923 8.6093 9.7517 7.8593 Q10.1111 7.0937 10.7517 6.6875 Q11.3923 6.2812 12.2361 6.2812 ZM12.2204 7.1406 Q11.4704 7.1406 11.0329 7.625 Q10.5954 8.1093 10.5173 8.9687 L13.7829 8.9687 Q13.7829 8.1562 13.4079 7.6562 Q13.0329 7.1406 12.2204 7.1406 ZM19.6135 6.2812 Q20.7697 6.2812 21.3479 6.8437 Q21.9416 7.3906 21.9416 8.6406 L21.9416 12.8281 L20.9104 12.8281 L20.9104 8.7187 Q20.9104 7.1718 19.4572 7.1718 Q18.3947 7.1718 17.9885 7.7656 Q17.5822 8.3593 17.5822 9.4843 L17.5822 12.8281 L16.5197 12.8281 L16.5197 6.3906 L17.3791 6.3906 L17.5354 7.2656 L17.5979 7.2656 Q17.9104 6.7656 18.4572 6.5312 Q19.0041 6.2812 19.6135 6.2812 ZM26.4202 6.2812 Q27.2483 6.2812 27.842 6.6406 Q28.4358 7 28.7483 7.6562 Q29.0764 8.2968 29.0764 9.1875 L29.0764 9.8125 L24.6702 9.8125 Q24.7014 10.9062 25.2327 11.4843 Q25.7639 12.0468 26.717 12.0468 Q27.342 12.0468 27.8108 11.9375 Q28.2795 11.8125 28.7952 11.6093 L28.7952 12.5312 Q28.2952 12.75 27.8108 12.8437 Q27.342 12.9531 26.6702 12.9531 Q25.7639 12.9531 25.0608 12.5781 Q24.3577 12.2031 23.967 11.4687 Q23.5764 10.7343 23.5764 9.6562 Q23.5764 8.6093 23.9358 7.8593 Q24.2952 7.0937 24.9358 6.6875 Q25.5764 6.2812 26.4202 6.2812 ZM26.4045 7.1406 Q25.6545 7.1406 25.217 7.625 Q24.7795 8.1093 24.7014 8.9687 L27.967 8.9687 Q27.967 8.1562 27.592 7.6562 Q27.217 7.1406 26.4045 7.1406 ZM33.7038 6.2812 Q33.8913 6.2812 34.0945 6.2968 Q34.3132 6.3125 34.4695 6.3437 L34.3288 7.3125 Q34.1726 7.2812 33.9851 7.2656 Q33.7976 7.2343 33.6413 7.2343 Q33.1413 7.2343 32.7038 7.5156 Q32.282 7.7812 32.0163 8.2656 Q31.7663 8.75 31.7663 9.3906 L31.7663 12.8281 L30.7038 12.8281 L30.7038 6.3906 L31.5788 6.3906 L31.6882 7.5781 L31.7351 7.5781 Q32.0476 7.0468 32.532 6.6718 Q33.032 6.2812 33.7038 6.2812 ZM38.0974 6.2812 Q39.2693 6.2812 39.8318 6.7968 Q40.4099 7.3125 40.4099 8.4531 L40.4099 12.8281 L39.6286 12.8281 L39.4255 11.9218 L39.3786 11.9218 Q38.9568 12.4375 38.488 12.7031 Q38.0349 12.9531 37.2224 12.9531 Q36.3474 12.9531 35.7693 12.5 Q35.1911 12.0312 35.1911 11.0468 Q35.1911 10.0781 35.9411 9.5625 Q36.7068 9.0312 38.2849 8.9843 L39.3786 8.9531 L39.3786 8.5625 Q39.3786 7.7656 39.0193 7.4531 Q38.6755 7.1406 38.0349 7.1406 Q37.5349 7.1406 37.0818 7.2968 Q36.6286 7.4375 36.2224 7.625 L35.9099 6.8437 Q36.3318 6.6093 36.8943 6.4531 Q37.4724 6.2812 38.0974 6.2812 ZM38.4099 9.7187 Q37.2068 9.7656 36.738 10.1093 Q36.2849 10.4375 36.2849 11.0468 Q36.2849 11.5937 36.613 11.8437 Q36.9411 12.0937 37.4568 12.0937 Q38.2849 12.0937 38.8161 11.6562 Q39.363 11.2031 39.363 10.2656 L39.363 9.6875 L38.4099 9.7187 ZM44.5482 12.0781 Q44.7825 12.0781 45.0325 12.0468 Q45.2825 12 45.4388 11.9531 L45.4388 12.75 Q45.2825 12.8437 44.97 12.8906 Q44.6575 12.9531 44.3607 12.9531 Q43.8607 12.9531 43.4232 12.7812 Q43.0013 12.5937 42.7357 12.1718 Q42.4857 11.7343 42.4857 10.9531 L42.4857 7.2187 L41.5638 7.2187 L41.5638 6.7031 L42.4857 6.2812 L42.9075 4.9218 L43.5325 4.9218 L43.5325 6.3906 L45.3919 6.3906 L45.3919 7.2187 L43.5325 7.2187 L43.5325 10.9375 Q43.5325 11.5156 43.8138 11.7968 Q44.095 12.0781 44.5482 12.0781 ZM49.2083 6.2812 Q50.0365 6.2812 50.6302 6.6406 Q51.224 7 51.5365 7.6562 Q51.8646 8.2968 51.8646 9.1875 L51.8646 9.8125 L47.4583 9.8125 Q47.4896 10.9062 48.0208 11.4843 Q48.5521 12.0468 49.5052 12.0468 Q50.1302 12.0468 50.599 11.9375 Q51.0677 11.8125 51.5833 11.6093 L51.5833 12.5312 Q51.0833 12.75 50.599 12.8437 Q50.1302 12.9531 49.4583 12.9531 Q48.5521 12.9531 47.849 12.5781 Q47.1458 12.2031 46.7552 11.4687 Q46.3646 10.7343 46.3646 9.6562 Q46.3646 8.6093 46.724 7.8593 Q47.0833 7.0937 47.724 6.6875 Q48.3646 6.2812 49.2083 6.2812 ZM49.1927 7.1406 Q48.4427 7.1406 48.0052 7.625 Q47.5677 8.1093 47.4896 8.9687 L50.7552 8.9687 Q50.7552 8.1562 50.3802 7.6562 Q50.0052 7.1406 49.1927 7.1406 ZM62.1433 12.8281 L61.112 10.1718 L57.7058 10.1718 L56.6902 12.8281 L55.5964 12.8281 L58.9402 4.2187 L59.9089 4.2187 L63.2527 12.8281 L62.1433 12.8281 ZM59.8152 6.625 Q59.7839 6.5312 59.6902 6.2812 Q59.612 6.0312 59.5339 5.7656 Q59.4558 5.4843 59.4089 5.3437 Q59.3308 5.7187 59.2214 6.0781 Q59.112 6.4218 59.0339 6.625 L58.0652 9.2187 L60.7839 9.2187 L59.8152 6.625 ZM66.702 4.2656 Q68.3738 4.2656 69.1395 4.9218 Q69.9051 5.5781 69.9051 6.7812 Q69.9051 7.4843 69.5926 8.1093 Q69.2801 8.7187 68.5301 9.1093 Q67.7801 9.4843 66.4988 9.4843 L65.5145 9.4843 L65.5145 12.8281 L64.4207 12.8281 L64.4207 4.2656 L66.702 4.2656 ZM66.6082 5.1875 L65.5145 5.1875 L65.5145 8.5625 L66.3738 8.5625 Q67.5926 8.5625 68.1863 8.1718 Q68.7957 7.7812 68.7957 6.8281 Q68.7957 6 68.2645 5.5937 Q67.7332 5.1875 66.6082 5.1875 ZM74.1026 12.8281 L71.0089 12.8281 L71.0089 12.2031 L72.0089 11.9687 L72.0089 5.125 L71.0089 4.8906 L71.0089 4.2656 L74.1026 4.2656 L74.1026 4.8906 L73.087 5.125 L73.087 11.9687 L74.1026 12.2031 L74.1026 12.8281 ZM79.7957 11.0468 Q79.7957 11.9843 79.0925 12.4687 Q78.405 12.9531 77.2332 12.9531 Q76.5613 12.9531 76.0769 12.8437 Q75.5925 12.7343 75.2175 12.5468 L75.2175 11.5781 Q75.6082 11.7656 76.1394 11.9375 Q76.6863 12.0937 77.2488 12.0937 Q78.0613 12.0937 78.4207 11.8437 Q78.78 11.5781 78.78 11.1406 Q78.78 10.9062 78.6394 10.7187 Q78.5144 10.5312 78.1707 10.3437 Q77.8269 10.1406 77.2019 9.9062 Q76.5769 9.6562 76.1238 9.4218 Q75.6863 9.1875 75.4363 8.8593 Q75.2019 8.5156 75.2019 7.9843 Q75.2019 7.1718 75.8582 6.7343 Q76.53 6.2812 77.6238 6.2812 Q78.2019 6.2812 78.7019 6.3906 Q79.2175 6.5 79.6707 6.7031 L79.3113 7.5468 Q78.905 7.375 78.4519 7.2656 Q78.0144 7.1406 77.5457 7.1406 Q76.8894 7.1406 76.5457 7.3593 Q76.2175 7.5625 76.2175 7.9218 Q76.2175 8.1875 76.3738 8.375 Q76.53 8.5625 76.8894 8.7343 Q77.2488 8.9062 77.8738 9.1406 Q78.4832 9.375 78.905 9.625 Q79.3425 9.8593 79.5613 10.2031 Q79.7957 10.5312 79.7957 11.0468 ZM91.4919 8.4531 Q91.4919 10.625 90.3044 11.7343 Q89.1169 12.8281 87.0075 12.8281 L84.6169 12.8281 L84.6169 4.2656 L87.2575 4.2656 Q88.5544 4.2656 89.5075 4.75 Q90.4606 5.2187 90.9762 6.1562 Q91.4919 7.0781 91.4919 8.4531 ZM90.3512 8.5 Q90.3512 6.7812 89.5075 5.9843 Q88.6637 5.1875 87.1012 5.1875 L85.7106 5.1875 L85.7106 11.9062 L86.8669 11.9062 Q90.3512 11.9062 90.3512 8.5 ZM95.6738 6.2812 Q96.8457 6.2812 97.4082 6.7968 Q97.9863 7.3125 97.9863 8.4531 L97.9863 12.8281 L97.205 12.8281 L97.0019 11.9218 L96.955 11.9218 Q96.5332 12.4375 96.0644 12.7031 Q95.6113 12.9531 94.7988 12.9531 Q93.9238 12.9531 93.3457 12.5 Q92.7675 12.0312 92.7675 11.0468 Q92.7675 10.0781 93.5175 9.5625 Q94.2832 9.0312 95.8613 8.9843 L96.955 8.9531 L96.955 8.5625 Q96.955 7.7656 96.5957 7.4531 Q96.2519 7.1406 95.6113 7.1406 Q95.1113 7.1406 94.6582 7.2968 Q94.205 7.4375 93.7988 7.625 L93.4863 6.8437 Q93.9082 6.6093 94.4707 6.4531 Q95.0488 6.2812 95.6738 6.2812 ZM95.9863 9.7187 Q94.7832 9.7656 94.3144 10.1093 Q93.8613 10.4375 93.8613 11.0468 Q93.8613 11.5937 94.1894 11.8437 Q94.5175 12.0937 95.0332 12.0937 Q95.8613 12.0937 96.3925 11.6562 Q96.9394 11.2031 96.9394 10.2656 L96.9394 9.6875 L95.9863 9.7187 ZM102.1246 12.0781 Q102.359 12.0781 102.609 12.0468 Q102.859 12 103.0152 11.9531 L103.0152 12.75 Q102.859 12.8437 102.5465 12.8906 Q102.234 12.9531 101.9371 12.9531 Q101.4371 12.9531 100.9996 12.7812 Q100.5777 12.5937 100.3121 12.1718 Q100.0621 11.7343 100.0621 10.9531 L100.0621 7.2187 L99.1402 7.2187 L99.1402 6.7031 L100.0621 6.2812 L100.484 4.9218 L101.109 4.9218 L101.109 6.3906 L102.9683 6.3906 L102.9683 7.2187 L101.109 7.2187 L101.109 10.9375 Q101.109 11.5156 101.3902 11.7968 Q101.6715 12.0781 102.1246 12.0781 ZM106.7379 6.2812 Q107.9097 6.2812 108.4722 6.7968 Q109.0504 7.3125 109.0504 8.4531 L109.0504 12.8281 L108.2691 12.8281 L108.066 11.9218 L108.0191 11.9218 Q107.5972 12.4375 107.1285 12.7031 Q106.6754 12.9531 105.8629 12.9531 Q104.9879 12.9531 104.4097 12.5 Q103.8316 12.0312 103.8316 11.0468 Q103.8316 10.0781 104.5816 9.5625 Q105.3472 9.0312 106.9254 8.9843 L108.0191 8.9531 L108.0191 8.5625 Q108.0191 7.7656 107.6597 7.4531 Q107.316 7.1406 106.6754 7.1406 Q106.1754 7.1406 105.7222 7.2968 Q105.2691 7.4375 104.8629 7.625 L104.5504 6.8437 Q104.9722 6.6093 105.5347 6.4531 Q106.1129 6.2812 106.7379 6.2812 ZM107.0504 9.7187 Q105.8472 9.7656 105.3785 10.1093 Q104.9254 10.4375 104.9254 11.0468 Q104.9254 11.5937 105.2535 11.8437 Q105.5816 12.0937 106.0972 12.0937 Q106.9254 12.0937 107.4566 11.6562 Q108.0035 11.2031 108.0035 10.2656 L108.0035 9.6875 L107.0504 9.7187 Z" style="stroke:none; clip-path:url(#clipPath38);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -503 -349 -499 -353 -270 -353 -270 -188 -274 -184 -503 -184"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -503 -349 -499 -353 -270 -353 -270 -188 -274 -184 -503 -184"
+      /><line x1="-274" x2="-271" y1="-349" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-352"
+      /><line x1="-503" x2="-274" y1="-349" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-349"
+      /><line x1="-274" x2="-274" y1="-349" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-184"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-449.8399,-331.2361)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM27.7175 -3.2344 Q27.7175 -1.625 26.905 -0.75 Q26.0925 0.125 24.7175 0.125 Q23.8738 0.125 23.2019 -0.2656 Q22.53 -0.6562 22.1394 -1.4062 Q21.7644 -2.1562 21.7644 -3.2344 Q21.7644 -4.8281 22.5613 -5.6875 Q23.3738 -6.5469 24.7488 -6.5469 Q25.6394 -6.5469 26.2956 -6.1562 Q26.9675 -5.7656 27.3425 -5.0312 Q27.7175 -4.2969 27.7175 -3.2344 ZM22.8581 -3.2344 Q22.8581 -2.0938 23.3113 -1.4219 Q23.7644 -0.75 24.7488 -0.75 Q25.7175 -0.75 26.1706 -1.4219 Q26.6238 -2.0938 26.6238 -3.2344 Q26.6238 -4.375 26.1706 -5.0156 Q25.7175 -5.6562 24.7331 -5.6562 Q23.7488 -5.6562 23.2956 -5.0156 Q22.8581 -4.375 22.8581 -3.2344 ZM31.9619 0.125 Q31.1182 0.125 30.4463 -0.2188 Q29.7901 -0.5781 29.3994 -1.3125 Q29.0244 -2.0469 29.0244 -3.1875 Q29.0244 -4.375 29.4151 -5.1094 Q29.8213 -5.8594 30.4932 -6.2031 Q31.1807 -6.5469 32.0401 -6.5469 Q32.5244 -6.5469 32.9776 -6.4375 Q33.4463 -6.3438 33.7276 -6.2031 L33.4151 -5.3281 Q33.1182 -5.4375 32.7276 -5.5312 Q32.3526 -5.625 32.0088 -5.625 Q30.1182 -5.625 30.1182 -3.1875 Q30.1182 -2.0312 30.5713 -1.4062 Q31.0401 -0.7969 31.9619 -0.7969 Q32.4776 -0.7969 32.8838 -0.9062 Q33.2901 -1.0156 33.6182 -1.1562 L33.6182 -0.2344 Q33.3057 -0.0625 32.9151 0.0312 Q32.5244 0.125 31.9619 0.125 ZM36.1907 -4.3594 Q36.1907 -4.1562 36.1751 -3.8438 Q36.1595 -3.5469 36.1439 -3.3125 L36.1907 -3.3125 Q36.2689 -3.4062 36.4095 -3.5781 Q36.5501 -3.7656 36.6907 -3.9531 Q36.847 -4.1406 36.9564 -4.2656 L39.0189 -6.4375 L40.2532 -6.4375 L37.6439 -3.6875 L40.4251 0 L39.1595 0 L36.9251 -3 L36.1907 -2.3594 L36.1907 0 L35.1439 0 L35.1439 -9.125 L36.1907 -9.125 L36.1907 -4.3594 ZM44.0363 -6.5469 Q44.8644 -6.5469 45.4582 -6.1875 Q46.0519 -5.8281 46.3644 -5.1719 Q46.6925 -4.5312 46.6925 -3.6406 L46.6925 -3.0156 L42.2863 -3.0156 Q42.3175 -1.9219 42.8488 -1.3438 Q43.38 -0.7812 44.3332 -0.7812 Q44.9582 -0.7812 45.4269 -0.8906 Q45.8957 -1.0156 46.4113 -1.2188 L46.4113 -0.2969 Q45.9113 -0.0781 45.4269 0.0156 Q44.9582 0.125 44.2863 0.125 Q43.38 0.125 42.6769 -0.25 Q41.9738 -0.625 41.5832 -1.3594 Q41.1925 -2.0938 41.1925 -3.1719 Q41.1925 -4.2188 41.5519 -4.9688 Q41.9113 -5.7344 42.5519 -6.1406 Q43.1925 -6.5469 44.0363 -6.5469 ZM44.0207 -5.6875 Q43.2707 -5.6875 42.8332 -5.2031 Q42.3957 -4.7188 42.3175 -3.8594 L45.5832 -3.8594 Q45.5832 -4.6719 45.2082 -5.1719 Q44.8332 -5.6875 44.0207 -5.6875 ZM51.32 -6.5469 Q51.5075 -6.5469 51.7106 -6.5312 Q51.9293 -6.5156 52.0856 -6.4844 L51.945 -5.5156 Q51.7887 -5.5469 51.6012 -5.5625 Q51.4137 -5.5938 51.2575 -5.5938 Q50.7575 -5.5938 50.32 -5.3125 Q49.8981 -5.0469 49.6325 -4.5625 Q49.3825 -4.0781 49.3825 -3.4375 L49.3825 0 L48.32 0 L48.32 -6.4375 L49.195 -6.4375 L49.3043 -5.25 L49.3512 -5.25 Q49.6637 -5.7812 50.1481 -6.1562 Q50.6481 -6.5469 51.32 -6.5469 ZM58.9742 0.125 Q58.1304 0.125 57.4585 -0.2188 Q56.8023 -0.5781 56.4117 -1.3125 Q56.0367 -2.0469 56.0367 -3.1875 Q56.0367 -4.375 56.4273 -5.1094 Q56.8335 -5.8594 57.5054 -6.2031 Q58.1929 -6.5469 59.0523 -6.5469 Q59.5367 -6.5469 59.9898 -6.4375 Q60.4585 -6.3438 60.7398 -6.2031 L60.4273 -5.3281 Q60.1304 -5.4375 59.7398 -5.5312 Q59.3648 -5.625 59.021 -5.625 Q57.1304 -5.625 57.1304 -3.1875 Q57.1304 -2.0312 57.5835 -1.4062 Q58.0523 -0.7969 58.9742 -0.7969 Q59.4898 -0.7969 59.896 -0.9062 Q60.3023 -1.0156 60.6304 -1.1562 L60.6304 -0.2344 Q60.3179 -0.0625 59.9273 0.0312 Q59.5367 0.125 58.9742 0.125 ZM67.7498 -3.2344 Q67.7498 -1.625 66.9373 -0.75 Q66.1248 0.125 64.7498 0.125 Q63.9061 0.125 63.2342 -0.2656 Q62.5623 -0.6562 62.1717 -1.4062 Q61.7967 -2.1562 61.7967 -3.2344 Q61.7967 -4.8281 62.5936 -5.6875 Q63.4061 -6.5469 64.7811 -6.5469 Q65.6717 -6.5469 66.3279 -6.1562 Q66.9998 -5.7656 67.3748 -5.0312 Q67.7498 -4.2969 67.7498 -3.2344 ZM62.8904 -3.2344 Q62.8904 -2.0938 63.3436 -1.4219 Q63.7967 -0.75 64.7811 -0.75 Q65.7498 -0.75 66.2029 -1.4219 Q66.6561 -2.0938 66.6561 -3.2344 Q66.6561 -4.375 66.2029 -5.0156 Q65.7498 -5.6562 64.7654 -5.6562 Q63.7811 -5.6562 63.3279 -5.0156 Q62.8904 -4.375 62.8904 -3.2344 ZM72.5099 -6.5469 Q73.6661 -6.5469 74.2442 -5.9844 Q74.838 -5.4375 74.838 -4.1875 L74.838 0 L73.8067 0 L73.8067 -4.1094 Q73.8067 -5.6562 72.3536 -5.6562 Q71.2911 -5.6562 70.8849 -5.0625 Q70.4786 -4.4688 70.4786 -3.3438 L70.4786 0 L69.4161 0 L69.4161 -6.4375 L70.2755 -6.4375 L70.4317 -5.5625 L70.4942 -5.5625 Q70.8067 -6.0625 71.3536 -6.2969 Q71.9005 -6.5469 72.5099 -6.5469 ZM78.9884 -0.75 Q79.2228 -0.75 79.4728 -0.7812 Q79.7228 -0.8281 79.879 -0.875 L79.879 -0.0781 Q79.7228 0.0156 79.4103 0.0625 Q79.0978 0.125 78.8009 0.125 Q78.3009 0.125 77.8634 -0.0469 Q77.4415 -0.2344 77.1759 -0.6562 Q76.9259 -1.0938 76.9259 -1.875 L76.9259 -5.6094 L76.004 -5.6094 L76.004 -6.125 L76.9259 -6.5469 L77.3478 -7.9062 L77.9728 -7.9062 L77.9728 -6.4375 L79.8322 -6.4375 L79.8322 -5.6094 L77.9728 -5.6094 L77.9728 -1.8906 Q77.9728 -1.3125 78.254 -1.0312 Q78.5353 -0.75 78.9884 -0.75 ZM83.6017 -6.5469 Q84.7736 -6.5469 85.3361 -6.0312 Q85.9142 -5.5156 85.9142 -4.375 L85.9142 0 L85.1329 0 L84.9298 -0.9062 L84.8829 -0.9062 Q84.4611 -0.3906 83.9923 -0.125 Q83.5392 0.125 82.7267 0.125 Q81.8517 0.125 81.2736 -0.3281 Q80.6954 -0.7969 80.6954 -1.7812 Q80.6954 -2.75 81.4454 -3.2656 Q82.2111 -3.7969 83.7892 -3.8438 L84.8829 -3.875 L84.8829 -4.2656 Q84.8829 -5.0625 84.5236 -5.375 Q84.1798 -5.6875 83.5392 -5.6875 Q83.0392 -5.6875 82.5861 -5.5312 Q82.1329 -5.3906 81.7267 -5.2031 L81.4142 -5.9844 Q81.8361 -6.2188 82.3986 -6.375 Q82.9767 -6.5469 83.6017 -6.5469 ZM83.9142 -3.1094 Q82.7111 -3.0625 82.2423 -2.7188 Q81.7892 -2.3906 81.7892 -1.7812 Q81.7892 -1.2344 82.1173 -0.9844 Q82.4454 -0.7344 82.9611 -0.7344 Q83.7892 -0.7344 84.3204 -1.1719 Q84.8673 -1.625 84.8673 -2.5625 L84.8673 -3.1406 L83.9142 -3.1094 ZM88.4431 -8.8438 Q88.6775 -8.8438 88.865 -8.6719 Q89.0525 -8.5156 89.0525 -8.1719 Q89.0525 -7.8438 88.865 -7.6719 Q88.6775 -7.5 88.4431 -7.5 Q88.1775 -7.5 87.99 -7.6719 Q87.8181 -7.8438 87.8181 -8.1719 Q87.8181 -8.5156 87.99 -8.6719 Q88.1775 -8.8438 88.4431 -8.8438 ZM88.9587 -6.4375 L88.9587 0 L87.8962 0 L87.8962 -6.4375 L88.9587 -6.4375 ZM94.086 -6.5469 Q95.2423 -6.5469 95.8204 -5.9844 Q96.4141 -5.4375 96.4141 -4.1875 L96.4141 0 L95.3829 0 L95.3829 -4.1094 Q95.3829 -5.6562 93.9298 -5.6562 Q92.8673 -5.6562 92.461 -5.0625 Q92.0548 -4.4688 92.0548 -3.3438 L92.0548 0 L90.9923 0 L90.9923 -6.4375 L91.8516 -6.4375 L92.0079 -5.5625 L92.0704 -5.5625 Q92.3829 -6.0625 92.9298 -6.2969 Q93.4766 -6.5469 94.086 -6.5469 ZM100.8927 -6.5469 Q101.7208 -6.5469 102.3146 -6.1875 Q102.9083 -5.8281 103.2208 -5.1719 Q103.5489 -4.5312 103.5489 -3.6406 L103.5489 -3.0156 L99.1427 -3.0156 Q99.1739 -1.9219 99.7052 -1.3438 Q100.2364 -0.7812 101.1896 -0.7812 Q101.8146 -0.7812 102.2833 -0.8906 Q102.7521 -1.0156 103.2677 -1.2188 L103.2677 -0.2969 Q102.7677 -0.0781 102.2833 0.0156 Q101.8146 0.125 101.1427 0.125 Q100.2364 0.125 99.5333 -0.25 Q98.8302 -0.625 98.4396 -1.3594 Q98.0489 -2.0938 98.0489 -3.1719 Q98.0489 -4.2188 98.4083 -4.9688 Q98.7677 -5.7344 99.4083 -6.1406 Q100.0489 -6.5469 100.8927 -6.5469 ZM100.8771 -5.6875 Q100.1271 -5.6875 99.6896 -5.2031 Q99.2521 -4.7188 99.1739 -3.8594 L102.4396 -3.8594 Q102.4396 -4.6719 102.0646 -5.1719 Q101.6896 -5.6875 100.8771 -5.6875 ZM108.1764 -6.5469 Q108.3639 -6.5469 108.567 -6.5312 Q108.7857 -6.5156 108.942 -6.4844 L108.8014 -5.5156 Q108.6451 -5.5469 108.4576 -5.5625 Q108.2701 -5.5938 108.1139 -5.5938 Q107.6139 -5.5938 107.1764 -5.3125 Q106.7545 -5.0469 106.4889 -4.5625 Q106.2389 -4.0781 106.2389 -3.4375 L106.2389 0 L105.1764 0 L105.1764 -6.4375 L106.0514 -6.4375 L106.1607 -5.25 L106.2076 -5.25 Q106.5201 -5.7812 107.0045 -6.1562 Q107.5045 -6.5469 108.1764 -6.5469 ZM109.7105 -2.3281 L114.2418 -4.2188 L109.7105 -6.3594 L109.7105 -7.2969 L115.3668 -4.4688 L115.3668 -3.875 L109.7105 -1.3906 L109.7105 -2.3281 ZM116.5746 -2.3281 L121.1058 -4.2188 L116.5746 -6.3594 L116.5746 -7.2969 L122.2308 -4.4688 L122.2308 -3.875 L116.5746 -1.3906 L116.5746 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath39);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-429.5,-328.6559)"
+    ><path d="M7.6875 9.7968 Q7.6875 10.6875 7.3125 11.4062 Q6.9531 12.125 6.2188 12.5468 Q5.4844 12.9531 4.3438 12.9531 Q2.75 12.9531 1.9062 12.0781 Q1.0781 11.2031 1.0781 9.7812 L1.0781 4.2656 L2.1562 4.2656 L2.1562 9.8125 Q2.1562 10.8593 2.7188 11.4375 Q3.2812 12.0156 4.4062 12.0156 Q5.5625 12.0156 6.0781 11.4062 Q6.6094 10.7812 6.6094 9.7968 L6.6094 4.2656 L7.6875 4.2656 L7.6875 9.7968 ZM13.9752 11.0468 Q13.9752 11.9843 13.2721 12.4687 Q12.5846 12.9531 11.4127 12.9531 Q10.7408 12.9531 10.2564 12.8437 Q9.7721 12.7343 9.3971 12.5468 L9.3971 11.5781 Q9.7877 11.7656 10.3189 11.9375 Q10.8658 12.0937 11.4283 12.0937 Q12.2408 12.0937 12.6002 11.8437 Q12.9596 11.5781 12.9596 11.1406 Q12.9596 10.9062 12.8189 10.7187 Q12.6939 10.5312 12.3502 10.3437 Q12.0064 10.1406 11.3814 9.9062 Q10.7564 9.6562 10.3033 9.4218 Q9.8658 9.1875 9.6158 8.8593 Q9.3814 8.5156 9.3814 7.9843 Q9.3814 7.1718 10.0377 6.7343 Q10.7096 6.2812 11.8033 6.2812 Q12.3814 6.2812 12.8814 6.3906 Q13.3971 6.5 13.8502 6.7031 L13.4908 7.5468 Q13.0846 7.375 12.6314 7.2656 Q12.1939 7.1406 11.7252 7.1406 Q11.0689 7.1406 10.7252 7.3593 Q10.3971 7.5625 10.3971 7.9218 Q10.3971 8.1875 10.5533 8.375 Q10.7096 8.5625 11.0689 8.7343 Q11.4283 8.9062 12.0533 9.1406 Q12.6627 9.375 13.0846 9.625 Q13.5221 9.8593 13.7408 10.2031 Q13.9752 10.5312 13.9752 11.0468 ZM18.0201 6.2812 Q18.8482 6.2812 19.442 6.6406 Q20.0357 7 20.3482 7.6562 Q20.6764 8.2968 20.6764 9.1875 L20.6764 9.8125 L16.2701 9.8125 Q16.3014 10.9062 16.8326 11.4843 Q17.3639 12.0468 18.317 12.0468 Q18.942 12.0468 19.4107 11.9375 Q19.8795 11.8125 20.3951 11.6093 L20.3951 12.5312 Q19.8951 12.75 19.4107 12.8437 Q18.942 12.9531 18.2701 12.9531 Q17.3639 12.9531 16.6607 12.5781 Q15.9576 12.2031 15.567 11.4687 Q15.1764 10.7343 15.1764 9.6562 Q15.1764 8.6093 15.5357 7.8593 Q15.8951 7.0937 16.5357 6.6875 Q17.1764 6.2812 18.0201 6.2812 ZM18.0045 7.1406 Q17.2545 7.1406 16.817 7.625 Q16.3795 8.1093 16.3014 8.9687 L19.567 8.9687 Q19.567 8.1562 19.192 7.6562 Q18.817 7.1406 18.0045 7.1406 ZM25.3038 6.2812 Q25.4913 6.2812 25.6944 6.2968 Q25.9132 6.3125 26.0694 6.3437 L25.9288 7.3125 Q25.7725 7.2812 25.585 7.2656 Q25.3975 7.2343 25.2413 7.2343 Q24.7413 7.2343 24.3038 7.5156 Q23.8819 7.7812 23.6163 8.2656 Q23.3663 8.75 23.3663 9.3906 L23.3663 12.8281 L22.3038 12.8281 L22.3038 6.3906 L23.1788 6.3906 L23.2882 7.5781 L23.335 7.5781 Q23.6475 7.0468 24.1319 6.6718 Q24.6319 6.2812 25.3038 6.2812 ZM32.6611 12.9531 Q31.458 12.9531 30.7392 12.125 Q30.0205 11.2812 30.0205 9.625 Q30.0205 7.9687 30.7392 7.125 Q31.4736 6.2812 32.6767 6.2812 Q33.4267 6.2812 33.8955 6.5625 Q34.3642 6.8281 34.6611 7.2187 L34.7392 7.2187 Q34.7236 7.0625 34.6924 6.7656 Q34.6611 6.4531 34.6611 6.2812 L34.6611 3.7031 L35.7236 3.7031 L35.7236 12.8281 L34.8799 12.8281 L34.7236 11.9687 L34.6611 11.9687 Q34.3799 12.375 33.8955 12.6718 Q33.4267 12.9531 32.6611 12.9531 ZM32.833 12.0781 Q33.8486 12.0781 34.2549 11.5156 Q34.6767 10.9531 34.6767 9.8281 L34.6767 9.6406 Q34.6767 8.4375 34.2861 7.7968 Q33.8955 7.1562 32.8174 7.1562 Q31.9736 7.1562 31.5361 7.8437 Q31.1142 8.5156 31.1142 9.6406 Q31.1142 10.7968 31.5361 11.4375 Q31.9736 12.0781 32.833 12.0781 ZM40.1974 6.2812 Q41.3693 6.2812 41.9318 6.7968 Q42.5099 7.3125 42.5099 8.4531 L42.5099 12.8281 L41.7287 12.8281 L41.5255 11.9218 L41.4787 11.9218 Q41.0568 12.4375 40.588 12.7031 Q40.1349 12.9531 39.3224 12.9531 Q38.4474 12.9531 37.8693 12.5 Q37.2912 12.0312 37.2912 11.0468 Q37.2912 10.0781 38.0412 9.5625 Q38.8068 9.0312 40.3849 8.9843 L41.4787 8.9531 L41.4787 8.5625 Q41.4787 7.7656 41.1193 7.4531 Q40.7755 7.1406 40.1349 7.1406 Q39.6349 7.1406 39.1818 7.2968 Q38.7287 7.4375 38.3224 7.625 L38.0099 6.8437 Q38.4318 6.6093 38.9943 6.4531 Q39.5724 6.2812 40.1974 6.2812 ZM40.5099 9.7187 Q39.3068 9.7656 38.838 10.1093 Q38.3849 10.4375 38.3849 11.0468 Q38.3849 11.5937 38.713 11.8437 Q39.0412 12.0937 39.5568 12.0937 Q40.3849 12.0937 40.9162 11.6562 Q41.463 11.2031 41.463 10.2656 L41.463 9.6875 L40.5099 9.7187 ZM46.6482 12.0781 Q46.8826 12.0781 47.1326 12.0468 Q47.3826 12 47.5388 11.9531 L47.5388 12.75 Q47.3826 12.8437 47.0701 12.8906 Q46.7576 12.9531 46.4607 12.9531 Q45.9607 12.9531 45.5232 12.7812 Q45.1013 12.5937 44.8357 12.1718 Q44.5857 11.7343 44.5857 10.9531 L44.5857 7.2187 L43.6638 7.2187 L43.6638 6.7031 L44.5857 6.2812 L45.0076 4.9218 L45.6326 4.9218 L45.6326 6.3906 L47.4919 6.3906 L47.4919 7.2187 L45.6326 7.2187 L45.6326 10.9375 Q45.6326 11.5156 45.9138 11.7968 Q46.1951 12.0781 46.6482 12.0781 ZM51.2615 6.2812 Q52.4333 6.2812 52.9958 6.7968 Q53.574 7.3125 53.574 8.4531 L53.574 12.8281 L52.7927 12.8281 L52.5896 11.9218 L52.5427 11.9218 Q52.1208 12.4375 51.6521 12.7031 Q51.199 12.9531 50.3865 12.9531 Q49.5115 12.9531 48.9333 12.5 Q48.3552 12.0312 48.3552 11.0468 Q48.3552 10.0781 49.1052 9.5625 Q49.8708 9.0312 51.449 8.9843 L52.5427 8.9531 L52.5427 8.5625 Q52.5427 7.7656 52.1833 7.4531 Q51.8396 7.1406 51.199 7.1406 Q50.699 7.1406 50.2458 7.2968 Q49.7927 7.4375 49.3865 7.625 L49.074 6.8437 Q49.4958 6.6093 50.0583 6.4531 Q50.6365 6.2812 51.2615 6.2812 ZM51.574 9.7187 Q50.3708 9.7656 49.9021 10.1093 Q49.449 10.4375 49.449 11.0468 Q49.449 11.5937 49.7771 11.8437 Q50.1052 12.0937 50.6208 12.0937 Q51.449 12.0937 51.9802 11.6562 Q52.5271 11.2031 52.5271 10.2656 L52.5271 9.6875 L51.574 9.7187 ZM56.6185 5.9218 Q56.6185 6.3437 56.6029 6.7031 Q56.5873 7.0468 56.556 7.25 L56.6185 7.25 Q56.8998 6.8437 57.3685 6.5625 Q57.8529 6.2812 58.6029 6.2812 Q59.806 6.2812 60.5248 7.125 Q61.2591 7.9531 61.2591 9.6093 Q61.2591 11.2656 60.5248 12.1093 Q59.7904 12.9531 58.6029 12.9531 Q57.8529 12.9531 57.3685 12.6718 Q56.8998 12.3906 56.6185 12.0156 L56.5248 12.0156 L56.3216 12.8281 L55.556 12.8281 L55.556 3.7031 L56.6185 3.7031 L56.6185 5.9218 ZM58.431 7.1718 Q57.4154 7.1718 57.0091 7.7656 Q56.6185 8.3437 56.6185 9.5781 L56.6185 9.625 Q56.6185 10.8125 57.0091 11.4531 Q57.3998 12.0781 58.4466 12.0781 Q59.3216 12.0781 59.7435 11.4375 Q60.1654 10.7968 60.1654 9.5937 Q60.1654 7.1718 58.431 7.1718 ZM65.3736 6.2812 Q66.5454 6.2812 67.1079 6.7968 Q67.6861 7.3125 67.6861 8.4531 L67.6861 12.8281 L66.9048 12.8281 L66.7017 11.9218 L66.6548 11.9218 Q66.2329 12.4375 65.7642 12.7031 Q65.3111 12.9531 64.4986 12.9531 Q63.6236 12.9531 63.0454 12.5 Q62.4673 12.0312 62.4673 11.0468 Q62.4673 10.0781 63.2173 9.5625 Q63.9829 9.0312 65.5611 8.9843 L66.6548 8.9531 L66.6548 8.5625 Q66.6548 7.7656 66.2954 7.4531 Q65.9517 7.1406 65.3111 7.1406 Q64.8111 7.1406 64.3579 7.2968 Q63.9048 7.4375 63.4986 7.625 L63.1861 6.8437 Q63.6079 6.6093 64.1704 6.4531 Q64.7486 6.2812 65.3736 6.2812 ZM65.6861 9.7187 Q64.4829 9.7656 64.0142 10.1093 Q63.5611 10.4375 63.5611 11.0468 Q63.5611 11.5937 63.8892 11.8437 Q64.2173 12.0937 64.7329 12.0937 Q65.5611 12.0937 66.0923 11.6562 Q66.6392 11.2031 66.6392 10.2656 L66.6392 9.6875 L65.6861 9.7187 ZM73.8556 11.0468 Q73.8556 11.9843 73.1525 12.4687 Q72.465 12.9531 71.2931 12.9531 Q70.6212 12.9531 70.1369 12.8437 Q69.6525 12.7343 69.2775 12.5468 L69.2775 11.5781 Q69.6681 11.7656 70.1994 11.9375 Q70.7462 12.0937 71.3087 12.0937 Q72.1212 12.0937 72.4806 11.8437 Q72.84 11.5781 72.84 11.1406 Q72.84 10.9062 72.6994 10.7187 Q72.5744 10.5312 72.2306 10.3437 Q71.8869 10.1406 71.2619 9.9062 Q70.6369 9.6562 70.1837 9.4218 Q69.7462 9.1875 69.4962 8.8593 Q69.2619 8.5156 69.2619 7.9843 Q69.2619 7.1718 69.9181 6.7343 Q70.59 6.2812 71.6837 6.2812 Q72.2619 6.2812 72.7619 6.3906 Q73.2775 6.5 73.7306 6.7031 L73.3712 7.5468 Q72.965 7.375 72.5119 7.2656 Q72.0744 7.1406 71.6056 7.1406 Q70.9494 7.1406 70.6056 7.3593 Q70.2775 7.5625 70.2775 7.9218 Q70.2775 8.1875 70.4337 8.375 Q70.59 8.5625 70.9494 8.7343 Q71.3087 8.9062 71.9337 9.1406 Q72.5431 9.375 72.965 9.625 Q73.4025 9.8593 73.6212 10.2031 Q73.8556 10.5312 73.8556 11.0468 ZM77.9005 6.2812 Q78.7287 6.2812 79.3224 6.6406 Q79.9162 7 80.2287 7.6562 Q80.5568 8.2968 80.5568 9.1875 L80.5568 9.8125 L76.1505 9.8125 Q76.1818 10.9062 76.713 11.4843 Q77.2443 12.0468 78.1974 12.0468 Q78.8224 12.0468 79.2912 11.9375 Q79.7599 11.8125 80.2755 11.6093 L80.2755 12.5312 Q79.7755 12.75 79.2912 12.8437 Q78.8224 12.9531 78.1505 12.9531 Q77.2443 12.9531 76.5412 12.5781 Q75.838 12.2031 75.4474 11.4687 Q75.0568 10.7343 75.0568 9.6562 Q75.0568 8.6093 75.4162 7.8593 Q75.7755 7.0937 76.4162 6.6875 Q77.0568 6.2812 77.9005 6.2812 ZM77.8849 7.1406 Q77.1349 7.1406 76.6974 7.625 Q76.2599 8.1093 76.1818 8.9687 L79.4474 8.9687 Q79.4474 8.1562 79.0724 7.6562 Q78.6974 7.1406 77.8849 7.1406 Z" style="stroke:none; clip-path:url(#clipPath40);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1511 44 -1507 40 -1309 40 -1309 142 -1313 146 -1511 146"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1511 44 -1507 40 -1309 40 -1309 142 -1313 146 -1511 146"
+      /><line x1="-1313" x2="-1310" y1="44" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="41"
+      /><line x1="-1511" x2="-1313" y1="44" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="44"
+      /><line x1="-1313" x2="-1313" y1="44" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="146"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1491.4334,62.3138)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath41);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1427.2641,64.3441)"
+    ><path d="M7.9531 12.8281 L6.7031 12.8281 L2.1094 5.7187 L2.0625 5.7187 Q2.0938 6.125 2.125 6.75 Q2.1562 7.375 2.1562 8.0468 L2.1562 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.4062 4.2656 L6.9844 11.3593 L7.0312 11.3593 Q7.0156 11.1562 7 10.7812 Q6.9844 10.3906 6.9688 9.9375 Q6.9531 9.4843 6.9531 9.0937 L6.9531 4.2656 L7.9531 4.2656 L7.9531 12.8281 ZM15.7294 9.5937 Q15.7294 11.2031 14.9169 12.0781 Q14.1044 12.9531 12.7294 12.9531 Q11.8857 12.9531 11.2138 12.5625 Q10.5419 12.1718 10.1513 11.4218 Q9.7763 10.6718 9.7763 9.5937 Q9.7763 8 10.5732 7.1406 Q11.3857 6.2812 12.7607 6.2812 Q13.6513 6.2812 14.3076 6.6718 Q14.9794 7.0625 15.3544 7.7968 Q15.7294 8.5312 15.7294 9.5937 ZM10.8701 9.5937 Q10.8701 10.7343 11.3232 11.4062 Q11.7763 12.0781 12.7607 12.0781 Q13.7294 12.0781 14.1826 11.4062 Q14.6357 10.7343 14.6357 9.5937 Q14.6357 8.4531 14.1826 7.8125 Q13.7294 7.1718 12.7451 7.1718 Q11.7607 7.1718 11.3076 7.8125 Q10.8701 8.4531 10.8701 9.5937 ZM19.677 12.9531 Q18.4739 12.9531 17.7551 12.125 Q17.0364 11.2812 17.0364 9.625 Q17.0364 7.9687 17.7551 7.125 Q18.4895 6.2812 19.6926 6.2812 Q20.4426 6.2812 20.9114 6.5625 Q21.3801 6.8281 21.677 7.2187 L21.7551 7.2187 Q21.7395 7.0625 21.7083 6.7656 Q21.677 6.4531 21.677 6.2812 L21.677 3.7031 L22.7395 3.7031 L22.7395 12.8281 L21.8958 12.8281 L21.7395 11.9687 L21.677 11.9687 Q21.3958 12.375 20.9114 12.6718 Q20.4426 12.9531 19.677 12.9531 ZM19.8489 12.0781 Q20.8645 12.0781 21.2708 11.5156 Q21.6926 10.9531 21.6926 9.8281 L21.6926 9.6406 Q21.6926 8.4375 21.302 7.7968 Q20.9114 7.1562 19.8333 7.1562 Q18.9895 7.1562 18.552 7.8437 Q18.1301 8.5156 18.1301 9.6406 Q18.1301 10.7968 18.552 11.4375 Q18.9895 12.0781 19.8489 12.0781 ZM27.2602 6.2812 Q28.0883 6.2812 28.6821 6.6406 Q29.2758 7 29.5883 7.6562 Q29.9164 8.2968 29.9164 9.1875 L29.9164 9.8125 L25.5102 9.8125 Q25.5414 10.9062 26.0727 11.4843 Q26.6039 12.0468 27.5571 12.0468 Q28.1821 12.0468 28.6508 11.9375 Q29.1196 11.8125 29.6352 11.6093 L29.6352 12.5312 Q29.1352 12.75 28.6508 12.8437 Q28.1821 12.9531 27.5102 12.9531 Q26.6039 12.9531 25.9008 12.5781 Q25.1977 12.2031 24.8071 11.4687 Q24.4164 10.7343 24.4164 9.6562 Q24.4164 8.6093 24.7758 7.8593 Q25.1352 7.0937 25.7758 6.6875 Q26.4164 6.2812 27.2602 6.2812 ZM27.2446 7.1406 Q26.4946 7.1406 26.0571 7.625 Q25.6196 8.1093 25.5414 8.9687 L28.8071 8.9687 Q28.8071 8.1562 28.4321 7.6562 Q28.0571 7.1406 27.2446 7.1406 Z" style="stroke:none; clip-path:url(#clipPath42);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -487 -303 -483 -307 -285 -307 -285 -203 -289 -199 -487 -199"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -487 -303 -483 -307 -285 -307 -285 -203 -289 -199 -487 -199"
+      /><line x1="-289" x2="-286" y1="-303" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-306"
+      /><line x1="-487" x2="-289" y1="-303" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-303"
+      /><line x1="-289" x2="-289" y1="-303" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-199"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-467.66,-285.064)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath43);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-407.6261,-282.6559)"
+    ><path d="M4.9375 12.8281 L2.125 5.3125 L2.0781 5.3125 Q2.1094 5.6875 2.125 6.3281 Q2.1562 6.9531 2.1562 7.625 L2.1562 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.7656 4.2656 L5.4062 11.2812 L5.4531 11.2812 L8.1406 4.2656 L9.7188 4.2656 L9.7188 12.8281 L8.6562 12.8281 L8.6562 7.5625 Q8.6562 6.9375 8.6875 6.3281 Q8.7188 5.7187 8.7344 5.3281 L8.6875 5.3281 L5.8281 12.8281 L4.9375 12.8281 ZM10.8997 6.3906 L12.0247 6.3906 L13.4153 10.0625 Q13.6028 10.5312 13.7435 10.9687 Q13.8841 11.4062 13.9622 11.8125 L14.0091 11.8125 Q14.0716 11.5156 14.2278 11.0312 Q14.3841 10.5312 14.556 10.0468 L15.8685 6.3906 L17.0091 6.3906 L14.2278 13.7187 Q13.8997 14.625 13.3528 15.1562 Q12.8216 15.7031 11.8997 15.7031 Q11.6028 15.7031 11.3841 15.6718 Q11.1653 15.6406 11.0091 15.6093 L11.0091 14.7656 Q11.1497 14.7968 11.3372 14.8125 Q11.5247 14.8437 11.7278 14.8437 Q12.2747 14.8437 12.6185 14.5312 Q12.9622 14.2187 13.1497 13.7031 L13.4935 12.8593 L10.8997 6.3906 ZM23.0354 10.5312 Q23.0354 11.6718 22.2072 12.3125 Q21.3791 12.9531 19.9729 12.9531 Q19.2541 12.9531 18.6291 12.8437 Q18.0197 12.7343 17.6135 12.5468 L17.6135 11.5156 Q18.051 11.7031 18.6916 11.8593 Q19.3322 12.0156 20.0197 12.0156 Q20.9729 12.0156 21.4572 11.6406 Q21.9416 11.2656 21.9416 10.625 Q21.9416 10.2187 21.7541 9.9375 Q21.5822 9.6406 21.1447 9.3906 Q20.7072 9.1406 19.926 8.875 Q18.8479 8.4687 18.2854 7.8906 Q17.7229 7.3125 17.7229 6.3281 Q17.7229 5.6406 18.0666 5.1562 Q18.426 4.6718 19.0354 4.4062 Q19.6604 4.1406 20.4572 4.1406 Q21.1604 4.1406 21.7541 4.2812 Q22.3479 4.4062 22.8166 4.625 L22.4885 5.5468 Q22.051 5.3593 21.5197 5.2343 Q21.0041 5.0937 20.4416 5.0937 Q19.6291 5.0937 19.2229 5.4375 Q18.8166 5.7656 18.8166 6.3437 Q18.8166 6.7656 18.9885 7.0625 Q19.176 7.3437 19.5822 7.5781 Q19.9885 7.7968 20.6916 8.0625 Q21.4416 8.3437 21.9572 8.6562 Q22.4885 8.9687 22.7541 9.4218 Q23.0354 9.8593 23.0354 10.5312 ZM32.2328 8.5312 Q32.2328 10.1093 31.5922 11.2187 Q30.9672 12.3125 29.7328 12.7343 L31.7953 14.875 L30.2328 14.875 L28.5765 12.9375 Q28.514 12.9375 28.4359 12.9375 Q28.3578 12.9531 28.2797 12.9531 Q26.9515 12.9531 26.0609 12.4062 Q25.1859 11.8437 24.7484 10.8593 Q24.3265 9.8593 24.3265 8.5156 Q24.3265 7.2031 24.7484 6.2187 Q25.1859 5.2343 26.0609 4.6875 Q26.9515 4.125 28.2953 4.125 Q29.5765 4.125 30.4515 4.6718 Q31.3265 5.2187 31.7797 6.2187 Q32.2328 7.2031 32.2328 8.5312 ZM25.4672 8.5312 Q25.4672 10.1562 26.139 11.0937 Q26.8265 12.0156 28.2797 12.0156 Q29.7484 12.0156 30.4203 11.0937 Q31.0922 10.1562 31.0922 8.5312 Q31.0922 6.9062 30.4203 6 Q29.7484 5.0781 28.2953 5.0781 Q26.8422 5.0781 26.1547 6 Q25.4672 6.9062 25.4672 8.5312 ZM34.1205 12.8281 L34.1205 4.2656 L35.2142 4.2656 L35.2142 11.875 L38.9486 11.875 L38.9486 12.8281 L34.1205 12.8281 Z" style="stroke:none; clip-path:url(#clipPath44);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><line x1="-619.9153" x2="-503.2871" y1="-266.1133" style="fill:none; clip-path:url(#clipPath2);" y2="-265.8315"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-573.3313,-251.1444)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath45);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-1476.8192" y="86.8917" width="129.2567" style="clip-path:url(#clipPath2); stroke:none;" height="45"
+      /><rect x="-1476.8192" y="86.8917" width="129.2567" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="45"
+      /><rect x="-1365.5625" y="92.8917" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="-1365.5625" y="92.8917" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="-1367.5625" y="100.8917" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-1367.5625" y="100.8917" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="-1367.5625" y="95.8917" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-1367.5625" y="95.8917" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1463.9872,90.8917)"
+    ><path d="M3.4375 4.2656 Q5.1094 4.2656 5.875 4.9218 Q6.6406 5.5781 6.6406 6.7812 Q6.6406 7.4843 6.3281 8.1093 Q6.0156 8.7187 5.2656 9.1093 Q4.5156 9.4843 3.2344 9.4843 L2.25 9.4843 L2.25 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.4375 4.2656 ZM3.3438 5.1875 L2.25 5.1875 L2.25 8.5625 L3.1094 8.5625 Q4.3281 8.5625 4.9219 8.1718 Q5.5312 7.7812 5.5312 6.8281 Q5.5312 6 5 5.5937 Q4.4688 5.1875 3.3438 5.1875 ZM13.8694 9.5937 Q13.8694 11.2031 13.0569 12.0781 Q12.2444 12.9531 10.8694 12.9531 Q10.0257 12.9531 9.3538 12.5625 Q8.6819 12.1718 8.2913 11.4218 Q7.9163 10.6718 7.9163 9.5937 Q7.9163 8 8.7132 7.1406 Q9.5257 6.2812 10.9007 6.2812 Q11.7913 6.2812 12.4476 6.6718 Q13.1194 7.0625 13.4944 7.7968 Q13.8694 8.5312 13.8694 9.5937 ZM9.0101 9.5937 Q9.0101 10.7343 9.4632 11.4062 Q9.9163 12.0781 10.9007 12.0781 Q11.8694 12.0781 12.3226 11.4062 Q12.7757 10.7343 12.7757 9.5937 Q12.7757 8.4531 12.3226 7.8125 Q11.8694 7.1718 10.8851 7.1718 Q9.9007 7.1718 9.4476 7.8125 Q9.0101 8.4531 9.0101 9.5937 ZM16.5982 5.9218 Q16.5982 6.3437 16.5826 6.7031 Q16.567 7.0468 16.5357 7.25 L16.5982 7.25 Q16.8795 6.8437 17.3482 6.5625 Q17.8326 6.2812 18.5826 6.2812 Q19.7857 6.2812 20.5045 7.125 Q21.2389 7.9531 21.2389 9.6093 Q21.2389 11.2656 20.5045 12.1093 Q19.7701 12.9531 18.5826 12.9531 Q17.8326 12.9531 17.3482 12.6718 Q16.8795 12.3906 16.5982 12.0156 L16.5045 12.0156 L16.3014 12.8281 L15.5357 12.8281 L15.5357 3.7031 L16.5982 3.7031 L16.5982 5.9218 ZM18.4107 7.1718 Q17.3951 7.1718 16.9889 7.7656 Q16.5982 8.3437 16.5982 9.5781 L16.5982 9.625 Q16.5982 10.8125 16.9889 11.4531 Q17.3795 12.0781 18.4264 12.0781 Q19.3014 12.0781 19.7232 11.4375 Q20.1451 10.7968 20.1451 9.5937 Q20.1451 7.1718 18.4107 7.1718 ZM23.9783 12.8281 L22.9158 12.8281 L22.9158 3.7031 L23.9783 3.7031 L23.9783 12.8281 ZM28.4493 6.2812 Q29.6212 6.2812 30.1837 6.7968 Q30.7618 7.3125 30.7618 8.4531 L30.7618 12.8281 L29.9806 12.8281 L29.7774 11.9218 L29.7306 11.9218 Q29.3087 12.4375 28.8399 12.7031 Q28.3868 12.9531 27.5743 12.9531 Q26.6993 12.9531 26.1212 12.5 Q25.5431 12.0312 25.5431 11.0468 Q25.5431 10.0781 26.2931 9.5625 Q27.0587 9.0312 28.6368 8.9843 L29.7306 8.9531 L29.7306 8.5625 Q29.7306 7.7656 29.3712 7.4531 Q29.0274 7.1406 28.3868 7.1406 Q27.8868 7.1406 27.4337 7.2968 Q26.9806 7.4375 26.5743 7.625 L26.2618 6.8437 Q26.6837 6.6093 27.2462 6.4531 Q27.8243 6.2812 28.4493 6.2812 ZM28.7618 9.7187 Q27.5587 9.7656 27.0899 10.1093 Q26.6368 10.4375 26.6368 11.0468 Q26.6368 11.5937 26.9649 11.8437 Q27.2931 12.0937 27.8087 12.0937 Q28.6368 12.0937 29.1681 11.6562 Q29.7149 11.2031 29.7149 10.2656 L29.7149 9.6875 L28.7618 9.7187 ZM34.9001 12.0781 Q35.1345 12.0781 35.3845 12.0468 Q35.6345 12 35.7907 11.9531 L35.7907 12.75 Q35.6345 12.8437 35.322 12.8906 Q35.0095 12.9531 34.7126 12.9531 Q34.2126 12.9531 33.7751 12.7812 Q33.3532 12.5937 33.0876 12.1718 Q32.8376 11.7343 32.8376 10.9531 L32.8376 7.2187 L31.9157 7.2187 L31.9157 6.7031 L32.8376 6.2812 L33.2595 4.9218 L33.8845 4.9218 L33.8845 6.3906 L35.7439 6.3906 L35.7439 7.2187 L33.8845 7.2187 L33.8845 10.9375 Q33.8845 11.5156 34.1657 11.7968 Q34.447 12.0781 34.9001 12.0781 ZM39.5603 6.2812 Q40.3884 6.2812 40.9821 6.6406 Q41.5759 7 41.8884 7.6562 Q42.2165 8.2968 42.2165 9.1875 L42.2165 9.8125 L37.8103 9.8125 Q37.8415 10.9062 38.3728 11.4843 Q38.904 12.0468 39.8571 12.0468 Q40.4821 12.0468 40.9509 11.9375 Q41.4196 11.8125 41.9353 11.6093 L41.9353 12.5312 Q41.4353 12.75 40.9509 12.8437 Q40.4821 12.9531 39.8103 12.9531 Q38.904 12.9531 38.2009 12.5781 Q37.4978 12.2031 37.1071 11.4687 Q36.7165 10.7343 36.7165 9.6562 Q36.7165 8.6093 37.0759 7.8593 Q37.4353 7.0937 38.0759 6.6875 Q38.7165 6.2812 39.5603 6.2812 ZM39.5446 7.1406 Q38.7946 7.1406 38.3571 7.625 Q37.9196 8.1093 37.8415 8.9687 L41.1071 8.9687 Q41.1071 8.1562 40.7321 7.6562 Q40.3571 7.1406 39.5446 7.1406 ZM46.2658 4.2656 Q47.9377 4.2656 48.7033 4.9218 Q49.4689 5.5781 49.4689 6.7812 Q49.4689 7.4843 49.1564 8.1093 Q48.8439 8.7187 48.0939 9.1093 Q47.3439 9.4843 46.0627 9.4843 L45.0783 9.4843 L45.0783 12.8281 L43.9846 12.8281 L43.9846 4.2656 L46.2658 4.2656 ZM46.1721 5.1875 L45.0783 5.1875 L45.0783 8.5625 L45.9377 8.5625 Q47.1564 8.5625 47.7502 8.1718 Q48.3596 7.7812 48.3596 6.8281 Q48.3596 6 47.8283 5.5937 Q47.2971 5.1875 46.1721 5.1875 ZM54.104 6.2812 Q54.2915 6.2812 54.4946 6.2968 Q54.7134 6.3125 54.8696 6.3437 L54.729 7.3125 Q54.5727 7.2812 54.3852 7.2656 Q54.1977 7.2343 54.0415 7.2343 Q53.5415 7.2343 53.104 7.5156 Q52.6821 7.7812 52.4165 8.2656 Q52.1665 8.75 52.1665 9.3906 L52.1665 12.8281 L51.104 12.8281 L51.104 6.3906 L51.979 6.3906 L52.0884 7.5781 L52.1352 7.5781 Q52.4477 7.0468 52.9321 6.6718 Q53.4321 6.2812 54.104 6.2812 ZM61.6538 9.5937 Q61.6538 11.2031 60.8413 12.0781 Q60.0288 12.9531 58.6538 12.9531 Q57.81 12.9531 57.1382 12.5625 Q56.4663 12.1718 56.0757 11.4218 Q55.7007 10.6718 55.7007 9.5937 Q55.7007 8 56.4975 7.1406 Q57.31 6.2812 58.685 6.2812 Q59.5757 6.2812 60.2319 6.6718 Q60.9038 7.0625 61.2788 7.7968 Q61.6538 8.5312 61.6538 9.5937 ZM56.7944 9.5937 Q56.7944 10.7343 57.2475 11.4062 Q57.7007 12.0781 58.685 12.0781 Q59.6538 12.0781 60.1069 11.4062 Q60.56 10.7343 60.56 9.5937 Q60.56 8.4531 60.1069 7.8125 Q59.6538 7.1718 58.6694 7.1718 Q57.685 7.1718 57.2319 7.8125 Q56.7944 8.4531 56.7944 9.5937 ZM65.6013 6.2812 Q66.242 6.2812 66.742 6.5156 Q67.2576 6.75 67.617 7.25 L67.6795 7.25 L67.8201 6.3906 L68.6638 6.3906 L68.6638 12.9375 Q68.6638 14.3125 67.9607 15 Q67.2576 15.7031 65.7888 15.7031 Q64.367 15.7031 63.4607 15.2968 L63.4607 14.3281 Q64.4138 14.8281 65.8513 14.8281 Q66.6795 14.8281 67.1482 14.3437 Q67.617 13.8593 67.617 13.0156 L67.617 12.7656 Q67.617 12.625 67.6326 12.3593 Q67.6482 12.0781 67.6638 11.9687 L67.6013 11.9687 Q66.9607 12.9531 65.617 12.9531 Q64.367 12.9531 63.6638 12.0781 Q62.9607 11.2031 62.9607 9.625 Q62.9607 8.0937 63.6638 7.1875 Q64.367 6.2812 65.6013 6.2812 ZM65.742 7.1718 Q64.9451 7.1718 64.492 7.8125 Q64.0545 8.4531 64.0545 9.6406 Q64.0545 10.8281 64.492 11.4531 Q64.9295 12.0781 65.7732 12.0781 Q66.742 12.0781 67.1795 11.5625 Q67.6326 11.0468 67.6326 9.875 L67.6326 9.625 Q67.6326 8.2968 67.1795 7.7343 Q66.7263 7.1718 65.742 7.1718 ZM73.7001 6.2812 Q73.8876 6.2812 74.0908 6.2968 Q74.3095 6.3125 74.4658 6.3437 L74.3251 7.3125 Q74.1689 7.2812 73.9814 7.2656 Q73.7939 7.2343 73.6376 7.2343 Q73.1376 7.2343 72.7001 7.5156 Q72.2783 7.7812 72.0126 8.2656 Q71.7626 8.75 71.7626 9.3906 L71.7626 12.8281 L70.7001 12.8281 L70.7001 6.3906 L71.5751 6.3906 L71.6845 7.5781 L71.7314 7.5781 Q72.0439 7.0468 72.5283 6.6718 Q73.0283 6.2812 73.7001 6.2812 ZM78.0937 6.2812 Q79.2655 6.2812 79.828 6.7968 Q80.4062 7.3125 80.4062 8.4531 L80.4062 12.8281 L79.6249 12.8281 L79.4218 11.9218 L79.3749 11.9218 Q78.953 12.4375 78.4843 12.7031 Q78.0312 12.9531 77.2187 12.9531 Q76.3437 12.9531 75.7655 12.5 Q75.1874 12.0312 75.1874 11.0468 Q75.1874 10.0781 75.9374 9.5625 Q76.703 9.0312 78.2812 8.9843 L79.3749 8.9531 L79.3749 8.5625 Q79.3749 7.7656 79.0155 7.4531 Q78.6718 7.1406 78.0312 7.1406 Q77.5312 7.1406 77.078 7.2968 Q76.6249 7.4375 76.2187 7.625 L75.9062 6.8437 Q76.328 6.6093 76.8905 6.4531 Q77.4687 6.2812 78.0937 6.2812 ZM78.4062 9.7187 Q77.203 9.7656 76.7343 10.1093 Q76.2812 10.4375 76.2812 11.0468 Q76.2812 11.5937 76.6093 11.8437 Q76.9374 12.0937 77.453 12.0937 Q78.2812 12.0937 78.8124 11.6562 Q79.3593 11.2031 79.3593 10.2656 L79.3593 9.6875 L78.4062 9.7187 ZM89.4507 6.2812 Q90.5445 6.2812 91.0757 6.8437 Q91.6226 7.3906 91.6226 8.6406 L91.6226 12.8281 L90.5757 12.8281 L90.5757 8.6875 Q90.5757 7.1718 89.2632 7.1718 Q88.3257 7.1718 87.9195 7.7187 Q87.5288 8.25 87.5288 9.2812 L87.5288 12.8281 L86.482 12.8281 L86.482 8.6875 Q86.482 7.1718 85.1695 7.1718 Q84.1851 7.1718 83.8101 7.7656 Q83.4507 8.3593 83.4507 9.4843 L83.4507 12.8281 L82.3882 12.8281 L82.3882 6.3906 L83.2476 6.3906 L83.4038 7.2656 L83.4663 7.2656 Q83.7632 6.7656 84.2632 6.5312 Q84.7788 6.2812 85.357 6.2812 Q86.8726 6.2812 87.3257 7.3593 L87.3882 7.3593 Q87.7163 6.7968 88.2632 6.5468 Q88.8257 6.2812 89.4507 6.2812 Z" style="stroke:none; clip-path:url(#clipPath46);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -502 -122 -498 -126 -270 -126 -270 67 -274 71 -502 71"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -502 -122 -498 -126 -270 -126 -270 67 -274 71 -502 71"
+      /><line x1="-274" x2="-271" y1="-122" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-125"
+      /><line x1="-502" x2="-274" y1="-122" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-122"
+      /><line x1="-274" x2="-274" y1="-122" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="71"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-449.8399,-104.3844)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM27.7175 -3.2344 Q27.7175 -1.625 26.905 -0.75 Q26.0925 0.125 24.7175 0.125 Q23.8738 0.125 23.2019 -0.2656 Q22.53 -0.6562 22.1394 -1.4062 Q21.7644 -2.1562 21.7644 -3.2344 Q21.7644 -4.8281 22.5613 -5.6875 Q23.3738 -6.5469 24.7488 -6.5469 Q25.6394 -6.5469 26.2956 -6.1562 Q26.9675 -5.7656 27.3425 -5.0312 Q27.7175 -4.2969 27.7175 -3.2344 ZM22.8581 -3.2344 Q22.8581 -2.0938 23.3113 -1.4219 Q23.7644 -0.75 24.7488 -0.75 Q25.7175 -0.75 26.1706 -1.4219 Q26.6238 -2.0938 26.6238 -3.2344 Q26.6238 -4.375 26.1706 -5.0156 Q25.7175 -5.6562 24.7331 -5.6562 Q23.7488 -5.6562 23.2956 -5.0156 Q22.8581 -4.375 22.8581 -3.2344 ZM31.9619 0.125 Q31.1182 0.125 30.4463 -0.2188 Q29.7901 -0.5781 29.3994 -1.3125 Q29.0244 -2.0469 29.0244 -3.1875 Q29.0244 -4.375 29.4151 -5.1094 Q29.8213 -5.8594 30.4932 -6.2031 Q31.1807 -6.5469 32.0401 -6.5469 Q32.5244 -6.5469 32.9776 -6.4375 Q33.4463 -6.3438 33.7276 -6.2031 L33.4151 -5.3281 Q33.1182 -5.4375 32.7276 -5.5312 Q32.3526 -5.625 32.0088 -5.625 Q30.1182 -5.625 30.1182 -3.1875 Q30.1182 -2.0312 30.5713 -1.4062 Q31.0401 -0.7969 31.9619 -0.7969 Q32.4776 -0.7969 32.8838 -0.9062 Q33.2901 -1.0156 33.6182 -1.1562 L33.6182 -0.2344 Q33.3057 -0.0625 32.9151 0.0312 Q32.5244 0.125 31.9619 0.125 ZM36.1907 -4.3594 Q36.1907 -4.1562 36.1751 -3.8438 Q36.1595 -3.5469 36.1439 -3.3125 L36.1907 -3.3125 Q36.2689 -3.4062 36.4095 -3.5781 Q36.5501 -3.7656 36.6907 -3.9531 Q36.847 -4.1406 36.9564 -4.2656 L39.0189 -6.4375 L40.2532 -6.4375 L37.6439 -3.6875 L40.4251 0 L39.1595 0 L36.9251 -3 L36.1907 -2.3594 L36.1907 0 L35.1439 0 L35.1439 -9.125 L36.1907 -9.125 L36.1907 -4.3594 ZM44.0363 -6.5469 Q44.8644 -6.5469 45.4582 -6.1875 Q46.0519 -5.8281 46.3644 -5.1719 Q46.6925 -4.5312 46.6925 -3.6406 L46.6925 -3.0156 L42.2863 -3.0156 Q42.3175 -1.9219 42.8488 -1.3438 Q43.38 -0.7812 44.3332 -0.7812 Q44.9582 -0.7812 45.4269 -0.8906 Q45.8957 -1.0156 46.4113 -1.2188 L46.4113 -0.2969 Q45.9113 -0.0781 45.4269 0.0156 Q44.9582 0.125 44.2863 0.125 Q43.38 0.125 42.6769 -0.25 Q41.9738 -0.625 41.5832 -1.3594 Q41.1925 -2.0938 41.1925 -3.1719 Q41.1925 -4.2188 41.5519 -4.9688 Q41.9113 -5.7344 42.5519 -6.1406 Q43.1925 -6.5469 44.0363 -6.5469 ZM44.0207 -5.6875 Q43.2707 -5.6875 42.8332 -5.2031 Q42.3957 -4.7188 42.3175 -3.8594 L45.5832 -3.8594 Q45.5832 -4.6719 45.2082 -5.1719 Q44.8332 -5.6875 44.0207 -5.6875 ZM51.32 -6.5469 Q51.5075 -6.5469 51.7106 -6.5312 Q51.9293 -6.5156 52.0856 -6.4844 L51.945 -5.5156 Q51.7887 -5.5469 51.6012 -5.5625 Q51.4137 -5.5938 51.2575 -5.5938 Q50.7575 -5.5938 50.32 -5.3125 Q49.8981 -5.0469 49.6325 -4.5625 Q49.3825 -4.0781 49.3825 -3.4375 L49.3825 0 L48.32 0 L48.32 -6.4375 L49.195 -6.4375 L49.3043 -5.25 L49.3512 -5.25 Q49.6637 -5.7812 50.1481 -6.1562 Q50.6481 -6.5469 51.32 -6.5469 ZM58.9742 0.125 Q58.1304 0.125 57.4585 -0.2188 Q56.8023 -0.5781 56.4117 -1.3125 Q56.0367 -2.0469 56.0367 -3.1875 Q56.0367 -4.375 56.4273 -5.1094 Q56.8335 -5.8594 57.5054 -6.2031 Q58.1929 -6.5469 59.0523 -6.5469 Q59.5367 -6.5469 59.9898 -6.4375 Q60.4585 -6.3438 60.7398 -6.2031 L60.4273 -5.3281 Q60.1304 -5.4375 59.7398 -5.5312 Q59.3648 -5.625 59.021 -5.625 Q57.1304 -5.625 57.1304 -3.1875 Q57.1304 -2.0312 57.5835 -1.4062 Q58.0523 -0.7969 58.9742 -0.7969 Q59.4898 -0.7969 59.896 -0.9062 Q60.3023 -1.0156 60.6304 -1.1562 L60.6304 -0.2344 Q60.3179 -0.0625 59.9273 0.0312 Q59.5367 0.125 58.9742 0.125 ZM67.7498 -3.2344 Q67.7498 -1.625 66.9373 -0.75 Q66.1248 0.125 64.7498 0.125 Q63.9061 0.125 63.2342 -0.2656 Q62.5623 -0.6562 62.1717 -1.4062 Q61.7967 -2.1562 61.7967 -3.2344 Q61.7967 -4.8281 62.5936 -5.6875 Q63.4061 -6.5469 64.7811 -6.5469 Q65.6717 -6.5469 66.3279 -6.1562 Q66.9998 -5.7656 67.3748 -5.0312 Q67.7498 -4.2969 67.7498 -3.2344 ZM62.8904 -3.2344 Q62.8904 -2.0938 63.3436 -1.4219 Q63.7967 -0.75 64.7811 -0.75 Q65.7498 -0.75 66.2029 -1.4219 Q66.6561 -2.0938 66.6561 -3.2344 Q66.6561 -4.375 66.2029 -5.0156 Q65.7498 -5.6562 64.7654 -5.6562 Q63.7811 -5.6562 63.3279 -5.0156 Q62.8904 -4.375 62.8904 -3.2344 ZM72.5099 -6.5469 Q73.6661 -6.5469 74.2442 -5.9844 Q74.838 -5.4375 74.838 -4.1875 L74.838 0 L73.8067 0 L73.8067 -4.1094 Q73.8067 -5.6562 72.3536 -5.6562 Q71.2911 -5.6562 70.8849 -5.0625 Q70.4786 -4.4688 70.4786 -3.3438 L70.4786 0 L69.4161 0 L69.4161 -6.4375 L70.2755 -6.4375 L70.4317 -5.5625 L70.4942 -5.5625 Q70.8067 -6.0625 71.3536 -6.2969 Q71.9005 -6.5469 72.5099 -6.5469 ZM78.9884 -0.75 Q79.2228 -0.75 79.4728 -0.7812 Q79.7228 -0.8281 79.879 -0.875 L79.879 -0.0781 Q79.7228 0.0156 79.4103 0.0625 Q79.0978 0.125 78.8009 0.125 Q78.3009 0.125 77.8634 -0.0469 Q77.4415 -0.2344 77.1759 -0.6562 Q76.9259 -1.0938 76.9259 -1.875 L76.9259 -5.6094 L76.004 -5.6094 L76.004 -6.125 L76.9259 -6.5469 L77.3478 -7.9062 L77.9728 -7.9062 L77.9728 -6.4375 L79.8322 -6.4375 L79.8322 -5.6094 L77.9728 -5.6094 L77.9728 -1.8906 Q77.9728 -1.3125 78.254 -1.0312 Q78.5353 -0.75 78.9884 -0.75 ZM83.6017 -6.5469 Q84.7736 -6.5469 85.3361 -6.0312 Q85.9142 -5.5156 85.9142 -4.375 L85.9142 0 L85.1329 0 L84.9298 -0.9062 L84.8829 -0.9062 Q84.4611 -0.3906 83.9923 -0.125 Q83.5392 0.125 82.7267 0.125 Q81.8517 0.125 81.2736 -0.3281 Q80.6954 -0.7969 80.6954 -1.7812 Q80.6954 -2.75 81.4454 -3.2656 Q82.2111 -3.7969 83.7892 -3.8438 L84.8829 -3.875 L84.8829 -4.2656 Q84.8829 -5.0625 84.5236 -5.375 Q84.1798 -5.6875 83.5392 -5.6875 Q83.0392 -5.6875 82.5861 -5.5312 Q82.1329 -5.3906 81.7267 -5.2031 L81.4142 -5.9844 Q81.8361 -6.2188 82.3986 -6.375 Q82.9767 -6.5469 83.6017 -6.5469 ZM83.9142 -3.1094 Q82.7111 -3.0625 82.2423 -2.7188 Q81.7892 -2.3906 81.7892 -1.7812 Q81.7892 -1.2344 82.1173 -0.9844 Q82.4454 -0.7344 82.9611 -0.7344 Q83.7892 -0.7344 84.3204 -1.1719 Q84.8673 -1.625 84.8673 -2.5625 L84.8673 -3.1406 L83.9142 -3.1094 ZM88.4431 -8.8438 Q88.6775 -8.8438 88.865 -8.6719 Q89.0525 -8.5156 89.0525 -8.1719 Q89.0525 -7.8438 88.865 -7.6719 Q88.6775 -7.5 88.4431 -7.5 Q88.1775 -7.5 87.99 -7.6719 Q87.8181 -7.8438 87.8181 -8.1719 Q87.8181 -8.5156 87.99 -8.6719 Q88.1775 -8.8438 88.4431 -8.8438 ZM88.9587 -6.4375 L88.9587 0 L87.8962 0 L87.8962 -6.4375 L88.9587 -6.4375 ZM94.086 -6.5469 Q95.2423 -6.5469 95.8204 -5.9844 Q96.4141 -5.4375 96.4141 -4.1875 L96.4141 0 L95.3829 0 L95.3829 -4.1094 Q95.3829 -5.6562 93.9298 -5.6562 Q92.8673 -5.6562 92.461 -5.0625 Q92.0548 -4.4688 92.0548 -3.3438 L92.0548 0 L90.9923 0 L90.9923 -6.4375 L91.8516 -6.4375 L92.0079 -5.5625 L92.0704 -5.5625 Q92.3829 -6.0625 92.9298 -6.2969 Q93.4766 -6.5469 94.086 -6.5469 ZM100.8927 -6.5469 Q101.7208 -6.5469 102.3146 -6.1875 Q102.9083 -5.8281 103.2208 -5.1719 Q103.5489 -4.5312 103.5489 -3.6406 L103.5489 -3.0156 L99.1427 -3.0156 Q99.1739 -1.9219 99.7052 -1.3438 Q100.2364 -0.7812 101.1896 -0.7812 Q101.8146 -0.7812 102.2833 -0.8906 Q102.7521 -1.0156 103.2677 -1.2188 L103.2677 -0.2969 Q102.7677 -0.0781 102.2833 0.0156 Q101.8146 0.125 101.1427 0.125 Q100.2364 0.125 99.5333 -0.25 Q98.8302 -0.625 98.4396 -1.3594 Q98.0489 -2.0938 98.0489 -3.1719 Q98.0489 -4.2188 98.4083 -4.9688 Q98.7677 -5.7344 99.4083 -6.1406 Q100.0489 -6.5469 100.8927 -6.5469 ZM100.8771 -5.6875 Q100.1271 -5.6875 99.6896 -5.2031 Q99.2521 -4.7188 99.1739 -3.8594 L102.4396 -3.8594 Q102.4396 -4.6719 102.0646 -5.1719 Q101.6896 -5.6875 100.8771 -5.6875 ZM108.1764 -6.5469 Q108.3639 -6.5469 108.567 -6.5312 Q108.7857 -6.5156 108.942 -6.4844 L108.8014 -5.5156 Q108.6451 -5.5469 108.4576 -5.5625 Q108.2701 -5.5938 108.1139 -5.5938 Q107.6139 -5.5938 107.1764 -5.3125 Q106.7545 -5.0469 106.4889 -4.5625 Q106.2389 -4.0781 106.2389 -3.4375 L106.2389 0 L105.1764 0 L105.1764 -6.4375 L106.0514 -6.4375 L106.1607 -5.25 L106.2076 -5.25 Q106.5201 -5.7812 107.0045 -6.1562 Q107.5045 -6.5469 108.1764 -6.5469 ZM109.7105 -2.3281 L114.2418 -4.2188 L109.7105 -6.3594 L109.7105 -7.2969 L115.3668 -4.4688 L115.3668 -3.875 L109.7105 -1.3906 L109.7105 -2.3281 ZM116.5746 -2.3281 L121.1058 -4.2188 L116.5746 -6.3594 L116.5746 -7.2969 L122.2308 -4.4688 L122.2308 -3.875 L116.5746 -1.3906 L116.5746 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath47);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-430.6363,-101.6559)"
+    ><path d="M7.7188 12.8281 L6.6406 12.8281 L6.6406 8.8281 L2.25 8.8281 L2.25 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.25 4.2656 L2.25 7.8906 L6.6406 7.8906 L6.6406 4.2656 L7.7188 4.2656 L7.7188 12.8281 ZM15.5014 9.5937 Q15.5014 11.2031 14.6889 12.0781 Q13.8764 12.9531 12.5014 12.9531 Q11.6577 12.9531 10.9858 12.5625 Q10.3139 12.1718 9.9233 11.4218 Q9.5483 10.6718 9.5483 9.5937 Q9.5483 8 10.3452 7.1406 Q11.1577 6.2812 12.5327 6.2812 Q13.4233 6.2812 14.0796 6.6718 Q14.7514 7.0625 15.1264 7.7968 Q15.5014 8.5312 15.5014 9.5937 ZM10.6421 9.5937 Q10.6421 10.7343 11.0952 11.4062 Q11.5483 12.0781 12.5327 12.0781 Q13.5014 12.0781 13.9546 11.4062 Q14.4077 10.7343 14.4077 9.5937 Q14.4077 8.4531 13.9546 7.8125 Q13.5014 7.1718 12.5171 7.1718 Q11.5327 7.1718 11.0796 7.8125 Q10.6421 8.4531 10.6421 9.5937 ZM19.324 12.0781 Q19.5584 12.0781 19.8084 12.0468 Q20.0584 12 20.2146 11.9531 L20.2146 12.75 Q20.0584 12.8437 19.7459 12.8906 Q19.4334 12.9531 19.1365 12.9531 Q18.6365 12.9531 18.199 12.7812 Q17.7771 12.5937 17.5115 12.1718 Q17.2615 11.7343 17.2615 10.9531 L17.2615 7.2187 L16.3396 7.2187 L16.3396 6.7031 L17.2615 6.2812 L17.6834 4.9218 L18.3084 4.9218 L18.3084 6.3906 L20.1677 6.3906 L20.1677 7.2187 L18.3084 7.2187 L18.3084 10.9375 Q18.3084 11.5156 18.5896 11.7968 Q18.8709 12.0781 19.324 12.0781 ZM23.9841 6.2812 Q24.8123 6.2812 25.406 6.6406 Q25.9998 7 26.3123 7.6562 Q26.6404 8.2968 26.6404 9.1875 L26.6404 9.8125 L22.2341 9.8125 Q22.2654 10.9062 22.7966 11.4843 Q23.3279 12.0468 24.281 12.0468 Q24.906 12.0468 25.3748 11.9375 Q25.8435 11.8125 26.3591 11.6093 L26.3591 12.5312 Q25.8591 12.75 25.3748 12.8437 Q24.906 12.9531 24.2341 12.9531 Q23.3279 12.9531 22.6248 12.5781 Q21.9216 12.2031 21.531 11.4687 Q21.1404 10.7343 21.1404 9.6562 Q21.1404 8.6093 21.4998 7.8593 Q21.8591 7.0937 22.4998 6.6875 Q23.1404 6.2812 23.9841 6.2812 ZM23.9685 7.1406 Q23.2185 7.1406 22.781 7.625 Q22.3435 8.1093 22.2654 8.9687 L25.531 8.9687 Q25.531 8.1562 25.156 7.6562 Q24.781 7.1406 23.9685 7.1406 ZM29.3303 12.8281 L28.2678 12.8281 L28.2678 3.7031 L29.3303 3.7031 L29.3303 12.8281 ZM36.7651 12.9531 Q35.562 12.9531 34.8432 12.125 Q34.1245 11.2812 34.1245 9.625 Q34.1245 7.9687 34.8432 7.125 Q35.5776 6.2812 36.7807 6.2812 Q37.5307 6.2812 37.9995 6.5625 Q38.4682 6.8281 38.7651 7.2187 L38.8432 7.2187 Q38.8276 7.0625 38.7964 6.7656 Q38.7651 6.4531 38.7651 6.2812 L38.7651 3.7031 L39.8276 3.7031 L39.8276 12.8281 L38.9839 12.8281 L38.8276 11.9687 L38.7651 11.9687 Q38.4839 12.375 37.9995 12.6718 Q37.5307 12.9531 36.7651 12.9531 ZM36.937 12.0781 Q37.9526 12.0781 38.3589 11.5156 Q38.7807 10.9531 38.7807 9.8281 L38.7807 9.6406 Q38.7807 8.4375 38.3901 7.7968 Q37.9995 7.1562 36.9214 7.1562 Q36.0776 7.1562 35.6401 7.8437 Q35.2182 8.5156 35.2182 9.6406 Q35.2182 10.7968 35.6401 11.4375 Q36.0776 12.0781 36.937 12.0781 ZM44.3014 6.2812 Q45.4733 6.2812 46.0358 6.7968 Q46.6139 7.3125 46.6139 8.4531 L46.6139 12.8281 L45.8327 12.8281 L45.6295 11.9218 L45.5827 11.9218 Q45.1608 12.4375 44.692 12.7031 Q44.2389 12.9531 43.4264 12.9531 Q42.5514 12.9531 41.9733 12.5 Q41.3952 12.0312 41.3952 11.0468 Q41.3952 10.0781 42.1452 9.5625 Q42.9108 9.0312 44.4889 8.9843 L45.5827 8.9531 L45.5827 8.5625 Q45.5827 7.7656 45.2233 7.4531 Q44.8795 7.1406 44.2389 7.1406 Q43.7389 7.1406 43.2858 7.2968 Q42.8327 7.4375 42.4264 7.625 L42.1139 6.8437 Q42.5358 6.6093 43.0983 6.4531 Q43.6764 6.2812 44.3014 6.2812 ZM44.6139 9.7187 Q43.4108 9.7656 42.942 10.1093 Q42.4889 10.4375 42.4889 11.0468 Q42.4889 11.5937 42.817 11.8437 Q43.1452 12.0937 43.6608 12.0937 Q44.4889 12.0937 45.0202 11.6562 Q45.567 11.2031 45.567 10.2656 L45.567 9.6875 L44.6139 9.7187 ZM50.7522 12.0781 Q50.9866 12.0781 51.2366 12.0468 Q51.4866 12 51.6428 11.9531 L51.6428 12.75 Q51.4866 12.8437 51.1741 12.8906 Q50.8616 12.9531 50.5647 12.9531 Q50.0647 12.9531 49.6272 12.7812 Q49.2053 12.5937 48.9397 12.1718 Q48.6897 11.7343 48.6897 10.9531 L48.6897 7.2187 L47.7678 7.2187 L47.7678 6.7031 L48.6897 6.2812 L49.1116 4.9218 L49.7366 4.9218 L49.7366 6.3906 L51.596 6.3906 L51.596 7.2187 L49.7366 7.2187 L49.7366 10.9375 Q49.7366 11.5156 50.0178 11.7968 Q50.2991 12.0781 50.7522 12.0781 ZM55.3655 6.2812 Q56.5374 6.2812 57.0999 6.7968 Q57.678 7.3125 57.678 8.4531 L57.678 12.8281 L56.8967 12.8281 L56.6936 11.9218 L56.6467 11.9218 Q56.2249 12.4375 55.7561 12.7031 Q55.303 12.9531 54.4905 12.9531 Q53.6155 12.9531 53.0374 12.5 Q52.4592 12.0312 52.4592 11.0468 Q52.4592 10.0781 53.2092 9.5625 Q53.9749 9.0312 55.553 8.9843 L56.6467 8.9531 L56.6467 8.5625 Q56.6467 7.7656 56.2874 7.4531 Q55.9436 7.1406 55.303 7.1406 Q54.803 7.1406 54.3499 7.2968 Q53.8967 7.4375 53.4905 7.625 L53.178 6.8437 Q53.5999 6.6093 54.1624 6.4531 Q54.7405 6.2812 55.3655 6.2812 ZM55.678 9.7187 Q54.4749 9.7656 54.0061 10.1093 Q53.553 10.4375 53.553 11.0468 Q53.553 11.5937 53.8811 11.8437 Q54.2092 12.0937 54.7249 12.0937 Q55.553 12.0937 56.0842 11.6562 Q56.6311 11.2031 56.6311 10.2656 L56.6311 9.6875 L55.678 9.7187 ZM60.7225 5.9218 Q60.7225 6.3437 60.7069 6.7031 Q60.6913 7.0468 60.66 7.25 L60.7225 7.25 Q61.0038 6.8437 61.4725 6.5625 Q61.9569 6.2812 62.7069 6.2812 Q63.91 6.2812 64.6288 7.125 Q65.3632 7.9531 65.3632 9.6093 Q65.3632 11.2656 64.6288 12.1093 Q63.8944 12.9531 62.7069 12.9531 Q61.9569 12.9531 61.4725 12.6718 Q61.0038 12.3906 60.7225 12.0156 L60.6288 12.0156 L60.4257 12.8281 L59.66 12.8281 L59.66 3.7031 L60.7225 3.7031 L60.7225 5.9218 ZM62.535 7.1718 Q61.5194 7.1718 61.1132 7.7656 Q60.7225 8.3437 60.7225 9.5781 L60.7225 9.625 Q60.7225 10.8125 61.1132 11.4531 Q61.5038 12.0781 62.5507 12.0781 Q63.4257 12.0781 63.8475 11.4375 Q64.2694 10.7968 64.2694 9.5937 Q64.2694 7.1718 62.535 7.1718 ZM69.4776 6.2812 Q70.6495 6.2812 71.212 6.7968 Q71.7901 7.3125 71.7901 8.4531 L71.7901 12.8281 L71.0088 12.8281 L70.8057 11.9218 L70.7588 11.9218 Q70.337 12.4375 69.8682 12.7031 Q69.4151 12.9531 68.6026 12.9531 Q67.7276 12.9531 67.1495 12.5 Q66.5713 12.0312 66.5713 11.0468 Q66.5713 10.0781 67.3213 9.5625 Q68.087 9.0312 69.6651 8.9843 L70.7588 8.9531 L70.7588 8.5625 Q70.7588 7.7656 70.3995 7.4531 Q70.0557 7.1406 69.4151 7.1406 Q68.9151 7.1406 68.462 7.2968 Q68.0088 7.4375 67.6026 7.625 L67.2901 6.8437 Q67.712 6.6093 68.2745 6.4531 Q68.8526 6.2812 69.4776 6.2812 ZM69.7901 9.7187 Q68.587 9.7656 68.1182 10.1093 Q67.6651 10.4375 67.6651 11.0468 Q67.6651 11.5937 67.9932 11.8437 Q68.3213 12.0937 68.837 12.0937 Q69.6651 12.0937 70.1963 11.6562 Q70.7432 11.2031 70.7432 10.2656 L70.7432 9.6875 L69.7901 9.7187 ZM77.9596 11.0468 Q77.9596 11.9843 77.2565 12.4687 Q76.569 12.9531 75.3971 12.9531 Q74.7253 12.9531 74.2409 12.8437 Q73.7565 12.7343 73.3815 12.5468 L73.3815 11.5781 Q73.7721 11.7656 74.3034 11.9375 Q74.8503 12.0937 75.4128 12.0937 Q76.2253 12.0937 76.5846 11.8437 Q76.944 11.5781 76.944 11.1406 Q76.944 10.9062 76.8034 10.7187 Q76.6784 10.5312 76.3346 10.3437 Q75.9909 10.1406 75.3659 9.9062 Q74.7409 9.6562 74.2878 9.4218 Q73.8503 9.1875 73.6003 8.8593 Q73.3659 8.5156 73.3659 7.9843 Q73.3659 7.1718 74.0221 6.7343 Q74.694 6.2812 75.7878 6.2812 Q76.3659 6.2812 76.8659 6.3906 Q77.3815 6.5 77.8346 6.7031 L77.4753 7.5468 Q77.069 7.375 76.6159 7.2656 Q76.1784 7.1406 75.7096 7.1406 Q75.0534 7.1406 74.7096 7.3593 Q74.3815 7.5625 74.3815 7.9218 Q74.3815 8.1875 74.5378 8.375 Q74.694 8.5625 75.0534 8.7343 Q75.4128 8.9062 76.0378 9.1406 Q76.6471 9.375 77.069 9.625 Q77.5065 9.8593 77.7253 10.2031 Q77.9596 10.5312 77.9596 11.0468 ZM82.0045 6.2812 Q82.8327 6.2812 83.4264 6.6406 Q84.0202 7 84.3327 7.6562 Q84.6608 8.2968 84.6608 9.1875 L84.6608 9.8125 L80.2545 9.8125 Q80.2858 10.9062 80.817 11.4843 Q81.3483 12.0468 82.3014 12.0468 Q82.9264 12.0468 83.3952 11.9375 Q83.8639 11.8125 84.3795 11.6093 L84.3795 12.5312 Q83.8795 12.75 83.3952 12.8437 Q82.9264 12.9531 82.2545 12.9531 Q81.3483 12.9531 80.6452 12.5781 Q79.942 12.2031 79.5514 11.4687 Q79.1608 10.7343 79.1608 9.6562 Q79.1608 8.6093 79.5202 7.8593 Q79.8795 7.0937 80.5202 6.6875 Q81.1608 6.2812 82.0045 6.2812 ZM81.9889 7.1406 Q81.2389 7.1406 80.8014 7.625 Q80.3639 8.1093 80.2858 8.9687 L83.5514 8.9687 Q83.5514 8.1562 83.1764 7.6562 Q82.8014 7.1406 81.9889 7.1406 Z" style="stroke:none; clip-path:url(#clipPath48);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-447.9175" y="-262.2308" width="119" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="-447.9175" y="-262.2308" width="119" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="-346.9175" y="-256.2308" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="-346.9175" y="-256.2308" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="-348.9175" y="-248.2308" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-348.9175" y="-248.2308" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="-348.9175" y="-253.2308" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-348.9175" y="-253.2308" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-433.9175,-244.2308)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM24.5613 -6.5469 Q25.7331 -6.5469 26.2956 -6.0312 Q26.8738 -5.5156 26.8738 -4.375 L26.8738 0 L26.0925 0 L25.8894 -0.9062 L25.8425 -0.9062 Q25.4206 -0.3906 24.9519 -0.125 Q24.4988 0.125 23.6863 0.125 Q22.8113 0.125 22.2331 -0.3281 Q21.655 -0.7969 21.655 -1.7812 Q21.655 -2.75 22.405 -3.2656 Q23.1706 -3.7969 24.7488 -3.8438 L25.8425 -3.875 L25.8425 -4.2656 Q25.8425 -5.0625 25.4831 -5.375 Q25.1394 -5.6875 24.4988 -5.6875 Q23.9988 -5.6875 23.5456 -5.5312 Q23.0925 -5.3906 22.6863 -5.2031 L22.3738 -5.9844 Q22.7956 -6.2188 23.3581 -6.375 Q23.9363 -6.5469 24.5613 -6.5469 ZM24.8738 -3.1094 Q23.6706 -3.0625 23.2019 -2.7188 Q22.7488 -2.3906 22.7488 -1.7812 Q22.7488 -1.2344 23.0769 -0.9844 Q23.405 -0.7344 23.9206 -0.7344 Q24.7488 -0.7344 25.28 -1.1719 Q25.8269 -1.625 25.8269 -2.5625 L25.8269 -3.1406 L24.8738 -3.1094 ZM31.0121 -0.75 Q31.2464 -0.75 31.4964 -0.7812 Q31.7464 -0.8281 31.9027 -0.875 L31.9027 -0.0781 Q31.7464 0.0156 31.4339 0.0625 Q31.1214 0.125 30.8246 0.125 Q30.3246 0.125 29.8871 -0.0469 Q29.4652 -0.2344 29.1996 -0.6562 Q28.9496 -1.0938 28.9496 -1.875 L28.9496 -5.6094 L28.0277 -5.6094 L28.0277 -6.125 L28.9496 -6.5469 L29.3714 -7.9062 L29.9964 -7.9062 L29.9964 -6.4375 L31.8558 -6.4375 L31.8558 -5.6094 L29.9964 -5.6094 L29.9964 -1.8906 Q29.9964 -1.3125 30.2777 -1.0312 Q30.5589 -0.75 31.0121 -0.75 ZM35.6253 -6.5469 Q36.7972 -6.5469 37.3597 -6.0312 Q37.9378 -5.5156 37.9378 -4.375 L37.9378 0 L37.1566 0 L36.9535 -0.9062 L36.9066 -0.9062 Q36.4847 -0.3906 36.016 -0.125 Q35.5628 0.125 34.7503 0.125 Q33.8753 0.125 33.2972 -0.3281 Q32.7191 -0.7969 32.7191 -1.7812 Q32.7191 -2.75 33.4691 -3.2656 Q34.2347 -3.7969 35.8128 -3.8438 L36.9066 -3.875 L36.9066 -4.2656 Q36.9066 -5.0625 36.5472 -5.375 Q36.2035 -5.6875 35.5628 -5.6875 Q35.0628 -5.6875 34.6097 -5.5312 Q34.1566 -5.3906 33.7503 -5.2031 L33.4378 -5.9844 Q33.8597 -6.2188 34.4222 -6.375 Q35.0003 -6.5469 35.6253 -6.5469 ZM35.9378 -3.1094 Q34.7347 -3.0625 34.266 -2.7188 Q33.8128 -2.3906 33.8128 -1.7812 Q33.8128 -1.2344 34.141 -0.9844 Q34.4691 -0.7344 34.9847 -0.7344 Q35.8128 -0.7344 36.3441 -1.1719 Q36.891 -1.625 36.891 -2.5625 L36.891 -3.1406 L35.9378 -3.1094 ZM40.9824 -6.9062 Q40.9824 -6.4844 40.9668 -6.125 Q40.9511 -5.7812 40.9199 -5.5781 L40.9824 -5.5781 Q41.2636 -5.9844 41.7324 -6.2656 Q42.2168 -6.5469 42.9668 -6.5469 Q44.1699 -6.5469 44.8886 -5.7031 Q45.623 -4.875 45.623 -3.2188 Q45.623 -1.5625 44.8886 -0.7188 Q44.1543 0.125 42.9668 0.125 Q42.2168 0.125 41.7324 -0.1562 Q41.2636 -0.4375 40.9824 -0.8125 L40.8886 -0.8125 L40.6855 0 L39.9199 0 L39.9199 -9.125 L40.9824 -9.125 L40.9824 -6.9062 ZM42.7949 -5.6562 Q41.7793 -5.6562 41.373 -5.0625 Q40.9824 -4.4844 40.9824 -3.25 L40.9824 -3.2031 Q40.9824 -2.0156 41.373 -1.375 Q41.7636 -0.75 42.8105 -0.75 Q43.6855 -0.75 44.1074 -1.3906 Q44.5293 -2.0312 44.5293 -3.2344 Q44.5293 -5.6562 42.7949 -5.6562 ZM49.7374 -6.5469 Q50.9093 -6.5469 51.4718 -6.0312 Q52.0499 -5.5156 52.0499 -4.375 L52.0499 0 L51.2687 0 L51.0656 -0.9062 L51.0187 -0.9062 Q50.5968 -0.3906 50.1281 -0.125 Q49.6749 0.125 48.8624 0.125 Q47.9874 0.125 47.4093 -0.3281 Q46.8312 -0.7969 46.8312 -1.7812 Q46.8312 -2.75 47.5812 -3.2656 Q48.3468 -3.7969 49.9249 -3.8438 L51.0187 -3.875 L51.0187 -4.2656 Q51.0187 -5.0625 50.6593 -5.375 Q50.3156 -5.6875 49.6749 -5.6875 Q49.1749 -5.6875 48.7218 -5.5312 Q48.2687 -5.3906 47.8624 -5.2031 L47.5499 -5.9844 Q47.9718 -6.2188 48.5343 -6.375 Q49.1124 -6.5469 49.7374 -6.5469 ZM50.0499 -3.1094 Q48.8468 -3.0625 48.3781 -2.7188 Q47.9249 -2.3906 47.9249 -1.7812 Q47.9249 -1.2344 48.2531 -0.9844 Q48.5812 -0.7344 49.0968 -0.7344 Q49.9249 -0.7344 50.4562 -1.1719 Q51.0031 -1.625 51.0031 -2.5625 L51.0031 -3.1406 L50.0499 -3.1094 ZM58.2195 -1.7812 Q58.2195 -0.8438 57.5163 -0.3594 Q56.8288 0.125 55.657 0.125 Q54.9851 0.125 54.5007 0.0156 Q54.0163 -0.0938 53.6413 -0.2812 L53.6413 -1.25 Q54.032 -1.0625 54.5632 -0.8906 Q55.1101 -0.7344 55.6726 -0.7344 Q56.4851 -0.7344 56.8445 -0.9844 Q57.2038 -1.25 57.2038 -1.6875 Q57.2038 -1.9219 57.0632 -2.1094 Q56.9382 -2.2969 56.5945 -2.4844 Q56.2507 -2.6875 55.6257 -2.9219 Q55.0007 -3.1719 54.5476 -3.4062 Q54.1101 -3.6406 53.8601 -3.9688 Q53.6257 -4.3125 53.6257 -4.8438 Q53.6257 -5.6562 54.282 -6.0938 Q54.9538 -6.5469 56.0476 -6.5469 Q56.6257 -6.5469 57.1257 -6.4375 Q57.6413 -6.3281 58.0945 -6.125 L57.7351 -5.2812 Q57.3288 -5.4531 56.8757 -5.5625 Q56.4382 -5.6875 55.9695 -5.6875 Q55.3132 -5.6875 54.9695 -5.4688 Q54.6413 -5.2656 54.6413 -4.9062 Q54.6413 -4.6406 54.7976 -4.4531 Q54.9538 -4.2656 55.3132 -4.0938 Q55.6726 -3.9219 56.2976 -3.6875 Q56.907 -3.4531 57.3288 -3.2031 Q57.7663 -2.9688 57.9851 -2.625 Q58.2195 -2.2969 58.2195 -1.7812 ZM62.2644 -6.5469 Q63.0925 -6.5469 63.6863 -6.1875 Q64.28 -5.8281 64.5925 -5.1719 Q64.9206 -4.5312 64.9206 -3.6406 L64.9206 -3.0156 L60.5144 -3.0156 Q60.5456 -1.9219 61.0769 -1.3438 Q61.6081 -0.7812 62.5613 -0.7812 Q63.1863 -0.7812 63.655 -0.8906 Q64.1238 -1.0156 64.6394 -1.2188 L64.6394 -0.2969 Q64.1394 -0.0781 63.655 0.0156 Q63.1863 0.125 62.5144 0.125 Q61.6081 0.125 60.905 -0.25 Q60.2019 -0.625 59.8113 -1.3594 Q59.4206 -2.0938 59.4206 -3.1719 Q59.4206 -4.2188 59.78 -4.9688 Q60.1394 -5.7344 60.78 -6.1406 Q61.4206 -6.5469 62.2644 -6.5469 ZM62.2488 -5.6875 Q61.4988 -5.6875 61.0613 -5.2031 Q60.6238 -4.7188 60.5456 -3.8594 L63.8113 -3.8594 Q63.8113 -4.6719 63.4363 -5.1719 Q63.0613 -5.6875 62.2488 -5.6875 ZM66.1262 -2.3281 L70.6574 -4.2188 L66.1262 -6.3594 L66.1262 -7.2969 L71.7824 -4.4688 L71.7824 -3.875 L66.1262 -1.3906 L66.1262 -2.3281 ZM72.9902 -2.3281 L77.5215 -4.2188 L72.9902 -6.3594 L72.9902 -7.2969 L78.6465 -4.4688 L78.6465 -3.875 L72.9902 -1.3906 L72.9902 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath49);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-418.9175,-241.8867)"
+    ><path d="M7.6875 9.7968 Q7.6875 10.6875 7.3125 11.4062 Q6.9531 12.125 6.2188 12.5468 Q5.4844 12.9531 4.3438 12.9531 Q2.75 12.9531 1.9062 12.0781 Q1.0781 11.2031 1.0781 9.7812 L1.0781 4.2656 L2.1562 4.2656 L2.1562 9.8125 Q2.1562 10.8593 2.7188 11.4375 Q3.2812 12.0156 4.4062 12.0156 Q5.5625 12.0156 6.0781 11.4062 Q6.6094 10.7812 6.6094 9.7968 L6.6094 4.2656 L7.6875 4.2656 L7.6875 9.7968 ZM13.9752 11.0468 Q13.9752 11.9843 13.2721 12.4687 Q12.5846 12.9531 11.4127 12.9531 Q10.7408 12.9531 10.2564 12.8437 Q9.7721 12.7343 9.3971 12.5468 L9.3971 11.5781 Q9.7877 11.7656 10.3189 11.9375 Q10.8658 12.0937 11.4283 12.0937 Q12.2408 12.0937 12.6002 11.8437 Q12.9596 11.5781 12.9596 11.1406 Q12.9596 10.9062 12.8189 10.7187 Q12.6939 10.5312 12.3502 10.3437 Q12.0064 10.1406 11.3814 9.9062 Q10.7564 9.6562 10.3033 9.4218 Q9.8658 9.1875 9.6158 8.8593 Q9.3814 8.5156 9.3814 7.9843 Q9.3814 7.1718 10.0377 6.7343 Q10.7096 6.2812 11.8033 6.2812 Q12.3814 6.2812 12.8814 6.3906 Q13.3971 6.5 13.8502 6.7031 L13.4908 7.5468 Q13.0846 7.375 12.6314 7.2656 Q12.1939 7.1406 11.7252 7.1406 Q11.0689 7.1406 10.7252 7.3593 Q10.3971 7.5625 10.3971 7.9218 Q10.3971 8.1875 10.5533 8.375 Q10.7096 8.5625 11.0689 8.7343 Q11.4283 8.9062 12.0533 9.1406 Q12.6627 9.375 13.0846 9.625 Q13.5221 9.8593 13.7408 10.2031 Q13.9752 10.5312 13.9752 11.0468 ZM18.0201 6.2812 Q18.8482 6.2812 19.442 6.6406 Q20.0357 7 20.3482 7.6562 Q20.6764 8.2968 20.6764 9.1875 L20.6764 9.8125 L16.2701 9.8125 Q16.3014 10.9062 16.8326 11.4843 Q17.3639 12.0468 18.317 12.0468 Q18.942 12.0468 19.4107 11.9375 Q19.8795 11.8125 20.3951 11.6093 L20.3951 12.5312 Q19.8951 12.75 19.4107 12.8437 Q18.942 12.9531 18.2701 12.9531 Q17.3639 12.9531 16.6607 12.5781 Q15.9576 12.2031 15.567 11.4687 Q15.1764 10.7343 15.1764 9.6562 Q15.1764 8.6093 15.5357 7.8593 Q15.8951 7.0937 16.5357 6.6875 Q17.1764 6.2812 18.0201 6.2812 ZM18.0045 7.1406 Q17.2545 7.1406 16.817 7.625 Q16.3795 8.1093 16.3014 8.9687 L19.567 8.9687 Q19.567 8.1562 19.192 7.6562 Q18.817 7.1406 18.0045 7.1406 ZM25.3038 6.2812 Q25.4913 6.2812 25.6944 6.2968 Q25.9132 6.3125 26.0694 6.3437 L25.9288 7.3125 Q25.7725 7.2812 25.585 7.2656 Q25.3975 7.2343 25.2413 7.2343 Q24.7413 7.2343 24.3038 7.5156 Q23.8819 7.7812 23.6163 8.2656 Q23.3663 8.75 23.3663 9.3906 L23.3663 12.8281 L22.3038 12.8281 L22.3038 6.3906 L23.1788 6.3906 L23.2882 7.5781 L23.335 7.5781 Q23.6475 7.0468 24.1319 6.6718 Q24.6319 6.2812 25.3038 6.2812 ZM31.4473 11.0468 Q31.4473 11.9843 30.7442 12.4687 Q30.0567 12.9531 28.8848 12.9531 Q28.213 12.9531 27.7286 12.8437 Q27.2442 12.7343 26.8692 12.5468 L26.8692 11.5781 Q27.2598 11.7656 27.7911 11.9375 Q28.338 12.0937 28.9005 12.0937 Q29.713 12.0937 30.0723 11.8437 Q30.4317 11.5781 30.4317 11.1406 Q30.4317 10.9062 30.2911 10.7187 Q30.1661 10.5312 29.8223 10.3437 Q29.4786 10.1406 28.8536 9.9062 Q28.2286 9.6562 27.7755 9.4218 Q27.338 9.1875 27.088 8.8593 Q26.8536 8.5156 26.8536 7.9843 Q26.8536 7.1718 27.5098 6.7343 Q28.1817 6.2812 29.2755 6.2812 Q29.8536 6.2812 30.3536 6.3906 Q30.8692 6.5 31.3223 6.7031 L30.963 7.5468 Q30.5567 7.375 30.1036 7.2656 Q29.6661 7.1406 29.1973 7.1406 Q28.5411 7.1406 28.1973 7.3593 Q27.8692 7.5625 27.8692 7.9218 Q27.8692 8.1875 28.0255 8.375 Q28.1817 8.5625 28.5411 8.7343 Q28.9005 8.9062 29.5255 9.1406 Q30.1348 9.375 30.5567 9.625 Q30.9942 9.8593 31.213 10.2031 Q31.4473 10.5312 31.4473 11.0468 ZM40.0235 8.4531 Q40.0235 10.625 38.836 11.7343 Q37.6485 12.8281 35.5391 12.8281 L33.1485 12.8281 L33.1485 4.2656 L35.7891 4.2656 Q37.086 4.2656 38.0391 4.75 Q38.9922 5.2187 39.5079 6.1562 Q40.0235 7.0781 40.0235 8.4531 ZM38.8829 8.5 Q38.8829 6.7812 38.0391 5.9843 Q37.1954 5.1875 35.6329 5.1875 L34.2422 5.1875 L34.2422 11.9062 L35.3985 11.9062 Q38.8829 11.9062 38.8829 8.5 ZM44.3617 4.2656 Q45.9711 4.2656 46.7836 4.7343 Q47.6117 5.2031 47.6117 6.3906 Q47.6117 7.1406 47.1898 7.6406 Q46.7836 8.1406 45.9867 8.2812 L45.9867 8.3437 Q46.5179 8.4218 46.9554 8.6562 Q47.3929 8.875 47.6429 9.2968 Q47.9086 9.7187 47.9086 10.3906 Q47.9086 11.5625 47.1117 12.2031 Q46.3148 12.8281 44.9242 12.8281 L41.9086 12.8281 L41.9086 4.2656 L44.3617 4.2656 ZM44.5804 7.9062 Q45.6898 7.9062 46.0961 7.5625 Q46.5023 7.2031 46.5023 6.5 Q46.5023 5.7968 46.0023 5.5 Q45.5023 5.1875 44.4086 5.1875 L43.0023 5.1875 L43.0023 7.9062 L44.5804 7.9062 ZM43.0023 8.8125 L43.0023 11.9218 L44.7211 11.9218 Q45.8617 11.9218 46.2992 11.4843 Q46.7523 11.0312 46.7523 10.3125 Q46.7523 9.6406 46.2836 9.2343 Q45.8304 8.8125 44.6429 8.8125 L43.0023 8.8125 Z" style="stroke:none; clip-path:url(#clipPath50);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -487 -62 -483 -66 -285 -66 -285 53 -289 57 -487 57"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -487 -62 -483 -66 -285 -66 -285 53 -289 57 -487 57"
+      /><line x1="-289" x2="-286" y1="-62" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-65"
+      /><line x1="-487" x2="-289" y1="-62" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-62"
+      /><line x1="-289" x2="-289" y1="-62" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="57"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-467.66,-44.7999)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath51);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-407.6261,-41.6559)"
+    ><path d="M4.9375 12.8281 L2.125 5.3125 L2.0781 5.3125 Q2.1094 5.6875 2.125 6.3281 Q2.1562 6.9531 2.1562 7.625 L2.1562 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.7656 4.2656 L5.4062 11.2812 L5.4531 11.2812 L8.1406 4.2656 L9.7188 4.2656 L9.7188 12.8281 L8.6562 12.8281 L8.6562 7.5625 Q8.6562 6.9375 8.6875 6.3281 Q8.7188 5.7187 8.7344 5.3281 L8.6875 5.3281 L5.8281 12.8281 L4.9375 12.8281 ZM10.8997 6.3906 L12.0247 6.3906 L13.4153 10.0625 Q13.6028 10.5312 13.7435 10.9687 Q13.8841 11.4062 13.9622 11.8125 L14.0091 11.8125 Q14.0716 11.5156 14.2278 11.0312 Q14.3841 10.5312 14.556 10.0468 L15.8685 6.3906 L17.0091 6.3906 L14.2278 13.7187 Q13.8997 14.625 13.3528 15.1562 Q12.8216 15.7031 11.8997 15.7031 Q11.6028 15.7031 11.3841 15.6718 Q11.1653 15.6406 11.0091 15.6093 L11.0091 14.7656 Q11.1497 14.7968 11.3372 14.8125 Q11.5247 14.8437 11.7278 14.8437 Q12.2747 14.8437 12.6185 14.5312 Q12.9622 14.2187 13.1497 13.7031 L13.4935 12.8593 L10.8997 6.3906 ZM23.0354 10.5312 Q23.0354 11.6718 22.2072 12.3125 Q21.3791 12.9531 19.9729 12.9531 Q19.2541 12.9531 18.6291 12.8437 Q18.0197 12.7343 17.6135 12.5468 L17.6135 11.5156 Q18.051 11.7031 18.6916 11.8593 Q19.3322 12.0156 20.0197 12.0156 Q20.9729 12.0156 21.4572 11.6406 Q21.9416 11.2656 21.9416 10.625 Q21.9416 10.2187 21.7541 9.9375 Q21.5822 9.6406 21.1447 9.3906 Q20.7072 9.1406 19.926 8.875 Q18.8479 8.4687 18.2854 7.8906 Q17.7229 7.3125 17.7229 6.3281 Q17.7229 5.6406 18.0666 5.1562 Q18.426 4.6718 19.0354 4.4062 Q19.6604 4.1406 20.4572 4.1406 Q21.1604 4.1406 21.7541 4.2812 Q22.3479 4.4062 22.8166 4.625 L22.4885 5.5468 Q22.051 5.3593 21.5197 5.2343 Q21.0041 5.0937 20.4416 5.0937 Q19.6291 5.0937 19.2229 5.4375 Q18.8166 5.7656 18.8166 6.3437 Q18.8166 6.7656 18.9885 7.0625 Q19.176 7.3437 19.5822 7.5781 Q19.9885 7.7968 20.6916 8.0625 Q21.4416 8.3437 21.9572 8.6562 Q22.4885 8.9687 22.7541 9.4218 Q23.0354 9.8593 23.0354 10.5312 ZM32.2328 8.5312 Q32.2328 10.1093 31.5922 11.2187 Q30.9672 12.3125 29.7328 12.7343 L31.7953 14.875 L30.2328 14.875 L28.5765 12.9375 Q28.514 12.9375 28.4359 12.9375 Q28.3578 12.9531 28.2797 12.9531 Q26.9515 12.9531 26.0609 12.4062 Q25.1859 11.8437 24.7484 10.8593 Q24.3265 9.8593 24.3265 8.5156 Q24.3265 7.2031 24.7484 6.2187 Q25.1859 5.2343 26.0609 4.6875 Q26.9515 4.125 28.2953 4.125 Q29.5765 4.125 30.4515 4.6718 Q31.3265 5.2187 31.7797 6.2187 Q32.2328 7.2031 32.2328 8.5312 ZM25.4672 8.5312 Q25.4672 10.1562 26.139 11.0937 Q26.8265 12.0156 28.2797 12.0156 Q29.7484 12.0156 30.4203 11.0937 Q31.0922 10.1562 31.0922 8.5312 Q31.0922 6.9062 30.4203 6 Q29.7484 5.0781 28.2953 5.0781 Q26.8422 5.0781 26.1547 6 Q25.4672 6.9062 25.4672 8.5312 ZM34.1205 12.8281 L34.1205 4.2656 L35.2142 4.2656 L35.2142 11.875 L38.9486 11.875 L38.9486 12.8281 L34.1205 12.8281 Z" style="stroke:none; clip-path:url(#clipPath52);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><line x1="-619.9153" x2="-502.66" y1="-25.3923" style="fill:none; clip-path:url(#clipPath2);" y2="-25.3923"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-573.0177,-10.5644)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath53);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -502 119 -498 115 -270 115 -270 308 -274 312 -502 312"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -502 119 -498 115 -270 115 -270 308 -274 312 -502 312"
+      /><line x1="-274" x2="-271" y1="119" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="116"
+      /><line x1="-502" x2="-274" y1="119" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="119"
+      /><line x1="-274" x2="-274" y1="119" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="312"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-449.8399,137.3806)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM27.7175 -3.2344 Q27.7175 -1.625 26.905 -0.75 Q26.0925 0.125 24.7175 0.125 Q23.8738 0.125 23.2019 -0.2656 Q22.53 -0.6562 22.1394 -1.4062 Q21.7644 -2.1562 21.7644 -3.2344 Q21.7644 -4.8281 22.5613 -5.6875 Q23.3738 -6.5469 24.7488 -6.5469 Q25.6394 -6.5469 26.2956 -6.1562 Q26.9675 -5.7656 27.3425 -5.0312 Q27.7175 -4.2969 27.7175 -3.2344 ZM22.8581 -3.2344 Q22.8581 -2.0938 23.3113 -1.4219 Q23.7644 -0.75 24.7488 -0.75 Q25.7175 -0.75 26.1706 -1.4219 Q26.6238 -2.0938 26.6238 -3.2344 Q26.6238 -4.375 26.1706 -5.0156 Q25.7175 -5.6562 24.7331 -5.6562 Q23.7488 -5.6562 23.2956 -5.0156 Q22.8581 -4.375 22.8581 -3.2344 ZM31.9619 0.125 Q31.1182 0.125 30.4463 -0.2188 Q29.7901 -0.5781 29.3994 -1.3125 Q29.0244 -2.0469 29.0244 -3.1875 Q29.0244 -4.375 29.4151 -5.1094 Q29.8213 -5.8594 30.4932 -6.2031 Q31.1807 -6.5469 32.0401 -6.5469 Q32.5244 -6.5469 32.9776 -6.4375 Q33.4463 -6.3438 33.7276 -6.2031 L33.4151 -5.3281 Q33.1182 -5.4375 32.7276 -5.5312 Q32.3526 -5.625 32.0088 -5.625 Q30.1182 -5.625 30.1182 -3.1875 Q30.1182 -2.0312 30.5713 -1.4062 Q31.0401 -0.7969 31.9619 -0.7969 Q32.4776 -0.7969 32.8838 -0.9062 Q33.2901 -1.0156 33.6182 -1.1562 L33.6182 -0.2344 Q33.3057 -0.0625 32.9151 0.0312 Q32.5244 0.125 31.9619 0.125 ZM36.1907 -4.3594 Q36.1907 -4.1562 36.1751 -3.8438 Q36.1595 -3.5469 36.1439 -3.3125 L36.1907 -3.3125 Q36.2689 -3.4062 36.4095 -3.5781 Q36.5501 -3.7656 36.6907 -3.9531 Q36.847 -4.1406 36.9564 -4.2656 L39.0189 -6.4375 L40.2532 -6.4375 L37.6439 -3.6875 L40.4251 0 L39.1595 0 L36.9251 -3 L36.1907 -2.3594 L36.1907 0 L35.1439 0 L35.1439 -9.125 L36.1907 -9.125 L36.1907 -4.3594 ZM44.0363 -6.5469 Q44.8644 -6.5469 45.4582 -6.1875 Q46.0519 -5.8281 46.3644 -5.1719 Q46.6925 -4.5312 46.6925 -3.6406 L46.6925 -3.0156 L42.2863 -3.0156 Q42.3175 -1.9219 42.8488 -1.3438 Q43.38 -0.7812 44.3332 -0.7812 Q44.9582 -0.7812 45.4269 -0.8906 Q45.8957 -1.0156 46.4113 -1.2188 L46.4113 -0.2969 Q45.9113 -0.0781 45.4269 0.0156 Q44.9582 0.125 44.2863 0.125 Q43.38 0.125 42.6769 -0.25 Q41.9738 -0.625 41.5832 -1.3594 Q41.1925 -2.0938 41.1925 -3.1719 Q41.1925 -4.2188 41.5519 -4.9688 Q41.9113 -5.7344 42.5519 -6.1406 Q43.1925 -6.5469 44.0363 -6.5469 ZM44.0207 -5.6875 Q43.2707 -5.6875 42.8332 -5.2031 Q42.3957 -4.7188 42.3175 -3.8594 L45.5832 -3.8594 Q45.5832 -4.6719 45.2082 -5.1719 Q44.8332 -5.6875 44.0207 -5.6875 ZM51.32 -6.5469 Q51.5075 -6.5469 51.7106 -6.5312 Q51.9293 -6.5156 52.0856 -6.4844 L51.945 -5.5156 Q51.7887 -5.5469 51.6012 -5.5625 Q51.4137 -5.5938 51.2575 -5.5938 Q50.7575 -5.5938 50.32 -5.3125 Q49.8981 -5.0469 49.6325 -4.5625 Q49.3825 -4.0781 49.3825 -3.4375 L49.3825 0 L48.32 0 L48.32 -6.4375 L49.195 -6.4375 L49.3043 -5.25 L49.3512 -5.25 Q49.6637 -5.7812 50.1481 -6.1562 Q50.6481 -6.5469 51.32 -6.5469 ZM58.9742 0.125 Q58.1304 0.125 57.4585 -0.2188 Q56.8023 -0.5781 56.4117 -1.3125 Q56.0367 -2.0469 56.0367 -3.1875 Q56.0367 -4.375 56.4273 -5.1094 Q56.8335 -5.8594 57.5054 -6.2031 Q58.1929 -6.5469 59.0523 -6.5469 Q59.5367 -6.5469 59.9898 -6.4375 Q60.4585 -6.3438 60.7398 -6.2031 L60.4273 -5.3281 Q60.1304 -5.4375 59.7398 -5.5312 Q59.3648 -5.625 59.021 -5.625 Q57.1304 -5.625 57.1304 -3.1875 Q57.1304 -2.0312 57.5835 -1.4062 Q58.0523 -0.7969 58.9742 -0.7969 Q59.4898 -0.7969 59.896 -0.9062 Q60.3023 -1.0156 60.6304 -1.1562 L60.6304 -0.2344 Q60.3179 -0.0625 59.9273 0.0312 Q59.5367 0.125 58.9742 0.125 ZM67.7498 -3.2344 Q67.7498 -1.625 66.9373 -0.75 Q66.1248 0.125 64.7498 0.125 Q63.9061 0.125 63.2342 -0.2656 Q62.5623 -0.6562 62.1717 -1.4062 Q61.7967 -2.1562 61.7967 -3.2344 Q61.7967 -4.8281 62.5936 -5.6875 Q63.4061 -6.5469 64.7811 -6.5469 Q65.6717 -6.5469 66.3279 -6.1562 Q66.9998 -5.7656 67.3748 -5.0312 Q67.7498 -4.2969 67.7498 -3.2344 ZM62.8904 -3.2344 Q62.8904 -2.0938 63.3436 -1.4219 Q63.7967 -0.75 64.7811 -0.75 Q65.7498 -0.75 66.2029 -1.4219 Q66.6561 -2.0938 66.6561 -3.2344 Q66.6561 -4.375 66.2029 -5.0156 Q65.7498 -5.6562 64.7654 -5.6562 Q63.7811 -5.6562 63.3279 -5.0156 Q62.8904 -4.375 62.8904 -3.2344 ZM72.5099 -6.5469 Q73.6661 -6.5469 74.2442 -5.9844 Q74.838 -5.4375 74.838 -4.1875 L74.838 0 L73.8067 0 L73.8067 -4.1094 Q73.8067 -5.6562 72.3536 -5.6562 Q71.2911 -5.6562 70.8849 -5.0625 Q70.4786 -4.4688 70.4786 -3.3438 L70.4786 0 L69.4161 0 L69.4161 -6.4375 L70.2755 -6.4375 L70.4317 -5.5625 L70.4942 -5.5625 Q70.8067 -6.0625 71.3536 -6.2969 Q71.9005 -6.5469 72.5099 -6.5469 ZM78.9884 -0.75 Q79.2228 -0.75 79.4728 -0.7812 Q79.7228 -0.8281 79.879 -0.875 L79.879 -0.0781 Q79.7228 0.0156 79.4103 0.0625 Q79.0978 0.125 78.8009 0.125 Q78.3009 0.125 77.8634 -0.0469 Q77.4415 -0.2344 77.1759 -0.6562 Q76.9259 -1.0938 76.9259 -1.875 L76.9259 -5.6094 L76.004 -5.6094 L76.004 -6.125 L76.9259 -6.5469 L77.3478 -7.9062 L77.9728 -7.9062 L77.9728 -6.4375 L79.8322 -6.4375 L79.8322 -5.6094 L77.9728 -5.6094 L77.9728 -1.8906 Q77.9728 -1.3125 78.254 -1.0312 Q78.5353 -0.75 78.9884 -0.75 ZM83.6017 -6.5469 Q84.7736 -6.5469 85.3361 -6.0312 Q85.9142 -5.5156 85.9142 -4.375 L85.9142 0 L85.1329 0 L84.9298 -0.9062 L84.8829 -0.9062 Q84.4611 -0.3906 83.9923 -0.125 Q83.5392 0.125 82.7267 0.125 Q81.8517 0.125 81.2736 -0.3281 Q80.6954 -0.7969 80.6954 -1.7812 Q80.6954 -2.75 81.4454 -3.2656 Q82.2111 -3.7969 83.7892 -3.8438 L84.8829 -3.875 L84.8829 -4.2656 Q84.8829 -5.0625 84.5236 -5.375 Q84.1798 -5.6875 83.5392 -5.6875 Q83.0392 -5.6875 82.5861 -5.5312 Q82.1329 -5.3906 81.7267 -5.2031 L81.4142 -5.9844 Q81.8361 -6.2188 82.3986 -6.375 Q82.9767 -6.5469 83.6017 -6.5469 ZM83.9142 -3.1094 Q82.7111 -3.0625 82.2423 -2.7188 Q81.7892 -2.3906 81.7892 -1.7812 Q81.7892 -1.2344 82.1173 -0.9844 Q82.4454 -0.7344 82.9611 -0.7344 Q83.7892 -0.7344 84.3204 -1.1719 Q84.8673 -1.625 84.8673 -2.5625 L84.8673 -3.1406 L83.9142 -3.1094 ZM88.4431 -8.8438 Q88.6775 -8.8438 88.865 -8.6719 Q89.0525 -8.5156 89.0525 -8.1719 Q89.0525 -7.8438 88.865 -7.6719 Q88.6775 -7.5 88.4431 -7.5 Q88.1775 -7.5 87.99 -7.6719 Q87.8181 -7.8438 87.8181 -8.1719 Q87.8181 -8.5156 87.99 -8.6719 Q88.1775 -8.8438 88.4431 -8.8438 ZM88.9587 -6.4375 L88.9587 0 L87.8962 0 L87.8962 -6.4375 L88.9587 -6.4375 ZM94.086 -6.5469 Q95.2423 -6.5469 95.8204 -5.9844 Q96.4141 -5.4375 96.4141 -4.1875 L96.4141 0 L95.3829 0 L95.3829 -4.1094 Q95.3829 -5.6562 93.9298 -5.6562 Q92.8673 -5.6562 92.461 -5.0625 Q92.0548 -4.4688 92.0548 -3.3438 L92.0548 0 L90.9923 0 L90.9923 -6.4375 L91.8516 -6.4375 L92.0079 -5.5625 L92.0704 -5.5625 Q92.3829 -6.0625 92.9298 -6.2969 Q93.4766 -6.5469 94.086 -6.5469 ZM100.8927 -6.5469 Q101.7208 -6.5469 102.3146 -6.1875 Q102.9083 -5.8281 103.2208 -5.1719 Q103.5489 -4.5312 103.5489 -3.6406 L103.5489 -3.0156 L99.1427 -3.0156 Q99.1739 -1.9219 99.7052 -1.3438 Q100.2364 -0.7812 101.1896 -0.7812 Q101.8146 -0.7812 102.2833 -0.8906 Q102.7521 -1.0156 103.2677 -1.2188 L103.2677 -0.2969 Q102.7677 -0.0781 102.2833 0.0156 Q101.8146 0.125 101.1427 0.125 Q100.2364 0.125 99.5333 -0.25 Q98.8302 -0.625 98.4396 -1.3594 Q98.0489 -2.0938 98.0489 -3.1719 Q98.0489 -4.2188 98.4083 -4.9688 Q98.7677 -5.7344 99.4083 -6.1406 Q100.0489 -6.5469 100.8927 -6.5469 ZM100.8771 -5.6875 Q100.1271 -5.6875 99.6896 -5.2031 Q99.2521 -4.7188 99.1739 -3.8594 L102.4396 -3.8594 Q102.4396 -4.6719 102.0646 -5.1719 Q101.6896 -5.6875 100.8771 -5.6875 ZM108.1764 -6.5469 Q108.3639 -6.5469 108.567 -6.5312 Q108.7857 -6.5156 108.942 -6.4844 L108.8014 -5.5156 Q108.6451 -5.5469 108.4576 -5.5625 Q108.2701 -5.5938 108.1139 -5.5938 Q107.6139 -5.5938 107.1764 -5.3125 Q106.7545 -5.0469 106.4889 -4.5625 Q106.2389 -4.0781 106.2389 -3.4375 L106.2389 0 L105.1764 0 L105.1764 -6.4375 L106.0514 -6.4375 L106.1607 -5.25 L106.2076 -5.25 Q106.5201 -5.7812 107.0045 -6.1562 Q107.5045 -6.5469 108.1764 -6.5469 ZM109.7105 -2.3281 L114.2418 -4.2188 L109.7105 -6.3594 L109.7105 -7.2969 L115.3668 -4.4688 L115.3668 -3.875 L109.7105 -1.3906 L109.7105 -2.3281 ZM116.5746 -2.3281 L121.1058 -4.2188 L116.5746 -6.3594 L116.5746 -7.2969 L122.2308 -4.4688 L122.2308 -3.875 L116.5746 -1.3906 L116.5746 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath54);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-438.7724,139.3441)"
+    ><path d="M3.6094 4.2656 Q5.2188 4.2656 6.0312 4.7343 Q6.8594 5.2031 6.8594 6.3906 Q6.8594 7.1406 6.4375 7.6406 Q6.0312 8.1406 5.2344 8.2812 L5.2344 8.3437 Q5.7656 8.4218 6.2031 8.6562 Q6.6406 8.875 6.8906 9.2968 Q7.1562 9.7187 7.1562 10.3906 Q7.1562 11.5625 6.3594 12.2031 Q5.5625 12.8281 4.1719 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.6094 4.2656 ZM3.8281 7.9062 Q4.9375 7.9062 5.3438 7.5625 Q5.75 7.2031 5.75 6.5 Q5.75 5.7968 5.25 5.5 Q4.75 5.1875 3.6562 5.1875 L2.25 5.1875 L2.25 7.9062 L3.8281 7.9062 ZM2.25 8.8125 L2.25 11.9218 L3.9688 11.9218 Q5.1094 11.9218 5.5469 11.4843 Q6 11.0312 6 10.3125 Q6 9.6406 5.5312 9.2343 Q5.0781 8.8125 3.8906 8.8125 L2.25 8.8125 ZM14.4094 9.5937 Q14.4094 11.2031 13.5969 12.0781 Q12.7844 12.9531 11.4094 12.9531 Q10.5657 12.9531 9.8938 12.5625 Q9.2219 12.1718 8.8313 11.4218 Q8.4563 10.6718 8.4563 9.5937 Q8.4563 8 9.2532 7.1406 Q10.0657 6.2812 11.4407 6.2812 Q12.3313 6.2812 12.9875 6.6718 Q13.6594 7.0625 14.0344 7.7968 Q14.4094 8.5312 14.4094 9.5937 ZM9.55 9.5937 Q9.55 10.7343 10.0032 11.4062 Q10.4563 12.0781 11.4407 12.0781 Q12.4094 12.0781 12.8625 11.4062 Q13.3157 10.7343 13.3157 9.5937 Q13.3157 8.4531 12.8625 7.8125 Q12.4094 7.1718 11.425 7.1718 Q10.4407 7.1718 9.9875 7.8125 Q9.55 8.4531 9.55 9.5937 ZM21.6695 9.5937 Q21.6695 11.2031 20.857 12.0781 Q20.0445 12.9531 18.6695 12.9531 Q17.8257 12.9531 17.1539 12.5625 Q16.482 12.1718 16.0914 11.4218 Q15.7164 10.6718 15.7164 9.5937 Q15.7164 8 16.5132 7.1406 Q17.3257 6.2812 18.7007 6.2812 Q19.5914 6.2812 20.2476 6.6718 Q20.9195 7.0625 21.2945 7.7968 Q21.6695 8.5312 21.6695 9.5937 ZM16.8101 9.5937 Q16.8101 10.7343 17.2632 11.4062 Q17.7164 12.0781 18.7007 12.0781 Q19.6695 12.0781 20.1226 11.4062 Q20.5757 10.7343 20.5757 9.5937 Q20.5757 8.4531 20.1226 7.8125 Q19.6695 7.1718 18.6851 7.1718 Q17.7007 7.1718 17.2476 7.8125 Q16.8101 8.4531 16.8101 9.5937 ZM24.3827 8.4687 Q24.3827 8.6718 24.367 8.9843 Q24.3514 9.2812 24.3358 9.5156 L24.3827 9.5156 Q24.4608 9.4218 24.6014 9.25 Q24.742 9.0625 24.8827 8.875 Q25.0389 8.6875 25.1483 8.5625 L27.2108 6.3906 L28.4452 6.3906 L25.8358 9.1406 L28.617 12.8281 L27.3514 12.8281 L25.117 9.8281 L24.3827 10.4687 L24.3827 12.8281 L23.3358 12.8281 L23.3358 3.7031 L24.3827 3.7031 L24.3827 8.4687 ZM30.2907 3.9843 Q30.5251 3.9843 30.7126 4.1562 Q30.9001 4.3125 30.9001 4.6562 Q30.9001 4.9843 30.7126 5.1562 Q30.5251 5.3281 30.2907 5.3281 Q30.0251 5.3281 29.8376 5.1562 Q29.6657 4.9843 29.6657 4.6562 Q29.6657 4.3125 29.8376 4.1562 Q30.0251 3.9843 30.2907 3.9843 ZM30.8063 6.3906 L30.8063 12.8281 L29.7438 12.8281 L29.7438 6.3906 L30.8063 6.3906 ZM35.9336 6.2812 Q37.0899 6.2812 37.668 6.8437 Q38.2617 7.3906 38.2617 8.6406 L38.2617 12.8281 L37.2305 12.8281 L37.2305 8.7187 Q37.2305 7.1718 35.7774 7.1718 Q34.7149 7.1718 34.3086 7.7656 Q33.9024 8.3593 33.9024 9.4843 L33.9024 12.8281 L32.8399 12.8281 L32.8399 6.3906 L33.6992 6.3906 L33.8555 7.2656 L33.918 7.2656 Q34.2305 6.7656 34.7774 6.5312 Q35.3242 6.2812 35.9336 6.2812 ZM42.5372 6.2812 Q43.1778 6.2812 43.6778 6.5156 Q44.1934 6.75 44.5528 7.25 L44.6153 7.25 L44.7559 6.3906 L45.5997 6.3906 L45.5997 12.9375 Q45.5997 14.3125 44.8965 15 Q44.1934 15.7031 42.7247 15.7031 Q41.3028 15.7031 40.3965 15.2968 L40.3965 14.3281 Q41.3497 14.8281 42.7872 14.8281 Q43.6153 14.8281 44.084 14.3437 Q44.5528 13.8593 44.5528 13.0156 L44.5528 12.7656 Q44.5528 12.625 44.5684 12.3593 Q44.584 12.0781 44.5997 11.9687 L44.5372 11.9687 Q43.8965 12.9531 42.5528 12.9531 Q41.3028 12.9531 40.5997 12.0781 Q39.8965 11.2031 39.8965 9.625 Q39.8965 8.0937 40.5997 7.1875 Q41.3028 6.2812 42.5372 6.2812 ZM42.6778 7.1718 Q41.8809 7.1718 41.4278 7.8125 Q40.9903 8.4531 40.9903 9.6406 Q40.9903 10.8281 41.4278 11.4531 Q41.8653 12.0781 42.709 12.0781 Q43.6778 12.0781 44.1153 11.5625 Q44.5684 11.0468 44.5684 9.875 L44.5684 9.625 Q44.5684 8.2968 44.1153 7.7343 Q43.6622 7.1718 42.6778 7.1718 ZM53.0372 12.9531 Q51.8341 12.9531 51.1154 12.125 Q50.3966 11.2812 50.3966 9.625 Q50.3966 7.9687 51.1154 7.125 Q51.8497 6.2812 53.0529 6.2812 Q53.8029 6.2812 54.2716 6.5625 Q54.7404 6.8281 55.0372 7.2187 L55.1154 7.2187 Q55.0997 7.0625 55.0685 6.7656 Q55.0372 6.4531 55.0372 6.2812 L55.0372 3.7031 L56.0997 3.7031 L56.0997 12.8281 L55.256 12.8281 L55.0997 11.9687 L55.0372 11.9687 Q54.756 12.375 54.2716 12.6718 Q53.8029 12.9531 53.0372 12.9531 ZM53.2091 12.0781 Q54.2247 12.0781 54.631 11.5156 Q55.0529 10.9531 55.0529 9.8281 L55.0529 9.6406 Q55.0529 8.4375 54.6622 7.7968 Q54.2716 7.1562 53.1935 7.1562 Q52.3497 7.1562 51.9122 7.8437 Q51.4904 8.5156 51.4904 9.6406 Q51.4904 10.7968 51.9122 11.4375 Q52.3497 12.0781 53.2091 12.0781 ZM60.5735 6.2812 Q61.7454 6.2812 62.3079 6.7968 Q62.886 7.3125 62.886 8.4531 L62.886 12.8281 L62.1048 12.8281 L61.9017 11.9218 L61.8548 11.9218 Q61.4329 12.4375 60.9642 12.7031 Q60.511 12.9531 59.6985 12.9531 Q58.8235 12.9531 58.2454 12.5 Q57.6673 12.0312 57.6673 11.0468 Q57.6673 10.0781 58.4173 9.5625 Q59.1829 9.0312 60.761 8.9843 L61.8548 8.9531 L61.8548 8.5625 Q61.8548 7.7656 61.4954 7.4531 Q61.1517 7.1406 60.511 7.1406 Q60.011 7.1406 59.5579 7.2968 Q59.1048 7.4375 58.6985 7.625 L58.386 6.8437 Q58.8079 6.6093 59.3704 6.4531 Q59.9485 6.2812 60.5735 6.2812 ZM60.886 9.7187 Q59.6829 9.7656 59.2142 10.1093 Q58.761 10.4375 58.761 11.0468 Q58.761 11.5937 59.0892 11.8437 Q59.4173 12.0937 59.9329 12.0937 Q60.761 12.0937 61.2923 11.6562 Q61.8392 11.2031 61.8392 10.2656 L61.8392 9.6875 L60.886 9.7187 ZM67.0243 12.0781 Q67.2587 12.0781 67.5087 12.0468 Q67.7587 12 67.9149 11.9531 L67.9149 12.75 Q67.7587 12.8437 67.4462 12.8906 Q67.1337 12.9531 66.8368 12.9531 Q66.3368 12.9531 65.8993 12.7812 Q65.4774 12.5937 65.2118 12.1718 Q64.9618 11.7343 64.9618 10.9531 L64.9618 7.2187 L64.0399 7.2187 L64.0399 6.7031 L64.9618 6.2812 L65.3837 4.9218 L66.0087 4.9218 L66.0087 6.3906 L67.8681 6.3906 L67.8681 7.2187 L66.0087 7.2187 L66.0087 10.9375 Q66.0087 11.5156 66.2899 11.7968 Q66.5712 12.0781 67.0243 12.0781 ZM71.6376 6.2812 Q72.8095 6.2812 73.372 6.7968 Q73.9501 7.3125 73.9501 8.4531 L73.9501 12.8281 L73.1689 12.8281 L72.9657 11.9218 L72.9189 11.9218 Q72.497 12.4375 72.0282 12.7031 Q71.5751 12.9531 70.7626 12.9531 Q69.8876 12.9531 69.3095 12.5 Q68.7314 12.0312 68.7314 11.0468 Q68.7314 10.0781 69.4814 9.5625 Q70.247 9.0312 71.8251 8.9843 L72.9189 8.9531 L72.9189 8.5625 Q72.9189 7.7656 72.5595 7.4531 Q72.2157 7.1406 71.5751 7.1406 Q71.0751 7.1406 70.622 7.2968 Q70.1689 7.4375 69.7626 7.625 L69.4501 6.8437 Q69.872 6.6093 70.4345 6.4531 Q71.0126 6.2812 71.6376 6.2812 ZM71.9501 9.7187 Q70.747 9.7656 70.2782 10.1093 Q69.8251 10.4375 69.8251 11.0468 Q69.8251 11.5937 70.1532 11.8437 Q70.4814 12.0937 70.997 12.0937 Q71.8251 12.0937 72.3564 11.6562 Q72.9032 11.2031 72.9032 10.2656 L72.9032 9.6875 L71.9501 9.7187 ZM76.9946 5.9218 Q76.9946 6.3437 76.979 6.7031 Q76.9634 7.0468 76.9321 7.25 L76.9946 7.25 Q77.2759 6.8437 77.7446 6.5625 Q78.229 6.2812 78.979 6.2812 Q80.1821 6.2812 80.9009 7.125 Q81.6353 7.9531 81.6353 9.6093 Q81.6353 11.2656 80.9009 12.1093 Q80.1665 12.9531 78.979 12.9531 Q78.229 12.9531 77.7446 12.6718 Q77.2759 12.3906 76.9946 12.0156 L76.9009 12.0156 L76.6978 12.8281 L75.9321 12.8281 L75.9321 3.7031 L76.9946 3.7031 L76.9946 5.9218 ZM78.8071 7.1718 Q77.7915 7.1718 77.3853 7.7656 Q76.9946 8.3437 76.9946 9.5781 L76.9946 9.625 Q76.9946 10.8125 77.3853 11.4531 Q77.7759 12.0781 78.8228 12.0781 Q79.6978 12.0781 80.1196 11.4375 Q80.5415 10.7968 80.5415 9.5937 Q80.5415 7.1718 78.8071 7.1718 ZM85.7497 6.2812 Q86.9216 6.2812 87.4841 6.7968 Q88.0622 7.3125 88.0622 8.4531 L88.0622 12.8281 L87.2809 12.8281 L87.0778 11.9218 L87.0309 11.9218 Q86.6091 12.4375 86.1403 12.7031 Q85.6872 12.9531 84.8747 12.9531 Q83.9997 12.9531 83.4216 12.5 Q82.8434 12.0312 82.8434 11.0468 Q82.8434 10.0781 83.5934 9.5625 Q84.3591 9.0312 85.9372 8.9843 L87.0309 8.9531 L87.0309 8.5625 Q87.0309 7.7656 86.6716 7.4531 Q86.3278 7.1406 85.6872 7.1406 Q85.1872 7.1406 84.7341 7.2968 Q84.2809 7.4375 83.8747 7.625 L83.5622 6.8437 Q83.9841 6.6093 84.5466 6.4531 Q85.1247 6.2812 85.7497 6.2812 ZM86.0622 9.7187 Q84.8591 9.7656 84.3903 10.1093 Q83.9372 10.4375 83.9372 11.0468 Q83.9372 11.5937 84.2653 11.8437 Q84.5934 12.0937 85.1091 12.0937 Q85.9372 12.0937 86.4684 11.6562 Q87.0153 11.2031 87.0153 10.2656 L87.0153 9.6875 L86.0622 9.7187 ZM94.2317 11.0468 Q94.2317 11.9843 93.5286 12.4687 Q92.8411 12.9531 91.6692 12.9531 Q90.9974 12.9531 90.513 12.8437 Q90.0286 12.7343 89.6536 12.5468 L89.6536 11.5781 Q90.0442 11.7656 90.5755 11.9375 Q91.1224 12.0937 91.6849 12.0937 Q92.4974 12.0937 92.8567 11.8437 Q93.2161 11.5781 93.2161 11.1406 Q93.2161 10.9062 93.0755 10.7187 Q92.9505 10.5312 92.6067 10.3437 Q92.263 10.1406 91.638 9.9062 Q91.013 9.6562 90.5599 9.4218 Q90.1224 9.1875 89.8724 8.8593 Q89.638 8.5156 89.638 7.9843 Q89.638 7.1718 90.2942 6.7343 Q90.9661 6.2812 92.0599 6.2812 Q92.638 6.2812 93.138 6.3906 Q93.6536 6.5 94.1067 6.7031 L93.7474 7.5468 Q93.3411 7.375 92.888 7.2656 Q92.4505 7.1406 91.9817 7.1406 Q91.3255 7.1406 90.9817 7.3593 Q90.6536 7.5625 90.6536 7.9218 Q90.6536 8.1875 90.8099 8.375 Q90.9661 8.5625 91.3255 8.7343 Q91.6849 8.9062 92.3099 9.1406 Q92.9192 9.375 93.3411 9.625 Q93.7786 9.8593 93.9974 10.2031 Q94.2317 10.5312 94.2317 11.0468 ZM98.2767 6.2812 Q99.1048 6.2812 99.6985 6.6406 Q100.2923 7 100.6048 7.6562 Q100.9329 8.2968 100.9329 9.1875 L100.9329 9.8125 L96.5267 9.8125 Q96.5579 10.9062 97.0892 11.4843 Q97.6204 12.0468 98.5735 12.0468 Q99.1985 12.0468 99.6673 11.9375 Q100.136 11.8125 100.6517 11.6093 L100.6517 12.5312 Q100.1517 12.75 99.6673 12.8437 Q99.1985 12.9531 98.5267 12.9531 Q97.6204 12.9531 96.9173 12.5781 Q96.2142 12.2031 95.8235 11.4687 Q95.4329 10.7343 95.4329 9.6562 Q95.4329 8.6093 95.7923 7.8593 Q96.1517 7.0937 96.7923 6.6875 Q97.4329 6.2812 98.2767 6.2812 ZM98.261 7.1406 Q97.511 7.1406 97.0735 7.625 Q96.636 8.1093 96.5579 8.9687 L99.8235 8.9687 Q99.8235 8.1562 99.4485 7.6562 Q99.0735 7.1406 98.261 7.1406 Z" style="stroke:none; clip-path:url(#clipPath55);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-447.9175" y="-7.0884" width="119" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="-447.9175" y="-7.0884" width="119" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="-346.9175" y="-1.0884" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="-346.9175" y="-1.0884" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="-348.9175" y="6.9116" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-348.9175" y="6.9116" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="-348.9175" y="1.9116" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-348.9175" y="1.9116" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-433.9175,10.9116)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM24.5613 -6.5469 Q25.7331 -6.5469 26.2956 -6.0312 Q26.8738 -5.5156 26.8738 -4.375 L26.8738 0 L26.0925 0 L25.8894 -0.9062 L25.8425 -0.9062 Q25.4206 -0.3906 24.9519 -0.125 Q24.4988 0.125 23.6863 0.125 Q22.8113 0.125 22.2331 -0.3281 Q21.655 -0.7969 21.655 -1.7812 Q21.655 -2.75 22.405 -3.2656 Q23.1706 -3.7969 24.7488 -3.8438 L25.8425 -3.875 L25.8425 -4.2656 Q25.8425 -5.0625 25.4831 -5.375 Q25.1394 -5.6875 24.4988 -5.6875 Q23.9988 -5.6875 23.5456 -5.5312 Q23.0925 -5.3906 22.6863 -5.2031 L22.3738 -5.9844 Q22.7956 -6.2188 23.3581 -6.375 Q23.9363 -6.5469 24.5613 -6.5469 ZM24.8738 -3.1094 Q23.6706 -3.0625 23.2019 -2.7188 Q22.7488 -2.3906 22.7488 -1.7812 Q22.7488 -1.2344 23.0769 -0.9844 Q23.405 -0.7344 23.9206 -0.7344 Q24.7488 -0.7344 25.28 -1.1719 Q25.8269 -1.625 25.8269 -2.5625 L25.8269 -3.1406 L24.8738 -3.1094 ZM31.0121 -0.75 Q31.2464 -0.75 31.4964 -0.7812 Q31.7464 -0.8281 31.9027 -0.875 L31.9027 -0.0781 Q31.7464 0.0156 31.4339 0.0625 Q31.1214 0.125 30.8246 0.125 Q30.3246 0.125 29.8871 -0.0469 Q29.4652 -0.2344 29.1996 -0.6562 Q28.9496 -1.0938 28.9496 -1.875 L28.9496 -5.6094 L28.0277 -5.6094 L28.0277 -6.125 L28.9496 -6.5469 L29.3714 -7.9062 L29.9964 -7.9062 L29.9964 -6.4375 L31.8558 -6.4375 L31.8558 -5.6094 L29.9964 -5.6094 L29.9964 -1.8906 Q29.9964 -1.3125 30.2777 -1.0312 Q30.5589 -0.75 31.0121 -0.75 ZM35.6253 -6.5469 Q36.7972 -6.5469 37.3597 -6.0312 Q37.9378 -5.5156 37.9378 -4.375 L37.9378 0 L37.1566 0 L36.9535 -0.9062 L36.9066 -0.9062 Q36.4847 -0.3906 36.016 -0.125 Q35.5628 0.125 34.7503 0.125 Q33.8753 0.125 33.2972 -0.3281 Q32.7191 -0.7969 32.7191 -1.7812 Q32.7191 -2.75 33.4691 -3.2656 Q34.2347 -3.7969 35.8128 -3.8438 L36.9066 -3.875 L36.9066 -4.2656 Q36.9066 -5.0625 36.5472 -5.375 Q36.2035 -5.6875 35.5628 -5.6875 Q35.0628 -5.6875 34.6097 -5.5312 Q34.1566 -5.3906 33.7503 -5.2031 L33.4378 -5.9844 Q33.8597 -6.2188 34.4222 -6.375 Q35.0003 -6.5469 35.6253 -6.5469 ZM35.9378 -3.1094 Q34.7347 -3.0625 34.266 -2.7188 Q33.8128 -2.3906 33.8128 -1.7812 Q33.8128 -1.2344 34.141 -0.9844 Q34.4691 -0.7344 34.9847 -0.7344 Q35.8128 -0.7344 36.3441 -1.1719 Q36.891 -1.625 36.891 -2.5625 L36.891 -3.1406 L35.9378 -3.1094 ZM40.9824 -6.9062 Q40.9824 -6.4844 40.9668 -6.125 Q40.9511 -5.7812 40.9199 -5.5781 L40.9824 -5.5781 Q41.2636 -5.9844 41.7324 -6.2656 Q42.2168 -6.5469 42.9668 -6.5469 Q44.1699 -6.5469 44.8886 -5.7031 Q45.623 -4.875 45.623 -3.2188 Q45.623 -1.5625 44.8886 -0.7188 Q44.1543 0.125 42.9668 0.125 Q42.2168 0.125 41.7324 -0.1562 Q41.2636 -0.4375 40.9824 -0.8125 L40.8886 -0.8125 L40.6855 0 L39.9199 0 L39.9199 -9.125 L40.9824 -9.125 L40.9824 -6.9062 ZM42.7949 -5.6562 Q41.7793 -5.6562 41.373 -5.0625 Q40.9824 -4.4844 40.9824 -3.25 L40.9824 -3.2031 Q40.9824 -2.0156 41.373 -1.375 Q41.7636 -0.75 42.8105 -0.75 Q43.6855 -0.75 44.1074 -1.3906 Q44.5293 -2.0312 44.5293 -3.2344 Q44.5293 -5.6562 42.7949 -5.6562 ZM49.7374 -6.5469 Q50.9093 -6.5469 51.4718 -6.0312 Q52.0499 -5.5156 52.0499 -4.375 L52.0499 0 L51.2687 0 L51.0656 -0.9062 L51.0187 -0.9062 Q50.5968 -0.3906 50.1281 -0.125 Q49.6749 0.125 48.8624 0.125 Q47.9874 0.125 47.4093 -0.3281 Q46.8312 -0.7969 46.8312 -1.7812 Q46.8312 -2.75 47.5812 -3.2656 Q48.3468 -3.7969 49.9249 -3.8438 L51.0187 -3.875 L51.0187 -4.2656 Q51.0187 -5.0625 50.6593 -5.375 Q50.3156 -5.6875 49.6749 -5.6875 Q49.1749 -5.6875 48.7218 -5.5312 Q48.2687 -5.3906 47.8624 -5.2031 L47.5499 -5.9844 Q47.9718 -6.2188 48.5343 -6.375 Q49.1124 -6.5469 49.7374 -6.5469 ZM50.0499 -3.1094 Q48.8468 -3.0625 48.3781 -2.7188 Q47.9249 -2.3906 47.9249 -1.7812 Q47.9249 -1.2344 48.2531 -0.9844 Q48.5812 -0.7344 49.0968 -0.7344 Q49.9249 -0.7344 50.4562 -1.1719 Q51.0031 -1.625 51.0031 -2.5625 L51.0031 -3.1406 L50.0499 -3.1094 ZM58.2195 -1.7812 Q58.2195 -0.8438 57.5163 -0.3594 Q56.8288 0.125 55.657 0.125 Q54.9851 0.125 54.5007 0.0156 Q54.0163 -0.0938 53.6413 -0.2812 L53.6413 -1.25 Q54.032 -1.0625 54.5632 -0.8906 Q55.1101 -0.7344 55.6726 -0.7344 Q56.4851 -0.7344 56.8445 -0.9844 Q57.2038 -1.25 57.2038 -1.6875 Q57.2038 -1.9219 57.0632 -2.1094 Q56.9382 -2.2969 56.5945 -2.4844 Q56.2507 -2.6875 55.6257 -2.9219 Q55.0007 -3.1719 54.5476 -3.4062 Q54.1101 -3.6406 53.8601 -3.9688 Q53.6257 -4.3125 53.6257 -4.8438 Q53.6257 -5.6562 54.282 -6.0938 Q54.9538 -6.5469 56.0476 -6.5469 Q56.6257 -6.5469 57.1257 -6.4375 Q57.6413 -6.3281 58.0945 -6.125 L57.7351 -5.2812 Q57.3288 -5.4531 56.8757 -5.5625 Q56.4382 -5.6875 55.9695 -5.6875 Q55.3132 -5.6875 54.9695 -5.4688 Q54.6413 -5.2656 54.6413 -4.9062 Q54.6413 -4.6406 54.7976 -4.4531 Q54.9538 -4.2656 55.3132 -4.0938 Q55.6726 -3.9219 56.2976 -3.6875 Q56.907 -3.4531 57.3288 -3.2031 Q57.7663 -2.9688 57.9851 -2.625 Q58.2195 -2.2969 58.2195 -1.7812 ZM62.2644 -6.5469 Q63.0925 -6.5469 63.6863 -6.1875 Q64.28 -5.8281 64.5925 -5.1719 Q64.9206 -4.5312 64.9206 -3.6406 L64.9206 -3.0156 L60.5144 -3.0156 Q60.5456 -1.9219 61.0769 -1.3438 Q61.6081 -0.7812 62.5613 -0.7812 Q63.1863 -0.7812 63.655 -0.8906 Q64.1238 -1.0156 64.6394 -1.2188 L64.6394 -0.2969 Q64.1394 -0.0781 63.655 0.0156 Q63.1863 0.125 62.5144 0.125 Q61.6081 0.125 60.905 -0.25 Q60.2019 -0.625 59.8113 -1.3594 Q59.4206 -2.0938 59.4206 -3.1719 Q59.4206 -4.2188 59.78 -4.9688 Q60.1394 -5.7344 60.78 -6.1406 Q61.4206 -6.5469 62.2644 -6.5469 ZM62.2488 -5.6875 Q61.4988 -5.6875 61.0613 -5.2031 Q60.6238 -4.7188 60.5456 -3.8594 L63.8113 -3.8594 Q63.8113 -4.6719 63.4363 -5.1719 Q63.0613 -5.6875 62.2488 -5.6875 ZM66.1262 -2.3281 L70.6574 -4.2188 L66.1262 -6.3594 L66.1262 -7.2969 L71.7824 -4.4688 L71.7824 -3.875 L66.1262 -1.3906 L66.1262 -2.3281 ZM72.9902 -2.3281 L77.5215 -4.2188 L72.9902 -6.3594 L72.9902 -7.2969 L78.6465 -4.4688 L78.6465 -3.875 L72.9902 -1.3906 L72.9902 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath56);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-420.4175,13.2557)"
+    ><path d="M7.7188 12.8281 L6.6406 12.8281 L6.6406 8.8281 L2.25 8.8281 L2.25 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.25 4.2656 L2.25 7.8906 L6.6406 7.8906 L6.6406 4.2656 L7.7188 4.2656 L7.7188 12.8281 ZM15.5014 9.5937 Q15.5014 11.2031 14.6889 12.0781 Q13.8764 12.9531 12.5014 12.9531 Q11.6577 12.9531 10.9858 12.5625 Q10.3139 12.1718 9.9233 11.4218 Q9.5483 10.6718 9.5483 9.5937 Q9.5483 8 10.3452 7.1406 Q11.1577 6.2812 12.5327 6.2812 Q13.4233 6.2812 14.0796 6.6718 Q14.7514 7.0625 15.1264 7.7968 Q15.5014 8.5312 15.5014 9.5937 ZM10.6421 9.5937 Q10.6421 10.7343 11.0952 11.4062 Q11.5483 12.0781 12.5327 12.0781 Q13.5014 12.0781 13.9546 11.4062 Q14.4077 10.7343 14.4077 9.5937 Q14.4077 8.4531 13.9546 7.8125 Q13.5014 7.1718 12.5171 7.1718 Q11.5327 7.1718 11.0796 7.8125 Q10.6421 8.4531 10.6421 9.5937 ZM19.324 12.0781 Q19.5584 12.0781 19.8084 12.0468 Q20.0584 12 20.2146 11.9531 L20.2146 12.75 Q20.0584 12.8437 19.7459 12.8906 Q19.4334 12.9531 19.1365 12.9531 Q18.6365 12.9531 18.199 12.7812 Q17.7771 12.5937 17.5115 12.1718 Q17.2615 11.7343 17.2615 10.9531 L17.2615 7.2187 L16.3396 7.2187 L16.3396 6.7031 L17.2615 6.2812 L17.6834 4.9218 L18.3084 4.9218 L18.3084 6.3906 L20.1677 6.3906 L20.1677 7.2187 L18.3084 7.2187 L18.3084 10.9375 Q18.3084 11.5156 18.5896 11.7968 Q18.8709 12.0781 19.324 12.0781 ZM23.9841 6.2812 Q24.8123 6.2812 25.406 6.6406 Q25.9998 7 26.3123 7.6562 Q26.6404 8.2968 26.6404 9.1875 L26.6404 9.8125 L22.2341 9.8125 Q22.2654 10.9062 22.7966 11.4843 Q23.3279 12.0468 24.281 12.0468 Q24.906 12.0468 25.3748 11.9375 Q25.8435 11.8125 26.3591 11.6093 L26.3591 12.5312 Q25.8591 12.75 25.3748 12.8437 Q24.906 12.9531 24.2341 12.9531 Q23.3279 12.9531 22.6248 12.5781 Q21.9216 12.2031 21.531 11.4687 Q21.1404 10.7343 21.1404 9.6562 Q21.1404 8.6093 21.4998 7.8593 Q21.8591 7.0937 22.4998 6.6875 Q23.1404 6.2812 23.9841 6.2812 ZM23.9685 7.1406 Q23.2185 7.1406 22.781 7.625 Q22.3435 8.1093 22.2654 8.9687 L25.531 8.9687 Q25.531 8.1562 25.156 7.6562 Q24.781 7.1406 23.9685 7.1406 ZM29.3303 12.8281 L28.2678 12.8281 L28.2678 3.7031 L29.3303 3.7031 L29.3303 12.8281 ZM35.5513 11.0468 Q35.5513 11.9843 34.8482 12.4687 Q34.1607 12.9531 32.9888 12.9531 Q32.317 12.9531 31.8326 12.8437 Q31.3482 12.7343 30.9732 12.5468 L30.9732 11.5781 Q31.3638 11.7656 31.8951 11.9375 Q32.442 12.0937 33.0045 12.0937 Q33.817 12.0937 34.1763 11.8437 Q34.5357 11.5781 34.5357 11.1406 Q34.5357 10.9062 34.3951 10.7187 Q34.2701 10.5312 33.9263 10.3437 Q33.5826 10.1406 32.9576 9.9062 Q32.3326 9.6562 31.8795 9.4218 Q31.442 9.1875 31.192 8.8593 Q30.9576 8.5156 30.9576 7.9843 Q30.9576 7.1718 31.6138 6.7343 Q32.2857 6.2812 33.3795 6.2812 Q33.9576 6.2812 34.4576 6.3906 Q34.9732 6.5 35.4263 6.7031 L35.067 7.5468 Q34.6607 7.375 34.2076 7.2656 Q33.7701 7.1406 33.3013 7.1406 Q32.6451 7.1406 32.3013 7.3593 Q31.9732 7.5625 31.9732 7.9218 Q31.9732 8.1875 32.1295 8.375 Q32.2857 8.5625 32.6451 8.7343 Q33.0045 8.9062 33.6295 9.1406 Q34.2388 9.375 34.6607 9.625 Q35.0982 9.8593 35.317 10.2031 Q35.5513 10.5312 35.5513 11.0468 ZM44.1275 8.4531 Q44.1275 10.625 42.94 11.7343 Q41.7525 12.8281 39.6431 12.8281 L37.2525 12.8281 L37.2525 4.2656 L39.8931 4.2656 Q41.19 4.2656 42.1431 4.75 Q43.0963 5.2187 43.6119 6.1562 Q44.1275 7.0781 44.1275 8.4531 ZM42.9869 8.5 Q42.9869 6.7812 42.1431 5.9843 Q41.2994 5.1875 39.7369 5.1875 L38.3463 5.1875 L38.3463 11.9062 L39.5025 11.9062 Q42.9869 11.9062 42.9869 8.5 ZM48.4657 4.2656 Q50.0751 4.2656 50.8876 4.7343 Q51.7157 5.2031 51.7157 6.3906 Q51.7157 7.1406 51.2938 7.6406 Q50.8876 8.1406 50.0907 8.2812 L50.0907 8.3437 Q50.6219 8.4218 51.0594 8.6562 Q51.4969 8.875 51.7469 9.2968 Q52.0126 9.7187 52.0126 10.3906 Q52.0126 11.5625 51.2157 12.2031 Q50.4188 12.8281 49.0282 12.8281 L46.0126 12.8281 L46.0126 4.2656 L48.4657 4.2656 ZM48.6844 7.9062 Q49.7938 7.9062 50.2001 7.5625 Q50.6063 7.2031 50.6063 6.5 Q50.6063 5.7968 50.1063 5.5 Q49.6063 5.1875 48.5126 5.1875 L47.1063 5.1875 L47.1063 7.9062 L48.6844 7.9062 ZM47.1063 8.8125 L47.1063 11.9218 L48.8251 11.9218 Q49.9657 11.9218 50.4032 11.4843 Q50.8563 11.0312 50.8563 10.3125 Q50.8563 9.6406 50.3876 9.2343 Q49.9344 8.8125 48.7469 8.8125 L47.1063 8.8125 Z" style="stroke:none; clip-path:url(#clipPath57);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -487 178 -483 174 -285 174 -285 293 -289 297 -487 297"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -487 178 -483 174 -285 174 -285 293 -289 297 -487 297"
+      /><line x1="-289" x2="-286" y1="178" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="175"
+      /><line x1="-487" x2="-289" y1="178" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="178"
+      /><line x1="-289" x2="-289" y1="178" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="297"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-467.66,196.9652)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath58);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-407.6261,198.3441)"
+    ><path d="M4.9375 12.8281 L2.125 5.3125 L2.0781 5.3125 Q2.1094 5.6875 2.125 6.3281 Q2.1562 6.9531 2.1562 7.625 L2.1562 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.7656 4.2656 L5.4062 11.2812 L5.4531 11.2812 L8.1406 4.2656 L9.7188 4.2656 L9.7188 12.8281 L8.6562 12.8281 L8.6562 7.5625 Q8.6562 6.9375 8.6875 6.3281 Q8.7188 5.7187 8.7344 5.3281 L8.6875 5.3281 L5.8281 12.8281 L4.9375 12.8281 ZM10.8997 6.3906 L12.0247 6.3906 L13.4153 10.0625 Q13.6028 10.5312 13.7435 10.9687 Q13.8841 11.4062 13.9622 11.8125 L14.0091 11.8125 Q14.0716 11.5156 14.2278 11.0312 Q14.3841 10.5312 14.556 10.0468 L15.8685 6.3906 L17.0091 6.3906 L14.2278 13.7187 Q13.8997 14.625 13.3528 15.1562 Q12.8216 15.7031 11.8997 15.7031 Q11.6028 15.7031 11.3841 15.6718 Q11.1653 15.6406 11.0091 15.6093 L11.0091 14.7656 Q11.1497 14.7968 11.3372 14.8125 Q11.5247 14.8437 11.7278 14.8437 Q12.2747 14.8437 12.6185 14.5312 Q12.9622 14.2187 13.1497 13.7031 L13.4935 12.8593 L10.8997 6.3906 ZM23.0354 10.5312 Q23.0354 11.6718 22.2072 12.3125 Q21.3791 12.9531 19.9729 12.9531 Q19.2541 12.9531 18.6291 12.8437 Q18.0197 12.7343 17.6135 12.5468 L17.6135 11.5156 Q18.051 11.7031 18.6916 11.8593 Q19.3322 12.0156 20.0197 12.0156 Q20.9729 12.0156 21.4572 11.6406 Q21.9416 11.2656 21.9416 10.625 Q21.9416 10.2187 21.7541 9.9375 Q21.5822 9.6406 21.1447 9.3906 Q20.7072 9.1406 19.926 8.875 Q18.8479 8.4687 18.2854 7.8906 Q17.7229 7.3125 17.7229 6.3281 Q17.7229 5.6406 18.0666 5.1562 Q18.426 4.6718 19.0354 4.4062 Q19.6604 4.1406 20.4572 4.1406 Q21.1604 4.1406 21.7541 4.2812 Q22.3479 4.4062 22.8166 4.625 L22.4885 5.5468 Q22.051 5.3593 21.5197 5.2343 Q21.0041 5.0937 20.4416 5.0937 Q19.6291 5.0937 19.2229 5.4375 Q18.8166 5.7656 18.8166 6.3437 Q18.8166 6.7656 18.9885 7.0625 Q19.176 7.3437 19.5822 7.5781 Q19.9885 7.7968 20.6916 8.0625 Q21.4416 8.3437 21.9572 8.6562 Q22.4885 8.9687 22.7541 9.4218 Q23.0354 9.8593 23.0354 10.5312 ZM32.2328 8.5312 Q32.2328 10.1093 31.5922 11.2187 Q30.9672 12.3125 29.7328 12.7343 L31.7953 14.875 L30.2328 14.875 L28.5765 12.9375 Q28.514 12.9375 28.4359 12.9375 Q28.3578 12.9531 28.2797 12.9531 Q26.9515 12.9531 26.0609 12.4062 Q25.1859 11.8437 24.7484 10.8593 Q24.3265 9.8593 24.3265 8.5156 Q24.3265 7.2031 24.7484 6.2187 Q25.1859 5.2343 26.0609 4.6875 Q26.9515 4.125 28.2953 4.125 Q29.5765 4.125 30.4515 4.6718 Q31.3265 5.2187 31.7797 6.2187 Q32.2328 7.2031 32.2328 8.5312 ZM25.4672 8.5312 Q25.4672 10.1562 26.139 11.0937 Q26.8265 12.0156 28.2797 12.0156 Q29.7484 12.0156 30.4203 11.0937 Q31.0922 10.1562 31.0922 8.5312 Q31.0922 6.9062 30.4203 6 Q29.7484 5.0781 28.2953 5.0781 Q26.8422 5.0781 26.1547 6 Q25.4672 6.9062 25.4672 8.5312 ZM34.1205 12.8281 L34.1205 4.2656 L35.2142 4.2656 L35.2142 11.875 L38.9486 11.875 L38.9486 12.8281 L34.1205 12.8281 Z" style="stroke:none; clip-path:url(#clipPath59);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><line x1="-619.9153" x2="-502.66" y1="216.3727" style="fill:none; clip-path:url(#clipPath2);" y2="216.3727"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-573.0177,231.2007)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath60);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1211 -240 -1207 -244 -1015 -244 -1015 -114 -1019 -110 -1211 -110"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1211 -240 -1207 -244 -1015 -244 -1015 -114 -1019 -110 -1211 -110"
+      /><line x1="-1019" x2="-1016" y1="-240" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-243"
+      /><line x1="-1211" x2="-1019" y1="-240" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-240"
+      /><line x1="-1019" x2="-1019" y1="-240" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-110"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1176.3127,-222.2385)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM27.7175 -3.2344 Q27.7175 -1.625 26.905 -0.75 Q26.0925 0.125 24.7175 0.125 Q23.8738 0.125 23.2019 -0.2656 Q22.53 -0.6562 22.1394 -1.4062 Q21.7644 -2.1562 21.7644 -3.2344 Q21.7644 -4.8281 22.5613 -5.6875 Q23.3738 -6.5469 24.7488 -6.5469 Q25.6394 -6.5469 26.2956 -6.1562 Q26.9675 -5.7656 27.3425 -5.0312 Q27.7175 -4.2969 27.7175 -3.2344 ZM22.8581 -3.2344 Q22.8581 -2.0938 23.3113 -1.4219 Q23.7644 -0.75 24.7488 -0.75 Q25.7175 -0.75 26.1706 -1.4219 Q26.6238 -2.0938 26.6238 -3.2344 Q26.6238 -4.375 26.1706 -5.0156 Q25.7175 -5.6562 24.7331 -5.6562 Q23.7488 -5.6562 23.2956 -5.0156 Q22.8581 -4.375 22.8581 -3.2344 ZM31.9619 0.125 Q31.1182 0.125 30.4463 -0.2188 Q29.7901 -0.5781 29.3994 -1.3125 Q29.0244 -2.0469 29.0244 -3.1875 Q29.0244 -4.375 29.4151 -5.1094 Q29.8213 -5.8594 30.4932 -6.2031 Q31.1807 -6.5469 32.0401 -6.5469 Q32.5244 -6.5469 32.9776 -6.4375 Q33.4463 -6.3438 33.7276 -6.2031 L33.4151 -5.3281 Q33.1182 -5.4375 32.7276 -5.5312 Q32.3526 -5.625 32.0088 -5.625 Q30.1182 -5.625 30.1182 -3.1875 Q30.1182 -2.0312 30.5713 -1.4062 Q31.0401 -0.7969 31.9619 -0.7969 Q32.4776 -0.7969 32.8838 -0.9062 Q33.2901 -1.0156 33.6182 -1.1562 L33.6182 -0.2344 Q33.3057 -0.0625 32.9151 0.0312 Q32.5244 0.125 31.9619 0.125 ZM36.1907 -4.3594 Q36.1907 -4.1562 36.1751 -3.8438 Q36.1595 -3.5469 36.1439 -3.3125 L36.1907 -3.3125 Q36.2689 -3.4062 36.4095 -3.5781 Q36.5501 -3.7656 36.6907 -3.9531 Q36.847 -4.1406 36.9564 -4.2656 L39.0189 -6.4375 L40.2532 -6.4375 L37.6439 -3.6875 L40.4251 0 L39.1595 0 L36.9251 -3 L36.1907 -2.3594 L36.1907 0 L35.1439 0 L35.1439 -9.125 L36.1907 -9.125 L36.1907 -4.3594 ZM44.0363 -6.5469 Q44.8644 -6.5469 45.4582 -6.1875 Q46.0519 -5.8281 46.3644 -5.1719 Q46.6925 -4.5312 46.6925 -3.6406 L46.6925 -3.0156 L42.2863 -3.0156 Q42.3175 -1.9219 42.8488 -1.3438 Q43.38 -0.7812 44.3332 -0.7812 Q44.9582 -0.7812 45.4269 -0.8906 Q45.8957 -1.0156 46.4113 -1.2188 L46.4113 -0.2969 Q45.9113 -0.0781 45.4269 0.0156 Q44.9582 0.125 44.2863 0.125 Q43.38 0.125 42.6769 -0.25 Q41.9738 -0.625 41.5832 -1.3594 Q41.1925 -2.0938 41.1925 -3.1719 Q41.1925 -4.2188 41.5519 -4.9688 Q41.9113 -5.7344 42.5519 -6.1406 Q43.1925 -6.5469 44.0363 -6.5469 ZM44.0207 -5.6875 Q43.2707 -5.6875 42.8332 -5.2031 Q42.3957 -4.7188 42.3175 -3.8594 L45.5832 -3.8594 Q45.5832 -4.6719 45.2082 -5.1719 Q44.8332 -5.6875 44.0207 -5.6875 ZM51.32 -6.5469 Q51.5075 -6.5469 51.7106 -6.5312 Q51.9293 -6.5156 52.0856 -6.4844 L51.945 -5.5156 Q51.7887 -5.5469 51.6012 -5.5625 Q51.4137 -5.5938 51.2575 -5.5938 Q50.7575 -5.5938 50.32 -5.3125 Q49.8981 -5.0469 49.6325 -4.5625 Q49.3825 -4.0781 49.3825 -3.4375 L49.3825 0 L48.32 0 L48.32 -6.4375 L49.195 -6.4375 L49.3043 -5.25 L49.3512 -5.25 Q49.6637 -5.7812 50.1481 -6.1562 Q50.6481 -6.5469 51.32 -6.5469 ZM58.9742 0.125 Q58.1304 0.125 57.4585 -0.2188 Q56.8023 -0.5781 56.4117 -1.3125 Q56.0367 -2.0469 56.0367 -3.1875 Q56.0367 -4.375 56.4273 -5.1094 Q56.8335 -5.8594 57.5054 -6.2031 Q58.1929 -6.5469 59.0523 -6.5469 Q59.5367 -6.5469 59.9898 -6.4375 Q60.4585 -6.3438 60.7398 -6.2031 L60.4273 -5.3281 Q60.1304 -5.4375 59.7398 -5.5312 Q59.3648 -5.625 59.021 -5.625 Q57.1304 -5.625 57.1304 -3.1875 Q57.1304 -2.0312 57.5835 -1.4062 Q58.0523 -0.7969 58.9742 -0.7969 Q59.4898 -0.7969 59.896 -0.9062 Q60.3023 -1.0156 60.6304 -1.1562 L60.6304 -0.2344 Q60.3179 -0.0625 59.9273 0.0312 Q59.5367 0.125 58.9742 0.125 ZM67.7498 -3.2344 Q67.7498 -1.625 66.9373 -0.75 Q66.1248 0.125 64.7498 0.125 Q63.9061 0.125 63.2342 -0.2656 Q62.5623 -0.6562 62.1717 -1.4062 Q61.7967 -2.1562 61.7967 -3.2344 Q61.7967 -4.8281 62.5936 -5.6875 Q63.4061 -6.5469 64.7811 -6.5469 Q65.6717 -6.5469 66.3279 -6.1562 Q66.9998 -5.7656 67.3748 -5.0312 Q67.7498 -4.2969 67.7498 -3.2344 ZM62.8904 -3.2344 Q62.8904 -2.0938 63.3436 -1.4219 Q63.7967 -0.75 64.7811 -0.75 Q65.7498 -0.75 66.2029 -1.4219 Q66.6561 -2.0938 66.6561 -3.2344 Q66.6561 -4.375 66.2029 -5.0156 Q65.7498 -5.6562 64.7654 -5.6562 Q63.7811 -5.6562 63.3279 -5.0156 Q62.8904 -4.375 62.8904 -3.2344 ZM72.5099 -6.5469 Q73.6661 -6.5469 74.2442 -5.9844 Q74.838 -5.4375 74.838 -4.1875 L74.838 0 L73.8067 0 L73.8067 -4.1094 Q73.8067 -5.6562 72.3536 -5.6562 Q71.2911 -5.6562 70.8849 -5.0625 Q70.4786 -4.4688 70.4786 -3.3438 L70.4786 0 L69.4161 0 L69.4161 -6.4375 L70.2755 -6.4375 L70.4317 -5.5625 L70.4942 -5.5625 Q70.8067 -6.0625 71.3536 -6.2969 Q71.9005 -6.5469 72.5099 -6.5469 ZM78.9884 -0.75 Q79.2228 -0.75 79.4728 -0.7812 Q79.7228 -0.8281 79.879 -0.875 L79.879 -0.0781 Q79.7228 0.0156 79.4103 0.0625 Q79.0978 0.125 78.8009 0.125 Q78.3009 0.125 77.8634 -0.0469 Q77.4415 -0.2344 77.1759 -0.6562 Q76.9259 -1.0938 76.9259 -1.875 L76.9259 -5.6094 L76.004 -5.6094 L76.004 -6.125 L76.9259 -6.5469 L77.3478 -7.9062 L77.9728 -7.9062 L77.9728 -6.4375 L79.8322 -6.4375 L79.8322 -5.6094 L77.9728 -5.6094 L77.9728 -1.8906 Q77.9728 -1.3125 78.254 -1.0312 Q78.5353 -0.75 78.9884 -0.75 ZM83.6017 -6.5469 Q84.7736 -6.5469 85.3361 -6.0312 Q85.9142 -5.5156 85.9142 -4.375 L85.9142 0 L85.1329 0 L84.9298 -0.9062 L84.8829 -0.9062 Q84.4611 -0.3906 83.9923 -0.125 Q83.5392 0.125 82.7267 0.125 Q81.8517 0.125 81.2736 -0.3281 Q80.6954 -0.7969 80.6954 -1.7812 Q80.6954 -2.75 81.4454 -3.2656 Q82.2111 -3.7969 83.7892 -3.8438 L84.8829 -3.875 L84.8829 -4.2656 Q84.8829 -5.0625 84.5236 -5.375 Q84.1798 -5.6875 83.5392 -5.6875 Q83.0392 -5.6875 82.5861 -5.5312 Q82.1329 -5.3906 81.7267 -5.2031 L81.4142 -5.9844 Q81.8361 -6.2188 82.3986 -6.375 Q82.9767 -6.5469 83.6017 -6.5469 ZM83.9142 -3.1094 Q82.7111 -3.0625 82.2423 -2.7188 Q81.7892 -2.3906 81.7892 -1.7812 Q81.7892 -1.2344 82.1173 -0.9844 Q82.4454 -0.7344 82.9611 -0.7344 Q83.7892 -0.7344 84.3204 -1.1719 Q84.8673 -1.625 84.8673 -2.5625 L84.8673 -3.1406 L83.9142 -3.1094 ZM88.4431 -8.8438 Q88.6775 -8.8438 88.865 -8.6719 Q89.0525 -8.5156 89.0525 -8.1719 Q89.0525 -7.8438 88.865 -7.6719 Q88.6775 -7.5 88.4431 -7.5 Q88.1775 -7.5 87.99 -7.6719 Q87.8181 -7.8438 87.8181 -8.1719 Q87.8181 -8.5156 87.99 -8.6719 Q88.1775 -8.8438 88.4431 -8.8438 ZM88.9587 -6.4375 L88.9587 0 L87.8962 0 L87.8962 -6.4375 L88.9587 -6.4375 ZM94.086 -6.5469 Q95.2423 -6.5469 95.8204 -5.9844 Q96.4141 -5.4375 96.4141 -4.1875 L96.4141 0 L95.3829 0 L95.3829 -4.1094 Q95.3829 -5.6562 93.9298 -5.6562 Q92.8673 -5.6562 92.461 -5.0625 Q92.0548 -4.4688 92.0548 -3.3438 L92.0548 0 L90.9923 0 L90.9923 -6.4375 L91.8516 -6.4375 L92.0079 -5.5625 L92.0704 -5.5625 Q92.3829 -6.0625 92.9298 -6.2969 Q93.4766 -6.5469 94.086 -6.5469 ZM100.8927 -6.5469 Q101.7208 -6.5469 102.3146 -6.1875 Q102.9083 -5.8281 103.2208 -5.1719 Q103.5489 -4.5312 103.5489 -3.6406 L103.5489 -3.0156 L99.1427 -3.0156 Q99.1739 -1.9219 99.7052 -1.3438 Q100.2364 -0.7812 101.1896 -0.7812 Q101.8146 -0.7812 102.2833 -0.8906 Q102.7521 -1.0156 103.2677 -1.2188 L103.2677 -0.2969 Q102.7677 -0.0781 102.2833 0.0156 Q101.8146 0.125 101.1427 0.125 Q100.2364 0.125 99.5333 -0.25 Q98.8302 -0.625 98.4396 -1.3594 Q98.0489 -2.0938 98.0489 -3.1719 Q98.0489 -4.2188 98.4083 -4.9688 Q98.7677 -5.7344 99.4083 -6.1406 Q100.0489 -6.5469 100.8927 -6.5469 ZM100.8771 -5.6875 Q100.1271 -5.6875 99.6896 -5.2031 Q99.2521 -4.7188 99.1739 -3.8594 L102.4396 -3.8594 Q102.4396 -4.6719 102.0646 -5.1719 Q101.6896 -5.6875 100.8771 -5.6875 ZM108.1764 -6.5469 Q108.3639 -6.5469 108.567 -6.5312 Q108.7857 -6.5156 108.942 -6.4844 L108.8014 -5.5156 Q108.6451 -5.5469 108.4576 -5.5625 Q108.2701 -5.5938 108.1139 -5.5938 Q107.6139 -5.5938 107.1764 -5.3125 Q106.7545 -5.0469 106.4889 -4.5625 Q106.2389 -4.0781 106.2389 -3.4375 L106.2389 0 L105.1764 0 L105.1764 -6.4375 L106.0514 -6.4375 L106.1607 -5.25 L106.2076 -5.25 Q106.5201 -5.7812 107.0045 -6.1562 Q107.5045 -6.5469 108.1764 -6.5469 ZM109.7105 -2.3281 L114.2418 -4.2188 L109.7105 -6.3594 L109.7105 -7.2969 L115.3668 -4.4688 L115.3668 -3.875 L109.7105 -1.3906 L109.7105 -2.3281 ZM116.5746 -2.3281 L121.1058 -4.2188 L116.5746 -6.3594 L116.5746 -7.2969 L122.2308 -4.4688 L122.2308 -3.875 L116.5746 -1.3906 L116.5746 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath61);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1150.0583,-219.6559)"
+    ><path d="M6.5469 12.8281 L5.5156 10.1718 L2.1094 10.1718 L1.0938 12.8281 L0 12.8281 L3.3438 4.2187 L4.3125 4.2187 L7.6562 12.8281 L6.5469 12.8281 ZM4.2188 6.625 Q4.1875 6.5312 4.0938 6.2812 Q4.0156 6.0312 3.9375 5.7656 Q3.8594 5.4843 3.8125 5.3437 Q3.7344 5.7187 3.625 6.0781 Q3.5156 6.4218 3.4375 6.625 L2.4688 9.2187 L5.1875 9.2187 L4.2188 6.625 ZM11.7462 6.2812 Q12.9337 6.2812 13.6524 7.1093 Q14.3868 7.9375 14.3868 9.5937 Q14.3868 11.25 13.6524 12.1093 Q12.9337 12.9531 11.7306 12.9531 Q10.9962 12.9531 10.5118 12.6718 Q10.0274 12.3906 9.7462 12.0156 L9.6681 12.0156 Q9.6993 12.2187 9.7149 12.5312 Q9.7462 12.8437 9.7462 13.0625 L9.7462 15.7031 L8.6837 15.7031 L8.6837 6.3906 L9.5587 6.3906 L9.6993 7.2656 L9.7462 7.2656 Q10.0274 6.8593 10.4962 6.5781 Q10.9649 6.2812 11.7462 6.2812 ZM11.5587 7.1718 Q10.5743 7.1718 10.1681 7.7187 Q9.7618 8.2656 9.7462 9.3906 L9.7462 9.5937 Q9.7462 10.7812 10.1368 11.4375 Q10.5274 12.0781 11.5743 12.0781 Q12.1681 12.0781 12.5431 11.75 Q12.9181 11.4218 13.1056 10.875 Q13.2931 10.3125 13.2931 9.5937 Q13.2931 8.4843 12.8712 7.8281 Q12.4493 7.1718 11.5587 7.1718 ZM16.6106 3.9843 Q16.845 3.9843 17.0325 4.1562 Q17.22 4.3125 17.22 4.6562 Q17.22 4.9843 17.0325 5.1562 Q16.845 5.3281 16.6106 5.3281 Q16.345 5.3281 16.1575 5.1562 Q15.9856 4.9843 15.9856 4.6562 Q15.9856 4.3125 16.1575 4.1562 Q16.345 3.9843 16.6106 3.9843 ZM17.1262 6.3906 L17.1262 12.8281 L16.0637 12.8281 L16.0637 6.3906 L17.1262 6.3906 ZM26.1548 8.2968 L29.1079 8.2968 L29.1079 12.5 Q28.4204 12.7343 27.7017 12.8437 Q26.9985 12.9531 26.1079 12.9531 Q24.7642 12.9531 23.8579 12.4218 Q22.9517 11.875 22.4673 10.8906 Q21.9985 9.9062 21.9985 8.5468 Q21.9985 7.2031 22.5142 6.2187 Q23.0454 5.2343 24.0298 4.6875 Q25.0298 4.1406 26.436 4.1406 Q27.1548 4.1406 27.7954 4.2812 Q28.436 4.4062 28.9985 4.6406 L28.5767 5.5781 Q28.1235 5.375 27.5454 5.2343 Q26.9829 5.0937 26.3735 5.0937 Q24.8423 5.0937 23.9829 6.0156 Q23.1235 6.9375 23.1235 8.5468 Q23.1235 9.5625 23.4517 10.3593 Q23.7798 11.1406 24.4829 11.5781 Q25.2017 12.0156 26.3579 12.0156 Q26.9204 12.0156 27.311 11.9531 Q27.7017 11.8906 28.0298 11.8125 L28.0298 9.2656 L26.1548 9.2656 L26.1548 8.2968 ZM33.4534 6.2812 Q34.6252 6.2812 35.1877 6.7968 Q35.7659 7.3125 35.7659 8.4531 L35.7659 12.8281 L34.9846 12.8281 L34.7815 11.9218 L34.7346 11.9218 Q34.3127 12.4375 33.844 12.7031 Q33.3909 12.9531 32.5784 12.9531 Q31.7034 12.9531 31.1252 12.5 Q30.5471 12.0312 30.5471 11.0468 Q30.5471 10.0781 31.2971 9.5625 Q32.0627 9.0312 33.6409 8.9843 L34.7346 8.9531 L34.7346 8.5625 Q34.7346 7.7656 34.3752 7.4531 Q34.0315 7.1406 33.3909 7.1406 Q32.8909 7.1406 32.4377 7.2968 Q31.9846 7.4375 31.5784 7.625 L31.2659 6.8437 Q31.6877 6.6093 32.2502 6.4531 Q32.8284 6.2812 33.4534 6.2812 ZM33.7659 9.7187 Q32.5627 9.7656 32.094 10.1093 Q31.6409 10.4375 31.6409 11.0468 Q31.6409 11.5937 31.969 11.8437 Q32.2971 12.0937 32.8127 12.0937 Q33.6409 12.0937 34.1721 11.6562 Q34.719 11.2031 34.719 10.2656 L34.719 9.6875 L33.7659 9.7187 ZM39.9041 12.0781 Q40.1385 12.0781 40.3885 12.0468 Q40.6385 12 40.7948 11.9531 L40.7948 12.75 Q40.6385 12.8437 40.326 12.8906 Q40.0135 12.9531 39.7166 12.9531 Q39.2166 12.9531 38.7791 12.7812 Q38.3573 12.5937 38.0916 12.1718 Q37.8416 11.7343 37.8416 10.9531 L37.8416 7.2187 L36.9198 7.2187 L36.9198 6.7031 L37.8416 6.2812 L38.2635 4.9218 L38.8885 4.9218 L38.8885 6.3906 L40.7479 6.3906 L40.7479 7.2187 L38.8885 7.2187 L38.8885 10.9375 Q38.8885 11.5156 39.1698 11.7968 Q39.451 12.0781 39.9041 12.0781 ZM44.5643 6.2812 Q45.3924 6.2812 45.9862 6.6406 Q46.5799 7 46.8924 7.6562 Q47.2206 8.2968 47.2206 9.1875 L47.2206 9.8125 L42.8143 9.8125 Q42.8456 10.9062 43.3768 11.4843 Q43.9081 12.0468 44.8612 12.0468 Q45.4862 12.0468 45.9549 11.9375 Q46.4237 11.8125 46.9393 11.6093 L46.9393 12.5312 Q46.4393 12.75 45.9549 12.8437 Q45.4862 12.9531 44.8143 12.9531 Q43.9081 12.9531 43.2049 12.5781 Q42.5018 12.2031 42.1112 11.4687 Q41.7206 10.7343 41.7206 9.6562 Q41.7206 8.6093 42.0799 7.8593 Q42.4393 7.0937 43.0799 6.6875 Q43.7206 6.2812 44.5643 6.2812 ZM44.5487 7.1406 Q43.7987 7.1406 43.3612 7.625 Q42.9237 8.1093 42.8456 8.9687 L46.1112 8.9687 Q46.1112 8.1562 45.7362 7.6562 Q45.3612 7.1406 44.5487 7.1406 ZM53.0042 9.1875 Q52.848 8.7031 52.723 8.2343 Q52.6136 7.75 52.5667 7.4843 L52.5199 7.4843 Q52.4574 7.75 52.348 8.2343 Q52.2542 8.7031 52.0824 9.2031 L50.9261 12.8125 L49.723 12.8125 L47.9574 6.3906 L49.0511 6.3906 L49.9417 9.8125 Q50.0824 10.3281 50.1917 10.8593 Q50.3167 11.3906 50.3636 11.7343 L50.4105 11.7343 Q50.4574 11.5312 50.5199 11.2343 Q50.598 10.9375 50.6761 10.6093 Q50.7542 10.2656 50.848 10.0156 L51.9886 6.3906 L53.1292 6.3906 L54.2386 10.0156 Q54.3792 10.4218 54.5042 10.9062 Q54.6292 11.375 54.6761 11.7187 L54.723 11.7187 Q54.7542 11.4218 54.8792 10.9062 Q55.0042 10.375 55.1449 9.8125 L56.0511 6.3906 L57.1292 6.3906 L55.348 12.8125 L54.1136 12.8125 L53.0042 9.1875 ZM60.7175 6.2812 Q61.8894 6.2812 62.4519 6.7968 Q63.03 7.3125 63.03 8.4531 L63.03 12.8281 L62.2488 12.8281 L62.0457 11.9218 L61.9988 11.9218 Q61.5769 12.4375 61.1082 12.7031 Q60.655 12.9531 59.8425 12.9531 Q58.9675 12.9531 58.3894 12.5 Q57.8113 12.0312 57.8113 11.0468 Q57.8113 10.0781 58.5613 9.5625 Q59.3269 9.0312 60.905 8.9843 L61.9988 8.9531 L61.9988 8.5625 Q61.9988 7.7656 61.6394 7.4531 Q61.2957 7.1406 60.655 7.1406 Q60.155 7.1406 59.7019 7.2968 Q59.2488 7.4375 58.8425 7.625 L58.53 6.8437 Q58.9519 6.6093 59.5144 6.4531 Q60.0925 6.2812 60.7175 6.2812 ZM61.03 9.7187 Q59.8269 9.7656 59.3582 10.1093 Q58.905 10.4375 58.905 11.0468 Q58.905 11.5937 59.2332 11.8437 Q59.5613 12.0937 60.0769 12.0937 Q60.905 12.0937 61.4363 11.6562 Q61.9832 11.2031 61.9832 10.2656 L61.9832 9.6875 L61.03 9.7187 ZM64.0121 6.3906 L65.1371 6.3906 L66.5277 10.0625 Q66.7152 10.5312 66.8558 10.9687 Q66.9965 11.4062 67.0746 11.8125 L67.1215 11.8125 Q67.184 11.5156 67.3402 11.0312 Q67.4965 10.5312 67.6683 10.0468 L68.9808 6.3906 L70.1215 6.3906 L67.3402 13.7187 Q67.0121 14.625 66.4652 15.1562 Q65.934 15.7031 65.0121 15.7031 Q64.7152 15.7031 64.4965 15.6718 Q64.2777 15.6406 64.1215 15.6093 L64.1215 14.7656 Q64.2621 14.7968 64.4496 14.8125 Q64.6371 14.8437 64.8402 14.8437 Q65.3871 14.8437 65.7308 14.5312 Q66.0746 14.2187 66.2621 13.7031 L66.6058 12.8593 L64.0121 6.3906 Z" style="stroke:none; clip-path:url(#clipPath62);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-447.9175" y="234.6766" width="119" style="clip-path:url(#clipPath2); stroke:none;" height="48.6882"
+      /><rect x="-447.9175" y="234.6766" width="119" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="48.6882"
+      /><rect x="-346.9175" y="240.6766" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="-346.9175" y="240.6766" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="-348.9175" y="248.6766" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-348.9175" y="248.6766" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="-348.9175" y="243.6766" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-348.9175" y="243.6766" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-433.9175,252.6766)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM24.5613 -6.5469 Q25.7331 -6.5469 26.2956 -6.0312 Q26.8738 -5.5156 26.8738 -4.375 L26.8738 0 L26.0925 0 L25.8894 -0.9062 L25.8425 -0.9062 Q25.4206 -0.3906 24.9519 -0.125 Q24.4988 0.125 23.6863 0.125 Q22.8113 0.125 22.2331 -0.3281 Q21.655 -0.7969 21.655 -1.7812 Q21.655 -2.75 22.405 -3.2656 Q23.1706 -3.7969 24.7488 -3.8438 L25.8425 -3.875 L25.8425 -4.2656 Q25.8425 -5.0625 25.4831 -5.375 Q25.1394 -5.6875 24.4988 -5.6875 Q23.9988 -5.6875 23.5456 -5.5312 Q23.0925 -5.3906 22.6863 -5.2031 L22.3738 -5.9844 Q22.7956 -6.2188 23.3581 -6.375 Q23.9363 -6.5469 24.5613 -6.5469 ZM24.8738 -3.1094 Q23.6706 -3.0625 23.2019 -2.7188 Q22.7488 -2.3906 22.7488 -1.7812 Q22.7488 -1.2344 23.0769 -0.9844 Q23.405 -0.7344 23.9206 -0.7344 Q24.7488 -0.7344 25.28 -1.1719 Q25.8269 -1.625 25.8269 -2.5625 L25.8269 -3.1406 L24.8738 -3.1094 ZM31.0121 -0.75 Q31.2464 -0.75 31.4964 -0.7812 Q31.7464 -0.8281 31.9027 -0.875 L31.9027 -0.0781 Q31.7464 0.0156 31.4339 0.0625 Q31.1214 0.125 30.8246 0.125 Q30.3246 0.125 29.8871 -0.0469 Q29.4652 -0.2344 29.1996 -0.6562 Q28.9496 -1.0938 28.9496 -1.875 L28.9496 -5.6094 L28.0277 -5.6094 L28.0277 -6.125 L28.9496 -6.5469 L29.3714 -7.9062 L29.9964 -7.9062 L29.9964 -6.4375 L31.8558 -6.4375 L31.8558 -5.6094 L29.9964 -5.6094 L29.9964 -1.8906 Q29.9964 -1.3125 30.2777 -1.0312 Q30.5589 -0.75 31.0121 -0.75 ZM35.6253 -6.5469 Q36.7972 -6.5469 37.3597 -6.0312 Q37.9378 -5.5156 37.9378 -4.375 L37.9378 0 L37.1566 0 L36.9535 -0.9062 L36.9066 -0.9062 Q36.4847 -0.3906 36.016 -0.125 Q35.5628 0.125 34.7503 0.125 Q33.8753 0.125 33.2972 -0.3281 Q32.7191 -0.7969 32.7191 -1.7812 Q32.7191 -2.75 33.4691 -3.2656 Q34.2347 -3.7969 35.8128 -3.8438 L36.9066 -3.875 L36.9066 -4.2656 Q36.9066 -5.0625 36.5472 -5.375 Q36.2035 -5.6875 35.5628 -5.6875 Q35.0628 -5.6875 34.6097 -5.5312 Q34.1566 -5.3906 33.7503 -5.2031 L33.4378 -5.9844 Q33.8597 -6.2188 34.4222 -6.375 Q35.0003 -6.5469 35.6253 -6.5469 ZM35.9378 -3.1094 Q34.7347 -3.0625 34.266 -2.7188 Q33.8128 -2.3906 33.8128 -1.7812 Q33.8128 -1.2344 34.141 -0.9844 Q34.4691 -0.7344 34.9847 -0.7344 Q35.8128 -0.7344 36.3441 -1.1719 Q36.891 -1.625 36.891 -2.5625 L36.891 -3.1406 L35.9378 -3.1094 ZM40.9824 -6.9062 Q40.9824 -6.4844 40.9668 -6.125 Q40.9511 -5.7812 40.9199 -5.5781 L40.9824 -5.5781 Q41.2636 -5.9844 41.7324 -6.2656 Q42.2168 -6.5469 42.9668 -6.5469 Q44.1699 -6.5469 44.8886 -5.7031 Q45.623 -4.875 45.623 -3.2188 Q45.623 -1.5625 44.8886 -0.7188 Q44.1543 0.125 42.9668 0.125 Q42.2168 0.125 41.7324 -0.1562 Q41.2636 -0.4375 40.9824 -0.8125 L40.8886 -0.8125 L40.6855 0 L39.9199 0 L39.9199 -9.125 L40.9824 -9.125 L40.9824 -6.9062 ZM42.7949 -5.6562 Q41.7793 -5.6562 41.373 -5.0625 Q40.9824 -4.4844 40.9824 -3.25 L40.9824 -3.2031 Q40.9824 -2.0156 41.373 -1.375 Q41.7636 -0.75 42.8105 -0.75 Q43.6855 -0.75 44.1074 -1.3906 Q44.5293 -2.0312 44.5293 -3.2344 Q44.5293 -5.6562 42.7949 -5.6562 ZM49.7374 -6.5469 Q50.9093 -6.5469 51.4718 -6.0312 Q52.0499 -5.5156 52.0499 -4.375 L52.0499 0 L51.2687 0 L51.0656 -0.9062 L51.0187 -0.9062 Q50.5968 -0.3906 50.1281 -0.125 Q49.6749 0.125 48.8624 0.125 Q47.9874 0.125 47.4093 -0.3281 Q46.8312 -0.7969 46.8312 -1.7812 Q46.8312 -2.75 47.5812 -3.2656 Q48.3468 -3.7969 49.9249 -3.8438 L51.0187 -3.875 L51.0187 -4.2656 Q51.0187 -5.0625 50.6593 -5.375 Q50.3156 -5.6875 49.6749 -5.6875 Q49.1749 -5.6875 48.7218 -5.5312 Q48.2687 -5.3906 47.8624 -5.2031 L47.5499 -5.9844 Q47.9718 -6.2188 48.5343 -6.375 Q49.1124 -6.5469 49.7374 -6.5469 ZM50.0499 -3.1094 Q48.8468 -3.0625 48.3781 -2.7188 Q47.9249 -2.3906 47.9249 -1.7812 Q47.9249 -1.2344 48.2531 -0.9844 Q48.5812 -0.7344 49.0968 -0.7344 Q49.9249 -0.7344 50.4562 -1.1719 Q51.0031 -1.625 51.0031 -2.5625 L51.0031 -3.1406 L50.0499 -3.1094 ZM58.2195 -1.7812 Q58.2195 -0.8438 57.5163 -0.3594 Q56.8288 0.125 55.657 0.125 Q54.9851 0.125 54.5007 0.0156 Q54.0163 -0.0938 53.6413 -0.2812 L53.6413 -1.25 Q54.032 -1.0625 54.5632 -0.8906 Q55.1101 -0.7344 55.6726 -0.7344 Q56.4851 -0.7344 56.8445 -0.9844 Q57.2038 -1.25 57.2038 -1.6875 Q57.2038 -1.9219 57.0632 -2.1094 Q56.9382 -2.2969 56.5945 -2.4844 Q56.2507 -2.6875 55.6257 -2.9219 Q55.0007 -3.1719 54.5476 -3.4062 Q54.1101 -3.6406 53.8601 -3.9688 Q53.6257 -4.3125 53.6257 -4.8438 Q53.6257 -5.6562 54.282 -6.0938 Q54.9538 -6.5469 56.0476 -6.5469 Q56.6257 -6.5469 57.1257 -6.4375 Q57.6413 -6.3281 58.0945 -6.125 L57.7351 -5.2812 Q57.3288 -5.4531 56.8757 -5.5625 Q56.4382 -5.6875 55.9695 -5.6875 Q55.3132 -5.6875 54.9695 -5.4688 Q54.6413 -5.2656 54.6413 -4.9062 Q54.6413 -4.6406 54.7976 -4.4531 Q54.9538 -4.2656 55.3132 -4.0938 Q55.6726 -3.9219 56.2976 -3.6875 Q56.907 -3.4531 57.3288 -3.2031 Q57.7663 -2.9688 57.9851 -2.625 Q58.2195 -2.2969 58.2195 -1.7812 ZM62.2644 -6.5469 Q63.0925 -6.5469 63.6863 -6.1875 Q64.28 -5.8281 64.5925 -5.1719 Q64.9206 -4.5312 64.9206 -3.6406 L64.9206 -3.0156 L60.5144 -3.0156 Q60.5456 -1.9219 61.0769 -1.3438 Q61.6081 -0.7812 62.5613 -0.7812 Q63.1863 -0.7812 63.655 -0.8906 Q64.1238 -1.0156 64.6394 -1.2188 L64.6394 -0.2969 Q64.1394 -0.0781 63.655 0.0156 Q63.1863 0.125 62.5144 0.125 Q61.6081 0.125 60.905 -0.25 Q60.2019 -0.625 59.8113 -1.3594 Q59.4206 -2.0938 59.4206 -3.1719 Q59.4206 -4.2188 59.78 -4.9688 Q60.1394 -5.7344 60.78 -6.1406 Q61.4206 -6.5469 62.2644 -6.5469 ZM62.2488 -5.6875 Q61.4988 -5.6875 61.0613 -5.2031 Q60.6238 -4.7188 60.5456 -3.8594 L63.8113 -3.8594 Q63.8113 -4.6719 63.4363 -5.1719 Q63.0613 -5.6875 62.2488 -5.6875 ZM66.1262 -2.3281 L70.6574 -4.2188 L66.1262 -6.3594 L66.1262 -7.2969 L71.7824 -4.4688 L71.7824 -3.875 L66.1262 -1.3906 L66.1262 -2.3281 ZM72.9902 -2.3281 L77.5215 -4.2188 L72.9902 -6.3594 L72.9902 -7.2969 L78.6465 -4.4688 L78.6465 -3.875 L72.9902 -1.3906 L72.9902 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath63);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-428.3817,255.0207)"
+    ><path d="M3.6094 4.2656 Q5.2188 4.2656 6.0312 4.7343 Q6.8594 5.2031 6.8594 6.3906 Q6.8594 7.1406 6.4375 7.6406 Q6.0312 8.1406 5.2344 8.2812 L5.2344 8.3437 Q5.7656 8.4218 6.2031 8.6562 Q6.6406 8.875 6.8906 9.2968 Q7.1562 9.7187 7.1562 10.3906 Q7.1562 11.5625 6.3594 12.2031 Q5.5625 12.8281 4.1719 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.6094 4.2656 ZM3.8281 7.9062 Q4.9375 7.9062 5.3438 7.5625 Q5.75 7.2031 5.75 6.5 Q5.75 5.7968 5.25 5.5 Q4.75 5.1875 3.6562 5.1875 L2.25 5.1875 L2.25 7.9062 L3.8281 7.9062 ZM2.25 8.8125 L2.25 11.9218 L3.9688 11.9218 Q5.1094 11.9218 5.5469 11.4843 Q6 11.0312 6 10.3125 Q6 9.6406 5.5312 9.2343 Q5.0781 8.8125 3.8906 8.8125 L2.25 8.8125 ZM14.4094 9.5937 Q14.4094 11.2031 13.5969 12.0781 Q12.7844 12.9531 11.4094 12.9531 Q10.5657 12.9531 9.8938 12.5625 Q9.2219 12.1718 8.8313 11.4218 Q8.4563 10.6718 8.4563 9.5937 Q8.4563 8 9.2532 7.1406 Q10.0657 6.2812 11.4407 6.2812 Q12.3313 6.2812 12.9875 6.6718 Q13.6594 7.0625 14.0344 7.7968 Q14.4094 8.5312 14.4094 9.5937 ZM9.55 9.5937 Q9.55 10.7343 10.0032 11.4062 Q10.4563 12.0781 11.4407 12.0781 Q12.4094 12.0781 12.8625 11.4062 Q13.3157 10.7343 13.3157 9.5937 Q13.3157 8.4531 12.8625 7.8125 Q12.4094 7.1718 11.425 7.1718 Q10.4407 7.1718 9.9875 7.8125 Q9.55 8.4531 9.55 9.5937 ZM21.6695 9.5937 Q21.6695 11.2031 20.857 12.0781 Q20.0445 12.9531 18.6695 12.9531 Q17.8257 12.9531 17.1539 12.5625 Q16.482 12.1718 16.0914 11.4218 Q15.7164 10.6718 15.7164 9.5937 Q15.7164 8 16.5132 7.1406 Q17.3257 6.2812 18.7007 6.2812 Q19.5914 6.2812 20.2476 6.6718 Q20.9195 7.0625 21.2945 7.7968 Q21.6695 8.5312 21.6695 9.5937 ZM16.8101 9.5937 Q16.8101 10.7343 17.2632 11.4062 Q17.7164 12.0781 18.7007 12.0781 Q19.6695 12.0781 20.1226 11.4062 Q20.5757 10.7343 20.5757 9.5937 Q20.5757 8.4531 20.1226 7.8125 Q19.6695 7.1718 18.6851 7.1718 Q17.7007 7.1718 17.2476 7.8125 Q16.8101 8.4531 16.8101 9.5937 ZM24.3827 8.4687 Q24.3827 8.6718 24.367 8.9843 Q24.3514 9.2812 24.3358 9.5156 L24.3827 9.5156 Q24.4608 9.4218 24.6014 9.25 Q24.742 9.0625 24.8827 8.875 Q25.0389 8.6875 25.1483 8.5625 L27.2108 6.3906 L28.4452 6.3906 L25.8358 9.1406 L28.617 12.8281 L27.3514 12.8281 L25.117 9.8281 L24.3827 10.4687 L24.3827 12.8281 L23.3358 12.8281 L23.3358 3.7031 L24.3827 3.7031 L24.3827 8.4687 ZM30.2907 3.9843 Q30.5251 3.9843 30.7126 4.1562 Q30.9001 4.3125 30.9001 4.6562 Q30.9001 4.9843 30.7126 5.1562 Q30.5251 5.3281 30.2907 5.3281 Q30.0251 5.3281 29.8376 5.1562 Q29.6657 4.9843 29.6657 4.6562 Q29.6657 4.3125 29.8376 4.1562 Q30.0251 3.9843 30.2907 3.9843 ZM30.8063 6.3906 L30.8063 12.8281 L29.7438 12.8281 L29.7438 6.3906 L30.8063 6.3906 ZM35.9336 6.2812 Q37.0899 6.2812 37.668 6.8437 Q38.2617 7.3906 38.2617 8.6406 L38.2617 12.8281 L37.2305 12.8281 L37.2305 8.7187 Q37.2305 7.1718 35.7774 7.1718 Q34.7149 7.1718 34.3086 7.7656 Q33.9024 8.3593 33.9024 9.4843 L33.9024 12.8281 L32.8399 12.8281 L32.8399 6.3906 L33.6992 6.3906 L33.8555 7.2656 L33.918 7.2656 Q34.2305 6.7656 34.7774 6.5312 Q35.3242 6.2812 35.9336 6.2812 ZM42.5372 6.2812 Q43.1778 6.2812 43.6778 6.5156 Q44.1934 6.75 44.5528 7.25 L44.6153 7.25 L44.7559 6.3906 L45.5997 6.3906 L45.5997 12.9375 Q45.5997 14.3125 44.8965 15 Q44.1934 15.7031 42.7247 15.7031 Q41.3028 15.7031 40.3965 15.2968 L40.3965 14.3281 Q41.3497 14.8281 42.7872 14.8281 Q43.6153 14.8281 44.084 14.3437 Q44.5528 13.8593 44.5528 13.0156 L44.5528 12.7656 Q44.5528 12.625 44.5684 12.3593 Q44.584 12.0781 44.5997 11.9687 L44.5372 11.9687 Q43.8965 12.9531 42.5528 12.9531 Q41.3028 12.9531 40.5997 12.0781 Q39.8965 11.2031 39.8965 9.625 Q39.8965 8.0937 40.5997 7.1875 Q41.3028 6.2812 42.5372 6.2812 ZM42.6778 7.1718 Q41.8809 7.1718 41.4278 7.8125 Q40.9903 8.4531 40.9903 9.6406 Q40.9903 10.8281 41.4278 11.4531 Q41.8653 12.0781 42.709 12.0781 Q43.6778 12.0781 44.1153 11.5625 Q44.5684 11.0468 44.5684 9.875 L44.5684 9.625 Q44.5684 8.2968 44.1153 7.7343 Q43.6622 7.1718 42.6778 7.1718 ZM51.8235 11.0468 Q51.8235 11.9843 51.1203 12.4687 Q50.4328 12.9531 49.261 12.9531 Q48.5891 12.9531 48.1047 12.8437 Q47.6203 12.7343 47.2453 12.5468 L47.2453 11.5781 Q47.636 11.7656 48.1672 11.9375 Q48.7141 12.0937 49.2766 12.0937 Q50.0891 12.0937 50.4485 11.8437 Q50.8078 11.5781 50.8078 11.1406 Q50.8078 10.9062 50.6672 10.7187 Q50.5422 10.5312 50.1985 10.3437 Q49.8547 10.1406 49.2297 9.9062 Q48.6047 9.6562 48.1516 9.4218 Q47.7141 9.1875 47.4641 8.8593 Q47.2297 8.5156 47.2297 7.9843 Q47.2297 7.1718 47.886 6.7343 Q48.5578 6.2812 49.6516 6.2812 Q50.2297 6.2812 50.7297 6.3906 Q51.2453 6.5 51.6985 6.7031 L51.3391 7.5468 Q50.9328 7.375 50.4797 7.2656 Q50.0422 7.1406 49.5735 7.1406 Q48.9172 7.1406 48.5735 7.3593 Q48.2453 7.5625 48.2453 7.9218 Q48.2453 8.1875 48.4016 8.375 Q48.5578 8.5625 48.9172 8.7343 Q49.2766 8.9062 49.9016 9.1406 Q50.511 9.375 50.9328 9.625 Q51.3703 9.8593 51.5891 10.2031 Q51.8235 10.5312 51.8235 11.0468 ZM60.3996 8.4531 Q60.3996 10.625 59.2121 11.7343 Q58.0246 12.8281 55.9153 12.8281 L53.5246 12.8281 L53.5246 4.2656 L56.1653 4.2656 Q57.4621 4.2656 58.4153 4.75 Q59.3684 5.2187 59.884 6.1562 Q60.3996 7.0781 60.3996 8.4531 ZM59.259 8.5 Q59.259 6.7812 58.4153 5.9843 Q57.5715 5.1875 56.009 5.1875 L54.6184 5.1875 L54.6184 11.9062 L55.7746 11.9062 Q59.259 11.9062 59.259 8.5 ZM64.7378 4.2656 Q66.3472 4.2656 67.1597 4.7343 Q67.9878 5.2031 67.9878 6.3906 Q67.9878 7.1406 67.5659 7.6406 Q67.1597 8.1406 66.3628 8.2812 L66.3628 8.3437 Q66.8941 8.4218 67.3316 8.6562 Q67.7691 8.875 68.0191 9.2968 Q68.2847 9.7187 68.2847 10.3906 Q68.2847 11.5625 67.4878 12.2031 Q66.6909 12.8281 65.3003 12.8281 L62.2847 12.8281 L62.2847 4.2656 L64.7378 4.2656 ZM64.9566 7.9062 Q66.0659 7.9062 66.4722 7.5625 Q66.8784 7.2031 66.8784 6.5 Q66.8784 5.7968 66.3784 5.5 Q65.8784 5.1875 64.7847 5.1875 L63.3784 5.1875 L63.3784 7.9062 L64.9566 7.9062 ZM63.3784 8.8125 L63.3784 11.9218 L65.0972 11.9218 Q66.2378 11.9218 66.6753 11.4843 Q67.1284 11.0312 67.1284 10.3125 Q67.1284 9.6406 66.6597 9.2343 Q66.2066 8.8125 65.0191 8.8125 L63.3784 8.8125 Z" style="stroke:none; clip-path:url(#clipPath64);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1196 -188 -1192 -192 -1030 -192 -1030 -129 -1034 -125 -1196 -125"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1196 -188 -1192 -192 -1030 -192 -1030 -129 -1034 -125 -1196 -125"
+      /><line x1="-1034" x2="-1031" y1="-188" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-191"
+      /><line x1="-1196" x2="-1034" y1="-188" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-188"
+      /><line x1="-1034" x2="-1034" y1="-188" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-125"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1176.3127,-170.7956)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM27.7175 -3.2344 Q27.7175 -1.625 26.905 -0.75 Q26.0925 0.125 24.7175 0.125 Q23.8738 0.125 23.2019 -0.2656 Q22.53 -0.6562 22.1394 -1.4062 Q21.7644 -2.1562 21.7644 -3.2344 Q21.7644 -4.8281 22.5613 -5.6875 Q23.3738 -6.5469 24.7488 -6.5469 Q25.6394 -6.5469 26.2956 -6.1562 Q26.9675 -5.7656 27.3425 -5.0312 Q27.7175 -4.2969 27.7175 -3.2344 ZM22.8581 -3.2344 Q22.8581 -2.0938 23.3113 -1.4219 Q23.7644 -0.75 24.7488 -0.75 Q25.7175 -0.75 26.1706 -1.4219 Q26.6238 -2.0938 26.6238 -3.2344 Q26.6238 -4.375 26.1706 -5.0156 Q25.7175 -5.6562 24.7331 -5.6562 Q23.7488 -5.6562 23.2956 -5.0156 Q22.8581 -4.375 22.8581 -3.2344 ZM31.9619 0.125 Q31.1182 0.125 30.4463 -0.2188 Q29.7901 -0.5781 29.3994 -1.3125 Q29.0244 -2.0469 29.0244 -3.1875 Q29.0244 -4.375 29.4151 -5.1094 Q29.8213 -5.8594 30.4932 -6.2031 Q31.1807 -6.5469 32.0401 -6.5469 Q32.5244 -6.5469 32.9776 -6.4375 Q33.4463 -6.3438 33.7276 -6.2031 L33.4151 -5.3281 Q33.1182 -5.4375 32.7276 -5.5312 Q32.3526 -5.625 32.0088 -5.625 Q30.1182 -5.625 30.1182 -3.1875 Q30.1182 -2.0312 30.5713 -1.4062 Q31.0401 -0.7969 31.9619 -0.7969 Q32.4776 -0.7969 32.8838 -0.9062 Q33.2901 -1.0156 33.6182 -1.1562 L33.6182 -0.2344 Q33.3057 -0.0625 32.9151 0.0312 Q32.5244 0.125 31.9619 0.125 ZM36.1907 -4.3594 Q36.1907 -4.1562 36.1751 -3.8438 Q36.1595 -3.5469 36.1439 -3.3125 L36.1907 -3.3125 Q36.2689 -3.4062 36.4095 -3.5781 Q36.5501 -3.7656 36.6907 -3.9531 Q36.847 -4.1406 36.9564 -4.2656 L39.0189 -6.4375 L40.2532 -6.4375 L37.6439 -3.6875 L40.4251 0 L39.1595 0 L36.9251 -3 L36.1907 -2.3594 L36.1907 0 L35.1439 0 L35.1439 -9.125 L36.1907 -9.125 L36.1907 -4.3594 ZM44.0363 -6.5469 Q44.8644 -6.5469 45.4582 -6.1875 Q46.0519 -5.8281 46.3644 -5.1719 Q46.6925 -4.5312 46.6925 -3.6406 L46.6925 -3.0156 L42.2863 -3.0156 Q42.3175 -1.9219 42.8488 -1.3438 Q43.38 -0.7812 44.3332 -0.7812 Q44.9582 -0.7812 45.4269 -0.8906 Q45.8957 -1.0156 46.4113 -1.2188 L46.4113 -0.2969 Q45.9113 -0.0781 45.4269 0.0156 Q44.9582 0.125 44.2863 0.125 Q43.38 0.125 42.6769 -0.25 Q41.9738 -0.625 41.5832 -1.3594 Q41.1925 -2.0938 41.1925 -3.1719 Q41.1925 -4.2188 41.5519 -4.9688 Q41.9113 -5.7344 42.5519 -6.1406 Q43.1925 -6.5469 44.0363 -6.5469 ZM44.0207 -5.6875 Q43.2707 -5.6875 42.8332 -5.2031 Q42.3957 -4.7188 42.3175 -3.8594 L45.5832 -3.8594 Q45.5832 -4.6719 45.2082 -5.1719 Q44.8332 -5.6875 44.0207 -5.6875 ZM51.32 -6.5469 Q51.5075 -6.5469 51.7106 -6.5312 Q51.9293 -6.5156 52.0856 -6.4844 L51.945 -5.5156 Q51.7887 -5.5469 51.6012 -5.5625 Q51.4137 -5.5938 51.2575 -5.5938 Q50.7575 -5.5938 50.32 -5.3125 Q49.8981 -5.0469 49.6325 -4.5625 Q49.3825 -4.0781 49.3825 -3.4375 L49.3825 0 L48.32 0 L48.32 -6.4375 L49.195 -6.4375 L49.3043 -5.25 L49.3512 -5.25 Q49.6637 -5.7812 50.1481 -6.1562 Q50.6481 -6.5469 51.32 -6.5469 ZM58.9742 0.125 Q58.1304 0.125 57.4585 -0.2188 Q56.8023 -0.5781 56.4117 -1.3125 Q56.0367 -2.0469 56.0367 -3.1875 Q56.0367 -4.375 56.4273 -5.1094 Q56.8335 -5.8594 57.5054 -6.2031 Q58.1929 -6.5469 59.0523 -6.5469 Q59.5367 -6.5469 59.9898 -6.4375 Q60.4585 -6.3438 60.7398 -6.2031 L60.4273 -5.3281 Q60.1304 -5.4375 59.7398 -5.5312 Q59.3648 -5.625 59.021 -5.625 Q57.1304 -5.625 57.1304 -3.1875 Q57.1304 -2.0312 57.5835 -1.4062 Q58.0523 -0.7969 58.9742 -0.7969 Q59.4898 -0.7969 59.896 -0.9062 Q60.3023 -1.0156 60.6304 -1.1562 L60.6304 -0.2344 Q60.3179 -0.0625 59.9273 0.0312 Q59.5367 0.125 58.9742 0.125 ZM67.7498 -3.2344 Q67.7498 -1.625 66.9373 -0.75 Q66.1248 0.125 64.7498 0.125 Q63.9061 0.125 63.2342 -0.2656 Q62.5623 -0.6562 62.1717 -1.4062 Q61.7967 -2.1562 61.7967 -3.2344 Q61.7967 -4.8281 62.5936 -5.6875 Q63.4061 -6.5469 64.7811 -6.5469 Q65.6717 -6.5469 66.3279 -6.1562 Q66.9998 -5.7656 67.3748 -5.0312 Q67.7498 -4.2969 67.7498 -3.2344 ZM62.8904 -3.2344 Q62.8904 -2.0938 63.3436 -1.4219 Q63.7967 -0.75 64.7811 -0.75 Q65.7498 -0.75 66.2029 -1.4219 Q66.6561 -2.0938 66.6561 -3.2344 Q66.6561 -4.375 66.2029 -5.0156 Q65.7498 -5.6562 64.7654 -5.6562 Q63.7811 -5.6562 63.3279 -5.0156 Q62.8904 -4.375 62.8904 -3.2344 ZM72.5099 -6.5469 Q73.6661 -6.5469 74.2442 -5.9844 Q74.838 -5.4375 74.838 -4.1875 L74.838 0 L73.8067 0 L73.8067 -4.1094 Q73.8067 -5.6562 72.3536 -5.6562 Q71.2911 -5.6562 70.8849 -5.0625 Q70.4786 -4.4688 70.4786 -3.3438 L70.4786 0 L69.4161 0 L69.4161 -6.4375 L70.2755 -6.4375 L70.4317 -5.5625 L70.4942 -5.5625 Q70.8067 -6.0625 71.3536 -6.2969 Q71.9005 -6.5469 72.5099 -6.5469 ZM78.9884 -0.75 Q79.2228 -0.75 79.4728 -0.7812 Q79.7228 -0.8281 79.879 -0.875 L79.879 -0.0781 Q79.7228 0.0156 79.4103 0.0625 Q79.0978 0.125 78.8009 0.125 Q78.3009 0.125 77.8634 -0.0469 Q77.4415 -0.2344 77.1759 -0.6562 Q76.9259 -1.0938 76.9259 -1.875 L76.9259 -5.6094 L76.004 -5.6094 L76.004 -6.125 L76.9259 -6.5469 L77.3478 -7.9062 L77.9728 -7.9062 L77.9728 -6.4375 L79.8322 -6.4375 L79.8322 -5.6094 L77.9728 -5.6094 L77.9728 -1.8906 Q77.9728 -1.3125 78.254 -1.0312 Q78.5353 -0.75 78.9884 -0.75 ZM83.6017 -6.5469 Q84.7736 -6.5469 85.3361 -6.0312 Q85.9142 -5.5156 85.9142 -4.375 L85.9142 0 L85.1329 0 L84.9298 -0.9062 L84.8829 -0.9062 Q84.4611 -0.3906 83.9923 -0.125 Q83.5392 0.125 82.7267 0.125 Q81.8517 0.125 81.2736 -0.3281 Q80.6954 -0.7969 80.6954 -1.7812 Q80.6954 -2.75 81.4454 -3.2656 Q82.2111 -3.7969 83.7892 -3.8438 L84.8829 -3.875 L84.8829 -4.2656 Q84.8829 -5.0625 84.5236 -5.375 Q84.1798 -5.6875 83.5392 -5.6875 Q83.0392 -5.6875 82.5861 -5.5312 Q82.1329 -5.3906 81.7267 -5.2031 L81.4142 -5.9844 Q81.8361 -6.2188 82.3986 -6.375 Q82.9767 -6.5469 83.6017 -6.5469 ZM83.9142 -3.1094 Q82.7111 -3.0625 82.2423 -2.7188 Q81.7892 -2.3906 81.7892 -1.7812 Q81.7892 -1.2344 82.1173 -0.9844 Q82.4454 -0.7344 82.9611 -0.7344 Q83.7892 -0.7344 84.3204 -1.1719 Q84.8673 -1.625 84.8673 -2.5625 L84.8673 -3.1406 L83.9142 -3.1094 ZM88.4431 -8.8438 Q88.6775 -8.8438 88.865 -8.6719 Q89.0525 -8.5156 89.0525 -8.1719 Q89.0525 -7.8438 88.865 -7.6719 Q88.6775 -7.5 88.4431 -7.5 Q88.1775 -7.5 87.99 -7.6719 Q87.8181 -7.8438 87.8181 -8.1719 Q87.8181 -8.5156 87.99 -8.6719 Q88.1775 -8.8438 88.4431 -8.8438 ZM88.9587 -6.4375 L88.9587 0 L87.8962 0 L87.8962 -6.4375 L88.9587 -6.4375 ZM94.086 -6.5469 Q95.2423 -6.5469 95.8204 -5.9844 Q96.4141 -5.4375 96.4141 -4.1875 L96.4141 0 L95.3829 0 L95.3829 -4.1094 Q95.3829 -5.6562 93.9298 -5.6562 Q92.8673 -5.6562 92.461 -5.0625 Q92.0548 -4.4688 92.0548 -3.3438 L92.0548 0 L90.9923 0 L90.9923 -6.4375 L91.8516 -6.4375 L92.0079 -5.5625 L92.0704 -5.5625 Q92.3829 -6.0625 92.9298 -6.2969 Q93.4766 -6.5469 94.086 -6.5469 ZM100.8927 -6.5469 Q101.7208 -6.5469 102.3146 -6.1875 Q102.9083 -5.8281 103.2208 -5.1719 Q103.5489 -4.5312 103.5489 -3.6406 L103.5489 -3.0156 L99.1427 -3.0156 Q99.1739 -1.9219 99.7052 -1.3438 Q100.2364 -0.7812 101.1896 -0.7812 Q101.8146 -0.7812 102.2833 -0.8906 Q102.7521 -1.0156 103.2677 -1.2188 L103.2677 -0.2969 Q102.7677 -0.0781 102.2833 0.0156 Q101.8146 0.125 101.1427 0.125 Q100.2364 0.125 99.5333 -0.25 Q98.8302 -0.625 98.4396 -1.3594 Q98.0489 -2.0938 98.0489 -3.1719 Q98.0489 -4.2188 98.4083 -4.9688 Q98.7677 -5.7344 99.4083 -6.1406 Q100.0489 -6.5469 100.8927 -6.5469 ZM100.8771 -5.6875 Q100.1271 -5.6875 99.6896 -5.2031 Q99.2521 -4.7188 99.1739 -3.8594 L102.4396 -3.8594 Q102.4396 -4.6719 102.0646 -5.1719 Q101.6896 -5.6875 100.8771 -5.6875 ZM108.1764 -6.5469 Q108.3639 -6.5469 108.567 -6.5312 Q108.7857 -6.5156 108.942 -6.4844 L108.8014 -5.5156 Q108.6451 -5.5469 108.4576 -5.5625 Q108.2701 -5.5938 108.1139 -5.5938 Q107.6139 -5.5938 107.1764 -5.3125 Q106.7545 -5.0469 106.4889 -4.5625 Q106.2389 -4.0781 106.2389 -3.4375 L106.2389 0 L105.1764 0 L105.1764 -6.4375 L106.0514 -6.4375 L106.1607 -5.25 L106.2076 -5.25 Q106.5201 -5.7812 107.0045 -6.1562 Q107.5045 -6.5469 108.1764 -6.5469 ZM109.7105 -2.3281 L114.2418 -4.2188 L109.7105 -6.3594 L109.7105 -7.2969 L115.3668 -4.4688 L115.3668 -3.875 L109.7105 -1.3906 L109.7105 -2.3281 ZM116.5746 -2.3281 L121.1058 -4.2188 L116.5746 -6.3594 L116.5746 -7.2969 L122.2308 -4.4688 L122.2308 -3.875 L116.5746 -1.3906 L116.5746 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath65);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1129.7421,-167.6559)"
+    ><path d="M7.4219 12.8281 L6.1562 12.8281 L3.125 8.7343 L2.25 9.5 L2.25 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.25 4.2656 L2.25 8.4843 Q2.6094 8.0781 2.9688 7.6718 Q3.3438 7.2656 3.7188 6.8593 L6.0312 4.2656 L7.2969 4.2656 L3.9062 7.9843 L7.4219 12.8281 ZM14.0374 9.5937 Q14.0374 11.2031 13.2249 12.0781 Q12.4124 12.9531 11.0374 12.9531 Q10.1937 12.9531 9.5218 12.5625 Q8.8499 12.1718 8.4593 11.4218 Q8.0843 10.6718 8.0843 9.5937 Q8.0843 8 8.8812 7.1406 Q9.6937 6.2812 11.0687 6.2812 Q11.9593 6.2812 12.6156 6.6718 Q13.2874 7.0625 13.6624 7.7968 Q14.0374 8.5312 14.0374 9.5937 ZM9.1781 9.5937 Q9.1781 10.7343 9.6312 11.4062 Q10.0843 12.0781 11.0687 12.0781 Q12.0374 12.0781 12.4906 11.4062 Q12.9437 10.7343 12.9437 9.5937 Q12.9437 8.4531 12.4906 7.8125 Q12.0374 7.1718 11.0531 7.1718 Q10.0687 7.1718 9.6156 7.8125 Q9.1781 8.4531 9.1781 9.5937 ZM18.7975 6.2812 Q19.9537 6.2812 20.5319 6.8437 Q21.1256 7.3906 21.1256 8.6406 L21.1256 12.8281 L20.0944 12.8281 L20.0944 8.7187 Q20.0944 7.1718 18.6412 7.1718 Q17.5787 7.1718 17.1725 7.7656 Q16.7662 8.3593 16.7662 9.4843 L16.7662 12.8281 L15.7037 12.8281 L15.7037 6.3906 L16.5631 6.3906 L16.7194 7.2656 L16.7819 7.2656 Q17.0944 6.7656 17.6412 6.5312 Q18.1881 6.2812 18.7975 6.2812 ZM25.401 6.2812 Q26.0417 6.2812 26.5417 6.5156 Q27.0573 6.75 27.4167 7.25 L27.4792 7.25 L27.6198 6.3906 L28.4635 6.3906 L28.4635 12.9375 Q28.4635 14.3125 27.7604 15 Q27.0573 15.7031 25.5885 15.7031 Q24.1667 15.7031 23.2604 15.2968 L23.2604 14.3281 Q24.2135 14.8281 25.651 14.8281 Q26.4792 14.8281 26.9479 14.3437 Q27.4167 13.8593 27.4167 13.0156 L27.4167 12.7656 Q27.4167 12.625 27.4323 12.3593 Q27.4479 12.0781 27.4635 11.9687 L27.401 11.9687 Q26.7604 12.9531 25.4167 12.9531 Q24.1667 12.9531 23.4635 12.0781 Q22.7604 11.2031 22.7604 9.625 Q22.7604 8.0937 23.4635 7.1875 Q24.1667 6.2812 25.401 6.2812 ZM25.5417 7.1718 Q24.7448 7.1718 24.2917 7.8125 Q23.8542 8.4531 23.8542 9.6406 Q23.8542 10.8281 24.2917 11.4531 Q24.7292 12.0781 25.5729 12.0781 Q26.5417 12.0781 26.9792 11.5625 Q27.4323 11.0468 27.4323 9.875 L27.4323 9.625 Q27.4323 8.2968 26.9792 7.7343 Q26.526 7.1718 25.5417 7.1718 Z" style="stroke:none; clip-path:url(#clipPath66);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><line x1="-1115.0445" x2="-1115.1671" y1="-110.1074" style="fill:none; clip-path:url(#clipPath2);" y2="-58.4209"
+      /><line x1="-1018.4678" x2="-956.9345" y1="-175.173" style="fill:none; clip-path:url(#clipPath2);" y2="-175.173"
+      /><line x1="-956.9345" x2="-956.9345" y1="-175.173" style="fill:none; clip-path:url(#clipPath2);" y2="-241.8549"
+      /><line x1="-956.9345" x2="-848.4004" y1="-241.8549" style="fill:none; clip-path:url(#clipPath2);" y2="-241.8549"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-968.6645,-217.1863)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath67);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><path d="M-904.6848 -25.3923 A6 6 0 0 0 -916.6848 -25.3923" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-1018.4678" x2="-956.9345" y1="-175.173" style="fill:none; clip-path:url(#clipPath2);" y2="-175.173"
+      /><line x1="-956.9345" x2="-956.9345" y1="-175.173" style="fill:none; clip-path:url(#clipPath2);" y2="-25.3923"
+      /><line x1="-956.9345" x2="-916.6848" y1="-25.3923" style="fill:none; clip-path:url(#clipPath2);" y2="-25.3923"
+      /><line x1="-904.6848" x2="-848.4004" y1="-25.3923" style="fill:none; clip-path:url(#clipPath2);" y2="-25.3923"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-968.6645,-61.9544)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath68);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><path d="M-904.6848 159.2895 A6 6 0 0 0 -916.6848 159.2895" style="fill:none; clip-path:url(#clipPath2);"
+      /><path d="M-956.9345 81.1822 A6 6 0 0 0 -956.9345 69.1822" style="fill:none; clip-path:url(#clipPath2);"
+      /><line x1="-1018.4678" x2="-956.9345" y1="-175.173" style="fill:none; clip-path:url(#clipPath2);" y2="-175.173"
+      /><line x1="-956.9345" x2="-956.9345" y1="-175.173" style="fill:none; clip-path:url(#clipPath2);" y2="69.1822"
+      /><line x1="-956.9345" x2="-956.9345" y1="81.1822" style="fill:none; clip-path:url(#clipPath2);" y2="159.2895"
+      /><line x1="-956.9345" x2="-916.6848" y1="159.2895" style="fill:none; clip-path:url(#clipPath2);" y2="159.2895"
+      /><line x1="-904.6848" x2="-848.4004" y1="159.2895" style="fill:none; clip-path:url(#clipPath2);" y2="159.2895"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-968.6645,30.3865)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath69);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><line x1="-1312.9483" x2="-1262.0823" y1="95.6028" style="fill:none; clip-path:url(#clipPath2);" y2="95.6028"
+      /><line x1="-1262.0823" x2="-1262.0823" y1="95.6028" style="fill:none; clip-path:url(#clipPath2);" y2="-149.4645"
+      /><line x1="-1262.0823" x2="-1211.3127" y1="-149.4645" style="fill:none; clip-path:url(#clipPath2);" y2="-149.4645"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1273.8124,-12.0548)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath70);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1526 -274 -1522 -278 -1294 -278 -1294 -105 -1298 -101 -1526 -101"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1526 -274 -1522 -278 -1294 -278 -1294 -105 -1298 -101 -1526 -101"
+      /><line x1="-1298" x2="-1295" y1="-274" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-277"
+      /><line x1="-1526" x2="-1298" y1="-274" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-274"
+      /><line x1="-1298" x2="-1298" y1="-274" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-101"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1473.6133,-256.8996)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.025 0.125 Q15.8218 0.125 15.1031 -0.7031 Q14.3843 -1.5469 14.3843 -3.2031 Q14.3843 -4.8594 15.1031 -5.7031 Q15.8375 -6.5469 17.0406 -6.5469 Q17.7906 -6.5469 18.2593 -6.2656 Q18.7281 -6 19.025 -5.6094 L19.1031 -5.6094 Q19.0875 -5.7656 19.0562 -6.0625 Q19.025 -6.375 19.025 -6.5469 L19.025 -9.125 L20.0875 -9.125 L20.0875 0 L19.2437 0 L19.0875 -0.8594 L19.025 -0.8594 Q18.7437 -0.4531 18.2593 -0.1562 Q17.7906 0.125 17.025 0.125 ZM17.1968 -0.75 Q18.2125 -0.75 18.6187 -1.3125 Q19.0406 -1.875 19.0406 -3 L19.0406 -3.1875 Q19.0406 -4.3906 18.65 -5.0312 Q18.2593 -5.6719 17.1812 -5.6719 Q16.3375 -5.6719 15.9 -4.9844 Q15.4781 -4.3125 15.4781 -3.1875 Q15.4781 -2.0312 15.9 -1.3906 Q16.3375 -0.75 17.1968 -0.75 ZM27.7175 -3.2344 Q27.7175 -1.625 26.905 -0.75 Q26.0925 0.125 24.7175 0.125 Q23.8738 0.125 23.2019 -0.2656 Q22.53 -0.6562 22.1394 -1.4062 Q21.7644 -2.1562 21.7644 -3.2344 Q21.7644 -4.8281 22.5613 -5.6875 Q23.3738 -6.5469 24.7488 -6.5469 Q25.6394 -6.5469 26.2956 -6.1562 Q26.9675 -5.7656 27.3425 -5.0312 Q27.7175 -4.2969 27.7175 -3.2344 ZM22.8581 -3.2344 Q22.8581 -2.0938 23.3113 -1.4219 Q23.7644 -0.75 24.7488 -0.75 Q25.7175 -0.75 26.1706 -1.4219 Q26.6238 -2.0938 26.6238 -3.2344 Q26.6238 -4.375 26.1706 -5.0156 Q25.7175 -5.6562 24.7331 -5.6562 Q23.7488 -5.6562 23.2956 -5.0156 Q22.8581 -4.375 22.8581 -3.2344 ZM31.9619 0.125 Q31.1182 0.125 30.4463 -0.2188 Q29.7901 -0.5781 29.3994 -1.3125 Q29.0244 -2.0469 29.0244 -3.1875 Q29.0244 -4.375 29.4151 -5.1094 Q29.8213 -5.8594 30.4932 -6.2031 Q31.1807 -6.5469 32.0401 -6.5469 Q32.5244 -6.5469 32.9776 -6.4375 Q33.4463 -6.3438 33.7276 -6.2031 L33.4151 -5.3281 Q33.1182 -5.4375 32.7276 -5.5312 Q32.3526 -5.625 32.0088 -5.625 Q30.1182 -5.625 30.1182 -3.1875 Q30.1182 -2.0312 30.5713 -1.4062 Q31.0401 -0.7969 31.9619 -0.7969 Q32.4776 -0.7969 32.8838 -0.9062 Q33.2901 -1.0156 33.6182 -1.1562 L33.6182 -0.2344 Q33.3057 -0.0625 32.9151 0.0312 Q32.5244 0.125 31.9619 0.125 ZM36.1907 -4.3594 Q36.1907 -4.1562 36.1751 -3.8438 Q36.1595 -3.5469 36.1439 -3.3125 L36.1907 -3.3125 Q36.2689 -3.4062 36.4095 -3.5781 Q36.5501 -3.7656 36.6907 -3.9531 Q36.847 -4.1406 36.9564 -4.2656 L39.0189 -6.4375 L40.2532 -6.4375 L37.6439 -3.6875 L40.4251 0 L39.1595 0 L36.9251 -3 L36.1907 -2.3594 L36.1907 0 L35.1439 0 L35.1439 -9.125 L36.1907 -9.125 L36.1907 -4.3594 ZM44.0363 -6.5469 Q44.8644 -6.5469 45.4582 -6.1875 Q46.0519 -5.8281 46.3644 -5.1719 Q46.6925 -4.5312 46.6925 -3.6406 L46.6925 -3.0156 L42.2863 -3.0156 Q42.3175 -1.9219 42.8488 -1.3438 Q43.38 -0.7812 44.3332 -0.7812 Q44.9582 -0.7812 45.4269 -0.8906 Q45.8957 -1.0156 46.4113 -1.2188 L46.4113 -0.2969 Q45.9113 -0.0781 45.4269 0.0156 Q44.9582 0.125 44.2863 0.125 Q43.38 0.125 42.6769 -0.25 Q41.9738 -0.625 41.5832 -1.3594 Q41.1925 -2.0938 41.1925 -3.1719 Q41.1925 -4.2188 41.5519 -4.9688 Q41.9113 -5.7344 42.5519 -6.1406 Q43.1925 -6.5469 44.0363 -6.5469 ZM44.0207 -5.6875 Q43.2707 -5.6875 42.8332 -5.2031 Q42.3957 -4.7188 42.3175 -3.8594 L45.5832 -3.8594 Q45.5832 -4.6719 45.2082 -5.1719 Q44.8332 -5.6875 44.0207 -5.6875 ZM51.32 -6.5469 Q51.5075 -6.5469 51.7106 -6.5312 Q51.9293 -6.5156 52.0856 -6.4844 L51.945 -5.5156 Q51.7887 -5.5469 51.6012 -5.5625 Q51.4137 -5.5938 51.2575 -5.5938 Q50.7575 -5.5938 50.32 -5.3125 Q49.8981 -5.0469 49.6325 -4.5625 Q49.3825 -4.0781 49.3825 -3.4375 L49.3825 0 L48.32 0 L48.32 -6.4375 L49.195 -6.4375 L49.3043 -5.25 L49.3512 -5.25 Q49.6637 -5.7812 50.1481 -6.1562 Q50.6481 -6.5469 51.32 -6.5469 ZM58.9742 0.125 Q58.1304 0.125 57.4585 -0.2188 Q56.8023 -0.5781 56.4117 -1.3125 Q56.0367 -2.0469 56.0367 -3.1875 Q56.0367 -4.375 56.4273 -5.1094 Q56.8335 -5.8594 57.5054 -6.2031 Q58.1929 -6.5469 59.0523 -6.5469 Q59.5367 -6.5469 59.9898 -6.4375 Q60.4585 -6.3438 60.7398 -6.2031 L60.4273 -5.3281 Q60.1304 -5.4375 59.7398 -5.5312 Q59.3648 -5.625 59.021 -5.625 Q57.1304 -5.625 57.1304 -3.1875 Q57.1304 -2.0312 57.5835 -1.4062 Q58.0523 -0.7969 58.9742 -0.7969 Q59.4898 -0.7969 59.896 -0.9062 Q60.3023 -1.0156 60.6304 -1.1562 L60.6304 -0.2344 Q60.3179 -0.0625 59.9273 0.0312 Q59.5367 0.125 58.9742 0.125 ZM67.7498 -3.2344 Q67.7498 -1.625 66.9373 -0.75 Q66.1248 0.125 64.7498 0.125 Q63.9061 0.125 63.2342 -0.2656 Q62.5623 -0.6562 62.1717 -1.4062 Q61.7967 -2.1562 61.7967 -3.2344 Q61.7967 -4.8281 62.5936 -5.6875 Q63.4061 -6.5469 64.7811 -6.5469 Q65.6717 -6.5469 66.3279 -6.1562 Q66.9998 -5.7656 67.3748 -5.0312 Q67.7498 -4.2969 67.7498 -3.2344 ZM62.8904 -3.2344 Q62.8904 -2.0938 63.3436 -1.4219 Q63.7967 -0.75 64.7811 -0.75 Q65.7498 -0.75 66.2029 -1.4219 Q66.6561 -2.0938 66.6561 -3.2344 Q66.6561 -4.375 66.2029 -5.0156 Q65.7498 -5.6562 64.7654 -5.6562 Q63.7811 -5.6562 63.3279 -5.0156 Q62.8904 -4.375 62.8904 -3.2344 ZM72.5099 -6.5469 Q73.6661 -6.5469 74.2442 -5.9844 Q74.838 -5.4375 74.838 -4.1875 L74.838 0 L73.8067 0 L73.8067 -4.1094 Q73.8067 -5.6562 72.3536 -5.6562 Q71.2911 -5.6562 70.8849 -5.0625 Q70.4786 -4.4688 70.4786 -3.3438 L70.4786 0 L69.4161 0 L69.4161 -6.4375 L70.2755 -6.4375 L70.4317 -5.5625 L70.4942 -5.5625 Q70.8067 -6.0625 71.3536 -6.2969 Q71.9005 -6.5469 72.5099 -6.5469 ZM78.9884 -0.75 Q79.2228 -0.75 79.4728 -0.7812 Q79.7228 -0.8281 79.879 -0.875 L79.879 -0.0781 Q79.7228 0.0156 79.4103 0.0625 Q79.0978 0.125 78.8009 0.125 Q78.3009 0.125 77.8634 -0.0469 Q77.4415 -0.2344 77.1759 -0.6562 Q76.9259 -1.0938 76.9259 -1.875 L76.9259 -5.6094 L76.004 -5.6094 L76.004 -6.125 L76.9259 -6.5469 L77.3478 -7.9062 L77.9728 -7.9062 L77.9728 -6.4375 L79.8322 -6.4375 L79.8322 -5.6094 L77.9728 -5.6094 L77.9728 -1.8906 Q77.9728 -1.3125 78.254 -1.0312 Q78.5353 -0.75 78.9884 -0.75 ZM83.6017 -6.5469 Q84.7736 -6.5469 85.3361 -6.0312 Q85.9142 -5.5156 85.9142 -4.375 L85.9142 0 L85.1329 0 L84.9298 -0.9062 L84.8829 -0.9062 Q84.4611 -0.3906 83.9923 -0.125 Q83.5392 0.125 82.7267 0.125 Q81.8517 0.125 81.2736 -0.3281 Q80.6954 -0.7969 80.6954 -1.7812 Q80.6954 -2.75 81.4454 -3.2656 Q82.2111 -3.7969 83.7892 -3.8438 L84.8829 -3.875 L84.8829 -4.2656 Q84.8829 -5.0625 84.5236 -5.375 Q84.1798 -5.6875 83.5392 -5.6875 Q83.0392 -5.6875 82.5861 -5.5312 Q82.1329 -5.3906 81.7267 -5.2031 L81.4142 -5.9844 Q81.8361 -6.2188 82.3986 -6.375 Q82.9767 -6.5469 83.6017 -6.5469 ZM83.9142 -3.1094 Q82.7111 -3.0625 82.2423 -2.7188 Q81.7892 -2.3906 81.7892 -1.7812 Q81.7892 -1.2344 82.1173 -0.9844 Q82.4454 -0.7344 82.9611 -0.7344 Q83.7892 -0.7344 84.3204 -1.1719 Q84.8673 -1.625 84.8673 -2.5625 L84.8673 -3.1406 L83.9142 -3.1094 ZM88.4431 -8.8438 Q88.6775 -8.8438 88.865 -8.6719 Q89.0525 -8.5156 89.0525 -8.1719 Q89.0525 -7.8438 88.865 -7.6719 Q88.6775 -7.5 88.4431 -7.5 Q88.1775 -7.5 87.99 -7.6719 Q87.8181 -7.8438 87.8181 -8.1719 Q87.8181 -8.5156 87.99 -8.6719 Q88.1775 -8.8438 88.4431 -8.8438 ZM88.9587 -6.4375 L88.9587 0 L87.8962 0 L87.8962 -6.4375 L88.9587 -6.4375 ZM94.086 -6.5469 Q95.2423 -6.5469 95.8204 -5.9844 Q96.4141 -5.4375 96.4141 -4.1875 L96.4141 0 L95.3829 0 L95.3829 -4.1094 Q95.3829 -5.6562 93.9298 -5.6562 Q92.8673 -5.6562 92.461 -5.0625 Q92.0548 -4.4688 92.0548 -3.3438 L92.0548 0 L90.9923 0 L90.9923 -6.4375 L91.8516 -6.4375 L92.0079 -5.5625 L92.0704 -5.5625 Q92.3829 -6.0625 92.9298 -6.2969 Q93.4766 -6.5469 94.086 -6.5469 ZM100.8927 -6.5469 Q101.7208 -6.5469 102.3146 -6.1875 Q102.9083 -5.8281 103.2208 -5.1719 Q103.5489 -4.5312 103.5489 -3.6406 L103.5489 -3.0156 L99.1427 -3.0156 Q99.1739 -1.9219 99.7052 -1.3438 Q100.2364 -0.7812 101.1896 -0.7812 Q101.8146 -0.7812 102.2833 -0.8906 Q102.7521 -1.0156 103.2677 -1.2188 L103.2677 -0.2969 Q102.7677 -0.0781 102.2833 0.0156 Q101.8146 0.125 101.1427 0.125 Q100.2364 0.125 99.5333 -0.25 Q98.8302 -0.625 98.4396 -1.3594 Q98.0489 -2.0938 98.0489 -3.1719 Q98.0489 -4.2188 98.4083 -4.9688 Q98.7677 -5.7344 99.4083 -6.1406 Q100.0489 -6.5469 100.8927 -6.5469 ZM100.8771 -5.6875 Q100.1271 -5.6875 99.6896 -5.2031 Q99.2521 -4.7188 99.1739 -3.8594 L102.4396 -3.8594 Q102.4396 -4.6719 102.0646 -5.1719 Q101.6896 -5.6875 100.8771 -5.6875 ZM108.1764 -6.5469 Q108.3639 -6.5469 108.567 -6.5312 Q108.7857 -6.5156 108.942 -6.4844 L108.8014 -5.5156 Q108.6451 -5.5469 108.4576 -5.5625 Q108.2701 -5.5938 108.1139 -5.5938 Q107.6139 -5.5938 107.1764 -5.3125 Q106.7545 -5.0469 106.4889 -4.5625 Q106.2389 -4.0781 106.2389 -3.4375 L106.2389 0 L105.1764 0 L105.1764 -6.4375 L106.0514 -6.4375 L106.1607 -5.25 L106.2076 -5.25 Q106.5201 -5.7812 107.0045 -6.1562 Q107.5045 -6.5469 108.1764 -6.5469 ZM109.7105 -2.3281 L114.2418 -4.2188 L109.7105 -6.3594 L109.7105 -7.2969 L115.3668 -4.4688 L115.3668 -3.875 L109.7105 -1.3906 L109.7105 -2.3281 ZM116.5746 -2.3281 L121.1058 -4.2188 L116.5746 -6.3594 L116.5746 -7.2969 L122.2308 -4.4688 L122.2308 -3.875 L116.5746 -1.3906 L116.5746 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath71);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1469.3724,-253.6559)"
+    ><path d="M3.5312 4.2656 Q5.125 4.2656 5.875 4.875 Q6.6406 5.4687 6.6406 6.7031 Q6.6406 7.375 6.3906 7.8437 Q6.1406 8.2968 5.75 8.5625 Q5.3594 8.8281 4.9375 8.9843 L7.2812 12.8281 L6.0312 12.8281 L3.9531 9.2812 L2.25 9.2812 L2.25 12.8281 L1.1562 12.8281 L1.1562 4.2656 L3.5312 4.2656 ZM3.4688 5.2031 L2.25 5.2031 L2.25 8.375 L3.5312 8.375 Q4.5781 8.375 5.0469 7.9687 Q5.5312 7.5468 5.5312 6.75 Q5.5312 5.9062 5.0312 5.5625 Q4.5312 5.2031 3.4688 5.2031 ZM14.0734 9.5937 Q14.0734 11.2031 13.2609 12.0781 Q12.4484 12.9531 11.0734 12.9531 Q10.2297 12.9531 9.5578 12.5625 Q8.8859 12.1718 8.4953 11.4218 Q8.1203 10.6718 8.1203 9.5937 Q8.1203 8 8.9172 7.1406 Q9.7297 6.2812 11.1047 6.2812 Q11.9953 6.2812 12.6516 6.6718 Q13.3234 7.0625 13.6984 7.7968 Q14.0734 8.5312 14.0734 9.5937 ZM9.2141 9.5937 Q9.2141 10.7343 9.6672 11.4062 Q10.1203 12.0781 11.1047 12.0781 Q12.0734 12.0781 12.5266 11.4062 Q12.9797 10.7343 12.9797 9.5937 Q12.9797 8.4531 12.5266 7.8125 Q12.0734 7.1718 11.0891 7.1718 Q10.1047 7.1718 9.6516 7.8125 Q9.2141 8.4531 9.2141 9.5937 ZM21.3335 9.5937 Q21.3335 11.2031 20.521 12.0781 Q19.7085 12.9531 18.3335 12.9531 Q17.4897 12.9531 16.8179 12.5625 Q16.146 12.1718 15.7554 11.4218 Q15.3804 10.6718 15.3804 9.5937 Q15.3804 8 16.1772 7.1406 Q16.9897 6.2812 18.3647 6.2812 Q19.2554 6.2812 19.9116 6.6718 Q20.5835 7.0625 20.9585 7.7968 Q21.3335 8.5312 21.3335 9.5937 ZM16.4741 9.5937 Q16.4741 10.7343 16.9272 11.4062 Q17.3804 12.0781 18.3647 12.0781 Q19.3335 12.0781 19.7866 11.4062 Q20.2397 10.7343 20.2397 9.5937 Q20.2397 8.4531 19.7866 7.8125 Q19.3335 7.1718 18.3491 7.1718 Q17.3647 7.1718 16.9116 7.8125 Q16.4741 8.4531 16.4741 9.5937 ZM30.0623 6.2812 Q31.156 6.2812 31.6873 6.8437 Q32.2342 7.3906 32.2342 8.6406 L32.2342 12.8281 L31.1873 12.8281 L31.1873 8.6875 Q31.1873 7.1718 29.8748 7.1718 Q28.9373 7.1718 28.531 7.7187 Q28.1404 8.25 28.1404 9.2812 L28.1404 12.8281 L27.0935 12.8281 L27.0935 8.6875 Q27.0935 7.1718 25.781 7.1718 Q24.7967 7.1718 24.4217 7.7656 Q24.0623 8.3593 24.0623 9.4843 L24.0623 12.8281 L22.9998 12.8281 L22.9998 6.3906 L23.8592 6.3906 L24.0154 7.2656 L24.0779 7.2656 Q24.3748 6.7656 24.8748 6.5312 Q25.3904 6.2812 25.9685 6.2812 Q27.4842 6.2812 27.9373 7.3593 L27.9998 7.3593 Q28.3279 6.7968 28.8748 6.5468 Q29.4373 6.2812 30.0623 6.2812 ZM38.4074 11.0468 Q38.4074 11.9843 37.7042 12.4687 Q37.0167 12.9531 35.8449 12.9531 Q35.173 12.9531 34.6886 12.8437 Q34.2042 12.7343 33.8292 12.5468 L33.8292 11.5781 Q34.2199 11.7656 34.7511 11.9375 Q35.298 12.0937 35.8605 12.0937 Q36.673 12.0937 37.0324 11.8437 Q37.3917 11.5781 37.3917 11.1406 Q37.3917 10.9062 37.2511 10.7187 Q37.1261 10.5312 36.7824 10.3437 Q36.4386 10.1406 35.8136 9.9062 Q35.1886 9.6562 34.7355 9.4218 Q34.298 9.1875 34.048 8.8593 Q33.8136 8.5156 33.8136 7.9843 Q33.8136 7.1718 34.4699 6.7343 Q35.1417 6.2812 36.2355 6.2812 Q36.8136 6.2812 37.3136 6.3906 Q37.8292 6.5 38.2824 6.7031 L37.923 7.5468 Q37.5167 7.375 37.0636 7.2656 Q36.6261 7.1406 36.1574 7.1406 Q35.5011 7.1406 35.1574 7.3593 Q34.8292 7.5625 34.8292 7.9218 Q34.8292 8.1875 34.9855 8.375 Q35.1417 8.5625 35.5011 8.7343 Q35.8605 8.9062 36.4855 9.1406 Q37.0949 9.375 37.5167 9.625 Q37.9542 9.8593 38.173 10.2031 Q38.4074 10.5312 38.4074 11.0468 ZM42.5617 4.2656 Q44.171 4.2656 44.9835 4.7343 Q45.8117 5.2031 45.8117 6.3906 Q45.8117 7.1406 45.3898 7.6406 Q44.9835 8.1406 44.1867 8.2812 L44.1867 8.3437 Q44.7179 8.4218 45.1554 8.6562 Q45.5929 8.875 45.8429 9.2968 Q46.1085 9.7187 46.1085 10.3906 Q46.1085 11.5625 45.3117 12.2031 Q44.5148 12.8281 43.1242 12.8281 L40.1085 12.8281 L40.1085 4.2656 L42.5617 4.2656 ZM42.7804 7.9062 Q43.8898 7.9062 44.296 7.5625 Q44.7023 7.2031 44.7023 6.5 Q44.7023 5.7968 44.2023 5.5 Q43.7023 5.1875 42.6085 5.1875 L41.2023 5.1875 L41.2023 7.9062 L42.7804 7.9062 ZM41.2023 8.8125 L41.2023 11.9218 L42.921 11.9218 Q44.0617 11.9218 44.4992 11.4843 Q44.9523 11.0312 44.9523 10.3125 Q44.9523 9.6406 44.4835 9.2343 Q44.0304 8.8125 42.8429 8.8125 L41.2023 8.8125 ZM53.3617 9.5937 Q53.3617 11.2031 52.5492 12.0781 Q51.7367 12.9531 50.3617 12.9531 Q49.518 12.9531 48.8461 12.5625 Q48.1742 12.1718 47.7836 11.4218 Q47.4086 10.6718 47.4086 9.5937 Q47.4086 8 48.2055 7.1406 Q49.018 6.2812 50.393 6.2812 Q51.2836 6.2812 51.9398 6.6718 Q52.6117 7.0625 52.9867 7.7968 Q53.3617 8.5312 53.3617 9.5937 ZM48.5023 9.5937 Q48.5023 10.7343 48.9555 11.4062 Q49.4086 12.0781 50.393 12.0781 Q51.3617 12.0781 51.8148 11.4062 Q52.268 10.7343 52.268 9.5937 Q52.268 8.4531 51.8148 7.8125 Q51.3617 7.1718 50.3773 7.1718 Q49.393 7.1718 48.9398 7.8125 Q48.5023 8.4531 48.5023 9.5937 ZM60.6218 9.5937 Q60.6218 11.2031 59.8093 12.0781 Q58.9968 12.9531 57.6218 12.9531 Q56.778 12.9531 56.1061 12.5625 Q55.4343 12.1718 55.0436 11.4218 Q54.6686 10.6718 54.6686 9.5937 Q54.6686 8 55.4655 7.1406 Q56.278 6.2812 57.653 6.2812 Q58.5436 6.2812 59.1999 6.6718 Q59.8718 7.0625 60.2468 7.7968 Q60.6218 8.5312 60.6218 9.5937 ZM55.7624 9.5937 Q55.7624 10.7343 56.2155 11.4062 Q56.6686 12.0781 57.653 12.0781 Q58.6218 12.0781 59.0749 11.4062 Q59.528 10.7343 59.528 9.5937 Q59.528 8.4531 59.0749 7.8125 Q58.6218 7.1718 57.6374 7.1718 Q56.653 7.1718 56.1999 7.8125 Q55.7624 8.4531 55.7624 9.5937 ZM63.3349 8.4687 Q63.3349 8.6718 63.3193 8.9843 Q63.3037 9.2812 63.2881 9.5156 L63.3349 9.5156 Q63.4131 9.4218 63.5537 9.25 Q63.6943 9.0625 63.8349 8.875 Q63.9912 8.6875 64.1006 8.5625 L66.1631 6.3906 L67.3974 6.3906 L64.7881 9.1406 L67.5693 12.8281 L66.3037 12.8281 L64.0693 9.8281 L63.3349 10.4687 L63.3349 12.8281 L62.2881 12.8281 L62.2881 3.7031 L63.3349 3.7031 L63.3349 8.4687 ZM69.243 3.9843 Q69.4774 3.9843 69.6649 4.1562 Q69.8524 4.3125 69.8524 4.6562 Q69.8524 4.9843 69.6649 5.1562 Q69.4774 5.3281 69.243 5.3281 Q68.9774 5.3281 68.7899 5.1562 Q68.618 4.9843 68.618 4.6562 Q68.618 4.3125 68.7899 4.1562 Q68.9774 3.9843 69.243 3.9843 ZM69.7586 6.3906 L69.7586 12.8281 L68.6961 12.8281 L68.6961 6.3906 L69.7586 6.3906 ZM74.8859 6.2812 Q76.0421 6.2812 76.6203 6.8437 Q77.214 7.3906 77.214 8.6406 L77.214 12.8281 L76.1828 12.8281 L76.1828 8.7187 Q76.1828 7.1718 74.7296 7.1718 Q73.6671 7.1718 73.2609 7.7656 Q72.8546 8.3593 72.8546 9.4843 L72.8546 12.8281 L71.7921 12.8281 L71.7921 6.3906 L72.6515 6.3906 L72.8078 7.2656 L72.8703 7.2656 Q73.1828 6.7656 73.7296 6.5312 Q74.2765 6.2812 74.8859 6.2812 ZM81.4894 6.2812 Q82.1301 6.2812 82.6301 6.5156 Q83.1457 6.75 83.5051 7.25 L83.5676 7.25 L83.7082 6.3906 L84.5519 6.3906 L84.5519 12.9375 Q84.5519 14.3125 83.8488 15 Q83.1457 15.7031 81.6769 15.7031 Q80.2551 15.7031 79.3488 15.2968 L79.3488 14.3281 Q80.3019 14.8281 81.7394 14.8281 Q82.5676 14.8281 83.0363 14.3437 Q83.5051 13.8593 83.5051 13.0156 L83.5051 12.7656 Q83.5051 12.625 83.5207 12.3593 Q83.5363 12.0781 83.5519 11.9687 L83.4894 11.9687 Q82.8488 12.9531 81.5051 12.9531 Q80.2551 12.9531 79.5519 12.0781 Q78.8488 11.2031 78.8488 9.625 Q78.8488 8.0937 79.5519 7.1875 Q80.2551 6.2812 81.4894 6.2812 ZM81.6301 7.1718 Q80.8332 7.1718 80.3801 7.8125 Q79.9426 8.4531 79.9426 9.6406 Q79.9426 10.8281 80.3801 11.4531 Q80.8176 12.0781 81.6613 12.0781 Q82.6301 12.0781 83.0676 11.5625 Q83.5207 11.0468 83.5207 9.875 L83.5207 9.625 Q83.5207 8.2968 83.0676 7.7343 Q82.6144 7.1718 81.6301 7.1718 ZM86.057 10.0781 L86.057 9.1406 L88.9632 9.1406 L88.9632 10.0781 L86.057 10.0781 ZM100.4366 4.2656 L98.1554 12.8281 L97.0616 12.8281 L95.4054 7.2187 Q95.3116 6.8593 95.2023 6.5156 Q95.1085 6.1718 95.046 5.9062 Q94.9991 5.625 94.9679 5.5156 Q94.9523 5.6718 94.8429 6.1875 Q94.7335 6.7031 94.5616 7.25 L92.9366 12.8281 L91.8429 12.8281 L89.5773 4.2656 L90.7023 4.2656 L92.046 9.4843 Q92.1866 10.0468 92.2804 10.5625 Q92.3898 11.0781 92.4523 11.5312 Q92.5148 11.0625 92.6241 10.5156 Q92.7491 9.9531 92.9054 9.4375 L94.421 4.2656 L95.5304 4.2656 L97.1085 9.4687 Q97.2804 10.0156 97.3898 10.5625 Q97.5148 11.1093 97.5773 11.5312 Q97.6398 11.0937 97.7335 10.5781 Q97.8429 10.0468 97.9991 9.4843 L99.3116 4.2656 L100.4366 4.2656 ZM104.0967 6.2812 Q104.9249 6.2812 105.5186 6.6406 Q106.1124 7 106.4249 7.6562 Q106.753 8.2968 106.753 9.1875 L106.753 9.8125 L102.3467 9.8125 Q102.378 10.9062 102.9092 11.4843 Q103.4405 12.0468 104.3936 12.0468 Q105.0186 12.0468 105.4874 11.9375 Q105.9561 11.8125 106.4717 11.6093 L106.4717 12.5312 Q105.9717 12.75 105.4874 12.8437 Q105.0186 12.9531 104.3467 12.9531 Q103.4405 12.9531 102.7374 12.5781 Q102.0342 12.2031 101.6436 11.4687 Q101.253 10.7343 101.253 9.6562 Q101.253 8.6093 101.6124 7.8593 Q101.9717 7.0937 102.6124 6.6875 Q103.253 6.2812 104.0967 6.2812 ZM104.0811 7.1406 Q103.3311 7.1406 102.8936 7.625 Q102.4561 8.1093 102.378 8.9687 L105.6436 8.9687 Q105.6436 8.1562 105.2686 7.6562 Q104.8936 7.1406 104.0811 7.1406 ZM109.4429 5.9218 Q109.4429 6.3437 109.4273 6.7031 Q109.4117 7.0468 109.3804 7.25 L109.4429 7.25 Q109.7242 6.8437 110.1929 6.5625 Q110.6773 6.2812 111.4273 6.2812 Q112.6304 6.2812 113.3492 7.125 Q114.0835 7.9531 114.0835 9.6093 Q114.0835 11.2656 113.3492 12.1093 Q112.6148 12.9531 111.4273 12.9531 Q110.6773 12.9531 110.1929 12.6718 Q109.7242 12.3906 109.4429 12.0156 L109.3492 12.0156 L109.146 12.8281 L108.3804 12.8281 L108.3804 3.7031 L109.4429 3.7031 L109.4429 5.9218 ZM111.2554 7.1718 Q110.2398 7.1718 109.8335 7.7656 Q109.4429 8.3437 109.4429 9.5781 L109.4429 9.625 Q109.4429 10.8125 109.8335 11.4531 Q110.2242 12.0781 111.271 12.0781 Q112.146 12.0781 112.5679 11.4375 Q112.9898 10.7968 112.9898 9.5937 Q112.9898 7.1718 111.2554 7.1718 Z" style="stroke:none; clip-path:url(#clipPath72);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif; stroke:rgb(255,255,204);"
+    ><polygon style="stroke:none; clip-path:url(#clipPath2);" points=" -1511 -225 -1507 -229 -1309 -229 -1309 -120 -1313 -116 -1511 -116"
+      /><polygon style="fill:none; clip-path:url(#clipPath2); stroke:black;" points=" -1511 -225 -1507 -229 -1309 -229 -1309 -120 -1313 -116 -1511 -116"
+      /><line x1="-1313" x2="-1310" y1="-225" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-228"
+      /><line x1="-1511" x2="-1313" y1="-225" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-225"
+      /><line x1="-1313" x2="-1313" y1="-225" style="clip-path:url(#clipPath2); fill:none; stroke:black;" y2="-116"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1491.4334,-207.8884)"
+    ><path d="M6.25 -1.3906 L0.5938 -3.875 L0.5938 -4.4688 L6.25 -7.2969 L6.25 -6.3594 L1.7344 -4.2188 L6.25 -2.3281 L6.25 -1.3906 ZM13.114 -1.3906 L7.4578 -3.875 L7.4578 -4.4688 L13.114 -7.2969 L13.114 -6.3594 L8.5984 -4.2188 L13.114 -2.3281 L13.114 -1.3906 ZM17.2281 -6.5469 Q18.0562 -6.5469 18.65 -6.1875 Q19.2437 -5.8281 19.5562 -5.1719 Q19.8843 -4.5312 19.8843 -3.6406 L19.8843 -3.0156 L15.4781 -3.0156 Q15.5093 -1.9219 16.0406 -1.3438 Q16.5718 -0.7812 17.525 -0.7812 Q18.15 -0.7812 18.6187 -0.8906 Q19.0875 -1.0156 19.6031 -1.2188 L19.6031 -0.2969 Q19.1031 -0.0781 18.6187 0.0156 Q18.15 0.125 17.4781 0.125 Q16.5718 0.125 15.8687 -0.25 Q15.1656 -0.625 14.775 -1.3594 Q14.3843 -2.0938 14.3843 -3.1719 Q14.3843 -4.2188 14.7437 -4.9688 Q15.1031 -5.7344 15.7437 -6.1406 Q16.3843 -6.5469 17.2281 -6.5469 ZM17.2125 -5.6875 Q16.4625 -5.6875 16.025 -5.2031 Q15.5875 -4.7188 15.5093 -3.8594 L18.775 -3.8594 Q18.775 -4.6719 18.4 -5.1719 Q18.025 -5.6875 17.2125 -5.6875 ZM23.043 -3.2812 L20.8243 -6.4375 L22.0274 -6.4375 L23.6836 -4.0156 L25.3243 -6.4375 L26.5118 -6.4375 L24.293 -3.2812 L26.6211 0 L25.4336 0 L23.6836 -2.5625 L21.9024 0 L20.7149 0 L23.043 -3.2812 ZM30.3442 -6.5469 Q31.1723 -6.5469 31.7661 -6.1875 Q32.3598 -5.8281 32.6723 -5.1719 Q33.0004 -4.5312 33.0004 -3.6406 L33.0004 -3.0156 L28.5942 -3.0156 Q28.6254 -1.9219 29.1567 -1.3438 Q29.6879 -0.7812 30.6411 -0.7812 Q31.2661 -0.7812 31.7348 -0.8906 Q32.2036 -1.0156 32.7192 -1.2188 L32.7192 -0.2969 Q32.2192 -0.0781 31.7348 0.0156 Q31.2661 0.125 30.5942 0.125 Q29.6879 0.125 28.9848 -0.25 Q28.2817 -0.625 27.8911 -1.3594 Q27.5004 -2.0938 27.5004 -3.1719 Q27.5004 -4.2188 27.8598 -4.9688 Q28.2192 -5.7344 28.8598 -6.1406 Q29.5004 -6.5469 30.3442 -6.5469 ZM30.3286 -5.6875 Q29.5786 -5.6875 29.1411 -5.2031 Q28.7036 -4.7188 28.6254 -3.8594 L31.8911 -3.8594 Q31.8911 -4.6719 31.5161 -5.1719 Q31.1411 -5.6875 30.3286 -5.6875 ZM37.206 0.125 Q36.3622 0.125 35.6904 -0.2188 Q35.0341 -0.5781 34.6435 -1.3125 Q34.2685 -2.0469 34.2685 -3.1875 Q34.2685 -4.375 34.6591 -5.1094 Q35.0654 -5.8594 35.7372 -6.2031 Q36.4247 -6.5469 37.2841 -6.5469 Q37.7685 -6.5469 38.2216 -6.4375 Q38.6904 -6.3438 38.9716 -6.2031 L38.6591 -5.3281 Q38.3622 -5.4375 37.9716 -5.5312 Q37.5966 -5.625 37.2529 -5.625 Q35.3622 -5.625 35.3622 -3.1875 Q35.3622 -2.0312 35.8154 -1.4062 Q36.2841 -0.7969 37.206 -0.7969 Q37.7216 -0.7969 38.1279 -0.9062 Q38.5341 -1.0156 38.8622 -1.1562 L38.8622 -0.2344 Q38.5497 -0.0625 38.1591 0.0312 Q37.7685 0.125 37.206 0.125 ZM45.7629 -6.4375 L45.7629 0 L44.9035 0 L44.7473 -0.8594 L44.7004 -0.8594 Q44.3879 -0.3438 43.8254 -0.1094 Q43.2785 0.125 42.6535 0.125 Q41.4973 0.125 40.9035 -0.4375 Q40.3254 -1 40.3254 -2.2188 L40.3254 -6.4375 L41.3879 -6.4375 L41.3879 -2.2969 Q41.3879 -0.75 42.8098 -0.75 Q43.8879 -0.75 44.2941 -1.3438 Q44.716 -1.9531 44.716 -3.0781 L44.716 -6.4375 L45.7629 -6.4375 ZM49.9602 -0.75 Q50.1946 -0.75 50.4446 -0.7812 Q50.6946 -0.8281 50.8508 -0.875 L50.8508 -0.0781 Q50.6946 0.0156 50.3821 0.0625 Q50.0696 0.125 49.7727 0.125 Q49.2727 0.125 48.8352 -0.0469 Q48.4133 -0.2344 48.1477 -0.6562 Q47.8977 -1.0938 47.8977 -1.875 L47.8977 -5.6094 L46.9758 -5.6094 L46.9758 -6.125 L47.8977 -6.5469 L48.3196 -7.9062 L48.9446 -7.9062 L48.9446 -6.4375 L50.8039 -6.4375 L50.8039 -5.6094 L48.9446 -5.6094 L48.9446 -1.8906 Q48.9446 -1.3125 49.2258 -1.0312 Q49.5071 -0.75 49.9602 -0.75 ZM52.6828 -8.8438 Q52.9172 -8.8438 53.1047 -8.6719 Q53.2922 -8.5156 53.2922 -8.1719 Q53.2922 -7.8438 53.1047 -7.6719 Q52.9172 -7.5 52.6828 -7.5 Q52.4172 -7.5 52.2297 -7.6719 Q52.0578 -7.8438 52.0578 -8.1719 Q52.0578 -8.5156 52.2297 -8.6719 Q52.4172 -8.8438 52.6828 -8.8438 ZM53.1985 -6.4375 L53.1985 0 L52.136 0 L52.136 -6.4375 L53.1985 -6.4375 ZM60.8257 -3.2344 Q60.8257 -1.625 60.0132 -0.75 Q59.2007 0.125 57.8257 0.125 Q56.982 0.125 56.3101 -0.2656 Q55.6382 -0.6562 55.2476 -1.4062 Q54.8726 -2.1562 54.8726 -3.2344 Q54.8726 -4.8281 55.6695 -5.6875 Q56.482 -6.5469 57.857 -6.5469 Q58.7476 -6.5469 59.4039 -6.1562 Q60.0757 -5.7656 60.4507 -5.0312 Q60.8257 -4.2969 60.8257 -3.2344 ZM55.9664 -3.2344 Q55.9664 -2.0938 56.4195 -1.4219 Q56.8726 -0.75 57.857 -0.75 Q58.8257 -0.75 59.2789 -1.4219 Q59.732 -2.0938 59.732 -3.2344 Q59.732 -4.375 59.2789 -5.0156 Q58.8257 -5.6562 57.8414 -5.6562 Q56.857 -5.6562 56.4039 -5.0156 Q55.9664 -4.375 55.9664 -3.2344 ZM65.5858 -6.5469 Q66.7421 -6.5469 67.3202 -5.9844 Q67.9139 -5.4375 67.9139 -4.1875 L67.9139 0 L66.8827 0 L66.8827 -4.1094 Q66.8827 -5.6562 65.4296 -5.6562 Q64.3671 -5.6562 63.9608 -5.0625 Q63.5546 -4.4688 63.5546 -3.3438 L63.5546 0 L62.4921 0 L62.4921 -6.4375 L63.3514 -6.4375 L63.5077 -5.5625 L63.5702 -5.5625 Q63.8827 -6.0625 64.4296 -6.2969 Q64.9764 -6.5469 65.5858 -6.5469 ZM75.5125 -6.5469 Q76.3406 -6.5469 76.9344 -6.1875 Q77.5281 -5.8281 77.8406 -5.1719 Q78.1687 -4.5312 78.1687 -3.6406 L78.1687 -3.0156 L73.7625 -3.0156 Q73.7937 -1.9219 74.325 -1.3438 Q74.8562 -0.7812 75.8094 -0.7812 Q76.4344 -0.7812 76.9031 -0.8906 Q77.3719 -1.0156 77.8875 -1.2188 L77.8875 -0.2969 Q77.3875 -0.0781 76.9031 0.0156 Q76.4344 0.125 75.7625 0.125 Q74.8562 0.125 74.1531 -0.25 Q73.45 -0.625 73.0594 -1.3594 Q72.6687 -2.0938 72.6687 -3.1719 Q72.6687 -4.2188 73.0281 -4.9688 Q73.3875 -5.7344 74.0281 -6.1406 Q74.6687 -6.5469 75.5125 -6.5469 ZM75.4969 -5.6875 Q74.7469 -5.6875 74.3094 -5.2031 Q73.8719 -4.7188 73.7937 -3.8594 L77.0594 -3.8594 Q77.0594 -4.6719 76.6844 -5.1719 Q76.3094 -5.6875 75.4969 -5.6875 ZM82.8899 -6.5469 Q84.0462 -6.5469 84.6243 -5.9844 Q85.218 -5.4375 85.218 -4.1875 L85.218 0 L84.1868 0 L84.1868 -4.1094 Q84.1868 -5.6562 82.7337 -5.6562 Q81.6712 -5.6562 81.2649 -5.0625 Q80.8587 -4.4688 80.8587 -3.3438 L80.8587 0 L79.7962 0 L79.7962 -6.4375 L80.6555 -6.4375 L80.8118 -5.5625 L80.8743 -5.5625 Q81.1868 -6.0625 81.7337 -6.2969 Q82.2805 -6.5469 82.8899 -6.5469 ZM88.6341 0 L86.1966 -6.4375 L87.3216 -6.4375 L88.6966 -2.6406 Q88.7903 -2.375 88.8997 -2.0469 Q89.0091 -1.7344 89.0872 -1.4375 Q89.1653 -1.1406 89.2122 -0.9375 L89.2591 -0.9375 Q89.306 -1.1406 89.3841 -1.4375 Q89.4778 -1.7344 89.5872 -2.0625 Q89.7122 -2.3906 89.7903 -2.6406 L91.1653 -6.4375 L92.2903 -6.4375 L89.8372 0 L88.6341 0 ZM93.8551 -8.8438 Q94.0895 -8.8438 94.277 -8.6719 Q94.4645 -8.5156 94.4645 -8.1719 Q94.4645 -7.8438 94.277 -7.6719 Q94.0895 -7.5 93.8551 -7.5 Q93.5895 -7.5 93.402 -7.6719 Q93.2301 -7.8438 93.2301 -8.1719 Q93.2301 -8.5156 93.402 -8.6719 Q93.5895 -8.8438 93.8551 -8.8438 ZM94.3708 -6.4375 L94.3708 0 L93.3083 0 L93.3083 -6.4375 L94.3708 -6.4375 ZM99.4043 -6.5469 Q99.5918 -6.5469 99.7949 -6.5312 Q100.0137 -6.5156 100.1699 -6.4844 L100.0293 -5.5156 Q99.873 -5.5469 99.6855 -5.5625 Q99.498 -5.5938 99.3418 -5.5938 Q98.8418 -5.5938 98.4043 -5.3125 Q97.9824 -5.0469 97.7168 -4.5625 Q97.4668 -4.0781 97.4668 -3.4375 L97.4668 0 L96.4043 0 L96.4043 -6.4375 L97.2793 -6.4375 L97.3887 -5.25 L97.4355 -5.25 Q97.748 -5.7812 98.2324 -6.1562 Q98.7324 -6.5469 99.4043 -6.5469 ZM106.9541 -3.2344 Q106.9541 -1.625 106.1416 -0.75 Q105.3291 0.125 103.9541 0.125 Q103.1103 0.125 102.4384 -0.2656 Q101.7666 -0.6562 101.3759 -1.4062 Q101.0009 -2.1562 101.0009 -3.2344 Q101.0009 -4.8281 101.7978 -5.6875 Q102.6103 -6.5469 103.9853 -6.5469 Q104.8759 -6.5469 105.5322 -6.1562 Q106.2041 -5.7656 106.5791 -5.0312 Q106.9541 -4.2969 106.9541 -3.2344 ZM102.0947 -3.2344 Q102.0947 -2.0938 102.5478 -1.4219 Q103.0009 -0.75 103.9853 -0.75 Q104.9541 -0.75 105.4072 -1.4219 Q105.8603 -2.0938 105.8603 -3.2344 Q105.8603 -4.375 105.4072 -5.0156 Q104.9541 -5.6562 103.9697 -5.6562 Q102.9853 -5.6562 102.5322 -5.0156 Q102.0947 -4.375 102.0947 -3.2344 ZM111.7141 -6.5469 Q112.8704 -6.5469 113.4485 -5.9844 Q114.0423 -5.4375 114.0423 -4.1875 L114.0423 0 L113.011 0 L113.011 -4.1094 Q113.011 -5.6562 111.5579 -5.6562 Q110.4954 -5.6562 110.0891 -5.0625 Q109.6829 -4.4688 109.6829 -3.3438 L109.6829 0 L108.6204 0 L108.6204 -6.4375 L109.4798 -6.4375 L109.636 -5.5625 L109.6985 -5.5625 Q110.011 -6.0625 110.5579 -6.2969 Q111.1048 -6.5469 111.7141 -6.5469 ZM123.0989 -6.5469 Q124.1927 -6.5469 124.7239 -5.9844 Q125.2708 -5.4375 125.2708 -4.1875 L125.2708 0 L124.2239 0 L124.2239 -4.1406 Q124.2239 -5.6562 122.9114 -5.6562 Q121.9739 -5.6562 121.5677 -5.1094 Q121.177 -4.5781 121.177 -3.5469 L121.177 0 L120.1302 0 L120.1302 -4.1406 Q120.1302 -5.6562 118.8177 -5.6562 Q117.8333 -5.6562 117.4583 -5.0625 Q117.0989 -4.4688 117.0989 -3.3438 L117.0989 0 L116.0364 0 L116.0364 -6.4375 L116.8958 -6.4375 L117.052 -5.5625 L117.1145 -5.5625 Q117.4114 -6.0625 117.9114 -6.2969 Q118.427 -6.5469 119.0052 -6.5469 Q120.5208 -6.5469 120.9739 -5.4688 L121.0364 -5.4688 Q121.3645 -6.0312 121.9114 -6.2812 Q122.4739 -6.5469 123.0989 -6.5469 ZM129.7409 -6.5469 Q130.569 -6.5469 131.1628 -6.1875 Q131.7565 -5.8281 132.069 -5.1719 Q132.3971 -4.5312 132.3971 -3.6406 L132.3971 -3.0156 L127.9909 -3.0156 Q128.0221 -1.9219 128.5534 -1.3438 Q129.0846 -0.7812 130.0378 -0.7812 Q130.6628 -0.7812 131.1315 -0.8906 Q131.6003 -1.0156 132.1159 -1.2188 L132.1159 -0.2969 Q131.6159 -0.0781 131.1315 0.0156 Q130.6628 0.125 129.9909 0.125 Q129.0846 0.125 128.3815 -0.25 Q127.6784 -0.625 127.2878 -1.3594 Q126.8971 -2.0938 126.8971 -3.1719 Q126.8971 -4.2188 127.2565 -4.9688 Q127.6159 -5.7344 128.2565 -6.1406 Q128.8971 -6.5469 129.7409 -6.5469 ZM129.7253 -5.6875 Q128.9753 -5.6875 128.5378 -5.2031 Q128.1003 -4.7188 128.0221 -3.8594 L131.2878 -3.8594 Q131.2878 -4.6719 130.9128 -5.1719 Q130.5378 -5.6875 129.7253 -5.6875 ZM137.1183 -6.5469 Q138.2746 -6.5469 138.8527 -5.9844 Q139.4464 -5.4375 139.4464 -4.1875 L139.4464 0 L138.4152 0 L138.4152 -4.1094 Q138.4152 -5.6562 136.9621 -5.6562 Q135.8996 -5.6562 135.4933 -5.0625 Q135.0871 -4.4688 135.0871 -3.3438 L135.0871 0 L134.0246 0 L134.0246 -6.4375 L134.8839 -6.4375 L135.0402 -5.5625 L135.1027 -5.5625 Q135.4152 -6.0625 135.9621 -6.2969 Q136.5089 -6.5469 137.1183 -6.5469 ZM143.5968 -0.75 Q143.8312 -0.75 144.0812 -0.7812 Q144.3312 -0.8281 144.4875 -0.875 L144.4875 -0.0781 Q144.3312 0.0156 144.0187 0.0625 Q143.7062 0.125 143.4093 0.125 Q142.9093 0.125 142.4718 -0.0469 Q142.05 -0.2344 141.7843 -0.6562 Q141.5343 -1.0938 141.5343 -1.875 L141.5343 -5.6094 L140.6125 -5.6094 L140.6125 -6.125 L141.5343 -6.5469 L141.9562 -7.9062 L142.5812 -7.9062 L142.5812 -6.4375 L144.4406 -6.4375 L144.4406 -5.6094 L142.5812 -5.6094 L142.5812 -1.8906 Q142.5812 -1.3125 142.8625 -1.0312 Q143.1437 -0.75 143.5968 -0.75 ZM145.3508 -2.3281 L149.882 -4.2188 L145.3508 -6.3594 L145.3508 -7.2969 L151.007 -4.4688 L151.007 -3.875 L145.3508 -1.3906 L145.3508 -2.3281 ZM152.2148 -2.3281 L156.746 -4.2188 L152.2148 -6.3594 L152.2148 -7.2969 L157.871 -4.4688 L157.871 -3.875 L152.2148 -1.3906 L152.2148 -2.3281 Z" style="stroke:none; clip-path:url(#clipPath73);"
+    /></g
+    ><g style="text-rendering:optimizeLegibility; stroke-width:2; font-family:sans-serif;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1427.2641,-204.6559)"
+    ><path d="M7.9531 12.8281 L6.7031 12.8281 L2.1094 5.7187 L2.0625 5.7187 Q2.0938 6.125 2.125 6.75 Q2.1562 7.375 2.1562 8.0468 L2.1562 12.8281 L1.1562 12.8281 L1.1562 4.2656 L2.4062 4.2656 L6.9844 11.3593 L7.0312 11.3593 Q7.0156 11.1562 7 10.7812 Q6.9844 10.3906 6.9688 9.9375 Q6.9531 9.4843 6.9531 9.0937 L6.9531 4.2656 L7.9531 4.2656 L7.9531 12.8281 ZM15.7294 9.5937 Q15.7294 11.2031 14.9169 12.0781 Q14.1044 12.9531 12.7294 12.9531 Q11.8857 12.9531 11.2138 12.5625 Q10.5419 12.1718 10.1513 11.4218 Q9.7763 10.6718 9.7763 9.5937 Q9.7763 8 10.5732 7.1406 Q11.3857 6.2812 12.7607 6.2812 Q13.6513 6.2812 14.3076 6.6718 Q14.9794 7.0625 15.3544 7.7968 Q15.7294 8.5312 15.7294 9.5937 ZM10.8701 9.5937 Q10.8701 10.7343 11.3232 11.4062 Q11.7763 12.0781 12.7607 12.0781 Q13.7294 12.0781 14.1826 11.4062 Q14.6357 10.7343 14.6357 9.5937 Q14.6357 8.4531 14.1826 7.8125 Q13.7294 7.1718 12.7451 7.1718 Q11.7607 7.1718 11.3076 7.8125 Q10.8701 8.4531 10.8701 9.5937 ZM19.677 12.9531 Q18.4739 12.9531 17.7551 12.125 Q17.0364 11.2812 17.0364 9.625 Q17.0364 7.9687 17.7551 7.125 Q18.4895 6.2812 19.6926 6.2812 Q20.4426 6.2812 20.9114 6.5625 Q21.3801 6.8281 21.677 7.2187 L21.7551 7.2187 Q21.7395 7.0625 21.7083 6.7656 Q21.677 6.4531 21.677 6.2812 L21.677 3.7031 L22.7395 3.7031 L22.7395 12.8281 L21.8958 12.8281 L21.7395 11.9687 L21.677 11.9687 Q21.3958 12.375 20.9114 12.6718 Q20.4426 12.9531 19.677 12.9531 ZM19.8489 12.0781 Q20.8645 12.0781 21.2708 11.5156 Q21.6926 10.9531 21.6926 9.8281 L21.6926 9.6406 Q21.6926 8.4375 21.302 7.7968 Q20.9114 7.1562 19.8333 7.1562 Q18.9895 7.1562 18.552 7.8437 Q18.1301 8.5156 18.1301 9.6406 Q18.1301 10.7968 18.552 11.4375 Q18.9895 12.0781 19.8489 12.0781 ZM27.2602 6.2812 Q28.0883 6.2812 28.6821 6.6406 Q29.2758 7 29.5883 7.6562 Q29.9164 8.2968 29.9164 9.1875 L29.9164 9.8125 L25.5102 9.8125 Q25.5414 10.9062 26.0727 11.4843 Q26.6039 12.0468 27.5571 12.0468 Q28.1821 12.0468 28.6508 11.9375 Q29.1196 11.8125 29.6352 11.6093 L29.6352 12.5312 Q29.1352 12.75 28.6508 12.8437 Q28.1821 12.9531 27.5102 12.9531 Q26.6039 12.9531 25.9008 12.5781 Q25.1977 12.2031 24.8071 11.4687 Q24.4164 10.7343 24.4164 9.6562 Q24.4164 8.6093 24.7758 7.8593 Q25.1352 7.0937 25.7758 6.6875 Q26.4164 6.2812 27.2602 6.2812 ZM27.2446 7.1406 Q26.4946 7.1406 26.0571 7.625 Q25.6196 8.1093 25.5414 8.9687 L28.8071 8.9687 Q28.8071 8.1562 28.4321 7.6562 Q28.0571 7.1406 27.2446 7.1406 Z" style="stroke:none; clip-path:url(#clipPath74);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><line x1="-1623.2498" x2="-1526.4334" y1="-187.8206" style="fill:none; clip-path:url(#clipPath2);" y2="-188.0344"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1586.5717,-173.0996)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath75);"
+    /></g
+    ><g transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)" style="fill:rgb(255,255,204); text-rendering:geometricPrecision; font-family:sans-serif; shape-rendering:crispEdges; stroke:rgb(255,255,204); stroke-width:2;"
+    ><rect x="-1466.1909" y="-176.674" width="108" style="clip-path:url(#clipPath2); stroke:none;" height="45"
+      /><rect x="-1466.1909" y="-176.674" width="108" style="clip-path:url(#clipPath2); fill:none; stroke:black;" height="45"
+      /><rect x="-1376.1909" y="-170.674" width="12" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="14"
+      /><rect x="-1376.1909" y="-170.674" width="12" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="14"
+      /><rect x="-1378.1909" y="-162.674" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-1378.1909" y="-162.674" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+      /><rect x="-1378.1909" y="-167.674" width="6" style="clip-path:url(#clipPath2); stroke:none; stroke-width:1;" height="3"
+      /><rect x="-1378.1909" y="-167.674" width="6" style="clip-path:url(#clipPath2); fill:none; stroke:black; stroke-width:1;" height="3"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1451.2371,-172.674)"
+    ><path d="M6.5469 12.8281 L5.5156 10.1718 L2.1094 10.1718 L1.0938 12.8281 L0 12.8281 L3.3438 4.2187 L4.3125 4.2187 L7.6562 12.8281 L6.5469 12.8281 ZM4.2188 6.625 Q4.1875 6.5312 4.0938 6.2812 Q4.0156 6.0312 3.9375 5.7656 Q3.8594 5.4843 3.8125 5.3437 Q3.7344 5.7187 3.625 6.0781 Q3.5156 6.4218 3.4375 6.625 L2.4688 9.2187 L5.1875 9.2187 L4.2188 6.625 ZM11.7774 6.2812 Q12.9337 6.2812 13.5118 6.8437 Q14.1056 7.3906 14.1056 8.6406 L14.1056 12.8281 L13.0743 12.8281 L13.0743 8.7187 Q13.0743 7.1718 11.6212 7.1718 Q10.5587 7.1718 10.1524 7.7656 Q9.7462 8.3593 9.7462 9.4843 L9.7462 12.8281 L8.6837 12.8281 L8.6837 6.3906 L9.5431 6.3906 L9.6993 7.2656 L9.7618 7.2656 Q10.0743 6.7656 10.6212 6.5312 Q11.1681 6.2812 11.7774 6.2812 ZM18.381 6.2812 Q19.0216 6.2812 19.5216 6.5156 Q20.0372 6.75 20.3966 7.25 L20.4591 7.25 L20.5997 6.3906 L21.4435 6.3906 L21.4435 12.9375 Q21.4435 14.3125 20.7404 15 Q20.0372 15.7031 18.5685 15.7031 Q17.1466 15.7031 16.2404 15.2968 L16.2404 14.3281 Q17.1935 14.8281 18.631 14.8281 Q19.4591 14.8281 19.9279 14.3437 Q20.3966 13.8593 20.3966 13.0156 L20.3966 12.7656 Q20.3966 12.625 20.4122 12.3593 Q20.4279 12.0781 20.4435 11.9687 L20.381 11.9687 Q19.7404 12.9531 18.3966 12.9531 Q17.1466 12.9531 16.4435 12.0781 Q15.7404 11.2031 15.7404 9.625 Q15.7404 8.0937 16.4435 7.1875 Q17.1466 6.2812 18.381 6.2812 ZM18.5216 7.1718 Q17.7247 7.1718 17.2716 7.8125 Q16.8341 8.4531 16.8341 9.6406 Q16.8341 10.8281 17.2716 11.4531 Q17.7091 12.0781 18.5529 12.0781 Q19.5216 12.0781 19.9591 11.5625 Q20.4122 11.0468 20.4122 9.875 L20.4122 9.625 Q20.4122 8.2968 19.9591 7.7343 Q19.506 7.1718 18.5216 7.1718 ZM28.8548 6.3906 L28.8548 12.8281 L27.9954 12.8281 L27.8392 11.9687 L27.7923 11.9687 Q27.4798 12.4843 26.9173 12.7187 Q26.3704 12.9531 25.7454 12.9531 Q24.5892 12.9531 23.9954 12.3906 Q23.4173 11.8281 23.4173 10.6093 L23.4173 6.3906 L24.4798 6.3906 L24.4798 10.5312 Q24.4798 12.0781 25.9017 12.0781 Q26.9798 12.0781 27.386 11.4843 Q27.8079 10.875 27.8079 9.75 L27.8079 6.3906 L28.8548 6.3906 ZM31.9583 12.8281 L30.8958 12.8281 L30.8958 3.7031 L31.9583 3.7031 L31.9583 12.8281 ZM36.4294 6.2812 Q37.6012 6.2812 38.1637 6.7968 Q38.7419 7.3125 38.7419 8.4531 L38.7419 12.8281 L37.9606 12.8281 L37.7575 11.9218 L37.7106 11.9218 Q37.2887 12.4375 36.82 12.7031 Q36.3669 12.9531 35.5544 12.9531 Q34.6794 12.9531 34.1012 12.5 Q33.5231 12.0312 33.5231 11.0468 Q33.5231 10.0781 34.2731 9.5625 Q35.0387 9.0312 36.6169 8.9843 L37.7106 8.9531 L37.7106 8.5625 Q37.7106 7.7656 37.3512 7.4531 Q37.0075 7.1406 36.3669 7.1406 Q35.8669 7.1406 35.4137 7.2968 Q34.9606 7.4375 34.5544 7.625 L34.2419 6.8437 Q34.6637 6.6093 35.2262 6.4531 Q35.8044 6.2812 36.4294 6.2812 ZM36.7419 9.7187 Q35.5387 9.7656 35.07 10.1093 Q34.6169 10.4375 34.6169 11.0468 Q34.6169 11.5937 34.945 11.8437 Q35.2731 12.0937 35.7887 12.0937 Q36.6169 12.0937 37.1481 11.6562 Q37.695 11.2031 37.695 10.2656 L37.695 9.6875 L36.7419 9.7187 ZM43.7239 6.2812 Q43.9114 6.2812 44.1145 6.2968 Q44.3333 6.3125 44.4895 6.3437 L44.3489 7.3125 Q44.1926 7.2812 44.0051 7.2656 Q43.8176 7.2343 43.6614 7.2343 Q43.1614 7.2343 42.7239 7.5156 Q42.302 7.7812 42.0364 8.2656 Q41.7864 8.75 41.7864 9.3906 L41.7864 12.8281 L40.7239 12.8281 L40.7239 6.3906 L41.5989 6.3906 L41.7083 7.5781 L41.7551 7.5781 Q42.0676 7.0468 42.552 6.6718 Q43.052 6.2812 43.7239 6.2812 ZM51.2112 12.8281 L50.1799 10.1718 L46.7737 10.1718 L45.7581 12.8281 L44.6643 12.8281 L48.0081 4.2187 L48.9768 4.2187 L52.3206 12.8281 L51.2112 12.8281 ZM48.8831 6.625 Q48.8518 6.5312 48.7581 6.2812 Q48.6799 6.0312 48.6018 5.7656 Q48.5237 5.4843 48.4768 5.3437 Q48.3987 5.7187 48.2893 6.0781 Q48.1799 6.4218 48.1018 6.625 L47.1331 9.2187 L49.8518 9.2187 L48.8831 6.625 ZM56.4105 6.2812 Q57.598 6.2812 58.3167 7.1093 Q59.0511 7.9375 59.0511 9.5937 Q59.0511 11.25 58.3167 12.1093 Q57.598 12.9531 56.3949 12.9531 Q55.6605 12.9531 55.1761 12.6718 Q54.6917 12.3906 54.4105 12.0156 L54.3324 12.0156 Q54.3636 12.2187 54.3792 12.5312 Q54.4105 12.8437 54.4105 13.0625 L54.4105 15.7031 L53.348 15.7031 L53.348 6.3906 L54.223 6.3906 L54.3636 7.2656 L54.4105 7.2656 Q54.6917 6.8593 55.1605 6.5781 Q55.6292 6.2812 56.4105 6.2812 ZM56.223 7.1718 Q55.2386 7.1718 54.8324 7.7187 Q54.4261 8.2656 54.4105 9.3906 L54.4105 9.5937 Q54.4105 10.7812 54.8011 11.4375 Q55.1917 12.0781 56.2386 12.0781 Q56.8324 12.0781 57.2074 11.75 Q57.5824 11.4218 57.7699 10.875 Q57.9574 10.3125 57.9574 9.5937 Q57.9574 8.4843 57.5355 7.8281 Q57.1136 7.1718 56.223 7.1718 ZM63.7905 6.2812 Q64.978 6.2812 65.6968 7.1093 Q66.4312 7.9375 66.4312 9.5937 Q66.4312 11.25 65.6968 12.1093 Q64.978 12.9531 63.7749 12.9531 Q63.0405 12.9531 62.5562 12.6718 Q62.0718 12.3906 61.7905 12.0156 L61.7124 12.0156 Q61.7437 12.2187 61.7593 12.5312 Q61.7905 12.8437 61.7905 13.0625 L61.7905 15.7031 L60.728 15.7031 L60.728 6.3906 L61.603 6.3906 L61.7437 7.2656 L61.7905 7.2656 Q62.0718 6.8593 62.5405 6.5781 Q63.0093 6.2812 63.7905 6.2812 ZM63.603 7.1718 Q62.6187 7.1718 62.2124 7.7187 Q61.8062 8.2656 61.7905 9.3906 L61.7905 9.5937 Q61.7905 10.7812 62.1812 11.4375 Q62.5718 12.0781 63.6187 12.0781 Q64.2124 12.0781 64.5874 11.75 Q64.9624 11.4218 65.1499 10.875 Q65.3374 10.3125 65.3374 9.5937 Q65.3374 8.4843 64.9155 7.8281 Q64.4937 7.1718 63.603 7.1718 Z" style="stroke:none; clip-path:url(#clipPath76);"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727)"
+    ><line x1="-1312.9483" x2="-1262.0823" y1="-171.2812" style="fill:none; clip-path:url(#clipPath2);" y2="-171.2812"
+      /><line x1="-1262.0823" x2="-1262.0823" y1="-171.2812" style="fill:none; clip-path:url(#clipPath2);" y2="-149.4645"
+      /><line x1="-1262.0823" x2="-1211.3127" y1="-149.4645" style="fill:none; clip-path:url(#clipPath2);" y2="-149.4645"
+    /></g
+    ><g style="font-family:sans-serif; text-rendering:optimizeLegibility;" transform="matrix(1.3333,0,0,1.3333,2462.3132,616.2727) translate(-1273.8124,-145.5931)"
+    ><path d="M2.0781 -6.4375 Q2.0781 -5.9688 2.0156 -5.5469 L2.0938 -5.5469 Q2.4062 -6.0312 2.9375 -6.2812 Q3.4688 -6.5469 4.0938 -6.5469 Q5.2656 -6.5469 5.8438 -5.9844 Q6.4375 -5.4219 6.4375 -4.1875 L6.4375 0 L5.4062 0 L5.4062 -4.1094 Q5.4062 -5.6562 3.9531 -5.6562 Q2.875 -5.6562 2.4688 -5.0469 Q2.0781 -4.4531 2.0781 -3.3281 L2.0781 0 L1.0156 0 L1.0156 -9.125 L2.0781 -9.125 L2.0781 -6.4375 ZM10.5879 -0.75 Q10.8223 -0.75 11.0723 -0.7812 Q11.3223 -0.8281 11.4785 -0.875 L11.4785 -0.0781 Q11.3223 0.0156 11.0098 0.0625 Q10.6973 0.125 10.4004 0.125 Q9.9004 0.125 9.4629 -0.0469 Q9.041 -0.2344 8.7754 -0.6562 Q8.5254 -1.0938 8.5254 -1.875 L8.5254 -5.6094 L7.6035 -5.6094 L7.6035 -6.125 L8.5254 -6.5469 L8.9473 -7.9062 L9.5723 -7.9062 L9.5723 -6.4375 L11.4317 -6.4375 L11.4317 -5.6094 L9.5723 -5.6094 L9.5723 -1.8906 Q9.5723 -1.3125 9.8535 -1.0312 Q10.1348 -0.75 10.5879 -0.75 ZM14.92 -0.75 Q15.1543 -0.75 15.4043 -0.7812 Q15.6543 -0.8281 15.8106 -0.875 L15.8106 -0.0781 Q15.6543 0.0156 15.3418 0.0625 Q15.0293 0.125 14.7325 0.125 Q14.2325 0.125 13.795 -0.0469 Q13.3731 -0.2344 13.1075 -0.6562 Q12.8575 -1.0938 12.8575 -1.875 L12.8575 -5.6094 L11.9356 -5.6094 L11.9356 -6.125 L12.8575 -6.5469 L13.2793 -7.9062 L13.9043 -7.9062 L13.9043 -6.4375 L15.7637 -6.4375 L15.7637 -5.6094 L13.9043 -5.6094 L13.9043 -1.8906 Q13.9043 -1.3125 14.1856 -1.0312 Q14.4668 -0.75 14.92 -0.75 ZM20.1582 -6.5469 Q21.3457 -6.5469 22.0645 -5.7188 Q22.7989 -4.8906 22.7989 -3.2344 Q22.7989 -1.5781 22.0645 -0.7188 Q21.3457 0.125 20.1426 0.125 Q19.4082 0.125 18.9239 -0.1562 Q18.4395 -0.4375 18.1582 -0.8125 L18.0801 -0.8125 Q18.1114 -0.6094 18.127 -0.2969 Q18.1582 0.0156 18.1582 0.2344 L18.1582 2.875 L17.0957 2.875 L17.0957 -6.4375 L17.9707 -6.4375 L18.1114 -5.5625 L18.1582 -5.5625 Q18.4395 -5.9688 18.9082 -6.25 Q19.377 -6.5469 20.1582 -6.5469 ZM19.9707 -5.6562 Q18.9864 -5.6562 18.5801 -5.1094 Q18.1739 -4.5625 18.1582 -3.4375 L18.1582 -3.2344 Q18.1582 -2.0469 18.5489 -1.3906 Q18.9395 -0.75 19.9864 -0.75 Q20.5801 -0.75 20.9551 -1.0781 Q21.3301 -1.4062 21.5176 -1.9531 Q21.7051 -2.5156 21.7051 -3.2344 Q21.7051 -4.3438 21.2832 -5 Q20.8614 -5.6562 19.9707 -5.6562 Z" style="stroke:none; clip-path:url(#clipPath77);"
+    /></g
+  ></g
+></svg
+>
diff --git a/diagramas/practica.asta b/diagramas/practica.asta
new file mode 100644
index 0000000000000000000000000000000000000000..6bd427d9fe5871755fe469e38a57b99fb9c0271b
Binary files /dev/null and b/diagramas/practica.asta differ
diff --git a/diagramas/users.png b/diagramas/users.png
new file mode 100644
index 0000000000000000000000000000000000000000..5f14c2b43b0a46edba332e7d7adb68c659770c85
Binary files /dev/null and b/diagramas/users.png differ
diff --git a/diagramas/users.png.bak b/diagramas/users.png.bak
new file mode 100644
index 0000000000000000000000000000000000000000..aaa6fced0173407a821bc0533d254a532ede6df8
Binary files /dev/null and b/diagramas/users.png.bak differ
diff --git a/docker-compose.yml b/docker-compose.yml
index 6f86e46bad45d0d7f2a56bc0ce180ea343d0353e..522252ab10d4aef02d8cac7366f272302a799732 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,73 +1,282 @@
 volumes:
   kong_data: {}
   users_data: {}
+  hotels_data: {}
+  bookings_data: {}
 
-networks:
-  kong-net: {}
+networks: #Red interna para comunicar los servicios
+  kong-net:
 
 services:
+  #######################################
+  # Cliente Angular
+  #######################################
+  RoomsBooking-Web:
+    image: roomsbooking-web-image
+    build:
+      context: ./angular/RestClient
+      dockerfile: ./Dockerfile
+    restart: unless-stopped
+    ports:
+      - 4200:80
+    networks:
+      - kong-net
+    depends_on:
+      - kong
+      - Auth-API
+      - Users-API
+      - Hotels-API
+      - Bookings-API
+
+  #######################################
+  # Kong
+  #######################################
+
+  # Postgres: The database used by Kong
+  kong-database:
+    image: postgres:9.6
+    container_name: kong-postgres
+    restart: on-failure
+    networks:
+      - kong-net
+    volumes:
+      - kong_data:/var/lib/postgresql/data
+    environment:
+      POSTGRES_USER: kong
+      POSTGRES_PASSWORD: ${KONG_PG_PASSWORD:-kong}
+      POSTGRES_DB: kong
+    ports:
+      - 5432:5432
+    healthcheck:
+      test: [CMD, pg_isready, -U, kong]
+      interval: 30s
+      timeout: 30s
+      retries: 3
+
+  # Kong database migration
+  kong-migration:
+    image: ${KONG_DOCKER_TAG:-kong:latest}
+    command: kong migrations bootstrap
+    networks:
+      - kong-net
+    restart: on-failure
+    environment:
+      KONG_DATABASE: postgres
+      KONG_PG_HOST: kong-database
+      KONG_PG_DATABASE: kong
+      KONG_PG_USER: kong
+      KONG_PG_PASSWORD: ${KONG_PG_PASSWORD:-kong}
+    depends_on:
+      kong-database:
+        condition: service_healthy
+
+  # Kong: The API Gateway
+  kong:
+    image: ${KONG_DOCKER_TAG:-kong:latest}
+    restart: on-failure
+    networks:
+      - kong-net
+    environment:
+      KONG_DATABASE: postgres
+      KONG_PG_HOST: kong-database
+      KONG_PG_DATABASE: kong
+      KONG_PG_USER: kong
+      KONG_PG_PASSWORD: ${KONG_PG_PASSWORD:-kong}
+      KONG_PROXY_LISTEN: 0.0.0.0:8000
+      KONG_PROXY_LISTEN_SSL: 0.0.0.0:8443
+      KONG_ADMIN_LISTEN: 0.0.0.0:8001
+    depends_on:
+      kong-database:
+        condition: service_healthy
+    healthcheck:
+      test: [CMD, kong, health]
+      interval: 10s
+      timeout: 10s
+      retries: 10
+    ports:
+      - 8000:8000
+      - 8001:8001
+      - 8443:8443
+      - 8444:8444
+
+  #######################################
+  # Konga
+  #######################################
+
+  # Konga database prepare
+  konga-prepare:
+    image: pantsel/konga:latest
+    command: "-c prepare -a postgres -u postgresql://kong:${KONG_PG_PASSWORD:-kong}@kong-database:5432/konga"
+    networks:
+      - kong-net
+    restart: on-failure
+    depends_on:
+      kong-database:
+        condition: service_healthy
+
+  # Konga: Kong GUI
+  konga:
+    image: pantsel/konga:latest
+    restart: always
+    networks:
+      - kong-net
+    environment:
+      DB_ADAPTER: postgres
+      DB_URI: postgresql://kong:${KONG_PG_PASSWORD:-kong}@kong-database:5432/konga
+      NODE_ENV: production
+    depends_on:
+      kong-database:
+        condition: service_healthy
+    ports:
+      - 1337:1337
+
+  #######################################
+  # Generate Data
+  #######################################
+
+  Generate-APIs-Data:
+    image: gen-apis-data
+    build:
+      context: ./poblate
+      dockerfile: Dockerfile
+    networks:
+      - kong-net
+    restart: on-failure
+    depends_on:
+      - kong
+      - Auth-API
+      - Users-API
+      - Hotels-API
+      - Bookings-API
+
+  #######################################
+  # APIs
+  #######################################
+
   Auth-API:
     image: auth-api-image
-    hostname: ${AUTH_SERVICE_HOSTNAME}
+    hostname: ${API_AUTH_HOSTNAME}
     build:
       context: ./java/services/auth
       dockerfile: Dockerfile
     restart: unless-stopped
-    ports:
-      - 8101:8101
     networks:
       - kong-net
     environment:
-      SPRING_DATASOURCE_URL: jdbc:mysql://${DB_SERVICE_HOSTNAME}:3306/${DB_DATABASE_NAME}?createDatabaseIfNotExist=true
+      SECURITY_JWT_SECRET-KEY: ${JWT_KEY}
+      SECURITY_JWT_KID: ${JWT_KID}
+      SECURITY_JWT_EXTERNAL_EXPIRATION: ${JWT_EXTERNAL_EXPIRATION:-3600}
+      SECURITY_JWT_INTERNAL_EXPIRATION: ${JWT_INTERNAL_EXPIRATION:-600}
+      SERVICES_EXTERNAL_USERS_URL: ${API_KONG_ROUTE_USERS_URL}
     depends_on:
-      - RoomsBooking-database
+      - Users-API
 
-  RoomsBooking-API:
-    image: rooms-booking-api-image
-    hostname: ${ROOMS_BOOKING_SERVICE_HOSTNAME}
+  Users-API:
+    image: users-api-image
+    hostname: ${API_USERS_HOSTNAME}
     build:
-      context: ./java/roomBooking
+      context: ./java/services/users
+      dockerfile: Dockerfile
+    restart: unless-stopped
+    networks:
+      - kong-net
+    environment:
+      SPRING_DATASOURCE_URL: jdbc:mysql://${DB_USERS_HOSTNAME}:${DB_USERS_PORT:-3306}/${DB_USERS_DATABASE}?createDatabaseIfNotExist=true
+      SERVICES_INTERNAL_TOKEN_URL: ${API_AUTH_TOKEN_URL}
+      SERVICES_EXTERNAL_HOTELS_URL: ${API_KONG_ROUTE_HOTELS_URL}
+      SERVICES_EXTERNAL_BOOKINGS_URL: ${API_KONG_ROUTE_BOOKINGS_URL}
+    depends_on:
+      - Users-DB
+
+  Hotels-API:
+    image: hotels-api-image
+    hostname: ${API_HOTELS_HOSTNAME}
+    build:
+      context: ./java/services/hotels
       dockerfile: Dockerfile
     restart: unless-stopped
-    ports:
-      - 8080:8080
     networks:
       - kong-net
     environment:
-      SPRING_DATASOURCE_URL: jdbc:mysql://${DB_SERVICE_HOSTNAME}:3306/${DB_DATABASE_NAME}?createDatabaseIfNotExist=true
+      SPRING_DATASOURCE_URL: jdbc:mysql://${DB_HOTELS_HOSTNAME}:${DB_HOTELS_PORT:-3306}/${DB_HOTELS_DATABASE}?createDatabaseIfNotExist=true
+      SERVICES_INTERNAL_TOKEN_URL: ${API_AUTH_TOKEN_URL}
+      SERVICES_EXTERNAL_MANAGERS_URL: ${API_KONG_ROUTE_MANAGERS_URL}
+      SERVICES_EXTERNAL_BOOKINGS_URL: ${API_KONG_ROUTE_BOOKINGS_URL}
     depends_on:
-      - RoomsBooking-database
+      - Hotels-DB
 
-  RoomsBooking-database:
+  Bookings-API:
+    image: bookings-api-image
+    hostname: ${API_BOOKINGS_HOSTNAME}
+    build:
+      context: ./java/services/bookings
+      dockerfile: Dockerfile
+    restart: unless-stopped
+    networks:
+      - kong-net
+    environment:
+      SPRING_DATASOURCE_URL: jdbc:mysql://${DB_BOOKINGS_HOSTNAME}:${DB_BOOKINGS_PORT:-3306}/${DB_BOOKINGS_DATABASE}?createDatabaseIfNotExist=true
+      SERVICES_INTERNAL_TOKEN_URL: ${API_AUTH_TOKEN_URL}
+      SERVICES_EXTERNAL_CLIENTS_URL: ${API_KONG_ROUTE_CLIENTS_URL}
+      SERVICES_EXTERNAL_MANAGERS_URL: ${API_KONG_ROUTE_MANAGERS_URL}
+      SERVICES_EXTERNAL_HOTELS_URL: ${API_KONG_ROUTE_HOTELS_URL}
+
+    depends_on:
+      - Users-API
+      - Hotels-API
+      - Bookings-DB
+
+  #######################################
+  # Databases
+  #######################################
+
+  Users-DB:
     image: mysql
-    hostname: ${DB_SERVICE_HOSTNAME}
+    hostname: ${DB_USERS_HOSTNAME}
     cap_add:
       - SYS_NICE
     restart: unless-stopped
-    ports:
-      - "3307:3306"
     networks:
       - kong-net
     volumes:
       - users_data:/var/lib/mysql
     environment:
-      MYSQL_ROOT_PASSWORD: ClaveRoot
-      MYSQL_USER: user
-      MYSQL_PASSWORD: password
-      MYSQL_DATABASE: RoomsBooking
+      MYSQL_ROOT_PASSWORD: ${DB_CREDENTIALS_ROOT_PASSWORD:-ClaveRoot}
+      MYSQL_USER: ${DB_CREDENTIALS_USER:-user}
+      MYSQL_PASSWORD: ${DB_CREDENTIALS_PASSWORD:-password}
+      MYSQL_DATABASE: ${DB_USERS_DATABASE}
       MYSQL_ROOT_HOST: "%"
 
-  RoomsBooking-Web:
-    image: roomsbooking-web-image
-    build:
-      context: ./angular/RestClient
-      dockerfile: ./Dockerfile
+  Hotels-DB:
+    image: mysql
+    hostname: ${DB_HOTELS_HOSTNAME}
+    cap_add:
+      - SYS_NICE
     restart: unless-stopped
-    ports:
-      - 4200:80
     networks:
       - kong-net
+    volumes:
+      - hotels_data:/var/lib/mysql
     environment:
-      SPRING_DATASOURCE_URL: jdbc:mysql://${DB_SERVICE_HOSTNAME}:3306/${DB_DATABASE_NAME}?createDatabaseIfNotExist=true
-    depends_on:
-      - RoomsBooking-database
+      MYSQL_ROOT_PASSWORD: ${DB_CREDENTIALS_ROOT_PASSWORD:-ClaveRoot}
+      MYSQL_USER: ${DB_CREDENTIALS_USER:-user}
+      MYSQL_PASSWORD: ${DB_CREDENTIALS_PASSWORD:-password}
+      MYSQL_DATABASE: ${DB_HOTELS_DATABASE}
+      MYSQL_ROOT_HOST: "%"
+
+  Bookings-DB:
+    image: mysql
+    hostname: ${DB_BOOKINGS_HOSTNAME}
+    cap_add:
+      - SYS_NICE
+    restart: unless-stopped
+    networks:
+      - kong-net
+    volumes:
+      - bookings_data:/var/lib/mysql
+    environment:
+      MYSQL_ROOT_PASSWORD: ${DB_CREDENTIALS_ROOT_PASSWORD:-ClaveRoot}
+      MYSQL_USER: ${DB_CREDENTIALS_USER:-user}
+      MYSQL_PASSWORD: ${DB_CREDENTIALS_PASSWORD:-password}
+      MYSQL_DATABASE: ${DB_BOOKINGS_DATABASE}
+      MYSQL_ROOT_HOST: "%"
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/config/SecurityConfig.java b/java/roomBooking/src/main/java/com/uva/monolith/config/SecurityConfig.java
deleted file mode 100644
index 8264f84a2e9f57dabaedc5892ea8a3ca0e931232..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/config/SecurityConfig.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package com.uva.monolith.config;
-
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.http.HttpMethod;
-import org.springframework.security.config.annotation.web.builders.HttpSecurity;
-import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
-import org.springframework.security.web.SecurityFilterChain;
-import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
-
-import com.uva.monolith.filter.JwtAuthenticationFilter;
-import com.uva.monolith.services.users.models.UserRol;
-
-@Configuration
-@EnableWebSecurity
-public class SecurityConfig {
-
-    private final JwtAuthenticationFilter jwtAuthenticationFilter;
-
-    public SecurityConfig(JwtAuthenticationFilter jwtAuthenticationFilter) {
-        this.jwtAuthenticationFilter = jwtAuthenticationFilter;
-    }
-
-    @Bean
-    public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
-        http.csrf(csrf -> csrf.disable())
-                .authorizeHttpRequests(authorize -> authorize
-                        // Permitir OPTIONS sin autenticación
-                        .requestMatchers(HttpMethod.OPTIONS, "/**").permitAll()
-                        // Acceso restringido a usuarios y administradores
-                        .requestMatchers("users", "users/**").hasAnyRole(
-                                UserRol.CLIENT.toString(), UserRol.HOTEL_ADMIN.toString(), UserRol.ADMIN.toString())
-                        // Acceso restringido a gestores de hoteles y administradores
-                        .requestMatchers(HttpMethod.GET, "hotels", "hotels/*").hasAnyRole(
-                                UserRol.CLIENT.toString(), UserRol.HOTEL_ADMIN.toString(), UserRol.ADMIN.toString())
-
-                        .requestMatchers("hotels", "hotels/**")
-                        .hasAnyRole(UserRol.ADMIN.toString(), UserRol.HOTEL_ADMIN.toString())
-                        // Acceso restringido a cualquier usuario del sistema
-                        .requestMatchers("bookings", "bookings/**")
-                        .hasAnyRole(UserRol.ADMIN.toString(), UserRol.HOTEL_ADMIN.toString(), UserRol.CLIENT.toString())
-                        // Rechazar el resto
-                        .anyRequest().denyAll())
-                // Registra el filtro antes del filtro estándar de autenticación
-                .addFilterBefore(jwtAuthenticationFilter, UsernamePasswordAuthenticationFilter.class);
-
-        return http.build();
-    }
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/filter/JwtAuthenticationFilter.java b/java/roomBooking/src/main/java/com/uva/monolith/filter/JwtAuthenticationFilter.java
deleted file mode 100644
index 9b31d1a0e80f529075ef20bc4e9a955cfa825d30..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/filter/JwtAuthenticationFilter.java
+++ /dev/null
@@ -1,124 +0,0 @@
-package com.uva.monolith.filter;
-
-import io.jsonwebtoken.Claims;
-import io.jsonwebtoken.ExpiredJwtException;
-import io.jsonwebtoken.Jwts;
-import io.jsonwebtoken.MalformedJwtException;
-import io.jsonwebtoken.UnsupportedJwtException;
-import io.jsonwebtoken.io.Decoders;
-import io.jsonwebtoken.security.Keys;
-import io.jsonwebtoken.security.SignatureException;
-
-import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
-import org.springframework.security.core.authority.SimpleGrantedAuthority;
-import org.springframework.security.core.context.SecurityContextHolder;
-import org.springframework.security.web.authentication.WebAuthenticationDetailsSource;
-import org.springframework.stereotype.Component;
-
-import com.uva.monolith.services.users.models.UserRol;
-
-import jakarta.servlet.FilterChain;
-import jakarta.servlet.ServletException;
-import jakarta.servlet.ServletRequest;
-import jakarta.servlet.ServletResponse;
-import jakarta.servlet.http.HttpServletRequest;
-import jakarta.servlet.Filter;
-import java.io.IOException;
-import java.security.Key;
-import java.time.LocalDateTime;
-import java.util.Collections;
-import java.util.Date;
-
-@Component
-public class JwtAuthenticationFilter implements Filter {
-
-    private final String SECRET_KEY = "3cfa76ef14937c1c0ea519f8fc057a80fcd04a7420f8e8bcd0a7567c272e007b";
-
-    private Key getSignInKey() {
-        byte[] keyBytes = Decoders.BASE64.decode(SECRET_KEY);
-        return Keys.hmacShaKeyFor(keyBytes);
-    }
-
-    private String getTokenFromRequest(HttpServletRequest request) {
-        String authHeader = request.getHeader("Authorization");
-        if (authHeader == null || !authHeader.startsWith("Bearer "))
-            return null;
-        return authHeader.substring(7);
-    }
-
-    private Claims getClaimsFromToken(String token) {
-        return Jwts.parserBuilder()
-                .setSigningKey(getSignInKey())
-                .build()
-                .parseClaimsJws(token)
-                .getBody();
-    }
-
-    private boolean validateToken(String token) {
-        if (token == null)
-            return false;// no token
-        try {
-            // Verifica y analiza el token
-            Claims claims = getClaimsFromToken(token);
-
-            // Verifica que el token no esté expirado
-            return claims.getExpiration().after(new Date());
-        } catch (ExpiredJwtException e) {
-            System.out.println("[" + LocalDateTime.now().toString() + "] Token expirado: " + e.getMessage());
-        } catch (UnsupportedJwtException e) {
-            System.out.println("[" + LocalDateTime.now().toString() + "] Token no soportado: " + e.getMessage());
-        } catch (MalformedJwtException e) {
-            System.out.println("[" + LocalDateTime.now().toString() + "] Token malformado: " + e.getMessage());
-        } catch (SignatureException e) {
-            System.out.println("[" + LocalDateTime.now().toString() + "] Firma inválida: " + e.getMessage());
-        } catch (IllegalArgumentException e) {
-            System.out.println("[" + LocalDateTime.now().toString() + "] Token vacío o nulo: " + e.getMessage());
-        }
-        return false; // Si ocurre cualquier excepción, el token es inválido
-
-    }
-
-    private String getEmailFromToken(String token) {
-        return getClaimsFromToken(token).getSubject();
-    }
-
-    private UserRol getRoleFromToken(String token) {
-        String rol = getClaimsFromToken(token).get("rol", String.class);
-        return UserRol.valueOf(rol);
-    }
-
-    public static String getRol(UserRol rol) {
-        return String.format("ROLE_%s", rol.toString());
-    }
-
-    @Override
-    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
-            throws IOException, ServletException {
-        HttpServletRequest httpRequest = (HttpServletRequest) request;
-        String token = getTokenFromRequest(httpRequest);
-
-        System.out.println("[" + LocalDateTime.now().toString() + "] TOKEN " + token);
-
-        if (validateToken(token)) {
-
-            String email = getEmailFromToken(token);
-            UserRol role = getRoleFromToken(token); // Extraer el rol del token
-
-            if (email != null && SecurityContextHolder.getContext().getAuthentication() == null) {
-                UsernamePasswordAuthenticationToken authentication = new UsernamePasswordAuthenticationToken(
-                        email, null, null);
-                authentication.setDetails(new WebAuthenticationDetailsSource().buildDetails(httpRequest));
-                SecurityContextHolder.getContext().setAuthentication(authentication);
-            }
-
-            // Agregar el rol como autoridad
-            SimpleGrantedAuthority authority = new SimpleGrantedAuthority(getRol(role));
-            UsernamePasswordAuthenticationToken authentication = new UsernamePasswordAuthenticationToken(email, null,
-                    Collections.singletonList(authority));
-            SecurityContextHolder.getContext().setAuthentication(authentication);
-        }
-
-        chain.doFilter(request, response);
-    }
-
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/controllers/BookingController.java b/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/controllers/BookingController.java
deleted file mode 100644
index 602f16a2f96e27d3e855440136cbcb41f9b57ab0..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/controllers/BookingController.java
+++ /dev/null
@@ -1,51 +0,0 @@
-package com.uva.monolith.services.bookings.controllers;
-
-import com.uva.monolith.services.bookings.models.Booking;
-import com.uva.monolith.services.bookings.services.BookingService;
-import org.springframework.http.HttpStatus;
-import org.springframework.http.ResponseEntity;
-import org.springframework.web.bind.annotation.*;
-
-import java.time.LocalDate;
-import java.util.List;
-
-@RestController
-@RequestMapping("/bookings")
-@CrossOrigin(origins = "*")
-public class BookingController {
-
-    private final BookingService bookingService;
-
-    public BookingController(BookingService bookingService) {
-        this.bookingService = bookingService;
-    }
-
-    @GetMapping
-    public List<Booking> getAllBookings(
-            @RequestParam(required = false) LocalDate start,
-            @RequestParam(required = false) LocalDate end,
-            @RequestParam(required = false) Integer roomId,
-            @RequestParam(required = false) Integer userId) {
-        return bookingService.getBookings(start, end, roomId, userId);
-    }
-
-    @PostMapping
-    public Booking createBooking(@RequestBody Booking booking) {
-        return bookingService.createBooking(booking);
-    }
-
-    @GetMapping("/{id}")
-    public Booking getBookingById(@PathVariable Integer id) {
-        return bookingService.getBookingById(id);
-    }
-
-    @DeleteMapping("/{id}")
-    public ResponseEntity<Void> deleteBooking(@PathVariable Integer id) {
-        try {
-            bookingService.deleteBooking(id);
-            return new ResponseEntity<>(HttpStatus.ACCEPTED);
-        } catch (RuntimeException e) {
-            return new ResponseEntity<>(HttpStatus.NOT_FOUND);
-        }
-    }
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/models/Booking.java b/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/models/Booking.java
deleted file mode 100644
index 533ee0c7a1fa053dce449b855f1e46e08dabbe66..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/models/Booking.java
+++ /dev/null
@@ -1,88 +0,0 @@
-package com.uva.monolith.services.bookings.models;
-
-import jakarta.persistence.Basic;
-import jakarta.persistence.CascadeType;
-import jakarta.persistence.Column;
-import jakarta.persistence.Entity;
-import jakarta.persistence.FetchType;
-import jakarta.persistence.GeneratedValue;
-import jakarta.persistence.GenerationType;
-import jakarta.persistence.Id;
-import jakarta.persistence.JoinColumn;
-import jakarta.persistence.ManyToOne;
-import jakarta.persistence.Table;
-import java.time.LocalDate;
-
-import com.uva.monolith.services.hotels.models.Room;
-import com.uva.monolith.services.users.models.Client;
-
-@Entity
-@Table(name = "bookings")
-public class Booking {
-    @Id
-    @GeneratedValue(strategy = GenerationType.IDENTITY)
-    @Basic(optional = false)
-    private int id;
-    @JoinColumn(name = "user_id", referencedColumnName = "id")
-    @ManyToOne(optional = false, fetch = FetchType.EAGER, cascade = CascadeType.MERGE)
-    private Client userId;
-    @JoinColumn(name = "room_id", referencedColumnName = "id")
-    @ManyToOne(optional = false, fetch = FetchType.EAGER, cascade = CascadeType.MERGE)
-    private Room roomId;
-    @Column(name = "start_date", nullable = false)
-    private LocalDate startDate;
-    @Column(name = "end_date", nullable = false)
-    private LocalDate endDate;
-
-    public Booking() {
-    }
-
-    public Booking(int id, Client userId, Room roomID, LocalDate startDate, LocalDate endDate) {
-        this.id = id;
-        this.userId = userId;
-        this.roomId = roomID;
-        this.startDate = startDate;
-        this.endDate = endDate;
-    }
-
-    public void setId(int id) {
-        this.id = id;
-    }
-
-    public int getId() {
-        return this.id;
-    }
-
-    public void setUserId(Client userId) {
-        this.userId = userId;
-    }
-
-    public Client getUserId() {
-        return this.userId;
-    }
-
-    public void setRoomId(Room roomID) {
-        this.roomId = roomID;
-    }
-
-    public Room getRoomId() {
-        return this.roomId;
-    }
-
-    public void setStartDate(LocalDate startDate) {
-        this.startDate = startDate;
-    }
-
-    public LocalDate getStartDate() {
-        return this.startDate;
-    }
-
-    public void setEndDate(LocalDate endDate) {
-        this.endDate = endDate;
-    }
-
-    public LocalDate getEndDate() {
-        return this.endDate;
-    }
-
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/repositories/BookingRepository.java b/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/repositories/BookingRepository.java
deleted file mode 100644
index b5ace65939b898798e6e5416fedda793388f2615..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/repositories/BookingRepository.java
+++ /dev/null
@@ -1,41 +0,0 @@
-// BookingRepository.java
-package com.uva.monolith.services.bookings.repositories;
-
-import jakarta.transaction.Transactional;
-
-import java.time.LocalDate;
-import java.util.List;
-
-import org.springframework.data.jpa.repository.JpaRepository;
-import org.springframework.data.jpa.repository.Modifying;
-import org.springframework.data.jpa.repository.Query;
-import org.springframework.data.repository.query.Param;
-
-import com.uva.monolith.services.bookings.models.Booking;
-
-public interface BookingRepository extends JpaRepository<Booking, Integer> {
-        @Query("SELECT b FROM Booking b WHERE b.userId.id = ?1")
-        List<Booking> findByUserId(int userId);
-
-        @Query("SELECT b FROM Booking b WHERE b.roomId.id = ?1")
-        List<Booking> findByRoomId(int roomId);
-
-        @Query("SELECT b FROM Booking b WHERE b.startDate >= ?1 AND b.endDate <= ?2")
-        List<Booking> findByDateRange(@Param("startDate") LocalDate startDate,
-                        @Param("endDate") LocalDate endDate);
-
-        @Query("SELECT b FROM Booking b WHERE b.roomId.id = ?1 AND b.startDate < ?2 AND b.endDate > ?3")
-        List<Booking> findByRoomIdAndDateRange(@Param("roomId") int roomId, @Param("startDate") LocalDate startDate,
-                        @Param("endDate") LocalDate endDate);
-
-        @Transactional
-        @Modifying
-        @Query("DELETE FROM Booking b WHERE b.id = ?1")
-        void deleteBookingById(@Param("id") Integer id);
-
-        @Transactional
-        @Modifying
-        @Query("DELETE FROM Booking b WHERE b.roomId.hotel.id = ?1")
-        void deleteAllByHotelId(int hotelId);
-
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/services/BookingService.java b/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/services/BookingService.java
deleted file mode 100644
index 176f49dd951630c9118b24536e8a7dd6f5a15521..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/bookings/services/BookingService.java
+++ /dev/null
@@ -1,89 +0,0 @@
-package com.uva.monolith.services.bookings.services;
-
-import com.uva.monolith.services.bookings.models.Booking;
-import com.uva.monolith.services.bookings.repositories.BookingRepository;
-import com.uva.monolith.services.hotels.models.Room;
-import com.uva.monolith.services.hotels.repositories.RoomRepository;
-import com.uva.monolith.services.users.models.Client;
-import com.uva.monolith.services.users.repositories.ClientRepository;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.stereotype.Service;
-
-import java.time.LocalDate;
-import java.util.List;
-
-@Service
-public class BookingService {
-
-    @Autowired
-    private BookingRepository bookingRepository;
-
-    @Autowired
-    private RoomRepository roomRepository;
-
-    @Autowired
-    private ClientRepository clientRepository;
-
-    public List<Booking> getBookings(LocalDate start, LocalDate end, Integer roomId, Integer userId) {
-        List<Booking> bookings = null;
-
-        if (start != null && end != null) {
-            bookings = bookingRepository.findByDateRange(start, end);
-        }
-        if (roomId != null) {
-            if (bookings == null) {
-                bookings = bookingRepository.findByRoomId(roomId);
-            } else {
-                bookings = bookings.stream()
-                        .filter(booking -> booking.getRoomId().getId() == roomId)
-                        .toList();
-            }
-        }
-        if (userId != null) {
-            if (bookings == null) {
-                bookings = bookingRepository.findByUserId(userId);
-            } else {
-                bookings = bookings.stream()
-                        .filter(booking -> booking.getUserId().getId() == userId)
-                        .toList();
-            }
-        }
-        if (start == null && end == null && roomId == null && userId == null) {
-            bookings = bookingRepository.findAll();
-        }
-
-        return bookings;
-    }
-
-    public Booking createBooking(Booking booking) {
-        Client user = clientRepository.findById(booking.getUserId().getId())
-                .orElseThrow(() -> new RuntimeException("User not found"));
-        Room room = roomRepository.findById(booking.getRoomId().getId())
-                .orElseThrow(() -> new RuntimeException("Room not found"));
-
-        // Check availability
-        List<Booking> existingBookings = bookingRepository.findByRoomIdAndDateRange(
-                room.getId(), booking.getStartDate(), booking.getEndDate());
-
-        if (!existingBookings.isEmpty()) {
-            throw new RuntimeException("Room is not available for the selected dates");
-        }
-
-        booking.setUserId(user);
-        booking.setRoomId(room);
-        return bookingRepository.save(booking);
-    }
-
-    public Booking getBookingById(Integer id) {
-        return bookingRepository.findById(id)
-                .orElseThrow(() -> new RuntimeException("Booking not found"));
-    }
-
-    public void deleteBooking(Integer id) {
-        if (!bookingRepository.existsById(id)) {
-            throw new RuntimeException("Booking not found");
-        }
-        bookingRepository.deleteBookingById(id);
-    }
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/controllers/HotelController.java b/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/controllers/HotelController.java
deleted file mode 100644
index 781cb6278b0b40d237b603d7cfc61a63b7b2af0f..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/controllers/HotelController.java
+++ /dev/null
@@ -1,146 +0,0 @@
-package com.uva.monolith.services.hotels.controllers;
-
-import java.util.List;
-import java.util.Map;
-import java.util.Optional;
-import java.time.LocalDate;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.http.HttpStatus;
-import org.springframework.http.ResponseEntity;
-import org.springframework.transaction.annotation.Transactional;
-import org.springframework.web.bind.annotation.*;
-
-import com.uva.monolith.exceptions.HotelNotFoundException;
-import com.uva.monolith.exceptions.InvalidDateRangeException;
-import com.uva.monolith.exceptions.InvalidRequestException;
-import com.uva.monolith.services.bookings.repositories.BookingRepository;
-import com.uva.monolith.services.hotels.models.Hotel;
-import com.uva.monolith.services.hotels.models.Room;
-import com.uva.monolith.services.hotels.repositories.HotelRepository;
-import com.uva.monolith.services.hotels.repositories.RoomRepository;
-import com.uva.monolith.services.users.models.HotelManager;
-import com.uva.monolith.services.users.repositories.HotelManagerRepository;
-
-@RestController
-@RequestMapping("hotels")
-@CrossOrigin(origins = "*")
-public class HotelController {
-    @Autowired
-    private HotelManagerRepository hotelManagerRepository;
-    private final HotelRepository hotelRepository;
-    private final RoomRepository roomRepository;
-    private final BookingRepository bookingRepository;
-
-    public HotelController(HotelRepository hotelRepository, RoomRepository roomRepository,
-            BookingRepository bookingRepository) {
-        this.hotelRepository = hotelRepository;
-        this.roomRepository = roomRepository;
-        this.bookingRepository = bookingRepository;
-    }
-
-    // Obtener todos los hoteles
-    @GetMapping
-    public List<Hotel> getAllHotels(
-            @RequestParam(required = false) Integer managerId,
-            @RequestParam(required = false) LocalDate start,
-            @RequestParam(required = false) LocalDate end) {
-        List<Hotel> hotels = (managerId != null)
-                ? hotelRepository.findAllByHotelManager(managerId)
-                : hotelRepository.findAll();
-        if (start != null && end != null) {
-            // Filtramos para los hoteles que
-            // tengan habitaciones disponibles para ese rango de fechas
-            System.out.println(start);
-            System.out.println(end);
-            hotels = hotels.stream().map(h -> {
-                if (h.getRooms().size() == 0)
-                    return h;
-                h.setRooms(roomRepository.findAvailableRoomsByHotelAndDates(h.getId(), start, end));
-                return h;
-            }).filter(h -> h.getRooms().size() >= 0).toList();
-        }
-        return hotels;
-    }
-
-    // Añadir un hotel con sus habitaciones
-    @PostMapping
-    public ResponseEntity<Hotel> addHotel(@RequestBody Hotel hotel) {
-        Optional<HotelManager> hm = hotelManagerRepository.findById(hotel.getHotelManager().getId());
-        if (!hm.isPresent()) {
-            return new ResponseEntity<>(HttpStatus.BAD_REQUEST);
-        }
-        hotel.setHotelManager(hm.get());
-        Hotel savedHotel = hotelRepository.save(hotel);
-        return new ResponseEntity<>(savedHotel, HttpStatus.CREATED);
-    }
-
-    // Obtener un hotel por su ID
-    @GetMapping("/{id}")
-    public Hotel getHotelById(@PathVariable int id) {
-        return hotelRepository.findById(id)
-                .orElseThrow(() -> new HotelNotFoundException(id));
-    }
-
-    // Borrar un hotel junto con sus habitaciones (borrado en cascada)
-    @DeleteMapping("/{id}")
-    @Transactional
-    public ResponseEntity<Void> deleteHotel(@PathVariable Integer id) {
-        Hotel target = hotelRepository.findById(id)
-                .orElseThrow(() -> new HotelNotFoundException(id));
-        bookingRepository.deleteAllByHotelId(id);
-        HotelManager hm = target.getHotelManager();
-        hm.getHotels().removeIf(h -> h.getId() == target.getId());
-        hotelManagerRepository.save(hm);
-        bookingRepository.flush();
-        hotelRepository.delete(target);
-        return new ResponseEntity<>(HttpStatus.NO_CONTENT);
-    }
-
-    // Obtener habitaciones de un hotel según disponibilidad y fechas
-    @GetMapping("/{hotelId}/rooms")
-    public ResponseEntity<List<Room>> getRoomsFromHotel(
-            @PathVariable int hotelId,
-            @RequestParam(required = false) LocalDate start,
-            @RequestParam(required = false) LocalDate end) {
-
-        List<Room> rooms;
-        if (start != null && end != null) {
-            if (!start.isBefore(end)) {
-                throw new InvalidDateRangeException("La fecha de inicio debe ser anterior a la fecha de fin");
-            }
-            rooms = roomRepository.findAvailableRoomsByHotelAndDates(hotelId, start, end);
-        } else {
-            rooms = roomRepository.findAllByHotelId(hotelId);
-        }
-        return new ResponseEntity<>(rooms, HttpStatus.OK);
-    }
-
-    // Actualizar disponibilidad de una habitación específica en un hotel
-    @PatchMapping("/{hotelId}/rooms/{roomId}")
-    public ResponseEntity<Room> updateRoomAvailability(
-            @PathVariable int hotelId,
-            @PathVariable int roomId,
-            @RequestBody Map<String, Boolean> body) {
-
-        if (!body.containsKey("available")) {
-            throw new InvalidRequestException("El campo 'available' es obligatorio");
-        }
-
-        Room targetRoom = roomRepository.findByIdAndHotelId(roomId, hotelId)
-                .orElseThrow(() -> new IllegalArgumentException("Habitación no encontrada"));
-
-        targetRoom.setAvailable(body.get("available"));
-        roomRepository.save(targetRoom);
-
-        return new ResponseEntity<>(targetRoom, HttpStatus.OK);
-    }
-
-    // Obtener los detalles de una habitación específica en un hotel
-    @GetMapping("/{hotelId}/rooms/{roomId}")
-    public Room getRoomByIdFromHotel(
-            @PathVariable int hotelId, @PathVariable int roomId) {
-        return roomRepository.findByIdAndHotelId(roomId, hotelId)
-                .orElseThrow(() -> new HotelNotFoundException(hotelId));
-    }
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/Hotel.java b/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/Hotel.java
deleted file mode 100644
index 21f5cec8b44f9fae1a566b7af92964d30b654546..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/Hotel.java
+++ /dev/null
@@ -1,96 +0,0 @@
-package com.uva.monolith.services.hotels.models;
-
-import java.util.List;
-
-import com.uva.monolith.services.users.models.HotelManager;
-
-import jakarta.persistence.Basic;
-import jakarta.persistence.CascadeType;
-import jakarta.persistence.Entity;
-import jakarta.persistence.FetchType;
-import jakarta.persistence.GeneratedValue;
-import jakarta.persistence.GenerationType;
-import jakarta.persistence.Id;
-import jakarta.persistence.JoinColumn;
-import jakarta.persistence.ManyToOne;
-import jakarta.persistence.OneToMany;
-import jakarta.persistence.OneToOne;
-import jakarta.persistence.Table;
-
-@Entity
-@Table(name = "hotels")
-// @JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class,
-// property = "id")
-public class Hotel {
-
-  @Id
-  @GeneratedValue(strategy = GenerationType.IDENTITY)
-  @Basic(optional = false)
-  private int id;
-
-  @Basic(optional = false)
-  private String name;
-
-  @JoinColumn(name = "address_id", referencedColumnName = "id")
-  @OneToOne(optional = false, cascade = CascadeType.ALL, fetch = FetchType.EAGER)
-  private Address address;
-
-  @OneToMany(mappedBy = "hotel", fetch = FetchType.EAGER, cascade = CascadeType.ALL)
-  private List<Room> rooms;
-
-  @ManyToOne(optional = false)
-  @JoinColumn(name = "hotel_manager", referencedColumnName = "id")
-  private HotelManager hotelManager;
-
-  public Hotel() {
-  }
-
-  public Hotel(int id, String name, Address address, List<Room> rooms, HotelManager hotelManager) {
-    setId(id);
-    setName(name);
-    setAddress(address);
-    setRooms(rooms);
-    setHotelManager(hotelManager);
-  }
-
-  public int getId() {
-    return this.id;
-  }
-
-  public void setId(int id) {
-    this.id = id;
-  }
-
-  public String getName() {
-    return this.name;
-  }
-
-  public void setName(String name) {
-    this.name = name;
-  }
-
-  public Address getAddress() {
-    return this.address;
-  }
-
-  public void setAddress(Address address) {
-    this.address = address;
-  }
-
-  public List<Room> getRooms() {
-    return this.rooms;
-  }
-
-  public void setRooms(List<Room> rooms) {
-    this.rooms = rooms;
-    rooms.forEach(room -> room.setHotel(this));
-  }
-
-  public void setHotelManager(HotelManager hotelManager) {
-    this.hotelManager = hotelManager;
-  }
-
-  public HotelManager getHotelManager() {
-    return hotelManager;
-  }
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/Room.java b/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/Room.java
deleted file mode 100644
index 72a6a728f729dc7b93b727606172de7cbe385ebb..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/Room.java
+++ /dev/null
@@ -1,104 +0,0 @@
-package com.uva.monolith.services.hotels.models;
-
-import java.util.List;
-
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.uva.monolith.services.bookings.models.Booking;
-
-import jakarta.persistence.Basic;
-import jakarta.persistence.CascadeType;
-import jakarta.persistence.Column;
-import jakarta.persistence.Entity;
-import jakarta.persistence.FetchType;
-import jakarta.persistence.GeneratedValue;
-import jakarta.persistence.GenerationType;
-import jakarta.persistence.Id;
-import jakarta.persistence.JoinColumn;
-import jakarta.persistence.ManyToOne;
-import jakarta.persistence.OneToMany;
-import jakarta.persistence.Table;
-
-@Entity
-@Table(name = "rooms")
-// @JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class,
-// property = "id")
-public class Room {
-    @Id
-    @GeneratedValue(strategy = GenerationType.IDENTITY)
-    @Basic(optional = false)
-    private int id;
-
-    @ManyToOne
-    @JoinColumn(name = "hotel_id", referencedColumnName = "id")
-    @JsonIgnore
-    private Hotel hotel;
-    @Column(name = "room_number", nullable = false)
-    private String roomNumber;
-    @Column(name = "type", nullable = false)
-    private RoomType type;
-    @Column(name = "available", nullable = false)
-    private boolean available;
-    @JsonIgnore
-    @OneToMany(mappedBy = "roomId", fetch = FetchType.EAGER, cascade = CascadeType.ALL)
-    private List<Booking> bookings;
-
-    public Room() {
-    }
-
-    public Room(int id, Hotel hotelId, String roomNumber, RoomType type, boolean available, List<Booking> bookings) {
-        this.id = id;
-        this.hotel = hotelId;
-        this.roomNumber = roomNumber;
-        this.type = type;
-        this.available = available;
-        this.bookings = bookings;
-    }
-
-    public void setId(int id) {
-        this.id = id;
-    }
-
-    public int getId() {
-        return this.id;
-    }
-
-    public void setHotel(Hotel hotelId) {
-        this.hotel = hotelId;
-    }
-
-    public Hotel getHotel() {
-        return this.hotel;
-    }
-
-    public void setRoomNumber(String roomNumber) {
-        this.roomNumber = roomNumber;
-    }
-
-    public String getRoomNumber() {
-        return this.roomNumber;
-    }
-
-    public void setType(RoomType type) {
-        this.type = type;
-    }
-
-    public RoomType getType() {
-        return this.type;
-    }
-
-    public void setAvailable(boolean available) {
-        this.available = available;
-    }
-
-    public boolean isAvailable() {
-        return this.available;
-    }
-
-    public List<Booking> getBookings() {
-        return this.bookings;
-    }
-
-    public void setBookings(List<Booking> bookings) {
-        this.bookings = bookings;
-    }
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/repositories/HotelRepository.java b/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/repositories/HotelRepository.java
deleted file mode 100644
index eddb6640a275284cb70bde60a29afd33039ba454..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/repositories/HotelRepository.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.uva.monolith.services.hotels.repositories;
-
-import java.util.List;
-
-import org.springframework.data.jpa.repository.JpaRepository;
-import org.springframework.data.jpa.repository.Query;
-
-import com.uva.monolith.services.hotels.models.Hotel;
-
-public interface HotelRepository extends JpaRepository<Hotel, Integer> {
-    @Query("SELECT h FROM Hotel h WHERE h.hotelManager.id = ?1")
-    List<Hotel> findAllByHotelManager(Integer hotelManager);
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/repositories/RoomRepository.java b/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/repositories/RoomRepository.java
deleted file mode 100644
index 15cc3d370129e0753b9ac9b1eb24136c93bf5405..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/repositories/RoomRepository.java
+++ /dev/null
@@ -1,36 +0,0 @@
-package com.uva.monolith.services.hotels.repositories;
-
-import org.springframework.data.jpa.repository.JpaRepository;
-import org.springframework.data.jpa.repository.Query;
-
-import com.uva.monolith.services.hotels.models.Room;
-
-import java.time.LocalDate;
-import java.util.List;
-import java.util.Optional;
-
-public interface RoomRepository extends JpaRepository<Room, Integer> {
-
-    Optional<Room> findByIdAndHotelId(int id, int hotelId);
-
-    // Encontrar todas las habitaciones de un hotel
-    List<Room> findAllByHotelId(int hotelId);
-
-    // Encontrar habitaciones disponibles de un hotel en un rango de fechas
-    @Query("""
-                SELECT r FROM Room r
-                WHERE r.hotel.id = ?1
-                AND r.available = true
-                AND NOT EXISTS (
-                    SELECT b FROM Booking b
-                    WHERE b.roomId.id = r.id
-                    AND (
-                        b.endDate >= ?2
-                        OR
-                        ?3 >= b.startDate
-                    )
-                )
-            """)
-    List<Room> findAvailableRoomsByHotelAndDates(
-            int hotelId, LocalDate startDate, LocalDate endDate);
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/controllers/UserController.java b/java/roomBooking/src/main/java/com/uva/monolith/services/users/controllers/UserController.java
deleted file mode 100644
index 070fb5772a4f49f622617abf7d55958f1b6007c8..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/controllers/UserController.java
+++ /dev/null
@@ -1,112 +0,0 @@
-package com.uva.monolith.services.users.controllers;
-
-import java.util.List;
-import java.util.Map;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.http.HttpStatus;
-import org.springframework.http.ResponseEntity;
-import org.springframework.web.bind.annotation.CrossOrigin;
-import org.springframework.web.bind.annotation.DeleteMapping;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PatchMapping;
-import org.springframework.web.bind.annotation.PathVariable;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.PutMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RequestParam;
-import org.springframework.web.bind.annotation.RestController;
-import org.springframework.web.client.HttpClientErrorException;
-
-import com.uva.monolith.services.users.models.User;
-import com.uva.monolith.services.users.models.UserStatus;
-import com.uva.monolith.services.users.services.UserService;
-
-@RestController
-@RequestMapping("users")
-@CrossOrigin(origins = "*")
-public class UserController {
-
-  @Autowired
-  private UserService userService;
-
-  @GetMapping
-  public ResponseEntity<List<User>> getAllUsers() {
-    List<User> users = userService.getAllUsers();
-    return ResponseEntity.ok(users);
-  }
-
-  @GetMapping(params = { "email" })
-  public ResponseEntity<?> getUserByEmail(@RequestParam String email) {
-    try {
-      return ResponseEntity.ok(userService.getUserByEmail(email));
-    } catch (HttpClientErrorException e) {
-      if (e.getStatusCode() == HttpStatus.NOT_FOUND)
-        return new ResponseEntity<String>(HttpStatus.NOT_FOUND);
-      throw e;
-    }
-  }
-
-  @PostMapping
-  public ResponseEntity<?> addUser(@RequestBody User user) {
-    userService.addUser(user);
-    return new ResponseEntity<>(HttpStatus.ACCEPTED);
-  }
-
-  @GetMapping("/{id}")
-  public ResponseEntity<?> getUserById(@PathVariable int id) {
-    return ResponseEntity.ok(userService.getUserById(id));
-  }
-
-  @PutMapping("/{id}")
-  public ResponseEntity<?> updateUserData(@PathVariable int id, @RequestBody Map<String, String> json) {
-    System.err.println(json.entrySet().size());
-    json.keySet().forEach(k -> System.err.println(k));
-    String name = json.get("name");
-    String email = json.get("email");
-    if (name == null || email == null) {
-      return new ResponseEntity<String>("Missing required fields", HttpStatus.BAD_REQUEST);
-    }
-    try {
-      User user = userService.updateUserData(id, name, email);
-      return new ResponseEntity<User>(user, HttpStatus.OK);
-    } catch (HttpClientErrorException e) {
-      if (e.getStatusCode() == HttpStatus.NOT_FOUND)
-        return new ResponseEntity<String>(HttpStatus.NOT_FOUND);
-      throw e;
-    }
-  }
-
-  @PatchMapping("/{id}")
-  public ResponseEntity<?> updateUserState(@PathVariable int id, @RequestBody Map<String, String> json) {
-
-    String strStatus = json.get("status");
-    if (strStatus == null) {
-      return new ResponseEntity<String>("Missing required fields", HttpStatus.BAD_REQUEST);
-    }
-    try {
-      UserStatus userStatus = UserStatus.valueOf(strStatus);
-      return ResponseEntity.ok(userService.updateUserStatus(id, userStatus));
-    } catch (IllegalArgumentException e) {
-      return new ResponseEntity<String>("Unknown user state", HttpStatus.BAD_REQUEST);
-    } catch (HttpClientErrorException e) {
-      if (e.getStatusCode() == HttpStatus.NOT_FOUND)
-        return new ResponseEntity<String>(HttpStatus.NOT_FOUND);
-      throw e;
-    }
-
-  }
-
-  @DeleteMapping("/{id}")
-  public ResponseEntity<?> deleteUser(@PathVariable Integer id) {
-    try {
-      return ResponseEntity.ok(userService.deleteUserById(id));
-    } catch (HttpClientErrorException e) {
-      if (e.getStatusCode() == HttpStatus.NOT_FOUND)
-        return new ResponseEntity<String>(HttpStatus.NOT_FOUND);
-      throw e;
-    }
-  }
-
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/AuthResponse.java b/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/AuthResponse.java
deleted file mode 100644
index 8f334813beee8cb95caa275c66e46c9c539f2bd5..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/AuthResponse.java
+++ /dev/null
@@ -1,51 +0,0 @@
-package com.uva.monolith.services.users.models;
-
-public class AuthResponse {
-
-  private int id;
-  private String username;
-  private String email;
-  private String password;
-  private UserRol rol;
-
-  public int getId() {
-    return this.id;
-  }
-
-  public void setId(int id) {
-    this.id = id;
-  }
-
-  public String getUsername() {
-    return this.username;
-  }
-
-  public void setUsername(String username) {
-    this.username = username;
-  }
-
-  public String getEmail() {
-    return this.email;
-  }
-
-  public void setEmail(String email) {
-    this.email = email;
-  }
-
-  public String getPassword() {
-    return this.password;
-  }
-
-  public void setPassword(String password) {
-    this.password = password;
-  }
-
-  public UserRol getRol() {
-    return this.rol;
-  }
-
-  public void setRol(UserRol rol) {
-    this.rol = rol;
-  }
-
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/Client.java b/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/Client.java
deleted file mode 100644
index e106ecd3789a0237602e3194feacab7ddcbf4dfd..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/Client.java
+++ /dev/null
@@ -1,65 +0,0 @@
-package com.uva.monolith.services.users.models;
-
-import java.time.LocalDate;
-import java.util.ArrayList;
-import java.util.List;
-
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.uva.monolith.services.bookings.models.Booking;
-
-import jakarta.persistence.Basic;
-import jakarta.persistence.CascadeType;
-import jakarta.persistence.Column;
-import jakarta.persistence.Entity;
-import jakarta.persistence.EnumType;
-import jakarta.persistence.Enumerated;
-import jakarta.persistence.FetchType;
-import jakarta.persistence.OneToMany;
-import jakarta.persistence.Table;
-
-@Entity
-@Table(name = "user_client")
-public class Client extends User {
-
-  @Basic(optional = false)
-  @Column(nullable = false)
-  @Enumerated(EnumType.STRING)
-  private UserStatus status;
-
-  @JsonIgnore
-  @OneToMany(mappedBy = "userId", fetch = FetchType.EAGER, cascade = CascadeType.ALL)
-  private List<Booking> bookings;
-
-  public Client() {
-    super();
-    bookings = new ArrayList<>();
-    status = UserStatus.NO_BOOKINGS;
-  }
-
-  public Client(int id, String name, String email, String password, UserStatus status,
-      List<Booking> bookings) {
-    super(id, name, email, password, UserRol.CLIENT);
-    setStatus(status);
-    setBookings(bookings);
-  }
-
-  public UserStatus getStatus() {
-    if (getBookings() == null || getBookings().isEmpty())
-      return UserStatus.NO_BOOKINGS;
-    boolean activeBookings = getBookings().stream()
-        .anyMatch(booking -> !booking.getEndDate().isBefore(LocalDate.now())); // reserva >= ahora
-    return activeBookings ? UserStatus.WITH_ACTIVE_BOOKINGS : UserStatus.WITH_INACTIVE_BOOKINGS;
-  }
-
-  public void setStatus(UserStatus status) {
-    this.status = status;
-  }
-
-  public List<Booking> getBookings() {
-    return this.bookings;
-  }
-
-  public void setBookings(List<Booking> bookings) {
-    this.bookings = bookings;
-  }
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/HotelManager.java b/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/HotelManager.java
deleted file mode 100644
index 0e6f4b0aafa35ab8b23d202814c1fabefdcf86ed..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/HotelManager.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package com.uva.monolith.services.users.models;
-
-import java.util.ArrayList;
-import java.util.List;
-import com.fasterxml.jackson.annotation.JsonIgnore;
-import com.uva.monolith.services.hotels.models.Hotel;
-import jakarta.persistence.CascadeType;
-import jakarta.persistence.Entity;
-import jakarta.persistence.FetchType;
-import jakarta.persistence.OneToMany;
-import jakarta.persistence.Table;
-
-@Entity
-@Table(name = "hotel_manager_user")
-public class HotelManager extends User {
-
-  @JsonIgnore
-  @OneToMany(mappedBy = "hotelManager", fetch = FetchType.EAGER, cascade = CascadeType.ALL)
-  private List<Hotel> hotels;
-
-  public HotelManager() {
-    super();
-    hotels = new ArrayList<>();
-  }
-
-  public HotelManager(int id, String name, String email, String password, List<Hotel> hotels) {
-    super(id, name, email, password, UserRol.HOTEL_ADMIN);
-    setHotels(hotels);
-  }
-
-  public List<Hotel> getHotels() {
-    return this.hotels;
-  }
-
-  public void setHotels(List<Hotel> hotels) {
-    this.hotels = hotels;
-  }
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/User.java b/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/User.java
deleted file mode 100644
index 45decd686b3972058eb920f6c2e07cd4293f1e05..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/User.java
+++ /dev/null
@@ -1,95 +0,0 @@
-package com.uva.monolith.services.users.models;
-
-import com.fasterxml.jackson.annotation.JsonIgnore;
-
-import jakarta.persistence.Basic;
-import jakarta.persistence.Column;
-import jakarta.persistence.Entity;
-import jakarta.persistence.EnumType;
-import jakarta.persistence.Enumerated;
-import jakarta.persistence.GeneratedValue;
-import jakarta.persistence.GenerationType;
-import jakarta.persistence.Id;
-import jakarta.persistence.Inheritance;
-import jakarta.persistence.InheritanceType;
-import jakarta.persistence.Table;
-
-@Entity
-@Inheritance(strategy = InheritanceType.JOINED)
-@Table(name = "users")
-public class User {
-
-  @Id
-  @GeneratedValue(strategy = GenerationType.IDENTITY)
-  @Basic(optional = false)
-  @Column(nullable = false)
-  private int id;
-
-  @Basic(optional = false)
-  @Column(nullable = false)
-  private String name;
-
-  @Basic(optional = false)
-  @Column(nullable = false, unique = true)
-  private String email;
-
-  @JsonIgnore
-  @Basic(optional = false)
-  @Column(nullable = false)
-  private String password;
-
-  @Basic(optional = false)
-  @Column(nullable = false)
-  @Enumerated(EnumType.STRING)
-  private UserRol rol = UserRol.CLIENT;
-
-  public User() {
-  }
-
-  public User(int id, String name, String email, String password, UserRol rol) {
-    setId(id);
-    setName(name);
-    setEmail(email);
-    setRol(rol);
-  }
-
-  public int getId() {
-    return this.id;
-  }
-
-  public void setId(int id) {
-    this.id = id;
-  }
-
-  public String getName() {
-    return this.name;
-  }
-
-  public void setName(String name) {
-    this.name = name;
-  }
-
-  public String getEmail() {
-    return this.email;
-  }
-
-  public void setEmail(String email) {
-    this.email = email;
-  }
-
-  public String getPassword() {
-    return password;
-  }
-
-  public void setPassword(String rawPassword) {
-    this.password = rawPassword;
-  }
-
-  public UserRol getRol() {
-    return this.rol;
-  }
-
-  public void setRol(UserRol rol) {
-    this.rol = rol;
-  }
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/UserRol.java b/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/UserRol.java
deleted file mode 100644
index f408ba5ef9d34d96c32d3c42a6c2c51b1c6f22b1..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/UserRol.java
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.uva.monolith.services.users.models;
-
-public enum UserRol {
-  ADMIN, HOTEL_ADMIN, CLIENT
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/UserStatus.java b/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/UserStatus.java
deleted file mode 100644
index 362b8688260d4c13dc4a8eae205411c9d5533d79..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/models/UserStatus.java
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.uva.monolith.services.users.models;
-
-public enum UserStatus {
-  NO_BOOKINGS, WITH_ACTIVE_BOOKINGS, WITH_INACTIVE_BOOKINGS;
-}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/repositories/ClientRepository.java b/java/roomBooking/src/main/java/com/uva/monolith/services/users/repositories/ClientRepository.java
deleted file mode 100644
index 1c1b46fbe665075b8f817367ff14ee65cf69ff76..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/repositories/ClientRepository.java
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.uva.monolith.services.users.repositories;
-
-import java.util.Optional;
-import org.springframework.data.jpa.repository.JpaRepository;
-
-import com.uva.monolith.services.users.models.Client;
-
-public interface ClientRepository extends JpaRepository<Client, Integer> {
-  Optional<Client> findByEmail(String email);
-}
\ No newline at end of file
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/repositories/HotelManagerRepository.java b/java/roomBooking/src/main/java/com/uva/monolith/services/users/repositories/HotelManagerRepository.java
deleted file mode 100644
index 092a251b199fdecd80a2654fc3e6c96d1b7eb7f4..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/repositories/HotelManagerRepository.java
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.uva.monolith.services.users.repositories;
-
-import java.util.Optional;
-import org.springframework.data.jpa.repository.JpaRepository;
-
-import com.uva.monolith.services.users.models.HotelManager;
-
-public interface HotelManagerRepository extends JpaRepository<HotelManager, Integer> {
-  Optional<HotelManager> findByEmail(String email);
-}
\ No newline at end of file
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/services/UserService.java b/java/roomBooking/src/main/java/com/uva/monolith/services/users/services/UserService.java
deleted file mode 100644
index 193d736853b1f0d84ff86a4b24cfd0f8db52172d..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/services/UserService.java
+++ /dev/null
@@ -1,107 +0,0 @@
-package com.uva.monolith.services.users.services;
-
-import java.time.LocalDate;
-import java.util.List;
-import java.util.Optional;
-
-import org.springframework.beans.BeanUtils;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.http.HttpStatus;
-import org.springframework.stereotype.Service;
-import org.springframework.web.client.HttpClientErrorException;
-
-import com.uva.monolith.services.users.models.AuthResponse;
-import com.uva.monolith.services.users.models.Client;
-import com.uva.monolith.services.users.models.User;
-import com.uva.monolith.services.users.models.UserStatus;
-import com.uva.monolith.services.users.repositories.ClientRepository;
-import com.uva.monolith.services.users.repositories.UserRepository;
-
-@Service
-public class UserService {
-
-  @Autowired
-  private UserRepository userRepository;
-
-  @Autowired
-  private ClientRepository clientRepository;
-
-  public List<User> getAllUsers() {
-    return userRepository.findAll();
-  }
-
-  private User assertUser(Optional<? extends User> opUser) {
-    return opUser.orElseThrow(() -> new HttpClientErrorException(HttpStatus.NOT_FOUND));
-  }
-
-  public User getUserById(int id) {
-    return assertUser(userRepository.findById(id));
-  }
-
-  public AuthResponse getUserByEmail(String email) {
-    User u = assertUser(userRepository.findByEmail(email));
-    AuthResponse auth = new AuthResponse();
-    BeanUtils.copyProperties(u, auth);
-    auth.setUsername(u.getName());
-    return auth;
-  }
-
-  public User addUser(User user) {
-    // Actualmente está en el servicio AUTH
-    // TODO adaptar adecuadamente
-    throw new HttpClientErrorException(HttpStatus.MOVED_PERMANENTLY, "servicio actual en http://localhost:8101/login");
-    // user.setStatus(UserStatus.NO_BOOKINGS);
-    // if (user.getRol() == null) // Rol por defecto
-    // user.setRol(UserRol.CONSUMER);
-    // // Guardamos
-    // return userRepository.save(user);
-  }
-
-  public User updateUserData(int id, String name, String email) {
-    User user = getUserById(id);
-    user.setName(name);
-    user.setEmail(email);
-    return userRepository.save(user);
-  }
-
-  public User updateUserStatus(int id, UserStatus status) {
-
-    Client user = (Client) assertUser(clientRepository.findById(id));
-
-    boolean activeBookings = user.getBookings().stream()
-        .anyMatch(booking -> !booking.getEndDate().isBefore(LocalDate.now())); // reserva >= ahora
-    boolean inactiveBookings = user.getBookings().stream()
-        .anyMatch(booking -> booking.getStartDate().isBefore(LocalDate.now())); // reserva < ahora
-
-    switch (status) {
-      case NO_BOOKINGS:
-        if (!user.getBookings().isEmpty())
-          throw new IllegalArgumentException("Invalid State: The user has at least one booking");
-        break;
-      case WITH_ACTIVE_BOOKINGS:
-        if (user.getBookings().isEmpty())
-          throw new IllegalArgumentException("Invalid State: The user don't has bookings");
-        if (!activeBookings)
-          throw new IllegalArgumentException("Invalid State: The user don't has active bookings");
-        break;
-      case WITH_INACTIVE_BOOKINGS:
-        if (user.getBookings().isEmpty())
-          throw new IllegalArgumentException("Invalid State: The user don't has bookings");
-        if (!inactiveBookings)
-          throw new IllegalArgumentException("Invalid State: The user don't has inactive bookings");
-        break;
-      default:
-        break;
-    }
-    user.setStatus(status);
-    return userRepository.save(user);
-  }
-
-  public User deleteUserById(int id) {
-    User user = getUserById(id);
-    // TODO eliminar reservas de usuario ahora mismo no por el modo cascada pero a
-    // futuro sí, después de la disgregación en microservicios
-    userRepository.deleteById(id);
-    return user;
-  }
-}
diff --git a/java/roomBooking/src/main/resources/application.properties b/java/roomBooking/src/main/resources/application.properties
deleted file mode 100644
index e9a1304c8364b789ce008c161df0f98daf1238a9..0000000000000000000000000000000000000000
--- a/java/roomBooking/src/main/resources/application.properties
+++ /dev/null
@@ -1,11 +0,0 @@
-spring.application.name=roomBooking
-spring.jpa.hibernate.ddl-auto=update
-spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect
-spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3306/RoomsBooking?createDatabaseIfNotExist=true
-spring.datasource.username=user
-spring.datasource.password=password
-spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
-
-# Usar esto para alternar entre las exposición del room repository ya que no es necesario su uso pero por defecto, al no cubrir su ruta, se expone
-# spring.data.rest.base-path=false
-external.services.auth.host=localhost:8101
\ No newline at end of file
diff --git a/java/services/auth/pom.xml b/java/services/auth/pom.xml
index 19b9923d7ad2a8b056e02681630234471de0a9d3..9a3d7e2c39442c234c997f3e514a5238f1e1ceeb 100644
--- a/java/services/auth/pom.xml
+++ b/java/services/auth/pom.xml
@@ -12,7 +12,7 @@
 	<artifactId>authentication</artifactId>
 	<version>0.0.1-SNAPSHOT</version>
 	<name>authentication</name>
-	<description>Authentication microservicio</description>
+	<description>Authentication rest microservice</description>
 	<url/>
 	<licenses>
 		<license/>
@@ -30,20 +30,10 @@
 		<java.version>17</java.version>
 	</properties>
 	<dependencies>
-		<dependency>
-			<groupId>org.springframework.boot</groupId>
-			<artifactId>spring-boot-starter-data-jpa</artifactId>
-		</dependency>
 		<dependency>
 			<groupId>org.springframework.boot</groupId>
 			<artifactId>spring-boot-starter-data-rest</artifactId>
 		</dependency>
-
-		<dependency>
-			<groupId>com.mysql</groupId>
-			<artifactId>mysql-connector-j</artifactId>
-			<scope>runtime</scope>
-		</dependency>
 		<dependency>
 			<groupId>org.springframework.boot</groupId>
 			<artifactId>spring-boot-starter-test</artifactId>
@@ -56,19 +46,16 @@
 			<version>6.4.1</version>
 		</dependency>
 		<dependency>
-			<groupId>io.jsonwebtoken</groupId>
-			<artifactId>jjwt-api</artifactId>
-			<version>0.11.5</version>
-		</dependency>
-		<dependency>
-			<groupId>io.jsonwebtoken</groupId>
-			<artifactId>jjwt-impl</artifactId>
-			<version>0.11.5</version>
+			<groupId>com.auth0</groupId>
+			<artifactId>java-jwt</artifactId>
+			<version>4.4.0</version>
 		</dependency>
+		<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
 		<dependency>
-			<groupId>io.jsonwebtoken</groupId>
-			<artifactId>jjwt-jackson</artifactId>
-			<version>0.11.5</version>
+			<groupId>org.projectlombok</groupId>
+			<artifactId>lombok</artifactId>
+			<version>1.18.36</version>
+			<scope>provided</scope>
 		</dependency>
 	</dependencies>
 
diff --git a/java/services/auth/src/main/java/com/uva/authentication/AuthenticationApplication.java b/java/services/auth/src/main/java/com/uva/api/auth/AuthenticationApplication.java
similarity index 90%
rename from java/services/auth/src/main/java/com/uva/authentication/AuthenticationApplication.java
rename to java/services/auth/src/main/java/com/uva/api/auth/AuthenticationApplication.java
index 7b4cb3cd886885343249e97189a911ef42014655..58a58d1a4fe6d2257e1086d9d8b3205e3dec01df 100644
--- a/java/services/auth/src/main/java/com/uva/authentication/AuthenticationApplication.java
+++ b/java/services/auth/src/main/java/com/uva/api/auth/AuthenticationApplication.java
@@ -1,4 +1,4 @@
-package com.uva.authentication;
+package com.uva.api.auth;
 
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/api/UserAPI.java b/java/services/auth/src/main/java/com/uva/api/auth/api/UserAPI.java
new file mode 100644
index 0000000000000000000000000000000000000000..05c47753414bb639e114741d4eb458b0026c7874
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/api/UserAPI.java
@@ -0,0 +1,91 @@
+package com.uva.api.auth.api;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.HttpClientErrorException;
+import org.springframework.web.client.RestTemplate;
+
+import com.uva.api.auth.models.auth.RegisterRequest;
+import com.uva.api.auth.models.remote.User;
+
+@Component
+public class UserAPI {
+
+  private final RestTemplate restTemplate;
+
+  public UserAPI(RestTemplate restTemplate) {
+    this.restTemplate = restTemplate;
+  }
+
+  @Value("${services.external.users.url}")
+  private String USER_API_URL;
+
+  /**
+   * Get the user by email
+   *
+   * @param email
+   * @return User or null if not exists
+   * @throws HttpClientErrorException
+   */
+  public User getUserByEmail(String email) {
+    String url = USER_API_URL + "?email={email}";
+
+    try {
+      ResponseEntity<User> userResponse = restTemplate.getForEntity(url, User.class, email);
+      return userResponse.getBody();
+    } catch (HttpClientErrorException e) {
+      if (e.getStatusCode() != HttpStatus.NOT_FOUND)
+        throw e;
+      return null;
+    }
+  }
+
+  /**
+   * Register the user if isn't register yet
+   *
+   * @param registerRequest
+   * @return register result
+   * @throws HttpClientErrorException
+   * @throws HttpClientErrorException
+   */
+  public User registerUser(RegisterRequest registerRequest) {
+    String url = USER_API_URL;
+    try {
+      ResponseEntity<User> userResponse = restTemplate.postForEntity(url, registerRequest, User.class);
+      return userResponse.getBody();
+    } catch (HttpClientErrorException ex) {
+      if (ex.getStatusCode() == HttpStatus.BAD_REQUEST)
+        throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Register failed");
+      throw ex;
+    }
+  }
+
+  /**
+   * Update the user's password
+   * 
+   * @param user
+   * @param hashPass
+   */
+  public void changePassword(User user, String hashPass) {
+    String url = USER_API_URL + "/{id}/password";
+
+    int id = user.getId();
+
+    Map<String, Object> body = new HashMap<>();
+    body.put("password", hashPass);
+
+    restTemplate.put(url, body, id);
+  }
+
+  public void deleteUser(int id) {
+    String url = USER_API_URL + "/{id}";
+
+    restTemplate.delete(url, id);
+  }
+
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/config/RestTemplateConfig.java b/java/services/auth/src/main/java/com/uva/api/auth/config/RestTemplateConfig.java
new file mode 100644
index 0000000000000000000000000000000000000000..ac5b003b28da4a78e8088e5817258cef07c56175
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/config/RestTemplateConfig.java
@@ -0,0 +1,18 @@
+package com.uva.api.auth.config;
+
+import java.util.List;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.web.client.RestTemplate;
+
+@Configuration
+public class RestTemplateConfig {
+
+    @Bean
+    RestTemplate restTemplate(RestTemplateInterceptor interceptor) {
+        RestTemplate restTemplate = new RestTemplate();
+        restTemplate.setInterceptors(List.of(interceptor));
+        return restTemplate;
+    }
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/config/RestTemplateInterceptor.java b/java/services/auth/src/main/java/com/uva/api/auth/config/RestTemplateInterceptor.java
new file mode 100644
index 0000000000000000000000000000000000000000..de9441ae228c86aefaf651969dd20e977b4ba996
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/config/RestTemplateInterceptor.java
@@ -0,0 +1,31 @@
+package com.uva.api.auth.config;
+
+import org.springframework.http.HttpRequest;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.client.ClientHttpRequestExecution;
+import org.springframework.http.client.ClientHttpRequestInterceptor;
+import org.springframework.http.client.ClientHttpResponse;
+import org.springframework.stereotype.Component;
+
+import com.uva.api.auth.utils.JwtUtil;
+
+import java.io.IOException;
+
+@Component
+public class RestTemplateInterceptor implements ClientHttpRequestInterceptor {
+
+  @Autowired
+  private JwtUtil jwtUtil;
+
+  @Override
+  public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution)
+      throws IOException {
+
+    String token = jwtUtil.getOwnInternalToken();
+
+    request.getHeaders().add("Authorization", "Bearer " + token);
+
+    // Continuar con la solicitud
+    return execution.execute(request, body);
+  }
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/controllers/AuthController.java b/java/services/auth/src/main/java/com/uva/api/auth/controllers/AuthController.java
new file mode 100644
index 0000000000000000000000000000000000000000..1a40686ce6c559392b05d6365d0c770b974d37bf
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/controllers/AuthController.java
@@ -0,0 +1,63 @@
+package com.uva.api.auth.controllers;
+
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.bind.annotation.*;
+
+import com.uva.api.auth.models.auth.LoginRequest;
+import com.uva.api.auth.models.auth.RegisterRequest;
+import com.uva.api.auth.services.AuthService;
+
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+
+@RestController
+@RequestMapping("auth")
+@CrossOrigin(origins = "*")
+public class AuthController {
+
+    @Autowired
+    private AuthService authService;
+
+    @PostMapping("/login")
+    public ResponseEntity<?> login(@RequestBody LoginRequest loginRequest) {
+        return authService.login(loginRequest);
+    }
+
+    @PostMapping("/register")
+    public ResponseEntity<?> register(@RequestBody RegisterRequest registerRequest) {
+        return authService.register(registerRequest);
+    }
+
+    @PostMapping("/password")
+    public ResponseEntity<?> changePassword(@RequestBody Map<String, String> json,
+            @RequestHeader(value = "Authorization", required = true) String authorization) {
+        if (authorization == null || !authorization.startsWith("Bearer "))
+            return new ResponseEntity<>(HttpStatus.FORBIDDEN);
+
+        String token = authorization.substring(7);
+
+        String email = json.get("email");
+        String actualPassword = json.get("password");
+        String newPassword = json.get("newPassword");
+
+        return authService.changePassword(token, email, actualPassword, newPassword);
+    }
+
+    @PostMapping("/delete/{id}")
+    public Object postMethodName(@PathVariable int id, @RequestBody Map<String, String> json,
+            @RequestHeader(value = "Authorization", required = true) String authorization) {
+        if (authorization == null || !authorization.startsWith("Bearer "))
+            return new ResponseEntity<>(HttpStatus.FORBIDDEN);
+
+        String token = authorization.substring(7);
+
+        String actualPassword = json.get("password");
+
+        return authService.deleteUser(token, id, actualPassword);
+    }
+
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/controllers/TokenController.java b/java/services/auth/src/main/java/com/uva/api/auth/controllers/TokenController.java
new file mode 100644
index 0000000000000000000000000000000000000000..c4a050504cf657f5664959776044e6ebe9903545
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/controllers/TokenController.java
@@ -0,0 +1,47 @@
+package com.uva.api.auth.controllers;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.fasterxml.jackson.databind.JsonNode;
+import com.uva.api.auth.models.jwt.JwtAuth;
+import com.uva.api.auth.services.TokenService;
+
+@RestController
+@RequestMapping("token")
+public class TokenController {
+
+  @Autowired
+  private TokenService tokenService;
+
+  @PostMapping("/validate")
+  public ResponseEntity<?> validateToken(@RequestBody JwtAuth tokenRequest) {
+    boolean isValid = tokenService.validateToken(tokenRequest.getToken());
+    if (isValid) {
+      return ResponseEntity.ok("Token is valid");
+    } else {
+      return new ResponseEntity<>("Token not valid or expired", HttpStatus.UNAUTHORIZED);
+    }
+  }
+
+  @PostMapping("/info")
+  public ResponseEntity<?> getTokenInfo(@RequestBody JwtAuth tokenRequest) {
+    return tokenService.getTokenInf(tokenRequest.getToken());
+  }
+
+  @PostMapping("/service")
+  public ResponseEntity<?> identifyService(@RequestBody JsonNode request) {
+    JsonNode name = request.get("service");
+
+    if (name == null)
+      return new ResponseEntity<>("Missing required fields", HttpStatus.BAD_REQUEST);
+
+    return tokenService.identifyService(name.asText());
+  }
+
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/exceptions/GlobalExceptionHandler.java b/java/services/auth/src/main/java/com/uva/api/auth/exceptions/GlobalExceptionHandler.java
new file mode 100644
index 0000000000000000000000000000000000000000..40ab68cf12ebbdabc2f8abf526907641ac458034
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/exceptions/GlobalExceptionHandler.java
@@ -0,0 +1,36 @@
+package com.uva.api.auth.exceptions;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.bind.annotation.ControllerAdvice;
+import org.springframework.web.bind.annotation.ExceptionHandler;
+import org.springframework.web.client.HttpClientErrorException;
+
+import java.time.LocalDateTime;
+import java.util.HashMap;
+import java.util.Map;
+
+@ControllerAdvice
+public class GlobalExceptionHandler {
+  @ExceptionHandler(HttpClientErrorException.class)
+  public ResponseEntity<Map<String, Object>> handleHttpClientErrorException(HttpClientErrorException ex) {
+    Map<String, Object> body = new HashMap<>();
+    body.put("timestamp", LocalDateTime.now());
+    body.put("message", ex.getMessage());
+
+    ex.printStackTrace(System.err);
+
+    return new ResponseEntity<>(body, ex.getStatusCode());
+  }
+
+  @ExceptionHandler(Exception.class)
+  public ResponseEntity<Map<String, Object>> handleGeneralException(Exception ex) {
+    Map<String, Object> body = new HashMap<>();
+    body.put("timestamp", LocalDateTime.now());
+    body.put("message", "An unexpected error occurred: " + ex.getMessage());
+
+    ex.printStackTrace(System.err);
+
+    return new ResponseEntity<>(body, HttpStatus.INTERNAL_SERVER_ERROR);
+  }
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/models/auth/LoginRequest.java b/java/services/auth/src/main/java/com/uva/api/auth/models/auth/LoginRequest.java
new file mode 100644
index 0000000000000000000000000000000000000000..5e5e6d4437956b5a489e3bbd4e9f19fb56671570
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/models/auth/LoginRequest.java
@@ -0,0 +1,17 @@
+package com.uva.api.auth.models.auth;
+
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+@Data
+@ToString
+@EqualsAndHashCode
+@NoArgsConstructor
+@AllArgsConstructor
+public class LoginRequest {
+  private String email;
+  private String password;
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/models/auth/RegisterRequest.java b/java/services/auth/src/main/java/com/uva/api/auth/models/auth/RegisterRequest.java
new file mode 100644
index 0000000000000000000000000000000000000000..55b71f22de9f3267217edce3b07fede715f8958f
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/models/auth/RegisterRequest.java
@@ -0,0 +1,17 @@
+package com.uva.api.auth.models.auth;
+
+import com.uva.api.auth.models.remote.UserRol;
+
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+@Data
+@ToString(callSuper = true)
+@EqualsAndHashCode(callSuper = true)
+@NoArgsConstructor
+public class RegisterRequest extends LoginRequest {
+  private UserRol rol;
+  private String name;
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/models/jwt/JwtAuth.java b/java/services/auth/src/main/java/com/uva/api/auth/models/jwt/JwtAuth.java
new file mode 100644
index 0000000000000000000000000000000000000000..2b48e39bdab1214bf2ff7147d2134c83cac104ac
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/models/jwt/JwtAuth.java
@@ -0,0 +1,16 @@
+package com.uva.api.auth.models.jwt;
+
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+
+@Getter
+@Setter
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+public class JwtAuth {
+  private String token;
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/models/jwt/JwtData.java b/java/services/auth/src/main/java/com/uva/api/auth/models/jwt/JwtData.java
new file mode 100644
index 0000000000000000000000000000000000000000..463b01198f93095a772809105367aa85b0acad66
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/models/jwt/JwtData.java
@@ -0,0 +1,71 @@
+package com.uva.api.auth.models.jwt;
+
+import java.lang.reflect.Field;
+import java.util.Date;
+
+import com.auth0.jwt.interfaces.Claim;
+import com.auth0.jwt.interfaces.DecodedJWT;
+import com.uva.api.auth.models.remote.UserRol;
+
+import lombok.Data;
+import lombok.Getter;
+import lombok.Setter;
+import lombok.ToString;
+
+@Getter
+@Setter
+@Data
+@ToString
+public class JwtData {
+  private Integer id;
+  private String name;
+  private String email;
+  private UserRol rol;
+  private String service;
+
+  private String subject;
+  private String audience;
+  private Long ttl;
+
+  private Date issuedAt;
+  private Date expiresAt;
+
+  public JwtData(DecodedJWT decoded, long ttl) {
+    for (Field field : this.getClass().getDeclaredFields()) {
+      field.setAccessible(true);
+
+      // Verificamos si el campo está en el mapa y asignamos el valor
+      Claim claim = decoded.getClaim(field.getName());
+      if (!claim.isNull()) {
+        String value = claim.asString();
+        try {
+          // Dependiendo del tipo de campo, asignamos el valor
+          if (field.getType() == Integer.class) {
+            field.set(this, claim.asInt());
+          } else if (field.getType() == String.class) {
+            field.set(this, claim.asString());
+          } else if (field.getType() == UserRol.class) {
+            if (value != null)
+              field.set(this, UserRol.valueOf(value));
+          }
+        } catch (IllegalAccessException e) {
+          e.printStackTrace();
+        }
+      }
+
+    }
+
+    if (decoded.getAudience() != null && !decoded.getAudience().isEmpty())
+      audience = decoded.getAudience().get(0);
+
+    this.ttl = ttl;
+    issuedAt = decoded.getIssuedAt();
+    expiresAt = decoded.getExpiresAt();
+
+    System.out.println("\nDECODED TOKEN: " + this + "\n");
+  }
+
+  public boolean isAdmin() {
+    return rol != null && rol == UserRol.ADMIN;
+  }
+}
\ No newline at end of file
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/models/remote/User.java b/java/services/auth/src/main/java/com/uva/api/auth/models/remote/User.java
new file mode 100644
index 0000000000000000000000000000000000000000..2e987d215d4554667367593495b1e65dc2d01591
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/models/remote/User.java
@@ -0,0 +1,25 @@
+package com.uva.api.auth.models.remote;
+
+import com.uva.api.auth.models.auth.RegisterRequest;
+
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+@Data
+@ToString(callSuper = true)
+@EqualsAndHashCode(callSuper = true)
+@NoArgsConstructor
+public class User extends RegisterRequest {
+  private int id;
+
+  public User(int id, String email, String password, String name, UserRol rol) {
+    super();
+    this.id = id;
+    setEmail(email);
+    setName(name);
+    setPassword(password);
+    setRol(rol);
+  }
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/models/remote/UserRol.java b/java/services/auth/src/main/java/com/uva/api/auth/models/remote/UserRol.java
new file mode 100644
index 0000000000000000000000000000000000000000..88df13615b669afcf7cad909136f4d229fcc3e80
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/models/remote/UserRol.java
@@ -0,0 +1,5 @@
+package com.uva.api.auth.models.remote;
+
+public enum UserRol {
+  ADMIN, MANAGER, CLIENT
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/services/AuthService.java b/java/services/auth/src/main/java/com/uva/api/auth/services/AuthService.java
new file mode 100644
index 0000000000000000000000000000000000000000..da9b897e4651e4da793d410683beb2831b608160
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/services/AuthService.java
@@ -0,0 +1,129 @@
+package com.uva.api.auth.services;
+
+import org.springframework.beans.BeanUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Service;
+import org.springframework.web.client.HttpClientErrorException;
+
+import com.uva.api.auth.api.UserAPI;
+import com.uva.api.auth.models.auth.LoginRequest;
+import com.uva.api.auth.models.auth.RegisterRequest;
+import com.uva.api.auth.models.jwt.JwtAuth;
+import com.uva.api.auth.models.jwt.JwtData;
+import com.uva.api.auth.models.remote.User;
+import com.uva.api.auth.utils.JwtUtil;
+import com.uva.api.auth.utils.SecurityUtils;
+
+@Service
+public class AuthService {
+
+  @Autowired
+  private JwtUtil jwtUtil;
+
+  @Autowired
+  private UserAPI userAPI;
+
+  private boolean authenticateUser(LoginRequest request, User user) {
+    return (user != null)
+        ? SecurityUtils.checkPassword(request.getPassword(), user.getPassword())
+        : false;
+  }
+
+  /**
+   * Log the user
+   * 
+   * @param loginRequest
+   * @return token for identify the user
+   * @throws HttpClientErrorException(FORBIDDEN) if the credentials are invalid
+   */
+  public ResponseEntity<?> login(LoginRequest loginRequest) {
+    User user = userAPI.getUserByEmail(loginRequest.getEmail());
+
+    if (!authenticateUser(loginRequest, user))
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN, "Invalid credentials");
+
+    String token = jwtUtil.generateToken(user);
+    return ResponseEntity.ok(new JwtAuth(token));
+  }
+
+  public ResponseEntity<?> register(RegisterRequest registerRequest) {
+    String plainTextPassword = registerRequest.getPassword();
+    // Ciframos la contraseña
+    String hashPass = SecurityUtils.encrypt(plainTextPassword);
+    registerRequest.setPassword(hashPass);
+    // Registramos el usuario
+    User user = userAPI.registerUser(registerRequest);
+    LoginRequest logReq = new LoginRequest();
+    BeanUtils.copyProperties(user, logReq);
+    // Recuperamos la contraseña y lo loggeamos
+    logReq.setPassword(plainTextPassword);
+    return login(logReq);
+  }
+
+  private boolean validStrings(String... args) {
+    for (String arg : args) {
+      if (arg == null || arg.isBlank())
+        return false;
+    }
+    return true;
+  }
+
+  private User getUser(String email, String password) {
+    return getUser(email, password, false);
+  }
+
+  private User getUser(String email, String password, boolean isAdmin) {
+    User user = userAPI.getUserByEmail(email);
+    boolean correctPassword = isAdmin || SecurityUtils.checkPassword(password, user.getPassword());
+    return correctPassword ? user : null;
+  }
+
+  public ResponseEntity<?> changePassword(String token, String email, String actualPass, String newPass) {
+    JwtData decoded = jwtUtil.decodeToken(token);
+    if (decoded == null)
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN);
+
+    User user = getUser(email, actualPass, decoded.isAdmin());
+
+    boolean changePasswordAllowed = decoded.isAdmin() || (user != null && validStrings(actualPass));
+
+    if (user != null && !validStrings(newPass))
+      throw new HttpClientErrorException(HttpStatus.BAD_REQUEST);
+
+    if (!changePasswordAllowed)
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN, "Invalid credentials");
+
+    // Actualizamos la nueva
+    String hashPass = SecurityUtils.encrypt(newPass);
+    userAPI.changePassword(user, hashPass);
+    // Hacemos un login con los nuevos datos
+    return login(new LoginRequest(email, newPass));
+  }
+
+  public ResponseEntity<?> deleteUser(String token, int id, String password) {
+    JwtData decoded = jwtUtil.decodeToken(token);
+    if (decoded == null)
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN);
+
+    boolean deleteAllowed = decoded.isAdmin();
+    if (!deleteAllowed) { // no admin
+      String email = decoded.getEmail();
+
+      User user = getUser(email, password);
+
+      if (user == null || !validStrings(password))
+        throw new HttpClientErrorException(HttpStatus.BAD_REQUEST);
+
+      // Verificamos si es el dueño del recurso
+      deleteAllowed = user.getId() == id;
+    }
+
+    if (!deleteAllowed)
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN, "Invalid credentials");
+
+    userAPI.deleteUser(id);
+    return new ResponseEntity<>(HttpStatus.ACCEPTED);
+  }
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/services/TokenService.java b/java/services/auth/src/main/java/com/uva/api/auth/services/TokenService.java
new file mode 100644
index 0000000000000000000000000000000000000000..522a396e01a004647363dc22e0ca653add969250
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/services/TokenService.java
@@ -0,0 +1,35 @@
+package com.uva.api.auth.services;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Service;
+
+import com.uva.api.auth.models.jwt.JwtAuth;
+import com.uva.api.auth.models.jwt.JwtData;
+import com.uva.api.auth.utils.JwtUtil;
+
+@Service
+public class TokenService {
+
+  @Autowired
+  private JwtUtil jwtUtil;
+
+  public boolean validateToken(String token) {
+    return jwtUtil.validate(token) != null;
+  }
+
+  public ResponseEntity<?> identifyService(String name) {
+    if (name == null)
+      return new ResponseEntity<>("Token has expire or is malformed", HttpStatus.FORBIDDEN);
+    String token = jwtUtil.generateInternalToken(name);
+    return ResponseEntity.ok(new JwtAuth(token));
+  }
+
+  public ResponseEntity<?> getTokenInf(String token) {
+    JwtData decoded = jwtUtil.decodeToken(token);
+    if (decoded == null)
+      return new ResponseEntity<>("Token has expire or is malformed", HttpStatus.FORBIDDEN);
+    return ResponseEntity.ok(decoded);
+  }
+}
diff --git a/java/services/auth/src/main/java/com/uva/api/auth/utils/JwtUtil.java b/java/services/auth/src/main/java/com/uva/api/auth/utils/JwtUtil.java
new file mode 100644
index 0000000000000000000000000000000000000000..f99023238b67aca0922169ee1138d8fb3b54e8b0
--- /dev/null
+++ b/java/services/auth/src/main/java/com/uva/api/auth/utils/JwtUtil.java
@@ -0,0 +1,119 @@
+package com.uva.api.auth.utils;
+
+import java.util.Date;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.http.HttpStatus;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.HttpClientErrorException;
+
+import com.auth0.jwt.JWT;
+import com.auth0.jwt.algorithms.Algorithm;
+import com.auth0.jwt.interfaces.DecodedJWT;
+import com.uva.api.auth.models.jwt.JwtData;
+import com.uva.api.auth.models.remote.User;
+
+import java.time.Instant;
+
+@Component
+public class JwtUtil {
+
+  @Value("${security.jwt.kid}")
+  private String kid;
+
+  @Value("${security.jwt.secret-key}")
+  private String secretKey;
+
+  @Value("${security.jwt.internal.expiration}")
+  private long intJwtExpiration;
+
+  @Value("${security.jwt.external.expiration}")
+  private long extJwtExpiration;
+
+  private String token;
+
+  @Value("${spring.application.name}")
+  private String service;
+
+  public String getOwnInternalToken() {
+
+    // Si no hay token, no es valido o quedan 10 seg para caducar se genera otro
+    if (token == null || validate(token) == null ||
+        decodeToken(token).getTtl() <= 10) {
+      token = generateInternalToken(service);
+    }
+
+    return token;
+
+  }
+
+  public String generateInternalToken(String service) {
+    String email = service.toLowerCase() + "@internal.com";
+    service = service.toUpperCase();
+    Algorithm algorithm = Algorithm.HMAC256(secretKey);
+
+    return JWT
+        .create()
+
+        .withKeyId(kid)
+        .withIssuedAt(new Date())
+        .withExpiresAt(new Date(System.currentTimeMillis() + intJwtExpiration * 1000))
+
+        .withSubject(service)
+        .withAudience("INTERNAL")
+
+        // DATA
+        .withClaim("service", service)
+        .withClaim("email", email)
+        // .withClaim("rol", "SERVICE")
+
+        .sign(algorithm);
+  }
+
+  public String generateToken(User user) {
+    Algorithm algorithm = Algorithm.HMAC256(secretKey);
+
+    return JWT
+        .create()
+
+        .withKeyId(kid)
+        .withIssuedAt(new Date())
+        .withExpiresAt(new Date(System.currentTimeMillis() + extJwtExpiration * 1000))
+
+        .withSubject(service)
+        .withAudience("EXTERNAL")
+
+        // DATA
+        .withClaim("id", user.getId())
+        .withClaim("name", user.getName())
+        .withClaim("email", user.getEmail())
+        .withClaim("rol", user.getRol().toString())
+
+        .sign(algorithm);
+  }
+
+  public DecodedJWT validate(String token) {
+    try {
+      return JWT.require(Algorithm.HMAC256(secretKey)).build().verify(token);
+    } catch (Exception e) {
+      return null;
+    }
+  }
+
+  public JwtData decodeToken(String token) {
+    DecodedJWT decoded = validate(token);
+    if (decoded == null)
+      return null;
+    return new JwtData(decoded, calculateTTL(decoded));
+  }
+
+  private long calculateTTL(DecodedJWT decodedJWT) {
+    if (decodedJWT == null)
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN);
+
+    long exp = decodedJWT.getExpiresAt().toInstant().getEpochSecond();
+    long now = Instant.now().getEpochSecond();
+
+    return exp - now;
+  }
+
+}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/utils/SecurityUtils.java b/java/services/auth/src/main/java/com/uva/api/auth/utils/SecurityUtils.java
similarity index 92%
rename from java/services/auth/src/main/java/com/uva/authentication/utils/SecurityUtils.java
rename to java/services/auth/src/main/java/com/uva/api/auth/utils/SecurityUtils.java
index 2df069eabbe53bdeaccbdbd58094bf8022ff35c7..20bda4a719f150f966ab80128bdade3c31fab398 100644
--- a/java/services/auth/src/main/java/com/uva/authentication/utils/SecurityUtils.java
+++ b/java/services/auth/src/main/java/com/uva/api/auth/utils/SecurityUtils.java
@@ -1,4 +1,4 @@
-package com.uva.authentication.utils;
+package com.uva.api.auth.utils;
 
 import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
 
@@ -14,5 +14,5 @@ public class SecurityUtils {
   public static boolean checkPassword(String rawPassword, String encodedPassword) {
     return encoder.matches(rawPassword, encodedPassword); // Comparar la contraseña con el hash
   }
-  
+
 }
diff --git a/java/services/auth/src/main/java/com/uva/authentication/api/UserAPI.java b/java/services/auth/src/main/java/com/uva/authentication/api/UserAPI.java
deleted file mode 100644
index d4aa44728a593f54275339d99c9e603b20b802e9..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/api/UserAPI.java
+++ /dev/null
@@ -1,74 +0,0 @@
-// TODO eliminar si realmente no necesitamos comunicar un servicio con otro
-package com.uva.authentication.api;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.http.HttpHeaders;
-import org.springframework.http.HttpStatus;
-import org.springframework.http.ResponseEntity;
-import org.springframework.stereotype.Component;
-import org.springframework.web.client.HttpClientErrorException;
-import org.springframework.web.client.RestTemplate;
-
-import com.uva.authentication.models.RegisterRequest;
-import com.uva.authentication.models.remote.User;
-import com.uva.authentication.models.remote.UserRol;
-import com.uva.authentication.utils.JwtUtil;
-
-@Component
-public class UserAPI {
-
-  @Autowired
-  private RestTemplate restTemplate;
-
-  @Value("${external.services.users.baseurl}")
-  private String USER_API_URL;
-
-  @Autowired
-  private JwtUtil jwtUtil;
-
-  private String token;
-  private final User USER = new User(-1, "admin", null, null, UserRol.ADMIN);
-
-  private String getAccessToken() {
-    if (token == null || token.isEmpty() || jwtUtil.isTokenValid(token, USER)) {
-      token = jwtUtil.generateToken(USER);
-    }
-    return token;
-  }
-
-  public User getUserByEmail(String email) {
-
-    // Implementación para acceder con autentificación
-    // String token = getAccessToken();
-    // HttpHeaders headers = new HttpHeaders();
-    // headers.set("Authorization", "Bearer " + token);
-    // HttpEntity<Void> entity = new HttpEntity<>(headers);
-
-    String url = USER_API_URL + "?email={" + email + "}";
-    try {
-      ResponseEntity<User> userResponse = restTemplate.getForEntity(url, User.class, email);
-      // restTemplate.exchange(url, HttpMethod.GET, entity, User.class);
-      return userResponse.getBody();
-    } catch (HttpClientErrorException e) {
-      if (e.getStatusCode() != HttpStatus.NOT_FOUND)
-        throw e;
-      return null;
-    }
-  }
-
-  public User registerUser(RegisterRequest registerRequest) {
-
-    String token = getAccessToken();
-    HttpHeaders headers = new HttpHeaders();
-    headers.set("Authorization", "Bearer " + token);
-
-    String url = USER_API_URL;
-    ResponseEntity<User> userResponse = restTemplate.postForEntity(url, registerRequest, User.class, headers);
-    if (!userResponse.getStatusCode().is2xxSuccessful())
-      throw new RuntimeException("Failed to register user");
-
-    return userResponse.getBody();
-  }
-
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/config/RestTemplateConfig.java b/java/services/auth/src/main/java/com/uva/authentication/config/RestTemplateConfig.java
deleted file mode 100644
index ad00e740247bc6562bc0cadb41e417dcec238caa..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/config/RestTemplateConfig.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.uva.authentication.config;
-
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.web.client.RestTemplate;
-
-@Configuration
-public class RestTemplateConfig {
-
-    @Bean
-    public RestTemplate restTemplate() {
-        return new RestTemplate();
-    }
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/controllers/AuthController.java b/java/services/auth/src/main/java/com/uva/authentication/controllers/AuthController.java
deleted file mode 100644
index 23625a6e7824cadda471d847ecede0b94cb565da..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/controllers/AuthController.java
+++ /dev/null
@@ -1,50 +0,0 @@
-package com.uva.authentication.controllers;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.http.HttpStatus;
-import org.springframework.http.ResponseEntity;
-import org.springframework.web.bind.annotation.*;
-import org.springframework.web.client.HttpClientErrorException;
-import com.uva.authentication.models.*;
-import com.uva.authentication.services.AuthService;
-
-@RestController
-@CrossOrigin(origins = "*")
-public class AuthController {
-
-    @Autowired
-    private AuthService authService;
-
-    @PostMapping("/login")
-    public ResponseEntity<?> login(@RequestBody LoginRequest loginRequest) {
-        try {
-            String token = authService.login(loginRequest);
-            return ResponseEntity.ok(new JwtAuthResponse(token));
-        } catch (HttpClientErrorException e) {
-            if (e.getStatusCode() == HttpStatus.FORBIDDEN) {
-                return new ResponseEntity<String>(e.getMessage(), HttpStatus.FORBIDDEN);
-            }
-        }
-        return new ResponseEntity<String>("Algo no fue bien", HttpStatus.UNAUTHORIZED);
-    }
-
-    @PostMapping("/register")
-    public ResponseEntity<?> register(@RequestBody RegisterRequest registerRequest) {
-        try {
-            LoginRequest loginRequest = new LoginRequest();
-            loginRequest.setEmail(registerRequest.getEmail());
-            loginRequest.setPassword(registerRequest.getPassword());
-
-            authService.register(registerRequest);
-            return login(loginRequest);
-        } catch (HttpClientErrorException e) {
-            if (e.getStatusCode() == HttpStatus.CONFLICT) {
-                return new ResponseEntity<String>(e.getMessage(), HttpStatus.CONFLICT);
-            }
-            e.fillInStackTrace();
-        }
-
-        return new ResponseEntity<String>("Algo no fue bien", HttpStatus.UNAUTHORIZED);
-    }
-
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/exceptions/InvalidRequestException.java b/java/services/auth/src/main/java/com/uva/authentication/exceptions/InvalidRequestException.java
deleted file mode 100644
index 499a320e58ecd7576cbfff39101db14395f0edbe..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/exceptions/InvalidRequestException.java
+++ /dev/null
@@ -1,11 +0,0 @@
-package com.uva.authentication.exceptions;
-
-import org.springframework.http.HttpStatus;
-import org.springframework.web.bind.annotation.ResponseStatus;
-
-@ResponseStatus(HttpStatus.BAD_REQUEST)
-public class InvalidRequestException extends RuntimeException {
-    public InvalidRequestException(String message) {
-        super(message);
-    }
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/AuthResponse.java b/java/services/auth/src/main/java/com/uva/authentication/models/AuthResponse.java
deleted file mode 100644
index e943a69108d5da38d4956509242935a6e4eb659e..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/models/AuthResponse.java
+++ /dev/null
@@ -1,53 +0,0 @@
-package com.uva.authentication.models;
-
-import com.uva.authentication.models.remote.UserRol;
-
-public class AuthResponse {
-
-  private int id;
-  private String username;
-  private String email;
-  private String password;
-  private UserRol rol;
-
-  public int getId() {
-    return this.id;
-  }
-
-  public void setId(int id) {
-    this.id = id;
-  }
-
-  public String getUsername() {
-    return this.username;
-  }
-
-  public void setUsername(String username) {
-    this.username = username;
-  }
-
-  public String getEmail() {
-    return this.email;
-  }
-
-  public void setEmail(String email) {
-    this.email = email;
-  }
-
-  public String getPassword() {
-    return this.password;
-  }
-
-  public void setPassword(String password) {
-    this.password = password;
-  }
-
-  public UserRol getRol() {
-    return this.rol;
-  }
-
-  public void setRol(UserRol rol) {
-    this.rol = rol;
-  }
-
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/JwtAuthResponse.java b/java/services/auth/src/main/java/com/uva/authentication/models/JwtAuthResponse.java
deleted file mode 100644
index a9566954c35ce71864881e320843e270a998b9da..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/models/JwtAuthResponse.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.uva.authentication.models;
-
-public class JwtAuthResponse {
-  private String token;
-
-  public JwtAuthResponse(String token) {
-    this.token = token;
-  }
-
-  // Getter
-  public String getToken() {
-    return token;
-  }
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/LoginRequest.java b/java/services/auth/src/main/java/com/uva/authentication/models/LoginRequest.java
deleted file mode 100644
index d829de96fd9a45ed458976f03107f38e8933e797..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/models/LoginRequest.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.uva.authentication.models;
-
-import java.util.Objects;
-
-public class LoginRequest {
-  private String email;
-  private String password = String.valueOf(Objects.hashCode("hi"));
-
-  // Getters and setters
-  public String getEmail() {
-    return email;
-  }
-
-  public void setEmail(String email) {
-    this.email = email;
-  }
-
-  public String getPassword() {
-    return password;
-  }
-
-  public void setPassword(String password) {
-    this.password = password;
-  }
-
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/RegisterRequest.java b/java/services/auth/src/main/java/com/uva/authentication/models/RegisterRequest.java
deleted file mode 100644
index b3c98e8e71e7ff14f2bb90c9f1b4e0cecf7e8ae7..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/models/RegisterRequest.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package com.uva.authentication.models;
-
-import com.uva.authentication.models.remote.UserRol;
-
-public class RegisterRequest extends LoginRequest {
-  private UserRol rol;
-  private String name;
-
-  public UserRol getRol() {
-    return this.rol;
-  }
-
-  public void setRol(UserRol rol) {
-    this.rol = rol;
-  }
-
-  public String getName() {
-    return this.name;
-  }
-
-  public void setName(String name) {
-    this.name = name;
-  }
-
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/remote/Booking.java b/java/services/auth/src/main/java/com/uva/authentication/models/remote/Booking.java
deleted file mode 100644
index 354c65d506674f162fa3009b593943be01a92e6f..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/models/remote/Booking.java
+++ /dev/null
@@ -1,49 +0,0 @@
-package com.uva.authentication.models.remote;
-
-import jakarta.persistence.Basic;
-import jakarta.persistence.CascadeType;
-import jakarta.persistence.Entity;
-import jakarta.persistence.FetchType;
-import jakarta.persistence.GeneratedValue;
-import jakarta.persistence.GenerationType;
-import jakarta.persistence.Id;
-import jakarta.persistence.JoinColumn;
-import jakarta.persistence.ManyToOne;
-import jakarta.persistence.Table;
-
-@Entity
-@Table(name = "bookings")
-public class Booking {
-    @Id
-    @GeneratedValue(strategy = GenerationType.IDENTITY)
-    @Basic(optional = false)
-    private int id;
-    @JoinColumn(name = "user_id", referencedColumnName = "id")
-    @ManyToOne(optional = false, fetch = FetchType.EAGER, cascade = CascadeType.MERGE)
-    private Client userId;
-
-    public Booking() {
-    }
-
-    public Booking(int id, Client userId) {
-        this.id = id;
-        this.userId = userId;
-    }
-
-    public void setId(int id) {
-        this.id = id;
-    }
-
-    public int getId() {
-        return this.id;
-    }
-
-    public void setUserId(Client userId) {
-        this.userId = userId;
-    }
-
-    public Client getUserId() {
-        return this.userId;
-    }
-
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/remote/Client.java b/java/services/auth/src/main/java/com/uva/authentication/models/remote/Client.java
deleted file mode 100644
index 5ebf50a3b5b1135b6c6b1f7206486c95a9e95b92..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/models/remote/Client.java
+++ /dev/null
@@ -1,53 +0,0 @@
-package com.uva.authentication.models.remote;
-
-import java.util.ArrayList;
-import java.util.List;
-
-import jakarta.persistence.Basic;
-import jakarta.persistence.CascadeType;
-import jakarta.persistence.Column;
-import jakarta.persistence.Entity;
-import jakarta.persistence.EnumType;
-import jakarta.persistence.Enumerated;
-import jakarta.persistence.FetchType;
-import jakarta.persistence.OneToMany;
-import jakarta.persistence.Table;
-
-@Entity
-@Table(name = "user_client")
-public class Client extends User {
-
-  @Basic(optional = false)
-  @Column(nullable = false)
-  @Enumerated(EnumType.STRING)
-  private UserStatus status = UserStatus.NO_BOOKINGS;
-
-  @OneToMany(mappedBy = "userId", fetch = FetchType.EAGER, cascade = CascadeType.ALL)
-  private List<Booking> bookings = new ArrayList<>();
-
-  public Client() {
-    super();
-  }
-
-  public Client(int id, String name, String email, String password, UserStatus status, List<Booking> bookings) {
-    super(id, name, email, password, UserRol.CLIENT);
-    setStatus(status);
-    setBookings(bookings);
-  }
-
-  public UserStatus getStatus() {
-    return this.status;
-  }
-
-  public void setStatus(UserStatus status) {
-    this.status = status;
-  }
-
-  public List<Booking> getBookings() {
-    return this.bookings;
-  }
-
-  public void setBookings(List<Booking> bookings) {
-    this.bookings = bookings;
-  }
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/remote/Hotel.java b/java/services/auth/src/main/java/com/uva/authentication/models/remote/Hotel.java
deleted file mode 100644
index 5710f9d545b57d39363435fa8776a856461291b6..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/models/remote/Hotel.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package com.uva.authentication.models.remote;
-
-import jakarta.persistence.Basic;
-import jakarta.persistence.Entity;
-import jakarta.persistence.GeneratedValue;
-import jakarta.persistence.GenerationType;
-import jakarta.persistence.Id;
-import jakarta.persistence.JoinColumn;
-import jakarta.persistence.ManyToOne;
-import jakarta.persistence.Table;
-
-@Entity
-@Table(name = "hotels")
-public class Hotel {
-
-  @Id
-  @GeneratedValue(strategy = GenerationType.IDENTITY)
-  @Basic(optional = false)
-  private int id;
-
-  @ManyToOne(optional = false)
-  @JoinColumn(name = "hotel_manager", referencedColumnName = "id")
-  private HotelManager hotelManager;
-
-  public Hotel() {
-  }
-
-  public Hotel(int id, HotelManager hotelManager) {
-    setId(id);
-    setHotelManager(hotelManager);
-  }
-
-  public int getId() {
-    return this.id;
-  }
-
-  public void setId(int id) {
-    this.id = id;
-  }
-
-  public void setHotelManager(HotelManager hotelManager) {
-    this.hotelManager = hotelManager;
-  }
-
-  public HotelManager getHotelManager() {
-    return hotelManager;
-  }
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/remote/HotelManager.java b/java/services/auth/src/main/java/com/uva/authentication/models/remote/HotelManager.java
deleted file mode 100644
index dd58a508436be9e9e51a99d26038cf6efec373a6..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/models/remote/HotelManager.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.uva.authentication.models.remote;
-
-import java.util.ArrayList;
-import java.util.List;
-
-import jakarta.persistence.CascadeType;
-import jakarta.persistence.Entity;
-import jakarta.persistence.FetchType;
-import jakarta.persistence.OneToMany;
-import jakarta.persistence.Table;
-
-@Entity
-@Table(name = "hotel_manager_user")
-public class HotelManager extends User {
-
-  @OneToMany(mappedBy = "hotelManager", fetch = FetchType.EAGER, cascade = CascadeType.ALL)
-  private List<Hotel> hotels = new ArrayList<>();
-
-  public HotelManager() {
-    super();
-  }
-
-  public HotelManager(int id, String name, String email, String password, List<Hotel> hotels) {
-    super(id, name, email, password, UserRol.HOTEL_ADMIN);
-    setHotels(hotels);
-  }
-
-  public void setHotels(List<Hotel> hotels) {
-    this.hotels = hotels;
-  }
-
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/remote/UserRol.java b/java/services/auth/src/main/java/com/uva/authentication/models/remote/UserRol.java
deleted file mode 100644
index fe4d90dd1dd595f4c09ec699b452910352b406d5..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/models/remote/UserRol.java
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.uva.authentication.models.remote;
-
-public enum UserRol {
-  ADMIN, HOTEL_ADMIN, CLIENT
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/remote/UserStatus.java b/java/services/auth/src/main/java/com/uva/authentication/models/remote/UserStatus.java
deleted file mode 100644
index 5dd62bc5c75271eafa9daa58ad332aa8ad56d413..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/models/remote/UserStatus.java
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.uva.authentication.models.remote;
-
-public enum UserStatus {
-  NO_BOOKINGS, WITH_ACTIVE_BOOKINGS, WITH_INACTIVE_BOOKINGS;
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/repositories/HotelManagerRepository.java b/java/services/auth/src/main/java/com/uva/authentication/repositories/HotelManagerRepository.java
deleted file mode 100644
index c051ddd0425ff264337261645dbe6f17cfa55b51..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/repositories/HotelManagerRepository.java
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.uva.authentication.repositories;
-
-import java.util.Optional;
-import org.springframework.data.jpa.repository.JpaRepository;
-
-import com.uva.authentication.models.remote.HotelManager;
-
-public interface HotelManagerRepository extends JpaRepository<HotelManager, Integer> {
-  Optional<HotelManager> findByEmail(String email);
-}
\ No newline at end of file
diff --git a/java/services/auth/src/main/java/com/uva/authentication/repositories/UserRepository.java b/java/services/auth/src/main/java/com/uva/authentication/repositories/UserRepository.java
deleted file mode 100644
index 65f98edd7f2d0700de933199ae54c484eb8c71a3..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/repositories/UserRepository.java
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.uva.authentication.repositories;
-
-import java.util.Optional;
-import org.springframework.data.jpa.repository.JpaRepository;
-
-import com.uva.authentication.models.remote.User;
-
-public interface UserRepository extends JpaRepository<User, Integer> {
-  Optional<User> findByEmail(String email);
-}
\ No newline at end of file
diff --git a/java/services/auth/src/main/java/com/uva/authentication/services/AuthService.java b/java/services/auth/src/main/java/com/uva/authentication/services/AuthService.java
deleted file mode 100644
index 3ed67ececda2b0632e00f1b31ff04f3c05df866e..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/services/AuthService.java
+++ /dev/null
@@ -1,98 +0,0 @@
-package com.uva.authentication.services;
-
-import java.util.Optional;
-
-import org.springframework.beans.BeanUtils;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.http.HttpStatus;
-import org.springframework.stereotype.Service;
-import org.springframework.web.client.HttpClientErrorException;
-
-import com.uva.authentication.models.LoginRequest;
-import com.uva.authentication.models.RegisterRequest;
-import com.uva.authentication.models.remote.Client;
-import com.uva.authentication.models.remote.HotelManager;
-import com.uva.authentication.models.remote.User;
-import com.uva.authentication.models.remote.UserRol;
-import com.uva.authentication.repositories.ClientRepository;
-import com.uva.authentication.repositories.HotelManagerRepository;
-import com.uva.authentication.repositories.UserRepository;
-import com.uva.authentication.utils.JwtUtil;
-import com.uva.authentication.utils.SecurityUtils;
-
-@Service
-public class AuthService {
-
-  @Autowired
-  private JwtUtil jwtUtil;
-
-  @Autowired
-  private HotelManagerRepository hotelManagerRepository;
-
-  @Autowired
-  private ClientRepository clientRepository;
-
-  @Autowired
-  private UserRepository userRepository;
-
-  private boolean authenticateUser(LoginRequest request, User user) {
-    if (user == null)
-      return false;
-    return SecurityUtils.checkPassword(request.getPassword(), user.getPassword());
-  }
-
-  public String login(LoginRequest loginRequest) {
-    User user = userRepository.findByEmail(loginRequest.getEmail())
-        .orElseThrow(() -> new HttpClientErrorException(HttpStatus.FORBIDDEN,
-            "Invalid credentials"));
-
-    if (!authenticateUser(loginRequest, user)) {
-      throw new HttpClientErrorException(HttpStatus.FORBIDDEN, "Invalid credentials");
-    }
-
-    return jwtUtil.generateToken(user);
-  }
-
-  public User register(RegisterRequest registerRequest) {
-    Optional<User> user = userRepository.findByEmail(registerRequest.getEmail());
-    if (user.isPresent())
-      throw new HttpClientErrorException(HttpStatus.CONFLICT, "Email already in use");
-
-    return registerNewUser(registerRequest);
-  }
-
-  private User registerNewUser(RegisterRequest registerRequest) {
-    User newUser;
-
-    // Ciframos la contraseña
-    String hashPass = SecurityUtils.encrypt(registerRequest.getPassword());
-    registerRequest.setPassword(hashPass);
-
-    // Aseguramos que tenga un rol, por defecto es cliente
-    if (registerRequest.getRol() == null)
-      registerRequest.setRol(UserRol.CLIENT);
-
-    switch (registerRequest.getRol()) {
-      case HOTEL_ADMIN:
-        HotelManager hm = new HotelManager();
-        BeanUtils.copyProperties(registerRequest, hm);
-        newUser = hotelManagerRepository.save(hm);
-        break;
-
-      case ADMIN:
-        User admin = new User();
-        BeanUtils.copyProperties(registerRequest, admin);
-        newUser = userRepository.save(admin);
-        break;
-
-      case CLIENT: // Por defecto cliente normal
-      default:
-        Client client = new Client();
-        BeanUtils.copyProperties(registerRequest, client);
-        client.setRol(UserRol.CLIENT);
-        newUser = clientRepository.save(client);
-        break;
-    }
-    return newUser;
-  }
-}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/utils/JwtUtil.java b/java/services/auth/src/main/java/com/uva/authentication/utils/JwtUtil.java
deleted file mode 100644
index e21efcdbabe51754bc2a2bf705eba0361f0696d6..0000000000000000000000000000000000000000
--- a/java/services/auth/src/main/java/com/uva/authentication/utils/JwtUtil.java
+++ /dev/null
@@ -1,85 +0,0 @@
-package com.uva.authentication.utils;
-
-import io.jsonwebtoken.Claims;
-import io.jsonwebtoken.Jwts;
-import io.jsonwebtoken.SignatureAlgorithm;
-import io.jsonwebtoken.io.Decoders;
-import io.jsonwebtoken.security.Keys;
-
-import java.security.Key;
-import java.util.Date;
-import java.util.HashMap;
-import java.util.Map;
-import java.util.function.Function;
-
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.stereotype.Component;
-
-import com.uva.authentication.models.remote.User;
-
-@Component
-public class JwtUtil {
-
-  @Value("${security.jwt.secret-key}")
-  private String secretKey;
-
-  @Value("${security.jwt.expiration-time}")
-  private long jwtExpiration;
-
-  public String extractUsername(String token) {
-    return extractClaim(token, Claims::getSubject);
-  }
-
-  public <T> T extractClaim(String token, Function<Claims, T> claimsResolver) {
-    final Claims claims = extractAllClaims(token);
-    return claimsResolver.apply(claims);
-  }
-
-  public long getExpirationTime() {
-    return jwtExpiration;
-  }
-
-  public String generateToken(User user) {
-    Map<String, Object> extraClaims = new HashMap<>();
-    extraClaims.put("email", user.getEmail());
-    extraClaims.put("rol", user.getRol());
-    extraClaims.put("user", user);
-    long expiration = jwtExpiration;
-
-    return Jwts
-        .builder()
-        .setClaims(extraClaims)
-        .setSubject(String.valueOf(user.getId()))
-        .setIssuedAt(new Date(System.currentTimeMillis()))
-        .setExpiration(new Date(System.currentTimeMillis() + expiration))
-        .signWith(getSignInKey(), SignatureAlgorithm.HS256)
-        .compact();
-  }
-
-  public boolean isTokenValid(String token, User user) {
-    final String username = extractUsername(token);
-    return (username.equals(user.getName())) && !isTokenExpired(token);
-  }
-
-  private boolean isTokenExpired(String token) {
-    return extractExpiration(token).before(new Date());
-  }
-
-  private Date extractExpiration(String token) {
-    return extractClaim(token, Claims::getExpiration);
-  }
-
-  private Claims extractAllClaims(String token) {
-    return Jwts
-        .parserBuilder()
-        .setSigningKey(getSignInKey())
-        .build()
-        .parseClaimsJws(token)
-        .getBody();
-  }
-
-  private Key getSignInKey() {
-    byte[] keyBytes = Decoders.BASE64.decode(secretKey);
-    return Keys.hmacShaKeyFor(keyBytes);
-  }
-}
diff --git a/java/services/auth/src/main/resources/application.properties b/java/services/auth/src/main/resources/application.properties
index f08d9f6bd82253e53914fa3c4b695d4c25ba6f24..14e05ddd3d5b195e2eaaadfa33453d0a783b674d 100644
--- a/java/services/auth/src/main/resources/application.properties
+++ b/java/services/auth/src/main/resources/application.properties
@@ -1,16 +1,11 @@
-spring.application.name=authService
+spring.application.name=authentication
 server.port=8101
-spring.jpa.hibernate.ddl-auto=update
-spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect
-spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3306/RoomsBooking?createDatabaseIfNotExist=true
-spring.datasource.username=user
-spring.datasource.password=password
-spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
 
-# Usar esto para alternar entre las exposición del room repository ya que no es necesario su uso pero por defecto, al no cubrir su ruta, se expone
-# spring.data.rest.base-path=false
-security.jwt.secret-key=3cfa76ef14937c1c0ea519f8fc057a80fcd04a7420f8e8bcd0a7567c272e007b
-# 1h in millisecond
-security.jwt.expiration-time=3600000
+security.jwt.secret-key=MiClaveDeSeguridadMuyLargaParaQueNoFalleSpringBoot
+# Tiempo de validez para tokens para usuarios (externos) 1h in seconds
+security.jwt.external.expiration=3600 
+# Tiempo de validez para tokens para servicios (internos) 10min in seconds
+security.jwt.internal.expiration=600
+security.jwt.kid=cYz3kNRLAirxVhHXQ5rh5xKrOwHwZVui
 
-external.services.users.baseurl=http://localhost:8080/users
\ No newline at end of file
+services.external.users.url=http://localhost:8201/users
\ No newline at end of file
diff --git a/java/roomBooking/.gitignore b/java/services/bookings/.gitignore
similarity index 100%
rename from java/roomBooking/.gitignore
rename to java/services/bookings/.gitignore
diff --git a/java/roomBooking/.mvn/wrapper/maven-wrapper.properties b/java/services/bookings/.mvn/wrapper/maven-wrapper.properties
similarity index 100%
rename from java/roomBooking/.mvn/wrapper/maven-wrapper.properties
rename to java/services/bookings/.mvn/wrapper/maven-wrapper.properties
diff --git a/java/roomBooking/Dockerfile b/java/services/bookings/Dockerfile
similarity index 100%
rename from java/roomBooking/Dockerfile
rename to java/services/bookings/Dockerfile
diff --git a/java/roomBooking/mvnw b/java/services/bookings/mvnw
similarity index 100%
rename from java/roomBooking/mvnw
rename to java/services/bookings/mvnw
diff --git a/java/roomBooking/mvnw.cmd b/java/services/bookings/mvnw.cmd
similarity index 100%
rename from java/roomBooking/mvnw.cmd
rename to java/services/bookings/mvnw.cmd
diff --git a/java/services/bookings/pom.xml b/java/services/bookings/pom.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2fa958dd3daf19a43d14601328c0b1b05fb4d076
--- /dev/null
+++ b/java/services/bookings/pom.xml
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<parent>
+		<groupId>org.springframework.boot</groupId>
+		<artifactId>spring-boot-starter-parent</artifactId>
+		<version>3.3.7</version>
+		<relativePath/> <!-- lookup parent from repository -->
+	</parent>
+	<groupId>com.uva</groupId>
+	<artifactId>bookings</artifactId>
+	<version>0.0.1-SNAPSHOT</version>
+	<name>bookings</name>
+	<description>Booking rest microservice</description>
+	<url/>
+	<licenses>
+		<license/>
+	</licenses>
+	<developers>
+		<developer/>
+	</developers>
+	<scm>
+		<connection/>
+		<developerConnection/>
+		<tag/>
+		<url/>
+	</scm>
+	<properties>
+		<java.version>17</java.version>
+	</properties>
+	<dependencies>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-data-jpa</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-data-rest</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>com.mysql</groupId>
+			<artifactId>mysql-connector-j</artifactId>
+			<scope>runtime</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-test</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-security</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>jakarta.servlet</groupId>
+			<artifactId>jakarta.servlet-api</artifactId>
+			<scope>provided</scope>
+    </dependency>
+		<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
+		<dependency>
+			<groupId>org.projectlombok</groupId>
+			<artifactId>lombok</artifactId>
+			<scope>provided</scope>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.springframework.boot</groupId>
+				<artifactId>spring-boot-maven-plugin</artifactId>
+			</plugin>
+		</plugins>
+	</build>
+
+</project>
\ No newline at end of file
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/BookingsApplication.java b/java/services/bookings/src/main/java/com/uva/api/bookings/BookingsApplication.java
new file mode 100644
index 0000000000000000000000000000000000000000..6d217988d4954c1fa1e2a190c09a49ec90acc2ef
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/BookingsApplication.java
@@ -0,0 +1,15 @@
+package com.uva.api.bookings;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.scheduling.annotation.EnableScheduling;
+
+@SpringBootApplication
+@EnableScheduling
+public class BookingsApplication {
+
+	public static void main(String[] args) {
+		SpringApplication.run(BookingsApplication.class, args);
+	}
+
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/api/HotelApi.java b/java/services/bookings/src/main/java/com/uva/api/bookings/api/HotelApi.java
new file mode 100644
index 0000000000000000000000000000000000000000..4ed7a2991e0f98761bbb2dd78085dafdbf6344c3
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/api/HotelApi.java
@@ -0,0 +1,31 @@
+package com.uva.api.bookings.api;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.HttpClientErrorException;
+import org.springframework.web.client.RestTemplate;
+
+@Component
+public class HotelApi {
+
+  @Autowired
+  private RestTemplate restTemplate;
+
+  @Value("${services.external.hotels.url}")
+  private String HOTEL_API_URL;
+
+  public boolean existsById(int hotelId, int roomId) {
+    String url = HOTEL_API_URL + "/{hotelId}/rooms/{roomId}";
+    try {
+      ResponseEntity<Void> response = restTemplate.getForEntity(url, Void.class, hotelId, roomId);
+      return response.getStatusCode() == HttpStatus.OK;
+    } catch (HttpClientErrorException ex) {
+      if (ex.getStatusCode() == HttpStatus.NOT_FOUND)
+        return false;
+      throw ex;
+    }
+  }
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/api/TokenAPI.java b/java/services/bookings/src/main/java/com/uva/api/bookings/api/TokenAPI.java
new file mode 100644
index 0000000000000000000000000000000000000000..9e2271dc71ff2181d2f1898481261b484046fdeb
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/api/TokenAPI.java
@@ -0,0 +1,47 @@
+package com.uva.api.bookings.api;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Qualifier;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.RestTemplate;
+
+import com.fasterxml.jackson.databind.JsonNode;
+import com.uva.api.bookings.models.external.jwt.JwtData;
+
+@Component
+public class TokenAPI {
+
+  private final RestTemplate restTemplate;
+
+  public TokenAPI(@Qualifier("simpleRestTemplate") RestTemplate restTemplate) {
+    this.restTemplate = restTemplate;
+  }
+
+  @Value("${spring.application.name}")
+  private String service;
+
+  @Value("${services.internal.token.url}")
+  private String TOKEN_API_URL;
+
+  public JwtData getServiceToken() {
+    String url = TOKEN_API_URL + "/service";
+    Map<String, String> body = new HashMap<>();
+    body.put("service", service);
+    String token = restTemplate.postForObject(url, body, JsonNode.class)
+        .get("token").asText();
+    return decodeToken(token);
+  }
+
+  public JwtData decodeToken(String token) {
+    String url = TOKEN_API_URL + "/info";
+    Map<String, String> body = new HashMap<>();
+    body.put("token", token);
+    JwtData response = restTemplate.postForObject(url, body, JwtData.class);
+    response.setToken(token);
+    return response;
+  }
+
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/api/UserApi.java b/java/services/bookings/src/main/java/com/uva/api/bookings/api/UserApi.java
new file mode 100644
index 0000000000000000000000000000000000000000..dc687156fa63b21ac1ada0a929a3fa63b8994920
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/api/UserApi.java
@@ -0,0 +1,66 @@
+package com.uva.api.bookings.api;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.HttpClientErrorException;
+import org.springframework.web.client.RestTemplate;
+
+import com.uva.api.bookings.models.external.users.ClientDTO;
+import com.uva.api.bookings.models.external.users.ClientStatus;
+
+@Component
+public class UserApi {
+
+  @Autowired
+  private RestTemplate restTemplate;
+
+  @Value("${services.external.clients.url}")
+  private String CLIENTS_API_URL;
+
+  @Value("${services.external.managers.url}")
+  private String MANAGERS_API_URL;
+
+  public ClientDTO findClientById(int id) {
+    try {
+      String url = CLIENTS_API_URL + "/{id}";
+      ClientDTO client = restTemplate.getForObject(url, ClientDTO.class, id);
+      return client;
+    } catch (HttpClientErrorException ex) {
+      if (ex.getStatusCode() == HttpStatus.NOT_FOUND) {
+        return null;
+      }
+      throw ex;
+    }
+  }
+
+  public boolean existsManagerById(int id) {
+    try {
+      String url = MANAGERS_API_URL + "/{id}";
+      ResponseEntity<Void> response = restTemplate.getForEntity(url, Void.class, id);
+      return response.getStatusCode() == HttpStatus.OK;
+    } catch (HttpClientErrorException ex) {
+      System.out.println(ex.getStatusCode());
+      if (ex.getStatusCode() == HttpStatus.NOT_FOUND) {
+        return false;
+      }
+      throw ex;
+    }
+  }
+
+  public void updateClientState(int id, ClientStatus state) {
+    String url = CLIENTS_API_URL + "/{id}";
+
+    Map<String, Object> body = new HashMap<>();
+    System.out.println(state);
+    body.put("status", state);
+
+    restTemplate.put(url, body, id);
+  }
+
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/config/MyScheduledTasks.java b/java/services/bookings/src/main/java/com/uva/api/bookings/config/MyScheduledTasks.java
new file mode 100644
index 0000000000000000000000000000000000000000..0b8843c05e876c9bcba5378981b23a1ee7299b50
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/config/MyScheduledTasks.java
@@ -0,0 +1,25 @@
+package com.uva.api.bookings.config;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Component;
+
+import com.uva.api.bookings.services.BookingService;
+
+@Component
+public class MyScheduledTasks {
+
+  @Autowired
+  private BookingService bookingService;
+
+  @Scheduled(cron = "0 30 0 * * *") // Se ejecuta cada día media hora después de medianoche
+  public void updateInactiveBookings() {
+    System.out.println(
+        "Iniciando proceso de actualizar comunicación de cambio de estado para usuarios cuyas reservas finalizaron el dia de hoy");
+    long start = System.currentTimeMillis();
+    long updatedUsers = bookingService.performDailyClientsStateUpdate();
+    long time = System.currentTimeMillis() - start;
+
+    System.out.println("Task Complete! " + updatedUsers + " clients updated in " + time + " ms");
+  }
+}
\ No newline at end of file
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/config/RestTemplateConfig.java b/java/services/bookings/src/main/java/com/uva/api/bookings/config/RestTemplateConfig.java
new file mode 100644
index 0000000000000000000000000000000000000000..c4f1c01ac7d43fd4226ae9bf992f5b6ef20bd2ae
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/config/RestTemplateConfig.java
@@ -0,0 +1,23 @@
+package com.uva.api.bookings.config;
+
+import java.util.List;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.web.client.RestTemplate;
+
+@Configuration
+public class RestTemplateConfig {
+
+    @Bean("simpleRestTemplate")
+    RestTemplate simpleRestTemplate() {
+        return new RestTemplate();
+    }
+
+    @Bean
+    RestTemplate restTemplate(RestTemplateInterceptor interceptor) {
+        RestTemplate restTemplate = new RestTemplate();
+        restTemplate.setInterceptors(List.of(interceptor));
+        return restTemplate;
+    }
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/config/RestTemplateInterceptor.java b/java/services/bookings/src/main/java/com/uva/api/bookings/config/RestTemplateInterceptor.java
new file mode 100644
index 0000000000000000000000000000000000000000..ce5836245a2b73af9f1aa4ba323710d4938b2b2e
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/config/RestTemplateInterceptor.java
@@ -0,0 +1,30 @@
+package com.uva.api.bookings.config;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpRequest;
+import org.springframework.http.client.ClientHttpRequestExecution;
+import org.springframework.http.client.ClientHttpResponse;
+import org.springframework.http.client.ClientHttpRequestInterceptor;
+import org.springframework.stereotype.Component;
+
+import com.uva.api.bookings.services.TokenService;
+
+import java.io.IOException;
+
+@Component
+public class RestTemplateInterceptor implements ClientHttpRequestInterceptor {
+
+  @Autowired
+  private TokenService service;
+
+  @Override
+  public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution)
+      throws IOException {
+
+    String jwtToken = service.getServiceToken();
+
+    request.getHeaders().add("Authorization", "Bearer " + jwtToken);
+
+    return execution.execute(request, body);
+  }
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/config/SecurityConfig.java b/java/services/bookings/src/main/java/com/uva/api/bookings/config/SecurityConfig.java
new file mode 100644
index 0000000000000000000000000000000000000000..dbc66924e5e70689f66bc0b90c4e33ef4b08e18c
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/config/SecurityConfig.java
@@ -0,0 +1,84 @@
+package com.uva.api.bookings.config;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import static org.springframework.http.HttpMethod.*;
+import org.springframework.security.config.annotation.web.builders.HttpSecurity;
+import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
+import org.springframework.security.web.SecurityFilterChain;
+import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
+
+import com.uva.api.bookings.filter.JwtAuthenticationFilter;
+import com.uva.api.bookings.models.external.jwt.Service;
+import com.uva.api.bookings.models.external.users.UserRol;
+import static com.uva.api.bookings.models.external.users.UserRol.*;
+
+@Configuration
+@EnableWebSecurity
+public class SecurityConfig {
+
+  private final JwtAuthenticationFilter jwtAuthenticationFilter;
+
+  public SecurityConfig(JwtAuthenticationFilter jwtAuthenticationFilter) {
+    this.jwtAuthenticationFilter = jwtAuthenticationFilter;
+  }
+
+  private final String[] SERVICES = flat(Service.values());
+
+  private String[] flat(UserRol... roles) {
+    return java.util.Arrays.stream(roles)
+        .map(Enum::toString)
+        .map(role -> String.format("ROLE_%s", role))
+        .toArray(String[]::new);
+  }
+
+  private String[] flat(Service... services) {
+    return java.util.Arrays.stream(services)
+        .map(Enum::toString)
+        .toArray(String[]::new);
+  }
+
+  private String[] join(String[]... authority) {
+    return java.util.Arrays.stream(authority)
+        .flatMap(java.util.Arrays::stream)
+        .toArray(String[]::new);
+  }
+
+  /**
+   * All services and specified roles
+   * 
+   * @param roles
+   * @return
+   */
+  private String[] anyService(UserRol... roles) {
+    return join(flat(roles), SERVICES);
+  }
+
+  @Bean
+  SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
+    http.csrf(csrf -> csrf.disable())
+        .authorizeHttpRequests(authorize -> authorize
+            // Permitir OPTIONS sin autenticación
+            .requestMatchers(OPTIONS, "/**").permitAll()
+
+            // Restring acceso
+            .requestMatchers(GET, "/bookings*").authenticated()
+
+            .requestMatchers(POST, "/bookings*")
+            .hasAnyAuthority(flat(ADMIN, CLIENT))
+
+            .requestMatchers(DELETE, "/bookings*")
+            .hasAnyAuthority(anyService(ADMIN))
+
+            .requestMatchers("/bookings/**")
+            .hasAnyAuthority(anyService(ADMIN, CLIENT))
+
+            // Rechazar el resto
+            .anyRequest().denyAll())
+        // Registra el filtro antes del filtro estándar de autenticación
+        .addFilterBefore(jwtAuthenticationFilter,
+            UsernamePasswordAuthenticationFilter.class);
+
+    return http.build();
+  }
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/controllers/BookingController.java b/java/services/bookings/src/main/java/com/uva/api/bookings/controllers/BookingController.java
new file mode 100644
index 0000000000000000000000000000000000000000..d3cfc7d56df8c9f321b63cd2e511d1a86ee94a43
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/controllers/BookingController.java
@@ -0,0 +1,62 @@
+package com.uva.api.bookings.controllers;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.bind.annotation.*;
+
+import com.uva.api.bookings.models.Booking;
+import com.uva.api.bookings.services.BookingService;
+import com.uva.api.bookings.utils.Utils;
+
+import java.time.LocalDate;
+
+@RestController
+@RequestMapping("/bookings")
+@CrossOrigin(origins = "*")
+public class BookingController {
+
+    @Autowired
+    private BookingService bookingService;
+
+    @GetMapping
+    public ResponseEntity<?> getAllBookings(
+            @RequestHeader(value = "Authorization", required = true) String authorization,
+            @RequestParam(required = false) LocalDate start,
+            @RequestParam(required = false) LocalDate end,
+            @RequestParam(required = false) Integer hotelId,
+            @RequestParam(required = false) Integer roomId,
+            @RequestParam(required = false) Integer userId,
+            @RequestParam(required = false) Integer managerId) {
+        String token = Utils.getToken(authorization);
+        return bookingService.getBookings(token, start, end, hotelId, roomId, userId, managerId);
+    }
+
+    @PostMapping
+    public ResponseEntity<?> createBooking(@RequestBody Booking booking) {
+        return bookingService.createBooking(booking);
+    }
+
+    @DeleteMapping
+    public ResponseEntity<?> deleteBooking(
+            @RequestParam(required = false) Integer hotelId,
+            @RequestParam(required = false) Integer managerId,
+            @RequestParam(required = false) Integer userId) {
+        return bookingService.deleteBookings(hotelId, managerId, userId);
+    }
+
+    @GetMapping("/{id:\\d+}")
+    public ResponseEntity<?> getBookingById(
+            @RequestHeader(value = "Authorization", required = true) String authorization,
+            @PathVariable Integer id) {
+        String token = Utils.getToken(authorization);
+        return bookingService.getBookingById(token, id);
+    }
+
+    @DeleteMapping("/{id:\\d+}")
+    public ResponseEntity<?> deleteBooking(
+            @RequestHeader(value = "Authorization", required = true) String authorization,
+            @PathVariable Integer id) {
+        String token = Utils.getToken(authorization);
+        return bookingService.deleteBooking(token, id);
+    }
+}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/exceptions/HotelNotFoundException.java b/java/services/bookings/src/main/java/com/uva/api/bookings/exceptions/BookingNotFoundException.java
similarity index 50%
rename from java/services/auth/src/main/java/com/uva/authentication/exceptions/HotelNotFoundException.java
rename to java/services/bookings/src/main/java/com/uva/api/bookings/exceptions/BookingNotFoundException.java
index c642139b421a5cf864218fa2d0063f955335c5b7..88557e82abeae5cbd97eec381ac7fbcf757ab01f 100644
--- a/java/services/auth/src/main/java/com/uva/authentication/exceptions/HotelNotFoundException.java
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/exceptions/BookingNotFoundException.java
@@ -1,11 +1,11 @@
-package com.uva.authentication.exceptions;
+package com.uva.api.bookings.exceptions;
 
 import org.springframework.http.HttpStatus;
 import org.springframework.web.bind.annotation.ResponseStatus;
 
 @ResponseStatus(HttpStatus.NOT_FOUND) // Devuelve un 404 cuando se lanza la excepción
-public class HotelNotFoundException extends RuntimeException {
-    public HotelNotFoundException(int id) {
-        super("Hotel not found with id: " + id);
+public class BookingNotFoundException extends RuntimeException {
+    public BookingNotFoundException(int id) {
+        super("Booking not found with id: " + id);
     }
 }
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/exceptions/GlobalExceptionHandler.java b/java/services/bookings/src/main/java/com/uva/api/bookings/exceptions/GlobalExceptionHandler.java
similarity index 74%
rename from java/roomBooking/src/main/java/com/uva/monolith/exceptions/GlobalExceptionHandler.java
rename to java/services/bookings/src/main/java/com/uva/api/bookings/exceptions/GlobalExceptionHandler.java
index 9428c51a9c63c3623d44752c9e3cbe6cf78ac19f..235160805c5ff7907c1af82b56472d2ef4e5d3b5 100644
--- a/java/roomBooking/src/main/java/com/uva/monolith/exceptions/GlobalExceptionHandler.java
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/exceptions/GlobalExceptionHandler.java
@@ -1,9 +1,10 @@
-package com.uva.monolith.exceptions;
+package com.uva.api.bookings.exceptions;
 
 import org.springframework.http.HttpStatus;
 import org.springframework.http.ResponseEntity;
 import org.springframework.web.bind.annotation.ControllerAdvice;
 import org.springframework.web.bind.annotation.ExceptionHandler;
+import org.springframework.web.client.HttpClientErrorException;
 
 import java.time.LocalDateTime;
 import java.util.HashMap;
@@ -12,8 +13,8 @@ import java.util.Map;
 @ControllerAdvice
 public class GlobalExceptionHandler {
 
-    @ExceptionHandler(HotelNotFoundException.class)
-    public ResponseEntity<Map<String, Object>> handleHotelNotFound(HotelNotFoundException ex) {
+    @ExceptionHandler(BookingNotFoundException.class)
+    public ResponseEntity<Map<String, Object>> handleHotelNotFound(BookingNotFoundException ex) {
         Map<String, Object> body = new HashMap<>();
         body.put("timestamp", LocalDateTime.now());
         body.put("message", ex.getMessage());
@@ -21,13 +22,15 @@ public class GlobalExceptionHandler {
         return new ResponseEntity<>(body, HttpStatus.NOT_FOUND);
     }
 
-    @ExceptionHandler(InvalidRequestException.class)
-    public ResponseEntity<Map<String, Object>> handleInvalidRequest(InvalidRequestException ex) {
+    @ExceptionHandler(HttpClientErrorException.class)
+    public ResponseEntity<Map<String, Object>> handleHttpClientError(HttpClientErrorException ex) {
         Map<String, Object> body = new HashMap<>();
         body.put("timestamp", LocalDateTime.now());
         body.put("message", ex.getMessage());
 
-        return new ResponseEntity<>(body, HttpStatus.BAD_REQUEST);
+        ex.printStackTrace(System.err);
+
+        return new ResponseEntity<>(body, ex.getStatusCode());
     }
 
     @ExceptionHandler(InvalidDateRangeException.class)
@@ -41,10 +44,13 @@ public class GlobalExceptionHandler {
 
     @ExceptionHandler(Exception.class)
     public ResponseEntity<Map<String, Object>> handleGeneralException(Exception ex) {
+        ex.printStackTrace(System.err);
         Map<String, Object> body = new HashMap<>();
         body.put("timestamp", LocalDateTime.now());
         body.put("message", "An unexpected error occurred: " + ex.getMessage());
 
+        ex.printStackTrace(System.err);
+
         return new ResponseEntity<>(body, HttpStatus.INTERNAL_SERVER_ERROR);
     }
 }
diff --git a/java/services/auth/src/main/java/com/uva/authentication/exceptions/InvalidDateRangeException.java b/java/services/bookings/src/main/java/com/uva/api/bookings/exceptions/InvalidDateRangeException.java
similarity index 78%
rename from java/services/auth/src/main/java/com/uva/authentication/exceptions/InvalidDateRangeException.java
rename to java/services/bookings/src/main/java/com/uva/api/bookings/exceptions/InvalidDateRangeException.java
index c3dc917fb03495480007365b117e185521cf7bf2..3a232ecb1ed45ee36f14578f76727cd81d340db1 100644
--- a/java/services/auth/src/main/java/com/uva/authentication/exceptions/InvalidDateRangeException.java
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/exceptions/InvalidDateRangeException.java
@@ -1,4 +1,4 @@
-package com.uva.authentication.exceptions;
+package com.uva.api.bookings.exceptions;
 
 public class InvalidDateRangeException extends RuntimeException {
     public InvalidDateRangeException(String message) {
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/filter/JwtAuthenticationFilter.java b/java/services/bookings/src/main/java/com/uva/api/bookings/filter/JwtAuthenticationFilter.java
new file mode 100644
index 0000000000000000000000000000000000000000..289df8b658e4bf31adcc279ee9610228f24bfc40
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/filter/JwtAuthenticationFilter.java
@@ -0,0 +1,101 @@
+package com.uva.api.bookings.filter;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
+import org.springframework.security.core.authority.SimpleGrantedAuthority;
+import org.springframework.security.core.context.SecurityContextHolder;
+import org.springframework.security.web.authentication.WebAuthenticationDetailsSource;
+import org.springframework.stereotype.Component;
+
+import com.uva.api.bookings.models.external.jwt.JwtData;
+import com.uva.api.bookings.models.external.jwt.Service;
+import com.uva.api.bookings.models.external.users.UserRol;
+import com.uva.api.bookings.services.TokenService;
+
+import jakarta.servlet.FilterChain;
+import jakarta.servlet.ServletException;
+import jakarta.servlet.ServletRequest;
+import jakarta.servlet.ServletResponse;
+import jakarta.servlet.http.HttpServletRequest;
+import jakarta.servlet.Filter;
+
+import java.io.IOException;
+import java.time.LocalDateTime;
+import java.util.Collections;
+
+@Component
+public class JwtAuthenticationFilter implements Filter {
+
+    @Autowired
+    private TokenService service;
+
+    private String getTokenFromRequest(HttpServletRequest request) {
+        String authHeader = request.getHeader("Authorization");
+        if (authHeader == null || !authHeader.startsWith("Bearer ")) {
+            return null;
+        }
+        return authHeader.substring(7);
+    }
+
+    private JwtData validateAndDecodeToken(String token) {
+        try {
+            return service.decodeToken(token);
+        } catch (Exception ex) {
+            System.err.println(
+                    "[" + LocalDateTime.now().toString() + "] Error de verificación del token\n");
+            ex.printStackTrace(System.err);
+            return null;
+        }
+    }
+
+    @Override
+    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
+            throws IOException, ServletException {
+
+        HttpServletRequest httpRequest = (HttpServletRequest) request;
+        String token = getTokenFromRequest(httpRequest);
+
+        System.out.println("[" + LocalDateTime.now().toString() + "] TOKEN: " + token + "\n");
+
+        if (token != null) {
+            JwtData jwt = validateAndDecodeToken(token);
+            if (jwt != null) {
+                String email = jwt.getEmail();
+                UserRol role = jwt.getRol();
+                Service service = jwt.getService();
+                String audience = jwt.getAudience();
+
+                System.out.println("[" + LocalDateTime.now().toString() + "] email=" + email + " role=" + role
+                        + " service=" + service + " audience=" + audience + "\n");
+
+                if (audience != null) {
+                    // Definimos la autoridad
+                    String authorityValue = null;
+                    if (audience.equals("INTERNAL") && service != null) {
+                        authorityValue = service.toString();
+                    } else if (audience.equals("EXTERNAL") && role != null) {
+                        authorityValue = String.format("ROLE_%s", role);
+                    }
+
+                    if (authorityValue != null &&
+                            SecurityContextHolder.getContext().getAuthentication() == null) {
+
+                        // Crear la autoridad con la autoridad oportuna
+                        SimpleGrantedAuthority authority = new SimpleGrantedAuthority(authorityValue);
+
+                        // Crear autenticación
+                        UsernamePasswordAuthenticationToken authentication = new UsernamePasswordAuthenticationToken(
+                                email, null, Collections.singletonList(authority));
+                        authentication.setDetails(new WebAuthenticationDetailsSource().buildDetails(httpRequest));
+
+                        // Establecer autenticación en el contexto de seguridad
+                        SecurityContextHolder.getContext().setAuthentication(authentication);
+                    }
+                }
+            }
+        }
+
+        // Continuar con el resto de filtros
+        chain.doFilter(request, response);
+    }
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/models/Booking.java b/java/services/bookings/src/main/java/com/uva/api/bookings/models/Booking.java
new file mode 100644
index 0000000000000000000000000000000000000000..f6a033b0bba44fdf0fcb904987b174d1a60dfb32
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/models/Booking.java
@@ -0,0 +1,49 @@
+package com.uva.api.bookings.models;
+
+import jakarta.persistence.Basic;
+import jakarta.persistence.Column;
+import jakarta.persistence.Entity;
+import jakarta.persistence.GeneratedValue;
+import jakarta.persistence.GenerationType;
+import jakarta.persistence.Id;
+import jakarta.persistence.Table;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.NoArgsConstructor;
+import lombok.ToString;
+
+import java.time.LocalDate;
+
+@Entity
+@Table(name = "bookings")
+@Data
+@ToString
+@EqualsAndHashCode
+@NoArgsConstructor
+@AllArgsConstructor
+public class Booking {
+    @Id
+    @GeneratedValue(strategy = GenerationType.IDENTITY)
+    @Basic(optional = false)
+    private Integer id;
+
+    @Column(name = "user_id", nullable = false)
+    private int userId;
+
+    @Column(name = "manager_id", nullable = false)
+    private int managerId;
+
+    @Column(name = "hotel_id", nullable = false)
+    private int hotelId;
+
+    @Column(name = "room_id", nullable = false)
+    private int roomId;
+
+    @Column(name = "start", nullable = false)
+    private LocalDate start;
+
+    @Column(name = "end", nullable = false)
+    private LocalDate end;
+
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/jwt/JwtData.java b/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/jwt/JwtData.java
new file mode 100644
index 0000000000000000000000000000000000000000..09569e2dd56dd1ecca97d38c97c5ebde182b0ab5
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/jwt/JwtData.java
@@ -0,0 +1,36 @@
+package com.uva.api.bookings.models.external.jwt;
+
+import java.util.Date;
+
+import com.uva.api.bookings.models.external.users.UserRol;
+
+import lombok.Data;
+import lombok.Getter;
+import lombok.Setter;
+import lombok.ToString;
+
+@Getter
+@Setter
+@Data
+@ToString
+public class JwtData {
+
+  private String token;
+
+  private int id = -1;
+  private String name;
+  private String email;
+  private UserRol rol;
+  private Service service;
+
+  private String subject;
+  private String audience;
+  private Long ttl;
+
+  private Date issuedAt;
+  private Date expiresAt;
+
+  public boolean isAdmin() {
+    return rol != null && rol == UserRol.ADMIN;
+  }
+}
\ No newline at end of file
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/jwt/Service.java b/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/jwt/Service.java
new file mode 100644
index 0000000000000000000000000000000000000000..08d10e5b58cae91c9a05d18b013f21b897710148
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/jwt/Service.java
@@ -0,0 +1,8 @@
+package com.uva.api.bookings.models.external.jwt;
+
+public enum Service {
+  USERS,
+  HOTELS,
+  BOOKINGS,
+  AUTHENTICATION
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/users/ClientDTO.java b/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/users/ClientDTO.java
new file mode 100644
index 0000000000000000000000000000000000000000..4a5ea6fa1b808b85954d4f662691ee6dbb2b5796
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/users/ClientDTO.java
@@ -0,0 +1,14 @@
+package com.uva.api.bookings.models.external.users;
+
+import lombok.AllArgsConstructor;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+
+@Getter
+@Setter
+@NoArgsConstructor
+@AllArgsConstructor
+public class ClientDTO {
+  private ClientStatus status;
+}
\ No newline at end of file
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/users/ClientStatus.java b/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/users/ClientStatus.java
new file mode 100644
index 0000000000000000000000000000000000000000..3df8494e69c1c3b6cb35253007081b909c6a88ee
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/users/ClientStatus.java
@@ -0,0 +1,5 @@
+package com.uva.api.bookings.models.external.users;
+
+public enum ClientStatus {
+  NO_BOOKINGS, WITH_ACTIVE_BOOKINGS, WITH_INACTIVE_BOOKINGS;
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/users/UserRol.java b/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/users/UserRol.java
new file mode 100644
index 0000000000000000000000000000000000000000..6fe25fd2dab50a65d630728f35d4165e75958bcc
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/models/external/users/UserRol.java
@@ -0,0 +1,5 @@
+package com.uva.api.bookings.models.external.users;
+
+public enum UserRol {
+  ADMIN, MANAGER, CLIENT
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/repositories/BookingRepository.java b/java/services/bookings/src/main/java/com/uva/api/bookings/repositories/BookingRepository.java
new file mode 100644
index 0000000000000000000000000000000000000000..c55c0d6dbfd52f4bcd40fbc445bf45a8a58eef17
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/repositories/BookingRepository.java
@@ -0,0 +1,60 @@
+// BookingRepository.java
+package com.uva.api.bookings.repositories;
+
+import java.time.LocalDate;
+import java.util.List;
+
+import org.springframework.data.jpa.repository.JpaRepository;
+import org.springframework.data.jpa.repository.Query;
+import org.springframework.data.repository.query.Param;
+
+import com.uva.api.bookings.models.Booking;
+
+import jakarta.transaction.Transactional;
+
+public interface BookingRepository extends JpaRepository<Booking, Integer> {
+
+        // Bookings
+        @Query("SELECT b FROM Booking b WHERE ?1 <= b.end AND ?2 >= b.start")
+        List<Booking> findAllInDateRange(
+                        @Param("start") LocalDate start,
+                        @Param("end") LocalDate end);
+
+        void deleteById(int id);
+
+        // Hotels
+        List<Booking> findAllByRoomId(int roomId);
+
+        @Query("SELECT b FROM Booking b WHERE b.roomId = ?1 AND ?2 <= b.end AND ?3 >= b.start")
+        List<Booking> findAllByRoomIdInDateRange(
+                        @Param("roomId") int roomId,
+                        @Param("start") LocalDate start,
+                        @Param("end") LocalDate end);
+
+        List<Booking> findAllByHotelId(Integer roomId);
+
+        @Transactional
+        void deleteAllByHotelId(int hotelId);
+
+        // Users (Clients or Managers)
+        List<Booking> findAllByUserId(int userId);
+
+        List<Booking> findAllByManagerId(int managerId);
+
+        @Query("SELECT EXISTS (Select b from Booking b where b.userId = ?1 AND b.end >= ?2)")
+        boolean existsActiveByUserIdAndDate(int userId, LocalDate date);
+
+        @Query("SELECT EXISTS (Select b from Booking b where b.userId = ?1 AND b.end < ?2)")
+        boolean existsInactiveByUserIdAndDate(int userId, LocalDate date);
+
+        @Transactional
+        void deleteAllByUserId(int userId);
+
+        @Transactional
+        void deleteAllByManagerId(int managerId);
+
+        @Query("SELECT b from Booking b where b.end = ?1")
+        List<Booking> findAllPassed(LocalDate yesterday);
+        // List<Booking> findAllByEnd(LocalDate end);// también puede ser
+
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/services/BookingService.java b/java/services/bookings/src/main/java/com/uva/api/bookings/services/BookingService.java
new file mode 100644
index 0000000000000000000000000000000000000000..7b4176bbdd5b4a86289eba5fdecb7d0266245829
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/services/BookingService.java
@@ -0,0 +1,270 @@
+package com.uva.api.bookings.services;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Service;
+import org.springframework.web.client.HttpClientErrorException;
+
+import com.uva.api.bookings.api.HotelApi;
+import com.uva.api.bookings.api.UserApi;
+import com.uva.api.bookings.exceptions.BookingNotFoundException;
+import com.uva.api.bookings.exceptions.InvalidDateRangeException;
+import com.uva.api.bookings.models.Booking;
+import com.uva.api.bookings.models.external.users.ClientDTO;
+import com.uva.api.bookings.models.external.users.ClientStatus;
+import com.uva.api.bookings.repositories.BookingRepository;
+
+import java.time.LocalDate;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.function.Consumer;
+import java.util.function.Function;
+
+@Service
+public class BookingService {
+
+    @Autowired
+    private BookingRepository bookingRepository;
+
+    @Autowired
+    private TokenService tokenService;
+
+    @Autowired
+    private HotelApi hotelApi;
+
+    @Autowired
+    private UserApi userApi;
+
+    public ResponseEntity<?> getBookings(
+            String token,
+            LocalDate start, LocalDate end,
+            Integer hotelId, Integer roomId,
+            Integer userId, Integer managerId) {
+        List<Booking> bookings = null;
+
+        if (hotelId != null)
+            tokenService.assertPermission(token, hotelId);
+        if (userId != null)
+            tokenService.assertPermission(token, userId);
+        if (managerId != null)
+            tokenService.assertPermission(token, managerId);
+
+        if (start != null && end != null) {
+            if (start.isAfter(end))
+                throw new InvalidDateRangeException("Start can't be before than end");
+
+            bookings = bookingRepository.findAllInDateRange(start, end);
+        }
+
+        if (roomId != null) {
+            if (bookings == null) {
+                bookings = bookingRepository.findAllByRoomId(roomId);
+            } else {
+                bookings = bookings.stream()
+                        .filter(booking -> booking.getRoomId() == roomId)
+                        .toList();
+            }
+        } else if (hotelId != null) {
+            if (bookings == null) {
+                bookings = bookingRepository.findAllByHotelId(hotelId);
+            } else {
+                bookings = bookings.stream()
+                        .filter(booking -> booking.getHotelId() == hotelId)
+                        .toList();
+            }
+        }
+
+        if (userId != null) {
+            if (bookings == null) {
+                bookings = bookingRepository.findAllByUserId(userId);
+            } else {
+                bookings = bookings.stream()
+                        .filter(booking -> booking.getUserId() == userId)
+                        .toList();
+            }
+        } else if (managerId != null) {
+            if (bookings == null) {
+                bookings = bookingRepository.findAllByManagerId(managerId);
+            } else {
+                bookings = bookings.stream()
+                        .filter(booking -> booking.getManagerId() == managerId)
+                        .toList();
+            }
+        }
+
+        if (bookings == null) {
+            bookings = bookingRepository.findAll();
+        }
+
+        return ResponseEntity.ok(bookings);
+    }
+
+    public ResponseEntity<Booking> createBooking(Booking booking) {
+        if (booking.getId() != null)
+            booking.setId(null);
+
+        if (booking.getStart().isAfter(booking.getEnd()))
+            throw new HttpClientErrorException(HttpStatus.BAD_REQUEST,
+                    "La reserva no puede acabar antes de que empiece");
+
+        int userId = booking.getUserId();
+        int roomId = booking.getRoomId();
+        int hotelId = booking.getHotelId();
+        int managerId = booking.getManagerId();
+
+        List<Booking> existingBookings = bookingRepository.findAllByRoomIdInDateRange(roomId, booking.getStart(),
+                booking.getEnd());
+
+        // Local checks first
+        if (!existingBookings.isEmpty())
+            throw new HttpClientErrorException(HttpStatus.BAD_REQUEST,
+                    "Room is not available for the selected dates");
+
+        if (!userApi.existsManagerById(managerId))
+            throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Manager not found");
+
+        if (!hotelApi.existsById(hotelId, roomId))
+            throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Hotel or room not found");
+
+        ClientDTO client = userApi.findClientById(userId);
+
+        if (client == null)
+            throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "User not found");
+
+        if (client.getStatus() != ClientStatus.WITH_ACTIVE_BOOKINGS)
+            userApi.updateClientState(userId, ClientStatus.WITH_ACTIVE_BOOKINGS);
+
+        booking = bookingRepository.save(booking);
+
+        return ResponseEntity.ok(booking);
+    }
+
+    /**
+     * Consulta una reserva por id y asegura que la entidad que la consulte sea un
+     * servicio/administrador o el dueño (cliente)
+     * 
+     * @param token
+     * @param id
+     * @return
+     */
+    public Booking findById(String token, Integer id) {
+        Booking b = bookingRepository.findById(id)
+                .orElseThrow(() -> new BookingNotFoundException(id));
+        tokenService.assertPermission(token, b.getUserId());
+        return b;
+    }
+
+    public ResponseEntity<?> getBookingById(String token, Integer id) {
+        Booking booking = findById(token, id);
+        bookingRepository.deleteById(id);
+        return ResponseEntity.ok(booking);
+    }
+
+    private ClientStatus calculateClientStatus(int id) {
+        return calculateClientStatus(id, null);
+    }
+
+    private ClientStatus calculateClientStatus(int id, LocalDate date) {
+
+        date = date != null ? date : LocalDate.now();
+
+        boolean hasActiveBookings = bookingRepository.existsActiveByUserIdAndDate(id, date);
+        boolean hasInactiveBookings = bookingRepository.existsInactiveByUserIdAndDate(id, date);
+
+        ClientStatus status;
+        if (hasActiveBookings) {
+            status = ClientStatus.WITH_ACTIVE_BOOKINGS;
+        } else if (hasInactiveBookings) {
+            status = ClientStatus.WITH_INACTIVE_BOOKINGS;
+        } else {
+            status = ClientStatus.NO_BOOKINGS;
+        }
+        return status;
+    }
+
+    public ResponseEntity<?> deleteBooking(String token, Integer id) {
+        Booking booking = findById(token, id);
+        bookingRepository.deleteById(id);
+        bookingRepository.flush();
+
+        ClientStatus status = calculateClientStatus(booking.getUserId());
+        // In this case, the check if the client has already de state is expensive
+        userApi.updateClientState(booking.getUserId(), status);
+
+        return ResponseEntity.ok(booking);
+    }
+
+    private List<Booking> deleteAll(int id,
+            Function<Integer, List<Booking>> findAction,
+            Consumer<Integer> deleteAction) {
+        List<Booking> bookings = findAction.apply(id);
+
+        if (bookings.isEmpty())
+            return new ArrayList<>();
+
+        deleteAction.accept(id);
+
+        return bookings;
+    }
+
+    private List<Booking> deleteAllByHotelId(Integer userId) {
+        return deleteAll(userId,
+                bookingRepository::findAllByHotelId,
+                bookingRepository::deleteAllByHotelId);
+    }
+
+    private List<Booking> deleteAllByManagerId(Integer userId) {
+        return deleteAll(userId,
+                bookingRepository::findAllByManagerId,
+                bookingRepository::deleteAllByManagerId);
+    }
+
+    private List<Booking> deleteAllByUserId(Integer userId) {
+        return deleteAll(userId,
+                bookingRepository::findAllByUserId,
+                bookingRepository::deleteAllByUserId);
+    }
+
+    public ResponseEntity<?> deleteBookings(
+            Integer hotelId,
+            Integer managerId, Integer userId) {
+
+        List<Booking> bookings;
+        String message;
+        if (managerId != null) {
+            bookings = deleteAllByManagerId(managerId);
+            message = "No bookings for this manager";
+        } else if (hotelId != null) {
+            bookings = deleteAllByHotelId(hotelId);
+            message = "No bookings for this hotel";
+        } else if (userId != null) {
+            bookings = deleteAllByUserId(userId);
+            message = "No bookings for this hotel";
+        } else {
+            throw new HttpClientErrorException(HttpStatus.BAD_REQUEST);
+        }
+        if (bookings.isEmpty()) {
+            throw new HttpClientErrorException(HttpStatus.NOT_FOUND, message);
+        }
+        return ResponseEntity.ok(bookings);
+    }
+
+    /**
+     * Obtiene los ids de los cliente cuyas reservas finalizaron el dia anterior y
+     * actualiza su estado al nuevo
+     * 
+     * @return
+     */
+    public long performDailyClientsStateUpdate() {
+        LocalDate yesterday = LocalDate.now().minusDays(1);
+
+        List<Booking> passedBookings = bookingRepository.findAllPassed(yesterday);
+
+        return passedBookings.stream().map(Booking::getUserId).distinct().map(userId -> {
+            ClientStatus status = calculateClientStatus(userId);
+            userApi.updateClientState(userId, status);
+            return userId;
+        }).count();
+    }
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/services/TokenService.java b/java/services/bookings/src/main/java/com/uva/api/bookings/services/TokenService.java
new file mode 100644
index 0000000000000000000000000000000000000000..75cdafc9e6c688eaf913af5fbdf7e9580646ede3
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/services/TokenService.java
@@ -0,0 +1,82 @@
+package com.uva.api.bookings.services;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.stereotype.Service;
+import org.springframework.web.client.HttpClientErrorException;
+
+import com.uva.api.bookings.api.TokenAPI;
+import com.uva.api.bookings.models.external.jwt.JwtData;
+
+@Service
+public class TokenService {
+
+  @Autowired
+  private TokenAPI api;
+
+  private JwtData ownToken;
+  private Map<String, JwtData> cache = new HashMap<>();
+
+  private boolean expireSoon(JwtData decoded) {
+    return (decoded.getExpiresAt().getTime() - System.currentTimeMillis()) / 1000 <= 10;
+  }
+
+  public String getServiceToken() {
+    if (ownToken == null || expireSoon(ownToken)) {
+      System.out.println("\nGenerando token");
+      long s = System.currentTimeMillis();
+      ownToken = api.getServiceToken();
+      long t = System.currentTimeMillis() - s;
+      System.out.println("Token Generando en " + t + " ms\n");
+    }
+    return ownToken.getToken();
+  }
+
+  public JwtData decodeToken(String token) {
+    JwtData decoded;
+    if (cache.containsKey(token)) {
+      decoded = cache.get(token);
+      if (!expireSoon(decoded))
+        return cache.get(token);
+    }
+    System.out.println("\nActualizando token");
+    long s = System.currentTimeMillis();
+    decoded = api.decodeToken(token);
+    long t = System.currentTimeMillis() - s;
+    System.out.println("Actualizando token en " + t + " ms\n");
+    cache.put(token, decoded);
+    return decoded;
+  }
+
+  /**
+   * Valida que la entidad representada con el token tenga permisos de
+   * administrador, sea un servicio o sea el dueño del recurso (idExpected)
+   * 
+   * @param token
+   * @param idExpected
+   */
+  public void assertPermission(String token, int idExpected) {
+    JwtData decoded = decodeToken(token);
+    boolean isOwner = decoded.getId() == idExpected;
+    if (!isOwner)
+      assertPermission(token);
+  }
+
+  /**
+   * Valida que la entidad representada con el token tenga permisos de
+   * administrador o sea un servicio
+   * 
+   * @param token
+   */
+  public void assertPermission(String token) {
+    JwtData decoded = decodeToken(token);
+    boolean isAdmin = decoded.isAdmin();
+    boolean isService = decoded.getService() != null && decoded.getAudience().equals("INTERNAL");
+    if (!isAdmin && !isService)
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN);
+  }
+
+}
diff --git a/java/services/bookings/src/main/java/com/uva/api/bookings/utils/Utils.java b/java/services/bookings/src/main/java/com/uva/api/bookings/utils/Utils.java
new file mode 100644
index 0000000000000000000000000000000000000000..94e02987b9f241d9b35f42964305dbbcbcfbd231
--- /dev/null
+++ b/java/services/bookings/src/main/java/com/uva/api/bookings/utils/Utils.java
@@ -0,0 +1,14 @@
+package com.uva.api.bookings.utils;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.web.client.HttpClientErrorException;
+
+public class Utils {
+
+  public static String getToken(String authorization) {
+    String prefix = "Bearer ";
+    if (!authorization.startsWith(prefix))
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN);
+    return authorization.substring(prefix.length());
+  }
+}
diff --git a/java/services/bookings/src/main/resources/application.properties b/java/services/bookings/src/main/resources/application.properties
new file mode 100644
index 0000000000000000000000000000000000000000..9198f9718981af51cc83c4bd5ae8ee6150e86a52
--- /dev/null
+++ b/java/services/bookings/src/main/resources/application.properties
@@ -0,0 +1,16 @@
+spring.application.name=bookings
+server.port=8401
+spring.jpa.hibernate.ddl-auto=update
+spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect
+spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3306/Bookings?createDatabaseIfNotExist=true
+spring.datasource.username=user
+spring.datasource.password=password
+spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
+
+spring.security.user.name=user
+spring.security.user.password=password
+
+services.internal.token.url=http://localhost:8101/token
+services.external.clients.url=http://localhost:8201/users/clients
+services.external.managers.url=http://localhost:8201/users/managers
+services.external.hotels.url=http://localhost:8301/hotels
\ No newline at end of file
diff --git a/java/roomBooking/src/test/java/com/uva/roomBooking/RoomBookingApplicationTests.java b/java/services/bookings/src/test/java/com/uva/roomBooking/RoomBookingApplicationTests.java
similarity index 100%
rename from java/roomBooking/src/test/java/com/uva/roomBooking/RoomBookingApplicationTests.java
rename to java/services/bookings/src/test/java/com/uva/roomBooking/RoomBookingApplicationTests.java
diff --git a/java/services/hotels/.gitignore b/java/services/hotels/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..549e00a2a96fa9d7c5dbc9859664a78d980158c2
--- /dev/null
+++ b/java/services/hotels/.gitignore
@@ -0,0 +1,33 @@
+HELP.md
+target/
+!.mvn/wrapper/maven-wrapper.jar
+!**/src/main/**/target/
+!**/src/test/**/target/
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+!**/src/main/**/build/
+!**/src/test/**/build/
+
+### VS Code ###
+.vscode/
diff --git a/java/services/hotels/.mvn/wrapper/maven-wrapper.properties b/java/services/hotels/.mvn/wrapper/maven-wrapper.properties
new file mode 100644
index 0000000000000000000000000000000000000000..d58dfb70bab565a697e6854eb012d17e0fd39bd4
--- /dev/null
+++ b/java/services/hotels/.mvn/wrapper/maven-wrapper.properties
@@ -0,0 +1,19 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+wrapperVersion=3.3.2
+distributionType=only-script
+distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
diff --git a/java/services/hotels/Dockerfile b/java/services/hotels/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..8d0b79d6514534deddac782fc9367bcdbcaf89c3
--- /dev/null
+++ b/java/services/hotels/Dockerfile
@@ -0,0 +1,10 @@
+FROM maven:3-openjdk-17 AS maven
+WORKDIR /app
+COPY ./ ./
+RUN mvn -Dmaven.test.skip clean package
+FROM openjdk:17-jdk-oracle
+ARG JAR_FILE=/app/target/*.jar
+COPY --from=maven ${JAR_FILE} app.jar
+ENV PORT 8080
+EXPOSE $PORT
+ENTRYPOINT ["java","-jar", "/app.jar"]
\ No newline at end of file
diff --git a/java/services/hotels/mvnw b/java/services/hotels/mvnw
new file mode 100755
index 0000000000000000000000000000000000000000..19529ddf8c6eaa08c5c75ff80652d21ce4b72f8c
--- /dev/null
+++ b/java/services/hotels/mvnw
@@ -0,0 +1,259 @@
+#!/bin/sh
+# ----------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ----------------------------------------------------------------------------
+
+# ----------------------------------------------------------------------------
+# Apache Maven Wrapper startup batch script, version 3.3.2
+#
+# Optional ENV vars
+# -----------------
+#   JAVA_HOME - location of a JDK home dir, required when download maven via java source
+#   MVNW_REPOURL - repo url base for downloading maven distribution
+#   MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
+#   MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output
+# ----------------------------------------------------------------------------
+
+set -euf
+[ "${MVNW_VERBOSE-}" != debug ] || set -x
+
+# OS specific support.
+native_path() { printf %s\\n "$1"; }
+case "$(uname)" in
+CYGWIN* | MINGW*)
+  [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")"
+  native_path() { cygpath --path --windows "$1"; }
+  ;;
+esac
+
+# set JAVACMD and JAVACCMD
+set_java_home() {
+  # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched
+  if [ -n "${JAVA_HOME-}" ]; then
+    if [ -x "$JAVA_HOME/jre/sh/java" ]; then
+      # IBM's JDK on AIX uses strange locations for the executables
+      JAVACMD="$JAVA_HOME/jre/sh/java"
+      JAVACCMD="$JAVA_HOME/jre/sh/javac"
+    else
+      JAVACMD="$JAVA_HOME/bin/java"
+      JAVACCMD="$JAVA_HOME/bin/javac"
+
+      if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then
+        echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2
+        echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2
+        return 1
+      fi
+    fi
+  else
+    JAVACMD="$(
+      'set' +e
+      'unset' -f command 2>/dev/null
+      'command' -v java
+    )" || :
+    JAVACCMD="$(
+      'set' +e
+      'unset' -f command 2>/dev/null
+      'command' -v javac
+    )" || :
+
+    if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then
+      echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2
+      return 1
+    fi
+  fi
+}
+
+# hash string like Java String::hashCode
+hash_string() {
+  str="${1:-}" h=0
+  while [ -n "$str" ]; do
+    char="${str%"${str#?}"}"
+    h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296))
+    str="${str#?}"
+  done
+  printf %x\\n $h
+}
+
+verbose() { :; }
+[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; }
+
+die() {
+  printf %s\\n "$1" >&2
+  exit 1
+}
+
+trim() {
+  # MWRAPPER-139:
+  #   Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds.
+  #   Needed for removing poorly interpreted newline sequences when running in more
+  #   exotic environments such as mingw bash on Windows.
+  printf "%s" "${1}" | tr -d '[:space:]'
+}
+
+# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties
+while IFS="=" read -r key value; do
+  case "${key-}" in
+  distributionUrl) distributionUrl=$(trim "${value-}") ;;
+  distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;;
+  esac
+done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties"
+[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties"
+
+case "${distributionUrl##*/}" in
+maven-mvnd-*bin.*)
+  MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/
+  case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in
+  *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;;
+  :Darwin*x86_64) distributionPlatform=darwin-amd64 ;;
+  :Darwin*arm64) distributionPlatform=darwin-aarch64 ;;
+  :Linux*x86_64*) distributionPlatform=linux-amd64 ;;
+  *)
+    echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2
+    distributionPlatform=linux-amd64
+    ;;
+  esac
+  distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip"
+  ;;
+maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;;
+*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;;
+esac
+
+# apply MVNW_REPOURL and calculate MAVEN_HOME
+# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash>
+[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}"
+distributionUrlName="${distributionUrl##*/}"
+distributionUrlNameMain="${distributionUrlName%.*}"
+distributionUrlNameMain="${distributionUrlNameMain%-bin}"
+MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}"
+MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")"
+
+exec_maven() {
+  unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || :
+  exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD"
+}
+
+if [ -d "$MAVEN_HOME" ]; then
+  verbose "found existing MAVEN_HOME at $MAVEN_HOME"
+  exec_maven "$@"
+fi
+
+case "${distributionUrl-}" in
+*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;;
+*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;;
+esac
+
+# prepare tmp dir
+if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then
+  clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; }
+  trap clean HUP INT TERM EXIT
+else
+  die "cannot create temp dir"
+fi
+
+mkdir -p -- "${MAVEN_HOME%/*}"
+
+# Download and Install Apache Maven
+verbose "Couldn't find MAVEN_HOME, downloading and installing it ..."
+verbose "Downloading from: $distributionUrl"
+verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName"
+
+# select .zip or .tar.gz
+if ! command -v unzip >/dev/null; then
+  distributionUrl="${distributionUrl%.zip}.tar.gz"
+  distributionUrlName="${distributionUrl##*/}"
+fi
+
+# verbose opt
+__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR=''
+[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v
+
+# normalize http auth
+case "${MVNW_PASSWORD:+has-password}" in
+'') MVNW_USERNAME='' MVNW_PASSWORD='' ;;
+has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;;
+esac
+
+if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then
+  verbose "Found wget ... using wget"
+  wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl"
+elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then
+  verbose "Found curl ... using curl"
+  curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl"
+elif set_java_home; then
+  verbose "Falling back to use Java to download"
+  javaSource="$TMP_DOWNLOAD_DIR/Downloader.java"
+  targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName"
+  cat >"$javaSource" <<-END
+	public class Downloader extends java.net.Authenticator
+	{
+	  protected java.net.PasswordAuthentication getPasswordAuthentication()
+	  {
+	    return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() );
+	  }
+	  public static void main( String[] args ) throws Exception
+	  {
+	    setDefault( new Downloader() );
+	    java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() );
+	  }
+	}
+	END
+  # For Cygwin/MinGW, switch paths to Windows format before running javac and java
+  verbose " - Compiling Downloader.java ..."
+  "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java"
+  verbose " - Running Downloader.java ..."
+  "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")"
+fi
+
+# If specified, validate the SHA-256 sum of the Maven distribution zip file
+if [ -n "${distributionSha256Sum-}" ]; then
+  distributionSha256Result=false
+  if [ "$MVN_CMD" = mvnd.sh ]; then
+    echo "Checksum validation is not supported for maven-mvnd." >&2
+    echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2
+    exit 1
+  elif command -v sha256sum >/dev/null; then
+    if echo "$distributionSha256Sum  $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then
+      distributionSha256Result=true
+    fi
+  elif command -v shasum >/dev/null; then
+    if echo "$distributionSha256Sum  $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then
+      distributionSha256Result=true
+    fi
+  else
+    echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2
+    echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2
+    exit 1
+  fi
+  if [ $distributionSha256Result = false ]; then
+    echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2
+    echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2
+    exit 1
+  fi
+fi
+
+# unzip and move
+if command -v unzip >/dev/null; then
+  unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip"
+else
+  tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar"
+fi
+printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url"
+mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME"
+
+clean || :
+exec_maven "$@"
diff --git a/java/services/hotels/mvnw.cmd b/java/services/hotels/mvnw.cmd
new file mode 100644
index 0000000000000000000000000000000000000000..249bdf3822221aa612d1da2605316cabd7b07e50
--- /dev/null
+++ b/java/services/hotels/mvnw.cmd
@@ -0,0 +1,149 @@
+<# : batch portion
+@REM ----------------------------------------------------------------------------
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+@REM
+@REM    http://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+@REM ----------------------------------------------------------------------------
+
+@REM ----------------------------------------------------------------------------
+@REM Apache Maven Wrapper startup batch script, version 3.3.2
+@REM
+@REM Optional ENV vars
+@REM   MVNW_REPOURL - repo url base for downloading maven distribution
+@REM   MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
+@REM   MVNW_VERBOSE - true: enable verbose log; others: silence the output
+@REM ----------------------------------------------------------------------------
+
+@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0)
+@SET __MVNW_CMD__=
+@SET __MVNW_ERROR__=
+@SET __MVNW_PSMODULEP_SAVE=%PSModulePath%
+@SET PSModulePath=
+@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @(
+  IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B)
+)
+@SET PSModulePath=%__MVNW_PSMODULEP_SAVE%
+@SET __MVNW_PSMODULEP_SAVE=
+@SET __MVNW_ARG0_NAME__=
+@SET MVNW_USERNAME=
+@SET MVNW_PASSWORD=
+@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*)
+@echo Cannot start maven from wrapper >&2 && exit /b 1
+@GOTO :EOF
+: end batch / begin powershell #>
+
+$ErrorActionPreference = "Stop"
+if ($env:MVNW_VERBOSE -eq "true") {
+  $VerbosePreference = "Continue"
+}
+
+# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties
+$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl
+if (!$distributionUrl) {
+  Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties"
+}
+
+switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) {
+  "maven-mvnd-*" {
+    $USE_MVND = $true
+    $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip"
+    $MVN_CMD = "mvnd.cmd"
+    break
+  }
+  default {
+    $USE_MVND = $false
+    $MVN_CMD = $script -replace '^mvnw','mvn'
+    break
+  }
+}
+
+# apply MVNW_REPOURL and calculate MAVEN_HOME
+# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash>
+if ($env:MVNW_REPOURL) {
+  $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" }
+  $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')"
+}
+$distributionUrlName = $distributionUrl -replace '^.*/',''
+$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$',''
+$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain"
+if ($env:MAVEN_USER_HOME) {
+  $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain"
+}
+$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join ''
+$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME"
+
+if (Test-Path -Path "$MAVEN_HOME" -PathType Container) {
+  Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME"
+  Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD"
+  exit $?
+}
+
+if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) {
+  Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl"
+}
+
+# prepare tmp dir
+$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile
+$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir"
+$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null
+trap {
+  if ($TMP_DOWNLOAD_DIR.Exists) {
+    try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null }
+    catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" }
+  }
+}
+
+New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null
+
+# Download and Install Apache Maven
+Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..."
+Write-Verbose "Downloading from: $distributionUrl"
+Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName"
+
+$webclient = New-Object System.Net.WebClient
+if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) {
+  $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD)
+}
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null
+
+# If specified, validate the SHA-256 sum of the Maven distribution zip file
+$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum
+if ($distributionSha256Sum) {
+  if ($USE_MVND) {
+    Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties."
+  }
+  Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash
+  if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) {
+    Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property."
+  }
+}
+
+# unzip and move
+Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null
+Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null
+try {
+  Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null
+} catch {
+  if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) {
+    Write-Error "fail to move MAVEN_HOME"
+  }
+} finally {
+  try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null }
+  catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" }
+}
+
+Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD"
diff --git a/java/services/hotels/pom.xml b/java/services/hotels/pom.xml
new file mode 100644
index 0000000000000000000000000000000000000000..32f7445a3377d3f1a5dbf6852c29b8b1c027c707
--- /dev/null
+++ b/java/services/hotels/pom.xml
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<parent>
+		<groupId>org.springframework.boot</groupId>
+		<artifactId>spring-boot-starter-parent</artifactId>
+		<version>3.3.4</version>
+		<relativePath/> <!-- lookup parent from repository -->
+	</parent>
+	<groupId>com.uva</groupId>
+	<artifactId>hotels</artifactId>
+	<version>0.0.1-SNAPSHOT</version>
+	<name>hotels</name>
+	<description>Hotels rest microservice</description>
+	<url/>
+	<licenses>
+		<license/>
+	</licenses>
+	<developers>
+		<developer/>
+	</developers>
+	<scm>
+		<connection/>
+		<developerConnection/>
+		<tag/>
+		<url/>
+	</scm>
+	<properties>
+		<java.version>17</java.version>
+	</properties>
+	<dependencies>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-data-jpa</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-data-rest</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>com.mysql</groupId>
+			<artifactId>mysql-connector-j</artifactId>
+			<scope>runtime</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-test</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
+		<dependency>
+			<groupId>org.projectlombok</groupId>
+			<artifactId>lombok</artifactId>
+			<version>1.18.36</version>
+			<scope>provided</scope>
+		</dependency>
+			<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-security</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>com.auth0</groupId>
+			<artifactId>java-jwt</artifactId>
+			<version>4.4.0</version>
+		</dependency>
+		<dependency>
+			<groupId>jakarta.servlet</groupId>
+			<artifactId>jakarta.servlet-api</artifactId>
+			<scope>provided</scope>
+		</dependency>
+	</dependencies>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.springframework.boot</groupId>
+				<artifactId>spring-boot-maven-plugin</artifactId>
+			</plugin>
+		</plugins>
+	</build>
+
+</project>
\ No newline at end of file
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/RoomBookingApplication.java b/java/services/hotels/src/main/java/com/uva/api/hotels/HotelsApplication.java
similarity index 60%
rename from java/roomBooking/src/main/java/com/uva/monolith/RoomBookingApplication.java
rename to java/services/hotels/src/main/java/com/uva/api/hotels/HotelsApplication.java
index 0a5db248da6e6be909302e323931f79151b0ed62..d764ac3252919c2bb7411b5274f308a9443cead7 100644
--- a/java/roomBooking/src/main/java/com/uva/monolith/RoomBookingApplication.java
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/HotelsApplication.java
@@ -1,13 +1,13 @@
-package com.uva.monolith;
+package com.uva.api.hotels;
 
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
 
 @SpringBootApplication
-public class RoomBookingApplication {
+public class HotelsApplication {
 
 	public static void main(String[] args) {
-		SpringApplication.run(RoomBookingApplication.class, args);
+		SpringApplication.run(HotelsApplication.class, args);
 	}
 
 }
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/apis/BookingAPI.java b/java/services/hotels/src/main/java/com/uva/api/hotels/apis/BookingAPI.java
new file mode 100644
index 0000000000000000000000000000000000000000..6cf93f831b34ab450a403557ae139b53675bae32
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/apis/BookingAPI.java
@@ -0,0 +1,65 @@
+package com.uva.api.hotels.apis;
+
+import java.time.LocalDate;
+import java.util.HashSet;
+import java.util.Map;
+import java.util.Set;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.http.HttpStatus;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.HttpClientErrorException;
+import org.springframework.web.client.RestTemplate;
+
+@Component
+public class BookingAPI {
+
+  @Autowired
+  private RestTemplate restTemplate;
+
+  @Value("${services.external.bookings.url}")
+  private String BOOKING_API_URL;
+
+  public Set<Integer> getNotAvailableRooms(LocalDate start, LocalDate end) {
+    String url = BOOKING_API_URL + "?start={start}&end={end}";
+    Map<?, ?>[] bookingsArray = restTemplate
+        .getForObject(url, Map[].class, start, end);
+    Set<Integer> notAvailableRooms = new HashSet<>();
+    for (Map<?, ?> booking : bookingsArray)
+      notAvailableRooms.add((Integer) booking.get("roomId"));
+
+    return notAvailableRooms;
+  }
+
+  public Set<Integer> getNotAvailableRooms(int hotelId, LocalDate start, LocalDate end) {
+    String url = BOOKING_API_URL + "?hotelId={hotelId}&start={start}&end={end}";
+    Map<?, ?>[] bookingsArray = restTemplate
+        .getForObject(url, Map[].class, hotelId, start, end);
+    Set<Integer> notAvailableRooms = new HashSet<>();
+    for (Map<?, ?> booking : bookingsArray)
+      notAvailableRooms.add((Integer) booking.get("roomId"));
+
+    return notAvailableRooms;
+  }
+
+  public void deleteAllByHotelId(Integer id) {
+    try {
+      String url = BOOKING_API_URL + "?hotelId={id}";
+      restTemplate.delete(url, id);
+    } catch (HttpClientErrorException ex) {
+      if (ex.getStatusCode() != HttpStatus.NOT_FOUND)
+        throw ex;
+    }
+  }
+
+  public void deleteAllByManagerId(Integer managerId) {
+    try {
+      String url = BOOKING_API_URL + "?managerId={managerId}";
+      restTemplate.delete(url, managerId);
+    } catch (HttpClientErrorException ex) {
+      if (ex.getStatusCode() != HttpStatus.NOT_FOUND)
+        throw ex;
+    }
+  }
+}
\ No newline at end of file
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/apis/ManagerAPI.java b/java/services/hotels/src/main/java/com/uva/api/hotels/apis/ManagerAPI.java
new file mode 100644
index 0000000000000000000000000000000000000000..7b07860f6edae9572fbe28f20ac345a975ca15b9
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/apis/ManagerAPI.java
@@ -0,0 +1,33 @@
+package com.uva.api.hotels.apis;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.http.HttpStatus;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.HttpClientErrorException;
+import org.springframework.web.client.RestTemplate;
+
+import com.fasterxml.jackson.databind.JsonNode;
+
+@Component
+public class ManagerAPI {
+
+  @Autowired
+  private RestTemplate restTemplate;
+
+  @Value("${services.external.managers.url}")
+  private String MANAGERS_API_URL;
+
+  public Boolean existsManagerById(int id) {
+    try {
+      String url = MANAGERS_API_URL + "/{id}";
+      return restTemplate.getForEntity(url, JsonNode.class, id).getStatusCode() == HttpStatus.OK;
+    } catch (HttpClientErrorException e) {
+      e.printStackTrace(System.err);
+      if (e.getStatusCode() != HttpStatus.NOT_FOUND)
+        throw e;
+      return false;
+    }
+  }
+
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/apis/TokenAPI.java b/java/services/hotels/src/main/java/com/uva/api/hotels/apis/TokenAPI.java
new file mode 100644
index 0000000000000000000000000000000000000000..9fbad4321bf13778b77a152bba94c7155d8926be
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/apis/TokenAPI.java
@@ -0,0 +1,47 @@
+package com.uva.api.hotels.apis;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Qualifier;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.RestTemplate;
+
+import com.fasterxml.jackson.databind.JsonNode;
+import com.uva.api.hotels.models.external.jwt.JwtData;
+
+@Component
+public class TokenAPI {
+
+  private final RestTemplate restTemplate;
+
+  public TokenAPI(@Qualifier("simpleRestTemplate") RestTemplate restTemplate) {
+    this.restTemplate = restTemplate;
+  }
+
+  @Value("${spring.application.name}")
+  private String service;
+
+  @Value("${services.internal.token.url}")
+  private String TOKEN_API_URL;
+
+  public JwtData getServiceToken() {
+    String url = TOKEN_API_URL + "/service";
+    Map<String, String> body = new HashMap<>();
+    body.put("service", service);
+    String token = restTemplate.postForObject(url, body, JsonNode.class)
+        .get("token").asText();
+    return decodeToken(token);
+  }
+
+  public JwtData decodeToken(String token) {
+    String url = TOKEN_API_URL + "/info";
+    Map<String, String> body = new HashMap<>();
+    body.put("token", token);
+    JwtData response = restTemplate.postForObject(url, body, JwtData.class);
+    response.setToken(token);
+    return response;
+  }
+
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/config/RestTemplateConfig.java b/java/services/hotels/src/main/java/com/uva/api/hotels/config/RestTemplateConfig.java
new file mode 100644
index 0000000000000000000000000000000000000000..211cd5e2a97b49f802d2578e8a35f77b0a88d1ec
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/config/RestTemplateConfig.java
@@ -0,0 +1,23 @@
+package com.uva.api.hotels.config;
+
+import java.util.List;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.web.client.RestTemplate;
+
+@Configuration
+public class RestTemplateConfig {
+
+    @Bean("simpleRestTemplate")
+    RestTemplate simpleRestTemplate() {
+        return new RestTemplate();
+    }
+
+    @Bean
+    RestTemplate restTemplate(RestTemplateInterceptor interceptor) {
+        RestTemplate restTemplate = new RestTemplate();
+        restTemplate.setInterceptors(List.of(interceptor));
+        return restTemplate;
+    }
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/config/RestTemplateInterceptor.java b/java/services/hotels/src/main/java/com/uva/api/hotels/config/RestTemplateInterceptor.java
new file mode 100644
index 0000000000000000000000000000000000000000..a8f31f022782a044d0d5596ea106d6b12e47f2e2
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/config/RestTemplateInterceptor.java
@@ -0,0 +1,30 @@
+package com.uva.api.hotels.config;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpRequest;
+import org.springframework.http.client.ClientHttpRequestExecution;
+import org.springframework.http.client.ClientHttpResponse;
+import org.springframework.http.client.ClientHttpRequestInterceptor;
+import org.springframework.stereotype.Component;
+
+import com.uva.api.hotels.services.TokenService;
+
+import java.io.IOException;
+
+@Component
+public class RestTemplateInterceptor implements ClientHttpRequestInterceptor {
+
+  @Autowired
+  private TokenService service;
+
+  @Override
+  public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution)
+      throws IOException {
+
+    String jwtToken = service.getServiceToken();
+
+    request.getHeaders().add("Authorization", "Bearer " + jwtToken);
+
+    return execution.execute(request, body);
+  }
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/config/SecurityConfig.java b/java/services/hotels/src/main/java/com/uva/api/hotels/config/SecurityConfig.java
new file mode 100644
index 0000000000000000000000000000000000000000..c452bae044fe48bd4c79a5ee8f687f78d6a9ebd0
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/config/SecurityConfig.java
@@ -0,0 +1,86 @@
+package com.uva.api.hotels.config;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.http.HttpMethod;
+import static org.springframework.http.HttpMethod.*;
+import org.springframework.security.config.annotation.web.builders.HttpSecurity;
+import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
+import org.springframework.security.web.SecurityFilterChain;
+import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
+
+import com.uva.api.hotels.filter.JwtAuthenticationFilter;
+import com.uva.api.hotels.models.external.jwt.Service;
+import com.uva.api.hotels.models.external.users.UserRol;
+import static com.uva.api.hotels.models.external.users.UserRol.*;
+
+@Configuration
+@EnableWebSecurity
+public class SecurityConfig {
+
+  private final JwtAuthenticationFilter jwtAuthenticationFilter;
+  private final String[] SERVICES = flat(Service.values());
+
+  public SecurityConfig(JwtAuthenticationFilter jwtAuthenticationFilter) {
+    this.jwtAuthenticationFilter = jwtAuthenticationFilter;
+  }
+
+  private String[] flat(UserRol... roles) {
+    return java.util.Arrays.stream(roles)
+        .map(Enum::toString)
+        .map(role -> String.format("ROLE_%s", role))
+        .toArray(String[]::new);
+  }
+
+  private String[] flat(Service... services) {
+    return java.util.Arrays.stream(services)
+        .map(Enum::toString)
+        .toArray(String[]::new);
+  }
+
+  private String[] join(String[]... authority) {
+    return java.util.Arrays.stream(authority)
+        .flatMap(java.util.Arrays::stream)
+        .toArray(String[]::new);
+  }
+
+  /**
+   * All services and specified roles
+   * 
+   * @param roles
+   * @return
+   */
+  private String[] anyService(UserRol... roles) {
+    return join(flat(roles), SERVICES);
+  }
+
+  @Bean
+  SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
+    http.csrf(csrf -> csrf.disable())
+        .authorizeHttpRequests(authorize -> authorize
+            // Permitir OPTIONS sin autenticación
+            .requestMatchers(HttpMethod.OPTIONS, "/**").permitAll()
+            // Acceso restringido
+            .requestMatchers(GET, "/hotels*", "/hotels/**").permitAll()
+
+            .requestMatchers(POST, "/hotels*")
+            .hasAnyAuthority(flat(ADMIN, MANAGER))
+
+            .requestMatchers(DELETE, "/hotels*")
+            .hasAnyAuthority(anyService(ADMIN))
+
+            .requestMatchers(DELETE, "/hotels/{id}")
+            .hasAnyAuthority(flat(ADMIN, MANAGER))
+
+            .requestMatchers(PATCH, "/hotels/{id}/rooms/{rid}")
+            .hasAnyAuthority(flat(ADMIN, MANAGER))
+
+            // Rechazar el resto
+            .anyRequest().denyAll())
+        // Registra el filtro antes del filtro estándar de autenticación
+        .addFilterBefore(jwtAuthenticationFilter,
+            UsernamePasswordAuthenticationFilter.class);
+
+    return http.build();
+  }
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/controllers/HotelController.java b/java/services/hotels/src/main/java/com/uva/api/hotels/controllers/HotelController.java
new file mode 100644
index 0000000000000000000000000000000000000000..9276ef66ad49836836ae54d3ff7c06e91c19a527
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/controllers/HotelController.java
@@ -0,0 +1,89 @@
+package com.uva.api.hotels.controllers;
+
+import java.util.Map;
+import java.time.LocalDate;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.ResponseEntity;
+import org.springframework.transaction.annotation.Transactional;
+import org.springframework.web.bind.annotation.*;
+
+import com.uva.api.hotels.exceptions.InvalidRequestException;
+import com.uva.api.hotels.models.Hotel;
+import com.uva.api.hotels.services.HotelService;
+import com.uva.api.hotels.utils.Utils;
+
+@RestController
+@RequestMapping("hotels")
+@CrossOrigin(origins = "*")
+public class HotelController {
+    @Autowired
+    private HotelService hotelService;
+
+    @GetMapping
+    public ResponseEntity<?> getAllHotels(
+            @RequestHeader(value = "Authorization", required = false) String authorization,
+            @RequestParam(required = false) Integer managerId,
+            @RequestParam(required = false) LocalDate start,
+            @RequestParam(required = false) LocalDate end) {
+        String token = Utils.getTokenSoft(authorization);
+        return hotelService.getAllHotels(token, managerId, start, end);
+    }
+
+    @PostMapping
+    public ResponseEntity<?> addHotel(@RequestBody Hotel hotel) {
+        return hotelService.addHotel(hotel);
+    }
+
+    @GetMapping("/{id}")
+    public ResponseEntity<?> getHotelById(
+            @RequestHeader(value = "Authorization", required = true) String authorization,
+            @PathVariable int id) {
+        String token = Utils.getToken(authorization);
+        return hotelService.getHotelById(token, id);
+    }
+
+    @DeleteMapping
+    public ResponseEntity<?> deleteHotelsByManagerId(
+            @RequestHeader(value = "Authorization", required = true) String authorization,
+            @RequestParam(required = true) Integer managerId) {
+        System.out.println(authorization);
+        String token = Utils.getToken(authorization);
+        return hotelService.deleteHotelsByManagerId(token, managerId);
+    }
+
+    @DeleteMapping("/{id}")
+    @Transactional
+    public ResponseEntity<?> deleteHotel(
+            @RequestHeader(value = "Authorization", required = true) String authorization,
+            @PathVariable Integer id) {
+        String token = Utils.getToken(authorization);
+        return hotelService.deleteHotel(token, id);
+    }
+
+    @GetMapping("/{hotelId}/rooms")
+    public ResponseEntity<?> getRoomsFromHotel(
+            @PathVariable int hotelId,
+            @RequestParam(required = false) LocalDate start,
+            @RequestParam(required = false) LocalDate end) {
+        return hotelService.getRoomsFromHotel(hotelId, start, end);
+    }
+
+    @PatchMapping("/{hotelId}/rooms/{roomId}")
+    public ResponseEntity<?> updateRoomAvailability(
+            @RequestHeader(value = "Authorization", required = true) String authorization,
+            @PathVariable int hotelId,
+            @PathVariable int roomId,
+            @RequestBody Map<String, Boolean> body) {
+        String token = Utils.getToken(authorization);
+        if (!body.containsKey("available")) {
+            throw new InvalidRequestException("El campo 'available' es obligatorio");
+        }
+        return hotelService.updateRoomAvailability(token, hotelId, roomId, body.get("available"));
+    }
+
+    @GetMapping("/{hotelId}/rooms/{roomId}")
+    public ResponseEntity<?> getRoomByIdFromHotel(@PathVariable int hotelId, @PathVariable int roomId) {
+        return hotelService.getRoomByIdFromHotel(hotelId, roomId);
+    }
+}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/exceptions/GlobalExceptionHandler.java b/java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/GlobalExceptionHandler.java
similarity index 57%
rename from java/services/auth/src/main/java/com/uva/authentication/exceptions/GlobalExceptionHandler.java
rename to java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/GlobalExceptionHandler.java
index 6d4b8d58dbb5560de50b5b2149cbe3f181687446..52175b34f0e2fdc388193871b1c224d209803a3b 100644
--- a/java/services/auth/src/main/java/com/uva/authentication/exceptions/GlobalExceptionHandler.java
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/GlobalExceptionHandler.java
@@ -1,9 +1,10 @@
-package com.uva.authentication.exceptions;
+package com.uva.api.hotels.exceptions;
 
 import org.springframework.http.HttpStatus;
 import org.springframework.http.ResponseEntity;
 import org.springframework.web.bind.annotation.ControllerAdvice;
 import org.springframework.web.bind.annotation.ExceptionHandler;
+import org.springframework.web.client.HttpClientErrorException;
 
 import java.time.LocalDateTime;
 import java.util.HashMap;
@@ -18,6 +19,8 @@ public class GlobalExceptionHandler {
         body.put("timestamp", LocalDateTime.now());
         body.put("message", ex.getMessage());
 
+        ex.printStackTrace(System.err);
+
         return new ResponseEntity<>(body, HttpStatus.NOT_FOUND);
     }
 
@@ -27,9 +30,23 @@ public class GlobalExceptionHandler {
         body.put("timestamp", LocalDateTime.now());
         body.put("message", ex.getMessage());
 
+        ex.printStackTrace(System.err);
+
         return new ResponseEntity<>(body, HttpStatus.BAD_REQUEST);
     }
 
+    @ExceptionHandler(HttpClientErrorException.class)
+    public ResponseEntity<Map<String, Object>> handleHttpClientError(HttpClientErrorException ex) {
+        ex.printStackTrace(System.err);
+        Map<String, Object> body = new HashMap<>();
+        body.put("timestamp", LocalDateTime.now());
+        body.put("message", ex.getMessage());
+
+        ex.printStackTrace(System.err);
+
+        return new ResponseEntity<>(body, ex.getStatusCode());
+    }
+
     @ExceptionHandler(InvalidDateRangeException.class)
     public ResponseEntity<Map<String, Object>> handleInvalidDateRange(InvalidDateRangeException ex) {
         Map<String, Object> body = new HashMap<>();
@@ -39,13 +56,15 @@ public class GlobalExceptionHandler {
         return new ResponseEntity<>(body, HttpStatus.BAD_REQUEST);
     }
 
-    // @ExceptionHandler(Exception.class)
-    // public ResponseEntity<Map<String, Object>> handleGeneralException(Exception
-    // ex) {
-    // Map<String, Object> body = new HashMap<>();
-    // body.put("timestamp", LocalDateTime.now());
-    // body.put("message", "An unexpected error occurred: " + ex.getMessage());
+    @ExceptionHandler(Exception.class)
+    public ResponseEntity<Map<String, Object>> handleGeneralException(Exception ex) {
+        ex.printStackTrace(System.err);
+        Map<String, Object> body = new HashMap<>();
+        body.put("timestamp", LocalDateTime.now());
+        body.put("message", "An unexpected error occurred: " + ex.getMessage());
+
+        ex.printStackTrace(System.err);
 
-    // return new ResponseEntity<>(body, HttpStatus.INTERNAL_SERVER_ERROR);
-    // }
+        return new ResponseEntity<>(body, HttpStatus.INTERNAL_SERVER_ERROR);
+    }
 }
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/exceptions/HotelNotFoundException.java b/java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/HotelNotFoundException.java
similarity index 90%
rename from java/roomBooking/src/main/java/com/uva/monolith/exceptions/HotelNotFoundException.java
rename to java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/HotelNotFoundException.java
index 129a0b1086b4b78eb1f1725b9f241f51ce5540f8..0ffbc3f95bb3c8d55c673526a95ccb1f6edf07ff 100644
--- a/java/roomBooking/src/main/java/com/uva/monolith/exceptions/HotelNotFoundException.java
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/HotelNotFoundException.java
@@ -1,4 +1,4 @@
-package com.uva.monolith.exceptions;
+package com.uva.api.hotels.exceptions;
 
 import org.springframework.http.HttpStatus;
 import org.springframework.web.bind.annotation.ResponseStatus;
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/exceptions/InvalidDateRangeException.java b/java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/InvalidDateRangeException.java
similarity index 79%
rename from java/roomBooking/src/main/java/com/uva/monolith/exceptions/InvalidDateRangeException.java
rename to java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/InvalidDateRangeException.java
index 5fea986ef1e9279c459bc5aff10932049f283333..378bc60be8fecb3ec8b36443f1a4caf460f48fa2 100644
--- a/java/roomBooking/src/main/java/com/uva/monolith/exceptions/InvalidDateRangeException.java
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/InvalidDateRangeException.java
@@ -1,4 +1,4 @@
-package com.uva.monolith.exceptions;
+package com.uva.api.hotels.exceptions;
 
 public class InvalidDateRangeException extends RuntimeException {
     public InvalidDateRangeException(String message) {
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/exceptions/InvalidRequestException.java b/java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/InvalidRequestException.java
similarity index 88%
rename from java/roomBooking/src/main/java/com/uva/monolith/exceptions/InvalidRequestException.java
rename to java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/InvalidRequestException.java
index ca09e054420dd174c4d2c3424dcc8fe74b6c8576..5583f7a219c0e57608a2b351ff13b31bef78c162 100644
--- a/java/roomBooking/src/main/java/com/uva/monolith/exceptions/InvalidRequestException.java
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/exceptions/InvalidRequestException.java
@@ -1,4 +1,4 @@
-package com.uva.monolith.exceptions;
+package com.uva.api.hotels.exceptions;
 
 import org.springframework.http.HttpStatus;
 import org.springframework.web.bind.annotation.ResponseStatus;
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/filter/JwtAuthenticationFilter.java b/java/services/hotels/src/main/java/com/uva/api/hotels/filter/JwtAuthenticationFilter.java
new file mode 100644
index 0000000000000000000000000000000000000000..05bc768cdd2a7c98fbc0b508fb228b4c0506cf58
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/filter/JwtAuthenticationFilter.java
@@ -0,0 +1,102 @@
+package com.uva.api.hotels.filter;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
+import org.springframework.security.core.authority.SimpleGrantedAuthority;
+import org.springframework.security.core.context.SecurityContextHolder;
+import org.springframework.security.web.authentication.WebAuthenticationDetailsSource;
+import org.springframework.stereotype.Component;
+
+import com.uva.api.hotels.models.external.jwt.JwtData;
+import com.uva.api.hotels.models.external.jwt.Service;
+import com.uva.api.hotels.models.external.users.UserRol;
+import com.uva.api.hotels.services.TokenService;
+
+import jakarta.servlet.FilterChain;
+import jakarta.servlet.ServletException;
+import jakarta.servlet.ServletRequest;
+import jakarta.servlet.ServletResponse;
+import jakarta.servlet.http.HttpServletRequest;
+import jakarta.servlet.Filter;
+
+import java.io.IOException;
+import java.time.LocalDateTime;
+import java.util.Collections;
+
+@Component
+public class JwtAuthenticationFilter implements Filter {
+
+    @Autowired
+    private TokenService service;
+
+    private String getTokenFromRequest(HttpServletRequest request) {
+        String authHeader = request.getHeader("Authorization");
+        if (authHeader == null || !authHeader.startsWith("Bearer ")) {
+            return null;
+        }
+        return authHeader.substring(7);
+    }
+
+    private JwtData validateAndDecodeToken(String token) {
+        try {
+            return service.decodeToken(token);
+        } catch (Exception ex) {
+            System.err.println(
+                    "[" + LocalDateTime.now().toString() + "] Error de verificación del token\n");
+            ex.printStackTrace(System.err);
+            return null;
+        }
+    }
+
+    @Override
+    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
+            throws IOException, ServletException {
+
+        HttpServletRequest httpRequest = (HttpServletRequest) request;
+        String token = getTokenFromRequest(httpRequest);
+
+        System.out.println("[" + LocalDateTime.now().toString() + "] TOKEN: " + token + "\n");
+
+        if (token != null) {
+            JwtData jwt = validateAndDecodeToken(token);
+            if (jwt != null) {
+                String email = jwt.getEmail();
+                UserRol role = jwt.getRol();
+                Service service = jwt.getService();
+                String audience = jwt.getAudience();
+
+                System.out.println("[" + LocalDateTime.now().toString() + "] email=" + email + " role=" + role
+                        + " service=" + service + " audience=" + audience + "\n");
+
+                if (audience != null) {
+                    // Definimos la autoridad
+                    String authorityValue = null;
+                    if (audience.equals("INTERNAL") && service != null) {
+                        authorityValue = service.toString();
+                    } else if (audience.equals("EXTERNAL") && role != null) {
+                        authorityValue = String.format("ROLE_%s", role);
+                    }
+
+                    if (authorityValue != null &&
+                            SecurityContextHolder.getContext().getAuthentication() == null) {
+
+                        // Crear la autoridad con la autoridad oportuna
+                        SimpleGrantedAuthority authority = new SimpleGrantedAuthority(authorityValue);
+
+                        // Crear autenticación
+                        UsernamePasswordAuthenticationToken authentication = new UsernamePasswordAuthenticationToken(
+                                email,
+                                null, Collections.singletonList(authority));
+                        authentication.setDetails(new WebAuthenticationDetailsSource().buildDetails(httpRequest));
+
+                        // Establecer autenticación en el contexto de seguridad
+                        SecurityContextHolder.getContext().setAuthentication(authentication);
+                    }
+                }
+            }
+        }
+
+        // Continuar con el resto de filtros
+        chain.doFilter(request, response);
+    }
+}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/Address.java b/java/services/hotels/src/main/java/com/uva/api/hotels/models/Address.java
similarity index 97%
rename from java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/Address.java
rename to java/services/hotels/src/main/java/com/uva/api/hotels/models/Address.java
index 5f31a2a530da46c00460ad6cc6151b0769c1da61..aff743ab18fb0e3551b2eaf0b7b345f07dfe88fa 100644
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/Address.java
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/models/Address.java
@@ -1,4 +1,4 @@
-package com.uva.monolith.services.hotels.models;
+package com.uva.api.hotels.models;
 
 import com.fasterxml.jackson.annotation.JsonIgnore;
 
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/models/Hotel.java b/java/services/hotels/src/main/java/com/uva/api/hotels/models/Hotel.java
new file mode 100644
index 0000000000000000000000000000000000000000..3d3f1ebc05c4ac14ee6d3bec2ed99541d480a022
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/models/Hotel.java
@@ -0,0 +1,56 @@
+package com.uva.api.hotels.models;
+
+import java.util.List;
+
+import jakarta.persistence.Basic;
+import jakarta.persistence.CascadeType;
+import jakarta.persistence.Column;
+import jakarta.persistence.Entity;
+import jakarta.persistence.FetchType;
+import jakarta.persistence.GeneratedValue;
+import jakarta.persistence.GenerationType;
+import jakarta.persistence.Id;
+import jakarta.persistence.JoinColumn;
+import jakarta.persistence.OneToMany;
+import jakarta.persistence.OneToOne;
+import jakarta.persistence.Table;
+import lombok.AllArgsConstructor;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+import lombok.ToString;
+
+@Getter
+@Setter
+@AllArgsConstructor
+@NoArgsConstructor
+@ToString
+@Entity
+@Table(name = "hotels")
+// @JsonIdentityInfo(generator = ObjectIdGenerators.PropertyGenerator.class,
+// property = "id")
+
+public class Hotel {
+  @Id
+  @GeneratedValue(strategy = GenerationType.IDENTITY)
+  @Basic(optional = false)
+  private int id;
+
+  @Basic(optional = false)
+  private String name;
+
+  @JoinColumn(name = "address_id", referencedColumnName = "id")
+  @OneToOne(optional = false, cascade = CascadeType.ALL, fetch = FetchType.EAGER)
+  private Address address;
+
+  @OneToMany(mappedBy = "hotel", fetch = FetchType.EAGER, cascade = CascadeType.ALL)
+  private List<Room> rooms;
+
+  @Column(name = "manager_id")
+  private Integer managerId;
+
+  public void setRooms(List<Room> rooms) {
+    this.rooms = rooms;
+    rooms.forEach(r -> r.setHotel(this));
+  }
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/models/Room.java b/java/services/hotels/src/main/java/com/uva/api/hotels/models/Room.java
new file mode 100644
index 0000000000000000000000000000000000000000..1c53bd383ec289adc2e5c32d197af5dd645b2c34
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/models/Room.java
@@ -0,0 +1,44 @@
+package com.uva.api.hotels.models;
+
+import com.fasterxml.jackson.annotation.JsonIgnore;
+
+import jakarta.persistence.Basic;
+import jakarta.persistence.Column;
+import jakarta.persistence.Entity;
+import jakarta.persistence.GeneratedValue;
+import jakarta.persistence.GenerationType;
+import jakarta.persistence.Id;
+import jakarta.persistence.JoinColumn;
+import jakarta.persistence.ManyToOne;
+import jakarta.persistence.Table;
+import lombok.AllArgsConstructor;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+
+@Entity
+@Table(name = "rooms")
+@Getter
+@Setter
+@AllArgsConstructor
+@NoArgsConstructor
+public class Room {
+    @Id
+    @GeneratedValue(strategy = GenerationType.IDENTITY)
+    @Basic(optional = false)
+    private int id;
+
+    @ManyToOne
+    @JoinColumn(name = "hotel_id", referencedColumnName = "id")
+    @JsonIgnore
+    private Hotel hotel;
+
+    @Column(name = "room_number", nullable = false)
+    private String roomNumber;
+
+    @Column(name = "type", nullable = false)
+    private RoomType type;
+
+    @Column(name = "available", nullable = false)
+    private boolean available;
+}
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/RoomType.java b/java/services/hotels/src/main/java/com/uva/api/hotels/models/RoomType.java
similarity index 55%
rename from java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/RoomType.java
rename to java/services/hotels/src/main/java/com/uva/api/hotels/models/RoomType.java
index b9e82584850795afa7c7392248e3a6472ce24ac0..e16a65acdb97897fc0aeb6eae241986a731a507c 100644
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/hotels/models/RoomType.java
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/models/RoomType.java
@@ -1,4 +1,4 @@
-package com.uva.monolith.services.hotels.models;
+package com.uva.api.hotels.models;
 
 public enum RoomType {
     SINGLE,
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/models/external/jwt/JwtData.java b/java/services/hotels/src/main/java/com/uva/api/hotels/models/external/jwt/JwtData.java
new file mode 100644
index 0000000000000000000000000000000000000000..03f09ad65097861d031a5395fd752c2b0814aa93
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/models/external/jwt/JwtData.java
@@ -0,0 +1,36 @@
+package com.uva.api.hotels.models.external.jwt;
+
+import java.util.Date;
+
+import com.uva.api.hotels.models.external.users.UserRol;
+
+import lombok.Data;
+import lombok.Getter;
+import lombok.Setter;
+import lombok.ToString;
+
+@Getter
+@Setter
+@Data
+@ToString
+public class JwtData {
+
+  private String token;
+
+  private int id = -1;
+  private String name;
+  private String email;
+  private UserRol rol;
+  private Service service;
+
+  private String subject;
+  private String audience;
+  private Long ttl;
+
+  private Date issuedAt;
+  private Date expiresAt;
+
+  public boolean isAdmin() {
+    return rol != null && rol == UserRol.ADMIN;
+  }
+}
\ No newline at end of file
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/models/external/jwt/Service.java b/java/services/hotels/src/main/java/com/uva/api/hotels/models/external/jwt/Service.java
new file mode 100644
index 0000000000000000000000000000000000000000..1a0e269b317e3cad56adc2fbc45676e612113fdd
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/models/external/jwt/Service.java
@@ -0,0 +1,8 @@
+package com.uva.api.hotels.models.external.jwt;
+
+public enum Service {
+  USERS,
+  HOTELS,
+  BOOKINGS,
+  AUTHENTICATION
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/models/external/users/UserRol.java b/java/services/hotels/src/main/java/com/uva/api/hotels/models/external/users/UserRol.java
new file mode 100644
index 0000000000000000000000000000000000000000..9fd5e8be27352e34f1ffbfbd3173dfa9b556588e
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/models/external/users/UserRol.java
@@ -0,0 +1,5 @@
+package com.uva.api.hotels.models.external.users;
+
+public enum UserRol {
+    ADMIN, CLIENT, MANAGER
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/repositories/HotelRepository.java b/java/services/hotels/src/main/java/com/uva/api/hotels/repositories/HotelRepository.java
new file mode 100644
index 0000000000000000000000000000000000000000..cd6369468497f8c56d75dad53a725f5c6163c233
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/repositories/HotelRepository.java
@@ -0,0 +1,11 @@
+package com.uva.api.hotels.repositories;
+
+import java.util.List;
+
+import org.springframework.data.jpa.repository.JpaRepository;
+
+import com.uva.api.hotels.models.Hotel;
+
+public interface HotelRepository extends JpaRepository<Hotel, Integer> {
+    List<Hotel> findAllByManagerId(Integer managerId);
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/repositories/RoomRepository.java b/java/services/hotels/src/main/java/com/uva/api/hotels/repositories/RoomRepository.java
new file mode 100644
index 0000000000000000000000000000000000000000..23aae41cfa0f5d814145a3e7865c80463c55dae5
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/repositories/RoomRepository.java
@@ -0,0 +1,15 @@
+package com.uva.api.hotels.repositories;
+
+import org.springframework.data.jpa.repository.JpaRepository;
+import com.uva.api.hotels.models.Room;
+
+import java.util.List;
+import java.util.Optional;
+
+public interface RoomRepository extends JpaRepository<Room, Integer> {
+
+    Optional<Room> findByIdAndHotelId(int id, int hotelId);
+
+    // Encontrar todas las habitaciones de un hotel
+    List<Room> findAllByHotelId(int hotelId);
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/services/HotelService.java b/java/services/hotels/src/main/java/com/uva/api/hotels/services/HotelService.java
new file mode 100644
index 0000000000000000000000000000000000000000..e84586a13ad5ebe27686ed8e94e94b96ced0bcca
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/services/HotelService.java
@@ -0,0 +1,128 @@
+package com.uva.api.hotels.services;
+
+import java.time.LocalDate;
+import java.util.List;
+import java.util.Set;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Service;
+
+import com.uva.api.hotels.apis.BookingAPI;
+import com.uva.api.hotels.apis.ManagerAPI;
+import com.uva.api.hotels.exceptions.HotelNotFoundException;
+import com.uva.api.hotels.exceptions.InvalidDateRangeException;
+import com.uva.api.hotels.exceptions.InvalidRequestException;
+import com.uva.api.hotels.models.Hotel;
+import com.uva.api.hotels.models.Room;
+import com.uva.api.hotels.repositories.HotelRepository;
+import com.uva.api.hotels.repositories.RoomRepository;
+
+@Service
+public class HotelService {
+    @Autowired
+    private TokenService tokenService;
+    @Autowired
+    private HotelRepository hotelRepository;
+    @Autowired
+    private RoomRepository roomRepository;
+    @Autowired
+    private BookingAPI bookingAPI;
+    @Autowired
+    private ManagerAPI managerAPI;
+
+    public ResponseEntity<List<Hotel>> getAllHotels(String token, Integer managerId, LocalDate start, LocalDate end) {
+
+        if (managerId != null)
+            tokenService.assertPermission(token, managerId);
+
+        List<Hotel> hotels = (managerId != null)
+                ? hotelRepository.findAllByManagerId(managerId)
+                : hotelRepository.findAll();
+        if (start != null && end != null) {
+            if (start.isAfter(end))
+                throw new InvalidDateRangeException("La fecha de inicio debe ser anterior a la fecha de fin");
+
+            Set<Integer> notAvailableRoomsId = bookingAPI.getNotAvailableRooms(start, end);
+
+            hotels = hotels.stream().map(h -> {
+                List<Room> rooms = h.getRooms().stream()
+                        .filter(r -> !notAvailableRoomsId.contains(r.getId()) && r.isAvailable())
+                        .toList();
+                h.setRooms(rooms);
+                return h;
+            }).filter(h -> !h.getRooms().isEmpty()).toList();
+        }
+        if (hotels.isEmpty())
+            throw new InvalidRequestException("No hotels");
+
+        return ResponseEntity.ok(hotels);
+    }
+
+    public ResponseEntity<Hotel> addHotel(Hotel hotel) {
+        boolean exist = managerAPI.existsManagerById(hotel.getManagerId());
+        if (!exist) {
+            throw new InvalidRequestException("No existe el manager con id " + hotel.getManagerId());
+        }
+        hotel = hotelRepository.save(hotel);
+        return new ResponseEntity<>(hotel, HttpStatus.CREATED);
+    }
+
+    public ResponseEntity<Hotel> getHotelById(String token, int id) {
+        Hotel h = hotelRepository.findById(id)
+                .orElseThrow(() -> new HotelNotFoundException(id));
+        tokenService.assertPermission(token, h.getManagerId());
+        return ResponseEntity.ok(h);
+    }
+
+    public ResponseEntity<List<Hotel>> deleteHotelsByManagerId(String token, int managerId) {
+        tokenService.assertPermission(token, managerId);
+        List<Hotel> hotels = hotelRepository.findAllByManagerId(managerId);
+        if (hotels.isEmpty())
+            throw new InvalidRequestException("No hay hoteles para el manager con id " + managerId);
+
+        bookingAPI.deleteAllByManagerId(managerId);
+        hotelRepository.deleteAll(hotels);
+        return ResponseEntity.ok(hotels);
+    }
+
+    public ResponseEntity<Hotel> deleteHotel(String token, int id) {
+        Hotel target = hotelRepository.findById(id)
+                .orElseThrow(() -> new HotelNotFoundException(id));
+        tokenService.assertPermission(token, target.getManagerId());
+        bookingAPI.deleteAllByHotelId(id);
+        hotelRepository.delete(target);
+        return ResponseEntity.ok(target);
+    }
+
+    public ResponseEntity<List<Room>> getRoomsFromHotel(int hotelId, LocalDate start, LocalDate end) {
+        List<Room> rooms = roomRepository.findAllByHotelId(hotelId);
+        if (start != null && end != null) {
+            if (!start.isBefore(end)) {
+                throw new InvalidDateRangeException("La fecha de inicio debe ser anterior a la fecha de fin");
+            }
+            Set<Integer> notAvailableRoomsId = bookingAPI.getNotAvailableRooms(hotelId, start, end);
+            rooms = rooms.stream()
+                    .filter(r -> !notAvailableRoomsId.contains(r.getId()) && r.isAvailable())
+                    .toList();
+        }
+        return ResponseEntity.ok(rooms);
+    }
+
+    public ResponseEntity<Room> updateRoomAvailability(String token, int hotelId, int roomId, boolean available) {
+        Hotel hotel = hotelRepository.findById(hotelId).orElseThrow(() -> new HotelNotFoundException(roomId));
+        Room targetRoom = roomRepository.findByIdAndHotelId(roomId, hotelId)
+                .orElseThrow(() -> new InvalidRequestException("Habitación no encontrada"));
+        tokenService.assertPermission(token, hotel.getManagerId());
+        targetRoom.setAvailable(available);
+        targetRoom = roomRepository.save(targetRoom);
+        return ResponseEntity.ok(targetRoom);
+    }
+
+    public ResponseEntity<Room> getRoomByIdFromHotel(int hotelId, int roomId) {
+        Room r = roomRepository.findByIdAndHotelId(roomId, hotelId)
+                .orElseThrow(() -> new HotelNotFoundException(hotelId));
+        return ResponseEntity.ok(r);
+    }
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/services/TokenService.java b/java/services/hotels/src/main/java/com/uva/api/hotels/services/TokenService.java
new file mode 100644
index 0000000000000000000000000000000000000000..bed994702b11475f821dca0b001dd26f62c75ead
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/services/TokenService.java
@@ -0,0 +1,91 @@
+package com.uva.api.hotels.services;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.stereotype.Service;
+import org.springframework.web.client.HttpClientErrorException;
+
+import com.uva.api.hotels.apis.TokenAPI;
+import com.uva.api.hotels.models.external.jwt.JwtData;
+import com.uva.api.hotels.models.external.users.UserRol;
+
+@Service
+public class TokenService {
+
+  @Autowired
+  private TokenAPI api;
+
+  private JwtData ownToken;
+  private Map<String, JwtData> cache = new HashMap<>();
+
+  private boolean expireSoon(JwtData decoded) {
+    return (decoded.getExpiresAt().getTime() - System.currentTimeMillis()) / 1000 <= 10;
+  }
+
+  public String getServiceToken() {
+    if (ownToken == null || expireSoon(ownToken)) {
+      System.out.println("\nGenerando token");
+      long s = System.currentTimeMillis();
+      ownToken = api.getServiceToken();
+      long t = System.currentTimeMillis() - s;
+      System.out.println("Token Generando en " + t + " ms\n");
+    }
+    return ownToken.getToken();
+  }
+
+  public JwtData decodeToken(String token) {
+    JwtData decoded;
+    if (cache.containsKey(token)) {
+      decoded = cache.get(token);
+      if (!expireSoon(decoded))
+        return cache.get(token);
+    }
+    System.out.println("\nActualizando token");
+    long s = System.currentTimeMillis();
+    decoded = api.decodeToken(token);
+    long t = System.currentTimeMillis() - s;
+    System.out.println("Actualizando token en " + t + " ms\n");
+    cache.put(token, decoded);
+    return decoded;
+  }
+
+  /**
+   * Valida que la entidad representada con el token tenga permisos de
+   * administrador, sea un servicio o sea el dueño del recurso (idExpected)
+   * 
+   * @param token
+   * @param idExpected
+   */
+  public void assertPermission(String token, int idExpected) {
+    JwtData decoded = decodeToken(token);
+    boolean isOwner = decoded.getId() == idExpected;
+    if (!isOwner)
+      assertPermission(token);
+  }
+
+  /**
+   * Valida que la entidad representada con el token tenga permisos de
+   * administrador o sea un servicio
+   * 
+   * @param token
+   */
+  public void assertPermission(String token) {
+    JwtData decoded = decodeToken(token);
+    boolean isAdmin = decoded.isAdmin();
+    boolean isService = decoded.getService() != null && decoded.getAudience().equals("INTERNAL");
+    if (!isAdmin && !isService)
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN);
+  }
+
+  public boolean hasAnyRole(String token, UserRol... roles) {
+    JwtData decoded = decodeToken(token);
+    for (UserRol role : roles)
+      if (decoded.getRol() == role)
+        return true;
+    return false;
+  }
+
+}
diff --git a/java/services/hotels/src/main/java/com/uva/api/hotels/utils/Utils.java b/java/services/hotels/src/main/java/com/uva/api/hotels/utils/Utils.java
new file mode 100644
index 0000000000000000000000000000000000000000..1465d408253d7edea9cc378abffabb4784a6e227
--- /dev/null
+++ b/java/services/hotels/src/main/java/com/uva/api/hotels/utils/Utils.java
@@ -0,0 +1,20 @@
+package com.uva.api.hotels.utils;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.web.client.HttpClientErrorException;
+
+public class Utils {
+  public static String getTokenSoft(String authorization) {
+    String prefix = "Bearer ";
+    return authorization != null && authorization.startsWith(prefix)
+        ? authorization.substring(prefix.length())
+        : null;
+  }
+
+  public static String getToken(String authorization) {
+    String token = getTokenSoft(authorization);
+    if (token == null)
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN);
+    return token;
+  }
+}
diff --git a/java/services/hotels/src/main/resources/application.properties b/java/services/hotels/src/main/resources/application.properties
new file mode 100644
index 0000000000000000000000000000000000000000..f382a5dbf1698734a9b8a73be6438208a586a4d3
--- /dev/null
+++ b/java/services/hotels/src/main/resources/application.properties
@@ -0,0 +1,15 @@
+spring.application.name=hotels
+server.port=8301
+spring.jpa.hibernate.ddl-auto=update
+spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect
+spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3306/Hotels?createDatabaseIfNotExist=true
+spring.datasource.username=user
+spring.datasource.password=password
+spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
+
+spring.security.user.name=user
+spring.security.user.password=password
+
+services.internal.token.url=http://localhost:8101/token
+services.external.managers.url=http://localhost:8201/users/managers
+services.external.bookings.url=http://localhost:8401/bookings
\ No newline at end of file
diff --git a/java/services/hotels/src/test/java/com/uva/roomBooking/RoomBookingApplicationTests.java b/java/services/hotels/src/test/java/com/uva/roomBooking/RoomBookingApplicationTests.java
new file mode 100644
index 0000000000000000000000000000000000000000..3b50599492c36017391c0dcabd81573f123a809a
--- /dev/null
+++ b/java/services/hotels/src/test/java/com/uva/roomBooking/RoomBookingApplicationTests.java
@@ -0,0 +1,13 @@
+package com.uva.roomBooking;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class RoomBookingApplicationTests {
+
+	@Test
+	void contextLoads() {
+	}
+
+}
diff --git a/java/services/users/.gitignore b/java/services/users/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..549e00a2a96fa9d7c5dbc9859664a78d980158c2
--- /dev/null
+++ b/java/services/users/.gitignore
@@ -0,0 +1,33 @@
+HELP.md
+target/
+!.mvn/wrapper/maven-wrapper.jar
+!**/src/main/**/target/
+!**/src/test/**/target/
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+!**/src/main/**/build/
+!**/src/test/**/build/
+
+### VS Code ###
+.vscode/
diff --git a/java/services/users/.mvn/wrapper/maven-wrapper.properties b/java/services/users/.mvn/wrapper/maven-wrapper.properties
new file mode 100644
index 0000000000000000000000000000000000000000..d58dfb70bab565a697e6854eb012d17e0fd39bd4
--- /dev/null
+++ b/java/services/users/.mvn/wrapper/maven-wrapper.properties
@@ -0,0 +1,19 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+wrapperVersion=3.3.2
+distributionType=only-script
+distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip
diff --git a/java/services/users/Dockerfile b/java/services/users/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..8d0b79d6514534deddac782fc9367bcdbcaf89c3
--- /dev/null
+++ b/java/services/users/Dockerfile
@@ -0,0 +1,10 @@
+FROM maven:3-openjdk-17 AS maven
+WORKDIR /app
+COPY ./ ./
+RUN mvn -Dmaven.test.skip clean package
+FROM openjdk:17-jdk-oracle
+ARG JAR_FILE=/app/target/*.jar
+COPY --from=maven ${JAR_FILE} app.jar
+ENV PORT 8080
+EXPOSE $PORT
+ENTRYPOINT ["java","-jar", "/app.jar"]
\ No newline at end of file
diff --git a/java/services/users/mvnw b/java/services/users/mvnw
new file mode 100755
index 0000000000000000000000000000000000000000..19529ddf8c6eaa08c5c75ff80652d21ce4b72f8c
--- /dev/null
+++ b/java/services/users/mvnw
@@ -0,0 +1,259 @@
+#!/bin/sh
+# ----------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ----------------------------------------------------------------------------
+
+# ----------------------------------------------------------------------------
+# Apache Maven Wrapper startup batch script, version 3.3.2
+#
+# Optional ENV vars
+# -----------------
+#   JAVA_HOME - location of a JDK home dir, required when download maven via java source
+#   MVNW_REPOURL - repo url base for downloading maven distribution
+#   MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
+#   MVNW_VERBOSE - true: enable verbose log; debug: trace the mvnw script; others: silence the output
+# ----------------------------------------------------------------------------
+
+set -euf
+[ "${MVNW_VERBOSE-}" != debug ] || set -x
+
+# OS specific support.
+native_path() { printf %s\\n "$1"; }
+case "$(uname)" in
+CYGWIN* | MINGW*)
+  [ -z "${JAVA_HOME-}" ] || JAVA_HOME="$(cygpath --unix "$JAVA_HOME")"
+  native_path() { cygpath --path --windows "$1"; }
+  ;;
+esac
+
+# set JAVACMD and JAVACCMD
+set_java_home() {
+  # For Cygwin and MinGW, ensure paths are in Unix format before anything is touched
+  if [ -n "${JAVA_HOME-}" ]; then
+    if [ -x "$JAVA_HOME/jre/sh/java" ]; then
+      # IBM's JDK on AIX uses strange locations for the executables
+      JAVACMD="$JAVA_HOME/jre/sh/java"
+      JAVACCMD="$JAVA_HOME/jre/sh/javac"
+    else
+      JAVACMD="$JAVA_HOME/bin/java"
+      JAVACCMD="$JAVA_HOME/bin/javac"
+
+      if [ ! -x "$JAVACMD" ] || [ ! -x "$JAVACCMD" ]; then
+        echo "The JAVA_HOME environment variable is not defined correctly, so mvnw cannot run." >&2
+        echo "JAVA_HOME is set to \"$JAVA_HOME\", but \"\$JAVA_HOME/bin/java\" or \"\$JAVA_HOME/bin/javac\" does not exist." >&2
+        return 1
+      fi
+    fi
+  else
+    JAVACMD="$(
+      'set' +e
+      'unset' -f command 2>/dev/null
+      'command' -v java
+    )" || :
+    JAVACCMD="$(
+      'set' +e
+      'unset' -f command 2>/dev/null
+      'command' -v javac
+    )" || :
+
+    if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then
+      echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2
+      return 1
+    fi
+  fi
+}
+
+# hash string like Java String::hashCode
+hash_string() {
+  str="${1:-}" h=0
+  while [ -n "$str" ]; do
+    char="${str%"${str#?}"}"
+    h=$(((h * 31 + $(LC_CTYPE=C printf %d "'$char")) % 4294967296))
+    str="${str#?}"
+  done
+  printf %x\\n $h
+}
+
+verbose() { :; }
+[ "${MVNW_VERBOSE-}" != true ] || verbose() { printf %s\\n "${1-}"; }
+
+die() {
+  printf %s\\n "$1" >&2
+  exit 1
+}
+
+trim() {
+  # MWRAPPER-139:
+  #   Trims trailing and leading whitespace, carriage returns, tabs, and linefeeds.
+  #   Needed for removing poorly interpreted newline sequences when running in more
+  #   exotic environments such as mingw bash on Windows.
+  printf "%s" "${1}" | tr -d '[:space:]'
+}
+
+# parse distributionUrl and optional distributionSha256Sum, requires .mvn/wrapper/maven-wrapper.properties
+while IFS="=" read -r key value; do
+  case "${key-}" in
+  distributionUrl) distributionUrl=$(trim "${value-}") ;;
+  distributionSha256Sum) distributionSha256Sum=$(trim "${value-}") ;;
+  esac
+done <"${0%/*}/.mvn/wrapper/maven-wrapper.properties"
+[ -n "${distributionUrl-}" ] || die "cannot read distributionUrl property in ${0%/*}/.mvn/wrapper/maven-wrapper.properties"
+
+case "${distributionUrl##*/}" in
+maven-mvnd-*bin.*)
+  MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/
+  case "${PROCESSOR_ARCHITECTURE-}${PROCESSOR_ARCHITEW6432-}:$(uname -a)" in
+  *AMD64:CYGWIN* | *AMD64:MINGW*) distributionPlatform=windows-amd64 ;;
+  :Darwin*x86_64) distributionPlatform=darwin-amd64 ;;
+  :Darwin*arm64) distributionPlatform=darwin-aarch64 ;;
+  :Linux*x86_64*) distributionPlatform=linux-amd64 ;;
+  *)
+    echo "Cannot detect native platform for mvnd on $(uname)-$(uname -m), use pure java version" >&2
+    distributionPlatform=linux-amd64
+    ;;
+  esac
+  distributionUrl="${distributionUrl%-bin.*}-$distributionPlatform.zip"
+  ;;
+maven-mvnd-*) MVN_CMD=mvnd.sh _MVNW_REPO_PATTERN=/maven/mvnd/ ;;
+*) MVN_CMD="mvn${0##*/mvnw}" _MVNW_REPO_PATTERN=/org/apache/maven/ ;;
+esac
+
+# apply MVNW_REPOURL and calculate MAVEN_HOME
+# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash>
+[ -z "${MVNW_REPOURL-}" ] || distributionUrl="$MVNW_REPOURL$_MVNW_REPO_PATTERN${distributionUrl#*"$_MVNW_REPO_PATTERN"}"
+distributionUrlName="${distributionUrl##*/}"
+distributionUrlNameMain="${distributionUrlName%.*}"
+distributionUrlNameMain="${distributionUrlNameMain%-bin}"
+MAVEN_USER_HOME="${MAVEN_USER_HOME:-${HOME}/.m2}"
+MAVEN_HOME="${MAVEN_USER_HOME}/wrapper/dists/${distributionUrlNameMain-}/$(hash_string "$distributionUrl")"
+
+exec_maven() {
+  unset MVNW_VERBOSE MVNW_USERNAME MVNW_PASSWORD MVNW_REPOURL || :
+  exec "$MAVEN_HOME/bin/$MVN_CMD" "$@" || die "cannot exec $MAVEN_HOME/bin/$MVN_CMD"
+}
+
+if [ -d "$MAVEN_HOME" ]; then
+  verbose "found existing MAVEN_HOME at $MAVEN_HOME"
+  exec_maven "$@"
+fi
+
+case "${distributionUrl-}" in
+*?-bin.zip | *?maven-mvnd-?*-?*.zip) ;;
+*) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;;
+esac
+
+# prepare tmp dir
+if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then
+  clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; }
+  trap clean HUP INT TERM EXIT
+else
+  die "cannot create temp dir"
+fi
+
+mkdir -p -- "${MAVEN_HOME%/*}"
+
+# Download and Install Apache Maven
+verbose "Couldn't find MAVEN_HOME, downloading and installing it ..."
+verbose "Downloading from: $distributionUrl"
+verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName"
+
+# select .zip or .tar.gz
+if ! command -v unzip >/dev/null; then
+  distributionUrl="${distributionUrl%.zip}.tar.gz"
+  distributionUrlName="${distributionUrl##*/}"
+fi
+
+# verbose opt
+__MVNW_QUIET_WGET=--quiet __MVNW_QUIET_CURL=--silent __MVNW_QUIET_UNZIP=-q __MVNW_QUIET_TAR=''
+[ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v
+
+# normalize http auth
+case "${MVNW_PASSWORD:+has-password}" in
+'') MVNW_USERNAME='' MVNW_PASSWORD='' ;;
+has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;;
+esac
+
+if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then
+  verbose "Found wget ... using wget"
+  wget ${__MVNW_QUIET_WGET:+"$__MVNW_QUIET_WGET"} "$distributionUrl" -O "$TMP_DOWNLOAD_DIR/$distributionUrlName" || die "wget: Failed to fetch $distributionUrl"
+elif [ -z "${MVNW_USERNAME-}" ] && command -v curl >/dev/null; then
+  verbose "Found curl ... using curl"
+  curl ${__MVNW_QUIET_CURL:+"$__MVNW_QUIET_CURL"} -f -L -o "$TMP_DOWNLOAD_DIR/$distributionUrlName" "$distributionUrl" || die "curl: Failed to fetch $distributionUrl"
+elif set_java_home; then
+  verbose "Falling back to use Java to download"
+  javaSource="$TMP_DOWNLOAD_DIR/Downloader.java"
+  targetZip="$TMP_DOWNLOAD_DIR/$distributionUrlName"
+  cat >"$javaSource" <<-END
+	public class Downloader extends java.net.Authenticator
+	{
+	  protected java.net.PasswordAuthentication getPasswordAuthentication()
+	  {
+	    return new java.net.PasswordAuthentication( System.getenv( "MVNW_USERNAME" ), System.getenv( "MVNW_PASSWORD" ).toCharArray() );
+	  }
+	  public static void main( String[] args ) throws Exception
+	  {
+	    setDefault( new Downloader() );
+	    java.nio.file.Files.copy( java.net.URI.create( args[0] ).toURL().openStream(), java.nio.file.Paths.get( args[1] ).toAbsolutePath().normalize() );
+	  }
+	}
+	END
+  # For Cygwin/MinGW, switch paths to Windows format before running javac and java
+  verbose " - Compiling Downloader.java ..."
+  "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java"
+  verbose " - Running Downloader.java ..."
+  "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")"
+fi
+
+# If specified, validate the SHA-256 sum of the Maven distribution zip file
+if [ -n "${distributionSha256Sum-}" ]; then
+  distributionSha256Result=false
+  if [ "$MVN_CMD" = mvnd.sh ]; then
+    echo "Checksum validation is not supported for maven-mvnd." >&2
+    echo "Please disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2
+    exit 1
+  elif command -v sha256sum >/dev/null; then
+    if echo "$distributionSha256Sum  $TMP_DOWNLOAD_DIR/$distributionUrlName" | sha256sum -c >/dev/null 2>&1; then
+      distributionSha256Result=true
+    fi
+  elif command -v shasum >/dev/null; then
+    if echo "$distributionSha256Sum  $TMP_DOWNLOAD_DIR/$distributionUrlName" | shasum -a 256 -c >/dev/null 2>&1; then
+      distributionSha256Result=true
+    fi
+  else
+    echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available." >&2
+    echo "Please install either command, or disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." >&2
+    exit 1
+  fi
+  if [ $distributionSha256Result = false ]; then
+    echo "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised." >&2
+    echo "If you updated your Maven version, you need to update the specified distributionSha256Sum property." >&2
+    exit 1
+  fi
+fi
+
+# unzip and move
+if command -v unzip >/dev/null; then
+  unzip ${__MVNW_QUIET_UNZIP:+"$__MVNW_QUIET_UNZIP"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -d "$TMP_DOWNLOAD_DIR" || die "failed to unzip"
+else
+  tar xzf${__MVNW_QUIET_TAR:+"$__MVNW_QUIET_TAR"} "$TMP_DOWNLOAD_DIR/$distributionUrlName" -C "$TMP_DOWNLOAD_DIR" || die "failed to untar"
+fi
+printf %s\\n "$distributionUrl" >"$TMP_DOWNLOAD_DIR/$distributionUrlNameMain/mvnw.url"
+mv -- "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" "$MAVEN_HOME" || [ -d "$MAVEN_HOME" ] || die "fail to move MAVEN_HOME"
+
+clean || :
+exec_maven "$@"
diff --git a/java/services/users/mvnw.cmd b/java/services/users/mvnw.cmd
new file mode 100644
index 0000000000000000000000000000000000000000..249bdf3822221aa612d1da2605316cabd7b07e50
--- /dev/null
+++ b/java/services/users/mvnw.cmd
@@ -0,0 +1,149 @@
+<# : batch portion
+@REM ----------------------------------------------------------------------------
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements.  See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership.  The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License.  You may obtain a copy of the License at
+@REM
+@REM    http://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied.  See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+@REM ----------------------------------------------------------------------------
+
+@REM ----------------------------------------------------------------------------
+@REM Apache Maven Wrapper startup batch script, version 3.3.2
+@REM
+@REM Optional ENV vars
+@REM   MVNW_REPOURL - repo url base for downloading maven distribution
+@REM   MVNW_USERNAME/MVNW_PASSWORD - user and password for downloading maven
+@REM   MVNW_VERBOSE - true: enable verbose log; others: silence the output
+@REM ----------------------------------------------------------------------------
+
+@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0)
+@SET __MVNW_CMD__=
+@SET __MVNW_ERROR__=
+@SET __MVNW_PSMODULEP_SAVE=%PSModulePath%
+@SET PSModulePath=
+@FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @(
+  IF "%%A"=="MVN_CMD" (set __MVNW_CMD__=%%B) ELSE IF "%%B"=="" (echo %%A) ELSE (echo %%A=%%B)
+)
+@SET PSModulePath=%__MVNW_PSMODULEP_SAVE%
+@SET __MVNW_PSMODULEP_SAVE=
+@SET __MVNW_ARG0_NAME__=
+@SET MVNW_USERNAME=
+@SET MVNW_PASSWORD=
+@IF NOT "%__MVNW_CMD__%"=="" (%__MVNW_CMD__% %*)
+@echo Cannot start maven from wrapper >&2 && exit /b 1
+@GOTO :EOF
+: end batch / begin powershell #>
+
+$ErrorActionPreference = "Stop"
+if ($env:MVNW_VERBOSE -eq "true") {
+  $VerbosePreference = "Continue"
+}
+
+# calculate distributionUrl, requires .mvn/wrapper/maven-wrapper.properties
+$distributionUrl = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionUrl
+if (!$distributionUrl) {
+  Write-Error "cannot read distributionUrl property in $scriptDir/.mvn/wrapper/maven-wrapper.properties"
+}
+
+switch -wildcard -casesensitive ( $($distributionUrl -replace '^.*/','') ) {
+  "maven-mvnd-*" {
+    $USE_MVND = $true
+    $distributionUrl = $distributionUrl -replace '-bin\.[^.]*$',"-windows-amd64.zip"
+    $MVN_CMD = "mvnd.cmd"
+    break
+  }
+  default {
+    $USE_MVND = $false
+    $MVN_CMD = $script -replace '^mvnw','mvn'
+    break
+  }
+}
+
+# apply MVNW_REPOURL and calculate MAVEN_HOME
+# maven home pattern: ~/.m2/wrapper/dists/{apache-maven-<version>,maven-mvnd-<version>-<platform>}/<hash>
+if ($env:MVNW_REPOURL) {
+  $MVNW_REPO_PATTERN = if ($USE_MVND) { "/org/apache/maven/" } else { "/maven/mvnd/" }
+  $distributionUrl = "$env:MVNW_REPOURL$MVNW_REPO_PATTERN$($distributionUrl -replace '^.*'+$MVNW_REPO_PATTERN,'')"
+}
+$distributionUrlName = $distributionUrl -replace '^.*/',''
+$distributionUrlNameMain = $distributionUrlName -replace '\.[^.]*$','' -replace '-bin$',''
+$MAVEN_HOME_PARENT = "$HOME/.m2/wrapper/dists/$distributionUrlNameMain"
+if ($env:MAVEN_USER_HOME) {
+  $MAVEN_HOME_PARENT = "$env:MAVEN_USER_HOME/wrapper/dists/$distributionUrlNameMain"
+}
+$MAVEN_HOME_NAME = ([System.Security.Cryptography.MD5]::Create().ComputeHash([byte[]][char[]]$distributionUrl) | ForEach-Object {$_.ToString("x2")}) -join ''
+$MAVEN_HOME = "$MAVEN_HOME_PARENT/$MAVEN_HOME_NAME"
+
+if (Test-Path -Path "$MAVEN_HOME" -PathType Container) {
+  Write-Verbose "found existing MAVEN_HOME at $MAVEN_HOME"
+  Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD"
+  exit $?
+}
+
+if (! $distributionUrlNameMain -or ($distributionUrlName -eq $distributionUrlNameMain)) {
+  Write-Error "distributionUrl is not valid, must end with *-bin.zip, but found $distributionUrl"
+}
+
+# prepare tmp dir
+$TMP_DOWNLOAD_DIR_HOLDER = New-TemporaryFile
+$TMP_DOWNLOAD_DIR = New-Item -Itemtype Directory -Path "$TMP_DOWNLOAD_DIR_HOLDER.dir"
+$TMP_DOWNLOAD_DIR_HOLDER.Delete() | Out-Null
+trap {
+  if ($TMP_DOWNLOAD_DIR.Exists) {
+    try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null }
+    catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" }
+  }
+}
+
+New-Item -Itemtype Directory -Path "$MAVEN_HOME_PARENT" -Force | Out-Null
+
+# Download and Install Apache Maven
+Write-Verbose "Couldn't find MAVEN_HOME, downloading and installing it ..."
+Write-Verbose "Downloading from: $distributionUrl"
+Write-Verbose "Downloading to: $TMP_DOWNLOAD_DIR/$distributionUrlName"
+
+$webclient = New-Object System.Net.WebClient
+if ($env:MVNW_USERNAME -and $env:MVNW_PASSWORD) {
+  $webclient.Credentials = New-Object System.Net.NetworkCredential($env:MVNW_USERNAME, $env:MVNW_PASSWORD)
+}
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+$webclient.DownloadFile($distributionUrl, "$TMP_DOWNLOAD_DIR/$distributionUrlName") | Out-Null
+
+# If specified, validate the SHA-256 sum of the Maven distribution zip file
+$distributionSha256Sum = (Get-Content -Raw "$scriptDir/.mvn/wrapper/maven-wrapper.properties" | ConvertFrom-StringData).distributionSha256Sum
+if ($distributionSha256Sum) {
+  if ($USE_MVND) {
+    Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties."
+  }
+  Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash
+  if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) {
+    Write-Error "Error: Failed to validate Maven distribution SHA-256, your Maven distribution might be compromised. If you updated your Maven version, you need to update the specified distributionSha256Sum property."
+  }
+}
+
+# unzip and move
+Expand-Archive "$TMP_DOWNLOAD_DIR/$distributionUrlName" -DestinationPath "$TMP_DOWNLOAD_DIR" | Out-Null
+Rename-Item -Path "$TMP_DOWNLOAD_DIR/$distributionUrlNameMain" -NewName $MAVEN_HOME_NAME | Out-Null
+try {
+  Move-Item -Path "$TMP_DOWNLOAD_DIR/$MAVEN_HOME_NAME" -Destination $MAVEN_HOME_PARENT | Out-Null
+} catch {
+  if (! (Test-Path -Path "$MAVEN_HOME" -PathType Container)) {
+    Write-Error "fail to move MAVEN_HOME"
+  }
+} finally {
+  try { Remove-Item $TMP_DOWNLOAD_DIR -Recurse -Force | Out-Null }
+  catch { Write-Warning "Cannot remove $TMP_DOWNLOAD_DIR" }
+}
+
+Write-Output "MVN_CMD=$MAVEN_HOME/bin/$MVN_CMD"
diff --git a/java/roomBooking/pom.xml b/java/services/users/pom.xml
similarity index 65%
rename from java/roomBooking/pom.xml
rename to java/services/users/pom.xml
index f6fa75bdb21b812320db5afa07b770891fb9bd95..9ed5a3ede8fd48e11b7b74bba7499f2e5f6d13a5 100644
--- a/java/roomBooking/pom.xml
+++ b/java/services/users/pom.xml
@@ -9,10 +9,10 @@
 		<relativePath/> <!-- lookup parent from repository -->
 	</parent>
 	<groupId>com.uva</groupId>
-	<artifactId>roomBooking</artifactId>
+	<artifactId>users</artifactId>
 	<version>0.0.1-SNAPSHOT</version>
-	<name>roomBooking</name>
-	<description>Room Booking rest</description>
+	<name>users</name>
+	<description>User rest microservice</description>
 	<url/>
 	<licenses>
 		<license/>
@@ -38,7 +38,6 @@
 			<groupId>org.springframework.boot</groupId>
 			<artifactId>spring-boot-starter-data-rest</artifactId>
 		</dependency>
-
 		<dependency>
 			<groupId>com.mysql</groupId>
 			<artifactId>mysql-connector-j</artifactId>
@@ -50,31 +49,21 @@
 			<scope>test</scope>
 		</dependency>
 		<dependency>
-    <groupId>org.springframework.boot</groupId>
-    <artifactId>spring-boot-starter-security</artifactId>
-	</dependency>
-	<dependency>
-		<groupId>io.jsonwebtoken</groupId>
-		<artifactId>jjwt-api</artifactId>
-		<version>0.11.5</version>
-	</dependency>
-	<dependency>
-		<groupId>io.jsonwebtoken</groupId>
-		<artifactId>jjwt-impl</artifactId>
-		<version>0.11.5</version>
-		<scope>runtime</scope>
-	</dependency>
-	<dependency>
-		<groupId>io.jsonwebtoken</groupId>
-		<artifactId>jjwt-jackson</artifactId>
-		<version>0.11.5</version>
-		<scope>runtime</scope>
-	</dependency>
-	<dependency>
-        <groupId>jakarta.servlet</groupId>
-        <artifactId>jakarta.servlet-api</artifactId>
-        <scope>provided</scope>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-security</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>jakarta.servlet</groupId>
+			<artifactId>jakarta.servlet-api</artifactId>
+			<scope>provided</scope>
     </dependency>
+		<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
+		<dependency>
+			<groupId>org.projectlombok</groupId>
+			<artifactId>lombok</artifactId>
+			<version>1.18.36</version>
+			<scope>provided</scope>
+		</dependency>
 	</dependencies>
 
 	<build>
diff --git a/java/services/users/src/main/java/com/uva/api/users/UsersApplication.java b/java/services/users/src/main/java/com/uva/api/users/UsersApplication.java
new file mode 100644
index 0000000000000000000000000000000000000000..9d52f230bb4f9df2d816cce35bc2d3f92013b06f
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/UsersApplication.java
@@ -0,0 +1,12 @@
+package com.uva.api.users;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class UsersApplication {
+
+	public static void main(String[] args) {
+		SpringApplication.run(UsersApplication.class, args);
+	}
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/api/BookingAPI.java b/java/services/users/src/main/java/com/uva/api/users/api/BookingAPI.java
new file mode 100644
index 0000000000000000000000000000000000000000..556c63afdffea51780aca38748425c173546194b
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/api/BookingAPI.java
@@ -0,0 +1,29 @@
+package com.uva.api.users.api;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Qualifier;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.HttpClientErrorException;
+import org.springframework.web.client.RestTemplate;
+
+@Component
+public class BookingAPI {
+
+  @Autowired
+  @Qualifier("IdentifyRestTemplate")
+  private RestTemplate restTemplate;
+
+  @Value("${services.external.bookings.url}")
+  private String BOOKING_API_URL;
+
+  public void deleteAllByUserId(int id) {
+    try {
+      String url = BOOKING_API_URL + "?userId={id}";
+      restTemplate.delete(url, id);
+    } catch (HttpClientErrorException ex) {
+      if (!ex.getMessage().contains("404 No bookings for this hotel"))
+        throw ex;
+    }
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/api/HotelApi.java b/java/services/users/src/main/java/com/uva/api/users/api/HotelApi.java
new file mode 100644
index 0000000000000000000000000000000000000000..60803b4e672d937fa961bf743b4a228f4f640cec
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/api/HotelApi.java
@@ -0,0 +1,23 @@
+package com.uva.api.users.api;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Qualifier;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.RestTemplate;
+
+@Component
+public class HotelApi {
+
+  @Autowired
+  @Qualifier("IdentifyRestTemplate")
+  private RestTemplate restTemplate;
+
+  @Value("${services.external.hotels.url}")
+  private String HOTELS_API;
+
+  public void deleteAllByManagerId(Integer id) {
+    String url = HOTELS_API + "?managerId={id}";
+    restTemplate.delete(url, id);
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/api/TokenAPI.java b/java/services/users/src/main/java/com/uva/api/users/api/TokenAPI.java
new file mode 100644
index 0000000000000000000000000000000000000000..7c22b94f15695567190b301f4959b3e85e7d79d0
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/api/TokenAPI.java
@@ -0,0 +1,47 @@
+package com.uva.api.users.api;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Qualifier;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Component;
+import org.springframework.web.client.RestTemplate;
+
+import com.fasterxml.jackson.databind.JsonNode;
+import com.uva.api.users.models.remote.jwt.JwtData;
+
+@Component
+public class TokenAPI {
+
+  private final RestTemplate restTemplate;
+
+  public TokenAPI(@Qualifier("simpleRestTemplate") RestTemplate restTemplate) {
+    this.restTemplate = restTemplate;
+  }
+
+  @Value("${spring.application.name}")
+  private String service;
+
+  @Value("${services.internal.token.url}")
+  private String TOKEN_API_URL;
+
+  public JwtData getServiceToken() {
+    String url = TOKEN_API_URL + "/service";
+    Map<String, String> body = new HashMap<>();
+    body.put("service", service);
+    String token = restTemplate.postForObject(url, body, JsonNode.class)
+        .get("token").asText();
+    return decodeToken(token);
+  }
+
+  public JwtData decodeToken(String token) {
+    String url = TOKEN_API_URL + "/info";
+    Map<String, String> body = new HashMap<>();
+    body.put("token", token);
+    JwtData response = restTemplate.postForObject(url, body, JwtData.class);
+    response.setToken(token);
+    return response;
+  }
+
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/config/JwtAuthenticationFilter.java b/java/services/users/src/main/java/com/uva/api/users/config/JwtAuthenticationFilter.java
new file mode 100644
index 0000000000000000000000000000000000000000..662165a44e1749a15fb6e6c7dde5f1c0f2493242
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/config/JwtAuthenticationFilter.java
@@ -0,0 +1,104 @@
+package com.uva.api.users.config;
+
+import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
+import org.springframework.security.core.authority.SimpleGrantedAuthority;
+import org.springframework.security.core.context.SecurityContextHolder;
+import org.springframework.security.web.authentication.WebAuthenticationDetailsSource;
+import org.springframework.stereotype.Component;
+
+import com.uva.api.users.models.UserRol;
+import com.uva.api.users.models.remote.jwt.JwtData;
+import com.uva.api.users.models.remote.jwt.Service;
+import com.uva.api.users.services.TokenService;
+
+import jakarta.servlet.FilterChain;
+import jakarta.servlet.ServletException;
+import jakarta.servlet.ServletRequest;
+import jakarta.servlet.ServletResponse;
+import jakarta.servlet.http.HttpServletRequest;
+import jakarta.servlet.Filter;
+
+import java.io.IOException;
+import java.time.LocalDateTime;
+import java.util.Collections;
+
+@Component
+public class JwtAuthenticationFilter implements Filter {
+
+    private final TokenService service;
+
+    public JwtAuthenticationFilter(TokenService service) {
+        this.service = service;
+    }
+
+    private String getTokenFromRequest(HttpServletRequest request) {
+        String authHeader = request.getHeader("Authorization");
+        if (authHeader == null || !authHeader.startsWith("Bearer ")) {
+            return null;
+        }
+        return authHeader.substring(7);
+    }
+
+    private JwtData validateAndDecodeToken(String token) {
+        try {
+            return service.decodeToken(token);
+        } catch (Exception ex) {
+            System.err.println(
+                    "[" + LocalDateTime.now().toString() + "] Error de verificación del token\n");
+            ex.printStackTrace(System.err);
+            return null;
+        }
+    }
+
+    @Override
+    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
+            throws IOException, ServletException {
+
+        HttpServletRequest httpRequest = (HttpServletRequest) request;
+        String token = getTokenFromRequest(httpRequest);
+
+        System.out.println("[" + LocalDateTime.now().toString() + "] TOKEN: " + token + "\n");
+
+        if (token != null) {
+            JwtData jwt = validateAndDecodeToken(token);
+            if (jwt != null) {
+                String email = jwt.getEmail();
+                UserRol role = jwt.getRol();
+                Service service = jwt.getService();
+                String audience = jwt.getAudience();
+
+                System.out.println("[" + LocalDateTime.now().toString() + "] email=" + email + " role=" + role
+                        + " service=" + service + " audience=" + audience + "\n");
+
+                if (audience != null) {
+                    // Definimos la autoridad
+                    String authorityValue = null;
+                    if (audience.equals("INTERNAL") && service != null) {
+                        authorityValue = service.toString();
+                    } else if (audience.equals("EXTERNAL") && role != null) {
+                        authorityValue = String.format("ROLE_%s", role);
+                    }
+
+                    if (authorityValue != null &&
+                            SecurityContextHolder.getContext().getAuthentication() == null) {
+
+                        // Crear la autoridad con la autoridad oportuna
+                        SimpleGrantedAuthority authority = new SimpleGrantedAuthority(authorityValue);
+
+                        // Crear autenticación
+                        UsernamePasswordAuthenticationToken authentication = new UsernamePasswordAuthenticationToken(
+                                email,
+                                null, Collections.singletonList(authority));
+                        authentication.setDetails(new WebAuthenticationDetailsSource().buildDetails(httpRequest));
+
+                        // Establecer autenticación en el contexto de seguridad
+                        SecurityContextHolder.getContext().setAuthentication(authentication);
+                    }
+                }
+            }
+        }
+
+        // Continuar con el resto de filtros
+        chain.doFilter(request, response);
+    }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/config/RestTemplateConfig.java b/java/services/users/src/main/java/com/uva/api/users/config/RestTemplateConfig.java
new file mode 100644
index 0000000000000000000000000000000000000000..2f005cfd725471b4b98d5d4f78c9ae708e8b7a91
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/config/RestTemplateConfig.java
@@ -0,0 +1,23 @@
+package com.uva.api.users.config;
+
+import java.util.List;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.web.client.RestTemplate;
+
+@Configuration
+public class RestTemplateConfig {
+
+    @Bean("simpleRestTemplate")
+    RestTemplate simpleRestTemplate() {
+        return new RestTemplate();
+    }
+
+    @Bean("IdentifyRestTemplate")
+    RestTemplate restTemplate(RestTemplateInterceptor interceptor) {
+        RestTemplate restTemplate = new RestTemplate();
+        restTemplate.setInterceptors(List.of(interceptor));
+        return restTemplate;
+    }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/config/RestTemplateInterceptor.java b/java/services/users/src/main/java/com/uva/api/users/config/RestTemplateInterceptor.java
new file mode 100644
index 0000000000000000000000000000000000000000..1c861eca3ab2195e1939146cae6c439f770d14a7
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/config/RestTemplateInterceptor.java
@@ -0,0 +1,32 @@
+package com.uva.api.users.config;
+
+import org.springframework.http.HttpRequest;
+import org.springframework.http.client.ClientHttpRequestExecution;
+import org.springframework.http.client.ClientHttpResponse;
+import org.springframework.http.client.ClientHttpRequestInterceptor;
+import org.springframework.stereotype.Component;
+
+import com.uva.api.users.services.TokenService;
+
+import java.io.IOException;
+
+@Component
+public class RestTemplateInterceptor implements ClientHttpRequestInterceptor {
+
+  private final TokenService service;
+
+  public RestTemplateInterceptor(TokenService service) {
+    this.service = service;
+  }
+
+  @Override
+  public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution)
+      throws IOException {
+
+    String jwtToken = service.getServiceToken();
+
+    request.getHeaders().add("Authorization", "Bearer " + jwtToken);
+
+    return execution.execute(request, body);
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/config/SecurityConfig.java b/java/services/users/src/main/java/com/uva/api/users/config/SecurityConfig.java
new file mode 100644
index 0000000000000000000000000000000000000000..bcc1933f707e39b987e9eb935f5f7d2740d8d858
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/config/SecurityConfig.java
@@ -0,0 +1,94 @@
+package com.uva.api.users.config;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import static org.springframework.http.HttpMethod.*;
+import org.springframework.security.config.annotation.web.builders.HttpSecurity;
+import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
+import org.springframework.security.web.SecurityFilterChain;
+import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
+
+import com.uva.api.users.models.UserRol;
+import com.uva.api.users.models.remote.jwt.Service;
+import static com.uva.api.users.models.remote.jwt.Service.*;
+import static com.uva.api.users.models.UserRol.*;
+
+@Configuration
+@EnableWebSecurity
+public class SecurityConfig {
+
+  private final JwtAuthenticationFilter jwtAuthenticationFilter;
+
+  public SecurityConfig(JwtAuthenticationFilter jwtAuthenticationFilter) {
+    this.jwtAuthenticationFilter = jwtAuthenticationFilter;
+  }
+
+  private final String[] SERVICES = flat(Service.values());
+
+  private String[] flat(UserRol... roles) {
+    return java.util.Arrays.stream(roles)
+        .map(Enum::toString)
+        .map(role -> String.format("ROLE_%s", role))
+        .toArray(String[]::new);
+  }
+
+  private String[] flat(Service... services) {
+    return java.util.Arrays.stream(services)
+        .map(Enum::toString)
+        .toArray(String[]::new);
+  }
+
+  private String[] join(String[]... authority) {
+    return java.util.Arrays.stream(authority)
+        .flatMap(java.util.Arrays::stream)
+        .toArray(String[]::new);
+  }
+
+  /**
+   * All services and specified roles
+   * 
+   * @param roles
+   * @return
+   */
+  private String[] anyService(UserRol... roles) {
+    return join(flat(roles), SERVICES);
+  }
+
+  @Bean
+  SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
+    String id = "{id:\\d+}";
+
+    http.csrf(csrf -> csrf.disable())
+        .authorizeHttpRequests(authorize -> authorize
+            // Permitir OPTIONS sin autenticación
+            .requestMatchers(OPTIONS, "/**").permitAll()
+            // Restringir acceso
+            // Solo permitimos actualizar el estado al servicio de reservas
+            .requestMatchers(PATCH, "/users/clients/" + id)
+            .hasAuthority(BOOKINGS.toString())
+
+            .requestMatchers(DELETE, "/users/{id}")
+            .hasAnyAuthority(join(flat(ADMIN), flat(AUTHENTICATION)))
+
+            .requestMatchers("/users/clients/**")
+            .hasAnyAuthority(anyService(ADMIN, CLIENT))
+
+            .requestMatchers("/users/managers/**")
+            .hasAnyAuthority(anyService(ADMIN, MANAGER))
+
+            .requestMatchers("/users*", "/users/clients", "/users/managers")
+            .hasAnyAuthority(anyService(ADMIN))
+
+            // Para las operaciones concretas de los usuarios se permite el acceso
+            // a los que estén autentificados se limita el acceso en el servicio
+            .requestMatchers("/users/" + id + "/**").authenticated()
+
+            // Rechazar el resto
+            .anyRequest().denyAll())
+        // Registra el filtro antes del filtro estándar de autenticación
+        .addFilterBefore(jwtAuthenticationFilter,
+            UsernamePasswordAuthenticationFilter.class);
+
+    return http.build();
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/controllers/ClientController.java b/java/services/users/src/main/java/com/uva/api/users/controllers/ClientController.java
new file mode 100644
index 0000000000000000000000000000000000000000..b9ee38398e20596246dcf196016c05e23f6620b7
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/controllers/ClientController.java
@@ -0,0 +1,72 @@
+package com.uva.api.users.controllers;
+
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.bind.annotation.CrossOrigin;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PatchMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestHeader;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.client.HttpClientErrorException;
+
+import com.uva.api.users.models.ClientStatus;
+import com.uva.api.users.services.ClientService;
+import com.uva.api.users.utils.Utils;
+
+@RestController
+@RequestMapping("users/clients")
+@CrossOrigin(origins = "*")
+public class ClientController {
+
+  @Autowired
+  private ClientService clientService;
+
+  @GetMapping
+  public ResponseEntity<?> getAllClients() {
+    return clientService.findAll();
+  }
+
+  @GetMapping("/{id:\\d+}")
+  public ResponseEntity<?> getClientById(
+      @RequestHeader(value = "Authorization", required = true) String authorization,
+      @PathVariable int id) {
+    String token = Utils.getToken(authorization);
+    return clientService.findById(token, id);
+  }
+
+  @PatchMapping("/{id:\\d+}")
+  public ResponseEntity<?> updateClientStateWrapper(@PathVariable int id, @RequestBody Map<String, String> json) {
+    return updateClientState(id, json);
+  }
+
+  @PutMapping("/{id:\\d+}")
+  public ResponseEntity<?> updateClientState(@PathVariable int id, @RequestBody Map<String, String> json) {
+    json.entrySet().forEach(t -> System.out.println(t));
+    String strStatus = json.get("status");
+    if (strStatus == null)
+      throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing required fields");
+
+    try {
+      ClientStatus clientStatus = ClientStatus.valueOf(strStatus);
+      return clientService.updateClientStatus(id, clientStatus);
+    } catch (IllegalArgumentException e) {
+      throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Unknown Client state");
+    }
+  }
+
+  @DeleteMapping("/{id:\\d+}")
+  public ResponseEntity<?> deleteClient(
+      @RequestHeader(value = "Authorization", required = true) String authorization,
+      @PathVariable int id) {
+    String token = Utils.getToken(authorization);
+    return clientService.deleteById(token, id);
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/controllers/ManagerController.java b/java/services/users/src/main/java/com/uva/api/users/controllers/ManagerController.java
new file mode 100644
index 0000000000000000000000000000000000000000..11bcf432d6a6810191c540b3b8cdeff587450734
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/controllers/ManagerController.java
@@ -0,0 +1,45 @@
+package com.uva.api.users.controllers;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.bind.annotation.CrossOrigin;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestHeader;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.uva.api.users.services.ManagerService;
+import com.uva.api.users.utils.Utils;
+
+@RestController
+@RequestMapping("users/managers")
+@CrossOrigin(origins = "*")
+public class ManagerController {
+
+  @Autowired
+  private ManagerService managerService;
+
+  @GetMapping
+  public ResponseEntity<?> getAllHotelManagers() {
+    return managerService.findAll();
+  }
+
+  @GetMapping("/{id:\\d+}")
+  public ResponseEntity<?> getHotelManagerById(
+      @RequestHeader(value = "Authorization", required = true) String authorization,
+      @PathVariable int id) {
+    String token = Utils.getToken(authorization);
+    return managerService.findById(token, id);
+  }
+
+  @DeleteMapping("/{id:\\d+}")
+  public ResponseEntity<?> deleteHotelManager(
+      @RequestHeader(value = "Authorization", required = true) String authorization,
+      @PathVariable int id) {
+    String token = Utils.getToken(authorization);
+    return managerService.deleteById(token, id);
+  }
+
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/controllers/UserController.java b/java/services/users/src/main/java/com/uva/api/users/controllers/UserController.java
new file mode 100644
index 0000000000000000000000000000000000000000..a47dcd3ebdabe792e44c8c11b42aac06f6ab2fb1
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/controllers/UserController.java
@@ -0,0 +1,92 @@
+package com.uva.api.users.controllers;
+
+import java.util.Map;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.bind.annotation.CrossOrigin;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestHeader;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.client.HttpClientErrorException;
+
+import com.fasterxml.jackson.databind.JsonNode;
+
+import com.uva.api.users.models.AuthDTO;
+import com.uva.api.users.services.UserService;
+import com.uva.api.users.utils.Utils;
+
+@RestController
+@RequestMapping("users")
+@CrossOrigin(origins = "*")
+public class UserController {
+
+  @Autowired
+  private UserService userService;
+
+  @PostMapping
+  public ResponseEntity<?> addUser(@RequestBody AuthDTO body) {
+    return userService.registerNewUser(body);
+  }
+
+  @PutMapping("/{id:\\d+}")
+  public ResponseEntity<?> updateUserData(
+      @RequestHeader(value = "Authorization", required = true) String authorization,
+      @PathVariable int id, @RequestBody Map<String, String> json) {
+    String token = Utils.getToken(authorization);
+    String name = json.get("name");
+    String email = json.get("email");
+
+    if (!Utils.notEmptyStrings(name, email))
+      throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing required fields");
+
+    return userService.updateUserData(token, id, name, email);
+  }
+
+  @PutMapping("/{id:\\d+}/password")
+  public ResponseEntity<?> updatePassword(
+      @RequestHeader(value = "Authorization", required = true) String authorization,
+      @PathVariable int id, @RequestBody JsonNode json) {
+    String password = json.get("password").asText();
+    String token = Utils.getToken(authorization);
+
+    if (!Utils.notEmptyStrings(token, password))
+      throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing required fields");
+
+    return userService.changePassword(token, id, password);
+  }
+
+  @GetMapping(params = { "email" })
+  public ResponseEntity<?> getUserByEmail(@RequestParam String email) {
+    return userService.getUserByEmail(email);
+  }
+
+  @GetMapping
+  public ResponseEntity<?> getAllUsers() {
+    return userService.getAllUsers();
+  }
+
+  @GetMapping("/{id:\\d+}")
+  public ResponseEntity<?> getUserById(
+      @RequestHeader(value = "Authorization", required = true) String authorization,
+      @PathVariable int id) {
+    String token = Utils.getToken(authorization);
+    return userService.getUserById(token, id);
+  }
+
+  @DeleteMapping("/{id:\\d+}")
+  public ResponseEntity<?> deleteUser(
+      @RequestHeader(value = "Authorization", required = true) String authorization,
+      @PathVariable int id) {
+    String token = Utils.getToken(authorization);
+    return userService.deleteUserById(token, id);
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/exceptions/GlobalExceptionHandler.java b/java/services/users/src/main/java/com/uva/api/users/exceptions/GlobalExceptionHandler.java
new file mode 100644
index 0000000000000000000000000000000000000000..df1bd5ec394ab004f39bbaacd1e1cce50591bac0
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/exceptions/GlobalExceptionHandler.java
@@ -0,0 +1,48 @@
+package com.uva.api.users.exceptions;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.bind.annotation.ControllerAdvice;
+import org.springframework.web.bind.annotation.ExceptionHandler;
+import org.springframework.web.client.HttpClientErrorException;
+
+import java.time.LocalDateTime;
+import java.util.HashMap;
+import java.util.Map;
+
+@ControllerAdvice
+public class GlobalExceptionHandler {
+
+    @ExceptionHandler(UserNotFoundException.class)
+    public ResponseEntity<Map<String, Object>> handleUserNotFound(UserNotFoundException ex) {
+        Map<String, Object> body = new HashMap<>();
+        body.put("timestamp", LocalDateTime.now());
+        body.put("message", ex.getMessage());
+
+        ex.printStackTrace(System.err);
+
+        return new ResponseEntity<>(body, HttpStatus.NOT_FOUND);
+    }
+
+    @ExceptionHandler(HttpClientErrorException.class)
+    public ResponseEntity<Map<String, Object>> handleHttpClientErrorException(HttpClientErrorException ex) {
+        Map<String, Object> body = new HashMap<>();
+        body.put("timestamp", LocalDateTime.now());
+        body.put("message", ex.getMessage());
+
+        ex.printStackTrace(System.err);
+
+        return new ResponseEntity<>(body, ex.getStatusCode());
+    }
+
+    @ExceptionHandler(Exception.class)
+    public ResponseEntity<Map<String, Object>> handleGeneralException(Exception ex) {
+        Map<String, Object> body = new HashMap<>();
+        body.put("timestamp", LocalDateTime.now());
+        body.put("message", "An unexpected error occurred: " + ex.getMessage());
+
+        ex.printStackTrace(System.err);
+
+        return new ResponseEntity<>(body, HttpStatus.INTERNAL_SERVER_ERROR);
+    }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/exceptions/UserNotFoundException.java b/java/services/users/src/main/java/com/uva/api/users/exceptions/UserNotFoundException.java
new file mode 100644
index 0000000000000000000000000000000000000000..df6ee96414026de954f08931724339ff1bddc88e
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/exceptions/UserNotFoundException.java
@@ -0,0 +1,15 @@
+package com.uva.api.users.exceptions;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.web.bind.annotation.ResponseStatus;
+
+@ResponseStatus(HttpStatus.NOT_FOUND) // Devuelve un 404 cuando se lanza la excepción
+public class UserNotFoundException extends RuntimeException {
+    public UserNotFoundException(int id) {
+        super("User not found with id: " + id);
+    }
+
+    public UserNotFoundException() {
+        super("User not found");
+    }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/models/AuthDTO.java b/java/services/users/src/main/java/com/uva/api/users/models/AuthDTO.java
new file mode 100644
index 0000000000000000000000000000000000000000..dbe04212af18131ea1eb23e2519392cc4a7f56e8
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/models/AuthDTO.java
@@ -0,0 +1,19 @@
+package com.uva.api.users.models;
+
+import lombok.AllArgsConstructor;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+
+@NoArgsConstructor
+@AllArgsConstructor
+@Getter
+@Setter
+public class AuthDTO {
+
+  private int id;
+  private String name;
+  private String email;
+  private String password;
+  private UserRol rol = UserRol.CLIENT;
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/models/Client.java b/java/services/users/src/main/java/com/uva/api/users/models/Client.java
new file mode 100644
index 0000000000000000000000000000000000000000..6130609737dec6a456d4e5f4f7b5ccca2abad40e
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/models/Client.java
@@ -0,0 +1,33 @@
+package com.uva.api.users.models;
+
+import jakarta.persistence.Column;
+import jakarta.persistence.Entity;
+import jakarta.persistence.EnumType;
+import jakarta.persistence.Enumerated;
+import jakarta.persistence.Table;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+import lombok.ToString;
+
+@Entity
+@Table(name = "user_client")
+@NoArgsConstructor
+@Getter
+@Setter
+@Data
+@ToString(callSuper = true)
+@EqualsAndHashCode(callSuper = true)
+public class Client extends User {
+
+  @Column(nullable = false)
+  @Enumerated(EnumType.STRING)
+  private ClientStatus status = ClientStatus.NO_BOOKINGS;
+
+  public Client(int id, String name, String email, String password, ClientStatus status) {
+    super(id, name, email, password, UserRol.CLIENT);
+    setStatus(status);
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/models/ClientStatus.java b/java/services/users/src/main/java/com/uva/api/users/models/ClientStatus.java
new file mode 100644
index 0000000000000000000000000000000000000000..00be7ea369fd4661ba2b8c35bafccd9cd048bf1c
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/models/ClientStatus.java
@@ -0,0 +1,5 @@
+package com.uva.api.users.models;
+
+public enum ClientStatus {
+  NO_BOOKINGS, WITH_ACTIVE_BOOKINGS, WITH_INACTIVE_BOOKINGS;
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/models/Manager.java b/java/services/users/src/main/java/com/uva/api/users/models/Manager.java
new file mode 100644
index 0000000000000000000000000000000000000000..6e86898d2914f45fa3df8a20e26f77540f8667dc
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/models/Manager.java
@@ -0,0 +1,34 @@
+package com.uva.api.users.models;
+
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.databind.JsonNode;
+
+import jakarta.persistence.Entity;
+import jakarta.persistence.Table;
+import jakarta.persistence.Transient;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+import lombok.ToString;
+
+@Entity
+@Table(name = "hotel_manager_user")
+@NoArgsConstructor
+@Getter
+@Setter
+@Data
+@EqualsAndHashCode(callSuper = true)
+@ToString(callSuper = true)
+public class Manager extends User {
+
+  @Transient
+  @JsonIgnore
+  private JsonNode hotels;
+
+  public Manager(int id, String name, String email, String password, JsonNode hotels) {
+    super(id, name, email, password, UserRol.MANAGER);
+    setHotels(hotels);
+  }
+}
diff --git a/java/services/auth/src/main/java/com/uva/authentication/models/remote/User.java b/java/services/users/src/main/java/com/uva/api/users/models/User.java
similarity index 56%
rename from java/services/auth/src/main/java/com/uva/authentication/models/remote/User.java
rename to java/services/users/src/main/java/com/uva/api/users/models/User.java
index a72ecfa8ef8f896afda01b7b1ead124c09b81fab..07f215d24880ef80b10a3042140c9780303f6829 100644
--- a/java/services/auth/src/main/java/com/uva/authentication/models/remote/User.java
+++ b/java/services/users/src/main/java/com/uva/api/users/models/User.java
@@ -1,4 +1,4 @@
-package com.uva.authentication.models.remote;
+package com.uva.api.users.models;
 
 import com.fasterxml.jackson.annotation.JsonIgnore;
 
@@ -13,10 +13,24 @@ import jakarta.persistence.Id;
 import jakarta.persistence.Inheritance;
 import jakarta.persistence.InheritanceType;
 import jakarta.persistence.Table;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+import lombok.ToString;
 
 @Entity
 @Inheritance(strategy = InheritanceType.JOINED)
 @Table(name = "users")
+@NoArgsConstructor
+@AllArgsConstructor
+@Setter
+@Getter
+@Data
+@EqualsAndHashCode
+@ToString
 public class User {
 
   @Id
@@ -42,54 +56,4 @@ public class User {
   @Column(nullable = false)
   @Enumerated(EnumType.STRING)
   private UserRol rol = UserRol.CLIENT;
-
-  public User() {
-  }
-
-  public User(int id, String name, String email, String password, UserRol rol) {
-    setId(id);
-    setName(name);
-    setEmail(email);
-    setRol(rol);
-  }
-
-  public int getId() {
-    return this.id;
-  }
-
-  public void setId(int id) {
-    this.id = id;
-  }
-
-  public String getName() {
-    return this.name;
-  }
-
-  public void setName(String name) {
-    this.name = name;
-  }
-
-  public String getEmail() {
-    return this.email;
-  }
-
-  public void setEmail(String email) {
-    this.email = email;
-  }
-
-  public String getPassword() {
-    return password;
-  }
-
-  public void setPassword(String rawPassword) {
-    this.password = rawPassword;
-  }
-
-  public UserRol getRol() {
-    return this.rol;
-  }
-
-  public void setRol(UserRol rol) {
-    this.rol = rol;
-  }
-}
+}
\ No newline at end of file
diff --git a/java/services/users/src/main/java/com/uva/api/users/models/UserRol.java b/java/services/users/src/main/java/com/uva/api/users/models/UserRol.java
new file mode 100644
index 0000000000000000000000000000000000000000..bfc26e25c5fcc73767d01109be40173704d59138
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/models/UserRol.java
@@ -0,0 +1,5 @@
+package com.uva.api.users.models;
+
+public enum UserRol {
+  ADMIN, MANAGER, CLIENT
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/models/remote/jwt/JwtData.java b/java/services/users/src/main/java/com/uva/api/users/models/remote/jwt/JwtData.java
new file mode 100644
index 0000000000000000000000000000000000000000..79e30f71ce4fa51acda13b62ed309a6d80ee62c4
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/models/remote/jwt/JwtData.java
@@ -0,0 +1,36 @@
+package com.uva.api.users.models.remote.jwt;
+
+import java.util.Date;
+
+import com.uva.api.users.models.UserRol;
+
+import lombok.Data;
+import lombok.Getter;
+import lombok.Setter;
+import lombok.ToString;
+
+@Getter
+@Setter
+@Data
+@ToString
+public class JwtData {
+
+  private String token;
+
+  private int id = -1;
+  private String name;
+  private String email;
+  private UserRol rol;
+  private Service service;
+
+  private String subject;
+  private String audience;
+  private Long ttl;
+
+  private Date issuedAt;
+  private Date expiresAt;
+
+  public boolean isAdmin() {
+    return rol != null && rol == UserRol.ADMIN;
+  }
+}
\ No newline at end of file
diff --git a/java/services/users/src/main/java/com/uva/api/users/models/remote/jwt/Service.java b/java/services/users/src/main/java/com/uva/api/users/models/remote/jwt/Service.java
new file mode 100644
index 0000000000000000000000000000000000000000..debdbba4389ce6631969b6e3bcb887d113722e03
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/models/remote/jwt/Service.java
@@ -0,0 +1,8 @@
+package com.uva.api.users.models.remote.jwt;
+
+public enum Service {
+  USERS,
+  HOTELS,
+  BOOKINGS,
+  AUTHENTICATION
+}
\ No newline at end of file
diff --git a/java/services/auth/src/main/java/com/uva/authentication/repositories/ClientRepository.java b/java/services/users/src/main/java/com/uva/api/users/repositories/ClientRepository.java
similarity index 68%
rename from java/services/auth/src/main/java/com/uva/authentication/repositories/ClientRepository.java
rename to java/services/users/src/main/java/com/uva/api/users/repositories/ClientRepository.java
index 6d2b8eeb777f2d3c9800c51dc34fe72ea504efd3..f3d2da806b22d9e4db60d6b745d4be7103e18e0c 100644
--- a/java/services/auth/src/main/java/com/uva/authentication/repositories/ClientRepository.java
+++ b/java/services/users/src/main/java/com/uva/api/users/repositories/ClientRepository.java
@@ -1,9 +1,9 @@
-package com.uva.authentication.repositories;
+package com.uva.api.users.repositories;
 
 import java.util.Optional;
 import org.springframework.data.jpa.repository.JpaRepository;
 
-import com.uva.authentication.models.remote.Client;
+import com.uva.api.users.models.Client;
 
 public interface ClientRepository extends JpaRepository<Client, Integer> {
   Optional<Client> findByEmail(String email);
diff --git a/java/services/users/src/main/java/com/uva/api/users/repositories/ManagerRepository.java b/java/services/users/src/main/java/com/uva/api/users/repositories/ManagerRepository.java
new file mode 100644
index 0000000000000000000000000000000000000000..46a608f0973119e9c4b3cc1fa8f44c181f5b2afa
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/repositories/ManagerRepository.java
@@ -0,0 +1,10 @@
+package com.uva.api.users.repositories;
+
+import java.util.Optional;
+import org.springframework.data.jpa.repository.JpaRepository;
+
+import com.uva.api.users.models.Manager;
+
+public interface ManagerRepository extends JpaRepository<Manager, Integer> {
+  Optional<Manager> findByEmail(String email);
+}
\ No newline at end of file
diff --git a/java/roomBooking/src/main/java/com/uva/monolith/services/users/repositories/UserRepository.java b/java/services/users/src/main/java/com/uva/api/users/repositories/UserRepository.java
similarity index 64%
rename from java/roomBooking/src/main/java/com/uva/monolith/services/users/repositories/UserRepository.java
rename to java/services/users/src/main/java/com/uva/api/users/repositories/UserRepository.java
index e5b44c976f095719854aa8070abc843b898036fe..bf5e152826eadca9dd8cbb433a2720727f4372ed 100644
--- a/java/roomBooking/src/main/java/com/uva/monolith/services/users/repositories/UserRepository.java
+++ b/java/services/users/src/main/java/com/uva/api/users/repositories/UserRepository.java
@@ -1,11 +1,13 @@
-package com.uva.monolith.services.users.repositories;
+package com.uva.api.users.repositories;
 
 import java.util.Optional;
 
 import org.springframework.data.jpa.repository.JpaRepository;
 
-import com.uva.monolith.services.users.models.User;
+import com.uva.api.users.models.User;
 
 public interface UserRepository extends JpaRepository<User, Integer> {
   Optional<User> findByEmail(String email);
+
+  Boolean existsByEmail(String email);
 }
diff --git a/java/services/users/src/main/java/com/uva/api/users/services/ClientService.java b/java/services/users/src/main/java/com/uva/api/users/services/ClientService.java
new file mode 100644
index 0000000000000000000000000000000000000000..abd7157e90687c3eb7efb967205bea4c5e6d52d6
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/services/ClientService.java
@@ -0,0 +1,59 @@
+package com.uva.api.users.services;
+
+import java.util.List;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Service;
+
+import com.uva.api.users.api.BookingAPI;
+import com.uva.api.users.models.Client;
+import com.uva.api.users.models.ClientStatus;
+import com.uva.api.users.models.UserRol;
+import com.uva.api.users.repositories.ClientRepository;
+import com.uva.api.users.utils.Utils;
+
+@Service
+public class ClientService {
+
+  @Autowired
+  private ClientRepository clientRepository;
+
+  @Autowired
+  private BookingAPI bookingAPI;
+
+  @Autowired
+  private TokenService tokenService;
+
+  public ResponseEntity<List<Client>> findAll() {
+    return ResponseEntity.ok(clientRepository.findAll());
+  }
+
+  public ResponseEntity<Client> findById(String token, int id) {
+    tokenService.assertPermission(token, id);
+    Client client = Utils.assertUser(clientRepository.findById(id));
+    return ResponseEntity.ok(client);
+  }
+
+  public ResponseEntity<Client> deleteById(String token, int id) {
+    tokenService.assertPermission(token, id);
+    Client client = Utils.assertUser(clientRepository.findById(id));
+    bookingAPI.deleteAllByUserId(id);
+    clientRepository.delete(client);
+    return ResponseEntity.ok(client);
+  }
+
+  public ResponseEntity<Client> save(Client client) {
+    // Default rol
+    client.setRol(UserRol.CLIENT);
+    client = clientRepository.save(client);
+    return ResponseEntity.ok(client);
+  }
+
+  public ResponseEntity<?> updateClientStatus(int id, ClientStatus status) {
+    Client client = Utils.assertUser(clientRepository.findById(id));
+    client.setStatus(status);
+    client = clientRepository.save(client);
+    return ResponseEntity.ok(client);
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/services/ManagerService.java b/java/services/users/src/main/java/com/uva/api/users/services/ManagerService.java
new file mode 100644
index 0000000000000000000000000000000000000000..d47c5fe1cc105941f491701059c703c6249239a0
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/services/ManagerService.java
@@ -0,0 +1,48 @@
+package com.uva.api.users.services;
+
+import java.util.List;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Service;
+import com.uva.api.users.api.HotelApi;
+import com.uva.api.users.models.Manager;
+import com.uva.api.users.repositories.ManagerRepository;
+import com.uva.api.users.utils.Utils;
+
+@Service
+public class ManagerService {
+
+  @Autowired
+  private HotelApi hotelApi;
+
+  @Autowired
+  private ManagerRepository managerRepository;
+
+  @Autowired
+  private TokenService tokenService;
+
+  public ResponseEntity<Manager> save(Manager manager) {
+    manager = managerRepository.save(manager);
+    return ResponseEntity.ok(manager);
+  }
+
+  public ResponseEntity<List<Manager>> findAll() {
+    List<Manager> managers = managerRepository.findAll();
+    return ResponseEntity.ok(managers);
+  }
+
+  public ResponseEntity<Manager> findById(String token, int id) {
+    tokenService.assertPermission(token, id);
+    Manager manager = Utils.assertUser(managerRepository.findById(id));
+    return ResponseEntity.ok(manager);
+  }
+
+  public ResponseEntity<Manager> deleteById(String token, Integer id) {
+    tokenService.assertPermission(token, id);
+    Manager manager = Utils.assertUser(managerRepository.findById(id));
+    hotelApi.deleteAllByManagerId(id);
+    managerRepository.delete(manager);
+    return ResponseEntity.ok(manager);
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/services/TokenService.java b/java/services/users/src/main/java/com/uva/api/users/services/TokenService.java
new file mode 100644
index 0000000000000000000000000000000000000000..02707e46a97bf35cc1cc9e4b45c6761337d63b69
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/services/TokenService.java
@@ -0,0 +1,83 @@
+package com.uva.api.users.services;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.stereotype.Service;
+import org.springframework.web.client.HttpClientErrorException;
+
+import com.uva.api.users.api.TokenAPI;
+import com.uva.api.users.models.remote.jwt.JwtData;
+
+@Service
+public class TokenService {
+
+  private final TokenAPI api;
+
+  public TokenService(TokenAPI api) {
+    this.api = api;
+  }
+
+  private JwtData ownToken;
+  private Map<String, JwtData> cache = new HashMap<>();
+
+  private boolean expireSoon(JwtData decoded) {
+    return (decoded.getExpiresAt().getTime() - System.currentTimeMillis()) / 1000 <= 10;
+  }
+
+  public String getServiceToken() {
+    if (ownToken == null || expireSoon(ownToken)) {
+      System.out.println("\nGenerando token");
+      long s = System.currentTimeMillis();
+      ownToken = api.getServiceToken();
+      long t = System.currentTimeMillis() - s;
+      System.out.println("Token Generando en " + t + " ms\n");
+    }
+    return ownToken.getToken();
+  }
+
+  public JwtData decodeToken(String token) {
+    JwtData decoded;
+    if (cache.containsKey(token)) {
+      decoded = cache.get(token);
+      if (!expireSoon(decoded))
+        return cache.get(token);
+    }
+    System.out.println("\nActualizando token");
+    long s = System.currentTimeMillis();
+    decoded = api.decodeToken(token);
+    long t = System.currentTimeMillis() - s;
+    System.out.println("Actualizando token en " + t + " ms\n");
+    cache.put(token, decoded);
+    return decoded;
+  }
+
+  /**
+   * Valida que la entidad representada con el token tenga permisos de
+   * administrador, sea un servicio o sea el dueño del recurso (idExpected)
+   * 
+   * @param token
+   * @param idExpected
+   */
+  public void assertPermission(String token, int idExpected) {
+    JwtData decoded = decodeToken(token);
+    boolean isOwner = decoded.getId() == idExpected;
+    if (!isOwner)
+      assertPermission(token);
+  }
+
+  /**
+   * Valida que la entidad representada con el token tenga permisos de
+   * administrador o sea un servicio
+   * 
+   * @param token
+   */
+  public void assertPermission(String token) {
+    JwtData decoded = decodeToken(token);
+    boolean isAdmin = decoded.isAdmin();
+    boolean isService = decoded.getService() != null && decoded.getAudience().equals("INTERNAL");
+    if (!isAdmin && !isService)
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN, "XD");
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/services/UserService.java b/java/services/users/src/main/java/com/uva/api/users/services/UserService.java
new file mode 100644
index 0000000000000000000000000000000000000000..8874535c43ef8afd07d4eb782202bf643e2efb8f
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/services/UserService.java
@@ -0,0 +1,125 @@
+package com.uva.api.users.services;
+
+import java.util.List;
+
+import org.springframework.beans.BeanUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.stereotype.Service;
+import org.springframework.web.client.HttpClientErrorException;
+
+import com.uva.api.users.models.AuthDTO;
+import com.uva.api.users.models.Client;
+import com.uva.api.users.models.Manager;
+import com.uva.api.users.models.User;
+import com.uva.api.users.models.UserRol;
+import com.uva.api.users.repositories.UserRepository;
+import com.uva.api.users.utils.Utils;
+
+@Service
+public class UserService {
+
+  @Autowired
+  private UserRepository userRepository;
+
+  @Autowired
+  private ClientService clientService;
+
+  @Autowired
+  private ManagerService managerService;
+
+  @Autowired
+  private TokenService tokenService;
+
+  public ResponseEntity<List<User>> getAllUsers() {
+    List<User> users = userRepository.findAll();
+    return ResponseEntity.ok(users);
+  }
+
+  private User assertUserById(int id) {
+    return Utils.assertUser(userRepository.findById(id));
+  }
+
+  public ResponseEntity<User> getUserById(String token, int id) {
+    tokenService.assertPermission(token, id);
+    User user = assertUserById(id);
+    return ResponseEntity.ok(user);
+  }
+
+  public ResponseEntity<AuthDTO> getUserByEmail(String email) {
+    User u = Utils.assertUser(userRepository.findByEmail(email));
+    AuthDTO auth = new AuthDTO();
+    BeanUtils.copyProperties(u, auth);
+    return ResponseEntity.ok(auth);
+  }
+
+  public ResponseEntity<User> registerNewUser(AuthDTO request) {
+    if (userRepository.existsByEmail(request.getEmail()))
+      throw new HttpClientErrorException(HttpStatus.BAD_REQUEST);
+
+    User user = new User();
+    BeanUtils.copyProperties(request, user);
+
+    // Aseguramos que tenga un rol, por defecto es cliente
+    if (user.getRol() == null)
+      user.setRol(UserRol.CLIENT);
+
+    switch (user.getRol()) {
+      case ADMIN: // Not extracted due to its complexity, it's the same as for the user
+        User admin = new User();
+        BeanUtils.copyProperties(user, admin);
+        user = userRepository.save(admin);
+        break;
+
+      case MANAGER:
+        Manager manager = new Manager();
+        BeanUtils.copyProperties(request, manager);
+        user = managerService.save(manager).getBody();
+        break;
+
+      case CLIENT: // By default
+      default:
+        Client client = new Client();
+        BeanUtils.copyProperties(request, client);
+        user = clientService.save(client).getBody();
+        break;
+    }
+    return ResponseEntity.ok(user);
+  }
+
+  public ResponseEntity<User> updateUserData(String token, int id, String name, String email) {
+    tokenService.assertPermission(token, id);
+    User user = assertUserById(id);
+    user.setName(name);
+    user.setEmail(email);
+    user = userRepository.save(user);
+    return ResponseEntity.ok(user);
+  }
+
+  public ResponseEntity<User> changePassword(String token, int id, String password) {
+    tokenService.assertPermission(token, id);
+    User user = assertUserById(id);
+    user.setPassword(password);
+    user = userRepository.save(user);
+    return ResponseEntity.ok(user);
+  }
+
+  public ResponseEntity<User> deleteUserById(String token, int id) {
+    tokenService.assertPermission(token, id);
+    User user = assertUserById(id);
+    switch (user.getRol()) {
+      case CLIENT:
+        clientService.deleteById(token, id);
+        break;
+      case MANAGER:
+        managerService.deleteById(token, id);
+        break;
+      case ADMIN:
+      default:
+        userRepository.deleteById(id);
+        break;
+    }
+    return ResponseEntity.ok(user);
+  }
+}
diff --git a/java/services/users/src/main/java/com/uva/api/users/utils/Utils.java b/java/services/users/src/main/java/com/uva/api/users/utils/Utils.java
new file mode 100644
index 0000000000000000000000000000000000000000..b730e9c98366fc4f56bdbc0b1cb9660746315915
--- /dev/null
+++ b/java/services/users/src/main/java/com/uva/api/users/utils/Utils.java
@@ -0,0 +1,30 @@
+package com.uva.api.users.utils;
+
+import java.util.Optional;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.web.client.HttpClientErrorException;
+
+import com.uva.api.users.exceptions.UserNotFoundException;
+
+public class Utils {
+  public static <T> T assertUser(Optional<T> opUser) {
+    return opUser.orElseThrow(() -> new UserNotFoundException());
+  }
+
+  public static String getToken(String authorization) {
+    String prefix = "Bearer ";
+    if (!authorization.startsWith(prefix))
+      throw new HttpClientErrorException(HttpStatus.FORBIDDEN);
+    return authorization.substring(prefix.length());
+  }
+
+  public static boolean notEmptyStrings(String... values) {
+    for (String value : values) {
+      if (value == null || value.isEmpty()) {
+        return false;
+      }
+    }
+    return true;
+  }
+}
diff --git a/java/services/users/src/main/resources/application.properties b/java/services/users/src/main/resources/application.properties
new file mode 100644
index 0000000000000000000000000000000000000000..c680e76dd5d9f7de5d65d8c74c9da2c14cb6941c
--- /dev/null
+++ b/java/services/users/src/main/resources/application.properties
@@ -0,0 +1,15 @@
+spring.application.name=users
+server.port=8201
+spring.jpa.hibernate.ddl-auto=update
+spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect
+spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3306/Users?createDatabaseIfNotExist=true
+spring.datasource.username=user
+spring.datasource.password=password
+spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
+
+spring.security.user.name=user
+spring.security.user.password=password
+
+services.internal.token.url=http://localhost:8101/token/
+services.external.hotels.url=http://localhost:8301/hotels
+services.external.bookings.url=http://localhost:8401/bookings
\ No newline at end of file
diff --git a/java/services/users/src/test/java/com/uva/roomBooking/RoomBookingApplicationTests.java b/java/services/users/src/test/java/com/uva/roomBooking/RoomBookingApplicationTests.java
new file mode 100644
index 0000000000000000000000000000000000000000..3b50599492c36017391c0dcabd81573f123a809a
--- /dev/null
+++ b/java/services/users/src/test/java/com/uva/roomBooking/RoomBookingApplicationTests.java
@@ -0,0 +1,13 @@
+package com.uva.roomBooking;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class RoomBookingApplicationTests {
+
+	@Test
+	void contextLoads() {
+	}
+
+}
diff --git a/kong_config_3.json b/kong_config_3.json
new file mode 100644
index 0000000000000000000000000000000000000000..4c7c832b986d3ccaa595f67ec98faa60349e66de
--- /dev/null
+++ b/kong_config_3.json
@@ -0,0 +1 @@
+{"createdUser":null,"updatedUser":null,"id":1,"name":"1735494180877_practica","kong_node_name":"Kong","kong_node_url":"http://kong:8001","kong_version":"3.9.0","data":{"services":[{"path":"/users","port":8201,"client_certificate":null,"id":"1d1ce8d9-aa4b-4576-8d91-00326d00c26e","name":"Users","tags":[],"ca_certificates":null,"created_at":1735150914,"updated_at":1735486602,"protocol":"http","host":"users-api","tls_verify":null,"enabled":true,"read_timeout":60000,"tls_verify_depth":null,"connect_timeout":60000,"write_timeout":60000,"retries":5,"extras":{}},{"path":"/hotels","port":8301,"client_certificate":null,"id":"37407f92-1d9f-4d88-b80f-0bc9a3fb57fd","name":"Hotels","tags":[],"ca_certificates":null,"created_at":1735151821,"updated_at":1735486602,"protocol":"http","host":"hotels-api","tls_verify":null,"enabled":true,"read_timeout":60000,"tls_verify_depth":null,"connect_timeout":60000,"write_timeout":60000,"retries":5,"extras":{}},{"path":"/auth","port":8101,"client_certificate":null,"id":"60e76e38-63f1-4fd7-b10c-51456722a312","name":"Auth","tags":[],"ca_certificates":null,"created_at":1735151037,"updated_at":1735486602,"protocol":"http","host":"auth-api","tls_verify":null,"enabled":true,"read_timeout":60000,"tls_verify_depth":null,"connect_timeout":60000,"write_timeout":60000,"retries":5,"extras":{}},{"path":"/bookings","port":8401,"client_certificate":null,"id":"ae250c19-10c3-4ed2-8cdb-d62497721da2","name":"Bookings","tags":[],"ca_certificates":null,"created_at":1735151922,"updated_at":1735486602,"protocol":"http","host":"bookings-api","tls_verify":null,"enabled":true,"read_timeout":60000,"tls_verify_depth":null,"connect_timeout":60000,"write_timeout":60000,"retries":5,"extras":{}}],"routes":[{"hosts":null,"strip_path":true,"request_buffering":true,"sources":null,"https_redirect_status_code":426,"tags":null,"destinations":null,"created_at":1735151081,"updated_at":1735486602,"methods":["OPTIONS","POST","DELETE"],"protocols":["http","https"],"service":{"id":"60e76e38-63f1-4fd7-b10c-51456722a312"},"regex_priority":0,"id":"4f7e698c-aed6-4919-8d72-a24ce6a2a333","snis":null,"paths":["/api/auth"],"preserve_host":false,"name":"Auth","path_handling":"v1","response_buffering":true,"headers":null},{"hosts":null,"strip_path":true,"request_buffering":true,"sources":null,"https_redirect_status_code":426,"tags":null,"destinations":null,"created_at":1735151945,"updated_at":1735486602,"methods":["GET","POST","PATCH","PUT","DELETE","OPTIONS"],"protocols":["http","https"],"service":{"id":"ae250c19-10c3-4ed2-8cdb-d62497721da2"},"regex_priority":0,"id":"810bbb6d-a10d-416d-b5db-a121762981fa","snis":null,"paths":["/api/bookings"],"preserve_host":false,"name":"Bookings","path_handling":"v1","response_buffering":true,"headers":null},{"hosts":null,"strip_path":true,"request_buffering":true,"sources":null,"https_redirect_status_code":426,"tags":null,"destinations":null,"created_at":1735486723,"updated_at":1735486747,"methods":["GET","OPTIONS","PUT","PATCH","POST","DELETE"],"protocols":["http","https"],"service":{"id":"37407f92-1d9f-4d88-b80f-0bc9a3fb57fd"},"regex_priority":0,"id":"dc4b871c-7013-43f3-b4e1-8cfaf94ae03c","snis":null,"paths":["/api/hotels"],"preserve_host":false,"name":"Hotels","path_handling":"v1","response_buffering":true,"headers":null},{"hosts":null,"strip_path":true,"request_buffering":true,"sources":null,"https_redirect_status_code":426,"tags":null,"destinations":null,"created_at":1735150976,"updated_at":1735486602,"methods":["OPTIONS","GET","POST","DELETE","PUT","PATCH"],"protocols":["http","https"],"service":{"id":"1d1ce8d9-aa4b-4576-8d91-00326d00c26e"},"regex_priority":0,"id":"df0fefa6-7df8-4ae3-baed-ae58add42bbf","snis":null,"paths":["/api/users"],"preserve_host":false,"name":"Usuarios","path_handling":"v1","response_buffering":true,"headers":null}],"consumers":[{"created_at":1735155577,"updated_at":1735486602,"id":"c012b84f-63af-461f-8a8d-b8f99a2bd006","custom_id":null,"tags":[],"username":"JWT","credentials":{"jwts":[{"created_at":1735155689,"consumer":{"id":"c012b84f-63af-461f-8a8d-b8f99a2bd006"},"key":"9L8RmLEKMFd54WrR06CE9zoRSAGpCWeu","rsa_public_key":null,"secret":"MiClaveDeSeguridadMuyLargaParaQueNoFalleSpringBoot","algorithm":"HS256","tags":null,"id":"d9fc99a4-b111-4ff2-a02c-9348fcb176cb"}]}}],"plugins":[{"created_at":1735155843,"updated_at":1735487924,"consumer":null,"service":null,"protocols":["grpc","grpcs","http","https"],"route":{"id":"810bbb6d-a10d-416d-b5db-a121762981fa"},"config":{"uri_param_names":["jwt"],"cookie_names":[],"header_names":["Authorization"],"anonymous":null,"run_on_preflight":false,"secret_is_base64":false,"maximum_expiration":0,"key_claim_name":"kid","realm":null,"claims_to_verify":["exp"]},"tags":null,"enabled":true,"instance_name":null,"name":"jwt","id":"3e302549-c51f-469d-a71d-98f30f2ddcab"},{"created_at":1735156525,"updated_at":1735487917,"consumer":null,"service":null,"protocols":["grpc","grpcs","http","https"],"route":{"id":"df0fefa6-7df8-4ae3-baed-ae58add42bbf"},"config":{"uri_param_names":["jwt"],"cookie_names":[],"header_names":["Authorization"],"anonymous":null,"run_on_preflight":false,"secret_is_base64":false,"maximum_expiration":0,"key_claim_name":"kid","realm":null,"claims_to_verify":["exp"]},"tags":null,"enabled":true,"instance_name":null,"name":"jwt","id":"8386bf54-ede1-4f34-bb87-989ce4276e8a"},{"created_at":1735486785,"updated_at":1735487895,"consumer":null,"service":null,"protocols":["grpc","grpcs","http","https"],"route":{"id":"dc4b871c-7013-43f3-b4e1-8cfaf94ae03c"},"config":{"uri_param_names":["jwt"],"cookie_names":[],"header_names":["Authorization"],"anonymous":null,"run_on_preflight":false,"secret_is_base64":false,"maximum_expiration":0,"key_claim_name":"kid","realm":null,"claims_to_verify":["exp"]},"tags":null,"enabled":true,"instance_name":null,"name":"jwt","id":"d1fc4321-6bb5-432a-92cd-52b245df6a52"}],"acls":[],"upstreams":[],"certificates":[],"snis":[]},"createdAt":"2024-12-29T17:43:00.000Z","updatedAt":"2024-12-29T17:43:00.000Z"}
\ No newline at end of file
diff --git a/poblate/.gitignore b/poblate/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..25c8fdbaba62c31aacfa2307975b06fbfd017485
--- /dev/null
+++ b/poblate/.gitignore
@@ -0,0 +1,2 @@
+node_modules
+package-lock.json
\ No newline at end of file
diff --git a/poblate/Dockerfile b/poblate/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..29f6ea71764e850a3695168ca57b2231b7dd4527
--- /dev/null
+++ b/poblate/Dockerfile
@@ -0,0 +1,11 @@
+FROM node:20
+
+# Establecer el directorio de trabajo
+WORKDIR /app
+
+COPY package*.json ./
+RUN npm install
+
+COPY . .
+
+CMD ["npm", "run", "prod", "--", "-d"]
\ No newline at end of file
diff --git a/poblate/delete.sh b/poblate/delete.sh
new file mode 100755
index 0000000000000000000000000000000000000000..0f21df56322ed8734079fee9edfd7d0611af21d9
--- /dev/null
+++ b/poblate/delete.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+
+# Configuración de la conexión a MySQL
+MYSQL_USER="user"          # Usuario de MySQL
+MYSQL_PASSWORD="password"  # Contraseña del usuario
+MYSQL_HOST="localhost"     # Dirección del servidor MySQL
+MYSQL_PORT="3306"          # Puerto de MySQL (3306 por defecto)
+
+# Nombres de las bases de datos a eliminar
+DATABASES=("Users" "Hotels" "Bookings")
+
+# Confirmación antes de eliminar
+echo "Las siguientes bases de datos serán eliminadas: ${DATABASES[*]}"
+read -p "¿Estás seguro de que deseas continuar? (escribe 'yes' para confirmar): " CONFIRMATION
+
+if [ "$CONFIRMATION" != "yes" ]; then
+    echo "Cancelado. Las bases de datos no se eliminarán."
+    exit 1
+fi
+
+# Eliminar cada base de datos
+for DB in "${DATABASES[@]}"; do
+    echo "Eliminando base de datos: $DB"
+    mysql -u"$MYSQL_USER" -p"$MYSQL_PASSWORD" -h"$MYSQL_HOST" -P"$MYSQL_PORT" -e "DROP DATABASE IF EXISTS $DB;"
+    if [ $? -eq 0 ]; then
+        echo "Base de datos $DB eliminada correctamente."
+    else
+        echo "Error al eliminar la base de datos $DB."
+    fi
+done
+
+echo "Proceso completado."
diff --git a/poblate/environments/env.js b/poblate/environments/env.js
new file mode 100644
index 0000000000000000000000000000000000000000..a534b45907b53ff0f114a92463fbe73cba78fe88
--- /dev/null
+++ b/poblate/environments/env.js
@@ -0,0 +1,5 @@
+exports.env = {
+	authApi: "http://localhost:8101/auth",
+	hotelsApi: "http://localhost:8301/hotels",
+	bookingsApi: "http://localhost:8401/bookings",
+};
diff --git a/poblate/environments/env.production.js b/poblate/environments/env.production.js
new file mode 100644
index 0000000000000000000000000000000000000000..1ca1777c2a0f890c87b1adcc57f3f74e5b05e182
--- /dev/null
+++ b/poblate/environments/env.production.js
@@ -0,0 +1,5 @@
+exports.env = {
+	authApi: "http://kong:8000/api/auth",
+	hotelsApi: "http://kong:8000/api/hotels",
+	bookingsApi: "http://kong:8000/api/bookings",
+};
diff --git a/poblate/index.js b/poblate/index.js
new file mode 100644
index 0000000000000000000000000000000000000000..a165bbd7cc180c7d8e073929185f241544cd7941
--- /dev/null
+++ b/poblate/index.js
@@ -0,0 +1,249 @@
+const mockedUsers = require("./mocks/users.json");
+const mockedHotels = require("./mocks/hotels.json");
+const axios = require("axios");
+const { jwtDecode } = require("jwt-decode");
+const dev = require("./environments/env");
+const prod = require("./environments/env.production");
+
+const getKongHots = (host) => {
+	const defaultHost = "localhost";
+	const defaultPort = 8000;
+
+	if (host.match(/^(\d{1,3}\.){3}[\d]{1,3}:\d{1,5}$/)) {
+		return host; // host completo
+	} else if (host.match(/^([\d]{1,3}\.){3}[\d]{1,3}$/)) {
+		return host + `:${defaultPort}`; // hostname, agregar puerto por defecto
+	} else if (host.match(/^:\d{1,5}/)) {
+		return defaultHost + host; // puerto, agregar hostname por defecto
+	}
+	return `${defaultHost}:${defaultPort}`;
+};
+
+const getKongEnv = (env) => {
+	const { authApi, hotelsApi, bookingsApi } = env;
+	const apply = (api) =>
+		KONG ? api.replace(/:\/\/[\w.-]+(:\d+)?/, `://${KONG_SERVICE}`) : api;
+	return {
+		authApi: apply(authApi),
+		hotelsApi: apply(hotelsApi),
+		bookingsApi: apply(bookingsApi),
+	};
+};
+
+// Environments consts
+const args = process.argv;
+const isProduction = args.includes("--prod");
+const DEBUG = args.includes("--debug") || args.includes("-d");
+const FORCE = args.includes("--force") || args.includes("-f");
+const ERROR = args.includes("--error") || args.includes("-e");
+const kongLow = args.indexOf("-k");
+const kongIndex = isProduction
+	? kongLow != -1
+		? kongLow
+		: args.indexOf("--kong")
+	: -1;
+const KONG = kongIndex !== -1;
+
+const KONG_SERVICE = getKongHots(
+	args.length > kongIndex ? args[kongIndex + 1] ?? "" : ""
+);
+
+const env = getKongEnv((isProduction ? prod : dev).env);
+const { authApi, hotelsApi, bookingsApi } = env;
+
+const debug = (...values) => {
+	if (DEBUG) console.log(...values);
+};
+
+const loj = (data) => {
+	console.log(JSON.stringify(data, null, 2));
+};
+
+const showError = (error) => {
+	debug(
+		"ERROR:",
+		ERROR
+			? error
+			: error.response?.data ?? error.response?.error ?? error.cause ?? error,
+		"\n"
+	);
+};
+// Función para calcular fechas pareadas
+function genDates(ref = new Date()) {
+	// before
+	const beforeStart = new Date(ref);
+	beforeStart.setDate(ref.getDate() - 14); // Restar 2 semanas
+
+	const beforeEnd = new Date(beforeStart);
+	beforeEnd.setDate(beforeStart.getDate() + 3);
+
+	// After
+	const afterStart = new Date(ref);
+	afterStart.setDate(ref.getDate() + 14); // Sumar 2 semanas
+
+	const afterEnd = new Date(afterStart);
+	afterEnd.setDate(afterStart.getDate() + 2);
+
+	return [
+		{
+			start: beforeStart,
+			end: beforeEnd,
+		},
+		{
+			start: afterStart,
+			end: afterEnd,
+		},
+	];
+}
+
+function getRandomItem(a = []) {
+	return a[Math.floor(Math.random() * a.length)];
+}
+
+const savePost = async (data, first, second = "") => {
+	try {
+		try {
+			debug("Trying to register user", data);
+			return await axios.post(first, data);
+		} catch (error) {
+			debug("Trying to log user", data);
+			showError(error);
+			debug("ERROR Al REGISTRO, SE PROCEDE A INTENTAR ACCEDER");
+			const response = await axios.post(second, data);
+			if (!FORCE) {
+				console.log("Parece que ya hay datos en el sistema");
+				process.exit(0);
+			}
+			return response;
+		}
+	} catch (error) {
+		console.error("ERROR Al LOGIN");
+		console.error("\nNo se ha podido comunicar con el servicio de auth");
+		showError(error);
+		process.exit(-1);
+	}
+};
+
+async function register(user) {
+	const { data } = await savePost(
+		user,
+		`${authApi}/register`,
+		`${authApi}/login`
+	);
+	const decoded = jwtDecode(data.token);
+	debug(
+		`User identified successful with id=${decoded.id} and token={${data.token}}`
+	);
+	user.id = decoded.id;
+	user.token = data.token;
+	return user;
+}
+
+const addUsers = async () => {
+	const users = [];
+	for await (const user of mockedUsers) {
+		users.push(await register(user));
+	}
+
+	const admins = users.filter((u) => u.rol === "ADMIN");
+	const managers = users.filter((u) => u.rol === "MANAGER");
+	const clients = users.filter((u) => u.rol === "CLIENT");
+
+	return { admins, managers, clients };
+};
+
+const insertHotel = async ({ manager, hotel }) => {
+	try {
+		const body = {
+			...hotel,
+			managerId: manager.id,
+		};
+		debug("Trying to add booking", body);
+		const { data } = await axios.post(hotelsApi, body, {
+			headers: {
+				Authorization: `Bearer ${manager.token}`,
+			},
+		});
+		debug("Hotel added successful, identified by id " + data.id);
+		return data;
+	} catch (error) {
+		console.error("ERROR Al INSERTAR HOTEL");
+		showError(error);
+		process.exit(-1);
+	}
+};
+
+async function addHotels(managers) {
+	const hotels = [];
+	for await (const hotel of mockedHotels) {
+		const select = getRandomItem(managers);
+
+		hotels.push(await insertHotel({ hotel, manager: select }));
+	}
+	return hotels;
+}
+
+const insertBookings = async (booking, token) => {
+	try {
+		debug("Trying to add booking", booking);
+		const { data } = await axios.post(bookingsApi, booking, {
+			headers: {
+				Authorization: `Bearer ${token}`,
+			},
+		});
+		debug("Booking added successful, identified by id " + data.id);
+		return data;
+	} catch (error) {
+		console.error("ERROR Al INSERTAR RESERVA");
+		showError(error);
+		process.exit(-1);
+	}
+};
+
+async function addBookings(clients, hotels) {
+	var i = 0;
+	const t = hotels.length;
+	for await (const hotel of hotels) {
+		const roomId = getRandomItem(hotel.rooms.filter((r) => r.available)).id;
+		const client = getRandomItem(clients);
+		const des = (i - t / 2) * 15;
+		const date = new Date();
+		date.setDate(date.getDate() + des);
+		for await (const dates of genDates(date)) {
+			await insertBookings(
+				{
+					managerId: hotel.managerId,
+					userId: client.id,
+					hotelId: hotel.id,
+					roomId,
+					...dates,
+				},
+				client.token
+			);
+		}
+	}
+}
+
+function sleep(ms) {
+	return new Promise((resolve) => setTimeout(resolve, ms));
+}
+
+async function init() {
+	debug("MODE:", isProduction ? "PRODUCTION" : "DEVELOPMENT");
+	debug("ENV:", env, "\n");
+	const { managers, clients } = await addUsers();
+	const time = 2;
+	debug("USUARIOS REGISTRADOS O IDENTIFICADOS\n\n");
+	if (DEBUG) {
+		await sleep(time * 1000);
+	}
+	const hotels = await addHotels(managers, 3);
+	debug("HOTELES REGISTRADOS\n\n");
+	if (DEBUG) {
+		await sleep(time * 1000);
+	}
+	await addBookings(clients, hotels);
+	console.log("POBLACIÓN COMPLETADA EXITOSAMENTE");
+}
+
+init();
diff --git a/poblate/mocks/bookings.json b/poblate/mocks/bookings.json
new file mode 100644
index 0000000000000000000000000000000000000000..6c4fe5f2479c64f796313c967930b81bc5b52e9f
--- /dev/null
+++ b/poblate/mocks/bookings.json
@@ -0,0 +1,18 @@
+[
+	{
+		"clientId": 1,
+		"hotelId": 1,
+		"roomId": 2,
+		"managerId": 3,
+		"startDate": "2024-10-20",
+		"endDate": "2024-10-25"
+	},
+	{
+		"clientId": 3,
+		"hotelId": 2,
+		"roomId": 3,
+		"managerId": 4,
+		"startDate": "2025-02-22",
+		"endDate": "2025-02-27"
+	}
+]
diff --git a/poblate/mocks/hotels.json b/poblate/mocks/hotels.json
new file mode 100644
index 0000000000000000000000000000000000000000..34b23c1bcedd7fb513cd605ecfa3cf64e4ea0256
--- /dev/null
+++ b/poblate/mocks/hotels.json
@@ -0,0 +1,58 @@
+[
+	{
+		"name": "Ocean View Hotel",
+		"address": {
+			"streetKind": "Avenida",
+			"streetName": "Marítima",
+			"number": 123,
+			"postCode": "45678",
+			"otherInfo": "Frente al mar"
+		},
+		"managerId": 2,
+		"rooms": [
+			{
+				"roomNumber": "101",
+				"type": "SINGLE",
+				"available": true
+			},
+			{
+				"roomNumber": "102",
+				"type": "DOUBLE",
+				"available": false
+			}
+		]
+	},
+	{
+		"name": "Mountain Retreat",
+		"address": {
+			"streetKind": "Calle",
+			"streetName": "Bosque",
+			"number": 42,
+			"postCode": "98765",
+			"otherInfo": "Cerca del parque nacional"
+		},
+		"managerId": 2,
+		"rooms": [
+			{
+				"roomNumber": "201",
+				"type": "DOUBLE",
+				"available": true
+			},
+			{
+				"roomNumber": "202",
+				"type": "SUITE",
+				"available": true
+			},
+			{
+				"roomNumber": "203",
+				"type": "SUITE",
+				"available": true
+			},
+			{
+				"roomNumber": "204",
+				"type": "SUITE",
+				"available": false
+			}
+		]
+	}
+]
diff --git a/poblate/mocks/users.json b/poblate/mocks/users.json
new file mode 100644
index 0000000000000000000000000000000000000000..8f377a617dbf39ff254b8ad35ff1b2c3ffc3d3e9
--- /dev/null
+++ b/poblate/mocks/users.json
@@ -0,0 +1,38 @@
+[
+	{
+		"name": "ADMIN",
+		"email": "admin@dev.com",
+		"password": "123",
+		"rol": "ADMIN"
+	},
+	{
+		"name": "Hotel 1",
+		"email": "hotel1@dev.com",
+		"password": "123",
+		"rol": "MANAGER"
+	},
+	{
+		"name": "Hotel 2",
+		"email": "hotel2@dev.com",
+		"password": "123",
+		"rol": "MANAGER"
+	},
+	{
+		"name": "Client 1",
+		"email": "client1@dev.com",
+		"password": "123",
+		"rol": "CLIENT"
+	},
+	{
+		"name": "Client 2",
+		"email": "client2@dev.com",
+		"password": "123",
+		"rol": "CLIENT"
+	},
+	{
+		"name": "Client 3",
+		"email": "client3@dev.com",
+		"password": "123",
+		"rol": "CLIENT"
+	}
+]
diff --git a/poblate/package.json b/poblate/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..d937baf702ebd72781e329477c28467a770e22c6
--- /dev/null
+++ b/poblate/package.json
@@ -0,0 +1,18 @@
+{
+	"name": "poblate",
+	"version": "1.0.0",
+	"main": "index.js",
+	"scripts": {
+		"dev": "node index.js",
+		"prod": "node index.js -- --prod",
+		"test": "node test.js"
+	},
+	"keywords": [],
+	"author": "",
+	"license": "ISC",
+	"description": "",
+	"dependencies": {
+		"axios": "^1.7.9",
+		"jwt-decode": "^4.0.0"
+	}
+}
diff --git a/poblate/test.js b/poblate/test.js
new file mode 100644
index 0000000000000000000000000000000000000000..f3df7a1989b3508414b6b73fdc90e312e7378f5f
--- /dev/null
+++ b/poblate/test.js
@@ -0,0 +1,17 @@
+const { jwtDecode } = require("jwt-decode");
+const axios = require("axios");
+const args = process.argv;
+
+const main = async (params) => {
+	console.log("Peitción");
+
+	const response = await axios.post("http://localhost:8101/token/service", {
+		service: "User",
+	});
+
+	const r = jwtDecode(response.data.token);
+	// console.log(JSON.stringify(r, null, 2));
+	console.log(JSON.stringify(response.data.data, null, 2));
+};
+
+main();