Compare commits

..

No commits in common. "dev" and "v0.5.0" have entirely different histories.
dev ... v0.5.0

311 changed files with 16693 additions and 46236 deletions

View file

@ -0,0 +1,22 @@
name: 'Setup'
inputs:
python-version: # id of input
description: 'Python version'
required: true
runs:
using: "composite"
steps:
- name: python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: install requirements
shell: bash
run: |
pip install wheel
pip install mypy
pip install pytest
pip install pylint
pip install https://github.com/jdegenstein/ocp-build-system/releases/download/7.7.2_macos_arm64_cp310/cadquery_ocp-7.7.2-cp310-cp310-macosx_11_0_arm64.whl
pip install .

View file

@ -3,19 +3,19 @@ inputs:
python-version: # id of input python-version: # id of input
description: 'Python version' description: 'Python version'
required: true required: true
optional-dependencies:
description: 'Optional build123d dependencies'
required: true
runs: runs:
using: "composite" using: "composite"
steps: steps:
- name: Setup Python - name: python
uses: astral-sh/setup-uv@v5 uses: actions/setup-python@v5
with: with:
enable-cache: false python-version: ${{ matrix.python-version }}
python-version: ${{ inputs.python-version }} - name: install requirements
- name: Install Requirements
shell: bash shell: bash
run: | run: |
uv pip install .[${{ inputs.optional-dependencies }}] pip install wheel
pip install mypy
pip install pytest
pip install pylint
pip install .

View file

@ -1,32 +0,0 @@
name: benchmarks
on: [push, pull_request, workflow_dispatch]
jobs:
benchmarks:
strategy:
fail-fast: false
matrix:
python-version: [
# "3.10",
# "3.11",
"3.12",
]
os: [macos-15-intel, macos-14, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup/
with:
python-version: ${{ matrix.python-version }}
optional-dependencies: "development"
- name: benchmark
run: |
python -m pytest --benchmark-only --benchmark-autosave
pytest-benchmark compare --csv="results.csv"
cat results.csv
- uses: actions/upload-artifact@v4
with:
name: benchmark-results-${{ matrix.os }}
path: results.csv

View file

@ -5,13 +5,15 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v3
- name: Setup - name: Set up Python 3.10
uses: ./.github/actions/setup/ uses: actions/setup-python@v4
with: with:
python-version: "3.10" python-version: '3.10'
optional-dependencies: "development" - name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests and collect coverage - name: Run tests and collect coverage
run: pytest --cov=build123d run: pytest --cov=build123d
- name: Upload coverage to Codecov - name: Upload coverage to Codecov
uses: codecov/codecov-action@v5 uses: codecov/codecov-action@v3

View file

@ -3,15 +3,12 @@ name: pylint
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
lint: lint:
strategy:
matrix:
python-version: [ "3.10" ]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v3
- uses: ./.github/actions/setup - uses: ./.github/actions/setup
with: with:
python-version: ${{ matrix.python-version }} python-version: 3.10
optional-dependencies: "development"
- name: lint - name: lint
run: pylint --rcfile=.pylintrc --fail-under=9.5 src/build123d run: pylint --rcfile=.pylintrc --fail-under=9.5 src/build123d

View file

@ -7,21 +7,18 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: [ python-version: [
"3.9",
"3.10", "3.10",
# "3.11", #"3.11"
# "3.12",
"3.13",
] ]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v3
- name: Setup - uses: ./.github/actions/setup
uses: ./.github/actions/setup
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
optional-dependencies: "development,stubs"
- name: Typecheck - name: typecheck
run: | run: |
mypy --config-file mypy.ini src/build123d mypy --config-file mypy.ini src/build123d

View file

@ -15,25 +15,36 @@ jobs:
with: with:
fetch-depth: 0 # get all history for setuptools_scm fetch-depth: 0 # get all history for setuptools_scm
- name: Build sdist and wheel - name: Build wheel
shell: bash shell: bash
run: | run: |
pwd pwd
ls -lR ls -lR
python3 -V
python3 -m pip install --upgrade pip python3 -m pip install --upgrade pip
python3 -m pip -V python3 -m pip -V
python3 -m pip install build python3 -m pip wheel -w wheelhouse .
python3 -m build --outdir wheelhouse
python3 -m pip freeze python3 -m pip freeze
ls -lR
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v3
with: with:
path: ./wheelhouse/build123d*.* # store the build123d wheel and sdist path: ./wheelhouse/build123d*.whl # only store the build123d wheel
# Do we need sdist wheel?
# build_sdist:
# name: Build source distribution
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Build sdist
# run: pipx run build --sdist
# - uses: actions/upload-artifact@v3
# with:
# path: dist/*.tar.gz
upload_pypi: upload_pypi:
needs: [build_wheel] needs: [build_wheel] #, build_sdist]
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: environment:
name: pypi name: pypi
@ -45,7 +56,7 @@ jobs:
if: needs.build_wheel.result == 'success' if: needs.build_wheel.result == 'success'
#if: (github.repository == 'gumyr/build123d' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')) #if: (github.repository == 'gumyr/build123d' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v'))
steps: steps:
- uses: actions/download-artifact@v4 - uses: actions/download-artifact@v3
with: with:
# unpacks default artifact into dist/ # unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir # if `name: artifact` is omitted, the action will create extra parent dir

View file

@ -3,17 +3,16 @@ name: tests
on: [push, pull_request, workflow_dispatch] on: [push, pull_request, workflow_dispatch]
jobs: jobs:
tests: tests_x86_64:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: [ python-version: [
"3.9",
"3.10", "3.10",
# "3.11", #"3.11"
# "3.12",
"3.13",
] ]
os: [macos-15-intel, macos-14, ubuntu-latest, windows-latest] os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
@ -21,7 +20,27 @@ jobs:
- uses: ./.github/actions/setup/ - uses: ./.github/actions/setup/
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
optional-dependencies: "development"
- name: test - name: test
run: | run: |
python -m pytest -n auto --benchmark-disable python -m pytest
tests_arm64:
strategy:
fail-fast: false
matrix:
python-version: [
#"3.9",
"3.10",
#"3.11"
]
os: [macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-macos-arm64/
with:
python-version: ${{ matrix.python-version }}
- name: test
run: |
python -m pytest

3
.gitignore vendored
View file

@ -41,6 +41,3 @@ venv.bak/
# Profiling debris. # Profiling debris.
prof/ prof/
# MacOS cruft
.DS_Store

View file

@ -16,5 +16,3 @@ disable=
ignore-paths= ignore-paths=
./src/build123d/_version.py # Generated ./src/build123d/_version.py # Generated
ignored-modules=OCP,vtkmodules,scipy.spatial,ezdxf,anytree,IPython,trianglesolver,scipy,numpy

View file

@ -1,27 +1,17 @@
version: 2 version: 2
formats:
- epub
- pdf
build: build:
os: "ubuntu-22.04" os: "ubuntu-22.04"
tools: tools:
python: "3.10" python: "3.9"
apt_packages: apt_packages:
- graphviz - graphviz
jobs:
post_checkout:
# necessary to ensure that the development builds get a correct version tag
- git fetch --unshallow || true
# Build from the docs/ directory with Sphinx # Build from the docs/ directory with Sphinx
sphinx: sphinx:
configuration: docs/conf.py configuration: docs/conf.py
# Explicitly set the version of Python and its requirements
python: python:
install: install:
- method: pip - requirements: docs/requirements.txt
path: .
extra_requirements:
- docs

View file

@ -1,16 +0,0 @@
cff-version: 1.2.0
message: "If you use build123d in your research, please cite it using the following information."
title: "build123d: A Python-based parametric CAD library"
version: "0.9.1"
doi: "10.5281/zenodo.14872323"
authors:
- name: "Roger Maitland"
affiliation: "Independent Developer"
date-released: "2025-02-14"
repository-code: "https://github.com/gumyr/build123d"
license: "Apache-2.0"
keywords:
- CAD
- Python
- OpenCascade
- Parametric Design

View file

@ -1,34 +1,13 @@
# Contributing When writing code for inclusion in build123d please add docs and
When writing code for inclusion in build123d please add docstrings and
tests, ensure they build and pass, and ensure that `pylint` and `mypy` tests, ensure they build and pass, and ensure that `pylint` and `mypy`
are happy with your code. are happy with your code.
## Setup - Install `pip` following their [documentation](https://pip.pypa.io/en/stable/installation/).
- Install development dependencies: `pip install pylint pytest mypy sphinx black`
Ensure `pip` is installed and [up-to-date](https://pip.pypa.io/en/stable/installation/#upgrading-pip). - Install docs dependencies: `pip install -r docs/requirements.txt` (might need to comment out the build123d line in that file)
Clone the build123d repo and install in editable mode: - Install `build123d` in editable mode from current dir: `pip install -e .`
- Run tests with: `python -m pytest`
``` - Build docs with: `cd docs && make html`
git clone https://github.com/gumyr/build123d.git - Check added files' style with: `pylint <path/to/file.py>`
cd build123d
pip install -e .
```
Install development and docs dependencies:
```
pip install -e ".[development]"
pip install -e ".[docs]"
```
## Before submitting a PR
- Run tests with: `python -m pytest -n auto`
- Check added files' style with: `pylint <path/to/file.py>`
- Check added files' type annotations with: `mypy <path/to/file.py>` - Check added files' type annotations with: `mypy <path/to/file.py>`
- Run black formatter against files' changed: `black <path/to/file.py>` - Run black formatter against files' changed: `black --config pyproject.toml <path/to/file.py>` (where the pyproject.toml is from this project's repository)
To verify documentation changes build docs with:
- Linux/macOS: `./docs/make html`
- Windows: `./docs/make.bat html`

View file

@ -1,19 +0,0 @@
# Citation
If you use **build123d** in your research, please cite:
Roger Maitland. **"build123d: A Python-based parametric CAD library"**. Version 0.9.1, 2025.
DOI: [10.5281/zenodo.14872323](https://doi.org/10.5281/zenodo.14872323)
Source Code: [GitHub](https://github.com/gumyr/build123d)
## BibTeX Entry
```bibtex
@software{build123d,
author = {Roger Maitland},
title = {build123d: A Python-based parametric CAD library},
year = {2025},
version = {0.9.1},
doi = {10.5281/zenodo.14872323},
url = {https://github.com/gumyr/build123d}
}

15
NOTICE
View file

@ -1,15 +0,0 @@
build123d
Copyright (c) 20222025 The build123d Contributors
Licensed 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
-------------------------------------------------------------------------------
This project was originally derived from portions of the CadQuery codebase
(https://github.com/CadQuery/cadquery) but has since been extensively
refactored and restructured into an independent system.
CadQuery is licensed under the Apache License, Version 2.0.

258
README.md
View file

@ -1,256 +1,46 @@
<h1 align="center"> <p align="center">
<img alt="build123d logo" src="https://github.com/gumyr/build123d/raw/dev/docs/assets/build123d_logo/logo-banner.svg"> <img alt="build123d logo" src="docs/assets/build123d_logo/logo-banner.svg">
</h1> </p>
[![Documentation Status](https://readthedocs.org/projects/build123d/badge/?version=latest)](https://build123d.readthedocs.io/en/latest/?badge=latest) [![Documentation Status](https://readthedocs.org/projects/build123d/badge/?version=latest)](https://build123d.readthedocs.io/en/latest/?badge=latest)
[![tests](https://github.com/gumyr/build123d/actions/workflows/test.yml/badge.svg)](https://github.com/gumyr/build123d/actions/workflows/test.yml) [![tests](https://github.com/gumyr/build123d/actions/workflows/test.yml/badge.svg)](https://github.com/gumyr/build123d/actions/workflows/test.yml)
[![pylint](https://github.com/gumyr/build123d/actions/workflows/lint.yml/badge.svg)](https://github.com/gumyr/build123d/actions/workflows/lint.yml) [![pylint](https://github.com/gumyr/build123d/actions/workflows/lint.yml/badge.svg)](https://github.com/gumyr/build123d/actions/workflows/lint.yml)
[![mypy](https://github.com/gumyr/build123d/actions/workflows/mypy.yml/badge.svg)](https://github.com/gumyr/build123d/actions/workflows/mypy.yml)
[![codecov](https://codecov.io/gh/gumyr/build123d/branch/dev/graph/badge.svg)](https://codecov.io/gh/gumyr/build123d) [![codecov](https://codecov.io/gh/gumyr/build123d/branch/dev/graph/badge.svg)](https://codecov.io/gh/gumyr/build123d)
![Python Versions](https://img.shields.io/badge/python-3.10%20|%203.11%20|%203.12%20|%203.13-blue) Build123d is a python-based, parametric, boundary representation (BREP) modeling framework for 2D and 3D CAD. It's built on the Open Cascade geometric kernel and allows for the creation of complex models using a simple and intuitive python syntax. Build123d can be used to create models for 3D printing, CNC machining, laser cutting, and other manufacturing processes. Models can be exported to a wide variety of popular CAD tools such as FreeCAD and SolidWorks.
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![PyPI version](https://img.shields.io/pypi/v/build123d.svg)](https://pypi.org/project/build123d/) Build123d could be considered as an evolution of [CadQuery](https://cadquery.readthedocs.io/en/latest/index.html) where the somewhat restrictive Fluent API (method chaining) is replaced with stateful context managers - e.g. `with` blocks - thus enabling the full python toolbox: for loops, references to objects, object sorting and filtering, etc.
[![Downloads](https://pepy.tech/badge/build123d)](https://pepy.tech/project/build123d)
[![Downloads/month](https://pepy.tech/badge/build123d/month)](https://pepy.tech/project/build123d)
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/build123d.svg)](https://pypi.org/project/build123d/)
[![DOI](https://zenodo.org/badge/510925389.svg)](https://zenodo.org/badge/latestdoi/510925389)
[Documentation](https://build123d.readthedocs.io/en/latest/index.html) | The documentation for **build123d** can found at [readthedocs](https://build123d.readthedocs.io/en/latest/index.html).
[Cheat Sheet](https://build123d.readthedocs.io/en/latest/cheat_sheet.html) |
[Discord](https://discord.com/invite/Bj9AQPsCfx) |
[Discussions](https://github.com/gumyr/build123d/discussions) |
[Issues](https://github.com/gumyr/build123d/issues ) |
[Contributing](#contributing)
build123d is a Python-based, parametric [boundary representation (BREP)][BREP] modeling framework for 2D and 3D CAD. Built on the [Open Cascade] geometric kernel, it provides a clean, fully Pythonic interface for creating precise models suitable for 3D printing, CNC machining, laser cutting, and other manufacturing processes. There is a [***Discord***](https://discord.com/invite/Bj9AQPsCfx) server (shared with CadQuery) where you can ask for help in the build123d channel.
<div align="left">
<img style="height:200px" alt="bracket" src="https://github.com/gumyr/build123d/raw/dev/docs/assets/examples/toy_truck.png">
<img style="height:200px" alt="key cap" src="https://github.com/gumyr/build123d/raw/dev/docs/assets/examples/key_cap.png">
<img style="height:200px" alt="hangar" src="https://github.com/gumyr/build123d/raw/dev/docs/assets/ttt/ttt-23-02-02-sm_hanger_object.png">
</div>
## Features
Designed for modern, maintainable CAD-as-code, build123d combines clear architecture with expressive, algebraic modeling. It offers:
- Minimal or no internal state depending on mode,
- Explicit 1D, 2D, and 3D geometry classes with well-defined operations,
- Extensibility through subclassing and functional composition—no monkey patching,
- Standards-compliant code (PEP 8, mypy, pylint) with rich pylance type hints,
- Deep Python integration—selectors as lists, locations as iterables, and natural conversions (`Solid(shell)`, `tuple(Vector)`),
- Operator-driven modeling (`obj += sub_obj`, `Plane.XZ * Pos(X=5) * Rectangle(1, 1)`) for algebraic, readable, and composable design logic,
- Export formats to popular CAD tools such as [FreeCAD] and SolidWorks.
## Usage
Although wildcard imports are generally bad practice, build123d scripts are usually self contained and importing the large number of objects and methods into the namespace is common:
```py
from build123d import *
```
### Constructing a 1D Shape
Edges, Wires (multiple connected Edges), and Curves (a Compound of Edges and Wires) are the 1D Shapes available in build123d. A single Edge can be created from a Line object with two vector-like positions:
```py
line = Line((0, -3), (6, -3))
```
Additional Edges and Wires may be added to (or subtracted from) the initial line. These objects can reference coordinates along another line through the position (`@`) and tangent (`%`) operators to specify input Vectors:
```py
line += JernArc(line @ 1, line % 1, radius=3, arc_size=180)
line += PolarLine(line @ 1, 6, direction=line % 1)
```
<div align="left">
<img style="max-height:150px" alt="create 1d" src="https://github.com/gumyr/build123d/raw/dev/docs/assets/readme/create_1d.png">
</div>
### Upgrading to 2D and 3D
Faces, Shells (multiple connected Faces), and Sketches (a Compound of Faces and Shells) are the 2D Shapes available in build123d. The previous line is sufficiently defined to close the Wire and create a Face with `make_hull`:
```py
sketch = make_hull(line)
```
A Circle face is translated with `Pos`, a Location object like `Rot` for transforming Shapes, and subtracted from the sketch. This sketch face is then extruded into a Solid part:
```py
sketch -= Pos(6, 0, 0) * Circle(2)
part = extrude(sketch, amount= 2)
```
<div align="left">
<img style="max-height:150px" alt="upgrade 2D" src="https://github.com/gumyr/build123d/raw/dev/docs/assets/readme/upgrade_2d.png">
</div>
### Adding to and modifying part
Solids and Parts (a Compound of Solids) are the 1D Shapes available in build123d. A second part can be created from an additional Face. Planes can also be used for positioning and orienting Shape objects. Many objects offer an affordance for alignment relative to the object origin:
```py
plate_sketch = Plane.YZ * RectangleRounded(16, 6, 1.5, align=(Align.CENTER, Align.MIN))
plate = extrude(plate_sketch, amount=-2)
```
Shape topology can be extracted from Shapes with selectors which return ShapeLists. ShapeLists offer methods for sorting, grouping, and filtering Shapes by Shape properties, such as finding a Face by area and selecting position along an Axis and specifying a target with a list slice. A Plane is created from the specified Face to locate an iterable of Locations to place multiple objects on the second part before it is added to the main part:
```py
plate_face = plate.faces().group_by(Face.area)[-1].sort_by(Axis.X)[-1]
plate -= Plane(plate_face) * GridLocations(13, 3, 2, 2) * CounterSinkHole(.5, 1, 2)
part += plate
```
ShapeList selectors and operators offer powerful methods for specifying Shape features through properties such as length/area/volume, orientation relative to an Axis or Plane, and geometry type:
```py
part = fillet(part.edges().filter_by(lambda e: e.length == 2).filter_by(Axis.Z), 1)
bore = part.faces().filter_by(GeomType.CYLINDER).filter_by(lambda f: f.radius == 2)
part = chamfer(bore.edges(), .2)
```
<div align="left">
<img style="max-height:150px" alt="modify part" src="https://github.com/gumyr/build123d/raw/dev/docs/assets/readme/add_part.png">
</div>
### Builder Mode
The previous construction is through the **Algebra Mode** interface, which follows a stateless paradigm where each object is explicitly tracked and mutated by algebraic operators.
**Builder Mode** is an alternative build123d interface where state is tracked and structured in a design history-like way where each dimension is distinct. Operations are aware pending faces and edges from Build contexts and location transformations are applied to all child objects in Build and Locations contexts. While each Build context tracks state, operations like `extrude` can still optionally take explicit Shape input instead of implicitly using pending Shapes. Builder mode also introduces the `mode` affordance to objects to specify how new Shapes are combined with the context:
```py
with BuildPart() as part_context:
with BuildSketch() as sketch:
with BuildLine() as line:
l1 = Line((0, -3), (6, -3))
l2 = JernArc(l1 @ 1, l1 % 1, radius=3, arc_size=180)
l3 = PolarLine(l2 @ 1, 6, direction=l2 % 1)
l4 = Line(l1 @ 0, l3 @ 1)
make_face()
with Locations((6, 0, 0)):
Circle(2, mode=Mode.SUBTRACT)
extrude(amount=2)
with BuildSketch(Plane.YZ) as plate_sketch:
RectangleRounded(16, 6, 1.5, align=(Align.CENTER, Align.MIN))
plate = extrude(amount=-2)
with Locations(plate.faces().group_by(Face.area)[-1].sort_by(Axis.X)[-1]):
with GridLocations(13, 3, 2, 2):
CounterSinkHole(.5, 1)
fillet(edges().filter_by(lambda e: e.length == 2).filter_by(Axis.Z), 1)
bore = faces().filter_by(GeomType.CYLINDER).filter_by(lambda f: f.radius == 2)
chamfer(bore.edges(), .2)
```
### Extending objects
New objects may be created for parametric reusability from base object classes:
```py
class Punch(BaseSketchObject):
def __init__(
self,
radius: float,
size: float,
blobs: float,
mode: Mode = Mode.ADD,
):
with BuildSketch() as punch:
if blobs == 1:
Circle(size)
else:
with PolarLocations(radius, blobs):
Circle(size)
if len(faces()) > 1:
raise RuntimeError("radius is too large for number and size of blobs")
add(Face(faces()[0].outer_wire()), mode=Mode.REPLACE)
super().__init__(obj=punch.sketch, mode=mode)
tape = Rectangle(20, 5)
for i, location in enumerate(GridLocations(5, 0, 4, 1)):
tape -= location * Punch(.8, 1, i + 1)
```
<div align="left">
<img style="max-height:150px" alt="extend" src="https://github.com/gumyr/build123d/raw/dev/docs/assets/readme/extend.png">
</div>
### Data interchange
build123d can import and export a number data formats for interchange with 2D and 3D design tools, 3D printing slicers, and traditional CAM:
```py
svg = import_svg("spade.svg")
step = import_step("nema-17-bracket.step")
export_stl(part, "bracket.stl")
export_step(part_context.part, "bracket.step")
```
### Further reading
More [Examples](https://build123d.readthedocs.io/en/latest/introductory_examples.html) and [Tutorials](https://build123d.readthedocs.io/en/latest/tutorials.html) are found in the documentation.
## Installation
For additional installation options see [Installation](https://build123d.readthedocs.io/en/latest/installation.html)
### Current release
Installing build123d from `pip` is recommended for most users:
The recommended method for most users is to install **build123d** is:
``` ```
pip install build123d pip install build123d
``` ```
If you receive errors about conflicting dependencies, retry the installation after upgrading pip to the latest version: To get the latest non-released version of **build123d*** one can install from GitHub using one of the following two commands:
In Linux/MacOS, use the following command:
``` ```
pip install --upgrade pip python3 -m pip install git+https://github.com/gumyr/build123d
```
In Windows, use the following command:
```
python -m pip install git+https://github.com/gumyr/build123d
``` ```
### Pre-release If you receive errors about conflicting dependencies, you can retry the installation after having upgraded pip to the latest version with the following command:
build123d is under active development and up-to-date features are found in the
development branch:
``` ```
pip install git+https://github.com/gumyr/build123d python3 -m pip install --upgrade pip
``` ```
### Viewers Development install
```
git clone https://github.com/gumyr/build123d.git
cd build123d
python3 -m pip install -e .
```
build123d is best used with a viewer. The most popular viewer is [ocp_vscode](https://github.com/bernhard-42/vscode-ocp-cad-viewer), a Python package with a standalone viewer and VS Code extension. Other [Editors & Viewers](https://build123d.readthedocs.io/en/latest/external.html#external) are found in the documentation. Further installation instructions are available (e.g. Poetry, Apple Silicon) see the [installation section on readthedocs](https://build123d.readthedocs.io/en/latest/installation.html).
## Contributing
build123d is a rapidly growing project and we welcome all contributions. Whether you want to share ideas, report bugs, or implement new features, your contribution is welcome! Please see our [CONTRIBUTING.md](CONTRIBUTING.md) file to get started.
## Attribution
build123d is derived from portions of [CadQuery], but is extensively refactored and restructured into an independent framework over [Open Cascade].
## License
This project is licensed under the [Apache License 2.0](LICENSE).
[BREP]: https://en.wikipedia.org/wiki/Boundary_representation
[CadQuery]: https://cadquery.readthedocs.io/en/latest/index.html
[FreeCAD]: https://www.freecad.org/
[Open Cascade]: https://dev.opencascade.org/

View file

@ -1,202 +0,0 @@
Transitioning from OpenSCAD
===========================
Welcome to build123d! If you're familiar with OpenSCAD, you'll notice key differences in
how models are constructed. This guide is designed to help you adapt your design approach
and understand the fundamental differences in modeling philosophies. While OpenSCAD relies
heavily on Constructive Solid Geometry (CSG) to combine primitive 3D shapes like cubes and
spheres, build123d encourages a more flexible and efficient workflow based on building
lower-dimensional objects.
Why Transition to build123d?
----------------------------
Transitioning to build123d allows you to harness a modern and efficient approach to 3D modeling.
By starting with lower-dimensional objects and leveraging powerful transformation tools, you can
create precise, complex designs with ease. This workflow emphasizes modularity and maintainability,
enabling quick modifications and reducing computational complexity.
Moving Beyond Constructive Solid Geometry (CSG)
-----------------------------------------------
OpenSCAD's modeling paradigm heavily relies on Constructive Solid Geometry (CSG) to build
models by combining and subtracting 3D solids. While build123d supports similar operations,
its design philosophy encourages a fundamentally different, often more efficient approach:
starting with lower-dimensional entities like faces and edges and then transforming them
into solids.
Why Transition Away from CSG?
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
CSG is a powerful method for creating 3D models, but it has limitations when dealing with
complex designs. build123ds approach offers several advantages:
- **Simplified Complexity Management**:
Working with 2D profiles and faces instead of directly manipulating 3D solids simplifies
your workflow. In large models, the number of operations on solids can grow exponentially,
making it difficult to manage and debug. Building with 2D profiles helps keep designs
modular and organized.
- **Improved Robustness**:
Operations on 2D profiles are inherently less computationally intensive and
less error-prone than equivalent operations on 3D solids. This robustness ensures smoother
workflows and reduces the likelihood of failing operations in complex models.
- **Enhanced Efficiency**:
Constructing models from 2D profiles using operations like **extruding**, **lofting**,
**sweeping**, or **revolving** is computationally faster. These methods also provide
greater design flexibility, enabling you to create intricate forms with ease.
- **Better Precision and Control**:
Starting with 2D profiles allows for more precise geometric control. Constraints, dimensions,
and relationships between entities can be established more effectively in 2D, ensuring a solid
foundation for your 3D design.
Using a More Traditional CAD Design Workflow
--------------------------------------------
Most industry-standard CAD packages recommend starting with a sketch (a 2D object) and
transforming it into a 3D model—a design philosophy that is central to build123d.
In build123d, the design process typically begins with defining the outline of an object.
This might involve creating a complex 1D object using **BuildLine**, which provides tools
for constructing intricate wireframe geometries. The next step involves converting these
1D objects into 2D sketches using **BuildSketch**, which offers a wide range of 2D primitives
and advanced capabilities, such as:
- **make_face**: Converts a 1D **BuildLine** object into a planar 2D face.
- **make_hull**: Generates a convex hull from a 1D **BuildLine** object.
Once a 2D profile is created, it can be transformed into 3D objects in a **BuildPart** context
using operations such as:
- **Extrusion**: Extends a 2D profile along a straight path to create a 3D shape.
- **Revolution**: Rotates a 2D profile around an axis to form a symmetrical 3D object.
- **Lofting**: Connects multiple 2D profiles along a path to create smooth transitions
between shapes.
- **Sweeping**: Moves a 2D profile along a defined path to create a 3D form.
Refining the Model
^^^^^^^^^^^^^^^^^^
After creating the initial 3D shape, you can refine the model by adding details or making
modifications using build123d's advanced features, such as:
- **Fillets and Chamfers**: Smooth or bevel edges to enhance the design.
- **Boolean Operations**: Combine, subtract, or intersect 3D shapes to achieve the desired
geometry.
Example Comparison
^^^^^^^^^^^^^^^^^^
To illustrate the advantages of this approach, compare a simple model in OpenSCAD and
build123d of a piece of angle iron:
**OpenSCAD Approach**
.. code-block:: openscad
$fn = 100; // Increase the resolution for smooth fillets
// Dimensions
length = 100; // 10 cm long
width = 30; // 3 cm wide
thickness = 4; // 4 mm thick
fillet = 5; // 5 mm fillet radius
delta = 0.001; // a small number
// Create the angle iron
difference() {
// Outer shape
cube([width, length, width], center = false);
// Inner shape
union() {
translate([thickness+fillet,-delta,thickness+fillet])
rotate([-90,0,0])
cylinder(length+2*delta, fillet,fillet);
translate([thickness,-delta,thickness+fillet])
cube([width-thickness,length+2*delta,width-fillet],center=false);
translate([thickness+fillet,-delta,thickness])
cube([width-fillet,length+2*delta,width-thickness],center=false);
}
}
**build123d Approach**
.. code-block:: build123d
# Builder mode
with BuildPart() as angle_iron:
with BuildSketch() as profile:
Rectangle(3 * CM, 4 * MM, align=Align.MIN)
Rectangle(4 * MM, 3 * CM, align=Align.MIN)
extrude(amount=10 * CM)
fillet(angle_iron.edges().filter_by(lambda e: e.is_interior), 5 * MM)
.. code-block:: build123d
# Algebra mode
profile = Rectangle(3 * CM, 4 * MM, align=Align.MIN)
profile += Rectangle(4 * MM, 3 * CM, align=Align.MIN)
angle_iron = extrude(profile, 10 * CM)
angle_iron = fillet(angle_iron.edges().filter_by(lambda e: e.is_interior), 5 * MM)
.. image:: ./assets/AngleIron.png
OpenSCAD and build123d offer distinct paradigms for creating 3D models, as demonstrated
by the angle iron example. OpenSCAD relies on Constructive Solid Geometry (CSG) operations,
combining and subtracting 3D shapes like cubes and cylinders. Fillets are approximated by
manually adding high-resolution cylinders, making adjustments cumbersome and less precise.
This static approach can handle simple models but becomes challenging for complex or iterative designs.
In contrast, build123d emphasizes a profile-driven workflow. It starts with a 2D sketch,
defining the geometrys outline, which is then extruded or otherwise transformed into a
3D model. Features like fillets are applied dynamically by querying topological elements,
such as edges, using intuitive filtering methods. This approach ensures precision and
flexibility, making changes straightforward without the need for manual repositioning or realignment.
The build123d methodology is computationally efficient, leveraging mathematical precision
for features like fillets. By separating the design into manageable steps—sketching, extruding,
and refining—it aligns with traditional CAD practices and enhances readability, modularity,
and maintainability. Unlike OpenSCAD, build123ds dynamic querying of topological features
allows for easy updates and adjustments, making it better suited for modern, complex, and
iterative design workflows.
In summary, build123ds sketch-based paradigm and topological querying capabilities provide
superior precision, flexibility, and efficiency compared to OpenSCADs static, CSG-centric
approach, making it a better choice for robust and adaptable CAD modeling.
Tips for Transitioning
----------------------
- **Think in Lower Dimensions**: Begin with 1D curves or 2D sketches as the foundation
and progressively build upwards into 3D shapes.
- **Leverage Topological References**: Use build123d's powerful selector system to
reference features of existing objects for creating new ones. For example, apply
inside or outside fillets and chamfers to vertices and edges of an existing part
with precision.
- **Operational Equivalency and Beyond**: Build123d provides equivalents to almost all
features available in OpenSCAD, with the exception of the 3D **minkowski** operation.
However, a 2D equivalent, **make_hull**, is available in build123d. Beyond operational
equivalency, build123d offers a wealth of additional functionality, including advanced
features like topological queries, dynamic filtering, and robust tools for creating complex
geometries. By exploring build123d's extensive operations, you can unlock new possibilities
and take your designs far beyond the capabilities of OpenSCAD.
- **Explore the Documentation**: Dive into build123ds comprehensive API documentation
to unlock its full potential and discover advanced features.
By shifting your design mindset from solid-based CSG to a profile-driven approach, you
can fully harness build123d's capabilities to create precise, efficient, and complex models.
Welcome aboard, and happy designing!
Conclusion
----------
While OpenSCAD and build123d share the goal of empowering users to create parametric 3D
models, their approaches differ significantly. Embracing build123ds workflow of building
with lower-dimensional objects and applying extrusion, lofting, sweeping, or revolution
will unlock its full potential and lead to better design outcomes.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -20,7 +20,7 @@ python context manager.
... ...
) )
.. code-block:: build123d .. code-block:: python
# build123d API # build123d API
with BuildPart() as pillow_block: with BuildPart() as pillow_block:
@ -43,7 +43,7 @@ Each object and operation is now a class instantiation that interacts with the
active context implicitly for the user. These instantiations can be assigned to active context implicitly for the user. These instantiations can be assigned to
an instance variable as with standard python programming for direct use. an instance variable as with standard python programming for direct use.
.. code-block:: build123d .. code-block:: python
with BuildSketch() as plan: with BuildSketch() as plan:
r = Rectangle(width, height) r = Rectangle(width, height)
@ -62,7 +62,7 @@ with tangents equal to the tangents of l5 and l6 at their end and beginning resp
Being able to extract information from existing features allows the user to "snap" new Being able to extract information from existing features allows the user to "snap" new
features to these points without knowing their numeric values. features to these points without knowing their numeric values.
.. code-block:: build123d .. code-block:: python
with BuildLine() as outline: with BuildLine() as outline:
... ...
@ -81,8 +81,7 @@ by the last operation and fillets them. Such a selection would be quite difficul
otherwise. otherwise.
.. literalinclude:: ../examples/intersecting_pipes.py .. literalinclude:: ../examples/intersecting_pipes.py
:language: build123d :lines: 29, 37-48
:lines: 30, 39-49
Extensions Extensions
@ -101,13 +100,13 @@ prompt users for valid options without having to refer to documentation.
Selectors replaced by Lists Selectors replaced by Lists
=========================== ===========================
String based selectors have been replaced with standard python filters and String based selectors have been replaced with standard python filters and
sorting which opens up the full functionality of python lists. To aid the sorting which opens up the full functionality of python lists. To aid the
user, common operations have been optimized as shown here along with user, common operations have been optimized as shown here along with
a fully custom selection: a fully custom selection:
.. code-block:: build123d .. code-block:: python
top = rail.faces().filter_by(Axis.Z)[-1] top = rail.faces().filter_by_normal(Axis.Z)[-1]
... ...
outside_vertices = filter( outside_vertices = filter(
lambda v: (v.Y == 0.0 or v.Y == height) and -width / 2 < v.X < width / 2, lambda v: (v.Y == 0.0 or v.Y == height) and -width / 2 < v.X < width / 2,

View file

@ -61,7 +61,7 @@ with :math:`B^3 \subset C^3, B^2 \subset C^2` and :math:`B^1 \subset C^1`
* This definition also includes that neither ``-`` nor ``&`` are commutative. * This definition also includes that neither ``-`` nor ``&`` are commutative.
Locations, planes and location arithmetic Locations, planes and location arithmentic
--------------------------------------------- ---------------------------------------------
**Set definitions:** **Set definitions:**

View file

@ -7,7 +7,7 @@ Creating lots of Shapes in a loop means for every step ``fuse`` and ``clean`` wi
In an example like the below, both functions get slower and slower the more objects are In an example like the below, both functions get slower and slower the more objects are
already fused. Overall it takes on an M1 Mac 4.76 sec. already fused. Overall it takes on an M1 Mac 4.76 sec.
.. code-block:: build123d .. code-block:: python
diam = 80 diam = 80
holes = Sketch() holes = Sketch()
@ -22,7 +22,7 @@ already fused. Overall it takes on an M1 Mac 4.76 sec.
One way to avoid it is to use lazy evaluation for the algebra operations. Just collect all objects and One way to avoid it is to use lazy evaluation for the algebra operations. Just collect all objects and
then call ``fuse`` (``+``) once with all objects and ``clean`` once. Overall it takes 0.19 sec. then call ``fuse`` (``+``) once with all objects and ``clean`` once. Overall it takes 0.19 sec.
.. code-block:: build123d .. code-block:: python
r = Rectangle(2, 2) r = Rectangle(2, 2)
holes = [ holes = [
@ -36,7 +36,7 @@ then call ``fuse`` (``+``) once with all objects and ``clean`` once. Overall it
Another way to leverage the vectorized algebra operations is to add a list comprehension of objects to Another way to leverage the vectorized algebra operations is to add a list comprehension of objects to
an empty ``Part``, ``Sketch`` or ``Curve``: an empty ``Part``, ``Sketch`` or ``Curve``:
.. code-block:: build123d .. code-block:: python
polygons = Sketch() + [ polygons = Sketch() + [
loc * RegularPolygon(radius=5, side_count=5) loc * RegularPolygon(radius=5, side_count=5)

View file

@ -22,7 +22,6 @@ Here we'll assign labels to all of the components that will be part of the box
assembly: assembly:
.. literalinclude:: tutorial_joints.py .. literalinclude:: tutorial_joints.py
:language: build123d
:start-after: [Add labels] :start-after: [Add labels]
:end-before: [Create assembly] :end-before: [Create assembly]
@ -37,7 +36,6 @@ Creation of the assembly is done by simply creating a :class:`~topology.Compound
appropriate ``parent`` and ``children`` attributes as shown here: appropriate ``parent`` and ``children`` attributes as shown here:
.. literalinclude:: tutorial_joints.py .. literalinclude:: tutorial_joints.py
:language: build123d
:start-after: [Create assembly] :start-after: [Create assembly]
:end-before: [Display assembly] :end-before: [Display assembly]
@ -45,7 +43,6 @@ To display the topology of an assembly :class:`~topology.Compound`, the :meth:`~
method can be used as follows: method can be used as follows:
.. literalinclude:: tutorial_joints.py .. literalinclude:: tutorial_joints.py
:language: build123d
:start-after: [Display assembly] :start-after: [Display assembly]
:end-before: [Add to the assembly by assigning the parent attribute of an object] :end-before: [Add to the assembly by assigning the parent attribute of an object]
@ -62,7 +59,6 @@ which results in:
To add to an assembly :class:`~topology.Compound` one can change either ``children`` or ``parent`` attributes. To add to an assembly :class:`~topology.Compound` one can change either ``children`` or ``parent`` attributes.
.. literalinclude:: tutorial_joints.py .. literalinclude:: tutorial_joints.py
:language: build123d
:start-after: [Add to the assembly by assigning the parent attribute of an object] :start-after: [Add to the assembly by assigning the parent attribute of an object]
:end-before: [Check that the components in the assembly don't intersect] :end-before: [Check that the components in the assembly don't intersect]
@ -104,24 +100,24 @@ Consider this example where 100 screws are added to an assembly:
.. code:: .. code::
screw = import_step("M6-1x12-countersunk-screw.step") screw = Compound.import_step("M6-1x12-countersunk-screw.step")
locs = HexLocations(6, 10, 10).local_locations locs = HexLocations(6, 10, 10).local_locations
screw_copies = [copy.deepcopy(screw).locate(loc) for loc in locs] screw_copies = [copy.deepcopy(screw).locate(loc) for loc in locs]
copy_assembly = Compound(children=screw_copies) copy_assembly = Compound(children=screw_copies)
export_step(copy_assembly, "copy_assembly.step") copy_assembly.export_step("copy_assembly.step")
which takes about 5 seconds to run (on an older computer) and produces which takes about 5 seconds to run (on an older computer) and produces
a file of size 51938 KB. However, if a shallow copy is used instead: a file of size 51938 KB. However, if a shallow copy is used instead:
.. code:: .. code::
screw = import_step("M6-1x12-countersunk-screw.step") screw = Compound.import_step("M6-1x12-countersunk-screw.step")
locs = HexLocations(6, 10, 10).local_locations locs = HexLocations(6, 10, 10).local_locations
screw_references = [copy.copy(screw).locate(loc) for loc in locs] screw_references = [copy.copy(screw).locate(loc) for loc in locs]
reference_assembly = Compound(children=screw_references) reference_assembly = Compound(children=screw_references)
export_step(reference_assembly, "reference_assembly.step") reference_assembly.export_step("reference_assembly.step")
this takes about ¼ second and produces a file of size 550 KB - just over this takes about ¼ second and produces a file of size 550 KB - just over
1% of the size of the ``deepcopy()`` version and only 12% larger than the 1% of the size of the ``deepcopy()`` version and only 12% larger than the
@ -161,118 +157,3 @@ adds the following attributes to :class:`~topology.Shape`:
Any iterator can be assigned to the ``children`` attribute but subsequently the children Any iterator can be assigned to the ``children`` attribute but subsequently the children
are stored as immutable ``tuple`` objects. To add a child to an existing :class:`~topology.Compound` are stored as immutable ``tuple`` objects. To add a child to an existing :class:`~topology.Compound`
object, the ``children`` attribute will have to be reassigned. object, the ``children`` attribute will have to be reassigned.
.. _pack:
************************
Iterating Over Compounds
************************
As Compounds are containers for shapes, build123d can iterate over these as required.
Complex nested assemblies (compounds within compounds) do not need to be looped over with recursive functions.
In the example below, the variable total_volume holds the sum of all the volumes in each solid in an assembly.
Compare this to assembly3_volume which only results in the volume of the top level part.
.. code:: python
# [import]
from build123d import *
from ocp_vscode import *
# Each assembly has a box and the previous assembly.
assembly1 = Compound(label='Assembly1', children=[Box(1, 1, 1),])
assembly2 = Compound(label='Assembly2', children=[assembly1, Box(1, 1, 1)])
assembly3 = Compound(label='Assembly3', children=[assembly2, Box(1, 1, 1)])
total_volume = sum(part.volume for part in assembly3.solids()) # 3
assembly3_volume = assembly3.volume # 1
******
pack
******
The :meth:`pack.pack` function arranges objects in a compact, non-overlapping layout within a square(ish) 2D area. It is designed to minimize the space between objects while ensuring that no two objects overlap.
.. py:module:: pack
.. autofunction:: pack
Detailed Description
---------------------
The ``pack`` function uses a bin-packing algorithm to efficiently place objects within a 2D plane, ensuring that there is no overlap and that the space between objects is minimized. This is particularly useful in scenarios where spatial efficiency is crucial, such as layout design and object arrangement in constrained spaces.
The function begins by calculating the bounding boxes for each object, including the specified padding. It then uses a helper function ``_pack2d`` to determine the optimal positions for each object within the 2D plane. The positions are then translated back to the original objects, ensuring that they are arranged without overlapping.
Usage Note
----------
The ``align_z`` parameter is especially useful when creating print-plates for 3D printing. By aligning the bottoms of the shapes to the same XY plane, you ensure that the objects are perfectly positioned for slicing software, which will no longer need to perform this alignment for you. This can streamline the process and improve the accuracy of the print setup.
Example Usage
-------------
.. code:: python
# [import]
from build123d import *
from ocp_vscode import *
# [initial space]
b1 = Box(100, 100, 100, align=(Align.CENTER, Align.CENTER, Align.MIN))
b2 = Box(54, 54, 54, align=(Align.CENTER, Align.CENTER, Align.MAX), mode=Mode.SUBTRACT)
b3 = Box(34, 34, 34, align=(Align.MIN, Align.MIN, Align.CENTER), mode=Mode.SUBTRACT)
b4 = Box(24, 24, 24, align=(Align.MAX, Align.MAX, Align.CENTER), mode=Mode.SUBTRACT)
.. image:: assets/pack_demo_initial_state.svg
:align: center
.. code:: python
# [pack 2D]
xy_pack = pack(
[b1, b2, b3, b4],
padding=5,
align_z=False
)
.. image:: assets/pack_demo_packed_xy.svg
:align: center
.. code:: python
# [Pack and align_z]
z_pack = pack(
[b1, b2, b3, b4],
padding=5,
align_z=True
)
.. image:: assets/pack_demo_packed_z.svg
:align: center
Tip
---
If you place the arranged objects into a ``Compound``, you can easily determine their bounding box and check whether the objects fit on your print bed.
.. code:: python
# [bounding box]
print(Compound(xy_pack).bounding_box())
# bbox: 0.0 <= x <= 159.0, 0.0 <= y <= 129.0, -54.0 <= z <= 100.0
print(Compound(z_pack).bounding_box())
# bbox: 0.0 <= x <= 159.0, 0.0 <= y <= 129.0, 0.0 <= z <= 100.0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

View file

@ -2,79 +2,79 @@
<svg width="100.09mm" height="100.09mm" viewBox="-1.0009 -1.0009 2.0018 2.0018" version="1.1" xmlns="http://www.w3.org/2000/svg"> <svg width="100.09mm" height="100.09mm" viewBox="-1.0009 -1.0009 2.0018 2.0018" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round"> <g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.0018"> <g fill="none" stroke="rgb(0,0,0)" stroke-width="0.0018">
<path d="M 0.933013,0.25 A 0.5,0.5 -89.99999999999996 0,1 0.25,0.933013 A 0.5,0.5 0.0 0,1 -0.25,0.933013 A 0.5,0.5 0.0 0,1 -0.933013,0.25 A 0.5,0.5 0.0 0,1 -0.933013,-0.25 A 0.5,0.5 0.0 0,1 -0.25,-0.933013 A 0.5,0.5 0.0 0,1 0.25,-0.933013 A 0.5,0.5 180.0 0,1 0.933013,-0.25 A 0.5,0.5 -30.000000000000266 0,1 0.933013,0.25 M -0.2599,-0.927144 A 0.49,0.49 0.0 0,0 -0.927144,-0.2599 A 0.5,0.5 0.0 0,1 -0.5,-0.5 A 0.5,0.5 0.0 0,1 -0.2599,-0.927144 M 0.49,-0.4999 A 0.49,0.49 0.011694209715779905 1,0 -0.49,-0.4999 A 0.5,0.5 0.0 0,1 -0.25,-0.433013 A 0.5,0.5 0.0 0,1 0.25,-0.433013 A 0.5,0.5 0.0 0,1 0.49,-0.4999 M 0.927144,-0.2599 A 0.49,0.49 119.34058157502298 0,0 0.2599,-0.927144 A 0.5,0.5 -58.681163150047965 0,1 0.5,-0.5 A 0.5,0.5 0.0 0,1 0.927144,-0.2599 M -0.2599,-0.427144 A 0.49,0.49 0.0 1,0 -0.2599,0.427144 A 0.5,0.5 0.0 0,1 -0.2599,-0.427144 M 0.49,-0.0 A 0.49,0.49 0.0 0,0 -0.49,0.0 A 0.49,0.49 0.0 0,0 0.49,0.0 M -0.2599,0.927144 A 0.5,0.5 0.0 0,1 -0.5,0.5 A 0.5,0.5 0.0 0,1 -0.927144,0.2599 A 0.49,0.49 0.0 0,0 -0.2599,0.927144 M 0.49,0.4999 A 0.5,0.5 0.0 0,1 0.25,0.433013 A 0.5,0.5 0.0 0,1 -0.25,0.433013 A 0.5,0.5 0.0 0,1 -0.49,0.4999 A 0.49,0.49 -179.98830579028402 1,0 0.49,0.4999 M 0.2599,-0.427144 A 0.5,0.5 -58.6811631500469 0,1 0.2599,0.427144 A 0.49,0.49 119.34058157502298 1,0 0.2599,-0.427144 M 0.2599,0.927144 A 0.49,0.49 119.34058157502298 0,0 0.927144,0.2599 A 0.5,0.5 0.0 0,1 0.5,0.5 A 0.5,0.5 -58.681163150048015 0,1 0.2599,0.927144" /> <path d="M 0.933013,0.25 A 0.5,0.5 -89.99999999999996 0,1 0.25,0.933013 A 0.5,0.5 0.0 0,1 -0.25,0.933013 A 0.5,0.5 0.0 0,1 -0.933013,0.25 A 0.5,0.5 0.0 0,1 -0.933013,-0.25 A 0.5,0.5 0.0 0,1 -0.25,-0.933013 A 0.5,0.5 0.0 0,1 0.25,-0.933013 A 0.5,0.5 180.0 0,1 0.933013,-0.25 A 0.5,0.5 -30.000000000000266 0,1 0.933013,0.25 M -0.2599,-0.927144 A 0.49,0.49 0.0 0,0 -0.927144,-0.2599 A 0.5,0.5 0.0 0,1 -0.5,-0.5 A 0.5,0.5 0.0 0,1 -0.2599,-0.927144 M 0.49,-0.4999 A 0.49,0.49 0.011694209715779905 1,0 -0.49,-0.4999 A 0.5,0.5 0.0 0,1 -0.25,-0.433013 A 0.5,0.5 0.0 0,1 0.25,-0.433013 A 0.5,0.5 0.0 0,1 0.49,-0.4999 M 0.927144,-0.2599 A 0.49,0.49 119.34058157502295 0,0 0.2599,-0.927144 A 0.5,0.5 -58.681163150047965 0,1 0.5,-0.5 A 0.5,0.5 0.0 0,1 0.927144,-0.2599 M -0.2599,-0.427144 A 0.49,0.49 0.0 1,0 -0.2599,0.427144 A 0.5,0.5 0.0 0,1 -0.2599,-0.427144 M -0.2599,0.927144 A 0.5,0.5 0.0 0,1 -0.5,0.5 A 0.5,0.5 0.0 0,1 -0.927144,0.2599 A 0.49,0.49 0.0 0,0 -0.2599,0.927144 M 0.49,-0.0 A 0.49,0.49 0.0 0,0 -0.49,0.0 A 0.49,0.49 0.0 0,0 0.49,0.0 M 0.2599,-0.427144 A 0.5,0.5 -58.681163150047965 0,1 0.2599,0.427144 A 0.49,0.49 119.34058157502298 1,0 0.2599,-0.427144 M 0.49,0.4999 A 0.5,0.5 0.0 0,1 0.25,0.433013 A 0.5,0.5 0.0 0,1 -0.25,0.433013 A 0.5,0.5 0.0 0,1 -0.49,0.4999 A 0.49,0.49 -179.98830579028402 1,0 0.49,0.4999 M 0.2599,0.927144 A 0.49,0.49 119.34058157502295 0,0 0.927144,0.2599 A 0.5,0.5 0.0 0,1 0.5,0.5 A 0.5,0.5 -58.681163150048015 0,1 0.2599,0.927144" />
<path d="M 0.69104,0.767124 L 0.697432,0.767124 L 0.697432,0.80978 L 0.711924,0.767124 L 0.717905,0.767124 L 0.732466,0.809063 L 0.732466,0.767124 L 0.738857,0.767124 L 0.738857,0.817231 L 0.729937,0.817231 L 0.717939,0.782368 Q 0.716128,0.77707 0.715273,0.774336 Q 0.714521,0.776797 0.712881,0.781753 L 0.701021,0.817231 L 0.69104,0.817231 L 0.69104,0.767124" /> <path d="M 0.729735,0.805825 L 0.729735,0.774115 Q 0.73068,0.76652 0.723365,0.767045 L 0.723365,0.765715 L 0.742965,0.765715 L 0.742965,0.767045 Q 0.73607,0.766765 0.736875,0.773345 L 0.736875,0.804425 Q 0.736,0.810935 0.742965,0.810725 L 0.742965,0.812055 L 0.729035,0.812055 L 0.713565,0.776705 L 0.697395,0.812055 L 0.683535,0.812055 L 0.683535,0.810725 Q 0.6912,0.811145 0.690185,0.804425 L 0.690185,0.776005 Q 0.69113,0.766415 0.683395,0.767045 L 0.683395,0.765715 L 0.699845,0.765715 L 0.699845,0.767045 Q 0.692495,0.766415 0.693265,0.776005 L 0.693265,0.804215 L 0.710835,0.765715 L 0.711815,0.765715 L 0.729735,0.805825" />
<path d="M 0.750684,0.767124 L 0.757314,0.767124 L 0.757314,0.817231 L 0.750684,0.817231 L 0.750684,0.767124" /> <path d="M 0.751855,0.804425 L 0.751855,0.773345 Q 0.75287,0.766415 0.745065,0.767045 L 0.745065,0.765715 L 0.765855,0.765715 L 0.765855,0.767045 Q 0.758085,0.766485 0.758995,0.773345 L 0.758995,0.804425 Q 0.758015,0.811215 0.765855,0.810725 L 0.765855,0.812055 L 0.745065,0.812055 L 0.745065,0.810725 Q 0.75294,0.811145 0.751855,0.804425" />
<path d="M 0.768936,0.767124 L 0.775293,0.767124 L 0.775293,0.806499 L 0.801611,0.767124 L 0.808413,0.767124 L 0.808413,0.817231 L 0.802056,0.817231 L 0.802056,0.777891 L 0.775737,0.817231 L 0.768936,0.817231 L 0.768936,0.767124" /> <path d="M 0.816605,0.810725 L 0.816605,0.812055 L 0.800155,0.812055 L 0.800155,0.810725 Q 0.807645,0.811215 0.806875,0.801765 L 0.806875,0.778175 L 0.779925,0.812055 L 0.767955,0.812055 L 0.767955,0.810725 Q 0.77149,0.81125 0.774745,0.806875 L 0.774745,0.776005 Q 0.77569,0.766415 0.767955,0.767045 L 0.767955,0.765715 L 0.784405,0.765715 L 0.784405,0.767045 Q 0.777055,0.766415 0.777825,0.776005 L 0.777825,0.803445 L 0.808765,0.764945 L 0.809955,0.764945 L 0.809955,0.801765 Q 0.810049,0.812075 0.816605,0.810725" />
<path d="M 0.69104,0.686631 L 0.697432,0.686631 L 0.697432,0.729287 L 0.711924,0.686631 L 0.717905,0.686631 L 0.732466,0.728569 L 0.732466,0.686631 L 0.738857,0.686631 L 0.738857,0.736738 L 0.729937,0.736738 L 0.717939,0.701875 Q 0.716128,0.696577 0.715273,0.693843 Q 0.714521,0.696304 0.712881,0.70126 L 0.701021,0.736738 L 0.69104,0.736738 L 0.69104,0.686631" /> <path d="M 0.729735,0.728825 L 0.729735,0.697115 Q 0.73068,0.68952 0.723365,0.690045 L 0.723365,0.688715 L 0.742965,0.688715 L 0.742965,0.690045 Q 0.73607,0.689765 0.736875,0.696345 L 0.736875,0.727425 Q 0.736,0.733935 0.742965,0.733725 L 0.742965,0.735055 L 0.729035,0.735055 L 0.713565,0.699705 L 0.697395,0.735055 L 0.683535,0.735055 L 0.683535,0.733725 Q 0.6912,0.734145 0.690185,0.727425 L 0.690185,0.699005 Q 0.69113,0.689415 0.683395,0.690045 L 0.683395,0.688715 L 0.699845,0.688715 L 0.699845,0.690045 Q 0.692495,0.689415 0.693265,0.699005 L 0.693265,0.727215 L 0.710835,0.688715 L 0.711815,0.688715 L 0.729735,0.728825" />
<path d="M 0.750684,0.686631 L 0.757314,0.686631 L 0.757314,0.736738 L 0.750684,0.736738 L 0.750684,0.686631" /> <path d="M 0.751855,0.727425 L 0.751855,0.696345 Q 0.75287,0.689415 0.745065,0.690045 L 0.745065,0.688715 L 0.765855,0.688715 L 0.765855,0.690045 Q 0.758085,0.689485 0.758995,0.696345 L 0.758995,0.727425 Q 0.758015,0.734215 0.765855,0.733725 L 0.765855,0.735055 L 0.745065,0.735055 L 0.745065,0.733725 Q 0.75294,0.734145 0.751855,0.727425" />
<path d="M 0.768936,0.686631 L 0.775293,0.686631 L 0.775293,0.726006 L 0.801611,0.686631 L 0.808413,0.686631 L 0.808413,0.736738 L 0.802056,0.736738 L 0.802056,0.697397 L 0.775737,0.736738 L 0.768936,0.736738 L 0.768936,0.686631" /> <path d="M 0.816605,0.733725 L 0.816605,0.735055 L 0.800155,0.735055 L 0.800155,0.733725 Q 0.807645,0.734215 0.806875,0.724765 L 0.806875,0.701175 L 0.779925,0.735055 L 0.767955,0.735055 L 0.767955,0.733725 Q 0.77149,0.73425 0.774745,0.729875 L 0.774745,0.699005 Q 0.77569,0.689415 0.767955,0.690045 L 0.767955,0.688715 L 0.784405,0.688715 L 0.784405,0.690045 Q 0.777055,0.689415 0.777825,0.699005 L 0.777825,0.726445 L 0.808765,0.687945 L 0.809955,0.687945 L 0.809955,0.724765 Q 0.810049,0.735075 0.816605,0.733725" />
<path d="M -0.096113,0.777771 L -0.102744,0.779446 C -0.104556,0.764184 -0.125824,0.762037 -0.131711,0.776182 C -0.13568,0.786337 -0.133959,0.795742 -0.12655,0.804397 C -0.119142,0.80932 -0.105948,0.808231 -0.103496,0.796707 L -0.096968,0.798245 C -0.101373,0.821099 -0.14289,0.816329 -0.14041,0.787307 C -0.140336,0.777059 -0.136878,0.769397 -0.130037,0.764321 C -0.119652,0.757557 -0.098714,0.760757 -0.096113,0.777771" /> <path d="M -0.095165,0.80915 C -0.096145,0.80838 -0.097125,0.80761 -0.098105,0.80684 C -0.101546,0.808546 -0.121245,0.812147 -0.127785,0.802325 C -0.136661,0.794207 -0.136733,0.775291 -0.128065,0.76736 C -0.119764,0.757929 -0.09957,0.75884 -0.092155,0.76974 L -0.093415,0.771 C -0.10351,0.76152 -0.118145,0.760015 -0.12481,0.774955 C -0.127678,0.784641 -0.126698,0.793216 -0.12187,0.80068 C -0.114562,0.810002 -0.097513,0.808008 -0.094675,0.79333 L -0.093065,0.79333 L -0.093695,0.80915 L -0.095165,0.80915" />
<path d="M -0.087808,0.761877 L -0.050415,0.761877 L -0.050415,0.767791 L -0.081177,0.767791 L -0.081177,0.784846 L -0.053457,0.784846 L -0.053457,0.790725 L -0.081177,0.790725 L -0.081177,0.806072 L -0.051577,0.806072 L -0.051577,0.811985 L -0.087808,0.811985 L -0.087808,0.761877" /> <path d="M -0.075775,0.76743 L -0.075775,0.78472 L -0.064995,0.78472 Q -0.057505,0.7857 -0.057295,0.778 L -0.055685,0.778 L -0.055685,0.79424 L -0.057295,0.79424 Q -0.057295,0.786995 -0.064995,0.78759 L -0.075775,0.78759 L -0.075775,0.80313 Q -0.07602,0.80579 -0.073465,0.80551 L -0.064015,0.80551 Q -0.053655,0.806525 -0.053375,0.79816 L -0.051625,0.79816 L -0.051835,0.80817 L -0.089005,0.80817 L -0.089005,0.80684 Q -0.08211,0.80712 -0.082915,0.80054 L -0.082915,0.76946 Q -0.08211,0.76288 -0.089005,0.76316 L -0.089005,0.76183 L -0.051205,0.76183 L -0.048055,0.77366 L -0.050015,0.77366 Q -0.053375,0.76337 -0.066535,0.76442 L -0.068425,0.76442 Q -0.07714,0.763895 -0.075775,0.76743" />
<path d="M -0.041323,0.761877 L -0.034966,0.761877 L -0.034966,0.801252 L -0.008647,0.761877 L -0.001846,0.761877 L -0.001846,0.811985 L -0.008203,0.811985 L -0.008203,0.772644 L -0.034521,0.811985 L -0.041323,0.811985 L -0.041323,0.761877" /> <path d="M 0.002345,0.80684 L 0.002345,0.80817 L -0.014105,0.80817 L -0.014105,0.80684 Q -0.006615,0.80733 -0.007385,0.79788 L -0.007385,0.77429 L -0.034335,0.80817 L -0.046305,0.80817 L -0.046305,0.80684 Q -0.04277,0.807365 -0.039515,0.80299 L -0.039515,0.77212 Q -0.03857,0.76253 -0.046305,0.76316 L -0.046305,0.76183 L -0.029855,0.76183 L -0.029855,0.76316 Q -0.037205,0.76253 -0.036435,0.77212 L -0.036435,0.79956 L -0.005495,0.76106 L -0.004305,0.76106 L -0.004305,0.79788 Q -0.004211,0.80819 0.002345,0.80684" />
<path d="M 0.022046,0.761877 L 0.028677,0.761877 L 0.028677,0.806072 L 0.045254,0.806072 L 0.045254,0.811985 L 0.005537,0.811985 L 0.005537,0.806072 L 0.022046,0.806072 L 0.022046,0.761877" /> <path d="M 0.021035,0.80523 L 0.021035,0.77023 Q 0.022085,0.762495 0.014455,0.76316 L 0.014455,0.76183 L 0.034895,0.76183 L 0.034895,0.76316 Q 0.027195,0.76267 0.028175,0.76946 L 0.028175,0.80523 L 0.031955,0.80523 Q 0.04228,0.80656 0.043085,0.79627 L 0.044765,0.79627 L 0.044345,0.80817 L 0.004865,0.80817 L 0.004445,0.79627 L 0.006125,0.79627 Q 0.00707,0.80649 0.017255,0.80523 L 0.021035,0.80523" />
<path d="M 0.052192,0.761877 L 0.089585,0.761877 L 0.089585,0.767791 L 0.058823,0.767791 L 0.058823,0.784846 L 0.086543,0.784846 L 0.086543,0.790725 L 0.058823,0.790725 L 0.058823,0.806072 L 0.088423,0.806072 L 0.088423,0.811985 L 0.052192,0.811985 L 0.052192,0.761877" /> <path d="M 0.060095,0.76743 L 0.060095,0.78472 L 0.070875,0.78472 Q 0.078365,0.7857 0.078575,0.778 L 0.080185,0.778 L 0.080185,0.79424 L 0.078575,0.79424 Q 0.078575,0.786995 0.070875,0.78759 L 0.060095,0.78759 L 0.060095,0.80313 Q 0.05985,0.80579 0.062405,0.80551 L 0.071855,0.80551 Q 0.082215,0.806525 0.082495,0.79816 L 0.084245,0.79816 L 0.084035,0.80817 L 0.046865,0.80817 L 0.046865,0.80684 Q 0.05376,0.80712 0.052955,0.80054 L 0.052955,0.76946 Q 0.05376,0.76288 0.046865,0.76316 L 0.046865,0.76183 L 0.084665,0.76183 L 0.087815,0.77366 L 0.085855,0.77366 Q 0.082495,0.76337 0.069335,0.76442 L 0.067445,0.76442 Q 0.05873,0.763895 0.060095,0.76743" />
<path d="M 0.098848,0.761877 L 0.105479,0.761877 L 0.105479,0.784128 L 0.113169,0.784128 Q 0.115732,0.784128 0.11686,0.783889 Q 0.120468,0.784363 0.128037,0.772302 L 0.134668,0.761877 L 0.143008,0.761877 L 0.134292,0.775515 Q 0.131694,0.779514 0.128789,0.78218 Q 0.127422,0.783411 0.12479,0.784675 C 0.145154,0.786192 0.143243,0.814847 0.121064,0.811985 L 0.098848,0.811985 L 0.098848,0.761877 M 0.105479,0.789871 L 0.105479,0.806448 L 0.121338,0.806448 C 0.1357,0.807482 0.136366,0.78863 0.119731,0.789871 L 0.105479,0.789871" /> <path d="M 0.108885,0.80817 L 0.089565,0.80817 L 0.089565,0.80684 Q 0.09646,0.80698 0.095515,0.80054 L 0.095515,0.77023 Q 0.09646,0.762635 0.089565,0.76316 L 0.089565,0.76183 L 0.108955,0.76183 L 0.108955,0.76316 Q 0.101745,0.76281 0.102655,0.76946 L 0.102655,0.78325 L 0.106575,0.78339 L 0.123235,0.76183 L 0.134505,0.76183 L 0.134505,0.76316 L 0.128415,0.76645 L 0.113995,0.78416 Q 0.114135,0.78416 0.114345,0.78423 Q 0.131438,0.788934 0.124915,0.80215 Q 0.118129,0.808903 0.108885,0.80817 M 0.102655,0.78584 L 0.102655,0.80306 C 0.101909,0.807537 0.113894,0.805293 0.11592,0.803235 C 0.117997,0.801672 0.119035,0.799257 0.119035,0.79599 C 0.119222,0.788827 0.113762,0.785443 0.102655,0.78584" />
<path d="M -0.05896,0.691877 L -0.052568,0.691877 L -0.052568,0.734534 L -0.038076,0.691877 L -0.032095,0.691877 L -0.017534,0.733816 L -0.017534,0.691877 L -0.011143,0.691877 L -0.011143,0.741985 L -0.020063,0.741985 L -0.032061,0.707122 Q -0.033872,0.701824 -0.034727,0.699089 Q -0.035479,0.70155 -0.037119,0.706506 L -0.048979,0.741985 L -0.05896,0.741985 L -0.05896,0.691877" /> <path d="M -0.020265,0.732325 L -0.020265,0.700615 Q -0.01932,0.69302 -0.026635,0.693545 L -0.026635,0.692215 L -0.007035,0.692215 L -0.007035,0.693545 Q -0.01393,0.693265 -0.013125,0.699845 L -0.013125,0.730925 Q -0.014,0.737435 -0.007035,0.737225 L -0.007035,0.738555 L -0.020965,0.738555 L -0.036435,0.703205 L -0.052605,0.738555 L -0.066465,0.738555 L -0.066465,0.737225 Q -0.0588,0.737645 -0.059815,0.730925 L -0.059815,0.702505 Q -0.05887,0.692915 -0.066605,0.693545 L -0.066605,0.692215 L -0.050155,0.692215 L -0.050155,0.693545 Q -0.057505,0.692915 -0.056735,0.702505 L -0.056735,0.730715 L -0.039165,0.692215 L -0.038185,0.692215 L -0.020265,0.732325" />
<path d="M 0.000684,0.691877 L 0.007314,0.691877 L 0.007314,0.741985 L 0.000684,0.741985 L 0.000684,0.691877" /> <path d="M 0.001855,0.730925 L 0.001855,0.699845 Q 0.00287,0.692915 -0.004935,0.693545 L -0.004935,0.692215 L 0.015855,0.692215 L 0.015855,0.693545 Q 0.008085,0.692985 0.008995,0.699845 L 0.008995,0.730925 Q 0.008015,0.737715 0.015855,0.737225 L 0.015855,0.738555 L -0.004935,0.738555 L -0.004935,0.737225 Q 0.00294,0.737645 0.001855,0.730925" />
<path d="M 0.018936,0.691877 L 0.025293,0.691877 L 0.025293,0.731252 L 0.051611,0.691877 L 0.058413,0.691877 L 0.058413,0.741985 L 0.052056,0.741985 L 0.052056,0.702644 L 0.025737,0.741985 L 0.018936,0.741985 L 0.018936,0.691877" /> <path d="M 0.066605,0.737225 L 0.066605,0.738555 L 0.050155,0.738555 L 0.050155,0.737225 Q 0.057645,0.737715 0.056875,0.728265 L 0.056875,0.704675 L 0.029925,0.738555 L 0.017955,0.738555 L 0.017955,0.737225 Q 0.02149,0.73775 0.024745,0.733375 L 0.024745,0.702505 Q 0.02569,0.692915 0.017955,0.693545 L 0.017955,0.692215 L 0.034405,0.692215 L 0.034405,0.693545 Q 0.027055,0.692915 0.027825,0.702505 L 0.027825,0.729945 L 0.058765,0.691445 L 0.059955,0.691445 L 0.059955,0.728265 Q 0.060049,0.738575 0.066605,0.737225" />
<path d="M -0.820649,0.761877 L -0.814258,0.761877 L -0.814258,0.804534 L -0.799766,0.761877 L -0.793784,0.761877 L -0.779224,0.803816 L -0.779224,0.761877 L -0.772832,0.761877 L -0.772832,0.811985 L -0.781753,0.811985 L -0.79375,0.777122 Q -0.795562,0.771824 -0.796416,0.769089 Q -0.797168,0.77155 -0.798809,0.776506 L -0.810669,0.811985 L -0.820649,0.811985 L -0.820649,0.761877" /> <path d="M -0.783845,0.80152 L -0.783845,0.76981 Q -0.7829,0.762215 -0.790215,0.76274 L -0.790215,0.76141 L -0.770615,0.76141 L -0.770615,0.76274 Q -0.77751,0.76246 -0.776705,0.76904 L -0.776705,0.80012 Q -0.77758,0.80663 -0.770615,0.80642 L -0.770615,0.80775 L -0.784545,0.80775 L -0.800015,0.7724 L -0.816185,0.80775 L -0.830045,0.80775 L -0.830045,0.80642 Q -0.82238,0.80684 -0.823395,0.80012 L -0.823395,0.7717 Q -0.82245,0.76211 -0.830185,0.76274 L -0.830185,0.76141 L -0.813735,0.76141 L -0.813735,0.76274 Q -0.821085,0.76211 -0.820315,0.7717 L -0.820315,0.79991 L -0.802745,0.76141 L -0.801765,0.76141 L -0.783845,0.80152" />
<path d="M -0.767637,0.761877 L -0.760596,0.761877 L -0.755093,0.777053 L -0.734141,0.777053 L -0.728296,0.761877 L -0.720742,0.761877 L -0.74125,0.811985 L -0.748394,0.811985 L -0.767637,0.761877 M -0.753179,0.782454 L -0.747676,0.797151 Q -0.745933,0.801902 -0.744976,0.806721 Q -0.743813,0.802654 -0.741421,0.796331 L -0.736191,0.782454 L -0.753179,0.782454" /> <path d="M -0.720145,0.76141 L -0.720145,0.76274 Q -0.723995,0.762075 -0.726445,0.76883 L -0.743875,0.80859 L -0.745275,0.80859 L -0.759835,0.77422 Q -0.764805,0.76099 -0.768515,0.76274 L -0.768515,0.76141 L -0.754655,0.76141 L -0.754655,0.76274 Q -0.761273,0.762962 -0.758855,0.76834 L -0.755635,0.77653 L -0.737295,0.77653 L -0.734425,0.76981 Q -0.730194,0.762295 -0.737995,0.76274 L -0.737995,0.76141 L -0.720145,0.76141 M -0.754445,0.7794 L -0.746395,0.79865 L -0.738275,0.7794 L -0.754445,0.7794" />
<path d="M -0.720537,0.761877 L -0.712573,0.761877 L -0.699995,0.779343 Q -0.699277,0.780369 -0.697603,0.783103 Q -0.696475,0.781292 -0.695415,0.779753 L -0.682803,0.761877 L -0.6746,0.761877 L -0.693569,0.788367 L -0.675967,0.811985 L -0.683179,0.811985 L -0.693262,0.798689 Q -0.695552,0.795715 -0.697227,0.792981 Q -0.698423,0.795134 -0.70126,0.799133 L -0.710352,0.811985 L -0.718247,0.811985 L -0.701157,0.787991 L -0.720537,0.761877" /> <path d="M -0.670375,0.80775 L -0.687035,0.80775 L -0.687035,0.80642 Q -0.678392,0.807372 -0.684935,0.79935 L -0.692845,0.78969 L -0.695785,0.79382 Q -0.706309,0.80787 -0.698375,0.80635 L -0.696415,0.80642 L -0.696415,0.80775 L -0.717555,0.80775 L -0.717555,0.80642 Q -0.71262,0.807995 -0.704885,0.79543 L -0.697255,0.78423 L -0.708245,0.77072 Q -0.71507,0.76141 -0.718395,0.76274 L -0.718395,0.76141 L -0.702085,0.76141 L -0.702085,0.76274 Q -0.711864,0.761632 -0.703765,0.77121 L -0.695435,0.78157 L -0.688785,0.77177 Q -0.68077,0.761704 -0.690605,0.76274 L -0.690605,0.76141 L -0.669815,0.76141 L -0.669815,0.76274 Q -0.67447,0.76267 -0.677585,0.76792 L -0.691025,0.7871 L -0.680805,0.79984 Q -0.67573,0.80698 -0.670375,0.80642 L -0.670375,0.80775" />
<path d="M -0.80896,0.691877 L -0.802568,0.691877 L -0.802568,0.734534 L -0.788076,0.691877 L -0.782095,0.691877 L -0.767534,0.733816 L -0.767534,0.691877 L -0.761143,0.691877 L -0.761143,0.741985 L -0.770063,0.741985 L -0.782061,0.707122 Q -0.783872,0.701824 -0.784727,0.699089 Q -0.785479,0.70155 -0.787119,0.706506 L -0.798979,0.741985 L -0.80896,0.741985 L -0.80896,0.691877" /> <path d="M -0.770265,0.732325 L -0.770265,0.700615 Q -0.76932,0.69302 -0.776635,0.693545 L -0.776635,0.692215 L -0.757035,0.692215 L -0.757035,0.693545 Q -0.76393,0.693265 -0.763125,0.699845 L -0.763125,0.730925 Q -0.764,0.737435 -0.757035,0.737225 L -0.757035,0.738555 L -0.770965,0.738555 L -0.786435,0.703205 L -0.802605,0.738555 L -0.816465,0.738555 L -0.816465,0.737225 Q -0.8088,0.737645 -0.809815,0.730925 L -0.809815,0.702505 Q -0.80887,0.692915 -0.816605,0.693545 L -0.816605,0.692215 L -0.800155,0.692215 L -0.800155,0.693545 Q -0.807505,0.692915 -0.806735,0.702505 L -0.806735,0.730715 L -0.789165,0.692215 L -0.788185,0.692215 L -0.770265,0.732325" />
<path d="M -0.749316,0.691877 L -0.742686,0.691877 L -0.742686,0.741985 L -0.749316,0.741985 L -0.749316,0.691877" /> <path d="M -0.748145,0.730925 L -0.748145,0.699845 Q -0.74713,0.692915 -0.754935,0.693545 L -0.754935,0.692215 L -0.734145,0.692215 L -0.734145,0.693545 Q -0.741915,0.692985 -0.741005,0.699845 L -0.741005,0.730925 Q -0.741985,0.737715 -0.734145,0.737225 L -0.734145,0.738555 L -0.754935,0.738555 L -0.754935,0.737225 Q -0.74706,0.737645 -0.748145,0.730925" />
<path d="M -0.731064,0.691877 L -0.724707,0.691877 L -0.724707,0.731252 L -0.698389,0.691877 L -0.691587,0.691877 L -0.691587,0.741985 L -0.697944,0.741985 L -0.697944,0.702644 L -0.724263,0.741985 L -0.731064,0.741985 L -0.731064,0.691877" /> <path d="M -0.683395,0.737225 L -0.683395,0.738555 L -0.699845,0.738555 L -0.699845,0.737225 Q -0.692355,0.737715 -0.693125,0.728265 L -0.693125,0.704675 L -0.720075,0.738555 L -0.732045,0.738555 L -0.732045,0.737225 Q -0.72851,0.73775 -0.725255,0.733375 L -0.725255,0.702505 Q -0.72431,0.692915 -0.732045,0.693545 L -0.732045,0.692215 L -0.715595,0.692215 L -0.715595,0.693545 Q -0.722945,0.692915 -0.722175,0.702505 L -0.722175,0.729945 L -0.691235,0.691445 L -0.690045,0.691445 L -0.690045,0.728265 Q -0.689951,0.738575 -0.683395,0.737225" />
<path d="M 0.69104,0.011877 L 0.697432,0.011877 L 0.697432,0.054534 L 0.711924,0.011877 L 0.717905,0.011877 L 0.732466,0.053816 L 0.732466,0.011877 L 0.738857,0.011877 L 0.738857,0.061985 L 0.729937,0.061985 L 0.717939,0.027122 Q 0.716128,0.021824 0.715273,0.019089 Q 0.714521,0.02155 0.712881,0.026506 L 0.701021,0.061985 L 0.69104,0.061985 L 0.69104,0.011877" /> <path d="M 0.729735,0.052325 L 0.729735,0.020615 Q 0.73068,0.01302 0.723365,0.013545 L 0.723365,0.012215 L 0.742965,0.012215 L 0.742965,0.013545 Q 0.73607,0.013265 0.736875,0.019845 L 0.736875,0.050925 Q 0.736,0.057435 0.742965,0.057225 L 0.742965,0.058555 L 0.729035,0.058555 L 0.713565,0.023205 L 0.697395,0.058555 L 0.683535,0.058555 L 0.683535,0.057225 Q 0.6912,0.057645 0.690185,0.050925 L 0.690185,0.022505 Q 0.69113,0.012915 0.683395,0.013545 L 0.683395,0.012215 L 0.699845,0.012215 L 0.699845,0.013545 Q 0.692495,0.012915 0.693265,0.022505 L 0.693265,0.050715 L 0.710835,0.012215 L 0.711815,0.012215 L 0.729735,0.052325" />
<path d="M 0.750684,0.011877 L 0.757314,0.011877 L 0.757314,0.061985 L 0.750684,0.061985 L 0.750684,0.011877" /> <path d="M 0.751855,0.050925 L 0.751855,0.019845 Q 0.75287,0.012915 0.745065,0.013545 L 0.745065,0.012215 L 0.765855,0.012215 L 0.765855,0.013545 Q 0.758085,0.012985 0.758995,0.019845 L 0.758995,0.050925 Q 0.758015,0.057715 0.765855,0.057225 L 0.765855,0.058555 L 0.745065,0.058555 L 0.745065,0.057225 Q 0.75294,0.057645 0.751855,0.050925" />
<path d="M 0.768936,0.011877 L 0.775293,0.011877 L 0.775293,0.051252 L 0.801611,0.011877 L 0.808413,0.011877 L 0.808413,0.061985 L 0.802056,0.061985 L 0.802056,0.022644 L 0.775737,0.061985 L 0.768936,0.061985 L 0.768936,0.011877" /> <path d="M 0.816605,0.057225 L 0.816605,0.058555 L 0.800155,0.058555 L 0.800155,0.057225 Q 0.807645,0.057715 0.806875,0.048265 L 0.806875,0.024675 L 0.779925,0.058555 L 0.767955,0.058555 L 0.767955,0.057225 Q 0.77149,0.05775 0.774745,0.053375 L 0.774745,0.022505 Q 0.77569,0.012915 0.767955,0.013545 L 0.767955,0.012215 L 0.784405,0.012215 L 0.784405,0.013545 Q 0.777055,0.012915 0.777825,0.022505 L 0.777825,0.049945 L 0.808765,0.011445 L 0.809955,0.011445 L 0.809955,0.048265 Q 0.810049,0.058575 0.816605,0.057225" />
<path d="M 0.653887,-0.042229 L 0.647256,-0.040554 C 0.645444,-0.055816 0.624176,-0.057963 0.618289,-0.043818 C 0.61432,-0.033663 0.616041,-0.024258 0.62345,-0.015603 C 0.630858,-0.01068 0.644052,-0.011769 0.646504,-0.023293 L 0.653032,-0.021755 C 0.648627,0.001099 0.60711,-0.003671 0.60959,-0.032693 C 0.609664,-0.042941 0.613122,-0.050603 0.619963,-0.055679 C 0.630348,-0.062443 0.651286,-0.059243 0.653887,-0.042229" /> <path d="M 0.654835,-0.01085 C 0.653855,-0.01162 0.652875,-0.01239 0.651895,-0.01316 C 0.648454,-0.011454 0.628755,-0.007853 0.622215,-0.017675 C 0.613339,-0.025793 0.613267,-0.044709 0.621935,-0.05264 C 0.630236,-0.062071 0.65043,-0.06116 0.657845,-0.05026 L 0.656585,-0.049 C 0.64649,-0.05848 0.631855,-0.059985 0.62519,-0.045045 C 0.622322,-0.035359 0.623302,-0.026784 0.62813,-0.01932 C 0.635438,-0.009998 0.652487,-0.011992 0.655325,-0.02667 L 0.656935,-0.02667 L 0.656305,-0.01085 L 0.654835,-0.01085" />
<path d="M 0.662192,-0.058123 L 0.699585,-0.058123 L 0.699585,-0.052209 L 0.668823,-0.052209 L 0.668823,-0.035154 L 0.696543,-0.035154 L 0.696543,-0.029275 L 0.668823,-0.029275 L 0.668823,-0.013928 L 0.698423,-0.013928 L 0.698423,-0.008015 L 0.662192,-0.008015 L 0.662192,-0.058123" /> <path d="M 0.674225,-0.05257 L 0.674225,-0.03528 L 0.685005,-0.03528 Q 0.692495,-0.0343 0.692705,-0.042 L 0.694315,-0.042 L 0.694315,-0.02576 L 0.692705,-0.02576 Q 0.692705,-0.033005 0.685005,-0.03241 L 0.674225,-0.03241 L 0.674225,-0.01687 Q 0.67398,-0.01421 0.676535,-0.01449 L 0.685985,-0.01449 Q 0.696345,-0.013475 0.696625,-0.02184 L 0.698375,-0.02184 L 0.698165,-0.01183 L 0.660995,-0.01183 L 0.660995,-0.01316 Q 0.66789,-0.01288 0.667085,-0.01946 L 0.667085,-0.05054 Q 0.66789,-0.05712 0.660995,-0.05684 L 0.660995,-0.05817 L 0.698795,-0.05817 L 0.701945,-0.04634 L 0.699985,-0.04634 Q 0.696625,-0.05663 0.683465,-0.05558 L 0.681575,-0.05558 Q 0.67286,-0.056105 0.674225,-0.05257" />
<path d="M 0.708677,-0.058123 L 0.715034,-0.058123 L 0.715034,-0.018748 L 0.741353,-0.058123 L 0.748154,-0.058123 L 0.748154,-0.008015 L 0.741797,-0.008015 L 0.741797,-0.047356 L 0.715479,-0.008015 L 0.708677,-0.008015 L 0.708677,-0.058123" /> <path d="M 0.752345,-0.01316 L 0.752345,-0.01183 L 0.735895,-0.01183 L 0.735895,-0.01316 Q 0.743385,-0.01267 0.742615,-0.02212 L 0.742615,-0.04571 L 0.715665,-0.01183 L 0.703695,-0.01183 L 0.703695,-0.01316 Q 0.70723,-0.012635 0.710485,-0.01701 L 0.710485,-0.04788 Q 0.71143,-0.05747 0.703695,-0.05684 L 0.703695,-0.05817 L 0.720145,-0.05817 L 0.720145,-0.05684 Q 0.712795,-0.05747 0.713565,-0.04788 L 0.713565,-0.02044 L 0.744505,-0.05894 L 0.745695,-0.05894 L 0.745695,-0.02212 Q 0.745789,-0.01181 0.752345,-0.01316" />
<path d="M 0.772046,-0.058123 L 0.778677,-0.058123 L 0.778677,-0.013928 L 0.795254,-0.013928 L 0.795254,-0.008015 L 0.755537,-0.008015 L 0.755537,-0.013928 L 0.772046,-0.013928 L 0.772046,-0.058123" /> <path d="M 0.771035,-0.01477 L 0.771035,-0.04977 Q 0.772085,-0.057505 0.764455,-0.05684 L 0.764455,-0.05817 L 0.784895,-0.05817 L 0.784895,-0.05684 Q 0.777195,-0.05733 0.778175,-0.05054 L 0.778175,-0.01477 L 0.781955,-0.01477 Q 0.79228,-0.01344 0.793085,-0.02373 L 0.794765,-0.02373 L 0.794345,-0.01183 L 0.754865,-0.01183 L 0.754445,-0.02373 L 0.756125,-0.02373 Q 0.75707,-0.01351 0.767255,-0.01477 L 0.771035,-0.01477" />
<path d="M 0.802192,-0.058123 L 0.839585,-0.058123 L 0.839585,-0.052209 L 0.808823,-0.052209 L 0.808823,-0.035154 L 0.836543,-0.035154 L 0.836543,-0.029275 L 0.808823,-0.029275 L 0.808823,-0.013928 L 0.838423,-0.013928 L 0.838423,-0.008015 L 0.802192,-0.008015 L 0.802192,-0.058123" /> <path d="M 0.810095,-0.05257 L 0.810095,-0.03528 L 0.820875,-0.03528 Q 0.828365,-0.0343 0.828575,-0.042 L 0.830185,-0.042 L 0.830185,-0.02576 L 0.828575,-0.02576 Q 0.828575,-0.033005 0.820875,-0.03241 L 0.810095,-0.03241 L 0.810095,-0.01687 Q 0.80985,-0.01421 0.812405,-0.01449 L 0.821855,-0.01449 Q 0.832215,-0.013475 0.832495,-0.02184 L 0.834245,-0.02184 L 0.834035,-0.01183 L 0.796865,-0.01183 L 0.796865,-0.01316 Q 0.80376,-0.01288 0.802955,-0.01946 L 0.802955,-0.05054 Q 0.80376,-0.05712 0.796865,-0.05684 L 0.796865,-0.05817 L 0.834665,-0.05817 L 0.837815,-0.04634 L 0.835855,-0.04634 Q 0.832495,-0.05663 0.819335,-0.05558 L 0.817445,-0.05558 Q 0.80873,-0.056105 0.810095,-0.05257" />
<path d="M 0.848848,-0.058123 L 0.855479,-0.058123 L 0.855479,-0.035872 L 0.863169,-0.035872 Q 0.865732,-0.035872 0.86686,-0.036111 Q 0.870468,-0.035637 0.878037,-0.047698 L 0.884668,-0.058123 L 0.893008,-0.058123 L 0.884292,-0.044485 Q 0.881694,-0.040486 0.878789,-0.03782 Q 0.877422,-0.036589 0.87479,-0.035325 C 0.895154,-0.033808 0.893243,-0.005153 0.871064,-0.008015 L 0.848848,-0.008015 L 0.848848,-0.058123 M 0.855479,-0.030129 L 0.855479,-0.013552 L 0.871338,-0.013552 C 0.8857,-0.012518 0.886366,-0.03137 0.869731,-0.030129 L 0.855479,-0.030129" /> <path d="M 0.858885,-0.01183 L 0.839565,-0.01183 L 0.839565,-0.01316 Q 0.84646,-0.01302 0.845515,-0.01946 L 0.845515,-0.04977 Q 0.84646,-0.057365 0.839565,-0.05684 L 0.839565,-0.05817 L 0.858955,-0.05817 L 0.858955,-0.05684 Q 0.851745,-0.05719 0.852655,-0.05054 L 0.852655,-0.03675 L 0.856575,-0.03661 L 0.873235,-0.05817 L 0.884505,-0.05817 L 0.884505,-0.05684 L 0.878415,-0.05355 L 0.863995,-0.03584 Q 0.864135,-0.03584 0.864345,-0.03577 Q 0.881438,-0.031066 0.874915,-0.01785 Q 0.868129,-0.011097 0.858885,-0.01183 M 0.852655,-0.03416 L 0.852655,-0.01694 C 0.851909,-0.012463 0.863894,-0.014707 0.86592,-0.016765 C 0.867997,-0.018328 0.869035,-0.020743 0.869035,-0.02401 C 0.869222,-0.031173 0.863762,-0.034557 0.852655,-0.03416" />
<path d="M -0.096113,0.033018 L -0.102744,0.034692 C -0.104556,0.019431 -0.125824,0.017284 -0.131711,0.031428 C -0.13568,0.041583 -0.133959,0.050988 -0.12655,0.059644 C -0.119142,0.064567 -0.105948,0.063477 -0.103496,0.051953 L -0.096968,0.053491 C -0.101373,0.076345 -0.14289,0.071576 -0.14041,0.042554 C -0.140336,0.032306 -0.136878,0.024644 -0.130037,0.019568 C -0.119652,0.012804 -0.098714,0.016004 -0.096113,0.033018" /> <path d="M -0.095165,0.06265 C -0.096145,0.06188 -0.097125,0.06111 -0.098105,0.06034 C -0.101546,0.062046 -0.121245,0.065647 -0.127785,0.055825 C -0.136661,0.047707 -0.136733,0.028791 -0.128065,0.02086 C -0.119764,0.011429 -0.09957,0.01234 -0.092155,0.02324 L -0.093415,0.0245 C -0.10351,0.01502 -0.118145,0.013515 -0.12481,0.028455 C -0.127678,0.038141 -0.126698,0.046716 -0.12187,0.05418 C -0.114562,0.063502 -0.097513,0.061508 -0.094675,0.04683 L -0.093065,0.04683 L -0.093695,0.06265 L -0.095165,0.06265" />
<path d="M -0.087808,0.017124 L -0.050415,0.017124 L -0.050415,0.023037 L -0.081177,0.023037 L -0.081177,0.040093 L -0.053457,0.040093 L -0.053457,0.045972 L -0.081177,0.045972 L -0.081177,0.061318 L -0.051577,0.061318 L -0.051577,0.067231 L -0.087808,0.067231 L -0.087808,0.017124" /> <path d="M -0.075775,0.02093 L -0.075775,0.03822 L -0.064995,0.03822 Q -0.057505,0.0392 -0.057295,0.0315 L -0.055685,0.0315 L -0.055685,0.04774 L -0.057295,0.04774 Q -0.057295,0.040495 -0.064995,0.04109 L -0.075775,0.04109 L -0.075775,0.05663 Q -0.07602,0.05929 -0.073465,0.05901 L -0.064015,0.05901 Q -0.053655,0.060025 -0.053375,0.05166 L -0.051625,0.05166 L -0.051835,0.06167 L -0.089005,0.06167 L -0.089005,0.06034 Q -0.08211,0.06062 -0.082915,0.05404 L -0.082915,0.02296 Q -0.08211,0.01638 -0.089005,0.01666 L -0.089005,0.01533 L -0.051205,0.01533 L -0.048055,0.02716 L -0.050015,0.02716 Q -0.053375,0.01687 -0.066535,0.01792 L -0.068425,0.01792 Q -0.07714,0.017395 -0.075775,0.02093" />
<path d="M -0.041323,0.017124 L -0.034966,0.017124 L -0.034966,0.056499 L -0.008647,0.017124 L -0.001846,0.017124 L -0.001846,0.067231 L -0.008203,0.067231 L -0.008203,0.027891 L -0.034521,0.067231 L -0.041323,0.067231 L -0.041323,0.017124" /> <path d="M 0.002345,0.06034 L 0.002345,0.06167 L -0.014105,0.06167 L -0.014105,0.06034 Q -0.006615,0.06083 -0.007385,0.05138 L -0.007385,0.02779 L -0.034335,0.06167 L -0.046305,0.06167 L -0.046305,0.06034 Q -0.04277,0.060865 -0.039515,0.05649 L -0.039515,0.02562 Q -0.03857,0.01603 -0.046305,0.01666 L -0.046305,0.01533 L -0.029855,0.01533 L -0.029855,0.01666 Q -0.037205,0.01603 -0.036435,0.02562 L -0.036435,0.05306 L -0.005495,0.01456 L -0.004305,0.01456 L -0.004305,0.05138 Q -0.004211,0.06169 0.002345,0.06034" />
<path d="M 0.022046,0.017124 L 0.028677,0.017124 L 0.028677,0.061318 L 0.045254,0.061318 L 0.045254,0.067231 L 0.005537,0.067231 L 0.005537,0.061318 L 0.022046,0.061318 L 0.022046,0.017124" /> <path d="M 0.021035,0.05873 L 0.021035,0.02373 Q 0.022085,0.015995 0.014455,0.01666 L 0.014455,0.01533 L 0.034895,0.01533 L 0.034895,0.01666 Q 0.027195,0.01617 0.028175,0.02296 L 0.028175,0.05873 L 0.031955,0.05873 Q 0.04228,0.06006 0.043085,0.04977 L 0.044765,0.04977 L 0.044345,0.06167 L 0.004865,0.06167 L 0.004445,0.04977 L 0.006125,0.04977 Q 0.00707,0.05999 0.017255,0.05873 L 0.021035,0.05873" />
<path d="M 0.052192,0.017124 L 0.089585,0.017124 L 0.089585,0.023037 L 0.058823,0.023037 L 0.058823,0.040093 L 0.086543,0.040093 L 0.086543,0.045972 L 0.058823,0.045972 L 0.058823,0.061318 L 0.088423,0.061318 L 0.088423,0.067231 L 0.052192,0.067231 L 0.052192,0.017124" /> <path d="M 0.060095,0.02093 L 0.060095,0.03822 L 0.070875,0.03822 Q 0.078365,0.0392 0.078575,0.0315 L 0.080185,0.0315 L 0.080185,0.04774 L 0.078575,0.04774 Q 0.078575,0.040495 0.070875,0.04109 L 0.060095,0.04109 L 0.060095,0.05663 Q 0.05985,0.05929 0.062405,0.05901 L 0.071855,0.05901 Q 0.082215,0.060025 0.082495,0.05166 L 0.084245,0.05166 L 0.084035,0.06167 L 0.046865,0.06167 L 0.046865,0.06034 Q 0.05376,0.06062 0.052955,0.05404 L 0.052955,0.02296 Q 0.05376,0.01638 0.046865,0.01666 L 0.046865,0.01533 L 0.084665,0.01533 L 0.087815,0.02716 L 0.085855,0.02716 Q 0.082495,0.01687 0.069335,0.01792 L 0.067445,0.01792 Q 0.05873,0.017395 0.060095,0.02093" />
<path d="M 0.098848,0.017124 L 0.105479,0.017124 L 0.105479,0.039375 L 0.113169,0.039375 Q 0.115732,0.039375 0.11686,0.039136 Q 0.120468,0.039609 0.128037,0.027549 L 0.134668,0.017124 L 0.143008,0.017124 L 0.134292,0.030762 Q 0.131694,0.034761 0.128789,0.037427 Q 0.127422,0.038657 0.12479,0.039922 C 0.145154,0.041439 0.143243,0.070094 0.121064,0.067231 L 0.098848,0.067231 L 0.098848,0.017124 M 0.105479,0.045117 L 0.105479,0.061694 L 0.121338,0.061694 C 0.1357,0.062729 0.136366,0.043876 0.119731,0.045117 L 0.105479,0.045117" /> <path d="M 0.108885,0.06167 L 0.089565,0.06167 L 0.089565,0.06034 Q 0.09646,0.06048 0.095515,0.05404 L 0.095515,0.02373 Q 0.09646,0.016135 0.089565,0.01666 L 0.089565,0.01533 L 0.108955,0.01533 L 0.108955,0.01666 Q 0.101745,0.01631 0.102655,0.02296 L 0.102655,0.03675 L 0.106575,0.03689 L 0.123235,0.01533 L 0.134505,0.01533 L 0.134505,0.01666 L 0.128415,0.01995 L 0.113995,0.03766 Q 0.114135,0.03766 0.114345,0.03773 Q 0.131438,0.042434 0.124915,0.05565 Q 0.118129,0.062403 0.108885,0.06167 M 0.102655,0.03934 L 0.102655,0.05656 C 0.101909,0.061037 0.113894,0.058793 0.11592,0.056735 C 0.117997,0.055172 0.119035,0.052757 0.119035,0.04949 C 0.119222,0.042327 0.113762,0.038943 0.102655,0.03934" />
<path d="M -0.096113,-0.047476 L -0.102744,-0.045801 C -0.104556,-0.061062 -0.125824,-0.063209 -0.131711,-0.049065 C -0.13568,-0.03891 -0.133959,-0.029505 -0.12655,-0.02085 C -0.119142,-0.015927 -0.105948,-0.017016 -0.103496,-0.02854 L -0.096968,-0.027002 C -0.101373,-0.004148 -0.14289,-0.008917 -0.14041,-0.037939 C -0.140336,-0.048188 -0.136878,-0.05585 -0.130037,-0.060925 C -0.119652,-0.067689 -0.098714,-0.064489 -0.096113,-0.047476" /> <path d="M -0.095165,-0.01435 C -0.096145,-0.01512 -0.097125,-0.01589 -0.098105,-0.01666 C -0.101546,-0.014954 -0.121245,-0.011353 -0.127785,-0.021175 C -0.136661,-0.029293 -0.136733,-0.048209 -0.128065,-0.05614 C -0.119764,-0.065571 -0.09957,-0.06466 -0.092155,-0.05376 L -0.093415,-0.0525 C -0.10351,-0.06198 -0.118145,-0.063485 -0.12481,-0.048545 C -0.127678,-0.038859 -0.126698,-0.030284 -0.12187,-0.02282 C -0.114562,-0.013498 -0.097513,-0.015492 -0.094675,-0.03017 L -0.093065,-0.03017 L -0.093695,-0.01435 L -0.095165,-0.01435" />
<path d="M -0.087808,-0.063369 L -0.050415,-0.063369 L -0.050415,-0.057456 L -0.081177,-0.057456 L -0.081177,-0.0404 L -0.053457,-0.0404 L -0.053457,-0.034521 L -0.081177,-0.034521 L -0.081177,-0.019175 L -0.051577,-0.019175 L -0.051577,-0.013262 L -0.087808,-0.013262 L -0.087808,-0.063369" /> <path d="M -0.075775,-0.05607 L -0.075775,-0.03878 L -0.064995,-0.03878 Q -0.057505,-0.0378 -0.057295,-0.0455 L -0.055685,-0.0455 L -0.055685,-0.02926 L -0.057295,-0.02926 Q -0.057295,-0.036505 -0.064995,-0.03591 L -0.075775,-0.03591 L -0.075775,-0.02037 Q -0.07602,-0.01771 -0.073465,-0.01799 L -0.064015,-0.01799 Q -0.053655,-0.016975 -0.053375,-0.02534 L -0.051625,-0.02534 L -0.051835,-0.01533 L -0.089005,-0.01533 L -0.089005,-0.01666 Q -0.08211,-0.01638 -0.082915,-0.02296 L -0.082915,-0.05404 Q -0.08211,-0.06062 -0.089005,-0.06034 L -0.089005,-0.06167 L -0.051205,-0.06167 L -0.048055,-0.04984 L -0.050015,-0.04984 Q -0.053375,-0.06013 -0.066535,-0.05908 L -0.068425,-0.05908 Q -0.07714,-0.059605 -0.075775,-0.05607" />
<path d="M -0.041323,-0.063369 L -0.034966,-0.063369 L -0.034966,-0.023994 L -0.008647,-0.063369 L -0.001846,-0.063369 L -0.001846,-0.013262 L -0.008203,-0.013262 L -0.008203,-0.052603 L -0.034521,-0.013262 L -0.041323,-0.013262 L -0.041323,-0.063369" /> <path d="M 0.002345,-0.01666 L 0.002345,-0.01533 L -0.014105,-0.01533 L -0.014105,-0.01666 Q -0.006615,-0.01617 -0.007385,-0.02562 L -0.007385,-0.04921 L -0.034335,-0.01533 L -0.046305,-0.01533 L -0.046305,-0.01666 Q -0.04277,-0.016135 -0.039515,-0.02051 L -0.039515,-0.05138 Q -0.03857,-0.06097 -0.046305,-0.06034 L -0.046305,-0.06167 L -0.029855,-0.06167 L -0.029855,-0.06034 Q -0.037205,-0.06097 -0.036435,-0.05138 L -0.036435,-0.02394 L -0.005495,-0.06244 L -0.004305,-0.06244 L -0.004305,-0.02562 Q -0.004211,-0.01531 0.002345,-0.01666" />
<path d="M 0.022046,-0.063369 L 0.028677,-0.063369 L 0.028677,-0.019175 L 0.045254,-0.019175 L 0.045254,-0.013262 L 0.005537,-0.013262 L 0.005537,-0.019175 L 0.022046,-0.019175 L 0.022046,-0.063369" /> <path d="M 0.021035,-0.01827 L 0.021035,-0.05327 Q 0.022085,-0.061005 0.014455,-0.06034 L 0.014455,-0.06167 L 0.034895,-0.06167 L 0.034895,-0.06034 Q 0.027195,-0.06083 0.028175,-0.05404 L 0.028175,-0.01827 L 0.031955,-0.01827 Q 0.04228,-0.01694 0.043085,-0.02723 L 0.044765,-0.02723 L 0.044345,-0.01533 L 0.004865,-0.01533 L 0.004445,-0.02723 L 0.006125,-0.02723 Q 0.00707,-0.01701 0.017255,-0.01827 L 0.021035,-0.01827" />
<path d="M 0.052192,-0.063369 L 0.089585,-0.063369 L 0.089585,-0.057456 L 0.058823,-0.057456 L 0.058823,-0.0404 L 0.086543,-0.0404 L 0.086543,-0.034521 L 0.058823,-0.034521 L 0.058823,-0.019175 L 0.088423,-0.019175 L 0.088423,-0.013262 L 0.052192,-0.013262 L 0.052192,-0.063369" /> <path d="M 0.060095,-0.05607 L 0.060095,-0.03878 L 0.070875,-0.03878 Q 0.078365,-0.0378 0.078575,-0.0455 L 0.080185,-0.0455 L 0.080185,-0.02926 L 0.078575,-0.02926 Q 0.078575,-0.036505 0.070875,-0.03591 L 0.060095,-0.03591 L 0.060095,-0.02037 Q 0.05985,-0.01771 0.062405,-0.01799 L 0.071855,-0.01799 Q 0.082215,-0.016975 0.082495,-0.02534 L 0.084245,-0.02534 L 0.084035,-0.01533 L 0.046865,-0.01533 L 0.046865,-0.01666 Q 0.05376,-0.01638 0.052955,-0.02296 L 0.052955,-0.05404 Q 0.05376,-0.06062 0.046865,-0.06034 L 0.046865,-0.06167 L 0.084665,-0.06167 L 0.087815,-0.04984 L 0.085855,-0.04984 Q 0.082495,-0.06013 0.069335,-0.05908 L 0.067445,-0.05908 Q 0.05873,-0.059605 0.060095,-0.05607" />
<path d="M 0.098848,-0.063369 L 0.105479,-0.063369 L 0.105479,-0.041118 L 0.113169,-0.041118 Q 0.115732,-0.041118 0.11686,-0.041357 Q 0.120468,-0.040884 0.128037,-0.052944 L 0.134668,-0.063369 L 0.143008,-0.063369 L 0.134292,-0.049731 Q 0.131694,-0.045732 0.128789,-0.043066 Q 0.127422,-0.041836 0.12479,-0.040571 C 0.145154,-0.039055 0.143243,-0.010399 0.121064,-0.013262 L 0.098848,-0.013262 L 0.098848,-0.063369 M 0.105479,-0.035376 L 0.105479,-0.018799 L 0.121338,-0.018799 C 0.1357,-0.017765 0.136366,-0.036617 0.119731,-0.035376 L 0.105479,-0.035376" /> <path d="M 0.108885,-0.01533 L 0.089565,-0.01533 L 0.089565,-0.01666 Q 0.09646,-0.01652 0.095515,-0.02296 L 0.095515,-0.05327 Q 0.09646,-0.060865 0.089565,-0.06034 L 0.089565,-0.06167 L 0.108955,-0.06167 L 0.108955,-0.06034 Q 0.101745,-0.06069 0.102655,-0.05404 L 0.102655,-0.04025 L 0.106575,-0.04011 L 0.123235,-0.06167 L 0.134505,-0.06167 L 0.134505,-0.06034 L 0.128415,-0.05705 L 0.113995,-0.03934 Q 0.114135,-0.03934 0.114345,-0.03927 Q 0.131438,-0.034566 0.124915,-0.02135 Q 0.118129,-0.014597 0.108885,-0.01533 M 0.102655,-0.03766 L 0.102655,-0.02044 C 0.101909,-0.015963 0.113894,-0.018207 0.11592,-0.020265 C 0.117997,-0.021828 0.119035,-0.024243 0.119035,-0.02751 C 0.119222,-0.034673 0.113762,-0.038057 0.102655,-0.03766" />
<path d="M -0.820649,0.011877 L -0.814258,0.011877 L -0.814258,0.054534 L -0.799766,0.011877 L -0.793784,0.011877 L -0.779224,0.053816 L -0.779224,0.011877 L -0.772832,0.011877 L -0.772832,0.061985 L -0.781753,0.061985 L -0.79375,0.027122 Q -0.795562,0.021824 -0.796416,0.019089 Q -0.797168,0.02155 -0.798809,0.026506 L -0.810669,0.061985 L -0.820649,0.061985 L -0.820649,0.011877" /> <path d="M -0.783845,0.05152 L -0.783845,0.01981 Q -0.7829,0.012215 -0.790215,0.01274 L -0.790215,0.01141 L -0.770615,0.01141 L -0.770615,0.01274 Q -0.77751,0.01246 -0.776705,0.01904 L -0.776705,0.05012 Q -0.77758,0.05663 -0.770615,0.05642 L -0.770615,0.05775 L -0.784545,0.05775 L -0.800015,0.0224 L -0.816185,0.05775 L -0.830045,0.05775 L -0.830045,0.05642 Q -0.82238,0.05684 -0.823395,0.05012 L -0.823395,0.0217 Q -0.82245,0.01211 -0.830185,0.01274 L -0.830185,0.01141 L -0.813735,0.01141 L -0.813735,0.01274 Q -0.821085,0.01211 -0.820315,0.0217 L -0.820315,0.04991 L -0.802745,0.01141 L -0.801765,0.01141 L -0.783845,0.05152" />
<path d="M -0.767637,0.011877 L -0.760596,0.011877 L -0.755093,0.027053 L -0.734141,0.027053 L -0.728296,0.011877 L -0.720742,0.011877 L -0.74125,0.061985 L -0.748394,0.061985 L -0.767637,0.011877 M -0.753179,0.032454 L -0.747676,0.047151 Q -0.745933,0.051902 -0.744976,0.056721 Q -0.743813,0.052654 -0.741421,0.046331 L -0.736191,0.032454 L -0.753179,0.032454" /> <path d="M -0.720145,0.01141 L -0.720145,0.01274 Q -0.723995,0.012075 -0.726445,0.01883 L -0.743875,0.05859 L -0.745275,0.05859 L -0.759835,0.02422 Q -0.764805,0.01099 -0.768515,0.01274 L -0.768515,0.01141 L -0.754655,0.01141 L -0.754655,0.01274 Q -0.761273,0.012962 -0.758855,0.01834 L -0.755635,0.02653 L -0.737295,0.02653 L -0.734425,0.01981 Q -0.730194,0.012295 -0.737995,0.01274 L -0.737995,0.01141 L -0.720145,0.01141 M -0.754445,0.0294 L -0.746395,0.04865 L -0.738275,0.0294 L -0.754445,0.0294" />
<path d="M -0.720537,0.011877 L -0.712573,0.011877 L -0.699995,0.029343 Q -0.699277,0.030369 -0.697603,0.033103 Q -0.696475,0.031292 -0.695415,0.029753 L -0.682803,0.011877 L -0.6746,0.011877 L -0.693569,0.038367 L -0.675967,0.061985 L -0.683179,0.061985 L -0.693262,0.048689 Q -0.695552,0.045715 -0.697227,0.042981 Q -0.698423,0.045134 -0.70126,0.049133 L -0.710352,0.061985 L -0.718247,0.061985 L -0.701157,0.037991 L -0.720537,0.011877" /> <path d="M -0.670375,0.05775 L -0.687035,0.05775 L -0.687035,0.05642 Q -0.678392,0.057372 -0.684935,0.04935 L -0.692845,0.03969 L -0.695785,0.04382 Q -0.706309,0.05787 -0.698375,0.05635 L -0.696415,0.05642 L -0.696415,0.05775 L -0.717555,0.05775 L -0.717555,0.05642 Q -0.71262,0.057995 -0.704885,0.04543 L -0.697255,0.03423 L -0.708245,0.02072 Q -0.71507,0.01141 -0.718395,0.01274 L -0.718395,0.01141 L -0.702085,0.01141 L -0.702085,0.01274 Q -0.711864,0.011632 -0.703765,0.02121 L -0.695435,0.03157 L -0.688785,0.02177 Q -0.68077,0.011704 -0.690605,0.01274 L -0.690605,0.01141 L -0.669815,0.01141 L -0.669815,0.01274 Q -0.67447,0.01267 -0.677585,0.01792 L -0.691025,0.0371 L -0.680805,0.04984 Q -0.67573,0.05698 -0.670375,0.05642 L -0.670375,0.05775" />
<path d="M -0.846113,-0.042229 L -0.852744,-0.040554 C -0.854556,-0.055816 -0.875824,-0.057963 -0.881711,-0.043818 C -0.88568,-0.033663 -0.883959,-0.024258 -0.87655,-0.015603 C -0.869142,-0.01068 -0.855948,-0.011769 -0.853496,-0.023293 L -0.846968,-0.021755 C -0.851373,0.001099 -0.89289,-0.003671 -0.89041,-0.032693 C -0.890336,-0.042941 -0.886878,-0.050603 -0.880037,-0.055679 C -0.869652,-0.062443 -0.848714,-0.059243 -0.846113,-0.042229" /> <path d="M -0.845165,-0.01085 C -0.846145,-0.01162 -0.847125,-0.01239 -0.848105,-0.01316 C -0.851546,-0.011454 -0.871245,-0.007853 -0.877785,-0.017675 C -0.886661,-0.025793 -0.886733,-0.044709 -0.878065,-0.05264 C -0.869764,-0.062071 -0.84957,-0.06116 -0.842155,-0.05026 L -0.843415,-0.049 C -0.85351,-0.05848 -0.868145,-0.059985 -0.87481,-0.045045 C -0.877678,-0.035359 -0.876698,-0.026784 -0.87187,-0.01932 C -0.864562,-0.009998 -0.847513,-0.011992 -0.844675,-0.02667 L -0.843065,-0.02667 L -0.843695,-0.01085 L -0.845165,-0.01085" />
<path d="M -0.837808,-0.058123 L -0.800415,-0.058123 L -0.800415,-0.052209 L -0.831177,-0.052209 L -0.831177,-0.035154 L -0.803457,-0.035154 L -0.803457,-0.029275 L -0.831177,-0.029275 L -0.831177,-0.013928 L -0.801577,-0.013928 L -0.801577,-0.008015 L -0.837808,-0.008015 L -0.837808,-0.058123" /> <path d="M -0.825775,-0.05257 L -0.825775,-0.03528 L -0.814995,-0.03528 Q -0.807505,-0.0343 -0.807295,-0.042 L -0.805685,-0.042 L -0.805685,-0.02576 L -0.807295,-0.02576 Q -0.807295,-0.033005 -0.814995,-0.03241 L -0.825775,-0.03241 L -0.825775,-0.01687 Q -0.82602,-0.01421 -0.823465,-0.01449 L -0.814015,-0.01449 Q -0.803655,-0.013475 -0.803375,-0.02184 L -0.801625,-0.02184 L -0.801835,-0.01183 L -0.839005,-0.01183 L -0.839005,-0.01316 Q -0.83211,-0.01288 -0.832915,-0.01946 L -0.832915,-0.05054 Q -0.83211,-0.05712 -0.839005,-0.05684 L -0.839005,-0.05817 L -0.801205,-0.05817 L -0.798055,-0.04634 L -0.800015,-0.04634 Q -0.803375,-0.05663 -0.816535,-0.05558 L -0.818425,-0.05558 Q -0.82714,-0.056105 -0.825775,-0.05257" />
<path d="M -0.791323,-0.058123 L -0.784966,-0.058123 L -0.784966,-0.018748 L -0.758647,-0.058123 L -0.751846,-0.058123 L -0.751846,-0.008015 L -0.758203,-0.008015 L -0.758203,-0.047356 L -0.784521,-0.008015 L -0.791323,-0.008015 L -0.791323,-0.058123" /> <path d="M -0.747655,-0.01316 L -0.747655,-0.01183 L -0.764105,-0.01183 L -0.764105,-0.01316 Q -0.756615,-0.01267 -0.757385,-0.02212 L -0.757385,-0.04571 L -0.784335,-0.01183 L -0.796305,-0.01183 L -0.796305,-0.01316 Q -0.79277,-0.012635 -0.789515,-0.01701 L -0.789515,-0.04788 Q -0.78857,-0.05747 -0.796305,-0.05684 L -0.796305,-0.05817 L -0.779855,-0.05817 L -0.779855,-0.05684 Q -0.787205,-0.05747 -0.786435,-0.04788 L -0.786435,-0.02044 L -0.755495,-0.05894 L -0.754305,-0.05894 L -0.754305,-0.02212 Q -0.754211,-0.01181 -0.747655,-0.01316" />
<path d="M -0.727954,-0.058123 L -0.721323,-0.058123 L -0.721323,-0.013928 L -0.704746,-0.013928 L -0.704746,-0.008015 L -0.744463,-0.008015 L -0.744463,-0.013928 L -0.727954,-0.013928 L -0.727954,-0.058123" /> <path d="M -0.728965,-0.01477 L -0.728965,-0.04977 Q -0.727915,-0.057505 -0.735545,-0.05684 L -0.735545,-0.05817 L -0.715105,-0.05817 L -0.715105,-0.05684 Q -0.722805,-0.05733 -0.721825,-0.05054 L -0.721825,-0.01477 L -0.718045,-0.01477 Q -0.70772,-0.01344 -0.706915,-0.02373 L -0.705235,-0.02373 L -0.705655,-0.01183 L -0.745135,-0.01183 L -0.745555,-0.02373 L -0.743875,-0.02373 Q -0.74293,-0.01351 -0.732745,-0.01477 L -0.728965,-0.01477" />
<path d="M -0.697808,-0.058123 L -0.660415,-0.058123 L -0.660415,-0.052209 L -0.691177,-0.052209 L -0.691177,-0.035154 L -0.663457,-0.035154 L -0.663457,-0.029275 L -0.691177,-0.029275 L -0.691177,-0.013928 L -0.661577,-0.013928 L -0.661577,-0.008015 L -0.697808,-0.008015 L -0.697808,-0.058123" /> <path d="M -0.689905,-0.05257 L -0.689905,-0.03528 L -0.679125,-0.03528 Q -0.671635,-0.0343 -0.671425,-0.042 L -0.669815,-0.042 L -0.669815,-0.02576 L -0.671425,-0.02576 Q -0.671425,-0.033005 -0.679125,-0.03241 L -0.689905,-0.03241 L -0.689905,-0.01687 Q -0.69015,-0.01421 -0.687595,-0.01449 L -0.678145,-0.01449 Q -0.667785,-0.013475 -0.667505,-0.02184 L -0.665755,-0.02184 L -0.665965,-0.01183 L -0.703135,-0.01183 L -0.703135,-0.01316 Q -0.69624,-0.01288 -0.697045,-0.01946 L -0.697045,-0.05054 Q -0.69624,-0.05712 -0.703135,-0.05684 L -0.703135,-0.05817 L -0.665335,-0.05817 L -0.662185,-0.04634 L -0.664145,-0.04634 Q -0.667505,-0.05663 -0.680665,-0.05558 L -0.682555,-0.05558 Q -0.69127,-0.056105 -0.689905,-0.05257" />
<path d="M -0.651152,-0.058123 L -0.644521,-0.058123 L -0.644521,-0.035872 L -0.636831,-0.035872 Q -0.634268,-0.035872 -0.63314,-0.036111 Q -0.629532,-0.035637 -0.621963,-0.047698 L -0.615332,-0.058123 L -0.606992,-0.058123 L -0.615708,-0.044485 Q -0.618306,-0.040486 -0.621211,-0.03782 Q -0.622578,-0.036589 -0.62521,-0.035325 C -0.604846,-0.033808 -0.606757,-0.005153 -0.628936,-0.008015 L -0.651152,-0.008015 L -0.651152,-0.058123 M -0.644521,-0.030129 L -0.644521,-0.013552 L -0.628662,-0.013552 C -0.6143,-0.012518 -0.613634,-0.03137 -0.630269,-0.030129 L -0.644521,-0.030129" /> <path d="M -0.641115,-0.01183 L -0.660435,-0.01183 L -0.660435,-0.01316 Q -0.65354,-0.01302 -0.654485,-0.01946 L -0.654485,-0.04977 Q -0.65354,-0.057365 -0.660435,-0.05684 L -0.660435,-0.05817 L -0.641045,-0.05817 L -0.641045,-0.05684 Q -0.648255,-0.05719 -0.647345,-0.05054 L -0.647345,-0.03675 L -0.643425,-0.03661 L -0.626765,-0.05817 L -0.615495,-0.05817 L -0.615495,-0.05684 L -0.621585,-0.05355 L -0.636005,-0.03584 Q -0.635865,-0.03584 -0.635655,-0.03577 Q -0.618562,-0.031066 -0.625085,-0.01785 Q -0.631871,-0.011097 -0.641115,-0.01183 M -0.647345,-0.03416 L -0.647345,-0.01694 C -0.648091,-0.012463 -0.636106,-0.014707 -0.63408,-0.016765 C -0.632003,-0.018328 -0.630965,-0.020743 -0.630965,-0.02401 C -0.630778,-0.031173 -0.636238,-0.034557 -0.647345,-0.03416" />
<path d="M 0.69104,-0.738123 L 0.697432,-0.738123 L 0.697432,-0.695466 L 0.711924,-0.738123 L 0.717905,-0.738123 L 0.732466,-0.696184 L 0.732466,-0.738123 L 0.738857,-0.738123 L 0.738857,-0.688015 L 0.729937,-0.688015 L 0.717939,-0.722878 Q 0.716128,-0.728176 0.715273,-0.730911 Q 0.714521,-0.72845 0.712881,-0.723494 L 0.701021,-0.688015 L 0.69104,-0.688015 L 0.69104,-0.738123" /> <path d="M 0.729735,-0.697675 L 0.729735,-0.729385 Q 0.73068,-0.73698 0.723365,-0.736455 L 0.723365,-0.737785 L 0.742965,-0.737785 L 0.742965,-0.736455 Q 0.73607,-0.736735 0.736875,-0.730155 L 0.736875,-0.699075 Q 0.736,-0.692565 0.742965,-0.692775 L 0.742965,-0.691445 L 0.729035,-0.691445 L 0.713565,-0.726795 L 0.697395,-0.691445 L 0.683535,-0.691445 L 0.683535,-0.692775 Q 0.6912,-0.692355 0.690185,-0.699075 L 0.690185,-0.727495 Q 0.69113,-0.737085 0.683395,-0.736455 L 0.683395,-0.737785 L 0.699845,-0.737785 L 0.699845,-0.736455 Q 0.692495,-0.737085 0.693265,-0.727495 L 0.693265,-0.699285 L 0.710835,-0.737785 L 0.711815,-0.737785 L 0.729735,-0.697675" />
<path d="M 0.750684,-0.738123 L 0.757314,-0.738123 L 0.757314,-0.688015 L 0.750684,-0.688015 L 0.750684,-0.738123" /> <path d="M 0.751855,-0.699075 L 0.751855,-0.730155 Q 0.75287,-0.737085 0.745065,-0.736455 L 0.745065,-0.737785 L 0.765855,-0.737785 L 0.765855,-0.736455 Q 0.758085,-0.737015 0.758995,-0.730155 L 0.758995,-0.699075 Q 0.758015,-0.692285 0.765855,-0.692775 L 0.765855,-0.691445 L 0.745065,-0.691445 L 0.745065,-0.692775 Q 0.75294,-0.692355 0.751855,-0.699075" />
<path d="M 0.768936,-0.738123 L 0.775293,-0.738123 L 0.775293,-0.698748 L 0.801611,-0.738123 L 0.808413,-0.738123 L 0.808413,-0.688015 L 0.802056,-0.688015 L 0.802056,-0.727356 L 0.775737,-0.688015 L 0.768936,-0.688015 L 0.768936,-0.738123" /> <path d="M 0.816605,-0.692775 L 0.816605,-0.691445 L 0.800155,-0.691445 L 0.800155,-0.692775 Q 0.807645,-0.692285 0.806875,-0.701735 L 0.806875,-0.725325 L 0.779925,-0.691445 L 0.767955,-0.691445 L 0.767955,-0.692775 Q 0.77149,-0.69225 0.774745,-0.696625 L 0.774745,-0.727495 Q 0.77569,-0.737085 0.767955,-0.736455 L 0.767955,-0.737785 L 0.784405,-0.737785 L 0.784405,-0.736455 Q 0.777055,-0.737085 0.777825,-0.727495 L 0.777825,-0.700055 L 0.808765,-0.738555 L 0.809955,-0.738555 L 0.809955,-0.701735 Q 0.810049,-0.691425 0.816605,-0.692775" />
<path d="M 0.679351,-0.808123 L 0.685742,-0.808123 L 0.685742,-0.765466 L 0.700234,-0.808123 L 0.706216,-0.808123 L 0.720776,-0.766184 L 0.720776,-0.808123 L 0.727168,-0.808123 L 0.727168,-0.758015 L 0.718247,-0.758015 L 0.70625,-0.792878 Q 0.704438,-0.798176 0.703584,-0.800911 Q 0.702832,-0.79845 0.701191,-0.793494 L 0.689331,-0.758015 L 0.679351,-0.758015 L 0.679351,-0.808123" /> <path d="M 0.716155,-0.76848 L 0.716155,-0.80019 Q 0.7171,-0.807785 0.709785,-0.80726 L 0.709785,-0.80859 L 0.729385,-0.80859 L 0.729385,-0.80726 Q 0.72249,-0.80754 0.723295,-0.80096 L 0.723295,-0.76988 Q 0.72242,-0.76337 0.729385,-0.76358 L 0.729385,-0.76225 L 0.715455,-0.76225 L 0.699985,-0.7976 L 0.683815,-0.76225 L 0.669955,-0.76225 L 0.669955,-0.76358 Q 0.67762,-0.76316 0.676605,-0.76988 L 0.676605,-0.7983 Q 0.67755,-0.80789 0.669815,-0.80726 L 0.669815,-0.80859 L 0.686265,-0.80859 L 0.686265,-0.80726 Q 0.678915,-0.80789 0.679685,-0.7983 L 0.679685,-0.77009 L 0.697255,-0.80859 L 0.698235,-0.80859 L 0.716155,-0.76848" />
<path d="M 0.732363,-0.808123 L 0.739404,-0.808123 L 0.744907,-0.792947 L 0.765859,-0.792947 L 0.771704,-0.808123 L 0.779258,-0.808123 L 0.75875,-0.758015 L 0.751606,-0.758015 L 0.732363,-0.808123 M 0.746821,-0.787546 L 0.752324,-0.772849 Q 0.754067,-0.768098 0.755024,-0.763279 Q 0.756187,-0.767346 0.758579,-0.773669 L 0.763809,-0.787546 L 0.746821,-0.787546" /> <path d="M 0.779855,-0.80859 L 0.779855,-0.80726 Q 0.776005,-0.807925 0.773555,-0.80117 L 0.756125,-0.76141 L 0.754725,-0.76141 L 0.740165,-0.79578 Q 0.735195,-0.80901 0.731485,-0.80726 L 0.731485,-0.80859 L 0.745345,-0.80859 L 0.745345,-0.80726 Q 0.738727,-0.807038 0.741145,-0.80166 L 0.744365,-0.79347 L 0.762705,-0.79347 L 0.765575,-0.80019 Q 0.769806,-0.807705 0.762005,-0.80726 L 0.762005,-0.80859 L 0.779855,-0.80859 M 0.745555,-0.7906 L 0.753605,-0.77135 L 0.761725,-0.7906 L 0.745555,-0.7906" />
<path d="M 0.779463,-0.808123 L 0.787427,-0.808123 L 0.800005,-0.790657 Q 0.800723,-0.789631 0.802397,-0.786897 Q 0.803525,-0.788708 0.804585,-0.790247 L 0.817197,-0.808123 L 0.8254,-0.808123 L 0.806431,-0.781633 L 0.824033,-0.758015 L 0.816821,-0.758015 L 0.806738,-0.771311 Q 0.804448,-0.774285 0.802773,-0.777019 Q 0.801577,-0.774866 0.79874,-0.770867 L 0.789648,-0.758015 L 0.781753,-0.758015 L 0.798843,-0.782009 L 0.779463,-0.808123" /> <path d="M 0.829625,-0.76225 L 0.812965,-0.76225 L 0.812965,-0.76358 Q 0.821608,-0.762628 0.815065,-0.77065 L 0.807155,-0.78031 L 0.804215,-0.77618 Q 0.793691,-0.76213 0.801625,-0.76365 L 0.803585,-0.76358 L 0.803585,-0.76225 L 0.782445,-0.76225 L 0.782445,-0.76358 Q 0.78738,-0.762005 0.795115,-0.77457 L 0.802745,-0.78577 L 0.791755,-0.79928 Q 0.78493,-0.80859 0.781605,-0.80726 L 0.781605,-0.80859 L 0.797915,-0.80859 L 0.797915,-0.80726 Q 0.788136,-0.808368 0.796235,-0.79879 L 0.804565,-0.78843 L 0.811215,-0.79823 Q 0.81923,-0.808296 0.809395,-0.80726 L 0.809395,-0.80859 L 0.830185,-0.80859 L 0.830185,-0.80726 Q 0.82553,-0.80733 0.822415,-0.80208 L 0.808975,-0.7829 L 0.819195,-0.77016 Q 0.82427,-0.76302 0.829625,-0.76358 L 0.829625,-0.76225" />
<path d="M -0.096113,-0.722229 L -0.102744,-0.720554 C -0.104556,-0.735816 -0.125824,-0.737963 -0.131711,-0.723818 C -0.13568,-0.713663 -0.133959,-0.704258 -0.12655,-0.695603 C -0.119142,-0.69068 -0.105948,-0.691769 -0.103496,-0.703293 L -0.096968,-0.701755 C -0.101373,-0.678901 -0.14289,-0.683671 -0.14041,-0.712693 C -0.140336,-0.722941 -0.136878,-0.730603 -0.130037,-0.735679 C -0.119652,-0.742443 -0.098714,-0.739243 -0.096113,-0.722229" /> <path d="M -0.033845,-0.69848 L -0.033845,-0.73019 Q -0.0329,-0.737785 -0.040215,-0.73726 L -0.040215,-0.73859 L -0.020615,-0.73859 L -0.020615,-0.73726 Q -0.02751,-0.73754 -0.026705,-0.73096 L -0.026705,-0.69988 Q -0.02758,-0.69337 -0.020615,-0.69358 L -0.020615,-0.69225 L -0.034545,-0.69225 L -0.050015,-0.7276 L -0.066185,-0.69225 L -0.080045,-0.69225 L -0.080045,-0.69358 Q -0.07238,-0.69316 -0.073395,-0.69988 L -0.073395,-0.7283 Q -0.07245,-0.73789 -0.080185,-0.73726 L -0.080185,-0.73859 L -0.063735,-0.73859 L -0.063735,-0.73726 Q -0.071085,-0.73789 -0.070315,-0.7283 L -0.070315,-0.70009 L -0.052745,-0.73859 L -0.051765,-0.73859 L -0.033845,-0.69848" />
<path d="M -0.087808,-0.738123 L -0.050415,-0.738123 L -0.050415,-0.732209 L -0.081177,-0.732209 L -0.081177,-0.715154 L -0.053457,-0.715154 L -0.053457,-0.709275 L -0.081177,-0.709275 L -0.081177,-0.693928 L -0.051577,-0.693928 L -0.051577,-0.688015 L -0.087808,-0.688015 L -0.087808,-0.738123" /> <path d="M 0.029855,-0.73859 L 0.029855,-0.73726 Q 0.026005,-0.737925 0.023555,-0.73117 L 0.006125,-0.69141 L 0.004725,-0.69141 L -0.009835,-0.72578 Q -0.014805,-0.73901 -0.018515,-0.73726 L -0.018515,-0.73859 L -0.004655,-0.73859 L -0.004655,-0.73726 Q -0.011273,-0.737038 -0.008855,-0.73166 L -0.005635,-0.72347 L 0.012705,-0.72347 L 0.015575,-0.73019 Q 0.019806,-0.737705 0.012005,-0.73726 L 0.012005,-0.73859 L 0.029855,-0.73859 M -0.004445,-0.7206 L 0.003605,-0.70135 L 0.011725,-0.7206 L -0.004445,-0.7206" />
<path d="M -0.041323,-0.738123 L -0.034966,-0.738123 L -0.034966,-0.698748 L -0.008647,-0.738123 L -0.001846,-0.738123 L -0.001846,-0.688015 L -0.008203,-0.688015 L -0.008203,-0.727356 L -0.034521,-0.688015 L -0.041323,-0.688015 L -0.041323,-0.738123" /> <path d="M 0.079625,-0.69225 L 0.062965,-0.69225 L 0.062965,-0.69358 Q 0.071608,-0.692628 0.065065,-0.70065 L 0.057155,-0.71031 L 0.054215,-0.70618 Q 0.043691,-0.69213 0.051625,-0.69365 L 0.053585,-0.69358 L 0.053585,-0.69225 L 0.032445,-0.69225 L 0.032445,-0.69358 Q 0.03738,-0.692005 0.045115,-0.70457 L 0.052745,-0.71577 L 0.041755,-0.72928 Q 0.03493,-0.73859 0.031605,-0.73726 L 0.031605,-0.73859 L 0.047915,-0.73859 L 0.047915,-0.73726 Q 0.038136,-0.738368 0.046235,-0.72879 L 0.054565,-0.71843 L 0.061215,-0.72823 Q 0.06923,-0.738296 0.059395,-0.73726 L 0.059395,-0.73859 L 0.080185,-0.73859 L 0.080185,-0.73726 Q 0.07553,-0.73733 0.072415,-0.73208 L 0.058975,-0.7129 L 0.069195,-0.70016 Q 0.07427,-0.69302 0.079625,-0.69358 L 0.079625,-0.69225" />
<path d="M 0.022046,-0.738123 L 0.028677,-0.738123 L 0.028677,-0.693928 L 0.045254,-0.693928 L 0.045254,-0.688015 L 0.005537,-0.688015 L 0.005537,-0.693928 L 0.022046,-0.693928 L 0.022046,-0.738123" /> <path d="M -0.095165,-0.76085 C -0.096145,-0.76162 -0.097125,-0.76239 -0.098105,-0.76316 C -0.101546,-0.761454 -0.121245,-0.757853 -0.127785,-0.767675 C -0.136661,-0.775793 -0.136733,-0.794709 -0.128065,-0.80264 C -0.119764,-0.812071 -0.09957,-0.81116 -0.092155,-0.80026 L -0.093415,-0.799 C -0.10351,-0.80848 -0.118145,-0.809985 -0.12481,-0.795045 C -0.127678,-0.785359 -0.126698,-0.776784 -0.12187,-0.76932 C -0.114562,-0.759998 -0.097513,-0.761992 -0.094675,-0.77667 L -0.093065,-0.77667 L -0.093695,-0.76085 L -0.095165,-0.76085" />
<path d="M 0.052192,-0.738123 L 0.089585,-0.738123 L 0.089585,-0.732209 L 0.058823,-0.732209 L 0.058823,-0.715154 L 0.086543,-0.715154 L 0.086543,-0.709275 L 0.058823,-0.709275 L 0.058823,-0.693928 L 0.088423,-0.693928 L 0.088423,-0.688015 L 0.052192,-0.688015 L 0.052192,-0.738123" /> <path d="M -0.075775,-0.80257 L -0.075775,-0.78528 L -0.064995,-0.78528 Q -0.057505,-0.7843 -0.057295,-0.792 L -0.055685,-0.792 L -0.055685,-0.77576 L -0.057295,-0.77576 Q -0.057295,-0.783005 -0.064995,-0.78241 L -0.075775,-0.78241 L -0.075775,-0.76687 Q -0.07602,-0.76421 -0.073465,-0.76449 L -0.064015,-0.76449 Q -0.053655,-0.763475 -0.053375,-0.77184 L -0.051625,-0.77184 L -0.051835,-0.76183 L -0.089005,-0.76183 L -0.089005,-0.76316 Q -0.08211,-0.76288 -0.082915,-0.76946 L -0.082915,-0.80054 Q -0.08211,-0.80712 -0.089005,-0.80684 L -0.089005,-0.80817 L -0.051205,-0.80817 L -0.048055,-0.79634 L -0.050015,-0.79634 Q -0.053375,-0.80663 -0.066535,-0.80558 L -0.068425,-0.80558 Q -0.07714,-0.806105 -0.075775,-0.80257" />
<path d="M 0.098848,-0.738123 L 0.105479,-0.738123 L 0.105479,-0.715872 L 0.113169,-0.715872 Q 0.115732,-0.715872 0.11686,-0.716111 Q 0.120468,-0.715637 0.128037,-0.727698 L 0.134668,-0.738123 L 0.143008,-0.738123 L 0.134292,-0.724485 Q 0.131694,-0.720486 0.128789,-0.71782 Q 0.127422,-0.716589 0.12479,-0.715325 C 0.145154,-0.713808 0.143243,-0.685153 0.121064,-0.688015 L 0.098848,-0.688015 L 0.098848,-0.738123 M 0.105479,-0.710129 L 0.105479,-0.693552 L 0.121338,-0.693552 C 0.1357,-0.692518 0.136366,-0.71137 0.119731,-0.710129 L 0.105479,-0.710129" /> <path d="M 0.002345,-0.76316 L 0.002345,-0.76183 L -0.014105,-0.76183 L -0.014105,-0.76316 Q -0.006615,-0.76267 -0.007385,-0.77212 L -0.007385,-0.79571 L -0.034335,-0.76183 L -0.046305,-0.76183 L -0.046305,-0.76316 Q -0.04277,-0.762635 -0.039515,-0.76701 L -0.039515,-0.79788 Q -0.03857,-0.80747 -0.046305,-0.80684 L -0.046305,-0.80817 L -0.029855,-0.80817 L -0.029855,-0.80684 Q -0.037205,-0.80747 -0.036435,-0.79788 L -0.036435,-0.77044 L -0.005495,-0.80894 L -0.004305,-0.80894 L -0.004305,-0.77212 Q -0.004211,-0.76181 0.002345,-0.76316" />
<path d="M -0.070649,-0.808123 L -0.064258,-0.808123 L -0.064258,-0.765466 L -0.049766,-0.808123 L -0.043784,-0.808123 L -0.029224,-0.766184 L -0.029224,-0.808123 L -0.022832,-0.808123 L -0.022832,-0.758015 L -0.031753,-0.758015 L -0.04375,-0.792878 Q -0.045562,-0.798176 -0.046416,-0.800911 Q -0.047168,-0.79845 -0.048809,-0.793494 L -0.060669,-0.758015 L -0.070649,-0.758015 L -0.070649,-0.808123" /> <path d="M 0.021035,-0.76477 L 0.021035,-0.79977 Q 0.022085,-0.807505 0.014455,-0.80684 L 0.014455,-0.80817 L 0.034895,-0.80817 L 0.034895,-0.80684 Q 0.027195,-0.80733 0.028175,-0.80054 L 0.028175,-0.76477 L 0.031955,-0.76477 Q 0.04228,-0.76344 0.043085,-0.77373 L 0.044765,-0.77373 L 0.044345,-0.76183 L 0.004865,-0.76183 L 0.004445,-0.77373 L 0.006125,-0.77373 Q 0.00707,-0.76351 0.017255,-0.76477 L 0.021035,-0.76477" />
<path d="M -0.017637,-0.808123 L -0.010596,-0.808123 L -0.005093,-0.792947 L 0.015859,-0.792947 L 0.021704,-0.808123 L 0.029258,-0.808123 L 0.00875,-0.758015 L 0.001606,-0.758015 L -0.017637,-0.808123 M -0.003179,-0.787546 L 0.002324,-0.772849 Q 0.004067,-0.768098 0.005024,-0.763279 Q 0.006187,-0.767346 0.008579,-0.773669 L 0.013809,-0.787546 L -0.003179,-0.787546" /> <path d="M 0.060095,-0.80257 L 0.060095,-0.78528 L 0.070875,-0.78528 Q 0.078365,-0.7843 0.078575,-0.792 L 0.080185,-0.792 L 0.080185,-0.77576 L 0.078575,-0.77576 Q 0.078575,-0.783005 0.070875,-0.78241 L 0.060095,-0.78241 L 0.060095,-0.76687 Q 0.05985,-0.76421 0.062405,-0.76449 L 0.071855,-0.76449 Q 0.082215,-0.763475 0.082495,-0.77184 L 0.084245,-0.77184 L 0.084035,-0.76183 L 0.046865,-0.76183 L 0.046865,-0.76316 Q 0.05376,-0.76288 0.052955,-0.76946 L 0.052955,-0.80054 Q 0.05376,-0.80712 0.046865,-0.80684 L 0.046865,-0.80817 L 0.084665,-0.80817 L 0.087815,-0.79634 L 0.085855,-0.79634 Q 0.082495,-0.80663 0.069335,-0.80558 L 0.067445,-0.80558 Q 0.05873,-0.806105 0.060095,-0.80257" />
<path d="M 0.029463,-0.808123 L 0.037427,-0.808123 L 0.050005,-0.790657 Q 0.050723,-0.789631 0.052397,-0.786897 Q 0.053525,-0.788708 0.054585,-0.790247 L 0.067197,-0.808123 L 0.0754,-0.808123 L 0.056431,-0.781633 L 0.074033,-0.758015 L 0.066821,-0.758015 L 0.056738,-0.771311 Q 0.054448,-0.774285 0.052773,-0.777019 Q 0.051577,-0.774866 0.04874,-0.770867 L 0.039648,-0.758015 L 0.031753,-0.758015 L 0.048843,-0.782009 L 0.029463,-0.808123" /> <path d="M 0.108885,-0.76183 L 0.089565,-0.76183 L 0.089565,-0.76316 Q 0.09646,-0.76302 0.095515,-0.76946 L 0.095515,-0.79977 Q 0.09646,-0.807365 0.089565,-0.80684 L 0.089565,-0.80817 L 0.108955,-0.80817 L 0.108955,-0.80684 Q 0.101745,-0.80719 0.102655,-0.80054 L 0.102655,-0.78675 L 0.106575,-0.78661 L 0.123235,-0.80817 L 0.134505,-0.80817 L 0.134505,-0.80684 L 0.128415,-0.80355 L 0.113995,-0.78584 Q 0.114135,-0.78584 0.114345,-0.78577 Q 0.131438,-0.781066 0.124915,-0.76785 Q 0.118129,-0.761097 0.108885,-0.76183 M 0.102655,-0.78416 L 0.102655,-0.76694 C 0.101909,-0.762463 0.113894,-0.764707 0.11592,-0.766765 C 0.117997,-0.768328 0.119035,-0.770743 0.119035,-0.77401 C 0.119222,-0.781173 0.113762,-0.784557 0.102655,-0.78416" />
<path d="M -0.820649,-0.732876 L -0.814258,-0.732876 L -0.814258,-0.69022 L -0.799766,-0.732876 L -0.793784,-0.732876 L -0.779224,-0.690937 L -0.779224,-0.732876 L -0.772832,-0.732876 L -0.772832,-0.682769 L -0.781753,-0.682769 L -0.79375,-0.717632 Q -0.795562,-0.72293 -0.796416,-0.725664 Q -0.797168,-0.723203 -0.798809,-0.718247 L -0.810669,-0.682769 L -0.820649,-0.682769 L -0.820649,-0.732876" /> <path d="M -0.783845,-0.69498 L -0.783845,-0.72669 Q -0.7829,-0.734285 -0.790215,-0.73376 L -0.790215,-0.73509 L -0.770615,-0.73509 L -0.770615,-0.73376 Q -0.77751,-0.73404 -0.776705,-0.72746 L -0.776705,-0.69638 Q -0.77758,-0.68987 -0.770615,-0.69008 L -0.770615,-0.68875 L -0.784545,-0.68875 L -0.800015,-0.7241 L -0.816185,-0.68875 L -0.830045,-0.68875 L -0.830045,-0.69008 Q -0.82238,-0.68966 -0.823395,-0.69638 L -0.823395,-0.7248 Q -0.82245,-0.73439 -0.830185,-0.73376 L -0.830185,-0.73509 L -0.813735,-0.73509 L -0.813735,-0.73376 Q -0.821085,-0.73439 -0.820315,-0.7248 L -0.820315,-0.69659 L -0.802745,-0.73509 L -0.801765,-0.73509 L -0.783845,-0.69498" />
<path d="M -0.767637,-0.732876 L -0.760596,-0.732876 L -0.755093,-0.7177 L -0.734141,-0.7177 L -0.728296,-0.732876 L -0.720742,-0.732876 L -0.74125,-0.682769 L -0.748394,-0.682769 L -0.767637,-0.732876 M -0.753179,-0.7123 L -0.747676,-0.697603 Q -0.745933,-0.692852 -0.744976,-0.688032 Q -0.743813,-0.6921 -0.741421,-0.698423 L -0.736191,-0.7123 L -0.753179,-0.7123" /> <path d="M -0.720145,-0.73509 L -0.720145,-0.73376 Q -0.723995,-0.734425 -0.726445,-0.72767 L -0.743875,-0.68791 L -0.745275,-0.68791 L -0.759835,-0.72228 Q -0.764805,-0.73551 -0.768515,-0.73376 L -0.768515,-0.73509 L -0.754655,-0.73509 L -0.754655,-0.73376 Q -0.761273,-0.733538 -0.758855,-0.72816 L -0.755635,-0.71997 L -0.737295,-0.71997 L -0.734425,-0.72669 Q -0.730194,-0.734205 -0.737995,-0.73376 L -0.737995,-0.73509 L -0.720145,-0.73509 M -0.754445,-0.7171 L -0.746395,-0.69785 L -0.738275,-0.7171 L -0.754445,-0.7171" />
<path d="M -0.720537,-0.732876 L -0.712573,-0.732876 L -0.699995,-0.71541 Q -0.699277,-0.714385 -0.697603,-0.71165 Q -0.696475,-0.713462 -0.695415,-0.715 L -0.682803,-0.732876 L -0.6746,-0.732876 L -0.693569,-0.706387 L -0.675967,-0.682769 L -0.683179,-0.682769 L -0.693262,-0.696064 Q -0.695552,-0.699038 -0.697227,-0.701772 Q -0.698423,-0.699619 -0.70126,-0.69562 L -0.710352,-0.682769 L -0.718247,-0.682769 L -0.701157,-0.706763 L -0.720537,-0.732876" /> <path d="M -0.670375,-0.68875 L -0.687035,-0.68875 L -0.687035,-0.69008 Q -0.678392,-0.689128 -0.684935,-0.69715 L -0.692845,-0.70681 L -0.695785,-0.70268 Q -0.706309,-0.68863 -0.698375,-0.69015 L -0.696415,-0.69008 L -0.696415,-0.68875 L -0.717555,-0.68875 L -0.717555,-0.69008 Q -0.71262,-0.688505 -0.704885,-0.70107 L -0.697255,-0.71227 L -0.708245,-0.72578 Q -0.71507,-0.73509 -0.718395,-0.73376 L -0.718395,-0.73509 L -0.702085,-0.73509 L -0.702085,-0.73376 Q -0.711864,-0.734868 -0.703765,-0.72529 L -0.695435,-0.71493 L -0.688785,-0.72473 Q -0.68077,-0.734796 -0.690605,-0.73376 L -0.690605,-0.73509 L -0.669815,-0.73509 L -0.669815,-0.73376 Q -0.67447,-0.73383 -0.677585,-0.72858 L -0.691025,-0.7094 L -0.680805,-0.69666 Q -0.67573,-0.68952 -0.670375,-0.69008 L -0.670375,-0.68875" />
<path d="M -0.820649,-0.813369 L -0.814258,-0.813369 L -0.814258,-0.770713 L -0.799766,-0.813369 L -0.793784,-0.813369 L -0.779224,-0.771431 L -0.779224,-0.813369 L -0.772832,-0.813369 L -0.772832,-0.763262 L -0.781753,-0.763262 L -0.79375,-0.798125 Q -0.795562,-0.803423 -0.796416,-0.806157 Q -0.797168,-0.803696 -0.798809,-0.79874 L -0.810669,-0.763262 L -0.820649,-0.763262 L -0.820649,-0.813369" /> <path d="M -0.783845,-0.77198 L -0.783845,-0.80369 Q -0.7829,-0.811285 -0.790215,-0.81076 L -0.790215,-0.81209 L -0.770615,-0.81209 L -0.770615,-0.81076 Q -0.77751,-0.81104 -0.776705,-0.80446 L -0.776705,-0.77338 Q -0.77758,-0.76687 -0.770615,-0.76708 L -0.770615,-0.76575 L -0.784545,-0.76575 L -0.800015,-0.8011 L -0.816185,-0.76575 L -0.830045,-0.76575 L -0.830045,-0.76708 Q -0.82238,-0.76666 -0.823395,-0.77338 L -0.823395,-0.8018 Q -0.82245,-0.81139 -0.830185,-0.81076 L -0.830185,-0.81209 L -0.813735,-0.81209 L -0.813735,-0.81076 Q -0.821085,-0.81139 -0.820315,-0.8018 L -0.820315,-0.77359 L -0.802745,-0.81209 L -0.801765,-0.81209 L -0.783845,-0.77198" />
<path d="M -0.767637,-0.813369 L -0.760596,-0.813369 L -0.755093,-0.798193 L -0.734141,-0.798193 L -0.728296,-0.813369 L -0.720742,-0.813369 L -0.74125,-0.763262 L -0.748394,-0.763262 L -0.767637,-0.813369 M -0.753179,-0.792793 L -0.747676,-0.778096 Q -0.745933,-0.773345 -0.744976,-0.768525 Q -0.743813,-0.772593 -0.741421,-0.778916 L -0.736191,-0.792793 L -0.753179,-0.792793" /> <path d="M -0.720145,-0.81209 L -0.720145,-0.81076 Q -0.723995,-0.811425 -0.726445,-0.80467 L -0.743875,-0.76491 L -0.745275,-0.76491 L -0.759835,-0.79928 Q -0.764805,-0.81251 -0.768515,-0.81076 L -0.768515,-0.81209 L -0.754655,-0.81209 L -0.754655,-0.81076 Q -0.761273,-0.810538 -0.758855,-0.80516 L -0.755635,-0.79697 L -0.737295,-0.79697 L -0.734425,-0.80369 Q -0.730194,-0.811205 -0.737995,-0.81076 L -0.737995,-0.81209 L -0.720145,-0.81209 M -0.754445,-0.7941 L -0.746395,-0.77485 L -0.738275,-0.7941 L -0.754445,-0.7941" />
<path d="M -0.720537,-0.813369 L -0.712573,-0.813369 L -0.699995,-0.795903 Q -0.699277,-0.794878 -0.697603,-0.792144 Q -0.696475,-0.793955 -0.695415,-0.795493 L -0.682803,-0.813369 L -0.6746,-0.813369 L -0.693569,-0.78688 L -0.675967,-0.763262 L -0.683179,-0.763262 L -0.693262,-0.776558 Q -0.695552,-0.779531 -0.697227,-0.782266 Q -0.698423,-0.780112 -0.70126,-0.776113 L -0.710352,-0.763262 L -0.718247,-0.763262 L -0.701157,-0.787256 L -0.720537,-0.813369" /> <path d="M -0.670375,-0.76575 L -0.687035,-0.76575 L -0.687035,-0.76708 Q -0.678392,-0.766128 -0.684935,-0.77415 L -0.692845,-0.78381 L -0.695785,-0.77968 Q -0.706309,-0.76563 -0.698375,-0.76715 L -0.696415,-0.76708 L -0.696415,-0.76575 L -0.717555,-0.76575 L -0.717555,-0.76708 Q -0.71262,-0.765505 -0.704885,-0.77807 L -0.697255,-0.78927 L -0.708245,-0.80278 Q -0.71507,-0.81209 -0.718395,-0.81076 L -0.718395,-0.81209 L -0.702085,-0.81209 L -0.702085,-0.81076 Q -0.711864,-0.811868 -0.703765,-0.80229 L -0.695435,-0.79193 L -0.688785,-0.80173 Q -0.68077,-0.811796 -0.690605,-0.81076 L -0.690605,-0.81209 L -0.669815,-0.81209 L -0.669815,-0.81076 Q -0.67447,-0.81083 -0.677585,-0.80558 L -0.691025,-0.7864 L -0.680805,-0.77366 Q -0.67573,-0.76652 -0.670375,-0.76708 L -0.670375,-0.76575" />
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Before After
Before After

View file

@ -1,13 +1,13 @@
<?xml version='1.0' encoding='utf-8'?> <?xml version='1.0' encoding='utf-8'?>
<svg width="100.089998mm" height="102.589998mm" viewBox="-0.0045 -10.0045 10.009 10.259" version="1.1" xmlns="http://www.w3.org/2000/svg"> <svg width="40.09mm" height="101.09mm" viewBox="-0.01125 -25.01125 10.0225 25.2725" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round"> <g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.00900000018"> <g fill="none" stroke="rgb(0,0,0)" stroke-width="0.0225">
<path d="M 6.0,0.0 A 11.022002852739636,11.022002852739636 0.0 0,1 1.242,9.069003" /> <path d="M 6.0,0.0 A 47.000000000000085,47.000000000000085 180.0 0,0 9.615385,18.076923" />
<circle cx="6.0" cy="0.0" r="0.25" /> <circle cx="6.0" cy="0.0" r="0.25" />
</g> </g>
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.00900000018" id="dashed" stroke-dasharray="0.108 0.162"> <g fill="none" stroke="rgb(0,0,0)" stroke-width="0.0225" id="dashed" stroke-dasharray="0.27 0.405">
<path d="M 0.0,10.0 C 2.605146,7.884615 8.294029,4.391384 10.0,10.0" /> <path d="M 0.0,20.0 A 5.0,5.0 180.0 1,0 2.5,15.669873" />
<line x1="6.0" y1="0.0" x2="6.0" y2="1.0" /> <line x1="6.0" y1="0.0" x2="6.0" y2="5.0" />
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 708 B

After

Width:  |  Height:  |  Size: 680 B

Before After
Before After

View file

@ -1,8 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="100.089989mm" height="13.093747mm" viewBox="-0.000798 -0.085182 1.001332 0.130994" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.0009003885533792664">
<path d="M 1.0,-0.0 C 0.829823,0.035412 0.658159,0.060683 0.48501,0.075813 C 0.403802,0.083052 0.322454,0.085791 0.240967,0.084029 C 0.198485,0.08366 0.156475,0.079149 0.114938,0.070497 C 0.074523,0.05954 0.027058,0.048994 0.001793,0.012613 C -0.0025,0.000458 0.001085,-0.00896 0.012548,-0.01564 C 0.02178,-0.020765 0.031585,-0.024392 0.041962,-0.026521 C 0.062557,-0.030869 0.083358,-0.033834 0.104363,-0.035416 C 0.149789,-0.038322 0.195215,-0.041227 0.24064,-0.044133 C 0.321442,-0.046309 0.402208,-0.045216 0.482939,-0.040853 C 0.655652,-0.03182 0.828005,-0.018202 1.0,-0.0" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 924 B

View file

@ -1,12 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="100.09mm" height="100.09mm" viewBox="-0.0045 -10.0045 10.009 10.009" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.008999999999999998">
<path d="M 0.098274,9.997584 A 12.0,12.0 87.18351331597553 0,0 9.497124,4.66264" />
</g>
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.008999999999999998" id="dashed" stroke-dasharray="0.108 0.162">
<circle cx="7.0" cy="3.0" r="3.0" />
<path d="M -0.0,6.0 A 2.0,2.0 0.0 0,1 0.0,10.0" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 639 B

View file

@ -1,12 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="100.09mm" height="100.09mm" viewBox="-0.0045 -10.0045 10.009 10.009" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.009">
<line x1="8.448109" y1="5.627352" x2="0.965406" y2="9.751568" />
</g>
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.009" id="dashed" stroke-dasharray="0.108 0.162">
<circle cx="7.0" cy="3.0" r="3.0" />
<path d="M -0.0,6.0 A 2.0,2.0 0.0 0,1 0.0,10.0" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 590 B

View file

@ -1,12 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="53.437087mm" height="100.089999mm" viewBox="-3.542734 -5.0072 8.549934 16.0144" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.01440000009">
<path d="M 5.0,0.0 C 5.00028,-0.417137 4.985935,-0.83158 4.937625,-1.209787 C 4.890768,-1.590627 4.807318,-1.930241 4.687277,-2.228627 C 4.447554,-2.825457 4.043062,-3.22477 3.531938,-3.510073 C 3.022136,-3.79718 2.414809,-3.986061 1.805109,-4.210727 C 1.192462,-4.429798 0.586549,-4.700437 0.0,-5.0" />
</g>
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.01440000009" id="dashed" stroke-dasharray="0.1728 0.2592">
<path d="M -3.535534,3.535534 A 5.0,5.0 0.0 0,0 5.0,0.0" />
<path d="M 0.0,-5.0 Q -6.0,-8.0 0.0,-11.0" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 876 B

View file

@ -1,13 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="102.59mm" height="100.09mm" viewBox="-0.0045 -10.0045 10.259 10.009" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.009000000000000001">
<path d="M 10.0,3.0 A 10.575383789062535,10.575383789062535 -108.43494882292202 0,0 4.283756,7.578649" />
<circle cx="10.0" cy="3.0" r="0.25" />
</g>
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.009000000000000001" id="dashed" stroke-dasharray="0.108 0.162">
<path d="M -0.0,0.0 A 5.0,5.0 0.0 0,1 0.0,10.0" />
<line x1="10.0" y1="3.0" x2="9.051317" y2="3.316228" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 725 B

View file

@ -1,12 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="102.59mm" height="100.09mm" viewBox="-0.0045 -10.0045 10.259 10.009" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.009000000000000001">
<line x1="10.0" y1="3.0" x2="3.25848" y2="8.792401" />
<circle cx="10.0" cy="3.0" r="0.25" />
</g>
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.009000000000000001" id="dashed" stroke-dasharray="0.108 0.162">
<path d="M -0.0,0.0 A 5.0,5.0 0.0 0,1 0.0,10.0" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 612 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 524 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

View file

@ -1,60 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="64.546635mm" height="100.2mm" viewBox="-50.991676 -78.678879 101.146629 157.016585" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.31340635796944105" id="Visible">
<line x1="-50.834973" y1="15.537229" x2="-50.834973" y2="77.867877" />
<line x1="-50.834973" y1="77.867877" x2="49.161527" y2="78.522176" />
<line x1="-49.99825" y1="-62.657798" x2="-49.99825" y2="-0.327149" />
<line x1="-49.99825" y1="-0.327149" x2="49.99825" y2="0.327149" />
<line x1="49.99825" y1="-62.003499" x2="49.99825" y2="0.327149" />
<line x1="-49.99825" y1="-62.657798" x2="49.99825" y2="-62.003499" />
<line x1="-50.834973" y1="15.537229" x2="-49.99825" y2="-62.657798" />
<line x1="-50.834973" y1="77.867877" x2="-49.99825" y2="-0.327149" />
<line x1="49.161527" y1="78.522176" x2="49.99825" y2="0.327149" />
<line x1="-27.191501" y1="-78.181003" x2="-27.191501" y2="-62.508568" />
<line x1="26.806609" y1="-77.827682" x2="26.806609" y2="-62.155247" />
<line x1="-27.191501" y1="-78.181003" x2="26.806609" y2="-77.827682" />
<line x1="-27.359192" y1="-62.509666" x2="-27.191501" y2="-78.181003" />
</g>
<g fill="none" stroke="rgb(99,99,99)" stroke-width="0.14103286108624846" id="Hidden" stroke-dasharray="0.003582 0.42489">
<line x1="49.161527" y1="16.191527" x2="49.161527" y2="78.522176" />
<line x1="-50.834973" y1="15.537229" x2="49.161527" y2="16.191527" />
<line x1="49.161527" y1="16.191527" x2="49.99825" y2="-62.003499" />
<line x1="-27.643332" y1="-35.955689" x2="-27.643332" y2="-2.297139" />
<line x1="-27.643332" y1="-2.297139" x2="26.354778" y2="-1.943817" />
<line x1="26.354778" y1="-35.602368" x2="26.354778" y2="-1.943817" />
<line x1="-27.643332" y1="-35.955689" x2="26.354778" y2="-35.602368" />
<line x1="-27.191501" y1="-62.508568" x2="-27.191501" y2="-44.522453" />
<line x1="-27.191501" y1="-44.522453" x2="26.806609" y2="-44.169132" />
<line x1="26.806609" y1="-62.155247" x2="26.806609" y2="-44.169132" />
<line x1="-27.643332" y1="-35.955689" x2="-27.359192" y2="-62.509666" />
<line x1="-27.643332" y1="-2.297139" x2="-27.191501" y2="-44.522453" />
<line x1="26.354778" y1="-35.602368" x2="26.806609" y2="-77.827682" />
<line x1="26.354778" y1="-1.943817" x2="26.806609" y2="-44.169132" />
<line x1="-0.418362" y1="-33.829346" x2="-0.418362" y2="-12.636925" />
<line x1="-0.418362" y1="-12.636925" x2="33.580448" y2="-12.414463" />
<line x1="33.580448" y1="-33.606884" x2="33.580448" y2="-12.414463" />
<line x1="-0.418362" y1="-33.829346" x2="33.580448" y2="-33.606884" />
<line x1="-0.133876" y1="-60.415654" x2="-0.133876" y2="-39.223234" />
<line x1="-0.133876" y1="-39.223234" x2="33.864934" y2="-39.000772" />
<line x1="33.864934" y1="-60.193193" x2="33.864934" y2="-39.000772" />
<line x1="-0.133876" y1="-60.415654" x2="33.864934" y2="-60.193193" />
<line x1="-0.418362" y1="-33.829346" x2="-0.133876" y2="-60.415654" />
<line x1="-0.418362" y1="-12.636925" x2="-0.133876" y2="-39.223234" />
<line x1="33.580448" y1="-33.606884" x2="33.864934" y2="-60.193193" />
<line x1="33.580448" y1="-12.414463" x2="33.864934" y2="-39.000772" />
<line x1="-24.618335" y1="-12.103038" x2="-24.618335" y2="2.856317" />
<line x1="-24.618335" y1="2.856317" x2="-0.619175" y2="3.013349" />
<line x1="-0.619175" y1="-11.946007" x2="-0.619175" y2="3.013349" />
<line x1="-24.618335" y1="-12.103038" x2="-0.619175" y2="-11.946007" />
<line x1="-24.417521" y1="-30.869845" x2="-24.417521" y2="-15.910489" />
<line x1="-24.417521" y1="-15.910489" x2="-0.418362" y2="-15.753457" />
<line x1="-0.418362" y1="-30.712813" x2="-0.418362" y2="-15.753457" />
<line x1="-24.417521" y1="-30.869845" x2="-0.418362" y2="-30.712813" />
<line x1="-24.618335" y1="-12.103038" x2="-24.417521" y2="-30.869845" />
<line x1="-24.618335" y1="2.856317" x2="-24.417521" y2="-15.910489" />
<line x1="-0.619175" y1="-11.946007" x2="-0.418362" y2="-30.712813" />
<line x1="-0.619175" y1="3.013349" x2="-0.418362" y2="-15.753457" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -1,66 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="100.2mm" height="92.071276mm" viewBox="-80.884429 -85.260356 186.600742 171.462758" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.37245657030040263" id="Visible">
<line x1="-48.408296" y1="-72.549421" x2="-48.408296" y2="-9.738612" />
<line x1="-48.408296" y1="-9.738612" x2="-73.43923" y2="65.596905" />
<line x1="-73.43923" y1="2.786096" x2="-73.43923" y2="65.596905" />
<line x1="-48.408296" y1="-72.549421" x2="-73.43923" y2="2.786096" />
<line x1="48.408296" y1="-53.072197" x2="48.408296" y2="9.738612" />
<line x1="48.408296" y1="9.738612" x2="23.377361" y2="85.074128" />
<line x1="-48.408296" y1="-72.549421" x2="48.408296" y2="-53.072197" />
<line x1="-48.408296" y1="-9.738612" x2="48.408296" y2="9.738612" />
<line x1="-73.43923" y1="65.596905" x2="23.377361" y2="85.074128" />
<line x1="53.249125" y1="-86.016173" x2="53.249125" y2="-52.098336" />
<line x1="53.249125" y1="-52.098336" x2="48.408296" y2="-37.528908" />
<line x1="53.249125" y1="-86.016173" x2="42.685694" y2="-54.22345" />
<line x1="105.530084" y1="-75.498473" x2="105.530084" y2="-41.580636" />
<line x1="105.530084" y1="-41.580636" x2="92.01338" y2="-0.899457" />
<line x1="53.249125" y1="-86.016173" x2="105.530084" y2="-75.498473" />
<line x1="53.249125" y1="-52.098336" x2="105.530084" y2="-41.580636" />
<line x1="48.408296" y1="-9.671775" x2="92.01338" y2="-0.899457" />
<line x1="71.398515" y1="-5.046683" x2="71.398515" y2="9.649712" />
<line x1="71.398515" y1="9.649712" x2="62.887997" y2="35.263788" />
<line x1="48.408296" y1="5.02462" x2="71.398515" y2="9.649712" />
<line x1="41.365912" y1="30.93405" x2="62.887997" y2="35.263788" />
<line x1="-74.690777" y1="-0.984425" x2="-74.690777" y2="14.090169" />
<line x1="-74.690777" y1="14.090169" x2="-80.698201" y2="32.170693" />
<line x1="-80.698201" y1="17.096099" x2="-80.698201" y2="32.170693" />
<line x1="-74.690777" y1="-0.984425" x2="-80.698201" y2="17.096099" />
<line x1="-74.690777" y1="-0.984425" x2="-72.343347" y2="-0.512178" />
<line x1="-74.690777" y1="14.090169" x2="-73.43923" y2="14.341951" />
<line x1="-80.698201" y1="32.170693" x2="-73.43923" y2="33.631027" />
</g>
<g fill="none" stroke="rgb(99,99,99)" stroke-width="0.16760545663518117" id="Hidden" stroke-dasharray="0.004257 0.504945">
<line x1="23.377361" y1="22.263319" x2="23.377361" y2="85.074128" />
<line x1="48.408296" y1="-53.072197" x2="23.377361" y2="22.263319" />
<line x1="-73.43923" y1="2.786096" x2="23.377361" y2="22.263319" />
<line x1="48.408296" y1="-37.528908" x2="39.732421" y2="-11.417157" />
<line x1="39.732421" y1="-45.334994" x2="39.732421" y2="-11.417157" />
<line x1="42.685694" y1="-54.22345" x2="39.732421" y2="-45.334994" />
<line x1="92.01338" y1="-34.817294" x2="92.01338" y2="-0.899457" />
<line x1="105.530084" y1="-75.498473" x2="92.01338" y2="-34.817294" />
<line x1="39.732421" y1="-45.334994" x2="92.01338" y2="-34.817294" />
<line x1="39.732421" y1="-11.417157" x2="48.408296" y2="-9.671775" />
<line x1="38.480874" y1="-18.328219" x2="38.480874" y2="3.027456" />
<line x1="38.480874" y1="3.027456" x2="29.970356" y2="28.641532" />
<line x1="29.970356" y1="7.285857" x2="29.970356" y2="28.641532" />
<line x1="38.480874" y1="-18.328219" x2="29.970356" y2="7.285857" />
<line x1="71.398515" y1="-11.705963" x2="71.398515" y2="-5.046683" />
<line x1="62.887997" y1="13.908112" x2="62.887997" y2="35.263788" />
<line x1="71.398515" y1="-11.705963" x2="62.887997" y2="13.908112" />
<line x1="38.480874" y1="-18.328219" x2="71.398515" y2="-11.705963" />
<line x1="38.480874" y1="3.027456" x2="48.408296" y2="5.02462" />
<line x1="29.970356" y1="7.285857" x2="62.887997" y2="13.908112" />
<line x1="29.970356" y1="28.641532" x2="41.365912" y2="30.93405" />
<line x1="-51.454795" y1="3.690108" x2="-51.454795" y2="18.764702" />
<line x1="-51.454795" y1="18.764702" x2="-57.462219" y2="36.845226" />
<line x1="-57.462219" y1="21.770632" x2="-57.462219" y2="36.845226" />
<line x1="-51.454795" y1="3.690108" x2="-57.462219" y2="21.770632" />
<line x1="-72.343347" y1="-0.512178" x2="-51.454795" y2="3.690108" />
<line x1="-73.43923" y1="14.341951" x2="-51.454795" y2="18.764702" />
<line x1="-80.698201" y1="17.096099" x2="-57.462219" y2="21.770632" />
<line x1="-73.43923" y1="33.631027" x2="-57.462219" y2="36.845226" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -1,65 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="100.2mm" height="84.703811mm" viewBox="-80.884429 -80.589035 186.600742 157.742454" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.3724565703004025" id="Visible">
<line x1="-48.408296" y1="-76.967191" x2="-48.408296" y2="-9.203876" />
<line x1="-48.408296" y1="-9.203876" x2="-73.43923" y2="61.995055" />
<line x1="-73.43923" y1="-5.76826" x2="-73.43923" y2="61.995055" />
<line x1="-48.408296" y1="-76.967191" x2="-73.43923" y2="-5.76826" />
<line x1="48.408296" y1="-58.55944" x2="48.408296" y2="9.203876" />
<line x1="48.408296" y1="9.203876" x2="23.377361" y2="80.402807" />
<line x1="-48.408296" y1="-76.967191" x2="48.408296" y2="-58.55944" />
<line x1="-48.408296" y1="-9.203876" x2="48.408296" y2="9.203876" />
<line x1="-73.43923" y1="61.995055" x2="23.377361" y2="80.402807" />
<line x1="53.249125" y1="-57.639052" x2="53.249125" y2="-21.046862" />
<line x1="53.249125" y1="-21.046862" x2="48.408296" y2="-7.277424" />
<line x1="53.249125" y1="-57.639052" x2="48.408296" y2="-43.869614" />
<line x1="105.530084" y1="-47.698866" x2="105.530084" y2="-11.106676" />
<line x1="105.530084" y1="-11.106676" x2="92.01338" y2="27.340747" />
<line x1="53.249125" y1="-57.639052" x2="105.530084" y2="-47.698866" />
<line x1="53.249125" y1="-21.046862" x2="105.530084" y2="-11.106676" />
<line x1="45.163606" y1="18.433193" x2="92.01338" y2="27.340747" />
<line x1="68.183968" y1="22.810057" x2="62.887997" y2="37.874116" />
<line x1="39.867635" y1="33.497252" x2="62.887997" y2="37.874116" />
<line x1="-74.690777" y1="-2.208314" x2="-74.690777" y2="14.054882" />
<line x1="-74.690777" y1="14.054882" x2="-80.698201" y2="31.142625" />
<line x1="-80.698201" y1="14.87943" x2="-80.698201" y2="31.142625" />
<line x1="-74.690777" y1="-2.208314" x2="-80.698201" y2="14.87943" />
<line x1="-74.690777" y1="-2.208314" x2="-73.43923" y2="-1.970357" />
<line x1="-74.690777" y1="14.054882" x2="-73.43923" y2="14.292839" />
<line x1="-80.698201" y1="31.142625" x2="-73.43923" y2="32.522774" />
</g>
<g fill="none" stroke="rgb(99,99,99)" stroke-width="0.16760545663518112" id="Hidden" stroke-dasharray="0.004257 0.504945">
<line x1="23.377361" y1="12.639491" x2="23.377361" y2="80.402807" />
<line x1="48.408296" y1="-58.55944" x2="23.377361" y2="12.639491" />
<line x1="-73.43923" y1="-5.76826" x2="23.377361" y2="12.639491" />
<line x1="48.408296" y1="-7.277424" x2="39.732421" y2="17.400561" />
<line x1="39.732421" y1="-19.19163" x2="39.732421" y2="17.400561" />
<line x1="48.408296" y1="-43.869614" x2="39.732421" y2="-19.19163" />
<line x1="92.01338" y1="-9.251444" x2="92.01338" y2="27.340747" />
<line x1="105.530084" y1="-47.698866" x2="92.01338" y2="-9.251444" />
<line x1="39.732421" y1="-19.19163" x2="92.01338" y2="-9.251444" />
<line x1="39.732421" y1="17.400561" x2="45.163606" y2="18.433193" />
<line x1="38.480874" y1="-15.631683" x2="38.480874" y2="7.407844" />
<line x1="38.480874" y1="7.407844" x2="29.970356" y2="31.615481" />
<line x1="29.970356" y1="8.575954" x2="29.970356" y2="31.615481" />
<line x1="38.480874" y1="-15.631683" x2="29.970356" y2="8.575954" />
<line x1="71.398515" y1="-9.373047" x2="71.398515" y2="13.66648" />
<line x1="71.398515" y1="13.66648" x2="68.183968" y2="22.810057" />
<line x1="62.887997" y1="14.834589" x2="62.887997" y2="37.874116" />
<line x1="71.398515" y1="-9.373047" x2="62.887997" y2="14.834589" />
<line x1="38.480874" y1="-15.631683" x2="71.398515" y2="-9.373047" />
<line x1="38.480874" y1="7.407844" x2="71.398515" y2="13.66648" />
<line x1="29.970356" y1="8.575954" x2="62.887997" y2="14.834589" />
<line x1="29.970356" y1="31.615481" x2="39.867635" y2="33.497252" />
<line x1="-51.454795" y1="2.209546" x2="-51.454795" y2="18.472742" />
<line x1="-51.454795" y1="18.472742" x2="-57.462219" y2="35.560486" />
<line x1="-57.462219" y1="19.29729" x2="-57.462219" y2="35.560486" />
<line x1="-51.454795" y1="2.209546" x2="-57.462219" y2="19.29729" />
<line x1="-73.43923" y1="-1.970357" x2="-51.454795" y2="2.209546" />
<line x1="-73.43923" y1="14.292839" x2="-51.454795" y2="18.472742" />
<line x1="-80.698201" y1="14.87943" x2="-57.462219" y2="19.29729" />
<line x1="-73.43923" y1="32.522774" x2="-57.462219" y2="35.560486" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

View file

@ -1,95 +0,0 @@
import os
from copy import copy
from build123d import *
from ocp_vscode import *
working_path = os.path.dirname(os.path.abspath(__file__))
with BuildPart() as part_context:
with BuildSketch() as sketch:
with BuildLine() as line:
l1 = Line((0, -3), (6, -3))
l2 = JernArc(l1 @ 1, l1 % 1, radius=3, arc_size=180)
l3 = PolarLine(l2 @ 1, 6, direction=l2 % 1)
l4 = Line(l1 @ 0, l3 @ 1)
make_face()
with Locations((6, 0, 0)):
Circle(2, mode=Mode.SUBTRACT)
extrude(amount=2)
with BuildSketch(Plane.YZ) as plate_sketch:
RectangleRounded(16, 6, 1.5, align=(Align.CENTER, Align.MIN))
plate = extrude(amount=-2)
with Locations(plate.faces().group_by(Face.area)[-1].sort_by(Axis.X)[-1]):
with GridLocations(13, 3, 2, 2):
CounterSinkHole(.5, 1)
fillet(edges().filter_by(lambda e: e.length == 2).filter_by(Axis.Z), 1)
bore = faces().filter_by(GeomType.CYLINDER).filter_by(lambda f: f.radius == 2)
chamfer(bore.edges(), .2)
line = Line((0, -3), (6, -3))
line += JernArc(line @ 1, line % 1, radius=3, arc_size=180)
line += PolarLine(line @ 1, 6, direction=line % 1)
sketch = make_hull(line.edges())
sketch -= Pos(6, 0, 0) * Circle(2)
part = extrude(sketch, amount= 2)
part_before = copy(part)
plate_sketch = Plane.YZ * RectangleRounded(16, 6, 1.5, align=(Align.CENTER, Align.MIN))
plate = extrude(plate_sketch, amount=-2)
plate_face = plate.faces().group_by(Face.area)[-1].sort_by(Axis.X)[-1]
plate -= Plane(plate_face) * GridLocations(13, 3, 2, 2) * CounterSinkHole(.5, 1, 2)
part += plate
part_before2 = copy(part)
part = fillet(part.edges().filter_by(lambda e: e.length == 2).filter_by(Axis.Z), 1)
bore = part.faces().filter_by(GeomType.CYLINDER).filter_by(lambda f: f.radius == 2)
part = chamfer(bore.edges(), .2)
class Punch(BaseSketchObject):
def __init__(
self,
radius: float,
size: float,
blobs: float,
rotation: float = 0,
mode: Mode = Mode.ADD,
):
with BuildSketch() as punch:
if blobs == 1:
Circle(size)
else:
with PolarLocations(radius, blobs):
Circle(size)
if len(faces()) > 1:
raise RuntimeError("radius is too large for number and size of blobs")
add(Face(faces()[0].outer_wire()), mode=Mode.REPLACE)
super().__init__(obj=punch.sketch, rotation=rotation, mode=mode)
tape = Rectangle(20, 5)
for i, location in enumerate(GridLocations(5, 0, 4, 1)):
tape -= location * Punch(.8, 1, i + 1)
set_defaults(reset_camera=Camera.RESET)
show(line)
save_screenshot(os.path.join(working_path, "create_1d.png"))
show(sketch, Pos(10, 10) * part_before)
save_screenshot(os.path.join(working_path, "upgrade_2d.png"))
show(plate, Pos(12, 12) * part_before2, Pos(24, 24) * part)
save_screenshot(os.path.join(working_path, "add_part.png"))
show(tape)
save_screenshot(os.path.join(working_path, "extend.png"))

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

View file

@ -1,771 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="287.243809mm" height="200.492344mm" viewBox="-143.698809 -100.522051 287.243809 200.492344" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="0.09" id="Visible">
<line x1="88.585661" y1="75.981149" x2="113.617241" y2="61.52916" />
<path d="M 88.585661,75.981149 A 3.4499999999999997,1.991858428704209 0.0 0,1 83.706624,75.981149" />
<path d="M 113.617241,58.712247 A 3.4499999999999997,1.991858428704209 0.0 0,1 114.627723,60.120703" />
<path d="M 114.627723,60.120703 A 3.4499999999999997,1.991858428704209 0.0 0,1 113.617241,61.52916" />
<line x1="83.706624" y1="75.981149" x2="58.675044" y2="61.52916" />
<line x1="88.585661" y1="44.260257" x2="113.617241" y2="58.712247" />
<path d="M 58.675044,61.52916 A 3.4499999999999997,1.991858428704209 0.0 0,1 57.664563,60.120703" />
<path d="M 57.664563,60.120703 A 3.4499999999999997,1.991858428704209 0.0 0,1 58.675044,58.712247" />
<path d="M 83.706624,44.260257 A 3.4499999999999997,1.991858428704209 0.0 0,1 88.585661,44.260257" />
<line x1="58.675044" y1="58.712247" x2="83.706624" y2="44.260257" />
<path d="M 87.588735,73.829388 A 1.9124999999999999,1.1041823898251593 0.0 0,1 88.058643,74.554321" />
<path d="M 88.058643,74.554321 A 1.9125000000000012,1.10418238982516 0.0 0,1 84.233643,74.554321" />
<path d="M 84.233643,74.554321 A 1.9124999999999999,1.1041823898251593 0.0 0,1 84.703551,73.829388" />
<path d="M 59.794041,59.339928 A 1.9124999999999999,1.1041823898251593 0.0 0,1 63.058882,60.120703" />
<path d="M 63.058882,60.120703 A 1.9124999999999999,1.1041823898251593 0.0 0,1 59.233882,60.120703" />
<path d="M 59.233882,60.120703 A 1.9124999999999999,1.1041823898251593 0.0 0,1 59.794041,59.339928" />
<path d="M 109.793561,59.339928 A 1.9124999999999999,1.1041823898251593 0.0 0,1 113.058403,60.120703" />
<path d="M 113.058403,60.120703 A 1.9125000000000012,1.10418238982516 0.0 0,1 109.233403,60.120703" />
<path d="M 109.233403,60.120703 A 1.9124999999999999,1.1041823898251593 0.0 0,1 109.793561,59.339928" />
<path d="M 76.043354,54.287856 A 14.287500000000001,8.24889197104678 0.0 0,1 100.433643,60.120703" />
<path d="M 71.858643,60.120703 A 14.287500000000001,8.24889197104678 0.0 0,1 76.043354,54.287856" />
<path d="M 84.793801,44.90631 A 1.9124999999999999,1.1041823898251593 0.0 0,1 88.058643,45.687085" />
<path d="M 88.058643,45.687085 A 1.9125000000000012,1.10418238982516 0.0 0,1 84.233643,45.687085" />
<path d="M 84.233643,45.687085 A 1.9124999999999999,1.1041823898251593 0.0 0,1 84.793801,44.90631" />
<path d="M 79.713239,39.829743 A 1.875,1.0825317547305484 0.0 0,1 82.364889,39.829743" />
<line x1="62.66843" y1="49.670568" x2="79.713239" y2="39.829743" />
<line x1="82.364889" y1="39.829743" x2="83.494492" y2="40.481919" />
<path d="M 62.66843,49.670568 A 1.875,1.0825317547305484 180.0 0,0 62.119255,50.436033" />
<path d="M 83.494492,40.481919 A 3.75,2.165063509461097 180.0 0,0 84.64668,40.935437" />
<path d="M 87.645605,40.935437 A 3.75,2.165063509461097 180.0 0,0 88.797793,40.481919" />
<line x1="89.927396" y1="39.829743" x2="88.797793" y2="40.481919" />
<path d="M 92.579047,39.829743 A 1.875,1.0825317547305484 180.0 0,0 89.927396,39.829743" />
<line x1="92.579047" y1="39.829743" x2="109.623855" y2="49.670568" />
<path d="M 109.623855,49.670568 A 1.875,1.0825317547305484 0.0 0,1 110.17303,50.436033" />
<path d="M 113.617241,55.772859 A 3.4499999999999997,1.991858428704209 0.0 0,1 114.627723,57.181315" />
<line x1="113.617241" y1="55.772859" x2="109.623855" y2="53.467277" />
<line x1="113.617241" y1="58.712247" x2="113.617241" y2="55.772859" />
<line x1="88.585661" y1="44.260257" x2="88.585661" y2="41.320869" />
<line x1="92.579047" y1="43.626452" x2="88.585661" y2="41.320869" />
<line x1="92.579047" y1="43.626452" x2="92.579047" y2="39.829743" />
<line x1="109.623855" y1="53.467277" x2="109.623855" y2="49.670568" />
<line x1="58.675044" y1="58.712247" x2="58.675044" y2="55.772859" />
<path d="M 57.664563,57.181315 A 3.4499999999999997,1.991858428704209 0.0 0,1 58.675044,55.772859" />
<line x1="83.706624" y1="44.260257" x2="83.706624" y2="41.320869" />
<path d="M 83.706624,41.320869 A 3.4499999999999997,1.991858428704209 0.0 0,1 88.585661,41.320869" />
<line x1="58.675044" y1="55.772859" x2="62.66843" y2="53.467277" />
<line x1="62.66843" y1="53.467277" x2="62.66843" y2="49.670568" />
<line x1="79.713239" y1="43.626452" x2="79.713239" y2="39.829743" />
<line x1="79.713239" y1="43.626452" x2="83.706624" y2="41.320869" />
<path d="M 76.043354,55.267652 A 14.287500000000001,8.24889197104678 0.0 0,1 100.433643,61.100499" />
<path d="M 100.433643,61.100499 A 14.287500000000001,8.24889197104678 0.0 0,1 88.527393,69.234016" />
<path d="M 83.764893,69.234016 A 14.287500000000001,8.24889197104678 0.0 0,1 71.858643,61.100499" />
<path d="M 71.858643,61.100499 A 14.287500000000001,8.24889197104678 0.0 0,1 76.043354,55.267652" />
<path d="M 79.766272,19.039698 A 1.7999999999999998,1.0392304845413265 0.0 0,1 82.311856,19.039698" />
<line x1="82.311856" y1="19.039698" x2="83.441459" y2="19.691875" />
<path d="M 83.441459,19.691875 A 3.8249999999999997,2.2083647796503185 180.0 0,0 88.850826,19.691875" />
<line x1="89.980429" y1="19.039698" x2="88.850826" y2="19.691875" />
<path d="M 92.526014,19.039698 A 1.7999999999999998,1.0392304845413263 -180.0 0,0 89.980429,19.039698" />
<line x1="92.526014" y1="19.039698" x2="109.570822" y2="28.880523" />
<path d="M 109.570822,28.880523 A 1.7999999999999998,1.0392304845413263 -3.895368034302951e-15 0,1 110.09803,29.61537" />
<path d="M 62.721463,28.880523 A 1.7999999999999998,1.0392304845413265 180.0 0,0 62.194255,29.61537" />
<line x1="62.721463" y1="28.880523" x2="79.766272" y2="19.039698" />
<path d="M 79.713239,19.00908 A 1.875,1.0825317547305484 0.0 0,1 82.364889,19.00908" />
<line x1="62.66843" y1="28.849905" x2="79.713239" y2="19.00908" />
<line x1="82.364889" y1="19.00908" x2="83.494492" y2="19.661256" />
<path d="M 62.66843,28.849905 A 1.875,1.0825317547305484 180.0 0,0 62.119255,29.61537" />
<path d="M 62.119255,29.61537 A 1.875,1.0825317547305484 180.0 0,0 62.194255,29.918479" />
<path d="M 83.494492,19.661256 A 3.75,2.165063509461097 180.0 0,0 88.797793,19.661256" />
<line x1="89.927396" y1="19.00908" x2="88.797793" y2="19.661256" />
<path d="M 92.579047,19.00908 A 1.875,1.0825317547305484 180.0 0,0 89.927396,19.00908" />
<line x1="92.579047" y1="19.00908" x2="109.623855" y2="28.849905" />
<path d="M 62.194255,35.815626 A 1.875,1.0825317547305484 0.0 0,1 62.119255,35.512517" />
<path d="M 62.119255,35.512517 A 1.875,1.0825317547305484 0.0 0,1 62.194255,35.209408" />
<path d="M 109.623855,28.849905 A 1.875,1.0825317547305484 0.0 0,1 110.17303,29.61537" />
<path d="M 110.17303,29.61537 A 1.875,1.0825317547305484 0.0 0,1 110.09803,29.918479" />
<path d="M 110.09803,35.815626 A 1.875,1.0825317547305484 180.0 0,0 110.17303,35.512517" />
<path d="M 110.17303,35.512517 A 1.875,1.0825317547305484 180.0 0,0 110.09803,35.209408" />
<path d="M 79.713239,12.272983 A 1.875,1.0825317547305484 0.0 0,1 82.364889,12.272983" />
<line x1="62.66843" y1="22.113808" x2="79.713239" y2="12.272983" />
<line x1="82.364889" y1="12.272983" x2="83.494492" y2="12.92516" />
<path d="M 62.66843,22.113808 A 1.875,1.0825317547305484 180.0 0,0 62.119255,22.879274" />
<path d="M 83.494492,12.92516 A 3.75,2.165063509461097 180.0 0,0 88.797793,12.92516" />
<line x1="89.927396" y1="12.272983" x2="88.797793" y2="12.92516" />
<path d="M 92.579047,12.272983 A 1.875,1.0825317547305484 180.0 0,0 89.927396,12.272983" />
<line x1="92.579047" y1="12.272983" x2="109.623855" y2="22.113808" />
<path d="M 109.623855,22.113808 A 1.875,1.0825317547305484 0.0 0,1 110.17303,22.879274" />
<path d="M 84.462345,62.577848 A 2.3812499999999996,1.3748153285077964 0.0 0,1 86.657772,62.207282" />
<path d="M 86.657772,62.207282 A 2.3812499999999996,1.3748153285077964 0.0 0,1 88.47178,63.2546" />
<line x1="88.47178" y1="63.2546" x2="88.47178" y2="72.440186" />
<path d="M 88.47178,72.440186 A 2.3812499999999996,1.3748153285077964 0.0 0,1 88.527393,72.735575" />
<path d="M 88.527393,72.735575 A 2.3812500000000014,1.3748153285077973 0.0 1,1 83.764893,72.735575" />
<path d="M 83.764893,72.735575 A 2.3812499999999996,1.3748153285077964 0.0 0,1 86.657772,71.392868" />
<line x1="86.657772" y1="62.207282" x2="86.657772" y2="71.392868" />
<line x1="86.657772" y1="62.207282" x2="88.47178" y2="63.2546" />
<line x1="88.47178" y1="72.440186" x2="86.657772" y2="71.392868" />
<line x1="82.364889" y1="42.095521" x2="82.364889" y2="39.829743" />
<line x1="83.494492" y1="41.443344" x2="83.494492" y2="40.481919" />
<line x1="88.797793" y1="41.443344" x2="88.797793" y2="40.481919" />
<line x1="89.927396" y1="42.095521" x2="89.927396" y2="39.829743" />
<line x1="109.623855" y1="53.467277" x2="109.623855" y2="51.201499" />
<line x1="82.311856" y1="39.800302" x2="82.311856" y2="19.039698" />
<line x1="79.766272" y1="39.800302" x2="79.766272" y2="19.039698" />
<line x1="83.441459" y1="40.451301" x2="83.441459" y2="19.691875" />
<line x1="88.850826" y1="40.451301" x2="88.850826" y2="19.691875" />
<line x1="89.980429" y1="39.800302" x2="89.980429" y2="19.039698" />
<line x1="92.526014" y1="39.800302" x2="92.526014" y2="19.039698" />
<line x1="109.570822" y1="49.639949" x2="109.570822" y2="28.880523" />
<line x1="62.721463" y1="49.639949" x2="62.721463" y2="28.880523" />
<line x1="79.713239" y1="19.00908" x2="79.713239" y2="12.272983" />
<line x1="82.364889" y1="19.00908" x2="82.364889" y2="12.272983" />
<line x1="62.66843" y1="28.849905" x2="62.66843" y2="22.113808" />
<line x1="83.494492" y1="19.661256" x2="83.494492" y2="12.92516" />
<line x1="88.797793" y1="19.661256" x2="88.797793" y2="12.92516" />
<line x1="89.927396" y1="19.00908" x2="89.927396" y2="12.272983" />
<line x1="92.579047" y1="19.00908" x2="92.579047" y2="12.272983" />
<line x1="109.623855" y1="28.849905" x2="109.623855" y2="22.113808" />
<line x1="114.627723" y1="57.181315" x2="114.627723" y2="60.120703" />
<line x1="57.664563" y1="57.181315" x2="57.664563" y2="60.120703" />
<line x1="71.858643" y1="61.100499" x2="71.858643" y2="60.120703" />
<line x1="100.433643" y1="61.100499" x2="100.433643" y2="60.120703" />
<line x1="62.119255" y1="50.436033" x2="62.119255" y2="53.784343" />
<line x1="110.17303" y1="50.436033" x2="110.17303" y2="53.784343" />
<line x1="110.09803" y1="29.61537" x2="110.09803" y2="50.132924" />
<line x1="62.194255" y1="29.61537" x2="62.194255" y2="50.132924" />
<line x1="62.119255" y1="22.879274" x2="62.119255" y2="29.61537" />
<line x1="62.119255" y1="29.61537" x2="62.119255" y2="35.512517" />
<line x1="110.17303" y1="22.879274" x2="110.17303" y2="29.61537" />
<line x1="110.17303" y1="29.61537" x2="110.17303" y2="35.512517" />
<line x1="83.764893" y1="72.735575" x2="83.764893" y2="60.120703" />
<line x1="88.527393" y1="72.735575" x2="88.527393" y2="60.120703" />
<line x1="-114.346143" y1="26.500586" x2="-114.346143" y2="73.700586" />
<path d="M -114.346143,26.500586 A 4.6,4.6 0.0 0,1 -109.746143,21.900586" />
<path d="M -109.746143,78.300586 A 4.6,4.6 0.0 0,1 -114.346143,73.700586" />
<line x1="-109.746143" y1="21.900586" x2="-62.546143" y2="21.900586" />
<line x1="-62.546143" y1="78.300586" x2="-109.746143" y2="78.300586" />
<path d="M -62.546143,21.900586 A 4.6,4.6 0.0 0,1 -57.946143,26.500586" />
<path d="M -57.946143,73.700586 A 4.6,4.6 0.0 0,1 -62.546143,78.300586" />
<line x1="-57.946143" y1="26.500586" x2="-57.946143" y2="73.700586" />
<circle cx="-109.716143" cy="26.530586" r="2.55" />
<circle cx="-62.576143" cy="26.530586" r="2.55" />
<circle cx="-109.716143" cy="73.670586" r="2.55" />
<circle cx="-62.576143" cy="73.670586" r="2.55" />
<circle cx="-86.146143" cy="50.100586" r="19.05" />
<path d="M -84.435879,52.775586 A 3.175,3.175 0.0 0,1 -87.856406,52.775586" />
<path d="M -87.856406,52.775586 A 3.175,3.175 122.59284353031869 1,1 -84.435879,52.775586" />
<line x1="-87.856406" y1="52.775586" x2="-84.435879" y2="52.775586" />
<line x1="-114.346143" y1="-25.050293" x2="-114.346143" y2="-29.850293" />
<line x1="-114.346143" y1="-29.850293" x2="-114.346143" y2="-36.050293" />
<path d="M -114.346143,-25.050293 Q -114.331681,-25.050293 -114.317219,-25.050293 Q -114.274015,-25.050293 -114.230811,-25.050293 Q -114.159408,-25.050293 -114.088006,-25.050293 Q -113.989303,-25.050293 -113.890599,-25.050293 Q -113.765837,-25.050293 -113.641074,-25.050293 Q -113.491821,-25.050293 -113.342567,-25.050293 Q -113.170701,-25.050293 -112.998834,-25.050293 Q -112.806515,-25.050293 -112.614196,-25.050293 Q -112.403843,-25.050293 -112.19349,-25.050293 Q -111.967749,-25.050293 -111.742008,-25.050293 Q -111.503717,-25.050293 -111.265426,-25.050293 Q -111.017583,-25.050293 -110.769739,-25.050293 Q -110.262995,-25.050293 -109.746143,-25.050293" />
<line x1="-109.746143" y1="-25.050293" x2="-62.546143" y2="-25.050293" />
<path d="M -62.546143,-25.050293 Q -62.02929,-25.050293 -61.522546,-25.050293 Q -61.274703,-25.050293 -61.026859,-25.050293 Q -60.788568,-25.050293 -60.550277,-25.050293 Q -60.324536,-25.050293 -60.098795,-25.050293 Q -59.888442,-25.050293 -59.678089,-25.050293 Q -59.48577,-25.050293 -59.293451,-25.050293 Q -59.121585,-25.050293 -58.949718,-25.050293 Q -58.800465,-25.050293 -58.651211,-25.050293 Q -58.526449,-25.050293 -58.401686,-25.050293 Q -58.302983,-25.050293 -58.204279,-25.050293 Q -58.132877,-25.050293 -58.061474,-25.050293 Q -58.01827,-25.050293 -57.975066,-25.050293 Q -57.960604,-25.050293 -57.946143,-25.050293" />
<line x1="-109.746143" y1="-25.050293" x2="-109.746143" y2="-29.850293" />
<path d="M -114.346143,-29.850293 Q -114.331681,-29.850293 -114.317219,-29.850293 Q -114.274015,-29.850293 -114.230811,-29.850293 Q -114.159408,-29.850293 -114.088006,-29.850293 Q -113.989303,-29.850293 -113.890599,-29.850293 Q -113.765837,-29.850293 -113.641074,-29.850293 Q -113.491821,-29.850293 -113.342567,-29.850293 Q -113.170701,-29.850293 -112.998834,-29.850293 Q -112.806515,-29.850293 -112.614196,-29.850293 Q -112.403843,-29.850293 -112.19349,-29.850293 Q -111.967749,-29.850293 -111.742008,-29.850293 Q -111.503717,-29.850293 -111.265426,-29.850293 Q -111.017583,-29.850293 -110.769739,-29.850293 Q -110.262995,-29.850293 -109.746143,-29.850293" />
<line x1="-109.746143" y1="-29.850293" x2="-102.216143" y2="-29.850293" />
<path d="M -114.346143,-36.050293 Q -114.338283,-36.050293 -114.330423,-36.050293 Q -114.306943,-36.050293 -114.283462,-36.050293 Q -114.244657,-36.050293 -114.205851,-36.050293 Q -114.152208,-36.050293 -114.098565,-36.050293 Q -114.030759,-36.050293 -113.962953,-36.050293 Q -113.881837,-36.050293 -113.800721,-36.050293 Q -113.707315,-36.050293 -113.61391,-36.050293 Q -113.509388,-36.050293 -113.404867,-36.050293 Q -113.290545,-36.050293 -113.176223,-36.050293 Q -113.053537,-36.050293 -112.930852,-36.050293 Q -112.801346,-36.050293 -112.67184,-36.050293 Q -112.537143,-36.050293 -112.402445,-36.050293 Q -112.127041,-36.050293 -111.846143,-36.050293" />
<path d="M -57.946143,-36.050293 Q -57.954002,-36.050293 -57.961862,-36.050293 Q -57.985342,-36.050293 -58.008823,-36.050293 Q -58.047629,-36.050293 -58.086434,-36.050293 Q -58.140077,-36.050293 -58.19372,-36.050293 Q -58.261526,-36.050293 -58.329332,-36.050293 Q -58.410448,-36.050293 -58.491564,-36.050293 Q -58.58497,-36.050293 -58.678376,-36.050293 Q -58.782897,-36.050293 -58.887418,-36.050293 Q -59.00174,-36.050293 -59.116062,-36.050293 Q -59.238748,-36.050293 -59.361433,-36.050293 Q -59.490939,-36.050293 -59.620445,-36.050293 Q -59.755143,-36.050293 -59.88984,-36.050293 Q -60.165244,-36.050293 -60.446143,-36.050293" />
<line x1="-60.446143" y1="-36.050293" x2="-62.576143" y2="-36.050293" />
<path d="M -67.576143,-36.050293 Q -67.560423,-36.050293 -67.544704,-36.050293 Q -67.497743,-36.050293 -67.450782,-36.050293 Q -67.373171,-36.050293 -67.295559,-36.050293 Q -67.188273,-36.050293 -67.080987,-36.050293 Q -66.945375,-36.050293 -66.809764,-36.050293 Q -66.647532,-36.050293 -66.4853,-36.050293 Q -66.298488,-36.050293 -66.111676,-36.050293 Q -65.902634,-36.050293 -65.693592,-36.050293 Q -65.464947,-36.050293 -65.236303,-36.050293 Q -64.990932,-36.050293 -64.745561,-36.050293 Q -64.48655,-36.050293 -64.227538,-36.050293 Q -63.958143,-36.050293 -63.688747,-36.050293 Q -63.137939,-36.050293 -62.576143,-36.050293" />
<path d="M -70.076143,-36.050293 Q -69.936187,-36.050293 -69.796231,-36.050293 Q -69.517878,-36.050293 -69.250445,-36.050293 Q -69.120939,-36.050293 -68.991433,-36.050293 Q -68.868748,-36.050293 -68.746062,-36.050293 Q -68.63174,-36.050293 -68.517418,-36.050293 Q -68.412897,-36.050293 -68.308376,-36.050293 Q -68.21497,-36.050293 -68.121564,-36.050293 Q -68.040448,-36.050293 -67.959332,-36.050293 Q -67.891526,-36.050293 -67.82372,-36.050293 Q -67.770077,-36.050293 -67.716434,-36.050293 Q -67.677629,-36.050293 -67.638823,-36.050293 Q -67.615342,-36.050293 -67.591862,-36.050293 Q -67.584002,-36.050293 -67.576143,-36.050293" />
<line x1="-102.216143" y1="-36.050293" x2="-70.076143" y2="-36.050293" />
<path d="M -102.216143,-36.050293 Q -102.356098,-36.050293 -102.496054,-36.050293 Q -102.774407,-36.050293 -103.04184,-36.050293 Q -103.171346,-36.050293 -103.300852,-36.050293 Q -103.423537,-36.050293 -103.546223,-36.050293 Q -103.660545,-36.050293 -103.774867,-36.050293 Q -103.879388,-36.050293 -103.98391,-36.050293 Q -104.077315,-36.050293 -104.170721,-36.050293 Q -104.251837,-36.050293 -104.332953,-36.050293 Q -104.400759,-36.050293 -104.468565,-36.050293 Q -104.522208,-36.050293 -104.575851,-36.050293 Q -104.614657,-36.050293 -104.653462,-36.050293 Q -104.676943,-36.050293 -104.700423,-36.050293 Q -104.708283,-36.050293 -104.716143,-36.050293" />
<path d="M -109.716143,-36.050293 L -109.15632,-36.050293 L -108.603538,-36.050293 L -108.064747,-36.050293 L -107.546724,-36.050293 L -107.055982,-36.050293 L -106.598694,-36.050293 L -106.180609,-36.050293 L -105.806985,-36.050293 L -105.482522,-36.050293 L -105.211298,-36.050293 L -104.996726,-36.050293 L -104.841503,-36.050293 L -104.747582,-36.050293 L -104.716143,-36.050293" />
<line x1="-111.846143" y1="-36.050293" x2="-109.716143" y2="-36.050293" />
<line x1="-102.216143" y1="-29.850293" x2="-102.216143" y2="-36.050293" />
<line x1="-70.076143" y1="-29.850293" x2="-70.076143" y2="-36.050293" />
<line x1="-70.076143" y1="-29.850293" x2="-62.546143" y2="-29.850293" />
<line x1="-62.546143" y1="-25.050293" x2="-62.546143" y2="-29.850293" />
<line x1="-57.946143" y1="-25.050293" x2="-57.946143" y2="-29.850293" />
<path d="M -62.546143,-29.850293 Q -62.02929,-29.850293 -61.522546,-29.850293 Q -61.274703,-29.850293 -61.026859,-29.850293 Q -60.788568,-29.850293 -60.550277,-29.850293 Q -60.324536,-29.850293 -60.098795,-29.850293 Q -59.888442,-29.850293 -59.678089,-29.850293 Q -59.48577,-29.850293 -59.293451,-29.850293 Q -59.121585,-29.850293 -58.949718,-29.850293 Q -58.800465,-29.850293 -58.651211,-29.850293 Q -58.526449,-29.850293 -58.401686,-29.850293 Q -58.302983,-29.850293 -58.204279,-29.850293 Q -58.132877,-29.850293 -58.061474,-29.850293 Q -58.01827,-29.850293 -57.975066,-29.850293 Q -57.960604,-29.850293 -57.946143,-29.850293" />
<line x1="-57.946143" y1="-29.850293" x2="-57.946143" y2="-36.050293" />
<line x1="-67.096143" y1="-25.050293" x2="-67.096143" y2="-23.450293" />
<path d="M -105.196143,-23.450293 L -104.718519,-23.450293 L -103.3096,-23.450293 L -101.040032,-23.450293 L -98.023623,-23.450293 L -94.411628,-23.450293 L -90.385166,-23.450293 L -86.146143,-23.450293 L -81.907119,-23.450293 L -77.880657,-23.450293 L -74.268662,-23.450293 L -71.252253,-23.450293 L -68.982686,-23.450293 L -67.573766,-23.450293 L -67.096143,-23.450293" />
<line x1="-104.716143" y1="-29.850293" x2="-104.716143" y2="-36.050293" />
<line x1="-67.576143" y1="-29.850293" x2="-67.576143" y2="-36.050293" />
<line x1="-114.246143" y1="-36.050293" x2="-114.246143" y2="-70.050293" />
<line x1="-104.616143" y1="-36.050293" x2="-104.616143" y2="-70.050293" />
<line x1="-67.676143" y1="-36.050293" x2="-67.676143" y2="-70.050293" />
<line x1="-58.046143" y1="-36.050293" x2="-58.046143" y2="-70.050293" />
<path d="M -57.946143,-70.050293 Q -57.954002,-70.050293 -57.961862,-70.050293 Q -57.985342,-70.050293 -58.008823,-70.050293 Q -58.047629,-70.050293 -58.086434,-70.050293 Q -58.140077,-70.050293 -58.19372,-70.050293 Q -58.261526,-70.050293 -58.329332,-70.050293 Q -58.410448,-70.050293 -58.491564,-70.050293 Q -58.58497,-70.050293 -58.678376,-70.050293 Q -58.782897,-70.050293 -58.887418,-70.050293 Q -59.00174,-70.050293 -59.116062,-70.050293 Q -59.238748,-70.050293 -59.361433,-70.050293 Q -59.490939,-70.050293 -59.620445,-70.050293 Q -59.755143,-70.050293 -59.88984,-70.050293 Q -60.165244,-70.050293 -60.446143,-70.050293" />
<line x1="-60.446143" y1="-70.050293" x2="-62.576143" y2="-70.050293" />
<path d="M -67.576143,-70.050293 Q -67.560423,-70.050293 -67.544704,-70.050293 Q -67.497743,-70.050293 -67.450782,-70.050293 Q -67.373171,-70.050293 -67.295559,-70.050293 Q -67.188273,-70.050293 -67.080987,-70.050293 Q -66.945375,-70.050293 -66.809764,-70.050293 Q -66.647532,-70.050293 -66.4853,-70.050293 Q -66.298488,-70.050293 -66.111676,-70.050293 Q -65.902634,-70.050293 -65.693592,-70.050293 Q -65.464947,-70.050293 -65.236303,-70.050293 Q -64.990932,-70.050293 -64.745561,-70.050293 Q -64.48655,-70.050293 -64.227538,-70.050293 Q -63.958143,-70.050293 -63.688747,-70.050293 Q -63.137939,-70.050293 -62.576143,-70.050293" />
<path d="M -70.076143,-70.050293 Q -69.936187,-70.050293 -69.796231,-70.050293 Q -69.517878,-70.050293 -69.250445,-70.050293 Q -69.120939,-70.050293 -68.991433,-70.050293 Q -68.868748,-70.050293 -68.746062,-70.050293 Q -68.63174,-70.050293 -68.517418,-70.050293 Q -68.412897,-70.050293 -68.308376,-70.050293 Q -68.21497,-70.050293 -68.121564,-70.050293 Q -68.040448,-70.050293 -67.959332,-70.050293 Q -67.891526,-70.050293 -67.82372,-70.050293 Q -67.770077,-70.050293 -67.716434,-70.050293 Q -67.677629,-70.050293 -67.638823,-70.050293 Q -67.615342,-70.050293 -67.591862,-70.050293 Q -67.584002,-70.050293 -67.576143,-70.050293" />
<line x1="-102.216143" y1="-70.050293" x2="-70.076143" y2="-70.050293" />
<path d="M -102.216143,-70.050293 Q -102.356098,-70.050293 -102.496054,-70.050293 Q -102.774407,-70.050293 -103.04184,-70.050293 Q -103.171346,-70.050293 -103.300852,-70.050293 Q -103.423537,-70.050293 -103.546223,-70.050293 Q -103.660545,-70.050293 -103.774867,-70.050293 Q -103.879388,-70.050293 -103.98391,-70.050293 Q -104.077315,-70.050293 -104.170721,-70.050293 Q -104.251837,-70.050293 -104.332953,-70.050293 Q -104.400759,-70.050293 -104.468565,-70.050293 Q -104.522208,-70.050293 -104.575851,-70.050293 Q -104.614657,-70.050293 -104.653462,-70.050293 Q -104.676943,-70.050293 -104.700423,-70.050293 Q -104.708283,-70.050293 -104.716143,-70.050293" />
<path d="M -109.716143,-70.050293 L -109.15632,-70.050293 L -108.603538,-70.050293 L -108.064747,-70.050293 L -107.546724,-70.050293 L -107.055982,-70.050293 L -106.598694,-70.050293 L -106.180609,-70.050293 L -105.806985,-70.050293 L -105.482522,-70.050293 L -105.211298,-70.050293 L -104.996726,-70.050293 L -104.841503,-70.050293 L -104.747582,-70.050293 L -104.716143,-70.050293" />
<line x1="-111.846143" y1="-70.050293" x2="-109.716143" y2="-70.050293" />
<path d="M -114.346143,-70.050293 Q -114.338283,-70.050293 -114.330423,-70.050293 Q -114.306943,-70.050293 -114.283462,-70.050293 Q -114.244657,-70.050293 -114.205851,-70.050293 Q -114.152208,-70.050293 -114.098565,-70.050293 Q -114.030759,-70.050293 -113.962953,-70.050293 Q -113.881837,-70.050293 -113.800721,-70.050293 Q -113.707315,-70.050293 -113.61391,-70.050293 Q -113.509388,-70.050293 -113.404867,-70.050293 Q -113.290545,-70.050293 -113.176223,-70.050293 Q -113.053537,-70.050293 -112.930852,-70.050293 Q -112.801346,-70.050293 -112.67184,-70.050293 Q -112.537143,-70.050293 -112.402445,-70.050293 Q -112.127041,-70.050293 -111.846143,-70.050293" />
<line x1="-57.946143" y1="-70.050293" x2="-57.946143" y2="-81.050293" />
<path d="M -57.946143,-81.050293 Q -57.954002,-81.050293 -57.961862,-81.050293 Q -57.985342,-81.050293 -58.008823,-81.050293 Q -58.047629,-81.050293 -58.086434,-81.050293 Q -58.140077,-81.050293 -58.19372,-81.050293 Q -58.261526,-81.050293 -58.329332,-81.050293 Q -58.410448,-81.050293 -58.491564,-81.050293 Q -58.58497,-81.050293 -58.678376,-81.050293 Q -58.782897,-81.050293 -58.887418,-81.050293 Q -59.00174,-81.050293 -59.116062,-81.050293 Q -59.238748,-81.050293 -59.361433,-81.050293 Q -59.490939,-81.050293 -59.620445,-81.050293 Q -59.755143,-81.050293 -59.88984,-81.050293 Q -60.165244,-81.050293 -60.446143,-81.050293" />
<line x1="-60.446143" y1="-81.050293" x2="-62.576143" y2="-81.050293" />
<path d="M -67.576143,-81.050293 Q -67.560423,-81.050293 -67.544704,-81.050293 Q -67.497743,-81.050293 -67.450782,-81.050293 Q -67.373171,-81.050293 -67.295559,-81.050293 Q -67.188273,-81.050293 -67.080987,-81.050293 Q -66.945375,-81.050293 -66.809764,-81.050293 Q -66.647532,-81.050293 -66.4853,-81.050293 Q -66.298488,-81.050293 -66.111676,-81.050293 Q -65.902634,-81.050293 -65.693592,-81.050293 Q -65.464947,-81.050293 -65.236303,-81.050293 Q -64.990932,-81.050293 -64.745561,-81.050293 Q -64.48655,-81.050293 -64.227538,-81.050293 Q -63.958143,-81.050293 -63.688747,-81.050293 Q -63.137939,-81.050293 -62.576143,-81.050293" />
<line x1="-67.576143" y1="-70.050293" x2="-67.576143" y2="-81.050293" />
<path d="M -70.076143,-81.050293 Q -69.936187,-81.050293 -69.796231,-81.050293 Q -69.517878,-81.050293 -69.250445,-81.050293 Q -69.120939,-81.050293 -68.991433,-81.050293 Q -68.868748,-81.050293 -68.746062,-81.050293 Q -68.63174,-81.050293 -68.517418,-81.050293 Q -68.412897,-81.050293 -68.308376,-81.050293 Q -68.21497,-81.050293 -68.121564,-81.050293 Q -68.040448,-81.050293 -67.959332,-81.050293 Q -67.891526,-81.050293 -67.82372,-81.050293 Q -67.770077,-81.050293 -67.716434,-81.050293 Q -67.677629,-81.050293 -67.638823,-81.050293 Q -67.615342,-81.050293 -67.591862,-81.050293 Q -67.584002,-81.050293 -67.576143,-81.050293" />
<line x1="-102.216143" y1="-81.050293" x2="-70.076143" y2="-81.050293" />
<line x1="-104.716143" y1="-70.050293" x2="-104.716143" y2="-81.050293" />
<path d="M -102.216143,-81.050293 Q -102.356098,-81.050293 -102.496054,-81.050293 Q -102.774407,-81.050293 -103.04184,-81.050293 Q -103.171346,-81.050293 -103.300852,-81.050293 Q -103.423537,-81.050293 -103.546223,-81.050293 Q -103.660545,-81.050293 -103.774867,-81.050293 Q -103.879388,-81.050293 -103.98391,-81.050293 Q -104.077315,-81.050293 -104.170721,-81.050293 Q -104.251837,-81.050293 -104.332953,-81.050293 Q -104.400759,-81.050293 -104.468565,-81.050293 Q -104.522208,-81.050293 -104.575851,-81.050293 Q -104.614657,-81.050293 -104.653462,-81.050293 Q -104.676943,-81.050293 -104.700423,-81.050293 Q -104.708283,-81.050293 -104.716143,-81.050293" />
<path d="M -109.716143,-81.050293 L -109.15632,-81.050293 L -108.603538,-81.050293 L -108.064747,-81.050293 L -107.546724,-81.050293 L -107.055982,-81.050293 L -106.598694,-81.050293 L -106.180609,-81.050293 L -105.806985,-81.050293 L -105.482522,-81.050293 L -105.211298,-81.050293 L -104.996726,-81.050293 L -104.841503,-81.050293 L -104.747582,-81.050293 L -104.716143,-81.050293" />
<line x1="-111.846143" y1="-81.050293" x2="-109.716143" y2="-81.050293" />
<line x1="-114.346143" y1="-70.050293" x2="-114.346143" y2="-81.050293" />
<path d="M -114.346143,-81.050293 Q -114.338283,-81.050293 -114.330423,-81.050293 Q -114.306943,-81.050293 -114.283462,-81.050293 Q -114.244657,-81.050293 -114.205851,-81.050293 Q -114.152208,-81.050293 -114.098565,-81.050293 Q -114.030759,-81.050293 -113.962953,-81.050293 Q -113.881837,-81.050293 -113.800721,-81.050293 Q -113.707315,-81.050293 -113.61391,-81.050293 Q -113.509388,-81.050293 -113.404867,-81.050293 Q -113.290545,-81.050293 -113.176223,-81.050293 Q -113.053537,-81.050293 -112.930852,-81.050293 Q -112.801346,-81.050293 -112.67184,-81.050293 Q -112.537143,-81.050293 -112.402445,-81.050293 Q -112.127041,-81.050293 -111.846143,-81.050293" />
<line x1="-82.971143" y1="-23.450293" x2="-82.971143" y2="-19.450293" />
<path d="M -89.321143,-4.450293 L -89.241539,-4.450293 L -89.006719,-4.450293 L -88.628458,-4.450293 L -88.125723,-4.450293 L -87.523723,-4.450293 L -86.852647,-4.450293 L -86.146143,-4.450293 L -85.439639,-4.450293 L -84.768562,-4.450293 L -84.166562,-4.450293 L -83.663828,-4.450293 L -83.285566,-4.450293 L -83.050746,-4.450293 L -82.971143,-4.450293" />
<line x1="-111.846143" y1="-29.850293" x2="-111.846143" y2="-36.050293" />
<line x1="-109.716143" y1="-29.850293" x2="-109.716143" y2="-36.050293" />
<line x1="-60.446143" y1="-29.850293" x2="-60.446143" y2="-36.050293" />
<line x1="-62.576143" y1="-29.850293" x2="-62.576143" y2="-36.050293" />
<line x1="-111.846143" y1="-36.050293" x2="-111.846143" y2="-70.050293" />
<line x1="-109.716143" y1="-36.050293" x2="-109.716143" y2="-70.050293" />
<line x1="-102.216143" y1="-36.050293" x2="-102.216143" y2="-70.050293" />
<line x1="-70.076143" y1="-36.050293" x2="-70.076143" y2="-70.050293" />
<line x1="-62.576143" y1="-36.050293" x2="-62.576143" y2="-70.050293" />
<line x1="-60.446143" y1="-36.050293" x2="-60.446143" y2="-70.050293" />
<line x1="-60.446143" y1="-70.050293" x2="-60.446143" y2="-81.050293" />
<line x1="-62.576143" y1="-70.050293" x2="-62.576143" y2="-81.050293" />
<line x1="-70.076143" y1="-70.050293" x2="-70.076143" y2="-81.050293" />
<line x1="-102.216143" y1="-70.050293" x2="-102.216143" y2="-81.050293" />
<line x1="-109.716143" y1="-70.050293" x2="-109.716143" y2="-81.050293" />
<line x1="-111.846143" y1="-70.050293" x2="-111.846143" y2="-81.050293" />
<line x1="-105.196143" y1="-23.450293" x2="-105.196143" y2="-25.050293" />
<line x1="-89.321143" y1="-4.450293" x2="-89.321143" y2="-23.450293" />
<line x1="-82.971143" y1="-4.450293" x2="-82.971143" y2="-19.450293" />
<path d="M -28.2,30.060352 Q -28.185538,30.060352 -28.171076,30.060352 Q -28.127872,30.060352 -28.084668,30.060352 Q -28.013266,30.060352 -27.941863,30.060352 Q -27.84316,30.060352 -27.744457,30.060352 Q -27.619694,30.060352 -27.494931,30.060352 Q -27.345678,30.060352 -27.196425,30.060352 Q -27.024558,30.060352 -26.852691,30.060352 Q -26.660372,30.060352 -26.468053,30.060352 Q -26.2577,30.060352 -26.047348,30.060352 Q -25.821606,30.060352 -25.595865,30.060352 Q -25.357574,30.060352 -25.119284,30.060352 Q -24.87144,30.060352 -24.623596,30.060352 Q -24.116853,30.060352 -23.6,30.060352" />
<path d="M 23.6,30.060352 L 24.115037,30.060352 L 24.623596,30.060352 L 25.119284,30.060352 L 25.595865,30.060352 L 26.047348,30.060352 L 26.468053,30.060352 L 26.852691,30.060352 L 27.196425,30.060352 L 27.494931,30.060352 L 27.744457,30.060352 L 27.941863,30.060352 L 28.084668,30.060352 L 28.171076,30.060352 L 28.2,30.060352" />
<line x1="-23.6" y1="30.060352" x2="23.6" y2="30.060352" />
<path d="M 16.07,19.060352 Q 16.209956,19.060352 16.349911,19.060352 Q 16.628264,19.060352 16.895698,19.060352 Q 17.025204,19.060352 17.154709,19.060352 Q 17.277395,19.060352 17.40008,19.060352 Q 17.514402,19.060352 17.628725,19.060352 Q 17.733246,19.060352 17.837767,19.060352 Q 17.931173,19.060352 18.024579,19.060352 Q 18.105695,19.060352 18.18681,19.060352 Q 18.254616,19.060352 18.322422,19.060352 Q 18.376065,19.060352 18.429708,19.060352 Q 18.468514,19.060352 18.50732,19.060352 Q 18.5308,19.060352 18.554281,19.060352 Q 18.56214,19.060352 18.57,19.060352" />
<line x1="-16.07" y1="19.060352" x2="16.07" y2="19.060352" />
<path d="M -16.07,19.060352 Q -16.209956,19.060352 -16.349911,19.060352 Q -16.628264,19.060352 -16.895698,19.060352 Q -17.025204,19.060352 -17.154709,19.060352 Q -17.277395,19.060352 -17.40008,19.060352 Q -17.514402,19.060352 -17.628725,19.060352 Q -17.733246,19.060352 -17.837767,19.060352 Q -17.931173,19.060352 -18.024579,19.060352 Q -18.105695,19.060352 -18.18681,19.060352 Q -18.254616,19.060352 -18.322422,19.060352 Q -18.376065,19.060352 -18.429708,19.060352 Q -18.468514,19.060352 -18.50732,19.060352 Q -18.5308,19.060352 -18.554281,19.060352 Q -18.56214,19.060352 -18.57,19.060352" />
<path d="M 18.57,19.060352 Q 18.585719,19.060352 18.601439,19.060352 Q 18.6484,19.060352 18.69536,19.060352 Q 18.772972,19.060352 18.850583,19.060352 Q 18.95787,19.060352 19.065156,19.060352 Q 19.200767,19.060352 19.336379,19.060352 Q 19.498611,19.060352 19.660843,19.060352 Q 19.847654,19.060352 20.034466,19.060352 Q 20.243509,19.060352 20.452551,19.060352 Q 20.681195,19.060352 20.90984,19.060352 Q 21.15521,19.060352 21.400581,19.060352 Q 21.659593,19.060352 21.918605,19.060352 Q 22.188,19.060352 22.457395,19.060352 Q 23.008203,19.060352 23.57,19.060352" />
<line x1="25.7" y1="19.060352" x2="23.57" y2="19.060352" />
<path d="M -23.57,19.060352 L -23.010178,19.060352 L -22.457395,19.060352 L -21.918605,19.060352 L -21.400581,19.060352 L -20.90984,19.060352 L -20.452551,19.060352 L -20.034466,19.060352 L -19.660843,19.060352 L -19.336379,19.060352 L -19.065156,19.060352 L -18.850583,19.060352 L -18.69536,19.060352 L -18.601439,19.060352 L -18.57,19.060352" />
<path d="M 28.2,19.060352 Q 28.19214,19.060352 28.184281,19.060352 Q 28.1608,19.060352 28.13732,19.060352 Q 28.098514,19.060352 28.059708,19.060352 Q 28.006065,19.060352 27.952422,19.060352 Q 27.884616,19.060352 27.81681,19.060352 Q 27.735695,19.060352 27.654579,19.060352 Q 27.561173,19.060352 27.467767,19.060352 Q 27.363246,19.060352 27.258725,19.060352 Q 27.144402,19.060352 27.03008,19.060352 Q 26.907395,19.060352 26.784709,19.060352 Q 26.655204,19.060352 26.525698,19.060352 Q 26.391,19.060352 26.256302,19.060352 Q 25.980898,19.060352 25.7,19.060352" />
<line x1="-25.7" y1="19.060352" x2="-23.57" y2="19.060352" />
<path d="M -28.2,19.060352 Q -28.19214,19.060352 -28.184281,19.060352 Q -28.1608,19.060352 -28.13732,19.060352 Q -28.098514,19.060352 -28.059708,19.060352 Q -28.006065,19.060352 -27.952422,19.060352 Q -27.884616,19.060352 -27.81681,19.060352 Q -27.735695,19.060352 -27.654579,19.060352 Q -27.561173,19.060352 -27.467767,19.060352 Q -27.363246,19.060352 -27.258725,19.060352 Q -27.144402,19.060352 -27.03008,19.060352 Q -26.907395,19.060352 -26.784709,19.060352 Q -26.655204,19.060352 -26.525698,19.060352 Q -26.391,19.060352 -26.256302,19.060352 Q -25.980898,19.060352 -25.7,19.060352" />
<line x1="-28.2" y1="25.260352" x2="-28.2" y2="19.060352" />
<line x1="-28.2" y1="30.060352" x2="-28.2" y2="25.260352" />
<line x1="28.2" y1="30.060352" x2="28.2" y2="25.260352" />
<line x1="28.2" y1="25.260352" x2="28.2" y2="19.060352" />
<line x1="-23.6" y1="30.060352" x2="-23.6" y2="25.260352" />
<path d="M -28.2,25.260352 Q -28.185538,25.260352 -28.171076,25.260352 Q -28.127872,25.260352 -28.084668,25.260352 Q -28.013266,25.260352 -27.941863,25.260352 Q -27.84316,25.260352 -27.744457,25.260352 Q -27.619694,25.260352 -27.494931,25.260352 Q -27.345678,25.260352 -27.196425,25.260352 Q -27.024558,25.260352 -26.852691,25.260352 Q -26.660372,25.260352 -26.468053,25.260352 Q -26.2577,25.260352 -26.047348,25.260352 Q -25.821606,25.260352 -25.595865,25.260352 Q -25.357574,25.260352 -25.119284,25.260352 Q -24.87144,25.260352 -24.623596,25.260352 Q -24.116853,25.260352 -23.6,25.260352" />
<line x1="23.6" y1="30.060352" x2="23.6" y2="25.260352" />
<path d="M 23.6,25.260352 L 24.115037,25.260352 L 24.623596,25.260352 L 25.119284,25.260352 L 25.595865,25.260352 L 26.047348,25.260352 L 26.468053,25.260352 L 26.852691,25.260352 L 27.196425,25.260352 L 27.494931,25.260352 L 27.744457,25.260352 L 27.941863,25.260352 L 28.084668,25.260352 L 28.171076,25.260352 L 28.2,25.260352" />
<line x1="-23.6" y1="25.260352" x2="-16.07" y2="25.260352" />
<line x1="-16.07" y1="25.260352" x2="-16.07" y2="19.060352" />
<line x1="16.07" y1="25.260352" x2="16.07" y2="19.060352" />
<line x1="16.07" y1="25.260352" x2="23.6" y2="25.260352" />
<path d="M 0.0,31.660352 L 2.132923,31.660352 L 4.239024,31.660352 L 6.291816,31.660352 L 8.265485,31.660352 L 10.135211,31.660352 L 11.877481,31.660352 L 13.470384,31.660352 L 14.89389,31.660352 L 16.130096,31.660352 L 17.163457,31.660352 L 17.980977,31.660352 L 18.572377,31.660352 L 18.930218,31.660352 L 19.05,31.660352" />
<path d="M -19.05,31.660352 L -18.930218,31.660352 L -18.572377,31.660352 L -17.980977,31.660352 L -17.163457,31.660352 L -16.130096,31.660352 L -14.89389,31.660352 L -13.470384,31.660352 L -11.877481,31.660352 L -10.135211,31.660352 L -8.265485,31.660352 L -6.291816,31.660352 L -4.239024,31.660352 L -2.132923,31.660352 L -0.0,31.660352" />
<line x1="18.57" y1="25.260352" x2="18.57" y2="19.060352" />
<line x1="-18.57" y1="25.260352" x2="-18.57" y2="19.060352" />
<line x1="18.47" y1="19.060352" x2="18.47" y2="-14.939648" />
<line x1="28.1" y1="19.060352" x2="28.1" y2="-14.939648" />
<line x1="-28.1" y1="19.060352" x2="-28.1" y2="-14.939648" />
<line x1="-18.47" y1="19.060352" x2="-18.47" y2="-14.939648" />
<path d="M 16.07,-14.939648 Q 16.209956,-14.939648 16.349911,-14.939648 Q 16.628264,-14.939648 16.895698,-14.939648 Q 17.025204,-14.939648 17.154709,-14.939648 Q 17.277395,-14.939648 17.40008,-14.939648 Q 17.514402,-14.939648 17.628725,-14.939648 Q 17.733246,-14.939648 17.837767,-14.939648 Q 17.931173,-14.939648 18.024579,-14.939648 Q 18.105695,-14.939648 18.18681,-14.939648 Q 18.254616,-14.939648 18.322422,-14.939648 Q 18.376065,-14.939648 18.429708,-14.939648 Q 18.468514,-14.939648 18.50732,-14.939648 Q 18.5308,-14.939648 18.554281,-14.939648 Q 18.56214,-14.939648 18.57,-14.939648" />
<line x1="-16.07" y1="-14.939648" x2="16.07" y2="-14.939648" />
<path d="M -16.07,-14.939648 Q -16.209956,-14.939648 -16.349911,-14.939648 Q -16.628264,-14.939648 -16.895698,-14.939648 Q -17.025204,-14.939648 -17.154709,-14.939648 Q -17.277395,-14.939648 -17.40008,-14.939648 Q -17.514402,-14.939648 -17.628725,-14.939648 Q -17.733246,-14.939648 -17.837767,-14.939648 Q -17.931173,-14.939648 -18.024579,-14.939648 Q -18.105695,-14.939648 -18.18681,-14.939648 Q -18.254616,-14.939648 -18.322422,-14.939648 Q -18.376065,-14.939648 -18.429708,-14.939648 Q -18.468514,-14.939648 -18.50732,-14.939648 Q -18.5308,-14.939648 -18.554281,-14.939648 Q -18.56214,-14.939648 -18.57,-14.939648" />
<path d="M 18.57,-14.939648 Q 18.585719,-14.939648 18.601439,-14.939648 Q 18.6484,-14.939648 18.69536,-14.939648 Q 18.772972,-14.939648 18.850583,-14.939648 Q 18.95787,-14.939648 19.065156,-14.939648 Q 19.200767,-14.939648 19.336379,-14.939648 Q 19.498611,-14.939648 19.660843,-14.939648 Q 19.847654,-14.939648 20.034466,-14.939648 Q 20.243509,-14.939648 20.452551,-14.939648 Q 20.681195,-14.939648 20.90984,-14.939648 Q 21.15521,-14.939648 21.400581,-14.939648 Q 21.659593,-14.939648 21.918605,-14.939648 Q 22.188,-14.939648 22.457395,-14.939648 Q 23.008203,-14.939648 23.57,-14.939648" />
<line x1="25.7" y1="-14.939648" x2="23.57" y2="-14.939648" />
<path d="M -23.57,-14.939648 L -23.010178,-14.939648 L -22.457395,-14.939648 L -21.918605,-14.939648 L -21.400581,-14.939648 L -20.90984,-14.939648 L -20.452551,-14.939648 L -20.034466,-14.939648 L -19.660843,-14.939648 L -19.336379,-14.939648 L -19.065156,-14.939648 L -18.850583,-14.939648 L -18.69536,-14.939648 L -18.601439,-14.939648 L -18.57,-14.939648" />
<path d="M 28.2,-14.939648 Q 28.19214,-14.939648 28.184281,-14.939648 Q 28.1608,-14.939648 28.13732,-14.939648 Q 28.098514,-14.939648 28.059708,-14.939648 Q 28.006065,-14.939648 27.952422,-14.939648 Q 27.884616,-14.939648 27.81681,-14.939648 Q 27.735695,-14.939648 27.654579,-14.939648 Q 27.561173,-14.939648 27.467767,-14.939648 Q 27.363246,-14.939648 27.258725,-14.939648 Q 27.144402,-14.939648 27.03008,-14.939648 Q 26.907395,-14.939648 26.784709,-14.939648 Q 26.655204,-14.939648 26.525698,-14.939648 Q 26.391,-14.939648 26.256302,-14.939648 Q 25.980898,-14.939648 25.7,-14.939648" />
<line x1="-25.7" y1="-14.939648" x2="-23.57" y2="-14.939648" />
<path d="M -28.2,-14.939648 Q -28.19214,-14.939648 -28.184281,-14.939648 Q -28.1608,-14.939648 -28.13732,-14.939648 Q -28.098514,-14.939648 -28.059708,-14.939648 Q -28.006065,-14.939648 -27.952422,-14.939648 Q -27.884616,-14.939648 -27.81681,-14.939648 Q -27.735695,-14.939648 -27.654579,-14.939648 Q -27.561173,-14.939648 -27.467767,-14.939648 Q -27.363246,-14.939648 -27.258725,-14.939648 Q -27.144402,-14.939648 -27.03008,-14.939648 Q -26.907395,-14.939648 -26.784709,-14.939648 Q -26.655204,-14.939648 -26.525698,-14.939648 Q -26.391,-14.939648 -26.256302,-14.939648 Q -25.980898,-14.939648 -25.7,-14.939648" />
<line x1="18.57" y1="-14.939648" x2="18.57" y2="-25.939648" />
<path d="M 16.07,-25.939648 Q 16.209956,-25.939648 16.349911,-25.939648 Q 16.628264,-25.939648 16.895698,-25.939648 Q 17.025204,-25.939648 17.154709,-25.939648 Q 17.277395,-25.939648 17.40008,-25.939648 Q 17.514402,-25.939648 17.628725,-25.939648 Q 17.733246,-25.939648 17.837767,-25.939648 Q 17.931173,-25.939648 18.024579,-25.939648 Q 18.105695,-25.939648 18.18681,-25.939648 Q 18.254616,-25.939648 18.322422,-25.939648 Q 18.376065,-25.939648 18.429708,-25.939648 Q 18.468514,-25.939648 18.50732,-25.939648 Q 18.5308,-25.939648 18.554281,-25.939648 Q 18.56214,-25.939648 18.57,-25.939648" />
<line x1="-16.07" y1="-25.939648" x2="16.07" y2="-25.939648" />
<line x1="-18.57" y1="-14.939648" x2="-18.57" y2="-25.939648" />
<path d="M -16.07,-25.939648 Q -16.209956,-25.939648 -16.349911,-25.939648 Q -16.628264,-25.939648 -16.895698,-25.939648 Q -17.025204,-25.939648 -17.154709,-25.939648 Q -17.277395,-25.939648 -17.40008,-25.939648 Q -17.514402,-25.939648 -17.628725,-25.939648 Q -17.733246,-25.939648 -17.837767,-25.939648 Q -17.931173,-25.939648 -18.024579,-25.939648 Q -18.105695,-25.939648 -18.18681,-25.939648 Q -18.254616,-25.939648 -18.322422,-25.939648 Q -18.376065,-25.939648 -18.429708,-25.939648 Q -18.468514,-25.939648 -18.50732,-25.939648 Q -18.5308,-25.939648 -18.554281,-25.939648 Q -18.56214,-25.939648 -18.57,-25.939648" />
<path d="M 18.57,-25.939648 Q 18.585719,-25.939648 18.601439,-25.939648 Q 18.6484,-25.939648 18.69536,-25.939648 Q 18.772972,-25.939648 18.850583,-25.939648 Q 18.95787,-25.939648 19.065156,-25.939648 Q 19.200767,-25.939648 19.336379,-25.939648 Q 19.498611,-25.939648 19.660843,-25.939648 Q 19.847654,-25.939648 20.034466,-25.939648 Q 20.243509,-25.939648 20.452551,-25.939648 Q 20.681195,-25.939648 20.90984,-25.939648 Q 21.15521,-25.939648 21.400581,-25.939648 Q 21.659593,-25.939648 21.918605,-25.939648 Q 22.188,-25.939648 22.457395,-25.939648 Q 23.008203,-25.939648 23.57,-25.939648" />
<line x1="25.7" y1="-25.939648" x2="23.57" y2="-25.939648" />
<path d="M -23.57,-25.939648 L -23.010178,-25.939648 L -22.457395,-25.939648 L -21.918605,-25.939648 L -21.400581,-25.939648 L -20.90984,-25.939648 L -20.452551,-25.939648 L -20.034466,-25.939648 L -19.660843,-25.939648 L -19.336379,-25.939648 L -19.065156,-25.939648 L -18.850583,-25.939648 L -18.69536,-25.939648 L -18.601439,-25.939648 L -18.57,-25.939648" />
<line x1="28.2" y1="-14.939648" x2="28.2" y2="-25.939648" />
<path d="M 28.2,-25.939648 Q 28.19214,-25.939648 28.184281,-25.939648 Q 28.1608,-25.939648 28.13732,-25.939648 Q 28.098514,-25.939648 28.059708,-25.939648 Q 28.006065,-25.939648 27.952422,-25.939648 Q 27.884616,-25.939648 27.81681,-25.939648 Q 27.735695,-25.939648 27.654579,-25.939648 Q 27.561173,-25.939648 27.467767,-25.939648 Q 27.363246,-25.939648 27.258725,-25.939648 Q 27.144402,-25.939648 27.03008,-25.939648 Q 26.907395,-25.939648 26.784709,-25.939648 Q 26.655204,-25.939648 26.525698,-25.939648 Q 26.391,-25.939648 26.256302,-25.939648 Q 25.980898,-25.939648 25.7,-25.939648" />
<line x1="-25.7" y1="-25.939648" x2="-23.57" y2="-25.939648" />
<line x1="-28.2" y1="-14.939648" x2="-28.2" y2="-25.939648" />
<path d="M -28.2,-25.939648 Q -28.19214,-25.939648 -28.184281,-25.939648 Q -28.1608,-25.939648 -28.13732,-25.939648 Q -28.098514,-25.939648 -28.059708,-25.939648 Q -28.006065,-25.939648 -27.952422,-25.939648 Q -27.884616,-25.939648 -27.81681,-25.939648 Q -27.735695,-25.939648 -27.654579,-25.939648 Q -27.561173,-25.939648 -27.467767,-25.939648 Q -27.363246,-25.939648 -27.258725,-25.939648 Q -27.144402,-25.939648 -27.03008,-25.939648 Q -26.907395,-25.939648 -26.784709,-25.939648 Q -26.655204,-25.939648 -26.525698,-25.939648 Q -26.391,-25.939648 -26.256302,-25.939648 Q -25.980898,-25.939648 -25.7,-25.939648" />
<path d="M 0.0,35.660352 C 0.530549,35.660352 1.058689,35.660352 1.524884,35.660352 C 1.58996,35.660352 1.655037,35.660352 1.720114,35.660352 C 1.782255,35.660352 1.844397,35.660352 1.906538,35.660352 C 1.965426,35.660352 2.024313,35.660352 2.083201,35.660352 C 2.138534,35.660352 2.193866,35.660352 2.249199,35.660352 C 2.300693,35.660352 2.352187,35.660352 2.403681,35.660352 C 2.451074,35.660352 2.498466,35.660352 2.545858,35.660352 C 2.588905,35.660352 2.631953,35.660352 2.675,35.660352" />
<path d="M 2.675,35.660352 C 2.999597,35.660352 3.175154,35.660352 3.175,35.660352" />
<line x1="2.675" y1="35.660352" x2="2.675" y2="50.660352" />
<path d="M -3.175,50.660352 L -3.12154,50.660352 L -2.962961,50.660352 L -2.704603,50.660352 L -2.355167,50.660352 L -1.926419,50.660352 L -1.432798,50.660352 L -0.890926,50.660352 L -0.319053,50.660352 L 0.263565,50.660352 L 0.837307,50.660352 L 1.382852,50.660352 L 1.881829,50.660352 L 2.317435,50.660352 L 2.675,50.660352" />
<line x1="2.675" y1="35.660352" x2="2.675" y2="50.660352" />
<line x1="23.57" y1="25.260352" x2="23.57" y2="19.060352" />
<line x1="25.7" y1="25.260352" x2="25.7" y2="19.060352" />
<line x1="-23.57" y1="25.260352" x2="-23.57" y2="19.060352" />
<line x1="-25.7" y1="25.260352" x2="-25.7" y2="19.060352" />
<line x1="16.07" y1="19.060352" x2="16.07" y2="-14.939648" />
<line x1="23.57" y1="19.060352" x2="23.57" y2="-14.939648" />
<line x1="25.7" y1="19.060352" x2="25.7" y2="-14.939648" />
<line x1="-25.7" y1="19.060352" x2="-25.7" y2="-14.939648" />
<line x1="-23.57" y1="19.060352" x2="-23.57" y2="-14.939648" />
<line x1="-16.07" y1="19.060352" x2="-16.07" y2="-14.939648" />
<line x1="16.07" y1="-14.939648" x2="16.07" y2="-25.939648" />
<line x1="-16.07" y1="-14.939648" x2="-16.07" y2="-25.939648" />
<line x1="23.57" y1="-14.939648" x2="23.57" y2="-25.939648" />
<line x1="25.7" y1="-14.939648" x2="25.7" y2="-25.939648" />
<line x1="-23.57" y1="-14.939648" x2="-23.57" y2="-25.939648" />
<line x1="-25.7" y1="-14.939648" x2="-25.7" y2="-25.939648" />
<line x1="-19.05" y1="31.660352" x2="-19.05" y2="30.060352" />
<line x1="19.05" y1="31.660352" x2="19.05" y2="30.060352" />
<line x1="-3.175" y1="50.660352" x2="-3.175" y2="31.660352" />
<line x1="3.175" y1="35.660352" x2="3.175" y2="31.660352" />
<path d="M 133.75,89.25 L -133.75,89.25 L -133.75,-89.25 L 133.75,-89.25 L 133.75,89.25 M -133.25,88.75 L 133.25,88.75 L 133.25,-88.75 L -133.25,-88.75 L -133.25,88.75" />
<path d="M -89.25,99.0 L -89.25,89.0 L -88.75,89.0 L -88.75,99.0 L -89.25,99.0" />
<path d="M -44.75,99.0 L -44.75,89.0 L -44.25,89.0 L -44.25,99.0 L -44.75,99.0" />
<path d="M -0.25,99.0 L -0.25,89.0 L 0.25,89.0 L 0.25,99.0 L -0.25,99.0" />
<path d="M 44.25,99.0 L 44.25,89.0 L 44.75,89.0 L 44.75,99.0 L 44.25,99.0" />
<path d="M 88.75,99.0 L 88.75,89.0 L 89.25,89.0 L 89.25,99.0 L 88.75,99.0" />
<path d="M 143.5,44.75 L 133.5,44.75 L 133.5,44.25 L 143.5,44.25 L 143.5,44.75" />
<path d="M 143.5,0.25 L 133.5,0.25 L 133.5,-0.25 L 143.5,-0.25 L 143.5,0.25" />
<path d="M 143.5,-44.25 L 133.5,-44.25 L 133.5,-44.75 L 143.5,-44.75 L 143.5,-44.25" />
<path d="M 89.25,-99.0 L 89.25,-89.0 L 88.75,-89.0 L 88.75,-99.0 L 89.25,-99.0" />
<path d="M 44.75,-99.0 L 44.75,-89.0 L 44.25,-89.0 L 44.25,-99.0 L 44.75,-99.0" />
<path d="M 0.25,-99.0 L 0.25,-89.0 L -0.25,-89.0 L -0.25,-99.0 L 0.25,-99.0" />
<path d="M -44.25,-99.0 L -44.25,-89.0 L -44.75,-89.0 L -44.75,-99.0 L -44.25,-99.0" />
<path d="M -88.75,-99.0 L -88.75,-89.0 L -89.25,-89.0 L -89.25,-99.0 L -88.75,-99.0" />
<path d="M -143.5,-44.75 L -133.5,-44.75 L -133.5,-44.25 L -143.5,-44.25 L -143.5,-44.75" />
<path d="M -143.5,-0.25 L -133.5,-0.25 L -133.5,0.25 L -143.5,0.25 L -143.5,-0.25" />
<path d="M -143.5,44.25 L -133.5,44.25 L -133.5,44.75 L -143.5,44.75 L -143.5,44.25" />
<path d="M -140.055176,-70.053223 L -140.055176,-62.865723 L -140.621582,-62.865723 Q -140.851074,-63.32959 -141.402832,-63.822754 Q -141.95459,-64.315918 -142.691895,-64.662598 L -142.691895,-65.512207 Q -142.281738,-65.36084 -141.766602,-65.058105 Q -141.251465,-64.755371 -140.934082,-64.452637 L -140.934082,-70.053223 L -140.055176,-70.053223" />
<path d="M 141.944824,-70.053223 L 141.944824,-62.865723 L 141.378418,-62.865723 Q 141.148926,-63.32959 140.597168,-63.822754 Q 140.04541,-64.315918 139.308105,-64.662598 L 139.308105,-65.512207 Q 139.718262,-65.36084 140.233398,-65.058105 Q 140.748535,-64.755371 141.065918,-64.452637 L 141.065918,-70.053223 L 141.944824,-70.053223" />
<path d="M -138.746582,-24.708496 L -142.257324,-24.708496 Q -142.11084,-24.469238 -141.88623,-24.232422 Q -141.661621,-23.995605 -140.870605,-23.331543 Q -139.92334,-22.530762 -139.515625,-22.071777 Q -139.10791,-21.612793 -138.932129,-21.197754 Q -138.756348,-20.782715 -138.756348,-20.353027 Q -138.756348,-19.508301 -139.356934,-18.937012 Q -139.95752,-18.365723 -140.987793,-18.365723 Q -142.008301,-18.365723 -142.61377,-18.895508 Q -143.219238,-19.425293 -143.312012,-20.436035 L -142.408691,-20.528809 Q -142.403809,-19.85498 -142.022949,-19.474121 Q -141.64209,-19.093262 -141.007324,-19.093262 Q -140.406738,-19.093262 -140.033203,-19.452148 Q -139.659668,-19.811035 -139.659668,-20.333496 Q -139.659668,-20.831543 -140.069824,-21.390625 Q -140.47998,-21.949707 -141.646973,-22.906738 Q -142.398926,-23.521973 -142.796875,-23.990723 Q -143.194824,-24.459473 -143.375488,-24.942871 Q -143.487793,-25.23584 -143.478027,-25.553223 L -138.746582,-25.553223 L -138.746582,-24.708496" />
<path d="M 143.253418,-24.708496 L 139.742676,-24.708496 Q 139.88916,-24.469238 140.11377,-24.232422 Q 140.338379,-23.995605 141.129395,-23.331543 Q 142.07666,-22.530762 142.484375,-22.071777 Q 142.89209,-21.612793 143.067871,-21.197754 Q 143.243652,-20.782715 143.243652,-20.353027 Q 143.243652,-19.508301 142.643066,-18.937012 Q 142.04248,-18.365723 141.012207,-18.365723 Q 139.991699,-18.365723 139.38623,-18.895508 Q 138.780762,-19.425293 138.687988,-20.436035 L 139.591309,-20.528809 Q 139.596191,-19.85498 139.977051,-19.474121 Q 140.35791,-19.093262 140.992676,-19.093262 Q 141.593262,-19.093262 141.966797,-19.452148 Q 142.340332,-19.811035 142.340332,-20.333496 Q 142.340332,-20.831543 141.930176,-21.390625 Q 141.52002,-21.949707 140.353027,-22.906738 Q 139.601074,-23.521973 139.203125,-23.990723 Q 138.805176,-24.459473 138.624512,-24.942871 Q 138.512207,-25.23584 138.521973,-25.553223 L 143.253418,-25.553223 L 143.253418,-24.708496" />
<path d="M -142.481934,20.953613 L -143.36084,20.836426 Q -143.272949,19.942871 -142.650391,19.381348 Q -142.027832,18.819824 -141.085449,18.819824 Q -140.040527,18.819824 -139.356934,19.47168 Q -138.67334,20.123535 -138.67334,21.061035 Q -138.67334,21.754395 -139.024902,22.21582 Q -139.376465,22.677246 -140.01123,22.82373 Q -139.522949,23.04834 -139.273926,23.429199 Q -139.024902,23.810059 -139.024902,24.273926 Q -139.024902,24.762207 -139.286133,25.196777 Q -139.547363,25.631348 -140.040527,25.882812 Q -140.533691,26.134277 -141.119629,26.134277 Q -141.969238,26.134277 -142.540527,25.648438 Q -143.111816,25.162598 -143.272949,24.278809 L -142.394043,24.122559 Q -142.296387,24.76709 -141.95459,25.089355 Q -141.612793,25.411621 -141.100098,25.411621 Q -140.58252,25.411621 -140.255371,25.094238 Q -139.928223,24.776855 -139.928223,24.293457 Q -139.928223,23.683105 -140.377441,23.390137 Q -140.82666,23.097168 -141.388184,23.097168 Q -141.441895,23.097168 -141.529785,23.106934 L -141.627441,22.335449 Q -141.256348,22.433105 -141.007324,22.433105 Q -140.396973,22.433105 -140.001465,22.040039 Q -139.605957,21.646973 -139.605957,21.041504 Q -139.605957,20.406738 -140.033203,19.977051 Q -140.460449,19.547363 -141.080566,19.547363 Q -141.603027,19.547363 -141.966797,19.876953 Q -142.330566,20.206543 -142.481934,20.953613" />
<path d="M 139.518066,20.953613 L 138.63916,20.836426 Q 138.727051,19.942871 139.349609,19.381348 Q 139.972168,18.819824 140.914551,18.819824 Q 141.959473,18.819824 142.643066,19.47168 Q 143.32666,20.123535 143.32666,21.061035 Q 143.32666,21.754395 142.975098,22.21582 Q 142.623535,22.677246 141.98877,22.82373 Q 142.477051,23.04834 142.726074,23.429199 Q 142.975098,23.810059 142.975098,24.273926 Q 142.975098,24.762207 142.713867,25.196777 Q 142.452637,25.631348 141.959473,25.882812 Q 141.466309,26.134277 140.880371,26.134277 Q 140.030762,26.134277 139.459473,25.648438 Q 138.888184,25.162598 138.727051,24.278809 L 139.605957,24.122559 Q 139.703613,24.76709 140.04541,25.089355 Q 140.387207,25.411621 140.899902,25.411621 Q 141.41748,25.411621 141.744629,25.094238 Q 142.071777,24.776855 142.071777,24.293457 Q 142.071777,23.683105 141.622559,23.390137 Q 141.17334,23.097168 140.611816,23.097168 Q 140.558105,23.097168 140.470215,23.106934 L 140.372559,22.335449 Q 140.743652,22.433105 140.992676,22.433105 Q 141.603027,22.433105 141.998535,22.040039 Q 142.394043,21.646973 142.394043,21.041504 Q 142.394043,20.406738 141.966797,19.977051 Q 141.539551,19.547363 140.919434,19.547363 Q 140.396973,19.547363 140.033203,19.876953 Q 139.669434,20.206543 139.518066,20.953613" />
<path d="M -140.54834,63.446777 L -139.669434,63.446777 L -139.669434,65.160645 L -138.702637,65.160645 L -138.702637,65.966309 L -139.669434,65.966309 L -139.669434,70.60498 L -140.387207,70.60498 L -143.653809,65.966309 L -143.653809,65.160645 L -140.54834,65.160645 L -140.54834,63.446777 M -140.54834,65.966309 L -142.789551,65.966309 L -140.54834,69.193848 L -140.54834,65.966309" />
<path d="M 141.45166,63.446777 L 142.330566,63.446777 L 142.330566,65.160645 L 143.297363,65.160645 L 143.297363,65.966309 L 142.330566,65.966309 L 142.330566,70.60498 L 141.612793,70.60498 L 138.346191,65.966309 L 138.346191,65.160645 L 141.45166,65.160645 L 141.45166,63.446777 M 141.45166,65.966309 L 139.210449,65.966309 L 141.45166,69.193848 L 141.45166,65.966309" />
<path d="M -113.483887,-99.803223 L -112.536621,-99.803223 L -112.536621,-96.55127 L -109.177246,-96.55127 L -109.177246,-95.706543 L -112.536621,-95.706543 L -112.536621,-93.489746 L -108.654785,-93.489746 L -108.654785,-92.64502 L -113.483887,-92.64502 L -113.483887,-99.803223" />
<path d="M -113.483887,93.196777 L -112.536621,93.196777 L -112.536621,96.44873 L -109.177246,96.44873 L -109.177246,97.293457 L -112.536621,97.293457 L -112.536621,99.510254 L -108.654785,99.510254 L -108.654785,100.35498 L -113.483887,100.35498 L -113.483887,93.196777" />
<path d="M -69.293945,-99.803223 L -63.952148,-99.803223 L -63.952148,-98.958496 L -68.34668,-98.958496 L -68.34668,-96.521973 L -64.386719,-96.521973 L -64.386719,-95.682129 L -68.34668,-95.682129 L -68.34668,-93.489746 L -64.118164,-93.489746 L -64.118164,-92.64502 L -69.293945,-92.64502 L -69.293945,-99.803223" />
<path d="M -69.293945,93.196777 L -63.952148,93.196777 L -63.952148,94.041504 L -68.34668,94.041504 L -68.34668,96.478027 L -64.386719,96.478027 L -64.386719,97.317871 L -68.34668,97.317871 L -68.34668,99.510254 L -64.118164,99.510254 L -64.118164,100.35498 L -69.293945,100.35498 L -69.293945,93.196777" />
<path d="M -25.089355,-99.803223 L -22.506348,-99.803223 C -21.640208,-99.803986 -20.974213,-99.637258 -20.501953,-99.322266 C -20.265951,-99.164388 -20.048665,-98.947917 -19.850098,-98.672852 C -19.65153,-98.397786 -19.48877,-98.050293 -19.361816,-97.630371 C -19.234863,-97.210449 -19.171387,-96.728678 -19.171387,-96.185059 C -19.171387,-95.547038 -19.264974,-94.979818 -19.452148,-94.483398 C -19.639323,-93.986979 -19.921712,-93.579264 -20.299316,-93.260254 Q -20.733887,-92.88916 -21.349121,-92.747559 Q -21.788574,-92.64502 -22.623535,-92.64502 L -25.089355,-92.64502 L -25.089355,-99.803223 M -24.14209,-98.958496 L -24.14209,-93.489746 L -22.638184,-93.489746 Q -21.793457,-93.489746 -21.412598,-93.63623 Q -20.885254,-93.841309 -20.516602,-94.444336 Q -20.147949,-95.047363 -20.147949,-96.17041 Q -20.147949,-96.980957 -20.335938,-97.549805 Q -20.523926,-98.118652 -20.86084,-98.455566 Q -21.100098,-98.694824 -21.50293,-98.82666 Q -21.905762,-98.958496 -22.61377,-98.958496 L -24.14209,-98.958496" />
<path d="M -25.089355,93.196777 L -22.506348,93.196777 C -21.640208,93.196014 -20.974213,93.362742 -20.501953,93.677734 C -20.265951,93.835612 -20.048665,94.052083 -19.850098,94.327148 C -19.65153,94.602214 -19.48877,94.949707 -19.361816,95.369629 C -19.234863,95.789551 -19.171387,96.271322 -19.171387,96.814941 C -19.171387,97.452962 -19.264974,98.020182 -19.452148,98.516602 C -19.639323,99.013021 -19.921712,99.420736 -20.299316,99.739746 Q -20.733887,100.11084 -21.349121,100.252441 Q -21.788574,100.35498 -22.623535,100.35498 L -25.089355,100.35498 L -25.089355,93.196777 M -24.14209,94.041504 L -24.14209,99.510254 L -22.638184,99.510254 Q -21.793457,99.510254 -21.412598,99.36377 Q -20.885254,99.158691 -20.516602,98.555664 Q -20.147949,97.952637 -20.147949,96.82959 Q -20.147949,96.019043 -20.335938,95.450195 Q -20.523926,94.881348 -20.86084,94.544434 Q -21.100098,94.305176 -21.50293,94.17334 Q -21.905762,94.041504 -22.61377,94.041504 L -24.14209,94.041504" />
<path d="M 25.465332,-97.532715 L 24.518066,-97.293457 Q 24.322754,-98.196777 23.770996,-98.655762 Q 23.219238,-99.114746 22.42334,-99.114746 Q 21.769043,-99.114746 21.20752,-98.777832 Q 20.645996,-98.440918 20.379883,-97.759766 Q 20.11377,-97.078613 20.11377,-96.165527 Q 20.11377,-95.45752 20.338379,-94.791016 Q 20.562988,-94.124512 21.117188,-93.729004 Q 21.671387,-93.333496 22.496582,-93.333496 Q 23.214355,-93.333496 23.687988,-93.689941 Q 24.161621,-94.046387 24.410645,-94.827637 L 25.343262,-94.60791 Q 25.055176,-93.616699 24.322754,-93.069824 Q 23.590332,-92.522949 22.516113,-92.522949 Q 21.568848,-92.522949 20.780273,-92.955078 Q 19.991699,-93.387207 19.564453,-94.219727 Q 19.137207,-95.052246 19.137207,-96.17041 Q 19.137207,-97.195801 19.515625,-98.089355 Q 19.894043,-98.98291 20.619141,-99.454102 Q 21.344238,-99.925293 22.501465,-99.925293 Q 23.619629,-99.925293 24.393555,-99.3125 Q 25.16748,-98.699707 25.465332,-97.532715" />
<path d="M 25.465332,95.467285 L 24.518066,95.706543 Q 24.322754,94.803223 23.770996,94.344238 Q 23.219238,93.885254 22.42334,93.885254 Q 21.769043,93.885254 21.20752,94.222168 Q 20.645996,94.559082 20.379883,95.240234 Q 20.11377,95.921387 20.11377,96.834473 Q 20.11377,97.54248 20.338379,98.208984 Q 20.562988,98.875488 21.117188,99.270996 Q 21.671387,99.666504 22.496582,99.666504 Q 23.214355,99.666504 23.687988,99.310059 Q 24.161621,98.953613 24.410645,98.172363 L 25.343262,98.39209 Q 25.055176,99.383301 24.322754,99.930176 Q 23.590332,100.477051 22.516113,100.477051 Q 21.568848,100.477051 20.780273,100.044922 Q 19.991699,99.612793 19.564453,98.780273 Q 19.137207,97.947754 19.137207,96.82959 Q 19.137207,95.804199 19.515625,94.910645 Q 19.894043,94.01709 20.619141,93.545898 Q 21.344238,93.074707 22.501465,93.074707 Q 23.619629,93.074707 24.393555,93.6875 Q 25.16748,94.300293 25.465332,95.467285" />
<path d="M 64.147461,-99.803223 L 66.876953,-99.803223 Q 67.560547,-99.803223 68.031738,-99.683594 Q 68.50293,-99.563965 68.81543,-99.32959 Q 69.12793,-99.095215 69.340332,-98.663086 Q 69.552734,-98.230957 69.552734,-97.728027 Q 69.552734,-97.103027 69.203613,-96.644043 Q 68.854492,-96.185059 68.205078,-95.994629 Q 68.708008,-95.745605 68.957031,-95.340332 Q 69.206055,-94.935059 69.206055,-94.476074 Q 69.206055,-93.98291 68.925293,-93.53125 Q 68.644531,-93.07959 68.148926,-92.862305 Q 67.65332,-92.64502 66.833008,-92.64502 L 64.147461,-92.64502 L 64.147461,-99.803223 M 65.094727,-95.652832 L 65.094727,-93.489746 L 66.525391,-93.489746 C 67.039714,-93.489746 67.402669,-93.523112 67.614258,-93.589844 C 67.825846,-93.656576 67.988607,-93.780273 68.102539,-93.960938 C 68.216471,-94.141602 68.273438,-94.350749 68.273438,-94.588379 C 68.273946,-95.088155 68.027161,-95.428121 67.545898,-95.569824 Q 67.272461,-95.652832 66.642578,-95.652832 L 65.094727,-95.652832 M 65.094727,-98.958496 L 65.094727,-96.497559 L 66.75,-96.497559 Q 67.433594,-96.497559 67.797363,-96.617188 Q 68.161133,-96.736816 68.366211,-97.032227 Q 68.571289,-97.327637 68.571289,-97.728027 Q 68.571289,-98.069824 68.429688,-98.331055 Q 68.288086,-98.592285 68.068359,-98.729004 Q 67.848633,-98.865723 67.521484,-98.924316 Q 67.335938,-98.958496 66.876953,-98.958496 L 65.094727,-98.958496" />
<path d="M 64.147461,93.196777 L 66.876953,93.196777 Q 67.560547,93.196777 68.031738,93.316406 Q 68.50293,93.436035 68.81543,93.67041 Q 69.12793,93.904785 69.340332,94.336914 Q 69.552734,94.769043 69.552734,95.271973 Q 69.552734,95.896973 69.203613,96.355957 Q 68.854492,96.814941 68.205078,97.005371 Q 68.708008,97.254395 68.957031,97.659668 Q 69.206055,98.064941 69.206055,98.523926 Q 69.206055,99.01709 68.925293,99.46875 Q 68.644531,99.92041 68.148926,100.137695 Q 67.65332,100.35498 66.833008,100.35498 L 64.147461,100.35498 L 64.147461,93.196777 M 65.094727,97.347168 L 65.094727,99.510254 L 66.525391,99.510254 C 67.039714,99.510254 67.402669,99.476888 67.614258,99.410156 C 67.825846,99.343424 67.988607,99.219727 68.102539,99.039062 C 68.216471,98.858398 68.273438,98.649251 68.273438,98.411621 C 68.273946,97.911845 68.027161,97.571879 67.545898,97.430176 Q 67.272461,97.347168 66.642578,97.347168 L 65.094727,97.347168 M 65.094727,94.041504 L 65.094727,96.502441 L 66.75,96.502441 Q 67.433594,96.502441 67.797363,96.382812 Q 68.161133,96.263184 68.366211,95.967773 Q 68.571289,95.672363 68.571289,95.271973 Q 68.571289,94.930176 68.429688,94.668945 Q 68.288086,94.407715 68.068359,94.270996 Q 67.848633,94.134277 67.521484,94.075684 Q 67.335938,94.041504 66.876953,94.041504 L 65.094727,94.041504" />
<path d="M 107.900391,-99.803223 L 108.90625,-99.803223 L 109.692383,-97.635254 L 112.685547,-97.635254 L 113.520508,-99.803223 L 114.599609,-99.803223 L 111.669922,-92.64502 L 110.649414,-92.64502 L 107.900391,-99.803223 M 109.96582,-96.86377 L 110.751953,-94.76416 Q 111.000977,-94.085449 111.137695,-93.396973 Q 111.303711,-93.978027 111.645508,-94.881348 L 112.392578,-96.86377 L 109.96582,-96.86377" />
<path d="M 107.900391,93.196777 L 108.90625,93.196777 L 109.692383,95.364746 L 112.685547,95.364746 L 113.520508,93.196777 L 114.599609,93.196777 L 111.669922,100.35498 L 110.649414,100.35498 L 107.900391,93.196777 M 109.96582,96.13623 L 110.751953,98.23584 Q 111.000977,98.914551 111.137695,99.603027 Q 111.303711,99.021973 111.645508,98.118652 L 112.392578,96.13623 L 109.96582,96.13623" />
<path d="M -0.25,-44.25 L -0.25,-89.0 L 0.25,-89.0 L 0.25,-74.416667 L 44.25,-74.416667 L 44.25,-89.0 L 44.75,-89.0 L 44.75,-74.416667 L 88.75,-74.416667 L 88.75,-89.0 L 89.25,-89.0 L 89.25,-74.416667 L 133.5,-74.416667 L 133.5,-73.916667 L 44.75,-73.916667 L 44.75,-59.583333 L 133.5,-59.583333 L 133.5,-59.083333 L 44.75,-59.083333 L 44.75,-44.75 L 133.5,-44.75 L 133.5,-44.25 L -0.25,-44.25 M 44.25,-44.75 L 44.25,-59.083333 L 0.25,-59.083333 L 0.25,-44.75 L 44.25,-44.75 M 0.25,-73.916667 L 0.25,-59.583333 L 44.25,-59.583333 L 44.25,-73.916667 L 0.25,-73.916667" />
<path d="M 2.0,-49.401367 L 2.861003,-49.401367 C 3.14936,-49.400553 3.37207,-49.347114 3.529134,-49.241048 C 3.684689,-49.134355 3.826325,-48.958472 3.90918,-48.677083 C 3.951497,-48.537109 3.972656,-48.376519 3.972656,-48.195312 C 3.972656,-47.982639 3.941461,-47.793566 3.879069,-47.628092 C 3.816678,-47.462619 3.722548,-47.326714 3.59668,-47.220378 Q 3.451823,-47.09668 3.246745,-47.049479 Q 3.100261,-47.015299 2.82194,-47.015299 L 2.0,-47.015299 L 2.0,-49.401367 M 2.315755,-49.119792 L 2.315755,-47.296875 L 2.817057,-47.296875 Q 3.098633,-47.296875 3.225586,-47.345703 C 3.342774,-47.391276 3.442329,-47.481066 3.524251,-47.615072 C 3.606174,-47.749078 3.647136,-47.940864 3.647136,-48.19043 C 3.648492,-48.551012 3.557888,-48.80207 3.409505,-48.952148 C 3.356337,-49.005317 3.284994,-49.046549 3.195475,-49.075846 C 3.105957,-49.105143 2.98253,-49.119792 2.825195,-49.119792 L 2.315755,-49.119792" />
<path d="M 4.413737,-49.401367 L 6.194336,-49.401367 L 6.194336,-49.119792 L 4.729492,-49.119792 L 4.729492,-48.307617 L 6.049479,-48.307617 L 6.049479,-48.027669 L 4.729492,-48.027669 L 4.729492,-47.296875 L 6.138997,-47.296875 L 6.138997,-47.015299 L 4.413737,-47.015299 L 4.413737,-49.401367" />
<path d="M 6.820964,-48.608724 L 6.523112,-48.634766 C 6.527452,-48.794271 6.571126,-48.937229 6.654134,-49.063639 C 6.737142,-49.19005 6.851617,-49.284722 6.997559,-49.347656 C 7.143501,-49.41059 7.324436,-49.442057 7.540365,-49.442057 C 7.710721,-49.442057 7.863987,-49.410862 8.000163,-49.34847 C 8.136339,-49.286079 8.240777,-49.19873 8.313477,-49.086426 C 8.386176,-48.974121 8.422526,-48.854492 8.422526,-48.727539 C 8.421509,-48.472141 8.29442,-48.272217 8.015625,-48.144857 Q 7.872396,-48.079753 7.487468,-47.992676 Q 7.102539,-47.905599 7.011393,-47.822591 C 6.949544,-47.767253 6.91862,-47.696723 6.91862,-47.611003 C 6.91862,-47.512261 6.962294,-47.427897 7.049642,-47.35791 C 7.13699,-47.287923 7.27615,-47.25293 7.467122,-47.25293 C 7.835741,-47.252421 8.01376,-47.409146 8.048177,-47.710286 L 8.350912,-47.6875 C 8.345486,-47.547526 8.306424,-47.422201 8.233724,-47.311523 C 8.161024,-47.200846 8.057129,-47.117025 7.922038,-47.060059 C 7.786947,-47.003092 7.630968,-46.974609 7.454102,-46.974609 C 7.293511,-46.974609 7.14757,-47.001736 7.016276,-47.05599 C 6.884983,-47.110243 6.785156,-47.189724 6.716797,-47.294434 C 6.648438,-47.399143 6.614258,-47.511719 6.614258,-47.632161 C 6.614597,-47.850159 6.724596,-48.033196 6.9528,-48.151367 Q 7.084636,-48.221354 7.413412,-48.300293 Q 7.742188,-48.379232 7.838216,-48.416667 C 8.039904,-48.492791 8.11613,-48.603672 8.118164,-48.753581 C 8.117825,-48.898776 8.029528,-49.035902 7.844727,-49.105143 C 7.752496,-49.140951 7.646159,-49.158854 7.525716,-49.158854 C 7.390083,-49.158854 7.268012,-49.135254 7.159505,-49.088053 C 7.050998,-49.040853 6.970974,-48.979004 6.919434,-48.902507 C 6.867893,-48.826009 6.83507,-48.728082 6.820964,-48.608724" />
<path d="M 8.907552,-49.401367 L 9.223307,-49.401367 L 9.223307,-47.015299 L 8.907552,-47.015299 L 8.907552,-49.401367" />
<path d="M 10.896484,-48.465495 L 11.597982,-48.465495 L 11.597982,-48.909831 Q 11.49707,-48.999349 11.301758,-49.078288 Q 11.106445,-49.157227 10.901367,-49.157227 Q 10.665365,-49.157227 10.455404,-49.05306 Q 10.245443,-48.948893 10.13558,-48.734049 Q 10.025716,-48.519206 10.025716,-48.200195 Q 10.025716,-47.941406 10.116862,-47.720052 C 10.152669,-47.634332 10.202854,-47.555664 10.267415,-47.484049 C 10.396284,-47.343364 10.60811,-47.242248 10.896484,-47.244792 C 11.016927,-47.244792 11.126519,-47.265679 11.225261,-47.307454 C 11.324002,-47.34923 11.399957,-47.404839 11.453125,-47.474284 C 11.506294,-47.543728 11.550781,-47.639214 11.586589,-47.760742 L 11.871419,-47.682617 Q 11.80957,-47.441732 11.690755,-47.291992 Q 11.57194,-47.142253 11.362793,-47.058431 Q 11.153646,-46.974609 10.894857,-46.974609 Q 10.538412,-46.974609 10.264974,-47.121094 Q 9.991537,-47.267578 9.845866,-47.569499 Q 9.700195,-47.871419 9.700195,-48.219727 Q 9.700195,-48.571289 9.84668,-48.85612 Q 9.993164,-49.140951 10.280436,-49.291504 Q 10.567708,-49.442057 10.919271,-49.442057 Q 11.440918,-49.441243 11.907227,-49.069336 L 11.907227,-48.183919 L 10.896484,-48.185547 L 10.896484,-48.465495" />
<path d="M 12.369466,-49.401367 L 12.672201,-49.401367 L 12.672201,-47.526367 L 13.925456,-49.401367 L 14.249349,-49.401367 L 14.249349,-47.015299 L 13.946615,-47.015299 L 13.946615,-48.888672 L 12.693359,-47.015299 L 12.369466,-47.015299 L 12.369466,-49.401367" />
<path d="M 14.786458,-49.401367 L 16.567057,-49.401367 L 16.567057,-49.119792 L 15.102214,-49.119792 L 15.102214,-48.307617 L 16.422201,-48.307617 L 16.422201,-48.027669 L 15.102214,-48.027669 L 15.102214,-47.296875 L 16.511719,-47.296875 L 16.511719,-47.015299 L 14.786458,-47.015299 L 14.786458,-49.401367" />
<path d="M 17.003255,-49.401367 L 17.864258,-49.401367 C 18.152615,-49.400553 18.375326,-49.347114 18.532389,-49.241048 C 18.687944,-49.134355 18.82958,-48.958472 18.912435,-48.677083 C 18.954753,-48.537109 18.975912,-48.376519 18.975912,-48.195313 C 18.975912,-47.982639 18.944716,-47.793566 18.882324,-47.628092 C 18.819933,-47.462619 18.725803,-47.326714 18.599935,-47.220378 Q 18.455078,-47.09668 18.25,-47.049479 Q 18.103516,-47.015299 17.825195,-47.015299 L 17.003255,-47.015299 L 17.003255,-49.401367 M 17.319011,-49.119792 L 17.319011,-47.296875 L 17.820313,-47.296875 Q 18.101888,-47.296875 18.228841,-47.345703 C 18.346029,-47.391276 18.445584,-47.481066 18.527507,-47.615072 C 18.609429,-47.749078 18.650391,-47.940864 18.650391,-48.19043 C 18.651747,-48.551012 18.561144,-48.80207 18.412761,-48.952148 C 18.359592,-49.005317 18.288249,-49.046549 18.198731,-49.075846 C 18.109212,-49.105143 17.985786,-49.119792 17.828451,-49.119792 L 17.319011,-49.119792" />
<path d="M 20.323568,-49.401367 L 21.233399,-49.401367 C 21.539083,-49.401537 21.738803,-49.347487 21.879557,-49.24349 C 21.949002,-49.191406 22.007324,-49.11735 22.054525,-49.021322 C 22.101725,-48.925293 22.125326,-48.821398 22.125326,-48.709635 C 22.125326,-48.570747 22.086534,-48.450304 22.008952,-48.348307 C 21.931369,-48.246311 21.820421,-48.174154 21.676107,-48.131836 Q 21.84375,-48.048828 21.926758,-47.913737 Q 22.009766,-47.778646 22.009766,-47.625651 Q 22.009766,-47.461263 21.916178,-47.31071 Q 21.822591,-47.160156 21.657389,-47.087728 Q 21.492188,-47.015299 21.21875,-47.015299 L 20.323568,-47.015299 L 20.323568,-49.401367 M 20.639323,-48.017904 L 20.639323,-47.296875 L 21.116211,-47.296875 Q 21.373372,-47.296875 21.479167,-47.330241 Q 21.584961,-47.363607 21.641927,-47.453939 Q 21.698893,-47.544271 21.698893,-47.663086 Q 21.69808,-47.916178 21.45638,-47.990234 Q 21.365234,-48.017904 21.155274,-48.017904 L 20.639323,-48.017904 M 20.639323,-49.119792 L 20.639323,-48.299479 L 21.191081,-48.299479 C 21.342991,-48.299479 21.459364,-48.312771 21.540202,-48.339355 C 21.700267,-48.390065 21.799788,-48.534143 21.798177,-48.709635 C 21.800381,-48.860019 21.725986,-48.984056 21.630534,-49.043294 C 21.581706,-49.073676 21.520942,-49.095378 21.448242,-49.108398 Q 21.386393,-49.119792 21.233399,-49.119792 L 20.639323,-49.119792" />
<path d="M 23.232096,-49.401367 L 23.547852,-49.401367 L 23.547852,-48.390625 L 24.5,-47.015299 L 24.132162,-47.015299 L 23.669922,-47.716797 Q 23.516927,-47.951172 23.409505,-48.138346 Q 23.297201,-47.936523 23.166992,-47.734701 L 22.696615,-47.015299 L 22.3125,-47.015299 L 23.232096,-48.390625 L 23.232096,-49.401367" />
<path d="M 24.643229,-48.00651 L 24.976888,-48.00651 L 24.976888,-47.672852 L 24.643229,-47.672852 L 24.643229,-48.00651" />
<path d="M 24.643229,-49.401367 L 24.976888,-49.401367 L 24.976888,-49.067708 L 24.643229,-49.067708 L 24.643229,-49.401367" />
<path d="M 2.407715,-57.390137 L 2.407715,-57.06543 C 2.581869,-57.320964 2.82194,-57.44873 3.12793,-57.44873 C 3.435547,-57.44873 3.699219,-57.327474 3.918945,-57.084961 C 4.138672,-56.842448 4.248535,-56.499023 4.248535,-56.054688 C 4.248535,-55.867513 4.222494,-55.691732 4.17041,-55.527344 C 4.06459,-55.199204 3.889267,-54.96315 3.602783,-54.835205 C 3.460368,-54.770915 3.309408,-54.73877 3.149902,-54.73877 C 2.861817,-54.73877 2.625,-54.855143 2.439453,-55.087891 L 2.439453,-53.811035 L 2.0,-53.811035 L 2.0,-57.390137 L 2.407715,-57.390137 M 2.529785,-56.748047 Q 2.402832,-56.540527 2.402832,-56.074219 Q 2.402832,-55.600586 2.612793,-55.350342 Q 2.822754,-55.100098 3.11084,-55.100098 Q 3.396484,-55.100098 3.5979,-55.341797 Q 3.799317,-55.583496 3.799317,-56.091309 Q 3.799317,-56.586914 3.589356,-56.837158 Q 3.379395,-57.087402 3.091309,-57.087402 Q 2.737305,-57.087402 2.529785,-56.748047" />
<path d="M 6.482422,-57.390137 L 6.875488,-57.390137 L 6.875488,-54.797363 L 6.436035,-54.797363 L 6.436035,-56.186523 Q 6.436035,-56.518555 6.364014,-56.693115 Q 6.291992,-56.867676 6.118652,-56.968994 Q 5.945313,-57.070312 5.747559,-57.070312 Q 5.549805,-57.070312 5.415527,-56.971436 Q 5.28125,-56.872559 5.239746,-56.699219 Q 5.212891,-56.57959 5.212891,-56.235352 L 5.212891,-54.797363 L 4.773438,-54.797363 L 4.773438,-56.403809 Q 4.773438,-56.68457 4.800293,-56.813965 Q 4.839356,-57.006836 4.935791,-57.139893 Q 5.032227,-57.272949 5.231201,-57.36084 Q 5.430176,-57.44873 5.659668,-57.44873 Q 6.179688,-57.44873 6.482422,-57.009277 L 6.482422,-57.390137" />
<path d="M 8.665039,-57.390137 L 9.104492,-57.390137 L 9.104492,-53.811035 L 8.665039,-53.811035 L 8.665039,-57.390137" />
<path d="M 11.467774,-57.390137 L 11.875488,-57.390137 L 11.875488,-53.811035 L 11.438477,-53.811035 L 11.438477,-55.095215 Q 11.323731,-54.936523 11.140625,-54.837646 Q 10.95752,-54.73877 10.723145,-54.73877 Q 10.40332,-54.73877 10.144531,-54.907227 Q 9.885742,-55.075684 9.756348,-55.391846 Q 9.626953,-55.708008 9.626953,-56.096191 Q 9.626953,-56.494141 9.769775,-56.800537 Q 9.912598,-57.106934 10.172608,-57.277832 Q 10.432617,-57.44873 10.742676,-57.44873 Q 11.221192,-57.44873 11.467774,-57.062988 L 11.467774,-57.390137 M 10.078613,-56.096191 Q 10.078613,-55.581055 10.275147,-55.341797 Q 10.47168,-55.102539 10.764649,-55.102539 Q 11.064942,-55.102539 11.27002,-55.351562 Q 11.475098,-55.600586 11.475098,-56.132812 Q 11.475098,-56.616211 11.273682,-56.851807 Q 11.072266,-57.087402 10.78418,-57.087402 Q 10.498535,-57.087402 10.288574,-56.84082 Q 10.078613,-56.594238 10.078613,-56.096191" />
<path d="M 14.099609,-57.390137 L 14.099609,-53.796387 L 13.816406,-53.796387 Q 13.70166,-54.02832 13.425781,-54.274902 Q 13.149902,-54.521484 12.78125,-54.694824 L 12.78125,-55.119629 Q 12.986328,-55.043945 13.243897,-54.892578 Q 13.501465,-54.741211 13.660156,-54.589844 L 13.660156,-57.390137 L 14.099609,-57.390137" />
<path d="M 17.534668,-56.967773 L 15.779297,-56.967773 Q 15.852539,-56.848145 15.964844,-56.729736 Q 16.077149,-56.611328 16.472656,-56.279297 Q 16.946289,-55.878906 17.150147,-55.649414 Q 17.354004,-55.419922 17.441895,-55.212402 Q 17.529785,-55.004883 17.529785,-54.790039 Q 17.529785,-54.367676 17.229492,-54.082031 Q 16.929199,-53.796387 16.414063,-53.796387 Q 15.903809,-53.796387 15.601074,-54.061279 Q 15.29834,-54.326172 15.251953,-54.831543 L 15.703613,-54.87793 Q 15.706055,-54.541016 15.896484,-54.350586 Q 16.086914,-54.160156 16.404297,-54.160156 Q 16.70459,-54.160156 16.891358,-54.3396 Q 17.078125,-54.519043 17.078125,-54.780273 Q 17.078125,-55.029297 16.873047,-55.308838 Q 16.667969,-55.588379 16.084473,-56.066895 Q 15.708496,-56.374512 15.509522,-56.608887 Q 15.310547,-56.843262 15.220215,-57.084961 Q 15.164063,-57.231445 15.168945,-57.390137 L 17.534668,-57.390137 L 17.534668,-56.967773" />
<path d="M 18.447754,-56.386719 L 18.008301,-56.445312 Q 18.052246,-56.89209 18.363525,-57.172852 Q 18.674805,-57.453613 19.145996,-57.453613 Q 19.668457,-57.453613 20.010254,-57.127686 Q 20.352051,-56.801758 20.352051,-56.333008 Q 20.352051,-55.986328 20.17627,-55.755615 Q 20.000488,-55.524902 19.683106,-55.45166 Q 19.927246,-55.339355 20.051758,-55.148926 Q 20.17627,-54.958496 20.17627,-54.726562 Q 20.17627,-54.482422 20.045654,-54.265137 Q 19.915039,-54.047852 19.668457,-53.922119 Q 19.421875,-53.796387 19.128906,-53.796387 Q 18.704102,-53.796387 18.418457,-54.039307 Q 18.132813,-54.282227 18.052246,-54.724121 L 18.491699,-54.802246 Q 18.540527,-54.47998 18.711426,-54.318848 Q 18.882324,-54.157715 19.138672,-54.157715 Q 19.397461,-54.157715 19.561035,-54.316406 Q 19.724609,-54.475098 19.724609,-54.716797 Q 19.724609,-55.021973 19.5,-55.168457 Q 19.275391,-55.314941 18.994629,-55.314941 Q 18.967774,-55.314941 18.923828,-55.310059 L 18.875,-55.695801 Q 19.060547,-55.646973 19.185059,-55.646973 Q 19.490234,-55.646973 19.687988,-55.843506 Q 19.885742,-56.040039 19.885742,-56.342773 Q 19.885742,-56.660156 19.672119,-56.875 Q 19.458496,-57.089844 19.148438,-57.089844 Q 18.887207,-57.089844 18.705322,-56.925049 Q 18.523438,-56.760254 18.447754,-56.386719" />
<path d="M 22.59082,-57.390137 L 22.998535,-57.390137 L 22.998535,-53.811035 L 22.561524,-53.811035 L 22.561524,-55.095215 Q 22.446777,-54.936523 22.263672,-54.837646 Q 22.080567,-54.73877 21.846192,-54.73877 Q 21.526367,-54.73877 21.267578,-54.907227 Q 21.008789,-55.075684 20.879395,-55.391846 Q 20.75,-55.708008 20.75,-56.096191 Q 20.75,-56.494141 20.892822,-56.800537 Q 21.035645,-57.106934 21.295654,-57.277832 Q 21.555664,-57.44873 21.865723,-57.44873 Q 22.344238,-57.44873 22.59082,-57.062988 L 22.59082,-57.390137 M 21.20166,-56.096191 Q 21.20166,-55.581055 21.398193,-55.341797 Q 21.594727,-55.102539 21.887695,-55.102539 Q 22.187988,-55.102539 22.393067,-55.351562 Q 22.598145,-55.600586 22.598145,-56.132812 Q 22.598145,-56.616211 22.396729,-56.851807 Q 22.195313,-57.087402 21.907227,-57.087402 Q 21.621582,-57.087402 21.411621,-56.84082 Q 21.20166,-56.594238 21.20166,-56.096191" />
<path d="M 7.566406,-57.390137 L 8.005859,-57.390137 L 8.005859,-54.797363 L 7.566406,-54.797363 L 7.566406,-57.390137" />
<path d="M 7.566406,-54.316406 L 8.005859,-54.316406 L 8.005859,-53.811035 L 7.566406,-53.811035 L 7.566406,-54.316406" />
<path d="M 2.0,-64.234701 L 2.861003,-64.234701 C 3.14936,-64.233887 3.37207,-64.180447 3.529134,-64.074382 C 3.684689,-63.967689 3.826325,-63.791806 3.90918,-63.510417 C 3.951497,-63.370443 3.972656,-63.209852 3.972656,-63.028646 C 3.972656,-62.815972 3.941461,-62.626899 3.879069,-62.461426 C 3.816678,-62.295953 3.722548,-62.160048 3.59668,-62.053711 Q 3.451823,-61.930013 3.246745,-61.882812 Q 3.100261,-61.848633 2.82194,-61.848633 L 2.0,-61.848633 L 2.0,-64.234701 M 2.315755,-63.953125 L 2.315755,-62.130208 L 2.817057,-62.130208 Q 3.098633,-62.130208 3.225586,-62.179036 C 3.342774,-62.224609 3.442329,-62.314399 3.524251,-62.448405 C 3.606174,-62.582411 3.647136,-62.774197 3.647136,-63.023763 C 3.648492,-63.384345 3.557888,-63.635403 3.409505,-63.785482 C 3.356337,-63.83865 3.284994,-63.879883 3.195475,-63.90918 C 3.105957,-63.938477 2.98253,-63.953125 2.825195,-63.953125 L 2.315755,-63.953125" />
<path d="M 4.145182,-64.234701 L 4.480469,-64.234701 L 4.742513,-63.512044 L 5.740234,-63.512044 L 6.018555,-64.234701 L 6.378255,-64.234701 L 5.401693,-61.848633 L 5.061524,-61.848633 L 4.145182,-64.234701 M 4.833659,-63.254883 L 5.095703,-62.555013 Q 5.178711,-62.328776 5.224284,-62.099284 Q 5.279622,-62.292969 5.393555,-62.594076 L 5.642578,-63.254883 L 4.833659,-63.254883" />
<path d="M 6.990234,-64.234701 L 7.30599,-64.234701 L 7.30599,-62.130208 L 8.095378,-62.130208 L 8.095378,-61.848633 L 6.204102,-61.848633 L 6.204102,-62.130208 L 6.990234,-62.130208 L 6.990234,-64.234701" />
<path d="M 8.425781,-64.234701 L 10.20638,-64.234701 L 10.20638,-63.953125 L 8.741537,-63.953125 L 8.741537,-63.140951 L 10.061524,-63.140951 L 10.061524,-62.861003 L 8.741537,-62.861003 L 8.741537,-62.130208 L 10.151042,-62.130208 L 10.151042,-61.848633 L 8.425781,-61.848633 L 8.425781,-64.234701" />
<path d="M 10.686524,-64.234701 L 11.020182,-64.234701 L 11.020182,-63.901042 L 10.686524,-63.901042 L 10.686524,-64.234701" />
<path d="M 10.686524,-62.839844 L 11.020182,-62.839844 L 11.020182,-62.506185 L 10.686524,-62.506185 L 10.686524,-62.839844" />
<path d="M 4.366113,-71.801107 L 2.610742,-71.801107 Q 2.683984,-71.681478 2.796289,-71.56307 Q 2.908594,-71.444661 3.304102,-71.11263 Q 3.777734,-70.71224 3.981592,-70.482747 Q 4.185449,-70.253255 4.27334,-70.045736 Q 4.361231,-69.838216 4.361231,-69.623372 Q 4.361231,-69.201009 4.060938,-68.915365 Q 3.760645,-68.62972 3.245508,-68.62972 Q 2.735254,-68.62972 2.43252,-68.894613 Q 2.129785,-69.159505 2.083399,-69.664876 L 2.535059,-69.711263 Q 2.5375,-69.374349 2.72793,-69.183919 Q 2.918359,-68.99349 3.235742,-68.99349 Q 3.536035,-68.99349 3.722803,-69.172933 Q 3.90957,-69.352376 3.90957,-69.613607 Q 3.90957,-69.86263 3.704492,-70.142171 Q 3.499414,-70.421712 2.915918,-70.900228 Q 2.539942,-71.207845 2.340967,-71.44222 Q 2.141992,-71.676595 2.05166,-71.918294 Q 1.995508,-72.064779 2.000391,-72.22347 L 4.366113,-72.22347 L 4.366113,-71.801107" />
<path d="M 5.191309,-71.913411 C 5.388249,-72.160807 5.659245,-72.284505 6.004297,-72.284505 C 6.266341,-72.284505 6.48322,-72.214111 6.654932,-72.073324 C 6.826644,-71.932536 6.955632,-71.733154 7.041895,-71.475179 C 7.128158,-71.217204 7.171289,-70.878255 7.171289,-70.458333 C 7.171289,-70.103516 7.144434,-69.821533 7.090723,-69.612386 C 6.981775,-69.194855 6.800908,-68.899546 6.509668,-68.745687 C 6.364811,-68.668376 6.196354,-68.62972 6.004297,-68.62972 C 5.74388,-68.62972 5.527816,-68.699707 5.356104,-68.839681 C 5.184391,-68.979655 5.054997,-69.17863 4.96792,-69.436605 C 4.880843,-69.69458 4.837305,-70.035156 4.837305,-70.458333 C 4.837305,-71.130534 4.955306,-71.61556 5.191309,-71.913411 M 5.516016,-69.249837 Q 5.69668,-68.99349 5.999414,-68.99349 Q 6.307031,-68.99349 6.51333,-69.284017 Q 6.719629,-69.574544 6.719629,-70.458333 Q 6.719629,-71.33724 6.51333,-71.630208 Q 6.307031,-71.923177 6.004297,-71.923177 Q 5.701563,-71.923177 5.495264,-71.631429 Q 5.288965,-71.339681 5.288965,-70.458333 Q 5.288965,-69.576986 5.516016,-69.249837" />
<path d="M 9.927637,-71.801107 L 8.172266,-71.801107 Q 8.245508,-71.681478 8.357813,-71.56307 Q 8.470117,-71.444661 8.865625,-71.11263 Q 9.339258,-70.71224 9.543115,-70.482747 Q 9.746973,-70.253255 9.834863,-70.045736 Q 9.922754,-69.838216 9.922754,-69.623372 Q 9.922754,-69.201009 9.622461,-68.915365 Q 9.322168,-68.62972 8.807031,-68.62972 Q 8.296777,-68.62972 7.994043,-68.894613 Q 7.691309,-69.159505 7.644922,-69.664876 L 8.096582,-69.711263 Q 8.099024,-69.374349 8.289453,-69.183919 Q 8.479883,-68.99349 8.797266,-68.99349 Q 9.097559,-68.99349 9.284326,-69.172933 Q 9.471094,-69.352376 9.471094,-69.613607 Q 9.471094,-69.86263 9.266016,-70.142171 Q 9.060938,-70.421712 8.477442,-70.900228 Q 8.101465,-71.207845 7.90249,-71.44222 Q 7.703516,-71.676595 7.613184,-71.918294 Q 7.557031,-72.064779 7.561914,-72.22347 L 9.927637,-72.22347 L 9.927637,-71.801107" />
<path d="M 10.860254,-71.246908 L 10.398828,-71.28597 Q 10.442774,-71.73763 10.751611,-72.011068 Q 11.060449,-72.284505 11.548731,-72.284505 Q 12.144434,-72.284505 12.488672,-71.849935 Q 12.771875,-71.495931 12.771875,-71.010091 Q 12.771875,-70.499837 12.449609,-70.17513 Q 12.127344,-69.850423 11.658594,-69.850423 Q 11.30459,-69.850423 10.982324,-70.075033 L 11.175195,-69.113118 L 12.603418,-69.113118 L 12.603418,-68.693197 L 10.823633,-68.693197 L 10.476953,-70.531576 L 10.889551,-70.585286 Q 10.987207,-70.431478 11.158106,-70.335042 Q 11.329004,-70.238607 11.541406,-70.238607 Q 11.883203,-70.238607 12.094385,-70.455892 Q 12.305567,-70.673177 12.305567,-71.049154 Q 12.305567,-71.444661 12.08584,-71.683919 Q 11.866113,-71.923177 11.548731,-71.923177 Q 11.285059,-71.923177 11.098291,-71.753499 Q 10.911524,-71.583822 10.860254,-71.246908" />
<path d="M 13.130762,-71.149251 L 14.480859,-71.149251 L 14.480859,-70.707357 L 13.130762,-70.707357 L 13.130762,-71.149251" />
<path d="M 15.198633,-71.913411 C 15.395573,-72.160807 15.666569,-72.284505 16.011621,-72.284505 C 16.273665,-72.284505 16.490544,-72.214111 16.662256,-72.073324 C 16.833968,-71.932536 16.962956,-71.733154 17.049219,-71.475179 C 17.135482,-71.217204 17.178613,-70.878255 17.178613,-70.458333 C 17.178613,-70.103516 17.151758,-69.821533 17.098047,-69.612386 C 16.989099,-69.194855 16.808232,-68.899546 16.516992,-68.745687 C 16.372136,-68.668376 16.203678,-68.62972 16.011621,-68.62972 C 15.751205,-68.62972 15.53514,-68.699707 15.363428,-68.839681 C 15.191716,-68.979655 15.062321,-69.17863 14.975244,-69.436605 C 14.888167,-69.69458 14.844629,-70.035156 14.844629,-70.458333 C 14.844629,-71.130534 14.96263,-71.61556 15.198633,-71.913411 M 15.52334,-69.249837 Q 15.704004,-68.99349 16.006738,-68.99349 Q 16.314356,-68.99349 16.520654,-69.284017 Q 16.726953,-69.574544 16.726953,-70.458333 Q 16.726953,-71.33724 16.520654,-71.630208 Q 16.314356,-71.923177 16.011621,-71.923177 Q 15.708887,-71.923177 15.502588,-71.631429 Q 15.296289,-71.339681 15.296289,-70.458333 Q 15.296289,-69.576986 15.52334,-69.249837" />
<path d="M 18.086817,-71.246908 L 17.625391,-71.28597 Q 17.669336,-71.73763 17.978174,-72.011068 Q 18.287012,-72.284505 18.775293,-72.284505 Q 19.370996,-72.284505 19.715234,-71.849935 Q 19.998438,-71.495931 19.998438,-71.010091 Q 19.998438,-70.499837 19.676172,-70.17513 Q 19.353906,-69.850423 18.885156,-69.850423 Q 18.531152,-69.850423 18.208887,-70.075033 L 18.401758,-69.113118 L 19.829981,-69.113118 L 19.829981,-68.693197 L 18.050195,-68.693197 L 17.703516,-70.531576 L 18.116113,-70.585286 Q 18.21377,-70.431478 18.384668,-70.335042 Q 18.555567,-70.238607 18.767969,-70.238607 Q 19.109766,-70.238607 19.320947,-70.455892 Q 19.532129,-70.673177 19.532129,-71.049154 Q 19.532129,-71.444661 19.312402,-71.683919 Q 19.092676,-71.923177 18.775293,-71.923177 Q 18.511621,-71.923177 18.324854,-71.753499 Q 18.138086,-71.583822 18.086817,-71.246908" />
<path d="M 20.357324,-71.149251 L 21.707422,-71.149251 L 21.707422,-70.707357 L 20.357324,-70.707357 L 20.357324,-71.149251" />
<path d="M 24.380762,-71.801107 L 22.625391,-71.801107 Q 22.698633,-71.681478 22.810938,-71.56307 Q 22.923242,-71.444661 23.31875,-71.11263 Q 23.792383,-70.71224 23.99624,-70.482747 Q 24.200098,-70.253255 24.287988,-70.045736 Q 24.375879,-69.838216 24.375879,-69.623372 Q 24.375879,-69.201009 24.075586,-68.915365 Q 23.775293,-68.62972 23.260156,-68.62972 Q 22.749902,-68.62972 22.447168,-68.894613 Q 22.144434,-69.159505 22.098047,-69.664876 L 22.549707,-69.711263 Q 22.552149,-69.374349 22.742578,-69.183919 Q 22.933008,-68.99349 23.250391,-68.99349 Q 23.550684,-68.99349 23.737451,-69.172933 Q 23.924219,-69.352376 23.924219,-69.613607 Q 23.924219,-69.86263 23.719141,-70.142171 Q 23.514063,-70.421712 22.930567,-70.900228 Q 22.55459,-71.207845 22.355615,-71.44222 Q 22.156641,-71.676595 22.066309,-71.918294 Q 22.010156,-72.064779 22.015039,-72.22347 L 24.380762,-72.22347 L 24.380762,-71.801107" />
<path d="M 25.293848,-71.220052 L 24.854395,-71.278646 Q 24.89834,-71.725423 25.209619,-72.006185 Q 25.520899,-72.286947 25.99209,-72.286947 Q 26.514551,-72.286947 26.856348,-71.961019 Q 27.198145,-71.635091 27.198145,-71.166341 Q 27.198145,-70.819661 27.022363,-70.588949 Q 26.846582,-70.358236 26.529199,-70.284993 Q 26.77334,-70.172689 26.897852,-69.982259 Q 27.022363,-69.791829 27.022363,-69.559896 Q 27.022363,-69.315755 26.891748,-69.09847 Q 26.761133,-68.881185 26.514551,-68.755452 Q 26.267969,-68.62972 25.975,-68.62972 Q 25.550195,-68.62972 25.264551,-68.87264 Q 24.978906,-69.11556 24.89834,-69.557454 L 25.337793,-69.635579 Q 25.386621,-69.313314 25.55752,-69.152181 Q 25.728418,-68.991048 25.984766,-68.991048 Q 26.243555,-68.991048 26.407129,-69.14974 Q 26.570703,-69.308431 26.570703,-69.55013 Q 26.570703,-69.855306 26.346094,-70.00179 Q 26.121484,-70.148275 25.840723,-70.148275 Q 25.813867,-70.148275 25.769922,-70.143392 L 25.721094,-70.529134 Q 25.906641,-70.480306 26.031152,-70.480306 Q 26.336328,-70.480306 26.534082,-70.676839 Q 26.731836,-70.873372 26.731836,-71.176107 Q 26.731836,-71.49349 26.518213,-71.708333 Q 26.30459,-71.923177 25.994531,-71.923177 Q 25.733301,-71.923177 25.551416,-71.758382 Q 25.369531,-71.593587 25.293848,-71.220052" />
<path d="M 2.297852,-78.275391 L 2.0,-78.301432 C 2.00434,-78.460938 2.048014,-78.603895 2.131022,-78.730306 C 2.21403,-78.856717 2.328505,-78.951389 2.474447,-79.014323 C 2.620389,-79.077257 2.801324,-79.108724 3.017253,-79.108724 C 3.187609,-79.108724 3.340875,-79.077528 3.477051,-79.015137 C 3.613227,-78.952745 3.717665,-78.865397 3.790365,-78.753092 C 3.863064,-78.640788 3.899414,-78.521159 3.899414,-78.394206 C 3.898397,-78.138808 3.771308,-77.938883 3.492513,-77.811523 Q 3.349284,-77.746419 2.964356,-77.659342 Q 2.579427,-77.572266 2.488281,-77.489258 C 2.426432,-77.433919 2.395508,-77.36339 2.395508,-77.277669 C 2.395508,-77.178928 2.439182,-77.094564 2.52653,-77.024577 C 2.613878,-76.95459 2.753038,-76.919596 2.944011,-76.919596 C 3.312629,-76.919088 3.490648,-77.075812 3.525065,-77.376953 L 3.8278,-77.354167 C 3.822374,-77.214193 3.783312,-77.088867 3.710612,-76.97819 C 3.637912,-76.867513 3.534017,-76.783691 3.398926,-76.726725 C 3.263835,-76.669759 3.107856,-76.641276 2.93099,-76.641276 C 2.770399,-76.641276 2.624458,-76.668403 2.493164,-76.722656 C 2.361871,-76.77691 2.262044,-76.856391 2.193685,-76.9611 C 2.125326,-77.065809 2.091146,-77.178385 2.091146,-77.298828 C 2.091485,-77.516825 2.201484,-77.699863 2.429688,-77.818034 Q 2.561524,-77.888021 2.8903,-77.96696 Q 3.219076,-78.045898 3.315104,-78.083333 C 3.516792,-78.159458 3.593018,-78.270338 3.595052,-78.420247 C 3.594713,-78.565443 3.506416,-78.702569 3.321615,-78.77181 C 3.229384,-78.807617 3.123047,-78.825521 3.002604,-78.825521 C 2.866971,-78.825521 2.7449,-78.801921 2.636393,-78.75472 C 2.527886,-78.70752 2.447863,-78.645671 2.396322,-78.569173 C 2.344781,-78.492676 2.311958,-78.394748 2.297852,-78.275391" />
<path d="M 6.348958,-78.311198 L 6.033203,-78.231445 C 5.9898,-78.432183 5.906793,-78.58355 5.78418,-78.685547 C 5.661567,-78.787543 5.511827,-78.838542 5.334961,-78.838542 C 5.189562,-78.838542 5.054471,-78.801107 4.929688,-78.726237 C 4.804905,-78.651367 4.712945,-78.538249 4.653809,-78.386882 C 4.594672,-78.235514 4.565104,-78.058377 4.565104,-77.855469 C 4.565104,-77.698134 4.590061,-77.54541 4.639974,-77.397298 C 4.689887,-77.249186 4.776422,-77.131185 4.899577,-77.043294 C 5.022732,-76.955404 5.175998,-76.911458 5.359375,-76.911458 C 5.679064,-76.913832 5.886041,-77.059909 5.997396,-77.409505 L 6.308268,-77.336263 Q 6.21224,-77.005859 5.968099,-76.823568 Q 5.723958,-76.641276 5.365886,-76.641276 Q 5.05013,-76.641276 4.787272,-76.785319 Q 4.524414,-76.929362 4.381999,-77.206868 Q 4.239583,-77.484375 4.239583,-77.857096 Q 4.239583,-78.198893 4.365723,-78.496745 Q 4.491862,-78.794596 4.733561,-78.95166 Q 4.975261,-79.108724 5.361003,-79.108724 Q 5.733724,-79.108724 5.991699,-78.90446 Q 6.249675,-78.700195 6.348958,-78.311198" />
<path d="M 6.475912,-79.068034 L 6.811198,-79.068034 L 7.073242,-78.345378 L 8.070964,-78.345378 L 8.349284,-79.068034 L 8.708984,-79.068034 L 7.732422,-76.681966 L 7.392253,-76.681966 L 6.475912,-79.068034 M 7.164388,-78.088216 L 7.426432,-77.388346 Q 7.50944,-77.162109 7.555013,-76.932617 Q 7.610352,-77.126302 7.724284,-77.427409 L 7.973307,-78.088216 L 7.164388,-78.088216" />
<path d="M 8.948242,-79.068034 L 10.439128,-79.068034 L 10.439128,-78.786458 L 9.263997,-78.786458 L 9.263997,-76.681966 L 8.948242,-76.681966 L 8.948242,-79.068034" />
<path d="M 10.821615,-79.068034 L 12.602214,-79.068034 L 12.602214,-78.786458 L 11.13737,-78.786458 L 11.13737,-77.974284 L 12.457357,-77.974284 L 12.457357,-77.694336 L 11.13737,-77.694336 L 11.13737,-76.963542 L 12.546875,-76.963542 L 12.546875,-76.681966 L 10.821615,-76.681966 L 10.821615,-79.068034" />
<path d="M 13.082357,-77.673177 L 13.416016,-77.673177 L 13.416016,-77.339518 L 13.082357,-77.339518 L 13.082357,-77.673177" />
<path d="M 13.082357,-79.068034 L 13.416016,-79.068034 L 13.416016,-78.734375 L 13.082357,-78.734375 L 13.082357,-79.068034" />
<path d="M 3.318359,-87.088542 L 3.318359,-83.494792 L 3.035156,-83.494792 Q 2.92041,-83.726725 2.644531,-83.973307 Q 2.368652,-84.219889 2.0,-84.393229 L 2.0,-84.818034 Q 2.205078,-84.74235 2.462647,-84.590983 Q 2.720215,-84.439616 2.878906,-84.288249 L 2.878906,-87.088542 L 3.318359,-87.088542" />
<path d="M 7.488281,-87.088542 L 7.488281,-83.494792 L 7.205078,-83.494792 Q 7.090332,-83.726725 6.814453,-83.973307 Q 6.538574,-84.219889 6.169922,-84.393229 L 6.169922,-84.818034 Q 6.375,-84.74235 6.632568,-84.590983 Q 6.890137,-84.439616 7.048828,-84.288249 L 7.048828,-87.088542 L 7.488281,-87.088542" />
<path d="M 4.687988,-84.996257 L 5.188477,-84.996257 L 5.188477,-84.495768 L 4.687988,-84.495768 L 4.687988,-84.996257" />
<path d="M 4.687988,-87.088542 L 5.188477,-87.088542 L 5.188477,-86.588053 L 4.687988,-86.588053 L 4.687988,-87.088542" />
<path d="M 46.5,-54.563151 L 47.408203,-54.563151 L 47.408203,-48.938151 L 51.167969,-54.563151 L 52.139648,-54.563151 L 52.139648,-47.404948 L 51.231445,-47.404948 L 51.231445,-53.025065 L 47.47168,-47.404948 L 46.5,-47.404948 L 46.5,-54.563151" />
<path d="M 58.077148,-53.005534 L 57.168945,-52.893229 Q 56.96875,-53.44987 56.626953,-53.703776 Q 56.285156,-53.957682 55.801758,-53.957682 Q 55.152344,-53.957682 54.717773,-53.503581 Q 54.283203,-53.049479 54.234375,-52.194987 L 58.101562,-52.194987 Q 58.106445,-52.038737 58.106445,-51.960612 Q 58.106445,-50.676432 57.447266,-49.968424 Q 56.788086,-49.260417 55.748047,-49.260417 Q 54.673828,-49.260417 54.0,-49.983073 Q 53.326172,-50.705729 53.326172,-52.014323 Q 53.326172,-53.278971 53.992676,-53.979655 Q 54.65918,-54.680339 55.796875,-54.680339 Q 56.700195,-54.680339 57.28125,-54.240885 Q 57.862305,-53.801432 58.077148,-53.005534 M 57.178711,-51.472331 L 54.283203,-51.472331 Q 54.327148,-50.79362 54.739746,-50.388346 Q 55.152344,-49.983073 55.757812,-49.983073 Q 56.426758,-49.983073 56.84668,-50.490885 Q 57.120117,-50.818034 57.178711,-51.472331" />
<path d="M 59.180664,-54.563151 L 60.05957,-54.563151 L 60.05957,-51.872721 Q 60.05957,-51.164714 60.201172,-50.788737 Q 60.342773,-50.41276 60.657715,-50.217448 Q 60.972656,-50.022135 61.34375,-50.022135 Q 61.832031,-50.022135 62.046875,-50.315104 Q 62.261719,-50.608073 62.261719,-51.19401 L 62.261719,-54.563151 L 63.140625,-54.563151 L 63.140625,-51.550456 Q 63.140625,-50.749674 63.501953,-50.385905 Q 63.863281,-50.022135 64.410156,-50.022135 Q 64.712891,-50.022135 64.9375,-50.163737 Q 65.162109,-50.305339 65.247559,-50.537272 Q 65.333008,-50.769206 65.333008,-51.296549 L 65.333008,-54.563151 L 66.207031,-54.563151 L 66.207031,-51.003581 Q 66.207031,-50.114909 65.791992,-49.687663 Q 65.376953,-49.260417 64.605469,-49.260417 Q 63.619141,-49.260417 63.003906,-50.16862 Q 62.852539,-49.738932 62.483887,-49.499674 Q 62.115234,-49.260417 61.539062,-49.260417 Q 61.021484,-49.260417 60.616211,-49.49235 Q 60.210938,-49.724284 59.966797,-50.105143 L 59.966797,-49.377604 L 59.180664,-49.377604 L 59.180664,-54.563151" />
<path d="M 68.472656,-51.706706 Q 68.121094,-51.804362 67.840332,-51.994792 Q 67.55957,-52.185221 67.38623,-52.500163 Q 67.212891,-52.815104 67.212891,-53.195964 Q 67.212891,-53.845378 67.671875,-54.262858 Q 68.130859,-54.680339 68.985352,-54.680339 Q 69.50293,-54.680339 69.95459,-54.50944 Q 70.40625,-54.338542 70.894531,-53.923503 Q 70.933594,-54.289714 71.070312,-54.563151 L 71.988281,-54.563151 Q 71.822266,-54.265299 71.766113,-53.940592 Q 71.709961,-53.615885 71.709961,-52.390299 L 71.709961,-51.218424 Q 71.709961,-50.632487 71.666016,-50.407878 Q 71.587891,-50.046549 71.392578,-49.809733 Q 71.197266,-49.572917 70.782227,-49.416667 Q 70.367188,-49.260417 69.703125,-49.260417 Q 69.03418,-49.260417 68.526367,-49.443522 Q 68.018555,-49.626628 67.75,-49.965983 Q 67.481445,-50.305339 67.364258,-50.857096 L 68.223633,-50.974284 Q 68.365234,-50.422526 68.660645,-50.205241 Q 68.956055,-49.987956 69.576172,-49.987956 Q 70.240234,-49.987956 70.577148,-50.285807 Q 70.826172,-50.505534 70.826172,-51.042643 Q 70.826172,-51.091471 70.821289,-51.272135 Q 70.318359,-51.447917 69.253906,-51.57487 Q 68.731445,-51.638346 68.472656,-51.706706 M 70.821289,-51.960612 L 70.821289,-52.282878 Q 70.821289,-52.863932 70.679688,-53.161784 Q 70.494141,-53.547526 70.098633,-53.769694 Q 69.703125,-53.991862 69.195312,-53.991862 Q 68.682617,-53.991862 68.416504,-53.757487 Q 68.150391,-53.523112 68.150391,-53.171549 Q 68.150391,-52.942057 68.272461,-52.754069 Q 68.394531,-52.566081 68.619141,-52.468424 Q 68.84375,-52.370768 69.385742,-52.292643 Q 70.342773,-52.155924 70.821289,-51.960612" />
<path d="M 80.225586,-53.718424 L 76.714844,-53.718424 Q 76.861328,-53.479167 77.085938,-53.24235 Q 77.310547,-53.005534 78.101562,-52.341471 Q 79.048828,-51.54069 79.456543,-51.081706 Q 79.864258,-50.622721 80.040039,-50.207682 Q 80.21582,-49.792643 80.21582,-49.362956 Q 80.21582,-48.518229 79.615234,-47.94694 Q 79.014648,-47.375651 77.984375,-47.375651 Q 76.963867,-47.375651 76.358398,-47.905436 Q 75.75293,-48.435221 75.660156,-49.445964 L 76.563477,-49.538737 Q 76.568359,-48.864909 76.949219,-48.484049 Q 77.330078,-48.10319 77.964844,-48.10319 Q 78.56543,-48.10319 78.938965,-48.462077 Q 79.3125,-48.820964 79.3125,-49.343424 Q 79.3125,-49.841471 78.902344,-50.400553 Q 78.492188,-50.959635 77.325195,-51.916667 Q 76.573242,-52.531901 76.175293,-53.000651 Q 75.777344,-53.469401 75.59668,-53.952799 Q 75.484375,-54.245768 75.494141,-54.563151 L 80.225586,-54.563151 L 80.225586,-53.718424" />
<path d="M 82.051758,-52.556315 L 81.172852,-52.673503 Q 81.260742,-53.567057 81.883301,-54.128581 Q 82.505859,-54.690104 83.448242,-54.690104 Q 84.493164,-54.690104 85.176758,-54.038249 Q 85.860352,-53.386393 85.860352,-52.448893 Q 85.860352,-51.755534 85.508789,-51.294108 Q 85.157227,-50.832682 84.522461,-50.686198 Q 85.010742,-50.461589 85.259766,-50.080729 Q 85.508789,-49.69987 85.508789,-49.236003 Q 85.508789,-48.747721 85.247559,-48.313151 Q 84.986328,-47.878581 84.493164,-47.627116 Q 84.0,-47.375651 83.414062,-47.375651 Q 82.564453,-47.375651 81.993164,-47.861491 Q 81.421875,-48.347331 81.260742,-49.23112 L 82.139648,-49.38737 Q 82.237305,-48.742839 82.579102,-48.420573 Q 82.920898,-48.098307 83.433594,-48.098307 Q 83.951172,-48.098307 84.27832,-48.41569 Q 84.605469,-48.733073 84.605469,-49.216471 Q 84.605469,-49.826823 84.15625,-50.119792 Q 83.707031,-50.41276 83.145508,-50.41276 Q 83.091797,-50.41276 83.003906,-50.402995 L 82.90625,-51.174479 Q 83.277344,-51.076823 83.526367,-51.076823 Q 84.136719,-51.076823 84.532227,-51.469889 Q 84.927734,-51.862956 84.927734,-52.468424 Q 84.927734,-53.10319 84.500488,-53.532878 Q 84.073242,-53.962565 83.453125,-53.962565 Q 82.930664,-53.962565 82.566895,-53.632975 Q 82.203125,-53.303385 82.051758,-52.556315" />
<path d="M 90.435547,-52.185221 L 89.541992,-52.263346 Q 89.561523,-52.98112 89.935059,-53.549967 Q 90.308594,-54.118815 90.965332,-54.402018 Q 91.62207,-54.685221 92.59375,-54.685221 Q 93.360352,-54.685221 93.973145,-54.40446 Q 94.585938,-54.123698 94.913086,-53.618327 Q 95.240234,-53.112956 95.240234,-52.541667 Q 95.240234,-51.965495 94.942383,-51.5236 Q 94.644531,-51.081706 94.019531,-50.79362 Q 93.589844,-50.598307 92.435059,-50.337077 Q 91.280273,-50.075846 91.006836,-49.826823 Q 90.728516,-49.577799 90.728516,-49.192057 Q 90.728516,-48.747721 91.121582,-48.43278 Q 91.514648,-48.117839 92.374023,-48.117839 Q 93.199219,-48.117839 93.621582,-48.464518 Q 94.043945,-48.811198 94.117188,-49.489909 L 95.025391,-49.421549 Q 95.000977,-48.791667 94.673828,-48.29362 Q 94.34668,-47.795573 93.73877,-47.539225 Q 93.130859,-47.282878 92.334961,-47.282878 Q 91.612305,-47.282878 91.021484,-47.527018 Q 90.430664,-47.771159 90.123047,-48.24235 Q 89.81543,-48.713542 89.81543,-49.255534 Q 89.81543,-49.748698 90.066895,-50.146647 Q 90.318359,-50.544596 90.831055,-50.813151 Q 91.226562,-51.023112 92.212891,-51.259928 Q 93.199219,-51.496745 93.487305,-51.609049 Q 93.936523,-51.779948 94.131836,-52.031413 Q 94.327148,-52.282878 94.327148,-52.619792 Q 94.327148,-52.951823 94.124512,-53.232585 Q 93.921875,-53.513346 93.506836,-53.674479 Q 93.091797,-53.835612 92.549805,-53.835612 Q 91.939453,-53.835612 91.451172,-53.62321 Q 90.962891,-53.410807 90.730957,-53.066569 Q 90.499023,-52.722331 90.435547,-52.185221" />
<path d="M 98.467773,-54.553385 L 98.34082,-53.777018 Q 98.101562,-53.811198 97.955078,-53.811198 Q 97.759766,-53.811198 97.654785,-53.747721 Q 97.549805,-53.684245 97.503418,-53.576823 Q 97.457031,-53.469401 97.457031,-53.093424 L 97.457031,-50.061198 L 98.34082,-50.061198 L 98.34082,-49.377604 L 97.457031,-49.377604 L 97.457031,-47.566081 L 96.583008,-48.093424 L 96.583008,-49.377604 L 95.938477,-49.377604 L 95.938477,-50.061198 L 96.583008,-50.061198 L 96.583008,-53.044596 Q 96.583008,-53.835612 96.69043,-54.082194 Q 96.797852,-54.328776 97.061523,-54.480143 Q 97.325195,-54.63151 97.803711,-54.63151 Q 98.09668,-54.63151 98.467773,-54.553385" />
<path d="M 103.658203,-53.005534 L 102.75,-52.893229 Q 102.549805,-53.44987 102.208008,-53.703776 Q 101.866211,-53.957682 101.382812,-53.957682 Q 100.733398,-53.957682 100.298828,-53.503581 Q 99.864258,-53.049479 99.81543,-52.194987 L 103.682617,-52.194987 Q 103.6875,-52.038737 103.6875,-51.960612 Q 103.6875,-50.676432 103.02832,-49.968424 Q 102.369141,-49.260417 101.329102,-49.260417 Q 100.254883,-49.260417 99.581055,-49.983073 Q 98.907227,-50.705729 98.907227,-52.014323 Q 98.907227,-53.278971 99.57373,-53.979655 Q 100.240234,-54.680339 101.37793,-54.680339 Q 102.28125,-54.680339 102.862305,-54.240885 Q 103.443359,-53.801432 103.658203,-53.005534 M 102.759766,-51.472331 L 99.864258,-51.472331 Q 99.908203,-50.79362 100.320801,-50.388346 Q 100.733398,-49.983073 101.338867,-49.983073 Q 102.007812,-49.983073 102.427734,-50.490885 Q 102.701172,-50.818034 102.759766,-51.472331" />
<path d="M 104.761719,-56.550456 L 105.640625,-56.550456 L 105.640625,-54.026042 Q 105.865234,-54.309245 106.214355,-54.494792 Q 106.563477,-54.680339 107.00293,-54.680339 Q 107.603516,-54.680339 108.147949,-54.340983 Q 108.692383,-54.001628 108.978027,-53.364421 Q 109.263672,-52.727214 109.263672,-51.931315 Q 109.263672,-51.189128 109.004883,-50.566569 Q 108.746094,-49.94401 108.238281,-49.602214 Q 107.730469,-49.260417 107.066406,-49.260417 Q 106.558594,-49.260417 106.202148,-49.458171 Q 105.845703,-49.655924 105.5625,-50.051432 L 105.5625,-49.377604 L 104.761719,-49.377604 L 104.761719,-56.550456 M 105.557617,-51.999674 Q 105.557617,-50.998698 105.989746,-50.473796 Q 106.421875,-49.948893 106.983398,-49.948893 Q 107.549805,-49.948893 107.95752,-50.442057 Q 108.365234,-50.935221 108.365234,-51.926432 Q 108.365234,-52.966471 107.947754,-53.462077 Q 107.530273,-53.957682 106.944336,-53.957682 Q 106.368164,-53.957682 105.962891,-53.479167 Q 105.557617,-53.000651 105.557617,-51.999674" />
<path d="M 110.323242,-56.550456 L 111.202148,-56.550456 L 111.202148,-54.026042 Q 111.426758,-54.309245 111.775879,-54.494792 Q 112.125,-54.680339 112.564453,-54.680339 Q 113.165039,-54.680339 113.709473,-54.340983 Q 114.253906,-54.001628 114.539551,-53.364421 Q 114.825195,-52.727214 114.825195,-51.931315 Q 114.825195,-51.189128 114.566406,-50.566569 Q 114.307617,-49.94401 113.799805,-49.602214 Q 113.291992,-49.260417 112.62793,-49.260417 Q 112.120117,-49.260417 111.763672,-49.458171 Q 111.407227,-49.655924 111.124023,-50.051432 L 111.124023,-49.377604 L 110.323242,-49.377604 L 110.323242,-56.550456 M 111.119141,-51.999674 Q 111.119141,-50.998698 111.55127,-50.473796 Q 111.983398,-49.948893 112.544922,-49.948893 Q 113.111328,-49.948893 113.519043,-50.442057 Q 113.926758,-50.935221 113.926758,-51.926432 Q 113.926758,-52.966471 113.509277,-53.462077 Q 113.091797,-53.957682 112.505859,-53.957682 Q 111.929688,-53.957682 111.524414,-53.479167 Q 111.119141,-53.000651 111.119141,-51.999674" />
<path d="M 120.342773,-53.005534 L 119.43457,-52.893229 Q 119.234375,-53.44987 118.892578,-53.703776 Q 118.550781,-53.957682 118.067383,-53.957682 Q 117.417969,-53.957682 116.983398,-53.503581 Q 116.548828,-53.049479 116.5,-52.194987 L 120.367188,-52.194987 Q 120.37207,-52.038737 120.37207,-51.960612 Q 120.37207,-50.676432 119.712891,-49.968424 Q 119.053711,-49.260417 118.013672,-49.260417 Q 116.939453,-49.260417 116.265625,-49.983073 Q 115.591797,-50.705729 115.591797,-52.014323 Q 115.591797,-53.278971 116.258301,-53.979655 Q 116.924805,-54.680339 118.0625,-54.680339 Q 118.96582,-54.680339 119.546875,-54.240885 Q 120.12793,-53.801432 120.342773,-53.005534 M 119.444336,-51.472331 L 116.548828,-51.472331 Q 116.592773,-50.79362 117.005371,-50.388346 Q 117.417969,-49.983073 118.023438,-49.983073 Q 118.692383,-49.983073 119.112305,-50.490885 Q 119.385742,-50.818034 119.444336,-51.472331" />
<path d="M 121.436523,-54.563151 L 122.31543,-54.563151 L 122.31543,-51.848307 Q 122.31543,-51.291667 122.461914,-50.822917 Q 122.55957,-50.515299 122.789062,-50.34196 Q 123.018555,-50.16862 123.306641,-50.16862 Q 123.628906,-50.16862 123.951172,-50.359049 L 124.253906,-49.54362 Q 123.794922,-49.260417 123.350586,-49.260417 Q 123.042969,-49.260417 122.786621,-49.436198 Q 122.530273,-49.611979 122.227539,-50.163737 L 122.227539,-49.377604 L 121.436523,-49.377604 L 121.436523,-54.563151" />
<path d="M 51.182617,-63.109863 L 51.182617,-67.240723 Q 51.182617,-68.588379 50.738281,-69.062012 Q 50.293945,-69.535645 49.249024,-69.535645 Q 48.638672,-69.535645 48.216309,-69.296387 Q 47.793945,-69.057129 47.620606,-68.615234 Q 47.447266,-68.17334 47.447266,-67.240723 L 47.447266,-63.109863 L 46.5,-63.109863 L 46.5,-67.245605 Q 46.5,-68.383301 46.773438,-69.040039 Q 47.046875,-69.696777 47.686524,-70.043457 Q 48.326172,-70.390137 49.332031,-70.390137 Q 50.367188,-70.390137 51.004395,-69.992188 Q 51.641602,-69.594238 51.885742,-68.959473 Q 52.129883,-68.324707 52.129883,-67.245605 L 52.129883,-63.109863 L 51.182617,-63.109863" />
<path d="M 53.594727,-70.268066 L 54.473633,-70.268066 L 54.473633,-67.436035 Q 54.473633,-66.439941 54.881348,-66.083496 Q 55.289063,-65.727051 55.850586,-65.727051 Q 56.202149,-65.727051 56.463379,-65.885742 Q 56.724609,-66.044434 56.827149,-66.310547 Q 56.929688,-66.57666 56.929688,-67.11377 L 56.929688,-70.268066 L 57.808594,-70.268066 L 57.808594,-67.07959 Q 57.808594,-66.469238 57.759766,-66.225098 Q 57.681641,-65.849121 57.486328,-65.575684 Q 57.291016,-65.302246 56.897949,-65.133789 Q 56.504883,-64.965332 56.036133,-64.965332 Q 54.957031,-64.965332 54.385742,-65.819824 L 54.385742,-65.08252 L 53.594727,-65.08252 L 53.594727,-70.268066" />
<path d="M 63.423828,-70.258301 L 63.296875,-69.481934 Q 63.057617,-69.516113 62.911133,-69.516113 Q 62.71582,-69.516113 62.61084,-69.452637 Q 62.505859,-69.38916 62.459473,-69.281738 Q 62.413086,-69.174316 62.413086,-68.79834 L 62.413086,-65.766113 L 63.296875,-65.766113 L 63.296875,-65.08252 L 62.413086,-65.08252 L 62.413086,-63.270996 L 61.539063,-63.79834 L 61.539063,-65.08252 L 60.894531,-65.08252 L 60.894531,-65.766113 L 61.539063,-65.766113 L 61.539063,-68.749512 Q 61.539063,-69.540527 61.646484,-69.787109 Q 61.753906,-70.033691 62.017578,-70.185059 Q 62.28125,-70.336426 62.759766,-70.336426 Q 63.052734,-70.336426 63.423828,-70.258301" />
<path d="M 64.673828,-68.583496 L 63.804688,-68.720215 Q 63.951172,-69.54541 64.480957,-69.965332 Q 65.010742,-70.385254 66.021484,-70.385254 Q 66.631836,-70.385254 67.115234,-70.172852 Q 67.598633,-69.960449 67.854981,-69.572266 Q 68.111328,-69.184082 68.111328,-68.744629 Q 68.111328,-68.29541 67.901367,-67.992676 Q 67.691406,-67.689941 67.322754,-67.53125 Q 66.954102,-67.372559 66.021484,-67.123535 Q 65.376953,-66.947754 65.245117,-66.898926 Q 65.015625,-66.806152 64.908203,-66.664551 Q 64.800781,-66.527832 64.800781,-66.356934 Q 64.800781,-66.088379 65.05957,-65.888184 Q 65.318359,-65.687988 65.923828,-65.687988 Q 66.436524,-65.687988 66.717285,-65.912598 Q 66.998047,-66.137207 67.056641,-66.537598 L 67.916016,-66.42041 Q 67.833008,-65.91748 67.613281,-65.617188 Q 67.393555,-65.316895 66.932129,-65.141113 Q 66.470703,-64.965332 65.860352,-64.965332 Q 65.455078,-64.965332 65.101074,-65.070312 Q 64.74707,-65.175293 64.541992,-65.32666 Q 64.268555,-65.521973 64.109863,-65.817383 Q 63.951172,-66.112793 63.951172,-66.459473 Q 63.951172,-66.840332 64.144043,-67.155273 Q 64.336914,-67.470215 64.710449,-67.648438 Q 65.083984,-67.82666 66.050781,-68.070801 Q 66.768555,-68.251465 66.949219,-68.368652 Q 67.208008,-68.539551 67.208008,-68.837402 Q 67.208008,-69.169434 66.915039,-69.416016 Q 66.62207,-69.662598 66.016602,-69.662598 Q 65.416016,-69.662598 65.081543,-69.384277 Q 64.74707,-69.105957 64.673828,-68.583496" />
<path d="M 74.712891,-70.268066 L 75.591797,-70.268066 L 75.591797,-67.577637 Q 75.591797,-66.869629 75.733399,-66.493652 Q 75.875,-66.117676 76.189942,-65.922363 Q 76.504883,-65.727051 76.875977,-65.727051 Q 77.364258,-65.727051 77.579102,-66.02002 Q 77.793945,-66.312988 77.793945,-66.898926 L 77.793945,-70.268066 L 78.672852,-70.268066 L 78.672852,-67.255371 Q 78.672852,-66.45459 79.03418,-66.09082 Q 79.395508,-65.727051 79.942383,-65.727051 Q 80.245117,-65.727051 80.469727,-65.868652 Q 80.694336,-66.010254 80.779785,-66.242188 Q 80.865234,-66.474121 80.865234,-67.001465 L 80.865234,-70.268066 L 81.739258,-70.268066 L 81.739258,-66.708496 Q 81.739258,-65.819824 81.324219,-65.392578 Q 80.90918,-64.965332 80.137695,-64.965332 Q 79.151367,-64.965332 78.536133,-65.873535 Q 78.384766,-65.443848 78.016113,-65.20459 Q 77.647461,-64.965332 77.071289,-64.965332 Q 76.553711,-64.965332 76.148438,-65.197266 Q 75.743164,-65.429199 75.499024,-65.810059 L 75.499024,-65.08252 L 74.712891,-65.08252 L 74.712891,-70.268066" />
<path d="M 83.042969,-70.268066 L 83.921875,-70.268066 L 83.921875,-67.577637 Q 83.921875,-66.869629 84.063477,-66.493652 Q 84.205078,-66.117676 84.52002,-65.922363 Q 84.834961,-65.727051 85.206055,-65.727051 Q 85.694336,-65.727051 85.90918,-66.02002 Q 86.124024,-66.312988 86.124024,-66.898926 L 86.124024,-70.268066 L 87.00293,-70.268066 L 87.00293,-67.255371 Q 87.00293,-66.45459 87.364258,-66.09082 Q 87.725586,-65.727051 88.272461,-65.727051 Q 88.575195,-65.727051 88.799805,-65.868652 Q 89.024414,-66.010254 89.109863,-66.242188 Q 89.195313,-66.474121 89.195313,-67.001465 L 89.195313,-70.268066 L 90.069336,-70.268066 L 90.069336,-66.708496 Q 90.069336,-65.819824 89.654297,-65.392578 Q 89.239258,-64.965332 88.467774,-64.965332 Q 87.481445,-64.965332 86.866211,-65.873535 Q 86.714844,-65.443848 86.346192,-65.20459 Q 85.977539,-64.965332 85.401367,-64.965332 Q 84.883789,-64.965332 84.478516,-65.197266 Q 84.073242,-65.429199 83.829102,-65.810059 L 83.829102,-65.08252 L 83.042969,-65.08252 L 83.042969,-70.268066" />
<path d="M 69.400391,-70.268066 L 70.401367,-70.268066 L 70.401367,-69.26709 L 69.400391,-69.26709 L 69.400391,-70.268066" />
<path d="M 69.400391,-66.083496 L 70.401367,-66.083496 L 70.401367,-65.08252 L 69.400391,-65.08252 L 69.400391,-66.083496" />
<path d="M 59.161133,-70.268066 L 60.040039,-70.268066 L 60.040039,-65.08252 L 59.161133,-65.08252 L 59.161133,-70.268066" />
<path d="M 59.161133,-64.120605 L 60.040039,-64.120605 L 60.040039,-63.109863 L 59.161133,-63.109863 L 59.161133,-64.120605" />
<path d="M 46.5,-79.068034 L 47.361003,-79.068034 C 47.64936,-79.06722 47.87207,-79.01378 48.029134,-78.907715 C 48.184689,-78.801022 48.326325,-78.625139 48.40918,-78.34375 C 48.451497,-78.203776 48.472656,-78.043186 48.472656,-77.861979 C 48.472656,-77.649306 48.441461,-77.460232 48.379069,-77.294759 C 48.316678,-77.129286 48.222548,-76.993381 48.09668,-76.887044 Q 47.951823,-76.763346 47.746745,-76.716146 Q 47.600261,-76.681966 47.32194,-76.681966 L 46.5,-76.681966 L 46.5,-79.068034 M 46.815755,-78.786458 L 46.815755,-76.963542 L 47.317057,-76.963542 Q 47.598633,-76.963542 47.725586,-77.01237 C 47.842774,-77.057943 47.942329,-77.147732 48.024251,-77.281738 C 48.106174,-77.415744 48.147136,-77.60753 48.147136,-77.857096 C 48.148492,-78.217679 48.057888,-78.468736 47.909505,-78.618815 C 47.856337,-78.671984 47.784994,-78.713216 47.695475,-78.742513 C 47.605957,-78.77181 47.48253,-78.786458 47.325195,-78.786458 L 46.815755,-78.786458" />
<path d="M 48.912109,-79.068034 L 49.227865,-79.068034 L 49.227865,-78.008464 L 49.594076,-78.008464 Q 49.716146,-78.008464 49.769857,-78.019857 Q 49.843099,-78.03776 49.9139,-78.083333 Q 49.984701,-78.128906 50.074219,-78.242839 Q 50.163737,-78.356771 50.302083,-78.571615 L 50.617839,-79.068034 L 51.014974,-79.068034 L 50.599935,-78.41862 Q 50.476237,-78.22819 50.337891,-78.101237 Q 50.272787,-78.042643 50.147461,-77.982422 Q 50.490886,-77.935221 50.655274,-77.761068 Q 50.819662,-77.586914 50.819662,-77.333008 Q 50.819662,-77.136068 50.720378,-76.973307 Q 50.621094,-76.810547 50.455078,-76.746257 Q 50.289063,-76.681966 49.970052,-76.681966 L 48.912109,-76.681966 L 48.912109,-79.068034 M 49.227865,-77.735026 L 49.227865,-76.945638 L 49.983073,-76.945638 Q 50.248372,-76.945638 50.371257,-77.054688 Q 50.494141,-77.163737 50.494141,-77.333008 Q 50.494141,-77.448568 50.430664,-77.547038 Q 50.367188,-77.645508 50.245117,-77.690267 Q 50.123047,-77.735026 49.906576,-77.735026 L 49.227865,-77.735026" />
<path d="M 51.052409,-79.068034 L 51.387695,-79.068034 L 51.64974,-78.345378 L 52.647461,-78.345378 L 52.925781,-79.068034 L 53.285482,-79.068034 L 52.308919,-76.681966 L 51.96875,-76.681966 L 51.052409,-79.068034 M 51.740886,-78.088216 L 52.00293,-77.388346 Q 52.085938,-77.162109 52.131511,-76.932617 Q 52.186849,-77.126302 52.300781,-77.427409 L 52.549805,-78.088216 L 51.740886,-78.088216" />
<path d="M 53.830729,-79.068034 L 54.152995,-79.068034 L 54.65918,-77.25 Q 54.691732,-77.13444 54.729167,-76.970052 Q 54.74056,-77.022135 54.804037,-77.25 L 55.306966,-79.068034 L 55.611328,-79.068034 L 56.265625,-76.681966 L 55.948242,-76.681966 L 55.573893,-78.215169 Q 55.500651,-78.508138 55.455078,-78.734375 Q 55.398112,-78.338867 55.269531,-77.889648 L 54.927734,-76.681966 L 54.546875,-76.681966 L 54.092774,-78.293294 Q 54.076497,-78.351888 53.985352,-78.734375 Q 53.943034,-78.491862 53.88444,-78.246094 L 53.521484,-76.681966 L 53.197591,-76.681966 L 53.830729,-79.068034" />
<path d="M 56.613932,-79.068034 L 56.929688,-79.068034 L 56.929688,-76.681966 L 56.613932,-76.681966 L 56.613932,-79.068034" />
<path d="M 57.483073,-79.068034 L 57.785807,-79.068034 L 57.785807,-77.193034 L 59.039063,-79.068034 L 59.362956,-79.068034 L 59.362956,-76.681966 L 59.060221,-76.681966 L 59.060221,-78.555339 L 57.806966,-76.681966 L 57.483073,-76.681966 L 57.483073,-79.068034" />
<path d="M 61.010091,-78.132161 L 61.711589,-78.132161 L 61.711589,-78.576497 Q 61.610677,-78.666016 61.415365,-78.744954 Q 61.220052,-78.823893 61.014974,-78.823893 Q 60.778971,-78.823893 60.569011,-78.719727 Q 60.35905,-78.61556 60.249186,-78.400716 Q 60.139323,-78.185872 60.139323,-77.866862 Q 60.139323,-77.608073 60.230469,-77.386719 C 60.303949,-77.217397 60.423374,-77.063148 60.635742,-76.977376 C 60.740994,-76.933431 60.865777,-76.911458 61.010091,-76.911458 C 61.130534,-76.911458 61.240126,-76.932346 61.338867,-76.974121 C 61.437609,-77.015896 61.513563,-77.071506 61.566732,-77.140951 C 61.6199,-77.210395 61.664388,-77.305881 61.700195,-77.427409 L 61.985026,-77.349284 Q 61.923177,-77.108398 61.804362,-76.958659 Q 61.685547,-76.808919 61.4764,-76.725098 Q 61.267253,-76.641276 61.008464,-76.641276 Q 60.652018,-76.641276 60.378581,-76.78776 Q 60.105143,-76.934245 59.959473,-77.236165 Q 59.813802,-77.538086 59.813802,-77.886393 Q 59.813802,-78.237956 59.960287,-78.522786 Q 60.106771,-78.807617 60.394043,-78.958171 Q 60.681315,-79.108724 61.032878,-79.108724 Q 61.554525,-79.10791 62.020833,-78.736003 L 62.020833,-77.850586 L 61.010091,-77.852214 L 61.010091,-78.132161" />
<path d="M 63.40918,-79.068034 L 63.711914,-79.068034 L 63.711914,-77.193034 L 64.965169,-79.068034 L 65.289063,-79.068034 L 65.289063,-76.681966 L 64.986328,-76.681966 L 64.986328,-78.555339 L 63.733073,-76.681966 L 63.40918,-76.681966 L 63.40918,-79.068034" />
<path d="M 67.385417,-76.681966 L 67.385417,-78.058919 C 67.385417,-78.358398 67.336046,-78.560764 67.237305,-78.666016 C 67.138563,-78.771267 66.97309,-78.823893 66.740886,-78.823893 C 66.471738,-78.825165 66.273,-78.712216 66.19808,-78.51709 C 66.15956,-78.418891 66.1403,-78.266168 66.1403,-78.058919 L 66.1403,-76.681966 L 65.824544,-76.681966 L 65.824544,-78.060547 C 65.824544,-78.313368 65.854926,-78.51275 65.91569,-78.658691 C 66.037218,-78.949303 66.321506,-79.109996 66.768555,-79.108724 C 66.99859,-79.108724 67.184408,-79.064507 67.326009,-78.976074 C 67.467611,-78.887641 67.565538,-78.772895 67.619792,-78.631836 C 67.674045,-78.490777 67.701172,-78.300347 67.701172,-78.060547 L 67.701172,-76.681966 L 67.385417,-76.681966" />
<path d="M 68.217122,-79.068034 L 68.521484,-79.068034 L 68.521484,-77.036784 L 69.211589,-79.068034 L 69.496419,-79.068034 L 70.189779,-77.070964 L 70.189779,-79.068034 L 70.494141,-79.068034 L 70.494141,-76.681966 L 70.069336,-76.681966 L 69.498047,-78.342122 Q 69.411784,-78.594401 69.371094,-78.724609 Q 69.335287,-78.607422 69.257162,-78.371419 L 68.692383,-76.681966 L 68.217122,-76.681966 L 68.217122,-79.068034" />
<path d="M 70.99056,-79.068034 L 71.900391,-79.068034 Q 72.128255,-79.068034 72.285319,-79.028158 Q 72.442383,-78.988281 72.54655,-78.910156 Q 72.650716,-78.832031 72.721517,-78.687988 Q 72.792318,-78.543945 72.792318,-78.376302 Q 72.792318,-78.167969 72.675944,-78.014974 Q 72.55957,-77.861979 72.343099,-77.798503 Q 72.510742,-77.715495 72.59375,-77.580404 Q 72.676758,-77.445312 72.676758,-77.292318 Q 72.676758,-77.12793 72.583171,-76.977376 Q 72.489583,-76.826823 72.324382,-76.754395 Q 72.15918,-76.681966 71.885742,-76.681966 L 70.99056,-76.681966 L 70.99056,-79.068034 M 71.306315,-77.68457 L 71.306315,-76.963542 L 71.783203,-76.963542 C 71.954644,-76.963542 72.075629,-76.974664 72.146159,-76.996908 C 72.28637,-77.038428 72.366733,-77.1743 72.365886,-77.329753 C 72.365343,-77.498481 72.284505,-77.60753 72.123372,-77.656901 Q 72.032227,-77.68457 71.822266,-77.68457 L 71.306315,-77.68457 M 71.306315,-78.786458 L 71.306315,-77.966146 L 71.858073,-77.966146 C 72.009983,-77.966146 72.126356,-77.979438 72.207194,-78.006022 C 72.288032,-78.032606 72.351237,-78.078722 72.39681,-78.144368 C 72.442383,-78.210015 72.465169,-78.287326 72.465169,-78.376302 C 72.465169,-78.452257 72.449436,-78.51926 72.417969,-78.577311 C 72.354017,-78.695024 72.261651,-78.747413 72.115234,-78.775065 Q 72.053386,-78.786458 71.900391,-78.786458 L 71.306315,-78.786458" />
<path d="M 73.233399,-79.068034 L 75.013997,-79.068034 L 75.013997,-78.786458 L 73.549154,-78.786458 L 73.549154,-77.974284 L 74.869141,-77.974284 L 74.869141,-77.694336 L 73.549154,-77.694336 L 73.549154,-76.963542 L 74.958659,-76.963542 L 74.958659,-76.681966 L 73.233399,-76.681966 L 73.233399,-79.068034" />
<path d="M 75.455078,-79.068034 L 75.770833,-79.068034 L 75.770833,-78.008464 L 76.137044,-78.008464 Q 76.259115,-78.008464 76.312826,-78.019857 Q 76.386068,-78.03776 76.456869,-78.083333 Q 76.527669,-78.128906 76.617188,-78.242839 Q 76.706706,-78.356771 76.845052,-78.571615 L 77.160807,-79.068034 L 77.557943,-79.068034 L 77.142904,-78.41862 Q 77.019206,-78.22819 76.880859,-78.101237 Q 76.815755,-78.042643 76.69043,-77.982422 Q 77.033854,-77.935221 77.198242,-77.761068 Q 77.36263,-77.586914 77.36263,-77.333008 Q 77.36263,-77.136068 77.263346,-76.973307 Q 77.164063,-76.810547 76.998047,-76.746257 Q 76.832031,-76.681966 76.513021,-76.681966 L 75.455078,-76.681966 L 75.455078,-79.068034 M 75.770833,-77.735026 L 75.770833,-76.945638 L 76.526042,-76.945638 Q 76.791341,-76.945638 76.914225,-77.054688 Q 77.037109,-77.163737 77.037109,-77.333008 Q 77.037109,-77.448568 76.973633,-77.547038 Q 76.910156,-77.645508 76.788086,-77.690267 Q 76.666016,-77.735026 76.449544,-77.735026 L 75.770833,-77.735026" />
<path d="M 77.901367,-79.068034 L 78.235026,-79.068034 L 78.235026,-78.734375 L 77.901367,-78.734375 L 77.901367,-79.068034" />
<path d="M 77.901367,-77.673177 L 78.235026,-77.673177 L 78.235026,-77.339518 L 77.901367,-77.339518 L 77.901367,-77.673177" />
<path d="M 46.5,-87.088542 L 47.864746,-87.088542 Q 48.206543,-87.088542 48.442139,-87.028727 Q 48.677734,-86.968913 48.833984,-86.851725 Q 48.990234,-86.734538 49.096436,-86.518473 Q 49.202637,-86.302409 49.202637,-86.050944 Q 49.202637,-85.738444 49.028076,-85.508952 Q 48.853516,-85.27946 48.528809,-85.184245 Q 48.780274,-85.059733 48.904785,-84.857096 Q 49.029297,-84.65446 49.029297,-84.424967 Q 49.029297,-84.178385 48.888916,-83.952555 Q 48.748535,-83.726725 48.500733,-83.618083 Q 48.25293,-83.50944 47.842774,-83.50944 L 46.5,-83.50944 L 46.5,-87.088542 M 46.973633,-85.013346 L 46.973633,-83.931803 L 47.688965,-83.931803 C 47.946126,-83.931803 48.127604,-83.948486 48.233399,-83.981852 C 48.339193,-84.015218 48.420573,-84.077067 48.477539,-84.167399 C 48.534505,-84.257731 48.562988,-84.362305 48.562988,-84.48112 C 48.563243,-84.731008 48.43985,-84.900991 48.199219,-84.971842 Q 48.0625,-85.013346 47.747559,-85.013346 L 46.973633,-85.013346 M 46.973633,-86.666178 L 46.973633,-85.43571 L 47.80127,-85.43571 C 48.029134,-85.43571 48.203695,-85.455648 48.324951,-85.495524 C 48.446208,-85.5354 48.541016,-85.604574 48.609375,-85.703044 C 48.677734,-85.801514 48.711914,-85.91748 48.711914,-86.050944 C 48.711914,-86.164876 48.688314,-86.265381 48.641113,-86.352458 C 48.545186,-86.529027 48.406637,-86.60761 48.187012,-86.649089 Q 48.094238,-86.666178 47.864746,-86.666178 L 46.973633,-86.666178" />
<path d="M 49.854492,-87.088542 L 51.145996,-87.088542 C 51.578532,-87.087321 51.912598,-87.007161 52.148193,-86.848063 C 52.381526,-86.688024 52.593979,-86.4242 52.718262,-86.002116 C 52.781738,-85.792155 52.813477,-85.55127 52.813477,-85.27946 C 52.813477,-84.960449 52.766683,-84.676839 52.673096,-84.42863 C 52.579509,-84.18042 52.438314,-83.976563 52.249512,-83.817057 Q 52.032227,-83.63151 51.724609,-83.56071 Q 51.504883,-83.50944 51.087402,-83.50944 L 49.854492,-83.50944 L 49.854492,-87.088542 M 50.328125,-86.666178 L 50.328125,-83.931803 L 51.080078,-83.931803 Q 51.502442,-83.931803 51.692871,-84.005046 C 51.868652,-84.073405 52.017985,-84.208089 52.140869,-84.409098 C 52.263753,-84.610107 52.325195,-84.897786 52.325195,-85.272135 C 52.32723,-85.813009 52.191325,-86.189596 51.96875,-86.414714 C 51.888997,-86.494466 51.781983,-86.556315 51.647705,-86.60026 C 51.513428,-86.644206 51.328288,-86.666178 51.092285,-86.666178 L 50.328125,-86.666178" />
<path d="M 53.238281,-86.014323 L 54.588379,-86.014323 L 54.588379,-85.572428 L 53.238281,-85.572428 L 53.238281,-86.014323" />
<path d="M 56.607422,-87.088542 L 56.607422,-83.494792 L 56.324219,-83.494792 Q 56.209473,-83.726725 55.933594,-83.973307 Q 55.657715,-84.219889 55.289063,-84.393229 L 55.289063,-84.818034 Q 55.494141,-84.74235 55.751709,-84.590983 Q 56.009277,-84.439616 56.167969,-84.288249 L 56.167969,-87.088542 L 56.607422,-87.088542" />
<path d="M 91.297852,-78.275391 L 91.0,-78.301432 C 91.00434,-78.460938 91.048014,-78.603895 91.131022,-78.730306 C 91.21403,-78.856717 91.328505,-78.951389 91.474447,-79.014323 C 91.620389,-79.077257 91.801324,-79.108724 92.017253,-79.108724 C 92.187609,-79.108724 92.340875,-79.077528 92.477051,-79.015137 C 92.613227,-78.952745 92.717665,-78.865397 92.790365,-78.753092 C 92.863064,-78.640788 92.899414,-78.521159 92.899414,-78.394206 C 92.898397,-78.138808 92.771308,-77.938883 92.492513,-77.811523 Q 92.349284,-77.746419 91.964356,-77.659342 Q 91.579427,-77.572266 91.488281,-77.489258 C 91.426432,-77.433919 91.395508,-77.36339 91.395508,-77.277669 C 91.395508,-77.178928 91.439182,-77.094564 91.52653,-77.024577 C 91.613878,-76.95459 91.753038,-76.919596 91.944011,-76.919596 C 92.312629,-76.919088 92.490648,-77.075812 92.525065,-77.376953 L 92.8278,-77.354167 C 92.822374,-77.214193 92.783312,-77.088867 92.710612,-76.97819 C 92.637912,-76.867513 92.534017,-76.783691 92.398926,-76.726725 C 92.263835,-76.669759 92.107856,-76.641276 91.93099,-76.641276 C 91.770399,-76.641276 91.624458,-76.668403 91.493164,-76.722656 C 91.361871,-76.77691 91.262044,-76.856391 91.193685,-76.9611 C 91.125326,-77.065809 91.091146,-77.178385 91.091146,-77.298828 C 91.091485,-77.516825 91.201484,-77.699863 91.429688,-77.818034 Q 91.561524,-77.888021 91.8903,-77.96696 Q 92.219076,-78.045898 92.315104,-78.083333 C 92.516792,-78.159458 92.593018,-78.270338 92.595052,-78.420247 C 92.594713,-78.565443 92.506416,-78.702569 92.321615,-78.77181 C 92.229384,-78.807617 92.123047,-78.825521 92.002604,-78.825521 C 91.866971,-78.825521 91.7449,-78.801921 91.636393,-78.75472 C 91.527886,-78.70752 91.447863,-78.645671 91.396322,-78.569173 C 91.344781,-78.492676 91.311958,-78.394748 91.297852,-78.275391" />
<path d="M 93.340495,-79.068034 L 93.65625,-79.068034 L 93.65625,-77.943359 L 94.896484,-77.943359 L 94.896484,-79.068034 L 95.21224,-79.068034 L 95.21224,-76.681966 L 94.896484,-76.681966 L 94.896484,-77.661784 L 93.65625,-77.661784 L 93.65625,-76.681966 L 93.340495,-76.681966 L 93.340495,-79.068034" />
<path d="M 95.744466,-79.068034 L 97.525065,-79.068034 L 97.525065,-78.786458 L 96.060221,-78.786458 L 96.060221,-77.974284 L 97.380208,-77.974284 L 97.380208,-77.694336 L 96.060221,-77.694336 L 96.060221,-76.963542 L 97.469727,-76.963542 L 97.469727,-76.681966 L 95.744466,-76.681966 L 95.744466,-79.068034" />
<path d="M 97.967774,-79.068034 L 99.748372,-79.068034 L 99.748372,-78.786458 L 98.283529,-78.786458 L 98.283529,-77.974284 L 99.603516,-77.974284 L 99.603516,-77.694336 L 98.283529,-77.694336 L 98.283529,-76.963542 L 99.693034,-76.963542 L 99.693034,-76.681966 L 97.967774,-76.681966 L 97.967774,-79.068034" />
<path d="M 100.791667,-79.068034 L 101.107422,-79.068034 L 101.107422,-76.963542 L 101.89681,-76.963542 L 101.89681,-76.681966 L 100.005534,-76.681966 L 100.005534,-76.963542 L 100.791667,-76.963542 L 100.791667,-79.068034" />
<path d="M 101.895182,-77.673177 L 102.228841,-77.673177 L 102.228841,-77.339518 L 101.895182,-77.339518 L 101.895182,-77.673177" />
<path d="M 101.895182,-79.068034 L 102.228841,-79.068034 L 102.228841,-78.734375 L 101.895182,-78.734375 L 101.895182,-79.068034" />
<path d="M 92.318359,-87.088542 L 92.318359,-83.494792 L 92.035156,-83.494792 Q 91.92041,-83.726725 91.644531,-83.973307 Q 91.368652,-84.219889 91.0,-84.393229 L 91.0,-84.818034 Q 91.205078,-84.74235 91.462647,-84.590983 Q 91.720215,-84.439616 91.878906,-84.288249 L 91.878906,-87.088542 L 92.318359,-87.088542" />
<path d="M -45.946143,22.150586 L -55.946143,22.150586 L -55.946143,21.650586 L -45.946143,21.650586 L -45.946143,22.150586" />
<path d="M -45.946143,78.550586 L -55.946143,78.550586 L -55.946143,78.050586 L -45.946143,78.050586 L -45.946143,78.550586" />
<path d="M -46.946143,75.300586 A 10.137937550497139,10.137937550497139 -170.5376777919744 0,0 -47.946143,78.300586 A 10.137937550497139,10.137937550497139 -9.46232220802563 0,0 -48.946143,75.300586 L -48.196143,75.581836 L -48.196143,55.349365 L -47.696143,55.349365 L -47.696143,75.581836 L -46.946143,75.300586" />
<path d="M -48.946143,24.900586 A 10.137937550497139,10.137937550497139 9.462322208025604 0,0 -47.946143,21.900586 A 10.137937550497139,10.137937550497139 170.53767779197437 0,0 -46.946143,24.900586 L -47.696143,24.619336 L -47.696143,44.851807 L -48.196143,44.851807 L -48.196143,24.619336 L -48.946143,24.900586" />
<path d="M -47.393286,47.174805 L -47.365942,46.851807 Q -47.04978,46.882568 -46.858374,47.098755 Q -46.666968,47.314942 -46.666968,47.656738 Q -46.666968,48.073731 -46.971167,48.314697 Q -47.21897,48.51294 -47.559058,48.51294 Q -47.916235,48.51294 -48.14353,48.287354 Q -48.370825,48.061768 -48.370825,47.733643 Q -48.370825,47.48584 -48.213599,47.260254 L -48.886938,47.395264 L -48.886938,48.39502 L -49.180884,48.39502 L -49.180884,47.14917 L -47.894019,46.906494 L -47.856421,47.195313 Q -47.964087,47.263672 -48.031592,47.383301 Q -48.099097,47.50293 -48.099097,47.651611 Q -48.099097,47.890869 -47.946997,48.038696 Q -47.794897,48.186524 -47.531714,48.186524 Q -47.254858,48.186524 -47.087378,48.032715 Q -46.919897,47.878906 -46.919897,47.656738 Q -46.919897,47.472168 -47.038672,47.341431 Q -47.157446,47.210693 -47.393286,47.174805" />
<path d="M -48.577612,50.088623 L -48.601538,50.394531 Q -48.893774,50.356934 -49.059546,50.168091 Q -49.225317,49.979248 -49.225317,49.683594 Q -49.225317,49.287109 -48.938208,49.052979 Q -48.608374,48.784668 -47.882056,48.784668 Q -47.232642,48.784668 -46.949805,49.027344 Q -46.666968,49.27002 -46.666968,49.654541 Q -46.666968,49.880127 -46.774634,50.057861 Q -46.8823,50.235596 -47.084814,50.33728 Q -47.287329,50.438965 -47.523169,50.438965 Q -47.882056,50.438965 -48.108496,50.222778 Q -48.334937,50.006592 -48.334937,49.698975 Q -48.334937,49.522949 -48.252905,49.362305 Q -48.170874,49.20166 -48.001685,49.090576 Q -48.377661,49.093994 -48.58103,49.177734 Q -48.784399,49.261475 -48.890356,49.406738 Q -48.972388,49.517822 -48.972388,49.664795 Q -48.972388,49.847656 -48.840796,49.972412 Q -48.758765,50.047608 -48.577612,50.088623 M -47.52146,49.138428 Q -47.764136,49.138428 -47.913672,49.283692 Q -48.063208,49.428955 -48.063208,49.637451 Q -48.063208,49.847656 -47.913672,49.986084 Q -47.764136,50.124512 -47.50437,50.124512 Q -47.234351,50.124512 -47.077124,49.984375 Q -46.919897,49.844238 -46.919897,49.649414 Q -46.919897,49.516113 -46.995947,49.394775 Q -47.071997,49.273438 -47.217261,49.205933 Q -47.362524,49.138428 -47.52146,49.138428" />
<path d="M -46.709692,50.917481 L -46.709692,51.267822 L -47.060034,51.267822 L -47.060034,50.917481 L -46.709692,50.917481" />
<path d="M -46.709692,52.703369 L -46.709692,53.010986 L -47.309546,53.010986 L -47.309546,53.349365 L -47.591528,53.349365 L -47.591528,53.010986 L -49.215063,53.010986 L -49.215063,52.759766 L -47.591528,51.616455 L -47.309546,51.616455 L -47.309546,52.703369 L -46.709692,52.703369 M -47.591528,52.703369 L -47.591528,51.918945 L -48.721167,52.703369 L -47.591528,52.703369" />
<path d="M -114.096143,9.900586 L -114.096143,19.900586 L -114.596143,19.900586 L -114.596143,9.900586 L -114.096143,9.900586" />
<path d="M -57.696143,9.900586 L -57.696143,19.900586 L -58.196143,19.900586 L -58.196143,9.900586 L -57.696143,9.900586" />
<path d="M -60.946143,10.900586 A 10.137937550497139,10.137937550497139 99.46232220802563 0,0 -57.946143,11.900586 A 10.137937550497139,10.137937550497139 -99.46232220802563 0,0 -60.946143,12.900586 L -60.664893,12.150586 L -80.897363,12.150586 L -80.897363,11.650586 L -60.664893,11.650586 L -60.946143,10.900586" />
<path d="M -111.346143,12.900586 A 10.137937550497139,10.137937550497139 -80.53767779197439 0,0 -114.346143,11.900586 A 10.137937550497139,10.137937550497139 80.53767779197437 0,0 -111.346143,10.900586 L -111.627393,11.650586 L -91.394922,11.650586 L -91.394922,12.150586 L -111.627393,12.150586 L -111.346143,12.900586" />
<path d="M -89.071924,11.34773 L -89.394922,11.320386 Q -89.36416,11.004224 -89.147974,10.812817 Q -88.931787,10.621411 -88.58999,10.621411 Q -88.172998,10.621411 -87.932031,10.92561 Q -87.733789,11.173413 -87.733789,11.513501 Q -87.733789,11.870679 -87.959375,12.097974 Q -88.184961,12.325269 -88.513086,12.325269 Q -88.760889,12.325269 -88.986475,12.168042 L -88.851465,12.841382 L -87.851709,12.841382 L -87.851709,13.135327 L -89.097559,13.135327 L -89.340234,11.848462 L -89.051416,11.810864 Q -88.983057,11.91853 -88.863428,11.986035 Q -88.743799,12.05354 -88.595117,12.05354 Q -88.355859,12.05354 -88.208032,11.90144 Q -88.060205,11.749341 -88.060205,11.486157 Q -88.060205,11.209302 -88.214014,11.041821 Q -88.367822,10.874341 -88.58999,10.874341 Q -88.77456,10.874341 -88.905298,10.993115 Q -89.036035,11.11189 -89.071924,11.34773" />
<path d="M -86.158105,12.532056 L -85.852197,12.555981 Q -85.889795,12.848218 -86.078638,13.013989 Q -86.26748,13.179761 -86.563135,13.179761 Q -86.959619,13.179761 -87.19375,12.892651 Q -87.46206,12.562817 -87.46206,11.836499 Q -87.46206,11.187085 -87.219385,10.904248 Q -86.976709,10.621411 -86.592187,10.621411 Q -86.366602,10.621411 -86.188867,10.729077 Q -86.011133,10.836743 -85.909448,11.039258 Q -85.807764,11.241773 -85.807764,11.477612 Q -85.807764,11.836499 -86.02395,12.06294 Q -86.240137,12.28938 -86.547754,12.28938 Q -86.723779,12.28938 -86.884424,12.207349 Q -87.045068,12.125317 -87.156152,11.956128 Q -87.152734,12.332105 -87.068994,12.535474 Q -86.985254,12.738843 -86.83999,12.8448 Q -86.728906,12.926831 -86.581934,12.926831 Q -86.399072,12.926831 -86.274316,12.795239 Q -86.199121,12.713208 -86.158105,12.532056 M -87.108301,11.475903 Q -87.108301,11.718579 -86.963037,11.868115 Q -86.817773,12.017651 -86.609277,12.017651 Q -86.399072,12.017651 -86.260644,11.868115 Q -86.122217,11.718579 -86.122217,11.458814 Q -86.122217,11.188794 -86.262353,11.031567 Q -86.40249,10.874341 -86.597314,10.874341 Q -86.730615,10.874341 -86.851953,10.950391 Q -86.973291,11.02644 -87.040796,11.171704 Q -87.108301,11.316968 -87.108301,11.475903" />
<path d="M -85.329248,10.664136 L -84.978906,10.664136 L -84.978906,11.014478 L -85.329248,11.014478 L -85.329248,10.664136" />
<path d="M -83.543359,10.664136 L -83.235742,10.664136 L -83.235742,11.263989 L -82.897363,11.263989 L -82.897363,11.545972 L -83.235742,11.545972 L -83.235742,13.169507 L -83.486963,13.169507 L -84.630273,11.545972 L -84.630273,11.263989 L -83.543359,11.263989 L -83.543359,10.664136 M -83.543359,11.545972 L -84.327783,11.545972 L -83.543359,12.67561 L -83.543359,11.545972" />
<path d="M -89.571143,2.549707 L -89.571143,-2.450293 L -89.071143,-2.450293 L -89.071143,2.549707 L -89.571143,2.549707" />
<path d="M -83.221143,2.549707 L -83.221143,-2.450293 L -82.721143,-2.450293 L -82.721143,2.549707 L -83.221143,2.549707" />
<path d="M -79.971143,1.549707 A 10.137937550497139,10.137937550497139 -80.53767779197439 0,0 -82.971143,0.549707 A 10.137937550497139,10.137937550497139 80.53767779197437 0,0 -79.971143,-0.450293 L -80.252393,0.299707 L -76.971143,0.299707 L -76.971143,0.799707 L -80.252393,0.799707 L -79.971143,1.549707" />
<path d="M -92.321143,-0.450293 A 10.137937550497139,10.137937550497139 99.46232220802561 0,0 -89.321143,0.549707 A 10.137937550497139,10.137937550497139 -99.46232220802564 0,0 -92.321143,1.549707 L -92.039893,0.799707 L -95.321143,0.799707 L -95.321143,0.299707 L -92.039893,0.299707 L -92.321143,-0.450293" />
<path d="M -87.129663,1.182031 L -86.823755,1.205957 Q -86.861353,1.498193 -87.050195,1.663965 Q -87.239038,1.829736 -87.534692,1.829736 Q -87.931177,1.829736 -88.165308,1.542627 Q -88.433618,1.212793 -88.433618,0.486475 Q -88.433618,-0.162939 -88.190942,-0.445776 Q -87.948267,-0.728613 -87.563745,-0.728613 Q -87.338159,-0.728613 -87.160425,-0.620947 Q -86.98269,-0.513281 -86.881006,-0.310767 Q -86.779321,-0.108252 -86.779321,0.127588 Q -86.779321,0.486475 -86.995508,0.712915 Q -87.211694,0.939355 -87.519312,0.939355 Q -87.695337,0.939355 -87.855981,0.857324 Q -88.016626,0.775293 -88.12771,0.606103 Q -88.124292,0.98208 -88.040552,1.185449 Q -87.956812,1.388818 -87.811548,1.494775 Q -87.700464,1.576807 -87.553491,1.576807 Q -87.37063,1.576807 -87.245874,1.445215 Q -87.170679,1.363184 -87.129663,1.182031 M -88.079858,0.125879 Q -88.079858,0.368555 -87.934595,0.518091 Q -87.789331,0.667627 -87.580835,0.667627 Q -87.37063,0.667627 -87.232202,0.518091 Q -87.093774,0.368555 -87.093774,0.108789 Q -87.093774,-0.16123 -87.233911,-0.318457 Q -87.374048,-0.475684 -87.568872,-0.475684 Q -87.702173,-0.475684 -87.823511,-0.399634 Q -87.944849,-0.323584 -88.012354,-0.17832 Q -88.079858,-0.033057 -88.079858,0.125879" />
<path d="M -86.300806,-0.685889 L -85.950464,-0.685889 L -85.950464,-0.335547 L -86.300806,-0.335547 L -86.300806,-0.685889" />
<path d="M -85.191675,0.016504 L -85.499292,-0.024512 Q -85.46853,-0.337256 -85.250635,-0.533789 Q -85.032739,-0.730322 -84.702905,-0.730322 Q -84.337183,-0.730322 -84.097925,-0.502173 Q -83.858667,-0.274023 -83.858667,0.054102 Q -83.858667,0.296777 -83.981714,0.458276 Q -84.104761,0.619775 -84.326929,0.671045 C -84.09942,0.773192 -83.981358,0.964812 -83.981714,1.178613 C -83.981714,1.292546 -84.012191,1.400212 -84.073145,1.501611 C -84.134098,1.603011 -84.222111,1.683048 -84.337183,1.741724 C -84.452254,1.800399 -84.578149,1.829736 -84.714868,1.829736 C -84.91311,1.829736 -85.078882,1.773055 -85.212183,1.659692 C -85.345483,1.54633 -85.430933,1.38654 -85.46853,1.180322 L -85.160913,1.125635 C -85.118011,1.426416 -84.94462,1.576807 -84.708032,1.576807 C -84.587264,1.576807 -84.488713,1.539779 -84.412378,1.465723 C -84.336043,1.391667 -84.297876,1.298242 -84.297876,1.185449 C -84.297876,1.043034 -84.350285,0.937646 -84.455103,0.869287 C -84.55992,0.800928 -84.67784,0.766748 -84.808862,0.766748 C -84.821395,0.766748 -84.837915,0.767887 -84.858423,0.770166 L -84.892603,0.500146 Q -84.76272,0.534326 -84.675562,0.534326 Q -84.461938,0.534326 -84.323511,0.396753 Q -84.185083,0.25918 -84.185083,0.047266 Q -84.185083,-0.174902 -84.334619,-0.325293 Q -84.484155,-0.475684 -84.701196,-0.475684 Q -84.884058,-0.475684 -85.011377,-0.360327 Q -85.138696,-0.244971 -85.191675,0.016504" />
<path d="M 40.2,50.910352 L 4.675,50.910352 L 4.675,50.410352 L 40.2,50.410352 L 40.2,50.910352" />
<path d="M 40.2,-25.689649 L 30.2,-25.689649 L 30.2,-26.189649 L 40.2,-26.189649 L 40.2,-25.689649" />
<path d="M 37.2,-22.939649 A 10.137937550497139,10.137937550497139 9.462322208025604 0,0 38.2,-25.939649 A 10.137937550497139,10.137937550497139 170.53767779197437 0,0 39.2,-22.939649 L 38.45,-23.220899 L 38.45,7.117554 L 37.95,7.117554 L 37.95,-23.220899 L 37.2,-22.939649" />
<path d="M 39.2,47.660352 A 10.137937550497139,10.137937550497139 -170.5376777919744 0,0 38.2,50.660352 A 10.137937550497139,10.137937550497139 -9.46232220802563 0,0 37.2,47.660352 L 37.95,47.941602 L 37.95,17.603149 L 38.45,17.603149 L 38.45,47.941602 L 39.2,47.660352" />
<path d="M 39.140796,15.603149 L 39.140796,14.376099 Q 38.874194,14.610229 38.4854,14.817871 Q 38.096607,15.025513 37.677905,15.136597 Q 37.259204,15.247681 36.96355,15.252808 L 36.96355,14.936645 Q 37.337817,14.911011 37.652271,14.818726 Q 38.098316,14.690552 38.520435,14.455566 Q 38.942554,14.220581 39.197192,13.981323 L 39.43645,13.981323 L 39.43645,15.603149 L 39.140796,15.603149" />
<path d="M 38.83147,12.386841 L 38.855396,12.080933 Q 39.147632,12.11853 39.313403,12.307373 Q 39.479175,12.496216 39.479175,12.79187 Q 39.479175,13.188354 39.192066,13.422485 Q 38.862232,13.690796 38.135913,13.690796 Q 37.486499,13.690796 37.203662,13.44812 Q 36.920825,13.205444 36.920825,12.820923 Q 36.920825,12.595337 37.028491,12.417603 Q 37.136157,12.239868 37.338672,12.138184 Q 37.541187,12.036499 37.777026,12.036499 Q 38.135913,12.036499 38.362354,12.252686 Q 38.588794,12.468872 38.588794,12.776489 Q 38.588794,12.952515 38.506763,13.113159 Q 38.424732,13.273804 38.255542,13.384888 Q 38.631519,13.38147 38.834888,13.297729 Q 39.038257,13.213989 39.144214,13.068726 Q 39.226245,12.957642 39.226245,12.810669 Q 39.226245,12.627808 39.094653,12.503052 Q 39.012622,12.427856 38.83147,12.386841 M 37.775317,13.337036 Q 38.017993,13.337036 38.167529,13.191772 Q 38.317066,13.046509 38.317066,12.838013 Q 38.317066,12.627808 38.167529,12.48938 Q 38.017993,12.350952 37.758228,12.350952 Q 37.488208,12.350952 37.330982,12.491089 Q 37.173755,12.631226 37.173755,12.82605 Q 37.173755,12.959351 37.249805,13.080688 Q 37.325855,13.202026 37.471118,13.269531 Q 37.616382,13.337036 37.775317,13.337036" />
<path d="M 36.96355,11.557983 L 36.96355,11.207642 L 37.313892,11.207642 L 37.313892,11.557983 L 36.96355,11.557983" />
<path d="M 38.83147,9.467895 L 38.855396,9.161987 Q 39.147632,9.199585 39.313403,9.388428 Q 39.479175,9.57727 39.479175,9.872925 Q 39.479175,10.269409 39.192066,10.50354 Q 38.862232,10.771851 38.135913,10.771851 Q 37.486499,10.771851 37.203662,10.529175 Q 36.920825,10.286499 36.920825,9.901978 Q 36.920825,9.676392 37.028491,9.498657 Q 37.136157,9.320923 37.338672,9.219238 Q 37.541187,9.117554 37.777026,9.117554 Q 38.135913,9.117554 38.362354,9.33374 Q 38.588794,9.549927 38.588794,9.857544 Q 38.588794,10.033569 38.506763,10.194214 Q 38.424732,10.354858 38.255542,10.465942 Q 38.631519,10.462524 38.834888,10.378784 Q 39.038257,10.295044 39.144214,10.14978 Q 39.226245,10.038696 39.226245,9.891724 Q 39.226245,9.708862 39.094653,9.584106 Q 39.012622,9.508911 38.83147,9.467895 M 37.775317,10.418091 Q 38.017993,10.418091 38.167529,10.272827 Q 38.317066,10.127563 38.317066,9.919067 Q 38.317066,9.708862 38.167529,9.570435 Q 38.017993,9.432007 37.758228,9.432007 Q 37.488208,9.432007 37.330982,9.572144 Q 37.173755,9.71228 37.173755,9.907104 Q 37.173755,10.040405 37.249805,10.161743 Q 37.325855,10.283081 37.471118,10.350586 Q 37.616382,10.418091 37.775317,10.418091" />
<path d="M -98.969385,81.318652 L -98.401025,81.318652 L -98.401025,83.064746 L -97.299463,83.064746 Q -96.38833,83.064746 -96.039697,83.444141 Q -95.691064,83.823535 -95.691064,84.371387 Q -95.691064,84.690723 -95.821436,84.957324 Q -95.951807,85.223926 -96.165674,85.371875 Q -96.379541,85.519824 -96.695947,85.572559 Q -96.921533,85.613574 -97.349268,85.613574 L -98.969385,85.613574 L -98.969385,81.318652 M -98.401025,83.571582 L -98.401025,85.106738 L -97.302393,85.106738 Q -96.915674,85.106738 -96.772119,85.068652 Q -96.549463,85.007129 -96.413232,84.815234 Q -96.277002,84.62334 -96.277002,84.353809 Q -96.277002,83.981738 -96.508447,83.77666 Q -96.739893,83.571582 -97.290674,83.571582 L -98.401025,83.571582" />
<path d="M -95.046533,81.318652 L -94.519189,81.318652 L -94.519189,85.613574 L -95.046533,85.613574 L -95.046533,81.318652" />
<path d="M -92.235498,81.350879 Q -91.964502,81.453418 -91.671533,81.702441 Q -91.648096,81.482715 -91.566064,81.318652 L -91.015283,81.318652 Q -91.114893,81.497363 -91.148584,81.692188 Q -91.182275,81.887012 -91.182275,82.622363 L -91.182275,83.325488 Q -91.182275,83.677051 -91.208643,83.811816 Q -91.255518,84.028613 -91.372705,84.170703 Q -91.489893,84.312793 -91.738916,84.406543 Q -91.987939,84.500293 -92.386377,84.500293 Q -92.787744,84.500293 -93.092432,84.39043 Q -93.397119,84.280566 -93.558252,84.076953 Q -93.719385,83.87334 -93.789697,83.542285 L -93.274072,83.471973 Q -93.189111,83.803027 -93.011865,83.933398 Q -92.834619,84.06377 -92.462549,84.06377 Q -92.064111,84.06377 -91.861963,83.885059 Q -91.712549,83.753223 -91.712549,83.430957 Q -91.712549,83.40166 -91.715479,83.293262 Q -92.017236,83.187793 -92.655908,83.111621 Q -92.969385,83.073535 -93.124658,83.03252 Q -93.335596,82.973926 -93.504053,82.859668 Q -93.67251,82.74541 -93.776514,82.556445 Q -93.880518,82.367481 -93.880518,82.138965 Q -93.880518,81.749316 -93.605127,81.498828 Q -93.329736,81.24834 -92.817041,81.24834 Q -92.506494,81.24834 -92.235498,81.350879 M -91.715479,82.880176 L -91.715479,82.686816 Q -91.715479,82.338184 -91.800439,82.159473 Q -91.911768,81.928027 -92.149072,81.794727 Q -92.386377,81.661426 -92.691064,81.661426 Q -92.998682,81.661426 -93.15835,81.802051 Q -93.318018,81.942676 -93.318018,82.153613 Q -93.318018,82.291309 -93.244775,82.404102 Q -93.171533,82.516895 -93.036768,82.575488 Q -92.902002,82.634082 -92.576807,82.680957 Q -92.002588,82.762988 -91.715479,82.880176" />
<path d="M -90.364893,81.318652 L -89.837549,81.318652 L -89.837549,83.017871 Q -89.837549,83.615527 -89.59292,83.829395 Q -89.348291,84.043262 -89.011377,84.043262 Q -88.800439,84.043262 -88.643701,83.948047 Q -88.486963,83.852832 -88.425439,83.693164 Q -88.363916,83.533496 -88.363916,83.211231 L -88.363916,81.318652 L -87.836572,81.318652 L -87.836572,83.231738 Q -87.836572,83.597949 -87.865869,83.744434 Q -87.912744,83.97002 -88.029932,84.134082 Q -88.147119,84.298145 -88.382959,84.399219 Q -88.618799,84.500293 -88.900049,84.500293 Q -89.54751,84.500293 -89.890283,83.987598 L -89.890283,84.429981 L -90.364893,84.429981 L -90.364893,81.318652" />
<path d="M -84.066064,81.318652 L -83.483057,81.318652 L -81.801416,85.613574 L -82.381494,85.613574 L -83.54165,82.493457 Q -83.673486,82.141895 -83.773096,81.790332 Q -83.863916,82.118457 -83.998682,82.493457 L -85.114893,85.613574 L -85.730127,85.613574 L -84.066064,81.318652" />
<path d="M -81.464502,81.318652 L -80.937158,81.318652 L -80.937158,84.429981 L -81.464502,84.429981 L -81.464502,81.318652" />
<path d="M -81.464502,85.007129 L -80.937158,85.007129 L -80.937158,85.613574 L -81.464502,85.613574 L -81.464502,85.007129" />
<path d="M -77.459619,82.253223 L -78.004541,82.320606 Q -78.124658,81.986621 -78.329736,81.834277 Q -78.534814,81.681934 -78.824854,81.681934 Q -79.214502,81.681934 -79.475244,81.954395 Q -79.735986,82.226856 -79.765283,82.739551 L -77.444971,82.739551 Q -77.442041,82.833301 -77.442041,82.880176 Q -77.442041,83.650684 -77.837549,84.075488 Q -78.233057,84.500293 -78.85708,84.500293 Q -79.501611,84.500293 -79.905908,84.066699 Q -80.310205,83.633106 -80.310205,82.847949 Q -80.310205,82.08916 -79.910303,81.66875 Q -79.5104,81.24834 -78.827783,81.24834 Q -78.285791,81.24834 -77.937158,81.512012 Q -77.588525,81.775684 -77.459619,82.253223 M -77.998682,83.173145 L -79.735986,83.173145 Q -79.709619,83.580371 -79.462061,83.823535 Q -79.214502,84.066699 -78.851221,84.066699 Q -78.449854,84.066699 -78.1979,83.762012 Q -78.033838,83.565723 -77.998682,83.173145" />
<path d="M -76.223291,81.318652 L -75.67251,81.318652 L -75.042627,83.712207 L -74.92251,83.181934 L -74.427393,81.318652 L -73.879541,81.318652 L -72.906885,84.429981 L -73.41958,84.429981 L -73.952783,82.631152 L -74.131494,82.030566 L -74.286768,82.625293 L -74.752588,84.429981 L -75.29458,84.429981 L -75.789697,82.607715 Q -75.939111,82.015918 -75.95083,81.966113 L -76.1354,82.634082 L -76.630518,84.429981 L -77.175439,84.429981 L -76.223291,81.318652" />
<path d="M -105.830713,-88.032227 L -105.262354,-88.032227 L -105.262354,-86.081055 L -103.246729,-86.081055 L -103.246729,-85.574219 L -105.262354,-85.574219 L -105.262354,-84.244141 L -102.933252,-84.244141 L -102.933252,-83.737305 L -105.830713,-83.737305 L -105.830713,-88.032227" />
<path d="M -102.268213,-88.032227 L -101.740869,-88.032227 L -101.740869,-86.40332 Q -101.740869,-86.069336 -101.652979,-85.788086 Q -101.594385,-85.603516 -101.456689,-85.499512 Q -101.318994,-85.395508 -101.146143,-85.395508 Q -100.952783,-85.395508 -100.759424,-85.509766 L -100.577783,-85.020508 Q -100.853174,-84.850586 -101.119775,-84.850586 Q -101.304346,-84.850586 -101.458154,-84.956055 Q -101.611963,-85.061523 -101.793604,-85.392578 L -101.793604,-84.920898 L -102.268213,-84.920898 L -102.268213,-88.032227" />
<path d="M -99.980127,-85.196289 Q -100.460596,-85.612305 -100.460596,-86.476563 Q -100.460596,-87.264648 -100.057764,-87.683594 Q -99.654932,-88.102539 -99.001611,-88.102539 Q -98.594385,-88.102539 -98.250146,-87.912109 Q -97.905908,-87.72168 -97.725732,-87.377441 Q -97.545557,-87.033203 -97.545557,-86.432617 Q -97.545557,-85.691406 -97.952783,-85.270996 Q -98.36001,-84.850586 -99.001611,-84.850586 Q -99.57876,-84.850586 -99.980127,-85.196289 M -99.657861,-87.371582 Q -99.918604,-87.074219 -99.918604,-86.476563 Q -99.918604,-85.878906 -99.657861,-85.583008 Q -99.397119,-85.287109 -99.001611,-85.287109 Q -98.611963,-85.287109 -98.349756,-85.584473 Q -98.087549,-85.881836 -98.087549,-86.458984 Q -98.087549,-87.071289 -98.348291,-87.370117 Q -98.609033,-87.668945 -99.001611,-87.668945 Q -99.397119,-87.668945 -99.657861,-87.371582" />
<path d="M -96.927393,-88.032227 L -96.400049,-88.032227 L -96.400049,-86.333008 Q -96.400049,-85.735352 -96.15542,-85.521484 Q -95.910791,-85.307617 -95.573877,-85.307617 Q -95.362939,-85.307617 -95.206201,-85.402832 Q -95.049463,-85.498047 -94.987939,-85.657715 Q -94.926416,-85.817383 -94.926416,-86.139648 L -94.926416,-88.032227 L -94.399072,-88.032227 L -94.399072,-86.119141 Q -94.399072,-85.75293 -94.428369,-85.606445 Q -94.475244,-85.380859 -94.592432,-85.216797 Q -94.709619,-85.052734 -94.945459,-84.95166 Q -95.181299,-84.850586 -95.462549,-84.850586 Q -96.11001,-84.850586 -96.452783,-85.363281 L -96.452783,-84.920898 L -96.927393,-84.920898 L -96.927393,-88.032227" />
<path d="M -92.362939,-88.026367 L -92.439111,-87.560547 Q -92.582666,-87.581055 -92.670557,-87.581055 Q -92.787744,-87.581055 -92.850732,-87.542969 Q -92.913721,-87.504883 -92.941553,-87.44043 Q -92.969385,-87.375977 -92.969385,-87.150391 L -92.969385,-85.331055 L -92.439111,-85.331055 L -92.439111,-84.920898 L -92.969385,-84.920898 L -92.969385,-83.833984 L -93.493799,-84.150391 L -93.493799,-84.920898 L -93.880518,-84.920898 L -93.880518,-85.331055 L -93.493799,-85.331055 L -93.493799,-87.121094 Q -93.493799,-87.595703 -93.429346,-87.743652 Q -93.364893,-87.891602 -93.206689,-87.982422 Q -93.048486,-88.073242 -92.761377,-88.073242 Q -92.585596,-88.073242 -92.362939,-88.026367" />
<path d="M -90.177393,-88.032227 L -86.972314,-88.032227 L -86.972314,-87.525391 L -89.609033,-87.525391 L -89.609033,-86.063477 L -87.233057,-86.063477 L -87.233057,-85.55957 L -89.609033,-85.55957 L -89.609033,-84.244141 L -87.071924,-84.244141 L -87.071924,-83.737305 L -90.177393,-83.737305 L -90.177393,-88.032227" />
<path d="M -86.26626,-88.032227 L -85.738916,-88.032227 L -85.738916,-83.737305 L -86.26626,-83.737305 L -86.26626,-88.032227" />
<path d="M -82.246729,-87.097656 L -82.79165,-87.030273 Q -82.911768,-87.364258 -83.116846,-87.516602 Q -83.321924,-87.668945 -83.611963,-87.668945 Q -84.001611,-87.668945 -84.262354,-87.396484 Q -84.523096,-87.124023 -84.552393,-86.611328 L -82.23208,-86.611328 Q -82.22915,-86.517578 -82.22915,-86.470703 Q -82.22915,-85.700195 -82.624658,-85.275391 Q -83.020166,-84.850586 -83.644189,-84.850586 Q -84.288721,-84.850586 -84.693018,-85.28418 Q -85.097314,-85.717773 -85.097314,-86.50293 Q -85.097314,-87.261719 -84.697412,-87.682129 Q -84.29751,-88.102539 -83.614893,-88.102539 Q -83.0729,-88.102539 -82.724268,-87.838867 Q -82.375635,-87.575195 -82.246729,-87.097656 M -82.785791,-86.177734 L -84.523096,-86.177734 Q -84.496729,-85.770508 -84.24917,-85.527344 Q -84.001611,-85.28418 -83.63833,-85.28418 Q -83.236963,-85.28418 -82.98501,-85.588867 Q -82.820947,-85.785156 -82.785791,-86.177734" />
<path d="M -80.720361,-88.032227 L -80.228174,-88.032227 L -79.050439,-84.920898 L -79.592432,-84.920898 L -80.283838,-86.819336 Q -80.409814,-87.165039 -80.480127,-87.411133 Q -80.570947,-87.085938 -80.679346,-86.78418 L -81.347314,-84.920898 L -81.903955,-84.920898 L -80.720361,-88.032227" />
<path d="M -77.118311,-88.0 Q -76.847314,-87.897461 -76.554346,-87.648438 Q -76.530908,-87.868164 -76.448877,-88.032227 L -75.898096,-88.032227 Q -75.997705,-87.853516 -76.031396,-87.658691 Q -76.065088,-87.463867 -76.065088,-86.728516 L -76.065088,-86.025391 Q -76.065088,-85.673828 -76.091455,-85.539063 Q -76.13833,-85.322266 -76.255518,-85.180176 Q -76.372705,-85.038086 -76.621729,-84.944336 Q -76.870752,-84.850586 -77.269189,-84.850586 Q -77.670557,-84.850586 -77.975244,-84.960449 Q -78.279932,-85.070313 -78.441064,-85.273926 Q -78.602197,-85.477539 -78.67251,-85.808594 L -78.156885,-85.878906 Q -78.071924,-85.547852 -77.894678,-85.41748 Q -77.717432,-85.287109 -77.345361,-85.287109 Q -76.946924,-85.287109 -76.744775,-85.46582 Q -76.595361,-85.597656 -76.595361,-85.919922 Q -76.595361,-85.949219 -76.598291,-86.057617 Q -76.900049,-86.163086 -77.538721,-86.239258 Q -77.852197,-86.277344 -78.007471,-86.318359 Q -78.218408,-86.376953 -78.386865,-86.491211 Q -78.555322,-86.605469 -78.659326,-86.794434 Q -78.76333,-86.983398 -78.76333,-87.211914 Q -78.76333,-87.601563 -78.487939,-87.852051 Q -78.212549,-88.102539 -77.699854,-88.102539 Q -77.389307,-88.102539 -77.118311,-88.0 M -76.598291,-86.470703 L -76.598291,-86.664063 Q -76.598291,-87.012695 -76.683252,-87.191406 Q -76.79458,-87.422852 -77.031885,-87.556152 Q -77.269189,-87.689453 -77.573877,-87.689453 Q -77.881494,-87.689453 -78.041162,-87.548828 Q -78.20083,-87.408203 -78.20083,-87.197266 Q -78.20083,-87.05957 -78.127588,-86.946777 Q -78.054346,-86.833984 -77.91958,-86.775391 Q -77.784814,-86.716797 -77.459619,-86.669922 Q -76.8854,-86.587891 -76.598291,-86.470703" />
<path d="M -74.020166,-88.026367 L -74.096338,-87.560547 Q -74.239893,-87.581055 -74.327783,-87.581055 Q -74.444971,-87.581055 -74.507959,-87.542969 Q -74.570947,-87.504883 -74.598779,-87.44043 Q -74.626611,-87.375977 -74.626611,-87.150391 L -74.626611,-85.331055 L -74.096338,-85.331055 L -74.096338,-84.920898 L -74.626611,-84.920898 L -74.626611,-83.833984 L -75.151025,-84.150391 L -75.151025,-84.920898 L -75.537744,-84.920898 L -75.537744,-85.331055 L -75.151025,-85.331055 L -75.151025,-87.121094 Q -75.151025,-87.595703 -75.086572,-87.743652 Q -75.022119,-87.891602 -74.863916,-87.982422 Q -74.705713,-88.073242 -74.418604,-88.073242 Q -74.242822,-88.073242 -74.020166,-88.026367" />
<path d="M -73.577783,-88.032227 L -73.050439,-88.032227 L -73.050439,-84.920898 L -73.577783,-84.920898 L -73.577783,-88.032227" />
<path d="M -73.577783,-84.34375 L -73.050439,-84.34375 L -73.050439,-83.737305 L -73.577783,-83.737305 L -73.577783,-84.34375" />
<path d="M -71.963525,-85.196289 Q -72.443994,-85.612305 -72.443994,-86.476563 Q -72.443994,-87.264648 -72.041162,-87.683594 Q -71.63833,-88.102539 -70.98501,-88.102539 Q -70.577783,-88.102539 -70.233545,-87.912109 Q -69.889307,-87.72168 -69.709131,-87.377441 Q -69.528955,-87.033203 -69.528955,-86.432617 Q -69.528955,-85.691406 -69.936182,-85.270996 Q -70.343408,-84.850586 -70.98501,-84.850586 Q -71.562158,-84.850586 -71.963525,-85.196289 M -71.64126,-87.371582 Q -71.902002,-87.074219 -71.902002,-86.476563 Q -71.902002,-85.878906 -71.64126,-85.583008 Q -71.380518,-85.287109 -70.98501,-85.287109 Q -70.595361,-85.287109 -70.333154,-85.584473 Q -70.070947,-85.881836 -70.070947,-86.458984 Q -70.070947,-87.071289 -70.331689,-87.370117 Q -70.592432,-87.668945 -70.98501,-87.668945 Q -71.380518,-87.668945 -71.64126,-87.371582" />
<path d="M -68.910791,-88.032227 L -68.383447,-88.032227 L -68.383447,-86.333008 Q -68.383447,-85.735352 -68.138818,-85.521484 Q -67.894189,-85.307617 -67.557275,-85.307617 Q -67.346338,-85.307617 -67.1896,-85.402832 Q -67.032861,-85.498047 -66.971338,-85.657715 Q -66.909814,-85.817383 -66.909814,-86.139648 L -66.909814,-88.032227 L -66.382471,-88.032227 L -66.382471,-86.119141 Q -66.382471,-85.75293 -66.411768,-85.606445 Q -66.458643,-85.380859 -66.57583,-85.216797 Q -66.693018,-85.052734 -66.928857,-84.95166 Q -67.164697,-84.850586 -67.445947,-84.850586 Q -68.093408,-84.850586 -68.436182,-85.363281 L -68.436182,-84.920898 L -68.910791,-84.920898 L -68.910791,-88.032227" />
<path d="M -18.373535,-31.494824 L -18.909668,-31.541699 Q -18.897949,-31.972363 -18.673828,-32.313672 Q -18.449707,-32.65498 -18.055664,-32.824902 Q -17.661621,-32.994824 -17.078613,-32.994824 Q -16.618652,-32.994824 -16.250977,-32.826367 Q -15.883301,-32.65791 -15.687012,-32.354687 Q -15.490723,-32.051465 -15.490723,-31.708691 Q -15.490723,-31.362988 -15.669434,-31.097852 Q -15.848145,-30.832715 -16.223145,-30.659863 Q -16.480957,-30.542676 -17.173828,-30.385937 Q -17.866699,-30.229199 -18.030762,-30.079785 Q -18.197754,-29.930371 -18.197754,-29.698926 Q -18.197754,-29.432324 -17.961914,-29.243359 Q -17.726074,-29.054395 -17.210449,-29.054395 Q -16.715332,-29.054395 -16.461914,-29.262402 Q -16.208496,-29.47041 -16.164551,-29.877637 L -15.619629,-29.836621 Q -15.634277,-29.458691 -15.830566,-29.159863 Q -16.026855,-28.861035 -16.391602,-28.707227 Q -16.756348,-28.553418 -17.233887,-28.553418 Q -17.66748,-28.553418 -18.021973,-28.699902 Q -18.376465,-28.846387 -18.561035,-29.129102 Q -18.745605,-29.411816 -18.745605,-29.737012 Q -18.745605,-30.03291 -18.594727,-30.27168 Q -18.443848,-30.510449 -18.13623,-30.671582 Q -17.898926,-30.797559 -17.307129,-30.939648 Q -16.715332,-31.081738 -16.54248,-31.149121 Q -16.272949,-31.25166 -16.155762,-31.402539 Q -16.038574,-31.553418 -16.038574,-31.755566 Q -16.038574,-31.954785 -16.160156,-32.123242 Q -16.281738,-32.291699 -16.530762,-32.388379 Q -16.779785,-32.485059 -17.10498,-32.485059 Q -17.471191,-32.485059 -17.76416,-32.357617 Q -18.057129,-32.230176 -18.196289,-32.023633 Q -18.335449,-31.81709 -18.373535,-31.494824" />
<path d="M -14.778809,-29.233105 L -14.251465,-29.233105 L -14.251465,-28.62666 L -14.778809,-28.62666 L -14.778809,-29.233105" />
<path d="M -14.778809,-32.921582 L -14.251465,-32.921582 L -14.251465,-29.810254 L -14.778809,-29.810254 L -14.778809,-32.921582" />
<path d="M -11.430176,-32.921582 L -10.940918,-32.921582 L -10.940918,-28.62666 L -11.465332,-28.62666 L -11.465332,-30.167676 Q -11.603027,-29.977246 -11.822754,-29.858594 Q -12.04248,-29.739941 -12.32373,-29.739941 Q -12.70752,-29.739941 -13.018066,-29.94209 Q -13.328613,-30.144238 -13.483887,-30.523633 Q -13.63916,-30.903027 -13.63916,-31.368848 Q -13.63916,-31.846387 -13.467773,-32.214062 Q -13.296387,-32.581738 -12.984375,-32.786816 Q -12.672363,-32.991895 -12.300293,-32.991895 Q -11.726074,-32.991895 -11.430176,-32.529004 L -11.430176,-32.921582 M -12.845215,-32.262402 Q -13.097168,-31.966504 -13.097168,-31.368848 Q -13.097168,-30.750684 -12.861328,-30.463574 Q -12.625488,-30.176465 -12.273926,-30.176465 Q -11.913574,-30.176465 -11.66748,-30.475293 Q -11.421387,-30.774121 -11.421387,-31.412793 Q -11.421387,-31.992871 -11.663086,-32.275586 Q -11.904785,-32.558301 -12.250488,-32.558301 Q -12.593262,-32.558301 -12.845215,-32.262402" />
<path d="M -7.437012,-31.987012 L -7.981934,-31.919629 Q -8.102051,-32.253613 -8.307129,-32.405957 Q -8.512207,-32.558301 -8.802246,-32.558301 Q -9.191895,-32.558301 -9.452637,-32.28584 Q -9.713379,-32.013379 -9.742676,-31.500684 L -7.422363,-31.500684 Q -7.419434,-31.406934 -7.419434,-31.360059 Q -7.419434,-30.589551 -7.814941,-30.164746 Q -8.210449,-29.739941 -8.834473,-29.739941 Q -9.479004,-29.739941 -9.883301,-30.173535 Q -10.287598,-30.607129 -10.287598,-31.392285 Q -10.287598,-32.151074 -9.887695,-32.571484 Q -9.487793,-32.991895 -8.805176,-32.991895 Q -8.263184,-32.991895 -7.914551,-32.728223 Q -7.565918,-32.464551 -7.437012,-31.987012 M -7.976074,-31.06709 L -9.713379,-31.06709 Q -9.687012,-30.659863 -9.439453,-30.416699 Q -9.191895,-30.173535 -8.828613,-30.173535 Q -8.427246,-30.173535 -8.175293,-30.478223 Q -8.01123,-30.674512 -7.976074,-31.06709" />
<path d="M -5.028809,-32.921582 L -1.82373,-32.921582 L -1.82373,-32.414746 L -4.460449,-32.414746 L -4.460449,-30.952832 L -2.084473,-30.952832 L -2.084473,-30.448926 L -4.460449,-30.448926 L -4.460449,-29.133496 L -1.92334,-29.133496 L -1.92334,-28.62666 L -5.028809,-28.62666 L -5.028809,-32.921582" />
<path d="M -1.117676,-32.921582 L -0.590332,-32.921582 L -0.590332,-28.62666 L -1.117676,-28.62666 L -1.117676,-32.921582" />
<path d="M 2.901855,-31.987012 L 2.356934,-31.919629 Q 2.236816,-32.253613 2.031738,-32.405957 Q 1.82666,-32.558301 1.536621,-32.558301 Q 1.146973,-32.558301 0.88623,-32.28584 Q 0.625488,-32.013379 0.596191,-31.500684 L 2.916504,-31.500684 Q 2.919434,-31.406934 2.919434,-31.360059 Q 2.919434,-30.589551 2.523926,-30.164746 Q 2.128418,-29.739941 1.504395,-29.739941 Q 0.859863,-29.739941 0.455566,-30.173535 Q 0.05127,-30.607129 0.05127,-31.392285 Q 0.05127,-32.151074 0.451172,-32.571484 Q 0.851074,-32.991895 1.533691,-32.991895 Q 2.075684,-32.991895 2.424316,-32.728223 Q 2.772949,-32.464551 2.901855,-31.987012 M 2.362793,-31.06709 L 0.625488,-31.06709 Q 0.651855,-30.659863 0.899414,-30.416699 Q 1.146973,-30.173535 1.510254,-30.173535 Q 1.911621,-30.173535 2.163574,-30.478223 Q 2.327637,-30.674512 2.362793,-31.06709" />
<path d="M 4.428223,-32.921582 L 4.92041,-32.921582 L 6.098145,-29.810254 L 5.556152,-29.810254 L 4.864746,-31.708691 Q 4.73877,-32.054395 4.668457,-32.300488 Q 4.577637,-31.975293 4.469238,-31.673535 L 3.80127,-29.810254 L 3.244629,-29.810254 L 4.428223,-32.921582" />
<path d="M 8.030273,-32.889355 Q 8.30127,-32.786816 8.594238,-32.537793 Q 8.617676,-32.75752 8.699707,-32.921582 L 9.250488,-32.921582 Q 9.150879,-32.742871 9.117188,-32.548047 Q 9.083496,-32.353223 9.083496,-31.617871 L 9.083496,-30.914746 Q 9.083496,-30.563184 9.057129,-30.428418 Q 9.010254,-30.211621 8.893066,-30.069531 Q 8.775879,-29.927441 8.526855,-29.833691 Q 8.277832,-29.739941 7.879395,-29.739941 Q 7.478027,-29.739941 7.17334,-29.849805 Q 6.868652,-29.959668 6.70752,-30.163281 Q 6.546387,-30.366895 6.476074,-30.697949 L 6.991699,-30.768262 Q 7.07666,-30.437207 7.253906,-30.306836 Q 7.431152,-30.176465 7.803223,-30.176465 Q 8.20166,-30.176465 8.403809,-30.355176 Q 8.553223,-30.487012 8.553223,-30.809277 Q 8.553223,-30.838574 8.550293,-30.946973 Q 8.248535,-31.052441 7.609863,-31.128613 Q 7.296387,-31.166699 7.141113,-31.207715 Q 6.930176,-31.266309 6.761719,-31.380566 Q 6.593262,-31.494824 6.489258,-31.683789 Q 6.385254,-31.872754 6.385254,-32.10127 Q 6.385254,-32.490918 6.660645,-32.741406 Q 6.936035,-32.991895 7.44873,-32.991895 Q 7.759277,-32.991895 8.030273,-32.889355 M 8.550293,-31.360059 L 8.550293,-31.553418 Q 8.550293,-31.902051 8.465332,-32.080762 Q 8.354004,-32.312207 8.116699,-32.445508 Q 7.879395,-32.578809 7.574707,-32.578809 Q 7.26709,-32.578809 7.107422,-32.438184 Q 6.947754,-32.297559 6.947754,-32.086621 Q 6.947754,-31.948926 7.020996,-31.836133 Q 7.094238,-31.72334 7.229004,-31.664746 Q 7.36377,-31.606152 7.688965,-31.559277 Q 8.263184,-31.477246 8.550293,-31.360059" />
<path d="M 11.128418,-32.915723 L 11.052246,-32.449902 Q 10.908691,-32.47041 10.820801,-32.47041 Q 10.703613,-32.47041 10.640625,-32.432324 Q 10.577637,-32.394238 10.549805,-32.329785 Q 10.521973,-32.265332 10.521973,-32.039746 L 10.521973,-30.22041 L 11.052246,-30.22041 L 11.052246,-29.810254 L 10.521973,-29.810254 L 10.521973,-28.72334 L 9.997559,-29.039746 L 9.997559,-29.810254 L 9.61084,-29.810254 L 9.61084,-30.22041 L 9.997559,-30.22041 L 9.997559,-32.010449 Q 9.997559,-32.485059 10.062012,-32.633008 Q 10.126465,-32.780957 10.284668,-32.871777 Q 10.442871,-32.962598 10.72998,-32.962598 Q 10.905762,-32.962598 11.128418,-32.915723" />
<path d="M 11.570801,-29.233105 L 12.098145,-29.233105 L 12.098145,-28.62666 L 11.570801,-28.62666 L 11.570801,-29.233105" />
<path d="M 11.570801,-32.921582 L 12.098145,-32.921582 L 12.098145,-29.810254 L 11.570801,-29.810254 L 11.570801,-32.921582" />
<path d="M 13.185059,-30.085645 Q 12.70459,-30.50166 12.70459,-31.365918 Q 12.70459,-32.154004 13.107422,-32.572949 Q 13.510254,-32.991895 14.163574,-32.991895 Q 14.570801,-32.991895 14.915039,-32.801465 Q 15.259277,-32.611035 15.439453,-32.266797 Q 15.619629,-31.922559 15.619629,-31.321973 Q 15.619629,-30.580762 15.212402,-30.160352 Q 14.805176,-29.739941 14.163574,-29.739941 Q 13.586426,-29.739941 13.185059,-30.085645 M 13.507324,-32.260937 Q 13.246582,-31.963574 13.246582,-31.365918 Q 13.246582,-30.768262 13.507324,-30.472363 Q 13.768066,-30.176465 14.163574,-30.176465 Q 14.553223,-30.176465 14.81543,-30.473828 Q 15.077637,-30.771191 15.077637,-31.34834 Q 15.077637,-31.960645 14.816895,-32.259473 Q 14.556152,-32.558301 14.163574,-32.558301 Q 13.768066,-32.558301 13.507324,-32.260937" />
<path d="M 16.237793,-32.921582 L 16.765137,-32.921582 L 16.765137,-31.222363 Q 16.765137,-30.624707 17.009766,-30.41084 Q 17.254395,-30.196973 17.591309,-30.196973 Q 17.802246,-30.196973 17.958984,-30.292187 Q 18.115723,-30.387402 18.177246,-30.54707 Q 18.23877,-30.706738 18.23877,-31.029004 L 18.23877,-32.921582 L 18.766113,-32.921582 L 18.766113,-31.008496 Q 18.766113,-30.642285 18.736816,-30.495801 Q 18.689941,-30.270215 18.572754,-30.106152 Q 18.455566,-29.94209 18.219727,-29.841016 Q 17.983887,-29.739941 17.702637,-29.739941 Q 17.055176,-29.739941 16.712402,-30.252637 L 16.712402,-29.810254 L 16.237793,-29.810254 L 16.237793,-32.921582" />
</g>
<g fill="none" stroke="rgb(99,99,99)" stroke-width="0.09" id="Hidden" stroke-dasharray="0.002286 0.271143">
<line x1="88.585661" y1="75.981149" x2="88.585661" y2="73.041762" />
<line x1="88.585661" y1="73.041762" x2="92.579047" y2="70.736179" />
<line x1="92.579047" y1="70.736179" x2="92.579047" y2="66.93947" />
<line x1="109.623855" y1="57.098645" x2="92.579047" y2="66.93947" />
<line x1="109.623855" y1="60.895354" x2="109.623855" y2="57.098645" />
<line x1="109.623855" y1="60.895354" x2="113.617241" y2="58.589772" />
<line x1="113.617241" y1="61.52916" x2="113.617241" y2="58.589772" />
<path d="M 84.793801,73.773547 A 1.9124999999999999,1.1041823898251593 0.0 0,1 87.588735,73.829388" />
<path d="M 84.703551,73.829388 A 1.9124999999999999,1.1041823898251593 0.0 0,1 84.793801,73.773547" />
<path d="M 100.433643,60.120703 A 14.287500000000001,8.24889197104678 0.0 0,1 71.858643,60.120703" />
<line x1="83.706624" y1="75.981149" x2="83.706624" y2="73.041762" />
<path d="M 88.585661,73.041762 A 3.4499999999999997,1.991858428704209 0.0 0,1 83.706624,73.041762" />
<path d="M 92.579047,70.736179 A 1.875,1.0825317547305484 0.0 0,1 89.927396,70.736179" />
<line x1="88.797793" y1="70.084003" x2="89.927396" y2="70.736179" />
<path d="M 83.494492,70.084003 A 3.75,2.165063509461097 0.0 0,1 88.797793,70.084003" />
<line x1="83.494492" y1="70.084003" x2="82.364889" y2="70.736179" />
<path d="M 82.364889,70.736179 A 1.875,1.0825317547305482 3.895368034302951e-15 0,1 79.713239,70.736179" />
<line x1="83.706624" y1="73.041762" x2="79.713239" y2="70.736179" />
<path d="M 84.793801,70.834159 A 1.9124999999999999,1.1041823898251593 0.0 0,1 88.058643,71.614934" />
<path d="M 88.058643,71.614934 A 1.9125000000000012,1.10418238982516 0.0 0,1 84.233643,71.614934" />
<path d="M 84.233643,71.614934 A 1.9124999999999999,1.1041823898251593 0.0 0,1 84.793801,70.834159" />
<path d="M 92.579047,66.93947 A 1.875,1.0825317547305484 0.0 0,1 89.927396,66.93947" />
<path d="M 62.119255,50.436033 A 1.875,1.0825317547305484 180.0 0,0 62.66843,51.201499" />
<path d="M 84.64668,40.935437 A 3.75,2.165063509461097 180.0 0,0 87.645605,40.935437" />
<line x1="62.66843" y1="51.201499" x2="63.798033" y2="51.853675" />
<path d="M 63.798033,54.915537 A 3.75,2.165063509461097 180.0 0,0 64.896382,53.384606" />
<path d="M 64.896382,53.384606 A 3.75,2.165063509461097 180.0 0,0 63.798033,51.853675" />
<line x1="62.66843" y1="55.567714" x2="63.798033" y2="54.915537" />
<path d="M 62.66843,57.098645 A 1.875,1.0825317547305484 0.0 0,1 62.119255,56.33318" />
<path d="M 62.119255,56.33318 A 1.875,1.0825317547305484 0.0 0,1 62.66843,55.567714" />
<path d="M 110.17303,50.436033 A 1.875,1.0825317547305484 0.0 0,1 109.623855,51.201499" />
<line x1="79.713239" y1="66.93947" x2="62.66843" y2="57.098645" />
<line x1="109.623855" y1="51.201499" x2="108.494252" y2="51.853675" />
<path d="M 79.713239,66.93947 A 1.875,1.0825317547305484 180.0 0,0 82.364889,66.93947" />
<path d="M 108.494252,51.853675 A 3.75,2.165063509461097 180.0 0,0 107.395903,53.384606" />
<path d="M 107.395903,53.384606 A 3.75,2.165063509461097 180.0 0,0 108.494252,54.915537" />
<line x1="82.364889" y1="66.93947" x2="83.494492" y2="66.287294" />
<line x1="109.623855" y1="55.567714" x2="108.494252" y2="54.915537" />
<path d="M 88.797793,66.287294 A 3.75,2.165063509461097 180.0 0,0 83.494492,66.287294" />
<path d="M 109.623855,57.098645 A 1.875,1.0825317547305484 180.0 0,0 110.17303,56.33318" />
<path d="M 110.17303,56.33318 A 1.875,1.0825317547305484 180.0 0,0 109.623855,55.567714" />
<line x1="89.927396" y1="66.93947" x2="88.797793" y2="66.287294" />
<path d="M 79.766272,39.860361 A 1.7999999999999998,1.0392304845413265 0.0 0,1 82.311856,39.860361" />
<line x1="82.311856" y1="39.860361" x2="83.441459" y2="40.512538" />
<path d="M 88.850826,40.512538 A 3.8249999999999997,2.2083647796503185 0.0 0,1 83.441459,40.512538" />
<line x1="89.980429" y1="39.860361" x2="88.850826" y2="40.512538" />
<path d="M 89.980429,39.860361 A 1.7999999999999998,1.0392304845413263 3.895368034302951e-15 0,1 92.526014,39.860361" />
<line x1="92.526014" y1="39.860361" x2="109.570822" y2="49.701186" />
<path d="M 109.570822,49.701186 A 1.7999999999999998,1.0392304845413263 -3.895368034302951e-15 0,1 110.09803,50.436033" />
<path d="M 110.09803,50.436033 A 1.7999999999999998,1.0392304845413263 -3.895368034302951e-15 0,1 109.570822,51.17088" />
<line x1="109.570822" y1="51.17088" x2="108.441219" y2="51.823057" />
<path d="M 108.441219,54.946156 A 3.8249999999999997,2.2083647796503185 0.0 0,1 107.320903,53.384606" />
<path d="M 107.320903,53.384606 A 3.8249999999999997,2.2083647796503185 0.0 0,1 108.441219,51.823057" />
<line x1="109.570822" y1="55.598333" x2="108.441219" y2="54.946156" />
<path d="M 109.570822,55.598333 A 1.7999999999999998,1.0392304845413265 0.0 0,1 110.09803,56.33318" />
<path d="M 110.09803,56.33318 A 1.7999999999999998,1.0392304845413265 0.0 0,1 109.570822,57.068027" />
<line x1="109.570822" y1="57.068027" x2="92.526014" y2="66.908852" />
<path d="M 92.526014,66.908852 A 1.7999999999999998,1.0392304845413265 0.0 0,1 89.980429,66.908852" />
<line x1="89.980429" y1="66.908852" x2="88.850826" y2="66.256675" />
<path d="M 83.441459,66.256675 A 3.8249999999999997,2.2083647796503185 0.0 0,1 88.850826,66.256675" />
<line x1="82.311856" y1="66.908852" x2="83.441459" y2="66.256675" />
<path d="M 82.311856,66.908852 A 1.7999999999999998,1.0392304845413263 3.895368034302951e-15 0,1 79.766272,66.908852" />
<line x1="79.766272" y1="66.908852" x2="62.721463" y2="57.068027" />
<path d="M 62.721463,57.068027 A 1.7999999999999998,1.0392304845413263 -3.895368034302951e-15 0,1 62.194255,56.33318" />
<path d="M 62.194255,56.33318 A 1.7999999999999998,1.0392304845413263 -3.895368034302951e-15 0,1 62.721463,55.598333" />
<line x1="62.721463" y1="55.598333" x2="63.851066" y2="54.946156" />
<path d="M 63.851066,51.823057 A 3.8249999999999997,2.2083647796503185 0.0 0,1 64.971382,53.384606" />
<path d="M 64.971382,53.384606 A 3.8249999999999997,2.2083647796503185 0.0 0,1 63.851066,54.946156" />
<line x1="62.721463" y1="51.17088" x2="63.851066" y2="51.823057" />
<path d="M 62.721463,51.17088 A 1.7999999999999998,1.0392304845413265 0.0 0,1 62.194255,50.436033" />
<path d="M 62.194255,50.436033 A 1.7999999999999998,1.0392304845413265 0.0 0,1 62.721463,49.701186" />
<line x1="62.721463" y1="49.701186" x2="79.766272" y2="39.860361" />
<path d="M 109.623855,59.364423 A 1.875,1.0825317547305484 0.0 0,1 110.17303,60.129889" />
<path d="M 110.17303,60.129889 A 1.875,1.0825317547305484 0.0 0,1 109.623855,60.895354" />
<path d="M 114.627723,57.181315 A 3.4499999999999997,1.991858428704209 0.0 0,1 113.617241,58.589772" />
<path d="M 109.623855,53.467277 A 1.875,1.0825317547305482 -3.895368034302951e-15 0,1 110.17303,54.232742" />
<path d="M 110.17303,54.232742 A 1.875,1.0825317547305482 -3.895368034302951e-15 0,1 109.623855,54.998208" />
<line x1="108.494252" y1="55.650384" x2="109.623855" y2="54.998208" />
<path d="M 108.494252,58.712247 A 3.75,2.165063509461097 0.0 0,1 107.395903,57.181315" />
<path d="M 107.395903,57.181315 A 3.75,2.165063509461097 0.0 0,1 108.494252,55.650384" />
<line x1="108.494252" y1="58.712247" x2="109.623855" y2="59.364423" />
<path d="M 109.793561,56.400541 A 1.9124999999999999,1.1041823898251593 0.0 0,1 113.058403,57.181315" />
<path d="M 113.058403,57.181315 A 1.9125000000000012,1.10418238982516 0.0 0,1 109.233403,57.181315" />
<path d="M 109.233403,57.181315 A 1.9124999999999999,1.1041823898251593 0.0 0,1 109.793561,56.400541" />
<line x1="79.713239" y1="70.736179" x2="79.713239" y2="66.93947" />
<line x1="62.66843" y1="60.895354" x2="62.66843" y2="57.098645" />
<line x1="62.66843" y1="60.895354" x2="58.675044" y2="58.589772" />
<line x1="58.675044" y1="61.52916" x2="58.675044" y2="58.589772" />
<path d="M 58.675044,58.589772 A 3.4499999999999997,1.991858428704209 0.0 0,1 57.664563,57.181315" />
<path d="M 59.794041,56.400541 A 1.9124999999999999,1.1041823898251593 0.0 0,1 63.058882,57.181315" />
<path d="M 63.058882,57.181315 A 1.9124999999999999,1.1041823898251593 0.0 0,1 59.233882,57.181315" />
<path d="M 59.233882,57.181315 A 1.9124999999999999,1.1041823898251593 0.0 0,1 59.794041,56.400541" />
<path d="M 88.527393,69.234016 A 14.287500000000001,8.24889197104678 0.0 0,1 83.764893,69.234016" />
<path d="M 84.793801,41.966922 A 1.9124999999999999,1.1041823898251593 0.0 0,1 88.058643,42.747697" />
<path d="M 88.058643,42.747697 A 1.9125000000000012,1.10418238982516 0.0 0,1 84.233643,42.747697" />
<path d="M 84.233643,42.747697 A 1.9124999999999999,1.1041823898251593 0.0 0,1 84.793801,41.966922" />
<path d="M 79.713239,43.626452 A 1.875,1.0825317547305484 0.0 0,1 82.364889,43.626452" />
<line x1="83.494492" y1="44.278628" x2="82.364889" y2="43.626452" />
<path d="M 62.66843,54.998208 A 1.875,1.0825317547305484 0.0 0,1 62.119255,54.232742" />
<path d="M 62.119255,54.232742 A 1.875,1.0825317547305484 0.0 0,1 62.66843,53.467277" />
<path d="M 88.797793,44.278628 A 3.75,2.165063509461097 0.0 0,1 83.494492,44.278628" />
<line x1="63.798033" y1="55.650384" x2="62.66843" y2="54.998208" />
<line x1="88.797793" y1="44.278628" x2="89.927396" y2="43.626452" />
<path d="M 63.798033,55.650384 A 3.75,2.165063509461097 0.0 0,1 64.896382,57.181315" />
<path d="M 64.896382,57.181315 A 3.75,2.165063509461097 0.0 0,1 63.798033,58.712247" />
<path d="M 89.927396,43.626452 A 1.875,1.0825317547305482 3.895368034302951e-15 0,1 92.579047,43.626452" />
<line x1="63.798033" y1="58.712247" x2="62.66843" y2="59.364423" />
<path d="M 62.66843,60.895354 A 1.875,1.0825317547305482 -3.895368034302951e-15 0,1 62.119255,60.129889" />
<path d="M 62.119255,60.129889 A 1.875,1.0825317547305482 -3.895368034302951e-15 0,1 62.66843,59.364423" />
<path d="M 110.09803,29.61537 A 1.7999999999999998,1.0392304845413263 -3.895368034302951e-15 0,1 109.570822,30.350217" />
<line x1="109.570822" y1="30.350217" x2="108.441219" y2="31.002394" />
<path d="M 108.441219,31.002394 A 3.8249999999999997,2.2083647796503185 180.0 0,0 107.320903,32.563944" />
<path d="M 107.320903,32.563944 A 3.8249999999999997,2.2083647796503185 180.0 0,0 108.441219,34.125493" />
<line x1="109.570822" y1="34.77767" x2="108.441219" y2="34.125493" />
<path d="M 109.570822,36.247364 A 1.7999999999999998,1.0392304845413265 180.0 0,0 110.09803,35.512517" />
<path d="M 110.09803,35.512517 A 1.7999999999999998,1.0392304845413265 180.0 0,0 109.570822,34.77767" />
<line x1="109.570822" y1="36.247364" x2="92.526014" y2="46.088189" />
<path d="M 92.526014,46.088189 A 1.7999999999999998,1.0392304845413265 0.0 0,1 89.980429,46.088189" />
<line x1="89.980429" y1="46.088189" x2="88.850826" y2="45.436012" />
<path d="M 88.850826,45.436012 A 3.8249999999999997,2.2083647796503185 180.0 0,0 83.441459,45.436012" />
<line x1="82.311856" y1="46.088189" x2="83.441459" y2="45.436012" />
<path d="M 79.766272,46.088189 A 1.7999999999999998,1.0392304845413263 -180.0 0,0 82.311856,46.088189" />
<line x1="79.766272" y1="46.088189" x2="62.721463" y2="36.247364" />
<path d="M 62.721463,36.247364 A 1.7999999999999998,1.0392304845413263 -3.895368034302951e-15 0,1 62.194255,35.512517" />
<path d="M 62.194255,35.512517 A 1.7999999999999998,1.0392304845413263 -3.895368034302951e-15 0,1 62.721463,34.77767" />
<line x1="62.721463" y1="34.77767" x2="63.851066" y2="34.125493" />
<path d="M 63.851066,34.125493 A 3.8249999999999997,2.2083647796503185 180.0 0,0 64.971382,32.563944" />
<path d="M 64.971382,32.563944 A 3.8249999999999997,2.2083647796503185 180.0 0,0 63.851066,31.002394" />
<line x1="62.721463" y1="30.350217" x2="63.851066" y2="31.002394" />
<path d="M 62.194255,29.61537 A 1.7999999999999998,1.0392304845413265 180.0 0,0 62.721463,30.350217" />
<path d="M 62.194255,29.918479 A 1.875,1.0825317547305484 180.0 0,0 62.66843,30.380836" />
<line x1="62.66843" y1="30.380836" x2="63.798033" y2="31.033012" />
<path d="M 63.798033,34.094875 A 3.75,2.165063509461097 180.0 0,0 64.896382,32.563944" />
<path d="M 64.896382,32.563944 A 3.75,2.165063509461097 180.0 0,0 63.798033,31.033012" />
<line x1="62.66843" y1="34.747051" x2="63.798033" y2="34.094875" />
<path d="M 62.66843,36.277982 A 1.875,1.0825317547305484 0.0 0,1 62.194255,35.815626" />
<path d="M 62.194255,35.209408 A 1.875,1.0825317547305484 0.0 0,1 62.66843,34.747051" />
<path d="M 110.09803,29.918479 A 1.875,1.0825317547305484 0.0 0,1 109.623855,30.380836" />
<line x1="79.713239" y1="46.118807" x2="62.66843" y2="36.277982" />
<line x1="109.623855" y1="30.380836" x2="108.494252" y2="31.033012" />
<path d="M 79.713239,46.118807 A 1.875,1.0825317547305484 180.0 0,0 82.364889,46.118807" />
<path d="M 108.494252,31.033012 A 3.75,2.165063509461097 180.0 0,0 107.395903,32.563944" />
<path d="M 107.395903,32.563944 A 3.75,2.165063509461097 180.0 0,0 108.494252,34.094875" />
<line x1="82.364889" y1="46.118807" x2="83.494492" y2="45.466631" />
<line x1="109.623855" y1="34.747051" x2="108.494252" y2="34.094875" />
<path d="M 88.797793,45.466631 A 3.75,2.165063509461097 180.0 0,0 83.494492,45.466631" />
<path d="M 109.623855,36.277982 A 1.875,1.0825317547305484 180.0 0,0 110.09803,35.815626" />
<path d="M 110.09803,35.209408 A 1.875,1.0825317547305484 180.0 0,0 109.623855,34.747051" />
<line x1="89.927396" y1="46.118807" x2="88.797793" y2="45.466631" />
<line x1="109.623855" y1="36.277982" x2="92.579047" y2="46.118807" />
<path d="M 92.579047,46.118807 A 1.875,1.0825317547305484 0.0 0,1 89.927396,46.118807" />
<path d="M 62.119255,22.879274 A 1.875,1.0825317547305484 180.0 0,0 62.66843,23.644739" />
<line x1="62.66843" y1="23.644739" x2="63.798033" y2="24.296916" />
<path d="M 63.798033,27.358778 A 3.75,2.165063509461097 180.0 0,0 64.896382,25.827847" />
<path d="M 64.896382,25.827847 A 3.75,2.165063509461097 180.0 0,0 63.798033,24.296916" />
<line x1="62.66843" y1="28.010955" x2="63.798033" y2="27.358778" />
<path d="M 62.66843,29.541886 A 1.875,1.0825317547305484 0.0 0,1 62.119255,28.77642" />
<path d="M 62.119255,28.77642 A 1.875,1.0825317547305484 0.0 0,1 62.66843,28.010955" />
<path d="M 110.17303,22.879274 A 1.875,1.0825317547305484 0.0 0,1 109.623855,23.644739" />
<line x1="79.713239" y1="39.382711" x2="62.66843" y2="29.541886" />
<line x1="109.623855" y1="23.644739" x2="108.494252" y2="24.296916" />
<path d="M 79.713239,39.382711 A 1.875,1.0825317547305484 180.0 0,0 82.364889,39.382711" />
<path d="M 108.494252,24.296916 A 3.75,2.165063509461097 180.0 0,0 107.395903,25.827847" />
<path d="M 107.395903,25.827847 A 3.75,2.165063509461097 180.0 0,0 108.494252,27.358778" />
<line x1="82.364889" y1="39.382711" x2="83.494492" y2="38.730534" />
<line x1="109.623855" y1="28.010955" x2="108.494252" y2="27.358778" />
<path d="M 88.797793,38.730534 A 3.75,2.165063509461097 180.0 0,0 83.494492,38.730534" />
<path d="M 109.623855,29.541886 A 1.875,1.0825317547305484 180.0 0,0 110.17303,28.77642" />
<path d="M 110.17303,28.77642 A 1.875,1.0825317547305484 180.0 0,0 109.623855,28.010955" />
<line x1="89.927396" y1="39.382711" x2="88.797793" y2="38.730534" />
<line x1="109.623855" y1="29.541886" x2="92.579047" y2="39.382711" />
<path d="M 92.579047,39.382711 A 1.875,1.0825317547305484 0.0 0,1 89.927396,39.382711" />
<path d="M 84.462345,59.148562 A 2.3812499999999996,1.3748153285077964 0.0 0,1 88.527393,60.120703" />
<path d="M 88.527393,60.120703 A 2.3812500000000014,1.3748153285077973 0.0 0,1 83.764893,60.120703" />
<path d="M 83.764893,60.120703 A 2.3812499999999996,1.3748153285077964 0.0 0,1 84.462345,59.148562" />
<line x1="110.17303" y1="56.33318" x2="110.17303" y2="60.129889" />
<line x1="88.058643" y1="71.614934" x2="88.058643" y2="74.554321" />
<line x1="84.233643" y1="71.614934" x2="84.233643" y2="74.554321" />
<line x1="63.058882" y1="57.181315" x2="63.058882" y2="60.120703" />
<line x1="59.233882" y1="57.181315" x2="59.233882" y2="60.120703" />
<line x1="113.058403" y1="57.181315" x2="113.058403" y2="60.120703" />
<line x1="109.233403" y1="57.181315" x2="109.233403" y2="60.120703" />
<line x1="88.058643" y1="42.747697" x2="88.058643" y2="45.687085" />
<line x1="84.233643" y1="42.747697" x2="84.233643" y2="45.687085" />
<line x1="62.119255" y1="53.784343" x2="62.119255" y2="54.232742" />
<line x1="64.896382" y1="53.384606" x2="64.896382" y2="57.181315" />
<line x1="62.119255" y1="56.33318" x2="62.119255" y2="60.129889" />
<line x1="110.17303" y1="53.784343" x2="110.17303" y2="54.232742" />
<line x1="107.395903" y1="53.384606" x2="107.395903" y2="57.181315" />
<line x1="110.09803" y1="50.132924" x2="110.09803" y2="50.436033" />
<line x1="107.320903" y1="32.563944" x2="107.320903" y2="53.384606" />
<line x1="110.09803" y1="35.512517" x2="110.09803" y2="56.33318" />
<line x1="62.194255" y1="35.512517" x2="62.194255" y2="56.33318" />
<line x1="64.971382" y1="32.563944" x2="64.971382" y2="53.384606" />
<line x1="62.194255" y1="50.132924" x2="62.194255" y2="50.436033" />
<line x1="64.896382" y1="25.827847" x2="64.896382" y2="32.563944" />
<line x1="62.119255" y1="28.77642" x2="62.119255" y2="29.61537" />
<line x1="107.395903" y1="25.827847" x2="107.395903" y2="32.563944" />
<line x1="110.17303" y1="28.77642" x2="110.17303" y2="29.61537" />
<line x1="89.927396" y1="70.736179" x2="89.927396" y2="66.93947" />
<line x1="109.623855" y1="59.364423" x2="109.623855" y2="55.567714" />
<line x1="88.797793" y1="70.084003" x2="88.797793" y2="66.287294" />
<line x1="83.494492" y1="70.084003" x2="83.494492" y2="66.287294" />
<line x1="82.364889" y1="70.736179" x2="82.364889" y2="66.93947" />
<line x1="82.364889" y1="43.626452" x2="82.364889" y2="42.095521" />
<line x1="83.494492" y1="44.278628" x2="83.494492" y2="41.443344" />
<line x1="62.66843" y1="54.998208" x2="62.66843" y2="51.201499" />
<line x1="88.797793" y1="44.278628" x2="88.797793" y2="41.443344" />
<line x1="63.798033" y1="55.650384" x2="63.798033" y2="51.853675" />
<line x1="89.927396" y1="43.626452" x2="89.927396" y2="42.095521" />
<line x1="63.798033" y1="58.712247" x2="63.798033" y2="54.915537" />
<line x1="62.66843" y1="59.364423" x2="62.66843" y2="55.567714" />
<line x1="109.623855" y1="54.998208" x2="109.623855" y2="53.467277" />
<line x1="108.494252" y1="55.650384" x2="108.494252" y2="51.853675" />
<line x1="108.494252" y1="58.712247" x2="108.494252" y2="54.915537" />
<line x1="82.311856" y1="39.860361" x2="82.311856" y2="39.800302" />
<line x1="79.766272" y1="39.860361" x2="79.766272" y2="39.800302" />
<line x1="83.441459" y1="40.512538" x2="83.441459" y2="40.451301" />
<line x1="88.850826" y1="40.512538" x2="88.850826" y2="40.451301" />
<line x1="89.980429" y1="39.860361" x2="89.980429" y2="39.800302" />
<line x1="92.526014" y1="39.860361" x2="92.526014" y2="39.800302" />
<line x1="109.570822" y1="49.701186" x2="109.570822" y2="49.639949" />
<line x1="109.570822" y1="51.17088" x2="109.570822" y2="30.350217" />
<line x1="108.441219" y1="51.823057" x2="108.441219" y2="31.002394" />
<line x1="108.441219" y1="54.946156" x2="108.441219" y2="34.125493" />
<line x1="109.570822" y1="55.598333" x2="109.570822" y2="34.77767" />
<line x1="109.570822" y1="57.068027" x2="109.570822" y2="36.247364" />
<line x1="92.526014" y1="66.908852" x2="92.526014" y2="46.088189" />
<line x1="89.980429" y1="66.908852" x2="89.980429" y2="46.088189" />
<line x1="88.850826" y1="66.256675" x2="88.850826" y2="45.436012" />
<line x1="83.441459" y1="66.256675" x2="83.441459" y2="45.436012" />
<line x1="82.311856" y1="66.908852" x2="82.311856" y2="46.088189" />
<line x1="79.766272" y1="66.908852" x2="79.766272" y2="46.088189" />
<line x1="62.721463" y1="57.068027" x2="62.721463" y2="36.247364" />
<line x1="62.721463" y1="55.598333" x2="62.721463" y2="34.77767" />
<line x1="63.851066" y1="54.946156" x2="63.851066" y2="34.125493" />
<line x1="63.851066" y1="51.823057" x2="63.851066" y2="31.002394" />
<line x1="62.721463" y1="51.17088" x2="62.721463" y2="30.350217" />
<line x1="62.721463" y1="49.701186" x2="62.721463" y2="49.639949" />
<line x1="62.66843" y1="30.380836" x2="62.66843" y2="23.644739" />
<line x1="63.798033" y1="31.033012" x2="63.798033" y2="24.296916" />
<line x1="63.798033" y1="34.094875" x2="63.798033" y2="27.358778" />
<line x1="62.66843" y1="34.747051" x2="62.66843" y2="28.010955" />
<line x1="62.66843" y1="36.277982" x2="62.66843" y2="29.541886" />
<line x1="109.623855" y1="30.380836" x2="109.623855" y2="23.644739" />
<line x1="79.713239" y1="46.118807" x2="79.713239" y2="39.382711" />
<line x1="108.494252" y1="31.033012" x2="108.494252" y2="24.296916" />
<line x1="82.364889" y1="46.118807" x2="82.364889" y2="39.382711" />
<line x1="108.494252" y1="34.094875" x2="108.494252" y2="27.358778" />
<line x1="83.494492" y1="45.466631" x2="83.494492" y2="38.730534" />
<line x1="109.623855" y1="34.747051" x2="109.623855" y2="28.010955" />
<line x1="88.797793" y1="45.466631" x2="88.797793" y2="38.730534" />
<line x1="109.623855" y1="36.277982" x2="109.623855" y2="29.541886" />
<line x1="89.927396" y1="46.118807" x2="89.927396" y2="39.382711" />
<line x1="92.579047" y1="46.118807" x2="92.579047" y2="39.382711" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

View file

@ -1,11 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<svg width="100.09mm" height="66.151142mm" viewBox="-541.648921 -836.924186 4767.847817 3151.14975" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="scale(1,-1)" stroke-linecap="round">
<g fill="none" stroke="rgb(0,0,0)" stroke-width="4.28720455097892">
<path d="M 1445.821235,834.74528 C 1353.526765,803.718243 1260.88331,770.545273 1167.994034,735.580745 C 1083.806246,703.883592 999.414296,670.712071 914.854789,636.113423 C 835.638754,603.69438 756.274425,570.022422 676.77418,534.952257 C 592.583511,497.803918 508.238612,459.095508 423.75228,418.390166 C 381.475605,398.017947 339.163641,377.140102 296.820744,355.66775 C 255.380094,334.651781 213.909574,313.067151 172.417787,290.800527 C 132.498839,269.376021 92.559713,247.323024 52.616058,224.499576 C 33.433555,213.541072 14.251486,202.395739 -4.930148,191.063577 C -23.484296,180.09936 -42.03687,168.953007 -60.583168,157.587759 C -78.431472,146.650245 -96.273964,135.510001 -114.110039,124.195809 C -131.629708,113.082326 -149.143185,101.801012 -166.62766,90.088045 C -183.749938,78.617716 -200.844402,66.733433 -217.887184,54.406354 C -249.053676,31.859239 -280.057077,7.844124 -310.705712,-17.830688 C -324.493158,-29.38285 -338.206616,-41.273839 -351.816854,-53.534273 C -364.358757,-64.832326 -376.813009,-76.4441 -389.144607,-88.405566 C -400.391943,-99.315314 -411.537246,-110.515963 -422.53694,-122.049338 C -432.452058,-132.445516 -442.248865,-143.112041 -451.870806,-154.096773 C -460.428098,-163.866068 -468.84708,-173.887048 -477.05134,-184.212339 C -484.238191,-193.257193 -491.260272,-202.535563 -498.010658,-212.099865 C -503.829085,-220.343718 -509.445657,-228.800001 -514.706406,-237.507752 C -519.174839,-244.90404 -523.386558,-252.481753 -527.120208,-260.233274 C -530.2732,-266.779278 -533.085259,-273.449232 -535.256161,-280.125931 C -537.126266,-285.877518 -538.520579,-291.634109 -539.139475,-297.089851 C -539.710024,-302.119395 -539.621572,-306.893256 -538.815367,-311.085197 C -538.009295,-315.276448 -536.485707,-318.88597 -534.41361,-321.787038 C -532.173969,-324.922679 -529.293531,-327.230668 -526.080734,-328.912927 C -522.384603,-330.848265 -518.248591,-331.955443 -513.912155,-332.549837 C -508.837989,-333.245352 -503.489405,-333.238769 -498.016517,-332.811088 C -491.653993,-332.313885 -485.123469,-331.247553 -478.514247,-329.834557 C -470.940437,-328.21534 -463.263282,-326.140884 -455.535716,-323.780678 C -446.817103,-321.117779 -438.03432,-318.091135 -429.219119,-314.830251 C -419.4158,-311.203845 -409.572388,-307.287744 -399.708184,-303.182158 C -388.876522,-298.673905 -378.01979,-293.937177 -367.149854,-289.051048 C -355.343719,-283.74409 -343.522009,-278.26089 -331.692086,-272.665067 C -318.963322,-266.644073 -306.225051,-260.492693 -293.48194,-254.263696 C -279.88052,-247.615147 -266.273587,-240.878173 -252.664091,-234.095751 C -238.238065,-226.906402 -223.809159,-219.665987 -209.379903,-212.417551 C -194.175885,-204.777738 -178.971635,-197.135641 -163.767154,-189.491259 C -147.290706,-181.209732 -130.81417,-172.933298 -114.327757,-164.445833 C -96.638051,-155.338894 -78.936973,-145.988995 -61.23183,-136.489711 C -42.83628,-126.618999 -24.437139,-116.590472 -6.034405,-106.404129 C 12.988826,-95.875361 32.015044,-85.181632 51.041971,-74.350743 C 90.663309,-51.796303 130.287184,-28.649245 169.904219,-5.058022 C 211.090446,19.468633 252.269483,44.474456 293.437331,69.839459 C 335.517614,95.767754 377.586396,122.072076 419.642854,148.660515 C 503.76059,201.847286 587.828904,256.147719 671.854879,311.120502 C 751.312767,363.113312 830.733706,415.715977 910.121501,468.777679 C 995.01224,525.524664 1079.865697,582.797171 1164.674248,640.617824 C 1192.283028,659.441198 1219.886541,678.326945 1247.484787,697.275067 C 1270.73957,713.242184 1293.996044,729.258338 1317.241888,745.321373 C 1327.107887,752.139255 1336.976715,758.968255 1346.848371,765.808374 C 1355.493823,771.798596 1364.146132,777.799924 1372.767724,783.793106 C 1380.127277,788.908999 1387.464446,794.018955 1394.889693,799.180553 C 1401.009487,803.434676 1407.189112,807.723879 1413.119965,811.887911 C 1417.7599,815.145595 1422.247573,818.326668 1427.380659,821.845665 C 1431.063255,824.370277 1435.078042,827.068818 1437.610752,828.998585 C 1439.134823,830.159833 1440.12222,831.0427 1443.76641,833.306567 C 1444.982916,834.062292 1446.495484,834.97191 1445.821235,834.74528" />
<path d="M 4088.698422,-2201.97176 C 4071.863286,-2209.539657 4054.994642,-2217.480665 4038.106206,-2225.738798 C 4022.573261,-2233.338843 4007.022586,-2241.206509 3991.458597,-2249.421198 C 3983.516432,-2253.614748 3975.570735,-2257.900919 3967.622793,-2262.30905 C 3960.261943,-2266.392612 3952.898981,-2270.579106 3945.536956,-2274.915202 C 3943.845675,-2275.912386 3942.154454,-2276.917073 3940.463292,-2277.929262 C 3938.829503,-2278.906677 3937.195728,-2279.889856 3935.56293,-2280.905309 C 3931.124503,-2283.667466 3926.692829,-2286.658395 3922.292205,-2289.898531 C 3918.777241,-2292.48891 3915.280436,-2295.235265 3911.829585,-2298.184808 C 3910.073846,-2299.687297 3908.329767,-2301.242202 3906.611091,-2302.876449 C 3905.350277,-2304.077409 3904.101247,-2305.31876 3902.891914,-2306.64651 C 3902.453922,-2307.124054 3902.026791,-2307.61984 3901.610521,-2308.133868 C 3901.299294,-2308.518314 3901.002293,-2308.919081 3900.719517,-2309.336169 C 3900.527397,-2309.621912 3900.344384,-2309.916518 3900.220419,-2310.243794 C 3900.138415,-2310.46029 3900.08225,-2310.691082 3900.113043,-2310.851579 C 3900.143825,-2311.012017 3900.2615,-2311.10221 3900.393136,-2311.146406 C 3900.591347,-2311.212954 3900.82121,-2311.175213 3901.054853,-2311.119196 C 3901.395934,-2311.034587 3901.742062,-2310.920466 3902.093238,-2310.776833 C 3902.560145,-2310.589421 3903.03076,-2310.365917 3903.501882,-2310.129577 C 3904.091767,-2309.832167 3904.682134,-2309.519273 3905.272983,-2309.190897 C 3906.803549,-2308.34235 3908.334632,-2307.429826 3909.864882,-2306.507962 C 3911.837632,-2305.316998 3913.809818,-2304.101833 3915.782074,-2302.891418 C 3918.161608,-2301.426976 3920.541478,-2299.976332 3922.921685,-2298.539486 C 3927.169463,-2295.979761 3931.419103,-2293.492922 3935.667474,-2291.12314 C 3937.263565,-2290.232961 3938.85938,-2289.359703 3940.455335,-2288.478295 C 3942.141204,-2287.546398 3943.827175,-2286.607933 3945.51325,-2285.6629 C 3952.851904,-2281.554558 3960.1915,-2277.358362 3967.530929,-2273.121841 C 3975.456854,-2268.545879 3983.382716,-2263.92158 3991.308409,-2259.279052 C 4006.85028,-2250.172017 4022.391679,-2241.00337 4037.933217,-2231.854444 C 4045.982183,-2227.115049 4054.031164,-2222.377487 4062.08016,-2217.64176 C 4066.897545,-2214.806906 4071.71493,-2211.972052 4076.532315,-2209.137199 C 4078.284341,-2208.105943 4080.036161,-2207.074566 4081.787775,-2206.043066 C 4082.482313,-2205.633843 4083.180026,-2205.222922 4083.880913,-2204.810304 C 4084.459844,-2204.469581 4085.044497,-2204.12585 4085.605526,-2203.794355 C 4086.04433,-2203.535079 4086.468682,-2203.283289 4086.954417,-2202.999576 C 4087.302828,-2202.796074 4087.682821,-2202.576147 4087.921957,-2202.429398 C 4088.065839,-2202.341102 4088.15873,-2202.279298 4088.504102,-2202.086294 C 4088.619387,-2202.02187 4088.762804,-2201.942827 4088.698422,-2201.97176" />
<path d="M -538.815367,-311.085197 L -91.009814,-565.713777 L 357.94024,-813.228178 L 802.388988,-1050.515762 L 1236.747229,-1274.592501 L 1655.552655,-1482.6405 L 2053.538547,-1672.043435 L 2425.7,-1840.419453 L 2767.356868,-1985.651129 L 3074.212618,-2105.912089 L 3342.40836,-2199.689984 L 3568.571378,-2265.8055 L 3749.85754,-2303.427198 L 3883.987068,-2312.081962 L 3969.273206,-2291.660954" />
<path d="M 3969.273206,-2291.660954 L 4106.195866,-2183.789653 L 4191.480731,-2048.45593 L 4224.055294,-1887.361685 L 4203.50991,-1702.532772 L 4130.102951,-1496.293521 L 4004.75755,-1271.237512 L 3829.05,-1030.194953 L 3605.189924,-776.197095 L 3335.992494,-512.438108 L 3024.843022,-242.234914 L 2675.654394,31.014524 L 2292.817859,303.873937 L 1881.14781,572.911958 L 1445.821235,834.74528" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Some files were not shown because too many files have changed in this diff Show more