Minor adjustments.

This commit is contained in:
Kremitzl 2020-06-19 23:08:23 +02:00
parent cbc0898b98
commit dea2d8b9e5
10 changed files with 442 additions and 371 deletions

View File

@ -66,7 +66,7 @@ Typography
<figure style="display: flex; justify-content: space-between; width: 100%; align-items: flex-end;"> <figure style="display: flex; justify-content: space-between; width: 100%; align-items: flex-end;">
<img src="svg/chapter-01/satzspiegel.svg" style="height: 8em;"/> <img src="svg/chapter-01/satzspiegel.svg" style="height: 8em;"/>
<figcaption style="margin-left: 1em; font-size: .8em">Type area construction by Villard (<a class="dark-font" href="https://commons.wikimedia.org/wiki/File:Satzspiegel-4.svg">source</a>) <figcaption style="margin-left: 1em; font-size: .8em">Type area construction by&nbsp;Villard (<a class="dark-font" href="https://commons.wikimedia.org/wiki/File:Satzspiegel-4.svg">source</a>)
</figcaption> </figcaption>
</figure> </figure>

View File

@ -135,7 +135,7 @@ Tastenkombinationen: <kbd>Strg</kbd> + <kbd>T</kbd> und <kbd>Strg</kbd> + <kbd>U
Software-Installation Software-Installation
@content @content
Bitte installiert **zuerst den Compiler**, also MikTeX (Windows), MacTeX (MacOS) bzw. TeX Live (Linux) und **danach den Editor**. In diesem Workshop verwenden wir TeXstudio. Bitte installiert **zuerst den Compiler**, also MikTeX (Windows), MacTeX (MacOS) bzw. TeX Live (Linux) und **danach den Editor.** In diesem Workshop verwenden wir TeXstudio.
* MikTeX (Windows): <https://miktex.org/> * MikTeX (Windows): <https://miktex.org/>
* MacTeX (MacOS): <http://tug.org/mactex/> * MacTeX (MacOS): <http://tug.org/mactex/>

View File

@ -12,7 +12,7 @@ WYSIWhat?
@content @content
### What You See Is What You Get {data-category=Word} ### What You See Is What You Get {data-category=Word}
* Formatting with immediate visual Feedback * Formatting with immediate visual feedback
<div class="fragment"> <div class="fragment">
### What You See Is What You Mean {data-category=LaTeX} ### What You See Is What You Mean {data-category=LaTeX}
@ -135,7 +135,7 @@ Shortcuts: <kbd>Ctrl</kbd> + <kbd>T</kbd> and <kbd>Ctrl</kbd> + <kbd>U</kbd>
Software installation Software installation
@content @content
Please install **the compiler first** (MikTeX on Windows, MacTeX on MacOS, TeX Live on Linux), **followed by the editor**. In this workshop, we use TeXstudio. Please install **the compiler first** (MikTeX on Windows, MacTeX on MacOS, TeX Live on Linux), **followed by the editor.** In this workshop, we use TeXstudio.
* MikTeX (Windows): <https://miktex.org/> * MikTeX (Windows): <https://miktex.org/>
* MacTeX (MacOS): <http://tug.org/mactex/> * MacTeX (MacOS): <http://tug.org/mactex/>

View File

@ -131,7 +131,7 @@ Embedded Text in another language:
@slide(layout=content-and-preview) @slide(layout=content-and-preview)
@title @title
Languages an example Languages&hairsp;&hairsp;an example
@content @content
``` {.lang-tex .hljs} ``` {.lang-tex .hljs}
@ -168,9 +168,9 @@ just as multiple space characters. ↲
An empty line creates a new paragraph ↲ An empty line creates a new paragraph ↲
which has an indentation by default. ↲ which has an indentation by default. ↲
Manual line breaks can be forced ↲ Manual line breaks can be forced ↲
using two backslashes, ↲ using two backslashes, but this use
but this use \\ ↲ is strongly discouraged \\ ↲
is strongly discouraged. within continuous text.
``` ```
@preview @preview

View File

@ -13,7 +13,7 @@ Formula environments 🧮
$2 \sqrt{\frac{\pi^2}{3} \cdot c_2}$ $2 \sqrt{\frac{\pi^2}{3} \cdot c_2}$
``` ```
Mathematical formulas are only accepted in the so-called **math mode**. Mathematical formulas are only accepted in the so-called **math mode.**
In-line formulas must therefore be guarded by two dollar signs. In-line formulas must therefore be guarded by two dollar signs.
We can also use the `equation` block environment: We can also use the `equation` block environment:

View File

@ -98,15 +98,16 @@ Die gesamte Tabelle
@content @content
``` {.hljs .lang-tex} ``` {.hljs .lang-tex}
\begin{table}[h] \begin{table}[h]
\begin{tabular}{lrcl} \toprule \begin{tabular}{lrcl}
\toprule
Sprache & Autor & Erscheinungsjahr & Aktuelle Version \\ Sprache & Autor & Erscheinungsjahr & Aktuelle Version \\
\midrule \midrule
C++ & Bjarne Stroustrup & 1985 & C++ 17 \\ C++ & Bjarne Stroustrup & 1985 & C++ 17 \\
Java & James Gosling & 1998 & 13 \\ Java & James Gosling & 1998 & 13 \\
Python & Guido van Rossum & 1991 & 3.8.0 \\ Python & Guido van Rossum & 1991 & 3.8.0 \\
\bottomrule \bottomrule
\end{tabular} \end{tabular}
\caption{Bekannte Programmiersprachen} \caption{Bekannte Programmiersprachen}
\end{table} \end{table}
``` ```

View File

@ -98,16 +98,16 @@ The entire table
@content @content
``` {.hljs .lang-tex} ``` {.hljs .lang-tex}
\begin{table}[h] \begin{table}[h]
\begin{tabular}{lrcl} \begin{tabular}{lrcl}
\toprule \toprule
Language & Author & Year & Version \\ Language & Author & Year & Version \\
\midrule \midrule
C++ & Bjarne Stroustrup & 1985 & C++ 17 \\ C++ & Bjarne Stroustrup & 1985 & C++ 17 \\
Java & James Gosling & 1998 & 13 \\ Java & James Gosling & 1998 & 13 \\
Python & Guido van Rossum & 1991 & 3.8.0 \\ Python & Guido van Rossum & 1991 & 3.8.0 \\
\bottomrule \bottomrule
\end{tabular} \end{tabular}
\caption{Well-known programming languages} \caption{Well-known programming languages}
\end{table} \end{table}
``` ```

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="344pt" height="83pt" viewBox="0 0 344 83" version="1.1"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="345pt" height="93pt" viewBox="0 0 345 93" version="1.1">
<defs> <defs>
<g> <g>
<symbol overflow="visible" id="glyph0-0"> <symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/> <path style="stroke:none;" d=""/>
</symbol> </symbol>
<symbol overflow="visible" id="glyph0-1"> <symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.171875 7.078125 -6.453125 5.140625 -6.453125 C 4.28125 -6.453125 3.5625 -6.171875 2.984375 -5.703125 L 2.984375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 2.171875 L 0.5 2.171875 L 0.5 2.78125 C 0.828125 2.75 1.859375 2.75 2.265625 2.75 C 2.671875 2.75 3.71875 2.75 4.046875 2.78125 L 4.046875 2.171875 L 3.0625 2.171875 L 3.0625 -0.59375 C 3.40625 -0.265625 4.046875 0.09375 4.90625 0.09375 C 6.875 0.09375 8.40625 -1.109375 8.40625 -3.203125 Z M 6.6875 -3.203125 C 6.6875 -1.125 5.65625 -0.390625 4.734375 -0.390625 C 4.109375 -0.390625 3.5 -0.703125 3.0625 -1.375 L 3.0625 -5.015625 C 3.578125 -5.703125 4.34375 -5.9375 4.90625 -5.9375 C 5.84375 -5.9375 6.6875 -5.09375 6.6875 -3.203125 Z M 6.6875 -3.203125 "/> <path style="stroke:none;" d="M 10.125 -7.078125 C 10.125 -8.625 8.765625 -9.84375 6.390625 -9.84375 L 0.546875 -9.84375 L 0.546875 -9.21875 L 2.0625 -9.21875 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 C 0.96875 -0.03125 2.5 -0.03125 3.015625 -0.03125 C 3.53125 -0.03125 5.0625 -0.03125 5.484375 0 L 5.484375 -0.609375 L 3.953125 -0.609375 L 3.953125 -4.375 L 6.390625 -4.375 C 8.796875 -4.375 10.125 -5.59375 10.125 -7.078125 Z M 8.109375 -7.078125 C 8.109375 -6.125 8.109375 -4.921875 5.875 -4.921875 L 3.890625 -4.921875 L 3.890625 -9.21875 L 5.875 -9.21875 C 8.109375 -9.21875 8.109375 -8.046875 8.109375 -7.078125 Z M 8.109375 -7.078125 "/>
</symbol> </symbol>
<symbol overflow="visible" id="glyph0-2"> <symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 4.96875 -2 "/> <path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 4.96875 -2 "/>
@ -18,9 +18,12 @@
<path style="stroke:none;" d="M 7.8125 -5.734375 C 7.8125 -6.078125 7.5625 -6.546875 6.953125 -6.546875 C 6.34375 -6.546875 5.75 -6.234375 5.453125 -5.984375 C 4.859375 -6.328125 4.296875 -6.453125 3.578125 -6.453125 C 1.59375 -6.453125 0.796875 -5.34375 0.796875 -4.34375 C 0.796875 -3.90625 0.953125 -3.3125 1.546875 -2.828125 C 1.3125 -2.546875 1.046875 -2.046875 1.046875 -1.53125 C 1.046875 -0.921875 1.375 -0.390625 1.671875 -0.15625 C 1.328125 -0.078125 0.4375 0.265625 0.4375 1.078125 C 0.4375 1.921875 1.375 2.890625 4.015625 2.890625 C 6.390625 2.890625 7.609375 2.109375 7.609375 1.03125 C 7.609375 -0.234375 6.765625 -0.640625 6.40625 -0.8125 C 5.71875 -1.15625 4.8125 -1.15625 3.546875 -1.15625 C 3.1875 -1.15625 2.546875 -1.15625 2.484375 -1.171875 C 1.859375 -1.28125 1.6875 -1.828125 1.6875 -2.09375 C 1.6875 -2.203125 1.703125 -2.421875 1.859375 -2.609375 C 2.546875 -2.234375 3.359375 -2.234375 3.578125 -2.234375 C 5.546875 -2.234375 6.34375 -3.34375 6.34375 -4.34375 C 6.34375 -5.078125 5.921875 -5.59375 5.75 -5.734375 C 6.171875 -5.96875 6.515625 -6.03125 6.75 -6.046875 C 6.71875 -5.984375 6.671875 -5.921875 6.671875 -5.734375 C 6.671875 -5.4375 6.875 -5.15625 7.25 -5.15625 C 7.609375 -5.15625 7.8125 -5.4375 7.8125 -5.734375 Z M 4.8125 -4.34375 C 4.8125 -3.6875 4.8125 -2.703125 3.578125 -2.703125 C 2.328125 -2.703125 2.328125 -3.6875 2.328125 -4.34375 C 2.328125 -5 2.328125 -6 3.578125 -6 C 4.8125 -6 4.8125 -5 4.8125 -4.34375 Z M 6.421875 1.09375 C 6.421875 1.59375 5.921875 2.421875 4.03125 2.421875 C 2.140625 2.421875 1.625 1.625 1.625 1.078125 C 1.625 0.15625 2.53125 0.15625 2.734375 0.15625 L 4.375 0.15625 C 5.421875 0.15625 6.421875 0.34375 6.421875 1.09375 Z M 6.421875 1.09375 "/> <path style="stroke:none;" d="M 7.8125 -5.734375 C 7.8125 -6.078125 7.5625 -6.546875 6.953125 -6.546875 C 6.34375 -6.546875 5.75 -6.234375 5.453125 -5.984375 C 4.859375 -6.328125 4.296875 -6.453125 3.578125 -6.453125 C 1.59375 -6.453125 0.796875 -5.34375 0.796875 -4.34375 C 0.796875 -3.90625 0.953125 -3.3125 1.546875 -2.828125 C 1.3125 -2.546875 1.046875 -2.046875 1.046875 -1.53125 C 1.046875 -0.921875 1.375 -0.390625 1.671875 -0.15625 C 1.328125 -0.078125 0.4375 0.265625 0.4375 1.078125 C 0.4375 1.921875 1.375 2.890625 4.015625 2.890625 C 6.390625 2.890625 7.609375 2.109375 7.609375 1.03125 C 7.609375 -0.234375 6.765625 -0.640625 6.40625 -0.8125 C 5.71875 -1.15625 4.8125 -1.15625 3.546875 -1.15625 C 3.1875 -1.15625 2.546875 -1.15625 2.484375 -1.171875 C 1.859375 -1.28125 1.6875 -1.828125 1.6875 -2.09375 C 1.6875 -2.203125 1.703125 -2.421875 1.859375 -2.609375 C 2.546875 -2.234375 3.359375 -2.234375 3.578125 -2.234375 C 5.546875 -2.234375 6.34375 -3.34375 6.34375 -4.34375 C 6.34375 -5.078125 5.921875 -5.59375 5.75 -5.734375 C 6.171875 -5.96875 6.515625 -6.03125 6.75 -6.046875 C 6.71875 -5.984375 6.671875 -5.921875 6.671875 -5.734375 C 6.671875 -5.4375 6.875 -5.15625 7.25 -5.15625 C 7.609375 -5.15625 7.8125 -5.4375 7.8125 -5.734375 Z M 4.8125 -4.34375 C 4.8125 -3.6875 4.8125 -2.703125 3.578125 -2.703125 C 2.328125 -2.703125 2.328125 -3.6875 2.328125 -4.34375 C 2.328125 -5 2.328125 -6 3.578125 -6 C 4.8125 -6 4.8125 -5 4.8125 -4.34375 Z M 6.421875 1.09375 C 6.421875 1.59375 5.921875 2.421875 4.03125 2.421875 C 2.140625 2.421875 1.625 1.625 1.625 1.078125 C 1.625 0.15625 2.53125 0.15625 2.734375 0.15625 L 4.375 0.15625 C 5.421875 0.15625 6.421875 0.34375 6.421875 1.09375 Z M 6.421875 1.09375 "/>
</symbol> </symbol>
<symbol overflow="visible" id="glyph0-5"> <symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4 -6.453125 3.296875 -5.4375 3.09375 -5 L 3.078125 -5 L 3.078125 -9.953125 L 0.609375 -9.84375 L 0.609375 -9.21875 C 1.484375 -9.21875 1.59375 -9.21875 1.59375 -8.65625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/> <path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.171875 7.078125 -6.453125 5.140625 -6.453125 C 4.28125 -6.453125 3.5625 -6.171875 2.984375 -5.703125 L 2.984375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 2.171875 L 0.5 2.171875 L 0.5 2.78125 C 0.828125 2.75 1.859375 2.75 2.265625 2.75 C 2.671875 2.75 3.71875 2.75 4.046875 2.78125 L 4.046875 2.171875 L 3.0625 2.171875 L 3.0625 -0.59375 C 3.40625 -0.265625 4.046875 0.09375 4.90625 0.09375 C 6.875 0.09375 8.40625 -1.109375 8.40625 -3.203125 Z M 6.6875 -3.203125 C 6.6875 -1.125 5.65625 -0.390625 4.734375 -0.390625 C 4.109375 -0.390625 3.5 -0.703125 3.0625 -1.375 L 3.0625 -5.015625 C 3.578125 -5.703125 4.34375 -5.9375 4.90625 -5.9375 C 5.84375 -5.9375 6.6875 -5.09375 6.6875 -3.203125 Z M 6.6875 -3.203125 "/>
</symbol> </symbol>
<symbol overflow="visible" id="glyph0-6"> <symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4 -6.453125 3.296875 -5.4375 3.09375 -5 L 3.078125 -5 L 3.078125 -9.953125 L 0.609375 -9.84375 L 0.609375 -9.21875 C 1.484375 -9.21875 1.59375 -9.21875 1.59375 -8.65625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 5.8125 -2 C 5.8125 -2.6875 5.4375 -3.15625 5.15625 -3.40625 C 4.5625 -3.90625 4.078125 -3.984375 3.296875 -4.125 C 2.375 -4.28125 1.515625 -4.453125 1.515625 -5.140625 C 1.515625 -6.0625 2.796875 -6.0625 3.09375 -6.0625 C 4.6875 -6.0625 4.78125 -5.0625 4.8125 -4.703125 C 4.8125 -4.515625 4.9375 -4.515625 5.109375 -4.515625 C 5.40625 -4.515625 5.40625 -4.5625 5.40625 -4.890625 L 5.40625 -6.125 C 5.40625 -6.390625 5.40625 -6.5 5.1875 -6.5 C 5.109375 -6.5 5.078125 -6.5 4.859375 -6.375 C 4.8125 -6.328125 4.640625 -6.21875 4.578125 -6.1875 C 4.171875 -6.40625 3.640625 -6.5 3.125 -6.5 C 2.703125 -6.5 0.546875 -6.5 0.546875 -4.640625 C 0.546875 -3.125 2.328125 -2.8125 2.765625 -2.734375 C 3.15625 -2.671875 3.625 -2.578125 3.6875 -2.578125 C 4.265625 -2.453125 4.828125 -2.09375 4.828125 -1.484375 C 4.828125 -0.390625 3.53125 -0.390625 3.234375 -0.390625 C 2.5 -0.390625 1.59375 -0.609375 1.1875 -2.015625 C 1.109375 -2.296875 1.09375 -2.3125 0.84375 -2.3125 C 0.546875 -2.3125 0.546875 -2.265625 0.546875 -1.9375 L 0.546875 -0.28125 C 0.546875 -0.015625 0.546875 0.09375 0.765625 0.09375 C 0.859375 0.09375 0.890625 0.09375 1.171875 -0.140625 L 1.546875 -0.421875 C 2.1875 0.09375 2.96875 0.09375 3.234375 0.09375 C 4.015625 0.09375 5.8125 -0.09375 5.8125 -2 Z M 5.8125 -2 "/> <path style="stroke:none;" d="M 5.8125 -2 C 5.8125 -2.6875 5.4375 -3.15625 5.15625 -3.40625 C 4.5625 -3.90625 4.078125 -3.984375 3.296875 -4.125 C 2.375 -4.28125 1.515625 -4.453125 1.515625 -5.140625 C 1.515625 -6.0625 2.796875 -6.0625 3.09375 -6.0625 C 4.6875 -6.0625 4.78125 -5.0625 4.8125 -4.703125 C 4.8125 -4.515625 4.9375 -4.515625 5.109375 -4.515625 C 5.40625 -4.515625 5.40625 -4.5625 5.40625 -4.890625 L 5.40625 -6.125 C 5.40625 -6.390625 5.40625 -6.5 5.1875 -6.5 C 5.109375 -6.5 5.078125 -6.5 4.859375 -6.375 C 4.8125 -6.328125 4.640625 -6.21875 4.578125 -6.1875 C 4.171875 -6.40625 3.640625 -6.5 3.125 -6.5 C 2.703125 -6.5 0.546875 -6.5 0.546875 -4.640625 C 0.546875 -3.125 2.328125 -2.8125 2.765625 -2.734375 C 3.15625 -2.671875 3.625 -2.578125 3.6875 -2.578125 C 4.265625 -2.453125 4.828125 -2.09375 4.828125 -1.484375 C 4.828125 -0.390625 3.53125 -0.390625 3.234375 -0.390625 C 2.5 -0.390625 1.59375 -0.609375 1.1875 -2.015625 C 1.109375 -2.296875 1.09375 -2.3125 0.84375 -2.3125 C 0.546875 -2.3125 0.546875 -2.265625 0.546875 -1.9375 L 0.546875 -0.28125 C 0.546875 -0.015625 0.546875 0.09375 0.765625 0.09375 C 0.859375 0.09375 0.890625 0.09375 1.171875 -0.140625 L 1.546875 -0.421875 C 2.1875 0.09375 2.96875 0.09375 3.234375 0.09375 C 4.015625 0.09375 5.8125 -0.09375 5.8125 -2 Z M 5.8125 -2 "/>
</symbol> </symbol>
<symbol overflow="visible" id="glyph1-0"> <symbol overflow="visible" id="glyph1-0">
@ -117,395 +120,427 @@
</defs> </defs>
<g id="surface1"> <g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="-0.198" y="10.871"/> <use xlink:href="#glyph0-1" x="0.802" y="10.871"/>
<use xlink:href="#glyph0-2" x="8.768375" y="10.871"/>
<use xlink:href="#glyph0-3" x="16.614312" y="10.871"/>
<use xlink:href="#glyph0-2" x="23.206391" y="10.871"/>
<use xlink:href="#glyph0-4" x="31.052327" y="10.871"/>
<use xlink:href="#glyph0-3" x="39.122065" y="10.871"/>
<use xlink:href="#glyph0-2" x="45.714144" y="10.871"/>
<use xlink:href="#glyph0-1" x="53.560081" y="10.871"/>
<use xlink:href="#glyph0-5" x="62.526456" y="10.871"/>
<use xlink:href="#glyph0-6" x="71.492831" y="10.871"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="-0.198" y="32.692"/> <use xlink:href="#glyph0-2" x="11.382322" y="10.871"/>
<use xlink:href="#glyph1-2" x="6.99699" y="32.692"/> <use xlink:href="#glyph0-3" x="19.228259" y="10.871"/>
<use xlink:href="#glyph1-3" x="11.97829" y="32.692"/> <use xlink:href="#glyph0-2" x="25.820338" y="10.871"/>
<use xlink:href="#glyph0-4" x="33.666275" y="10.871"/>
<use xlink:href="#glyph0-3" x="41.736012" y="10.871"/>
<use xlink:href="#glyph0-2" x="48.328091" y="10.871"/>
<use xlink:href="#glyph0-5" x="56.174028" y="10.871"/>
<use xlink:href="#glyph0-6" x="65.140403" y="10.871"/>
<use xlink:href="#glyph0-7" x="74.106778" y="10.871"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="17.234557" y="32.692"/> <use xlink:href="#glyph1-1" x="0.802" y="32.692"/>
<use xlink:href="#glyph1-5" x="21.109013" y="32.692"/> <use xlink:href="#glyph1-2" x="7.99699" y="32.692"/>
<use xlink:href="#glyph1-3" x="23.876623" y="32.692"/> <use xlink:href="#glyph1-3" x="12.97829" y="32.692"/>
<use xlink:href="#glyph1-2" x="29.411843" y="32.692"/>
<use xlink:href="#glyph1-6" x="34.393143" y="32.692"/>
<use xlink:href="#glyph1-7" x="39.928364" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="47.674286" y="32.692"/> <use xlink:href="#glyph1-4" x="18.234557" y="32.692"/>
<use xlink:href="#glyph1-8" x="51.548741" y="32.692"/> <use xlink:href="#glyph1-5" x="22.109013" y="32.692"/>
<use xlink:href="#glyph1-9" x="55.977116" y="32.692"/> <use xlink:href="#glyph1-3" x="24.876623" y="32.692"/>
<use xlink:href="#glyph1-4" x="61.235377" y="32.692"/> <use xlink:href="#glyph1-2" x="30.411843" y="32.692"/>
<use xlink:href="#glyph1-6" x="35.393143" y="32.692"/>
<use xlink:href="#glyph1-7" x="40.928364" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="68.925508" y="32.692"/> <use xlink:href="#glyph1-4" x="48.674286" y="32.692"/>
<use xlink:href="#glyph1-11" x="73.353883" y="32.692"/> <use xlink:href="#glyph1-8" x="52.548741" y="32.692"/>
<use xlink:href="#glyph1-3" x="78.335183" y="32.692"/> <use xlink:href="#glyph1-9" x="56.977116" y="32.692"/>
<use xlink:href="#glyph1-4" x="62.235377" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="87.68608" y="32.692"/> <use xlink:href="#glyph1-10" x="69.925508" y="32.692"/>
<use xlink:href="#glyph1-11" x="74.353883" y="32.692"/>
<use xlink:href="#glyph1-3" x="79.335183" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-8" x="93.49029" y="32.692"/> <use xlink:href="#glyph1-12" x="88.68608" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="101.734342" y="32.692"/> <use xlink:href="#glyph1-8" x="94.49029" y="32.692"/>
<use xlink:href="#glyph1-14" x="108.929332" y="32.692"/>
<use xlink:href="#glyph1-5" x="112.831682" y="32.692"/>
<use xlink:href="#glyph1-4" x="115.599292" y="32.692"/>
<use xlink:href="#glyph1-4" x="119.473747" y="32.692"/>
<use xlink:href="#glyph1-8" x="123.348203" y="32.692"/>
<use xlink:href="#glyph1-3" x="127.776578" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="137.127475" y="32.692"/> <use xlink:href="#glyph1-13" x="102.734342" y="32.692"/>
<use xlink:href="#glyph1-5" x="142.662695" y="32.692"/> <use xlink:href="#glyph1-14" x="109.929332" y="32.692"/>
<use xlink:href="#glyph1-14" x="145.430306" y="32.692"/> <use xlink:href="#glyph1-5" x="113.831682" y="32.692"/>
<use xlink:href="#glyph1-8" x="149.332656" y="32.692"/> <use xlink:href="#glyph1-4" x="116.599292" y="32.692"/>
<use xlink:href="#glyph1-10" x="153.761032" y="32.692"/> <use xlink:href="#glyph1-4" x="120.473747" y="32.692"/>
<use xlink:href="#glyph1-4" x="158.189407" y="32.692"/> <use xlink:href="#glyph1-8" x="124.348203" y="32.692"/>
<use xlink:href="#glyph1-16" x="162.063862" y="32.692"/> <use xlink:href="#glyph1-3" x="128.776578" y="32.692"/>
<use xlink:href="#glyph1-17" x="164.831473" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="173.905409" y="32.692"/> <use xlink:href="#glyph1-15" x="138.127475" y="32.692"/>
<use xlink:href="#glyph1-3" x="176.673019" y="32.692"/> <use xlink:href="#glyph1-5" x="143.662695" y="32.692"/>
<use xlink:href="#glyph1-14" x="146.430306" y="32.692"/>
<use xlink:href="#glyph1-8" x="150.332656" y="32.692"/>
<use xlink:href="#glyph1-10" x="154.761032" y="32.692"/>
<use xlink:href="#glyph1-4" x="159.189407" y="32.692"/>
<use xlink:href="#glyph1-16" x="163.063862" y="32.692"/>
<use xlink:href="#glyph1-17" x="165.831473" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="186.023915" y="32.692"/> <use xlink:href="#glyph1-5" x="174.905409" y="32.692"/>
<use xlink:href="#glyph1-18" x="189.898371" y="32.692"/> <use xlink:href="#glyph1-3" x="177.673019" y="32.692"/>
<use xlink:href="#glyph1-8" x="195.433591" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="203.677643" y="32.692"/> <use xlink:href="#glyph1-4" x="187.023915" y="32.692"/>
<use xlink:href="#glyph1-18" x="190.898371" y="32.692"/>
<use xlink:href="#glyph1-8" x="196.433591" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="207.597926" y="32.692"/> <use xlink:href="#glyph1-7" x="204.677643" y="32.692"/>
<use xlink:href="#glyph1-6" x="212.579226" y="32.692"/>
<use xlink:href="#glyph1-14" x="218.114446" y="32.692"/>
<use xlink:href="#glyph1-10" x="222.016797" y="32.692"/>
<use xlink:href="#glyph1-8" x="226.445172" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="234.689224" y="32.692"/> <use xlink:href="#glyph1-2" x="208.597926" y="32.692"/>
<use xlink:href="#glyph1-2" x="239.1176" y="32.692"/> <use xlink:href="#glyph1-6" x="213.579226" y="32.692"/>
<use xlink:href="#glyph1-14" x="219.114446" y="32.692"/>
<use xlink:href="#glyph1-10" x="223.016797" y="32.692"/>
<use xlink:href="#glyph1-8" x="227.445172" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="244.377852" y="32.692"/> <use xlink:href="#glyph1-10" x="235.689224" y="32.692"/>
<use xlink:href="#glyph1-8" x="249.913073" y="32.692"/> <use xlink:href="#glyph1-2" x="240.1176" y="32.692"/>
<use xlink:href="#glyph1-19" x="254.341449" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-20" x="263.016881" y="32.692"/> <use xlink:href="#glyph1-15" x="245.377852" y="32.692"/>
<use xlink:href="#glyph1-5" x="268.552101" y="32.692"/> <use xlink:href="#glyph1-8" x="250.913073" y="32.692"/>
<use xlink:href="#glyph1-21" x="271.319712" y="32.692"/> <use xlink:href="#glyph1-19" x="255.341449" y="32.692"/>
<use xlink:href="#glyph1-22" x="279.621546" y="32.692"/>
<use xlink:href="#glyph1-16" x="285.156767" y="32.692"/>
<use xlink:href="#glyph1-8" x="287.924377" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="296.168429" y="32.692"/> <use xlink:href="#glyph1-20" x="264.016881" y="32.692"/>
<use xlink:href="#glyph1-5" x="298.936039" y="32.692"/> <use xlink:href="#glyph1-5" x="269.552101" y="32.692"/>
<use xlink:href="#glyph1-3" x="301.703649" y="32.692"/> <use xlink:href="#glyph1-21" x="272.319712" y="32.692"/>
<use xlink:href="#glyph1-8" x="307.23887" y="32.692"/> <use xlink:href="#glyph1-22" x="280.621546" y="32.692"/>
<use xlink:href="#glyph1-16" x="286.156767" y="32.692"/>
<use xlink:href="#glyph1-8" x="288.924377" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="315.482921" y="32.692"/> <use xlink:href="#glyph1-16" x="297.168429" y="32.692"/>
<use xlink:href="#glyph1-14" x="321.018142" y="32.692"/> <use xlink:href="#glyph1-5" x="299.936039" y="32.692"/>
<use xlink:href="#glyph1-8" x="324.920492" y="32.692"/> <use xlink:href="#glyph1-3" x="302.703649" y="32.692"/>
<use xlink:href="#glyph1-8" x="308.23887" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="329.338905" y="32.692"/> <use xlink:href="#glyph1-12" x="316.482921" y="32.692"/>
<use xlink:href="#glyph1-23" x="334.320205" y="32.692"/> <use xlink:href="#glyph1-14" x="322.018142" y="32.692"/>
<use xlink:href="#glyph1-7" x="339.578466" y="32.692"/> <use xlink:href="#glyph1-8" x="325.920492" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="-0.198" y="44.647"/> <use xlink:href="#glyph1-11" x="330.338905" y="32.692"/>
<use xlink:href="#glyph1-14" x="4.7833" y="44.647"/> <use xlink:href="#glyph1-23" x="335.320205" y="32.692"/>
<use xlink:href="#glyph1-8" x="8.68565" y="44.647"/> <use xlink:href="#glyph1-7" x="340.578466" y="32.692"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="16.431572" y="44.647"/> <use xlink:href="#glyph1-11" x="0.802" y="44.647"/>
<use xlink:href="#glyph1-24" x="19.199182" y="44.647"/> <use xlink:href="#glyph1-14" x="5.7833" y="44.647"/>
<use xlink:href="#glyph1-3" x="24.180482" y="44.647"/> <use xlink:href="#glyph1-8" x="9.68565" y="44.647"/>
<use xlink:href="#glyph1-2" x="29.715703" y="44.647"/>
<use xlink:href="#glyph1-14" x="34.697003" y="44.647"/>
<use xlink:href="#glyph1-8" x="38.599353" y="44.647"/>
<use xlink:href="#glyph1-15" x="43.027729" y="44.647"/>
<use xlink:href="#glyph1-25" x="48.562949" y="44.647"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-26" x="54.648106" y="44.647"/> <use xlink:href="#glyph1-5" x="17.431572" y="44.647"/>
<use xlink:href="#glyph1-6" x="57.692676" y="44.647"/> <use xlink:href="#glyph1-24" x="20.199182" y="44.647"/>
<use xlink:href="#glyph1-7" x="63.227897" y="44.647"/> <use xlink:href="#glyph1-3" x="25.180482" y="44.647"/>
<use xlink:href="#glyph1-4" x="67.158142" y="44.647"/> <use xlink:href="#glyph1-2" x="30.715703" y="44.647"/>
<use xlink:href="#glyph1-14" x="35.697003" y="44.647"/>
<use xlink:href="#glyph1-8" x="39.599353" y="44.647"/>
<use xlink:href="#glyph1-15" x="44.027729" y="44.647"/>
<use xlink:href="#glyph1-25" x="49.562949" y="44.647"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="74.360106" y="44.647"/> <use xlink:href="#glyph1-26" x="55.648106" y="44.647"/>
<use xlink:href="#glyph1-7" x="79.341406" y="44.647"/> <use xlink:href="#glyph1-6" x="58.692676" y="44.647"/>
<use xlink:href="#glyph1-7" x="64.227897" y="44.647"/>
<use xlink:href="#glyph1-4" x="68.158142" y="44.647"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-21" x="86.589197" y="44.647"/> <use xlink:href="#glyph1-11" x="75.360106" y="44.647"/>
<use xlink:href="#glyph1-7" x="80.341406" y="44.647"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="94.612079" y="44.647"/> <use xlink:href="#glyph1-21" x="87.589197" y="44.647"/>
<use xlink:href="#glyph1-16" x="100.1473" y="44.647"/>
<use xlink:href="#glyph1-4" x="102.91491" y="44.647"/>
<use xlink:href="#glyph1-5" x="106.789365" y="44.647"/>
<use xlink:href="#glyph1-22" x="109.556975" y="44.647"/>
<use xlink:href="#glyph1-16" x="115.092196" y="44.647"/>
<use xlink:href="#glyph1-8" x="117.859806" y="44.647"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="125.605728" y="44.647"/> <use xlink:href="#glyph1-6" x="95.612079" y="44.647"/>
<use xlink:href="#glyph1-22" x="129.535973" y="44.647"/> <use xlink:href="#glyph1-16" x="101.1473" y="44.647"/>
<use xlink:href="#glyph1-11" x="135.071194" y="44.647"/> <use xlink:href="#glyph1-4" x="103.91491" y="44.647"/>
<use xlink:href="#glyph1-10" x="140.052494" y="44.647"/> <use xlink:href="#glyph1-5" x="107.789365" y="44.647"/>
<use xlink:href="#glyph1-8" x="144.48087" y="44.647"/> <use xlink:href="#glyph1-22" x="110.556975" y="44.647"/>
<use xlink:href="#glyph1-16" x="116.092196" y="44.647"/>
<use xlink:href="#glyph1-8" x="118.859806" y="44.647"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="152.226791" y="44.647"/> <use xlink:href="#glyph1-7" x="126.605728" y="44.647"/>
<use xlink:href="#glyph1-22" x="130.535973" y="44.647"/>
<use xlink:href="#glyph1-11" x="136.071194" y="44.647"/>
<use xlink:href="#glyph1-10" x="141.052494" y="44.647"/>
<use xlink:href="#glyph1-8" x="145.48087" y="44.647"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-18" x="156.386177" y="44.647"/> <use xlink:href="#glyph1-10" x="153.226791" y="44.647"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="161.911435" y="44.647"/> <use xlink:href="#glyph1-18" x="157.386177" y="44.647"/>
<use xlink:href="#glyph1-14" x="166.892735" y="44.647"/>
<use xlink:href="#glyph1-11" x="170.795085" y="44.647"/>
<use xlink:href="#glyph1-10" x="175.776385" y="44.647"/>
<use xlink:href="#glyph1-4" x="180.204761" y="44.647"/>
<use xlink:href="#glyph1-8" x="184.079216" y="44.647"/>
<use xlink:href="#glyph1-14" x="188.507592" y="44.647"/>
<use xlink:href="#glyph1-7" x="192.409942" y="44.647"/>
<use xlink:href="#glyph1-19" x="196.340188" y="44.647"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-27" x="14.746" y="56.602"/> <use xlink:href="#glyph1-11" x="162.911435" y="44.647"/>
<use xlink:href="#glyph1-3" x="22.21795" y="56.602"/> <use xlink:href="#glyph1-14" x="167.892735" y="44.647"/>
<use xlink:href="#glyph1-11" x="171.795085" y="44.647"/>
<use xlink:href="#glyph1-10" x="176.776385" y="44.647"/>
<use xlink:href="#glyph1-4" x="181.204761" y="44.647"/>
<use xlink:href="#glyph1-8" x="185.079216" y="44.647"/>
<use xlink:href="#glyph1-14" x="189.507592" y="44.647"/>
<use xlink:href="#glyph1-7" x="193.409942" y="44.647"/>
<use xlink:href="#glyph1-19" x="197.340188" y="44.647"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-8" x="30.552661" y="56.602"/> <use xlink:href="#glyph1-27" x="15.746" y="56.602"/>
<use xlink:href="#glyph1-21" x="34.981037" y="56.602"/> <use xlink:href="#glyph1-3" x="23.21795" y="56.602"/>
<use xlink:href="#glyph1-22" x="43.282871" y="56.602"/>
<use xlink:href="#glyph1-4" x="48.818092" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-17" x="52.413594" y="56.602"/> <use xlink:href="#glyph1-8" x="31.552661" y="56.602"/>
<use xlink:href="#glyph1-21" x="35.981037" y="56.602"/>
<use xlink:href="#glyph1-22" x="44.282871" y="56.602"/>
<use xlink:href="#glyph1-4" x="49.818092" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="60.471345" y="56.602"/> <use xlink:href="#glyph1-17" x="53.413594" y="56.602"/>
<use xlink:href="#glyph1-5" x="63.238956" y="56.602"/>
<use xlink:href="#glyph1-3" x="66.006566" y="56.602"/>
<use xlink:href="#glyph1-8" x="71.541786" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="78.75969" y="56.602"/> <use xlink:href="#glyph1-16" x="61.471345" y="56.602"/>
<use xlink:href="#glyph1-14" x="83.188066" y="56.602"/> <use xlink:href="#glyph1-5" x="64.238956" y="56.602"/>
<use xlink:href="#glyph1-8" x="87.090416" y="56.602"/> <use xlink:href="#glyph1-3" x="67.006566" y="56.602"/>
<use xlink:href="#glyph1-11" x="91.518792" y="56.602"/> <use xlink:href="#glyph1-8" x="72.541786" y="56.602"/>
<use xlink:href="#glyph1-4" x="96.500092" y="56.602"/>
<use xlink:href="#glyph1-8" x="100.374547" y="56.602"/>
<use xlink:href="#glyph1-7" x="104.802923" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="111.532659" y="56.602"/> <use xlink:href="#glyph1-10" x="79.75969" y="56.602"/>
<use xlink:href="#glyph1-14" x="84.188066" y="56.602"/>
<use xlink:href="#glyph1-8" x="88.090416" y="56.602"/>
<use xlink:href="#glyph1-11" x="92.518792" y="56.602"/>
<use xlink:href="#glyph1-4" x="97.500092" y="56.602"/>
<use xlink:href="#glyph1-8" x="101.374547" y="56.602"/>
<use xlink:href="#glyph1-7" x="105.802923" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="119.31345" y="56.602"/> <use xlink:href="#glyph1-11" x="112.532659" y="56.602"/>
<use xlink:href="#glyph1-8" x="124.84867" y="56.602"/>
<use xlink:href="#glyph1-13" x="129.277046" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-22" x="139.261564" y="56.602"/> <use xlink:href="#glyph1-3" x="120.31345" y="56.602"/>
<use xlink:href="#glyph1-11" x="144.796784" y="56.602"/> <use xlink:href="#glyph1-8" x="125.84867" y="56.602"/>
<use xlink:href="#glyph1-14" x="149.778084" y="56.602"/> <use xlink:href="#glyph1-13" x="130.277046" y="56.602"/>
<use xlink:href="#glyph1-11" x="153.680435" y="56.602"/>
<use xlink:href="#glyph1-24" x="158.661735" y="56.602"/>
<use xlink:href="#glyph1-14" x="163.643035" y="56.602"/>
<use xlink:href="#glyph1-11" x="167.545385" y="56.602"/>
<use xlink:href="#glyph1-22" x="172.526685" y="56.602"/>
<use xlink:href="#glyph1-18" x="178.061906" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="186.396617" y="56.602"/> <use xlink:href="#glyph1-22" x="140.261564" y="56.602"/>
<use xlink:href="#glyph1-18" x="193.591606" y="56.602"/> <use xlink:href="#glyph1-11" x="145.796784" y="56.602"/>
<use xlink:href="#glyph1-5" x="199.126827" y="56.602"/> <use xlink:href="#glyph1-14" x="150.778084" y="56.602"/>
<use xlink:href="#glyph1-10" x="201.894437" y="56.602"/> <use xlink:href="#glyph1-11" x="154.680435" y="56.602"/>
<use xlink:href="#glyph1-24" x="159.661735" y="56.602"/>
<use xlink:href="#glyph1-14" x="164.643035" y="56.602"/>
<use xlink:href="#glyph1-11" x="168.545385" y="56.602"/>
<use xlink:href="#glyph1-22" x="173.526685" y="56.602"/>
<use xlink:href="#glyph1-18" x="179.061906" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-18" x="206.04386" y="56.602"/> <use xlink:href="#glyph1-13" x="187.396617" y="56.602"/>
<use xlink:href="#glyph1-18" x="194.591606" y="56.602"/>
<use xlink:href="#glyph1-5" x="200.126827" y="56.602"/>
<use xlink:href="#glyph1-10" x="202.894437" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-18" x="214.378571" y="56.602"/> <use xlink:href="#glyph1-18" x="207.04386" y="56.602"/>
<use xlink:href="#glyph1-11" x="219.913792" y="56.602"/>
<use xlink:href="#glyph1-7" x="224.895092" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-11" x="231.624828" y="56.602"/> <use xlink:href="#glyph1-18" x="215.378571" y="56.602"/>
<use xlink:href="#glyph1-3" x="236.606128" y="56.602"/> <use xlink:href="#glyph1-11" x="220.913792" y="56.602"/>
<use xlink:href="#glyph1-7" x="225.895092" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="244.930877" y="56.602"/> <use xlink:href="#glyph1-11" x="232.624828" y="56.602"/>
<use xlink:href="#glyph1-3" x="247.698487" y="56.602"/> <use xlink:href="#glyph1-3" x="237.606128" y="56.602"/>
<use xlink:href="#glyph1-15" x="253.233708" y="56.602"/>
<use xlink:href="#glyph1-8" x="258.768928" y="56.602"/>
<use xlink:href="#glyph1-3" x="263.197304" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="268.453572" y="56.602"/> <use xlink:href="#glyph1-5" x="245.930877" y="56.602"/>
<use xlink:href="#glyph1-11" x="272.328027" y="56.602"/> <use xlink:href="#glyph1-3" x="248.698487" y="56.602"/>
<use xlink:href="#glyph1-4" x="277.309327" y="56.602"/> <use xlink:href="#glyph1-15" x="254.233708" y="56.602"/>
<use xlink:href="#glyph1-5" x="281.183782" y="56.602"/> <use xlink:href="#glyph1-8" x="259.768928" y="56.602"/>
<use xlink:href="#glyph1-2" x="283.951392" y="56.602"/> <use xlink:href="#glyph1-3" x="264.197304" y="56.602"/>
<use xlink:href="#glyph1-3" x="288.932692" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="297.267403" y="56.602"/> <use xlink:href="#glyph1-4" x="269.453572" y="56.602"/>
<use xlink:href="#glyph1-11" x="273.328027" y="56.602"/>
<use xlink:href="#glyph1-4" x="278.309327" y="56.602"/>
<use xlink:href="#glyph1-5" x="282.183782" y="56.602"/>
<use xlink:href="#glyph1-2" x="284.951392" y="56.602"/>
<use xlink:href="#glyph1-3" x="289.932692" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-17" x="302.523671" y="56.602"/> <use xlink:href="#glyph1-12" x="298.267403" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="310.581422" y="56.602"/> <use xlink:href="#glyph1-17" x="303.523671" y="56.602"/>
<use xlink:href="#glyph1-8" x="316.116643" y="56.602"/>
<use xlink:href="#glyph1-28" x="320.545018" y="56.602"/>
<use xlink:href="#glyph1-11" x="323.589589" y="56.602"/>
<use xlink:href="#glyph1-6" x="328.570889" y="56.602"/>
<use xlink:href="#glyph1-16" x="334.106109" y="56.602"/>
<use xlink:href="#glyph1-4" x="336.87372" y="56.602"/>
<use xlink:href="#glyph1-19" x="340.748175" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-29" x="-0.198" y="68.557"/> <use xlink:href="#glyph1-15" x="311.581422" y="56.602"/>
<use xlink:href="#glyph1-11" x="8.934715" y="68.557"/> <use xlink:href="#glyph1-8" x="317.116643" y="56.602"/>
<use xlink:href="#glyph1-3" x="13.916015" y="68.557"/> <use xlink:href="#glyph1-28" x="321.545018" y="56.602"/>
<use xlink:href="#glyph1-11" x="324.589589" y="56.602"/>
<use xlink:href="#glyph1-6" x="329.570889" y="56.602"/>
<use xlink:href="#glyph1-16" x="335.106109" y="56.602"/>
<use xlink:href="#glyph1-4" x="337.87372" y="56.602"/>
<use xlink:href="#glyph1-19" x="341.748175" y="56.602"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="19.172283" y="68.557"/> <use xlink:href="#glyph1-29" x="0.802" y="68.557"/>
<use xlink:href="#glyph1-11" x="24.707504" y="68.557"/> <use xlink:href="#glyph1-11" x="9.934715" y="68.557"/>
<use xlink:href="#glyph1-16" x="29.688804" y="68.557"/> <use xlink:href="#glyph1-3" x="14.916015" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="35.77396" y="68.557"/> <use xlink:href="#glyph1-6" x="20.172283" y="68.557"/>
<use xlink:href="#glyph1-5" x="38.54157" y="68.557"/> <use xlink:href="#glyph1-11" x="25.707504" y="68.557"/>
<use xlink:href="#glyph1-3" x="41.30918" y="68.557"/> <use xlink:href="#glyph1-16" x="30.688804" y="68.557"/>
<use xlink:href="#glyph1-8" x="46.844401" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="54.600285" y="68.557"/> <use xlink:href="#glyph1-16" x="36.425269" y="68.557"/>
<use xlink:href="#glyph1-14" x="60.135506" y="68.557"/> <use xlink:href="#glyph1-5" x="39.192879" y="68.557"/>
<use xlink:href="#glyph1-8" x="64.037856" y="68.557"/> <use xlink:href="#glyph1-3" x="41.960489" y="68.557"/>
<use xlink:href="#glyph1-11" x="68.466232" y="68.557"/> <use xlink:href="#glyph1-8" x="47.49571" y="68.557"/>
<use xlink:href="#glyph1-23" x="73.447532" y="68.557"/>
<use xlink:href="#glyph1-7" x="78.705792" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="85.953584" y="68.557"/> <use xlink:href="#glyph1-12" x="54.902903" y="68.557"/>
<use xlink:href="#glyph1-11" x="90.381959" y="68.557"/> <use xlink:href="#glyph1-14" x="60.438124" y="68.557"/>
<use xlink:href="#glyph1-3" x="95.363259" y="68.557"/> <use xlink:href="#glyph1-8" x="64.340474" y="68.557"/>
<use xlink:href="#glyph1-11" x="68.76885" y="68.557"/>
<use xlink:href="#glyph1-23" x="73.75015" y="68.557"/>
<use xlink:href="#glyph1-7" x="79.00841" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="104.216026" y="68.557"/> <use xlink:href="#glyph1-10" x="85.907511" y="68.557"/>
<use xlink:href="#glyph1-11" x="90.335886" y="68.557"/>
<use xlink:href="#glyph1-3" x="95.317186" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-8" x="110.030199" y="68.557"/> <use xlink:href="#glyph1-12" x="103.821262" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="117.77612" y="68.557"/> <use xlink:href="#glyph1-8" x="109.635435" y="68.557"/>
<use xlink:href="#glyph1-2" x="120.820691" y="68.557"/>
<use xlink:href="#glyph1-14" x="125.801991" y="68.557"/>
<use xlink:href="#glyph1-10" x="129.704341" y="68.557"/>
<use xlink:href="#glyph1-8" x="134.132717" y="68.557"/>
<use xlink:href="#glyph1-15" x="138.561093" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="147.413859" y="68.557"/> <use xlink:href="#glyph1-28" x="117.032665" y="68.557"/>
<use xlink:href="#glyph1-7" x="152.94908" y="68.557"/> <use xlink:href="#glyph1-2" x="120.077236" y="68.557"/>
<use xlink:href="#glyph1-5" x="156.879325" y="68.557"/> <use xlink:href="#glyph1-14" x="125.058536" y="68.557"/>
<use xlink:href="#glyph1-3" x="159.646936" y="68.557"/> <use xlink:href="#glyph1-10" x="128.960886" y="68.557"/>
<use xlink:href="#glyph1-24" x="165.182156" y="68.557"/> <use xlink:href="#glyph1-8" x="133.389262" y="68.557"/>
<use xlink:href="#glyph1-15" x="137.817638" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="173.481002" y="68.557"/> <use xlink:href="#glyph1-6" x="146.321713" y="68.557"/>
<use xlink:href="#glyph1-7" x="151.856934" y="68.557"/>
<use xlink:href="#glyph1-5" x="155.787179" y="68.557"/>
<use xlink:href="#glyph1-3" x="158.55479" y="68.557"/>
<use xlink:href="#glyph1-24" x="164.09001" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="177.086467" y="68.557"/> <use xlink:href="#glyph1-4" x="172.050128" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="184.002504" y="68.557"/> <use xlink:href="#glyph1-13" x="175.64563" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="192.30135" y="68.557"/> <use xlink:href="#glyph1-2" x="182.561667" y="68.557"/>
<use xlink:href="#glyph1-11" x="197.83657" y="68.557"/>
<use xlink:href="#glyph1-10" x="202.81787" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-23" x="206.967293" y="68.557"/> <use xlink:href="#glyph1-12" x="190.521784" y="68.557"/>
<use xlink:href="#glyph1-7" x="212.225553" y="68.557"/> <use xlink:href="#glyph1-11" x="196.057005" y="68.557"/>
<use xlink:href="#glyph1-16" x="216.155799" y="68.557"/> <use xlink:href="#glyph1-10" x="201.038305" y="68.557"/>
<use xlink:href="#glyph1-11" x="218.923409" y="68.557"/>
<use xlink:href="#glyph1-7" x="223.904709" y="68.557"/>
<use xlink:href="#glyph1-18" x="227.834955" y="68.557"/>
<use xlink:href="#glyph1-8" x="233.370176" y="68.557"/>
<use xlink:href="#glyph1-7" x="237.798551" y="68.557"/>
<use xlink:href="#glyph1-25" x="241.728797" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="247.813953" y="68.557"/> <use xlink:href="#glyph1-23" x="205.187728" y="68.557"/>
<use xlink:href="#glyph1-6" x="253.349174" y="68.557"/> <use xlink:href="#glyph1-7" x="210.445988" y="68.557"/>
<use xlink:href="#glyph1-4" x="258.884394" y="68.557"/> <use xlink:href="#glyph1-16" x="214.376234" y="68.557"/>
<use xlink:href="#glyph1-11" x="217.143844" y="68.557"/>
<use xlink:href="#glyph1-7" x="222.125144" y="68.557"/>
<use xlink:href="#glyph1-18" x="226.05539" y="68.557"/>
<use xlink:href="#glyph1-8" x="231.59061" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="266.086358" y="68.557"/> <use xlink:href="#glyph1-7" x="236.009023" y="68.557"/>
<use xlink:href="#glyph1-18" x="269.960813" y="68.557"/> <use xlink:href="#glyph1-25" x="239.939269" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="275.486071" y="68.557"/> <use xlink:href="#glyph1-12" x="245.755435" y="68.557"/>
<use xlink:href="#glyph1-7" x="278.253681" y="68.557"/> <use xlink:href="#glyph1-6" x="251.290656" y="68.557"/>
<use xlink:href="#glyph1-4" x="256.825876" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="285.511435" y="68.557"/> <use xlink:href="#glyph1-4" x="263.669186" y="68.557"/>
<use xlink:href="#glyph1-7" x="291.046656" y="68.557"/> <use xlink:href="#glyph1-18" x="267.543641" y="68.557"/>
<use xlink:href="#glyph1-8" x="294.976902" y="68.557"/> <use xlink:href="#glyph1-5" x="273.078862" y="68.557"/>
<use xlink:href="#glyph1-7" x="275.846472" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="-0.198" y="80.513"/> <use xlink:href="#glyph1-6" x="282.745573" y="68.557"/>
<use xlink:href="#glyph1-7" x="2.56961" y="80.513"/> <use xlink:href="#glyph1-7" x="288.280793" y="68.557"/>
<use xlink:href="#glyph1-8" x="292.211039" y="68.557"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="9.817402" y="80.513"/> <use xlink:href="#glyph1-5" x="299.618232" y="68.557"/>
<use xlink:href="#glyph1-4" x="13.747647" y="80.513"/> <use xlink:href="#glyph1-7" x="302.385842" y="68.557"/>
<use xlink:href="#glyph1-14" x="17.622103" y="80.513"/>
<use xlink:href="#glyph1-2" x="21.524453" y="80.513"/>
<use xlink:href="#glyph1-3" x="26.505753" y="80.513"/>
<use xlink:href="#glyph1-24" x="32.040974" y="80.513"/>
<use xlink:href="#glyph1-16" x="37.022274" y="80.513"/>
<use xlink:href="#glyph1-17" x="39.789884" y="80.513"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="48.36569" y="80.513"/> <use xlink:href="#glyph1-7" x="309.284943" y="68.557"/>
<use xlink:href="#glyph1-5" x="53.900911" y="80.513"/> <use xlink:href="#glyph1-4" x="313.215188" y="68.557"/>
<use xlink:href="#glyph1-7" x="56.668521" y="80.513"/> <use xlink:href="#glyph1-14" x="317.089644" y="68.557"/>
<use xlink:href="#glyph1-10" x="60.598767" y="80.513"/> <use xlink:href="#glyph1-2" x="320.991994" y="68.557"/>
<use xlink:href="#glyph1-2" x="65.027142" y="80.513"/> <use xlink:href="#glyph1-3" x="325.973294" y="68.557"/>
<use xlink:href="#glyph1-6" x="70.008442" y="80.513"/> <use xlink:href="#glyph1-24" x="331.508514" y="68.557"/>
<use xlink:href="#glyph1-14" x="75.543663" y="80.513"/> <use xlink:href="#glyph1-16" x="336.489814" y="68.557"/>
<use xlink:href="#glyph1-11" x="79.446013" y="80.513"/> <use xlink:href="#glyph1-17" x="339.257425" y="68.557"/>
<use xlink:href="#glyph1-24" x="84.427313" y="80.513"/> </g>
<use xlink:href="#glyph1-8" x="89.408613" y="80.513"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="93.836989" y="80.513"/> <use xlink:href="#glyph1-15" x="0.802" y="80.513"/>
<use xlink:href="#glyph1-19" x="99.372209" y="80.513"/> <use xlink:href="#glyph1-5" x="6.337221" y="80.513"/>
<use xlink:href="#glyph1-7" x="9.104831" y="80.513"/>
<use xlink:href="#glyph1-10" x="13.035077" y="80.513"/>
<use xlink:href="#glyph1-2" x="17.463452" y="80.513"/>
<use xlink:href="#glyph1-6" x="22.444752" y="80.513"/>
<use xlink:href="#glyph1-14" x="27.979973" y="80.513"/>
<use xlink:href="#glyph1-11" x="31.882323" y="80.513"/>
<use xlink:href="#glyph1-24" x="36.863623" y="80.513"/>
<use xlink:href="#glyph1-8" x="41.844923" y="80.513"/>
<use xlink:href="#glyph1-15" x="46.273299" y="80.513"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="0.802" y="92.468"/>
<use xlink:href="#glyph1-5" x="7.99699" y="92.468"/>
<use xlink:href="#glyph1-4" x="10.7646" y="92.468"/>
<use xlink:href="#glyph1-18" x="14.639055" y="92.468"/>
<use xlink:href="#glyph1-5" x="20.174276" y="92.468"/>
<use xlink:href="#glyph1-3" x="22.941886" y="92.468"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="31.794652" y="92.468"/>
<use xlink:href="#glyph1-2" x="36.223028" y="92.468"/>
<use xlink:href="#glyph1-3" x="41.204328" y="92.468"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="46.460596" y="92.468"/>
<use xlink:href="#glyph1-5" x="50.335051" y="92.468"/>
<use xlink:href="#glyph1-3" x="53.102661" y="92.468"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="58.358929" y="92.468"/>
<use xlink:href="#glyph1-2" x="63.89415" y="92.468"/>
<use xlink:href="#glyph1-6" x="68.87545" y="92.468"/>
<use xlink:href="#glyph1-7" x="74.41067" y="92.468"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="81.668424" y="92.468"/>
<use xlink:href="#glyph1-8" x="85.542879" y="92.468"/>
<use xlink:href="#glyph1-9" x="89.971255" y="92.468"/>
<use xlink:href="#glyph1-4" x="95.229515" y="92.468"/>
<use xlink:href="#glyph1-19" x="99.10397" y="92.468"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -6,7 +6,7 @@
<path style="stroke:none;" d=""/> <path style="stroke:none;" d=""/>
</symbol> </symbol>
<symbol overflow="visible" id="glyph0-1"> <symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.171875 7.078125 -6.453125 5.140625 -6.453125 C 4.28125 -6.453125 3.5625 -6.171875 2.984375 -5.703125 L 2.984375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 2.171875 L 0.5 2.171875 L 0.5 2.78125 C 0.828125 2.75 1.859375 2.75 2.265625 2.75 C 2.671875 2.75 3.71875 2.75 4.046875 2.78125 L 4.046875 2.171875 L 3.0625 2.171875 L 3.0625 -0.59375 C 3.40625 -0.265625 4.046875 0.09375 4.90625 0.09375 C 6.875 0.09375 8.40625 -1.109375 8.40625 -3.203125 Z M 6.6875 -3.203125 C 6.6875 -1.125 5.65625 -0.390625 4.734375 -0.390625 C 4.109375 -0.390625 3.5 -0.703125 3.0625 -1.375 L 3.0625 -5.015625 C 3.578125 -5.703125 4.34375 -5.9375 4.90625 -5.9375 C 5.84375 -5.9375 6.6875 -5.09375 6.6875 -3.203125 Z M 6.6875 -3.203125 "/> <path style="stroke:none;" d="M 10.125 -7.078125 C 10.125 -8.625 8.765625 -9.84375 6.390625 -9.84375 L 0.546875 -9.84375 L 0.546875 -9.21875 L 2.0625 -9.21875 L 2.0625 -0.609375 L 0.546875 -0.609375 L 0.546875 0 C 0.96875 -0.03125 2.5 -0.03125 3.015625 -0.03125 C 3.53125 -0.03125 5.0625 -0.03125 5.484375 0 L 5.484375 -0.609375 L 3.953125 -0.609375 L 3.953125 -4.375 L 6.390625 -4.375 C 8.796875 -4.375 10.125 -5.59375 10.125 -7.078125 Z M 8.109375 -7.078125 C 8.109375 -6.125 8.109375 -4.921875 5.875 -4.921875 L 3.890625 -4.921875 L 3.890625 -9.21875 L 5.875 -9.21875 C 8.109375 -9.21875 8.109375 -8.046875 8.109375 -7.078125 Z M 8.109375 -7.078125 "/>
</symbol> </symbol>
<symbol overflow="visible" id="glyph0-2"> <symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 4.96875 -2 "/> <path style="stroke:none;" d="M 7.765625 -0.3125 C 7.765625 -0.609375 7.625 -0.609375 7.4375 -0.609375 C 6.53125 -0.625 6.53125 -0.859375 6.53125 -1.1875 L 6.53125 -4.28125 C 6.53125 -5.609375 5.484375 -6.5 3.453125 -6.5 C 2.65625 -6.5 0.96875 -6.421875 0.96875 -5.21875 C 0.96875 -4.625 1.421875 -4.359375 1.8125 -4.359375 C 2.234375 -4.359375 2.65625 -4.65625 2.65625 -5.203125 C 2.65625 -5.484375 2.546875 -5.734375 2.3125 -5.890625 C 2.78125 -6.03125 3.125 -6.03125 3.40625 -6.03125 C 4.375 -6.03125 4.96875 -5.484375 4.96875 -4.296875 L 4.96875 -3.734375 C 2.703125 -3.734375 0.421875 -3.09375 0.421875 -1.5 C 0.421875 -0.203125 2.078125 0.09375 3.0625 0.09375 C 4.171875 0.09375 4.875 -0.515625 5.15625 -1.140625 C 5.15625 -0.609375 5.15625 0 6.609375 0 L 7.34375 0 C 7.640625 0 7.765625 0 7.765625 -0.3125 Z M 4.96875 -2 C 4.96875 -0.640625 3.765625 -0.390625 3.296875 -0.390625 C 2.59375 -0.390625 2.015625 -0.859375 2.015625 -1.515625 C 2.015625 -2.828125 3.5625 -3.265625 4.96875 -3.34375 Z M 4.96875 -2 "/>
@ -18,9 +18,12 @@
<path style="stroke:none;" d="M 7.8125 -5.734375 C 7.8125 -6.078125 7.5625 -6.546875 6.953125 -6.546875 C 6.34375 -6.546875 5.75 -6.234375 5.453125 -5.984375 C 4.859375 -6.328125 4.296875 -6.453125 3.578125 -6.453125 C 1.59375 -6.453125 0.796875 -5.34375 0.796875 -4.34375 C 0.796875 -3.90625 0.953125 -3.3125 1.546875 -2.828125 C 1.3125 -2.546875 1.046875 -2.046875 1.046875 -1.53125 C 1.046875 -0.921875 1.375 -0.390625 1.671875 -0.15625 C 1.328125 -0.078125 0.4375 0.265625 0.4375 1.078125 C 0.4375 1.921875 1.375 2.890625 4.015625 2.890625 C 6.390625 2.890625 7.609375 2.109375 7.609375 1.03125 C 7.609375 -0.234375 6.765625 -0.640625 6.40625 -0.8125 C 5.71875 -1.15625 4.8125 -1.15625 3.546875 -1.15625 C 3.1875 -1.15625 2.546875 -1.15625 2.484375 -1.171875 C 1.859375 -1.28125 1.6875 -1.828125 1.6875 -2.09375 C 1.6875 -2.203125 1.703125 -2.421875 1.859375 -2.609375 C 2.546875 -2.234375 3.359375 -2.234375 3.578125 -2.234375 C 5.546875 -2.234375 6.34375 -3.34375 6.34375 -4.34375 C 6.34375 -5.078125 5.921875 -5.59375 5.75 -5.734375 C 6.171875 -5.96875 6.515625 -6.03125 6.75 -6.046875 C 6.71875 -5.984375 6.671875 -5.921875 6.671875 -5.734375 C 6.671875 -5.4375 6.875 -5.15625 7.25 -5.15625 C 7.609375 -5.15625 7.8125 -5.4375 7.8125 -5.734375 Z M 4.8125 -4.34375 C 4.8125 -3.6875 4.8125 -2.703125 3.578125 -2.703125 C 2.328125 -2.703125 2.328125 -3.6875 2.328125 -4.34375 C 2.328125 -5 2.328125 -6 3.578125 -6 C 4.8125 -6 4.8125 -5 4.8125 -4.34375 Z M 6.421875 1.09375 C 6.421875 1.59375 5.921875 2.421875 4.03125 2.421875 C 2.140625 2.421875 1.625 1.625 1.625 1.078125 C 1.625 0.15625 2.53125 0.15625 2.734375 0.15625 L 4.375 0.15625 C 5.421875 0.15625 6.421875 0.34375 6.421875 1.09375 Z M 6.421875 1.09375 "/> <path style="stroke:none;" d="M 7.8125 -5.734375 C 7.8125 -6.078125 7.5625 -6.546875 6.953125 -6.546875 C 6.34375 -6.546875 5.75 -6.234375 5.453125 -5.984375 C 4.859375 -6.328125 4.296875 -6.453125 3.578125 -6.453125 C 1.59375 -6.453125 0.796875 -5.34375 0.796875 -4.34375 C 0.796875 -3.90625 0.953125 -3.3125 1.546875 -2.828125 C 1.3125 -2.546875 1.046875 -2.046875 1.046875 -1.53125 C 1.046875 -0.921875 1.375 -0.390625 1.671875 -0.15625 C 1.328125 -0.078125 0.4375 0.265625 0.4375 1.078125 C 0.4375 1.921875 1.375 2.890625 4.015625 2.890625 C 6.390625 2.890625 7.609375 2.109375 7.609375 1.03125 C 7.609375 -0.234375 6.765625 -0.640625 6.40625 -0.8125 C 5.71875 -1.15625 4.8125 -1.15625 3.546875 -1.15625 C 3.1875 -1.15625 2.546875 -1.15625 2.484375 -1.171875 C 1.859375 -1.28125 1.6875 -1.828125 1.6875 -2.09375 C 1.6875 -2.203125 1.703125 -2.421875 1.859375 -2.609375 C 2.546875 -2.234375 3.359375 -2.234375 3.578125 -2.234375 C 5.546875 -2.234375 6.34375 -3.34375 6.34375 -4.34375 C 6.34375 -5.078125 5.921875 -5.59375 5.75 -5.734375 C 6.171875 -5.96875 6.515625 -6.03125 6.75 -6.046875 C 6.71875 -5.984375 6.671875 -5.921875 6.671875 -5.734375 C 6.671875 -5.4375 6.875 -5.15625 7.25 -5.15625 C 7.609375 -5.15625 7.8125 -5.4375 7.8125 -5.734375 Z M 4.8125 -4.34375 C 4.8125 -3.6875 4.8125 -2.703125 3.578125 -2.703125 C 2.328125 -2.703125 2.328125 -3.6875 2.328125 -4.34375 C 2.328125 -5 2.328125 -6 3.578125 -6 C 4.8125 -6 4.8125 -5 4.8125 -4.34375 Z M 6.421875 1.09375 C 6.421875 1.59375 5.921875 2.421875 4.03125 2.421875 C 2.140625 2.421875 1.625 1.625 1.625 1.078125 C 1.625 0.15625 2.53125 0.15625 2.734375 0.15625 L 4.375 0.15625 C 5.421875 0.15625 6.421875 0.34375 6.421875 1.09375 Z M 6.421875 1.09375 "/>
</symbol> </symbol>
<symbol overflow="visible" id="glyph0-5"> <symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4 -6.453125 3.296875 -5.4375 3.09375 -5 L 3.078125 -5 L 3.078125 -9.953125 L 0.609375 -9.84375 L 0.609375 -9.21875 C 1.484375 -9.21875 1.59375 -9.21875 1.59375 -8.65625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/> <path style="stroke:none;" d="M 8.40625 -3.203125 C 8.40625 -5.171875 7.078125 -6.453125 5.140625 -6.453125 C 4.28125 -6.453125 3.5625 -6.171875 2.984375 -5.703125 L 2.984375 -6.453125 L 0.5 -6.34375 L 0.5 -5.71875 C 1.390625 -5.71875 1.484375 -5.71875 1.484375 -5.15625 L 1.484375 2.171875 L 0.5 2.171875 L 0.5 2.78125 C 0.828125 2.75 1.859375 2.75 2.265625 2.75 C 2.671875 2.75 3.71875 2.75 4.046875 2.78125 L 4.046875 2.171875 L 3.0625 2.171875 L 3.0625 -0.59375 C 3.40625 -0.265625 4.046875 0.09375 4.90625 0.09375 C 6.875 0.09375 8.40625 -1.109375 8.40625 -3.203125 Z M 6.6875 -3.203125 C 6.6875 -1.125 5.65625 -0.390625 4.734375 -0.390625 C 4.109375 -0.390625 3.5 -0.703125 3.0625 -1.375 L 3.0625 -5.015625 C 3.578125 -5.703125 4.34375 -5.9375 4.90625 -5.9375 C 5.84375 -5.9375 6.6875 -5.09375 6.6875 -3.203125 Z M 6.6875 -3.203125 "/>
</symbol> </symbol>
<symbol overflow="visible" id="glyph0-6"> <symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 8.609375 0 L 8.609375 -0.609375 L 7.609375 -0.609375 L 7.609375 -4.390625 C 7.609375 -5.75 7.03125 -6.453125 5.453125 -6.453125 C 4 -6.453125 3.296875 -5.4375 3.09375 -5 L 3.078125 -5 L 3.078125 -9.953125 L 0.609375 -9.84375 L 0.609375 -9.21875 C 1.484375 -9.21875 1.59375 -9.21875 1.59375 -8.65625 L 1.59375 -0.609375 L 0.609375 -0.609375 L 0.609375 0 C 0.9375 -0.03125 1.96875 -0.03125 2.359375 -0.03125 C 2.765625 -0.03125 3.8125 -0.03125 4.140625 0 L 4.140625 -0.609375 L 3.15625 -0.609375 L 3.15625 -3.671875 C 3.15625 -5.21875 4.296875 -5.984375 5.21875 -5.984375 C 5.75 -5.984375 6.046875 -5.640625 6.046875 -4.546875 L 6.046875 -0.609375 L 5.0625 -0.609375 L 5.0625 0 C 5.390625 -0.03125 6.421875 -0.03125 6.828125 -0.03125 C 7.234375 -0.03125 8.28125 -0.03125 8.609375 0 Z M 8.609375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 5.8125 -2 C 5.8125 -2.6875 5.4375 -3.15625 5.15625 -3.40625 C 4.5625 -3.90625 4.078125 -3.984375 3.296875 -4.125 C 2.375 -4.28125 1.515625 -4.453125 1.515625 -5.140625 C 1.515625 -6.0625 2.796875 -6.0625 3.09375 -6.0625 C 4.6875 -6.0625 4.78125 -5.0625 4.8125 -4.703125 C 4.8125 -4.515625 4.9375 -4.515625 5.109375 -4.515625 C 5.40625 -4.515625 5.40625 -4.5625 5.40625 -4.890625 L 5.40625 -6.125 C 5.40625 -6.390625 5.40625 -6.5 5.1875 -6.5 C 5.109375 -6.5 5.078125 -6.5 4.859375 -6.375 C 4.8125 -6.328125 4.640625 -6.21875 4.578125 -6.1875 C 4.171875 -6.40625 3.640625 -6.5 3.125 -6.5 C 2.703125 -6.5 0.546875 -6.5 0.546875 -4.640625 C 0.546875 -3.125 2.328125 -2.8125 2.765625 -2.734375 C 3.15625 -2.671875 3.625 -2.578125 3.6875 -2.578125 C 4.265625 -2.453125 4.828125 -2.09375 4.828125 -1.484375 C 4.828125 -0.390625 3.53125 -0.390625 3.234375 -0.390625 C 2.5 -0.390625 1.59375 -0.609375 1.1875 -2.015625 C 1.109375 -2.296875 1.09375 -2.3125 0.84375 -2.3125 C 0.546875 -2.3125 0.546875 -2.265625 0.546875 -1.9375 L 0.546875 -0.28125 C 0.546875 -0.015625 0.546875 0.09375 0.765625 0.09375 C 0.859375 0.09375 0.890625 0.09375 1.171875 -0.140625 L 1.546875 -0.421875 C 2.1875 0.09375 2.96875 0.09375 3.234375 0.09375 C 4.015625 0.09375 5.8125 -0.09375 5.8125 -2 Z M 5.8125 -2 "/> <path style="stroke:none;" d="M 5.8125 -2 C 5.8125 -2.6875 5.4375 -3.15625 5.15625 -3.40625 C 4.5625 -3.90625 4.078125 -3.984375 3.296875 -4.125 C 2.375 -4.28125 1.515625 -4.453125 1.515625 -5.140625 C 1.515625 -6.0625 2.796875 -6.0625 3.09375 -6.0625 C 4.6875 -6.0625 4.78125 -5.0625 4.8125 -4.703125 C 4.8125 -4.515625 4.9375 -4.515625 5.109375 -4.515625 C 5.40625 -4.515625 5.40625 -4.5625 5.40625 -4.890625 L 5.40625 -6.125 C 5.40625 -6.390625 5.40625 -6.5 5.1875 -6.5 C 5.109375 -6.5 5.078125 -6.5 4.859375 -6.375 C 4.8125 -6.328125 4.640625 -6.21875 4.578125 -6.1875 C 4.171875 -6.40625 3.640625 -6.5 3.125 -6.5 C 2.703125 -6.5 0.546875 -6.5 0.546875 -4.640625 C 0.546875 -3.125 2.328125 -2.8125 2.765625 -2.734375 C 3.15625 -2.671875 3.625 -2.578125 3.6875 -2.578125 C 4.265625 -2.453125 4.828125 -2.09375 4.828125 -1.484375 C 4.828125 -0.390625 3.53125 -0.390625 3.234375 -0.390625 C 2.5 -0.390625 1.59375 -0.609375 1.1875 -2.015625 C 1.109375 -2.296875 1.09375 -2.3125 0.84375 -2.3125 C 0.546875 -2.3125 0.546875 -2.265625 0.546875 -1.9375 L 0.546875 -0.28125 C 0.546875 -0.015625 0.546875 0.09375 0.765625 0.09375 C 0.859375 0.09375 0.890625 0.09375 1.171875 -0.140625 L 1.546875 -0.421875 C 2.1875 0.09375 2.96875 0.09375 3.234375 0.09375 C 4.015625 0.09375 5.8125 -0.09375 5.8125 -2 Z M 5.8125 -2 "/>
</symbol> </symbol>
<symbol overflow="visible" id="glyph1-0"> <symbol overflow="visible" id="glyph1-0">
@ -118,15 +121,17 @@
<g id="surface1"> <g id="surface1">
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="124.802" y="135.761"/> <use xlink:href="#glyph0-1" x="124.802" y="135.761"/>
<use xlink:href="#glyph0-2" x="133.768375" y="135.761"/> </g>
<use xlink:href="#glyph0-3" x="141.614312" y="135.761"/> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="148.206391" y="135.761"/> <use xlink:href="#glyph0-2" x="135.382322" y="135.761"/>
<use xlink:href="#glyph0-4" x="156.052327" y="135.761"/> <use xlink:href="#glyph0-3" x="143.228259" y="135.761"/>
<use xlink:href="#glyph0-3" x="164.122065" y="135.761"/> <use xlink:href="#glyph0-2" x="149.820338" y="135.761"/>
<use xlink:href="#glyph0-2" x="170.714144" y="135.761"/> <use xlink:href="#glyph0-4" x="157.666275" y="135.761"/>
<use xlink:href="#glyph0-1" x="178.560081" y="135.761"/> <use xlink:href="#glyph0-3" x="165.736012" y="135.761"/>
<use xlink:href="#glyph0-5" x="187.526456" y="135.761"/> <use xlink:href="#glyph0-2" x="172.328091" y="135.761"/>
<use xlink:href="#glyph0-6" x="196.492831" y="135.761"/> <use xlink:href="#glyph0-5" x="180.174028" y="135.761"/>
<use xlink:href="#glyph0-6" x="189.140403" y="135.761"/>
<use xlink:href="#glyph0-7" x="198.106778" y="135.761"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="124.802" y="157.582"/> <use xlink:href="#glyph1-1" x="124.802" y="157.582"/>
@ -397,115 +402,145 @@
<use xlink:href="#glyph1-16" x="154.688804" y="193.447"/> <use xlink:href="#glyph1-16" x="154.688804" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-16" x="160.77396" y="193.447"/> <use xlink:href="#glyph1-16" x="160.425269" y="193.447"/>
<use xlink:href="#glyph1-5" x="163.54157" y="193.447"/> <use xlink:href="#glyph1-5" x="163.192879" y="193.447"/>
<use xlink:href="#glyph1-3" x="166.30918" y="193.447"/> <use xlink:href="#glyph1-3" x="165.960489" y="193.447"/>
<use xlink:href="#glyph1-8" x="171.844401" y="193.447"/> <use xlink:href="#glyph1-8" x="171.49571" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="179.600285" y="193.447"/> <use xlink:href="#glyph1-12" x="178.902903" y="193.447"/>
<use xlink:href="#glyph1-14" x="185.135506" y="193.447"/> <use xlink:href="#glyph1-14" x="184.438124" y="193.447"/>
<use xlink:href="#glyph1-8" x="189.037856" y="193.447"/> <use xlink:href="#glyph1-8" x="188.340474" y="193.447"/>
<use xlink:href="#glyph1-11" x="193.466232" y="193.447"/> <use xlink:href="#glyph1-11" x="192.76885" y="193.447"/>
<use xlink:href="#glyph1-23" x="198.447532" y="193.447"/> <use xlink:href="#glyph1-23" x="197.75015" y="193.447"/>
<use xlink:href="#glyph1-7" x="203.705792" y="193.447"/> <use xlink:href="#glyph1-7" x="203.00841" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="210.953584" y="193.447"/> <use xlink:href="#glyph1-10" x="209.907511" y="193.447"/>
<use xlink:href="#glyph1-11" x="215.381959" y="193.447"/> <use xlink:href="#glyph1-11" x="214.335886" y="193.447"/>
<use xlink:href="#glyph1-3" x="220.363259" y="193.447"/> <use xlink:href="#glyph1-3" x="219.317186" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="229.216026" y="193.447"/> <use xlink:href="#glyph1-12" x="227.821262" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-8" x="235.030199" y="193.447"/> <use xlink:href="#glyph1-8" x="233.635435" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-28" x="242.77612" y="193.447"/> <use xlink:href="#glyph1-28" x="241.032665" y="193.447"/>
<use xlink:href="#glyph1-2" x="245.820691" y="193.447"/> <use xlink:href="#glyph1-2" x="244.077236" y="193.447"/>
<use xlink:href="#glyph1-14" x="250.801991" y="193.447"/> <use xlink:href="#glyph1-14" x="249.058536" y="193.447"/>
<use xlink:href="#glyph1-10" x="254.704341" y="193.447"/> <use xlink:href="#glyph1-10" x="252.960886" y="193.447"/>
<use xlink:href="#glyph1-8" x="259.132717" y="193.447"/> <use xlink:href="#glyph1-8" x="257.389262" y="193.447"/>
<use xlink:href="#glyph1-15" x="263.561093" y="193.447"/> <use xlink:href="#glyph1-15" x="261.817638" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="272.413859" y="193.447"/> <use xlink:href="#glyph1-6" x="270.321713" y="193.447"/>
<use xlink:href="#glyph1-7" x="277.94908" y="193.447"/> <use xlink:href="#glyph1-7" x="275.856934" y="193.447"/>
<use xlink:href="#glyph1-5" x="281.879325" y="193.447"/> <use xlink:href="#glyph1-5" x="279.787179" y="193.447"/>
<use xlink:href="#glyph1-3" x="284.646936" y="193.447"/> <use xlink:href="#glyph1-3" x="282.55479" y="193.447"/>
<use xlink:href="#glyph1-24" x="290.182156" y="193.447"/> <use xlink:href="#glyph1-24" x="288.09001" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="298.481002" y="193.447"/> <use xlink:href="#glyph1-4" x="296.050128" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="302.086467" y="193.447"/> <use xlink:href="#glyph1-13" x="299.64563" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="309.002504" y="193.447"/> <use xlink:href="#glyph1-2" x="306.561667" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="317.30135" y="193.447"/> <use xlink:href="#glyph1-12" x="314.521784" y="193.447"/>
<use xlink:href="#glyph1-11" x="322.83657" y="193.447"/> <use xlink:href="#glyph1-11" x="320.057005" y="193.447"/>
<use xlink:href="#glyph1-10" x="327.81787" y="193.447"/> <use xlink:href="#glyph1-10" x="325.038305" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-23" x="331.967293" y="193.447"/> <use xlink:href="#glyph1-23" x="329.187728" y="193.447"/>
<use xlink:href="#glyph1-7" x="337.225553" y="193.447"/> <use xlink:href="#glyph1-7" x="334.445988" y="193.447"/>
<use xlink:href="#glyph1-16" x="341.155799" y="193.447"/> <use xlink:href="#glyph1-16" x="338.376234" y="193.447"/>
<use xlink:href="#glyph1-11" x="343.923409" y="193.447"/> <use xlink:href="#glyph1-11" x="341.143844" y="193.447"/>
<use xlink:href="#glyph1-7" x="348.904709" y="193.447"/> <use xlink:href="#glyph1-7" x="346.125144" y="193.447"/>
<use xlink:href="#glyph1-18" x="352.834955" y="193.447"/> <use xlink:href="#glyph1-18" x="350.05539" y="193.447"/>
<use xlink:href="#glyph1-8" x="358.370176" y="193.447"/> <use xlink:href="#glyph1-8" x="355.59061" y="193.447"/>
<use xlink:href="#glyph1-7" x="362.798551" y="193.447"/>
<use xlink:href="#glyph1-25" x="366.728797" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-12" x="372.813953" y="193.447"/> <use xlink:href="#glyph1-7" x="360.009023" y="193.447"/>
<use xlink:href="#glyph1-6" x="378.349174" y="193.447"/> <use xlink:href="#glyph1-25" x="363.939269" y="193.447"/>
<use xlink:href="#glyph1-4" x="383.884394" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="391.086358" y="193.447"/> <use xlink:href="#glyph1-12" x="369.755435" y="193.447"/>
<use xlink:href="#glyph1-18" x="394.960813" y="193.447"/> <use xlink:href="#glyph1-6" x="375.290656" y="193.447"/>
<use xlink:href="#glyph1-4" x="380.825876" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="400.486071" y="193.447"/> <use xlink:href="#glyph1-4" x="387.669186" y="193.447"/>
<use xlink:href="#glyph1-7" x="403.253681" y="193.447"/> <use xlink:href="#glyph1-18" x="391.543641" y="193.447"/>
<use xlink:href="#glyph1-5" x="397.078862" y="193.447"/>
<use xlink:href="#glyph1-7" x="399.846472" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="410.511435" y="193.447"/> <use xlink:href="#glyph1-6" x="406.745573" y="193.447"/>
<use xlink:href="#glyph1-7" x="416.046656" y="193.447"/> <use xlink:href="#glyph1-7" x="412.280793" y="193.447"/>
<use xlink:href="#glyph1-8" x="419.976902" y="193.447"/> <use xlink:href="#glyph1-8" x="416.211039" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="124.802" y="205.403"/> <use xlink:href="#glyph1-5" x="423.618232" y="193.447"/>
<use xlink:href="#glyph1-7" x="127.56961" y="205.403"/> <use xlink:href="#glyph1-7" x="426.385842" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-7" x="134.817402" y="205.403"/> <use xlink:href="#glyph1-7" x="433.284943" y="193.447"/>
<use xlink:href="#glyph1-4" x="138.747647" y="205.403"/> <use xlink:href="#glyph1-4" x="437.215188" y="193.447"/>
<use xlink:href="#glyph1-14" x="142.622103" y="205.403"/> <use xlink:href="#glyph1-14" x="441.089644" y="193.447"/>
<use xlink:href="#glyph1-2" x="146.524453" y="205.403"/> <use xlink:href="#glyph1-2" x="444.991994" y="193.447"/>
<use xlink:href="#glyph1-3" x="151.505753" y="205.403"/> <use xlink:href="#glyph1-3" x="449.973294" y="193.447"/>
<use xlink:href="#glyph1-24" x="157.040974" y="205.403"/> <use xlink:href="#glyph1-24" x="455.508514" y="193.447"/>
<use xlink:href="#glyph1-16" x="162.022274" y="205.403"/> <use xlink:href="#glyph1-16" x="460.489814" y="193.447"/>
<use xlink:href="#glyph1-17" x="164.789884" y="205.403"/> <use xlink:href="#glyph1-17" x="463.257425" y="193.447"/>
</g> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> <g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-15" x="173.36569" y="205.403"/> <use xlink:href="#glyph1-15" x="124.802" y="205.403"/>
<use xlink:href="#glyph1-5" x="178.900911" y="205.403"/> <use xlink:href="#glyph1-5" x="130.337221" y="205.403"/>
<use xlink:href="#glyph1-7" x="181.668521" y="205.403"/> <use xlink:href="#glyph1-7" x="133.104831" y="205.403"/>
<use xlink:href="#glyph1-10" x="185.598767" y="205.403"/> <use xlink:href="#glyph1-10" x="137.035077" y="205.403"/>
<use xlink:href="#glyph1-2" x="190.027142" y="205.403"/> <use xlink:href="#glyph1-2" x="141.463452" y="205.403"/>
<use xlink:href="#glyph1-6" x="195.008442" y="205.403"/> <use xlink:href="#glyph1-6" x="146.444752" y="205.403"/>
<use xlink:href="#glyph1-14" x="200.543663" y="205.403"/> <use xlink:href="#glyph1-14" x="151.979973" y="205.403"/>
<use xlink:href="#glyph1-11" x="204.446013" y="205.403"/> <use xlink:href="#glyph1-11" x="155.882323" y="205.403"/>
<use xlink:href="#glyph1-24" x="209.427313" y="205.403"/> <use xlink:href="#glyph1-24" x="160.863623" y="205.403"/>
<use xlink:href="#glyph1-8" x="214.408613" y="205.403"/> <use xlink:href="#glyph1-8" x="165.844923" y="205.403"/>
<use xlink:href="#glyph1-15" x="218.836989" y="205.403"/> <use xlink:href="#glyph1-15" x="170.273299" y="205.403"/>
<use xlink:href="#glyph1-19" x="224.372209" y="205.403"/> </g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-13" x="124.802" y="217.358"/>
<use xlink:href="#glyph1-5" x="131.99699" y="217.358"/>
<use xlink:href="#glyph1-4" x="134.7646" y="217.358"/>
<use xlink:href="#glyph1-18" x="138.639055" y="217.358"/>
<use xlink:href="#glyph1-5" x="144.174276" y="217.358"/>
<use xlink:href="#glyph1-3" x="146.941886" y="217.358"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-10" x="155.794652" y="217.358"/>
<use xlink:href="#glyph1-2" x="160.223028" y="217.358"/>
<use xlink:href="#glyph1-3" x="165.204328" y="217.358"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="170.460596" y="217.358"/>
<use xlink:href="#glyph1-5" x="174.335051" y="217.358"/>
<use xlink:href="#glyph1-3" x="177.102661" y="217.358"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-6" x="182.358929" y="217.358"/>
<use xlink:href="#glyph1-2" x="187.89415" y="217.358"/>
<use xlink:href="#glyph1-6" x="192.87545" y="217.358"/>
<use xlink:href="#glyph1-7" x="198.41067" y="217.358"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="205.668424" y="217.358"/>
<use xlink:href="#glyph1-8" x="209.542879" y="217.358"/>
<use xlink:href="#glyph1-9" x="213.971255" y="217.358"/>
<use xlink:href="#glyph1-4" x="219.229515" y="217.358"/>
<use xlink:href="#glyph1-19" x="223.10397" y="217.358"/>
</g> </g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 55 KiB

View File

@ -6,7 +6,7 @@
\usepackage{hyperref} \usepackage{hyperref}
\begin{document} \begin{document}
\thispagestyle{empty} \thispagestyle{empty}
\section*{paragraphs} \section*{Paragraphs}
Continous text can be written directly Continous text can be written directly
in the source code. in the source code.
Simple line breaks Simple line breaks
@ -16,7 +16,7 @@ just as multiple space characters.
An empty line creates a new paragraph An empty line creates a new paragraph
which has an indentation by default. which has an indentation by default.
Manual line breaks can be forced Manual line breaks can be forced
using two backslashes, using two backslashes, but this use
but this use \\ is strongly discouraged \\
is strongly discouraged. within continuous text.
\end{document} \end{document}