Minor improvements
9
layouts/content-and-preview-with-category.html
Normal file
@ -0,0 +1,9 @@
|
||||
<div class="layout-content-and-preview">
|
||||
<div class="layout-content">
|
||||
<h2 data-category="@category(inline)">@title(inline)</h2>
|
||||
@content
|
||||
</div>
|
||||
<div class="layout-preview">
|
||||
@preview(inline)
|
||||
</div>
|
||||
</div>
|
||||
@ -65,7 +65,7 @@ Allgemeiner Aufbau eine Befehls:
|
||||
\<befehl>[<optionale_parameter>]{<obligatorische_parameter>}
|
||||
```
|
||||
|
||||
++Ein paar Beispiele:
|
||||
++ Ein paar Beispiele:
|
||||
|
||||
``` {.lang-tex .tex .hljs .fragment}
|
||||
\newpage % fügt eine neue Seite ein
|
||||
@ -152,9 +152,9 @@ Bitte installiert **zuerst den Compiler**, also MikTeX (Windows), MacTeX (MacOS)
|
||||
Erste Schritte im Umgang mit LaTeX
|
||||
|
||||
@content
|
||||
* ++Falls nötig: Install now!
|
||||
* ++Ladet euch aus dem VC die Datei `aufgabe01.tex` herunter und speichert sie in einem eigenen Ordner.
|
||||
* ++Öffnet die Datei in TeXstudio.
|
||||
* ++Kompiliert die Datei durch Druck auf <span class="emoji">⏩</span>.
|
||||
* ++Was ist in dem Ordner passiert, in dem die Datei liegt?
|
||||
* ++ Falls nötig: Install now!
|
||||
* ++ Ladet euch aus dem VC die Datei `aufgabe01.tex` herunter und speichert sie in einem eigenen Ordner.
|
||||
* ++ Öffnet die Datei in TeXstudio.
|
||||
* ++ Kompiliert die Datei durch Druck auf <span class="emoji">⏩</span>.
|
||||
* ++ Was ist in dem Ordner passiert, in dem die Datei liegt?
|
||||
|
||||
|
||||
@ -65,7 +65,7 @@ General structure of a command:
|
||||
\<command>[<optional_parameters>]{<obligatory_parameters>}
|
||||
```
|
||||
|
||||
++A few examples:
|
||||
++ A few examples:
|
||||
|
||||
``` {.lang-tex .tex .hljs .fragment}
|
||||
\newpage % inserts a new page
|
||||
@ -152,9 +152,9 @@ Please install **the compiler first** (MikTeX on Windows, MacTeX on MacOS, TeX L
|
||||
First steps with LaTeX
|
||||
|
||||
@content
|
||||
* ++If necessary: Install now!
|
||||
* ++Download the file `aufgabe01.tex` from the VC and put it into a new folder.
|
||||
* ++Open it in TeXstudio.
|
||||
* ++Comile it by pressing <span class="emoji">⏩</span>.
|
||||
* ++What happened to the folder that contains the file?
|
||||
* ++ If necessary: Install now!
|
||||
* ++ Download the file `aufgabe01.tex` from the VC and put it into a new folder.
|
||||
* ++ Open it in TeXstudio.
|
||||
* ++ Compile it by pressing <span class="emoji">⏩</span>.
|
||||
* ++ What happened to the folder that contains the file?
|
||||
|
||||
|
||||
@ -80,9 +80,9 @@ Kodierung
|
||||
\usepackage[t1]{fontenc}
|
||||
```
|
||||
|
||||
* ++Die Zeichenkodierung bestimmt, welche Zeichen verfügbar sind.
|
||||
* ++**ASCII** enthält kaum Sonderzeichen wie deutsche Umlaute.
|
||||
* ++**UTF-8** ist eine universelle Kodierung.
|
||||
* ++ Die Zeichenkodierung bestimmt, welche Zeichen verfügbar sind.
|
||||
* ++ **ASCII** enthält kaum Sonderzeichen wie deutsche Umlaute.
|
||||
* ++ **UTF-8** ist eine universelle Kodierung.
|
||||
|
||||
|
||||
@slide(layout=content-only)
|
||||
@ -177,10 +177,10 @@ nichts verloren.
|
||||

|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@todo
|
||||
Achtung!-Label
|
||||
@category
|
||||
Achtung!
|
||||
|
||||
@title
|
||||
Reservierte Zeichen
|
||||
@ -380,7 +380,7 @@ Dokument und Text gliedern
|
||||
|
||||
@content
|
||||
* Ladet das Projektarchiv aus dem VC herunter, entpackt es und öffnet die Datei `allgemeines.tex` in TeXStudio.
|
||||
* ++Packt den gesamten Text (einschließlich Kommentare) in `allgemeines.tex` in eine **Document**-Umgebung und schreibt darüber folgende **Präambel**, damit das Dokument kompiliert werden kann:
|
||||
* ++ Packt den gesamten Text (einschließlich Kommentare) in `allgemeines.tex` in eine **Document**-Umgebung und schreibt darüber folgende **Präambel**, damit das Dokument kompiliert werden kann:
|
||||
|
||||
``` {.lang-tex .hljs .fragment}
|
||||
\documentclass{scrartcl}
|
||||
@ -391,7 +391,7 @@ Dokument und Text gliedern
|
||||
\usepackage{csquotes}
|
||||
```
|
||||
|
||||
* ++Im nicht auskommentierten Teil wurden **Absätze** durch »`//`« markiert. Verwendet stattdessen echte Absätze.
|
||||
* ++Kommentiert den restlichen Text ein. Verwendet für alle **Überschriften** passende LaTeX-Befehle (`\section` bis `\subsubsection`).
|
||||
* ++Fügt ein **Inhaltsverzeichnis** ein.
|
||||
* ++ Im nicht auskommentierten Teil wurden **Absätze** durch »`//`« markiert. Verwendet stattdessen echte Absätze.
|
||||
* ++ Kommentiert den restlichen Text ein. Verwendet für alle **Überschriften** passende LaTeX-Befehle (`\section` bis `\subsubsection`).
|
||||
* ++ Fügt ein **Inhaltsverzeichnis** ein.
|
||||
|
||||
|
||||
@ -80,9 +80,9 @@ Encoding
|
||||
\usepackage[t1]{fontenc}
|
||||
```
|
||||
|
||||
* ++The character encoding determines which characters are available.
|
||||
* ++**ASCII** contains no special characters like German umlauts.
|
||||
* ++**UTF-8** is a universal encoding.
|
||||
* ++ The character encoding determines which characters are available.
|
||||
* ++ **ASCII** contains no special characters like German umlauts.
|
||||
* ++ **UTF-8** is a universal encoding.
|
||||
|
||||
|
||||
@slide(layout=content-only)
|
||||
@ -177,10 +177,10 @@ in continuous text.
|
||||

|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@todo
|
||||
caution!-Label
|
||||
@category
|
||||
Caution!
|
||||
|
||||
@title
|
||||
Reserved characters
|
||||
@ -380,7 +380,7 @@ Structure your document and text
|
||||
|
||||
@content
|
||||
* Download the project archive from the VC, unzip it and open the file `allgemeines.tex` in TeXStudio.
|
||||
* ++Wrap the entire text (incl. comments) in `allgemeines.tex` in a **document** environment and insert the following **preamble** above, so that you can compile the document:
|
||||
* ++ Wrap the entire text (incl. comments) in `allgemeines.tex` in a **document** environment and insert the following **preamble** above, so that you can compile the document:
|
||||
|
||||
``` {.lang-tex .hljs .fragment}
|
||||
\documentclass{scrartcl}
|
||||
@ -391,7 +391,7 @@ Structure your document and text
|
||||
\usepackage{csquotes}
|
||||
```
|
||||
|
||||
* ++In the part that is not commented out, **paragraphs** were marked as ‘`//`’. Use real paragraphs instead.
|
||||
* ++Uncomment the remaining text. Use the corresponding LaTeX commands for all **headings** (`\section` to `\subsubsection`).
|
||||
* ++Add a **table of contents.**
|
||||
* ++ In the part that is not commented out, **paragraphs** were marked as ‘`//`’. Use real paragraphs instead.
|
||||
* ++ Uncomment the remaining text. Use the corresponding LaTeX commands for all **headings** (`\section` to `\subsubsection`).
|
||||
* ++ Add a **table of contents.**
|
||||
|
||||
|
||||
@ -101,10 +101,10 @@ Inhalt von Abschnitt 2.
|
||||
* Vorteil bei größeren Projekten: `\includeonly{file1,file2,...}` in die Präambel schreiben, um nur einzelne Unterdateien zu kompilieren (vorher muss mindestens einmal das gesamte Projekt kompiliert werden)
|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@todo
|
||||
Label Exkurs
|
||||
@category
|
||||
Exkurs
|
||||
|
||||
@title
|
||||
Dateipfade angeben <span class="emoji">👣</span>
|
||||
@ -117,10 +117,10 @@ Dateipfade angeben <span class="emoji">👣</span>
|
||||

|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@todo
|
||||
Label Exkurs
|
||||
@category
|
||||
Exkurs
|
||||
|
||||
@title
|
||||
Dateipfade angeben <span class="emoji">👣</span>
|
||||
@ -143,14 +143,14 @@ Dateipfade angeben <span class="emoji">👣</span>
|
||||

|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@category
|
||||
Exkurs
|
||||
|
||||
@title
|
||||
Dateipfade angeben <span class="emoji">👣</span>
|
||||
|
||||
@todo
|
||||
Label Exkurs
|
||||
|
||||
@content
|
||||
### Relative Dateipfade
|
||||
* Pfad von einem bestimmten Ort irgendwo im Ordnerbaum bis zur jeweiligen Datei
|
||||
@ -163,17 +163,17 @@ von `main.tex` zu `part1.tex`</p>
|
||||
|
||||
`./part1.tex`
|
||||
|
||||
Der **einfache Punkt »`.`«** bezieht sich bei relativen Pfaden auf aktuellen Ordner (hier: `latex`). Er ist optional, es könnte also auch nur part1.tex geschrieben werden.
|
||||
Der **einfache Punkt »`.`«** bezieht sich bei relativen Pfaden auf den aktuellen Ordner (hier: `latex`). Er ist optional, es könnte also auch nur `part1.tex` geschrieben werden.
|
||||
</div>
|
||||
|
||||
@preview
|
||||

|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@todo
|
||||
Label Exkurs
|
||||
@category
|
||||
Exkurs
|
||||
|
||||
@title
|
||||
Dateipfade angeben <span class="emoji">👣</span>
|
||||
@ -188,14 +188,14 @@ Dateipfade angeben <span class="emoji">👣</span>
|
||||

|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@category
|
||||
Exkurs
|
||||
|
||||
@title
|
||||
Dateipfade angeben <span class="emoji">👣</span>
|
||||
|
||||
@todo
|
||||
Label Exkurs
|
||||
|
||||
@content
|
||||
### Relative Dateipfade
|
||||
<p data-category="Beispiel">Relativer Pfad von `main.tex` in eigenem Unterordner zu `part1.tex` in anderem Unterordner</p>
|
||||
@ -229,7 +229,7 @@ Was denkt ihr, passiert, wenn wir die Präambel in eine Unterdatei auslagern?
|
||||
|
||||
Wird das Gesamtdokument kompilieren oder nicht?
|
||||
|
||||
++**Ja, es kompiliert!** \
|
||||
++ **Ja, es kompiliert!** \
|
||||
Ein einfacher Weg, um die Hauptdatei noch übersichtlicher zu halten.
|
||||
|
||||
@preview
|
||||
@ -246,9 +246,9 @@ Ein strukturiertes Projekt
|
||||
|
||||
@content
|
||||
* Entfernt die Präambel, die beiden `document`-Zeilen und das Inhaltsverzeichnis aus `allgemeines.tex`.
|
||||
* ++Kompiliert stattdessen `l2kurz.tex` – das ist ab sofort unsere **Hauptdatei.** Die Datei `allgemeines.tex` ist bereits eingebunden und wird mit kompiliert.
|
||||
* ++Die Hauptdatei ist sehr unübersichtlich. Lagert alle Befehle, die vor der Dokumentumgebung (`\begin{document}`) aufgerufen werden, in eine neue Datei `praeambel.tex` aus und bindet diese mit `\input{praeambel}` ein.
|
||||
* ++**Technischer Hinweis:** Wählt beim Kompilieren bitte die Option »(c) nutze das vorgegebene Kommando«, wenn sich ein entsprechendes Pop-up öffnet.
|
||||
* ++ Kompiliert stattdessen `l2kurz.tex` – das ist ab sofort unsere **Hauptdatei.** Die Datei `allgemeines.tex` ist bereits eingebunden und wird mit kompiliert.
|
||||
* ++ Die Hauptdatei ist sehr unübersichtlich. Lagert alle Befehle, die vor der Dokumentumgebung (`\begin{document}`) aufgerufen werden, in eine neue Datei `praeambel.tex` aus und bindet diese mit `\input{praeambel}` ein.
|
||||
* ++ **Technischer Hinweis:** Wählt beim Kompilieren bitte die Option »(c) nutze das vorgegebene Kommando«, wenn sich ein entsprechendes Pop-up öffnet.
|
||||
|
||||
|
||||
@slide(layout=task)
|
||||
@ -261,7 +261,7 @@ Ein strukturiertes Projekt
|
||||
|
||||
@content
|
||||
* Um lange Kompilierzeiten zu verhindern, sollten vorerst nur noch die Abschnitte `einleitung.tex` und `allgemeines.tex` eingebunden werden.
|
||||
* ++Ersetzt hierzu in der Datei `l2kurz.tex` alle **anderen** `\input`-Statements durch `\include`-Statements und verwendet den Befehl `\includeonly`.
|
||||
* ++**Achtung:** Die Präambel sollte weiterhin durch `\input` eingebunden werden.
|
||||
* ++Setzt das `\includeonly`-Statement direkt über `\begin{document}`.
|
||||
* ++ Ersetzt hierzu in der Datei `l2kurz.tex` alle **anderen** `\input`-Statements durch `\include`-Statements und verwendet den Befehl `\includeonly`.
|
||||
* ++ **Achtung:** Die Präambel sollte weiterhin durch `\input` eingebunden werden.
|
||||
* ++ Setzt das `\includeonly`-Statement direkt über `\begin{document}`.
|
||||
|
||||
|
||||
@ -3,7 +3,6 @@
|
||||
@title
|
||||
Project structure
|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
|
||||
@title
|
||||
@ -103,10 +102,10 @@ of section 2.
|
||||
(the entire project has to be compiled at least once before)
|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@todo
|
||||
Label Excursion
|
||||
@category
|
||||
Excursion
|
||||
|
||||
@title
|
||||
Specifying file paths <span class="emoji">👣</span>
|
||||
@ -119,13 +118,13 @@ Specifying file paths <span class="emoji">👣</span>
|
||||

|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@todo
|
||||
Label Excursion
|
||||
@category
|
||||
Excursion
|
||||
|
||||
@title
|
||||
Specifying file paths <span class="emoji">👣</span>
|
||||
<span data-category="Example">Specifying file paths <span class="emoji">👣</span></span>
|
||||
|
||||
@content
|
||||
### Absolute paths
|
||||
@ -135,7 +134,7 @@ Specifying file paths <span class="emoji">👣</span>
|
||||
* in Windows: `\`
|
||||
|
||||
<div class="fragment">
|
||||
<p data-category="Example">absoluter path for `main.tex`</p>
|
||||
<p data-category="Example">absolute path for `main.tex`</p>
|
||||
|
||||
* UNIX: `/home/knut/docs/latex/main.tex`
|
||||
* Windows: `C:\knut\docs\latex\main.tex`
|
||||
@ -147,14 +146,14 @@ Specifying file paths <span class="emoji">👣</span>
|
||||

|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@category
|
||||
Excursion
|
||||
|
||||
@title
|
||||
Specifying file paths <span class="emoji">👣</span>
|
||||
|
||||
@todo
|
||||
Label Exkurs
|
||||
|
||||
@content
|
||||
### Relative paths
|
||||
* path from somewhere in the tree to a certain file
|
||||
@ -167,17 +166,17 @@ from `main.tex` to `part1.tex`</p>
|
||||
|
||||
`./part1.tex`
|
||||
|
||||
A **single dot ‘`.`’** in a relative path means represents the current folder (in this case: `latex`). It is optional, you could also write `part1.tex` here.
|
||||
A **single dot ‘`.`’** in a relative path represents the current folder (in this case: `latex`). It is optional, you could also write `part1.tex` here.
|
||||
</div>
|
||||
|
||||
@preview
|
||||

|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@todo
|
||||
Label Excursion
|
||||
@category
|
||||
Excursion
|
||||
|
||||
@title
|
||||
Specifying paths <span class="emoji">👣</span>
|
||||
@ -192,14 +191,14 @@ Specifying paths <span class="emoji">👣</span>
|
||||

|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
@slide(layout=content-and-preview-with-category)
|
||||
|
||||
@category
|
||||
Excursion
|
||||
|
||||
@title
|
||||
Specifying paths <span class="emoji">👣</span>
|
||||
|
||||
@todo
|
||||
Label Excursion
|
||||
|
||||
@content
|
||||
### Relative paths
|
||||
<p data-category="Example">Relative path from `main.tex` in its own subfolder to `part1.tex` in another subfolder</p>
|
||||
@ -233,7 +232,7 @@ What do you think happens when we outsource the preamble into its own subfile?
|
||||
|
||||
Will the document compile?
|
||||
|
||||
++**Yes, it will!** \
|
||||
++ **Yes, it will!** \
|
||||
A simple way of keeping the main file even more organised.
|
||||
|
||||
@preview
|
||||
@ -245,17 +244,14 @@ A simple way of keeping the main file even more organised.
|
||||
@task-number
|
||||
3
|
||||
|
||||
@todo
|
||||
TeXStudio-Option noch nicht übersetzt
|
||||
|
||||
@title
|
||||
A structured project
|
||||
|
||||
@content
|
||||
* Remove the preamble, both of the `document` lines, and the table of contents from `allgemeines.tex`.
|
||||
* ++Compile `l2kurz.tex` instead—it is going to be our **main file** from now on. The file `allgemeines.tex` is already included and will be compiled automatically.
|
||||
* ++The main file is very complex. Outsource all the commands that come before the document environment (`\begin{document}`) into a new file `praeambel.tex` and include it with `\input{praeambel}`.
|
||||
* ++**Technical note:** When a popup opens during compilation, please choose option “(c) nutze das vorgegebene Kommando.”
|
||||
* ++ Compile `l2kurz.tex` instead—it is going to be our **main file** from now on. The file `allgemeines.tex` is already included and will be compiled automatically.
|
||||
* ++ The main file is very complex. Outsource all the commands that come before the document environment (`\begin{document}`) into a new file `preamble.tex` and include it with `\input{preamble}`.
|
||||
* ++ **Technical note:** When a popup opens during compilation, please choose option “(c) use the default command.”
|
||||
|
||||
|
||||
@slide(layout=task)
|
||||
@ -268,7 +264,7 @@ A structured project
|
||||
|
||||
@content
|
||||
* To avoid long compilation times, you should should only include the sections `einleitung.tex` and `allgemeines.tex` for now.
|
||||
* ++For this purpose, replace all of the **other** `\input` statements inside `l2kurz.tex` by `\include` statements und then use `\includeonly`.
|
||||
* ++**Caution:** The preamble still needs to be included via `\input`.
|
||||
* ++Put the `\includeonly` statement directly above `\begin{document}`.
|
||||
* ++ For this purpose, replace all of the **other** `\input` statements inside `l2kurz.tex` by `\include` statements und then use `\includeonly`.
|
||||
* ++ **Caution:** The preamble still needs to be included via `\input`.
|
||||
* ++ Put the `\includeonly` statement directly above `\begin{document}`.
|
||||
|
||||
|
||||
@ -326,9 +326,6 @@ LaTeX zu verwenden kostet 0 \euro.
|
||||
|
||||
@slide(layout=content-only)
|
||||
|
||||
@todo
|
||||
Untertitel wirklich auf Englisch?
|
||||
|
||||
@title
|
||||
Sonderzeichen & Symbole
|
||||
|
||||
@ -350,9 +347,9 @@ Sonderzeichen einfügen
|
||||
|
||||
@content
|
||||
* Ersetzt in Abschnitt 1.1.1 die Leerzeichen vor und nach dem Namen Knuth durch **geschützte Leerzeichen.**
|
||||
* ++Fügt in Abschnitt 1.2.1, Absatz 2, ein **halbes Leerzeichen** zwischen ›z.‹ und ›B.‹ von ›z.B.‹ ein.
|
||||
* ++In Abschnitt 1.2.2 stehen an mehren Stellen Bindestriche als **Gedankenstriche.** Tauscht sie durch Halbgeviertstriche aus.
|
||||
* ++In Abschnitt 1.2.1, Absatz 2, wird ein `"=` verwendet. Was passiert, wenn ihr stattdessen einen einfachen **Bindestrich** verwendet?
|
||||
* ++In Abschnitt 1.1.1 sollten »Tech« und »TeX« in **Anführungszeichen** stehen. Nutzt dafür `\enquote{…}`
|
||||
* ++Ersetzt die drei Punkte in 1.2.1, Absatz 2, durch eine echte **Ellipse.**
|
||||
* ++ Fügt in Abschnitt 1.2.1, Absatz 2, ein **halbes Leerzeichen** zwischen ›z.‹ und ›B.‹ von ›z.B.‹ ein.
|
||||
* ++ In Abschnitt 1.2.2 stehen an mehren Stellen Bindestriche als **Gedankenstriche.** Tauscht sie durch Halbgeviertstriche aus.
|
||||
* ++ In Abschnitt 1.2.1, Absatz 2, wird ein `"=` verwendet. Was passiert, wenn ihr stattdessen einen einfachen **Bindestrich** verwendet?
|
||||
* ++ In Abschnitt 1.1.1 sollten »Tech« und »TeX« in **Anführungszeichen** stehen. Nutzt dafür `\enquote{…}`
|
||||
* ++ Ersetzt die drei Punkte in 1.2.1, Absatz 2, durch eine echte **Ellipse.**
|
||||
|
||||
|
||||
@ -18,7 +18,7 @@ Spaces
|
||||
``` {.hljs .lang-tex}
|
||||
Thin spaces are used in abbreviations
|
||||
and before units, e.\,g., 10\,s.
|
||||
Normal-with non-breaking spaces can help
|
||||
Normal-width non-breaking spaces can help
|
||||
keep honorary titles and names on one
|
||||
line: Dr.~Fooboar.
|
||||
```
|
||||
@ -42,7 +42,7 @@ Folie zu french spacing im Englischen
|
||||
Hyphens and dashes
|
||||
|
||||
@todo
|
||||
* Für Silbentrennung muss bei Babel die Sprache angegeben werden. Hier erwähnen und überall überprüfen.
|
||||
* Für Silbentrennung muss bei Babel die Sprache angegeben werden. Hier erwähnen und überall überprüfen. (Wird auch auf der nächsten Seite angedeutet.)
|
||||
* Überprüfen, ob die Trennung A.E./B.E. wirklich stimmt.
|
||||
|
||||
@content
|
||||
@ -131,42 +131,42 @@ Quotation marks
|
||||
<th style="text-align: center;">Result</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Englisch (B. E.)</td>
|
||||
<td>English (B. E.)</td>
|
||||
<td style="text-align: center;"><code> \`…\' </code></td>
|
||||
<td style="text-align: center;">‘ … ’</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> 2. Ebene</td>
|
||||
<td> 2nd Level</td>
|
||||
<td style="text-align: center;"><code>\`\`…\'\'</code></td>
|
||||
<td style="text-align: center;">“ … ”</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Englisch (A. E.)</td>
|
||||
<td>English (A. E.)</td>
|
||||
<td style="text-align: center;"><code>\`\`…\'\'</code></td>
|
||||
<td style="text-align: center;">“ … ”</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> 2. Ebene</td>
|
||||
<td> 2nd Level</td>
|
||||
<td style="text-align: center;"><code> \`…\' </code></td>
|
||||
<td style="text-align: center;">‘ … ’</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Deutsch</td>
|
||||
<td>German</td>
|
||||
<td style="text-align: center;">`\glqq … \grqq`</td>
|
||||
<td style="text-align: center;">„ … “</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> 2. Ebene</td>
|
||||
<td> 2nd Level</td>
|
||||
<td style="text-align: center;">` \glq … \grq `</td>
|
||||
<td style="text-align: center;">‚ … ‘</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Deutsch altern.</td>
|
||||
<td>German altern.</td>
|
||||
<td style="text-align: center;">`\frqq … \flqq`</td>
|
||||
<td style="text-align: center;">» … «</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> 2. Ebene</td>
|
||||
<td> 2nd Level</td>
|
||||
<td style="text-align: center;">` \frq … \flq `</td>
|
||||
<td style="text-align: center;">› … ‹</td>
|
||||
</tr>
|
||||
@ -298,10 +298,10 @@ Special characters & symbols
|
||||
Some special characters and symbols require a math environment:
|
||||
|
||||
``` {.lang-tex .hljs}
|
||||
% greek letters
|
||||
% greek letters (π Σ δ)
|
||||
$\pi \Sigma \delta$
|
||||
|
||||
% dagger/obelisk/obelus (Kreuz)
|
||||
% dagger/obelisk/obelus (†)
|
||||
$\dagger$
|
||||
```
|
||||
|
||||
@ -345,9 +345,9 @@ Insert special characters
|
||||
|
||||
@content
|
||||
* In section 1.1.1, replace the spaces before and after the name Knuth by **non-breaking spaces.**
|
||||
* ++In section 1.2.1, paragraph 2, insert a **thin space** between ‘z.’ and ‘B.’ of ‘z.B.’ (= ‘e. g.’).
|
||||
* ++In section 1.2.2, there are several hypens misused as **dashes.** Replace them by en dashes (Halbgeviertstriche als Gedankenstriche).
|
||||
* ++In section 1.2.1, paragraph 2, a `"=` is used. What happens if you use a simple **hyphen** instead?
|
||||
* ++In section 1.1.1, “Tech” and “TeX” should be surrounded by **quotation marks.** Use `\enquote{…}` for that.
|
||||
* ++In section 1.2.1, paragraph 2, replace the three dots by a real **ellipsis.**
|
||||
* ++ In section 1.2.1, paragraph 2, insert a **thin space** between ‘z.’ and ‘B.’ of ‘z.B.’ (= ‘e. g.’).
|
||||
* ++ In section 1.2.2, there are several hypens misused as **dashes.** Replace them by en dashes (Halbgeviertstriche als Gedankenstriche).
|
||||
* ++ In section 1.2.1, paragraph 2, a `"=` is used. What happens if you use a simple **hyphen** instead?
|
||||
* ++ In section 1.1.1, “Tech” and “TeX” should be surrounded by **quotation marks.** Use `\enquote{…}` for that.
|
||||
* ++ In section 1.2.1, paragraph 2, replace the three dots by a real **ellipsis.**
|
||||
|
||||
|
||||
@ -193,6 +193,6 @@ Text hervorheben
|
||||
|
||||
@content
|
||||
* **Betont** das Wort »Pakete« in Abschnitt 1.1.2 mit `\emph{…}`.
|
||||
* ++Probiert auch an beliebigen Stellen **optische Hervorhebungen** aus, entfernt sie aber wieder, wenn ihr ein aufgeräumtes Dokument erhalten wollt.
|
||||
* ++Auf der zweiten Seite des Dokuments steht ein Absatz zum LaTeX-Wochenende. Ergänzt dort einen **Link** zum VC-Kurs (<https://wiai.de/latex>).
|
||||
* ++ Probiert auch an beliebigen Stellen **optische Hervorhebungen** aus, entfernt sie aber wieder, wenn ihr ein aufgeräumtes Dokument erhalten wollt.
|
||||
* ++ Auf der zweiten Seite des Dokuments steht ein Absatz zum LaTeX-Wochenende. Ergänzt dort einen **Link** zum VC-Kurs (<http://wiai.de/latex>).
|
||||
|
||||
|
||||
@ -80,7 +80,7 @@ You want the entire document to look consistent?
|
||||
|
||||
Trust LaTeX’s defaults (font sizes of title, paragraphs, footnotes, etc.)!
|
||||
|
||||
This conversely means: Avoid fiddling around with font sizes manunally.
|
||||
This conversely means: Avoid fiddling around with font sizes manually.
|
||||
</div>
|
||||
|
||||
|
||||
@ -91,7 +91,7 @@ Font size
|
||||
|
||||
@content
|
||||
### `normalsize`
|
||||
* used for continuos text paragraphs
|
||||
* used for continuous text paragraphs
|
||||
* default: 10pt
|
||||
* can be modified in the preamble:
|
||||
|
||||
@ -190,7 +190,7 @@ Emphasising text
|
||||
|
||||
@content
|
||||
* **Emphasise** the word “Pakete” in section 1.1.2 using `\emph{…}`.
|
||||
* ++Experiment with **optical highlighting** wherever you like, but remove them afterwards if you want to get a clean document.
|
||||
* ++The second page of the document contains a paragraph about the LaTeX weekend. Add a **link** to the VC course (<https://wiai.de/latex>).
|
||||
* ++ Experiment with **optical highlighting** wherever you like, but remove them afterwards if you want to get a clean document.
|
||||
* ++ The second page of the document contains a paragraph about the LaTeX weekend. Add a **link** to the VC course (<http://wiai.de/latex>).
|
||||
|
||||
|
||||
|
||||
@ -133,7 +133,7 @@ Nested lists
|
||||
List styles
|
||||
|
||||
@content
|
||||
The list style type can be set using the optional parametre `label`.
|
||||
The list style type can be set using the optional parameter `label`.
|
||||
To accomplish this, we need to include the package `enumitem` first.
|
||||
|
||||
``` {.lang-tex .hljs}
|
||||
|
||||
@ -174,9 +174,9 @@ The `align` environment permits us to align equations at certain positions like
|
||||
\end{align}
|
||||
```
|
||||
|
||||
* ++ The equations will be aligned with at the ampersands (‘`&`’).
|
||||
* ++ The equations will be aligned with respect to the ampersands (‘`&`’).
|
||||
* ++ We can mark a new line using ‘`\\`’.
|
||||
* ++ `align` and `equation` will not be numbered if we add an asterisk after their names (e.g. `\begin{align*}` and `\end{align*}`).
|
||||
* ++ `align` and `equation` will not be numbered if we add an asterisk after their names (e. g. `\begin{align*}` and `\end{align*}`).
|
||||
|
||||
@preview
|
||||

|
||||
|
||||
@ -23,9 +23,6 @@ Anschließend muss das LaTeX-Paket nur noch eingebunden werden:
|
||||
\usepackage{minted}
|
||||
```
|
||||
|
||||
@todo
|
||||
Quelltext aktualisieren?
|
||||
|
||||
@preview
|
||||
{ .thin-padding }
|
||||
|
||||
|
||||
@ -23,9 +23,6 @@ Add the LaTeX package and we are good to go:
|
||||
\usepackage{minted}
|
||||
```
|
||||
|
||||
@todo
|
||||
Update source code?
|
||||
|
||||
@preview
|
||||
{ .thin-padding }
|
||||
|
||||
|
||||
@ -39,7 +39,7 @@ Layout on the page
|
||||
\begin{figure}[<position code>]
|
||||
```
|
||||
|
||||
LaTeX places graphics automatically. With position codes, we can express our preferences (they can be combined, as well).
|
||||
LaTeX places graphics automatically. With position codes, we can express our preferences (they can be combined as well).
|
||||
|
||||
|
||||
<table>
|
||||
@ -73,7 +73,7 @@ LaTeX places graphics automatically. With position codes, we can express our pre
|
||||
@slide(layout=content-only)
|
||||
|
||||
@title
|
||||
Centered alignment
|
||||
Centred alignment
|
||||
|
||||
@content
|
||||
``` {.lang-tex .hljs}
|
||||
|
||||
@ -59,7 +59,7 @@ Spaltendefinitionen
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
++Vertikale Trennlinien und doppelte horizontale Linien sind unter Typograph\*innen nicht gern gesehen und sollten vermieden werden.
|
||||
++ Vertikale Trennlinien und doppelte horizontale Linien sind unter Typograph\*innen nicht gern gesehen und sollten vermieden werden.
|
||||
|
||||
@preview
|
||||
{.thin-padding}
|
||||
@ -82,9 +82,9 @@ Tabelleninhalt
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
```
|
||||
* ++Zellen werden durch ›`&`‹ abgetrennt.
|
||||
* ++Reihen werden durch ›`\\`‹ beendet.
|
||||
* ++`\toprule`, `\midrule` und `\bottomrule` strukturieren die Tabelle.
|
||||
* ++ Zellen werden durch ›`&`‹ abgetrennt.
|
||||
* ++ Reihen werden durch ›`\\`‹ beendet.
|
||||
* ++ `\toprule`, `\midrule` und `\bottomrule` strukturieren die Tabelle.
|
||||
|
||||
@preview
|
||||
{.thin-padding}
|
||||
@ -95,16 +95,13 @@ Tabelleninhalt
|
||||
@title
|
||||
Die gesamte Tabelle
|
||||
|
||||
@todo
|
||||
Doppel-Plus in der Tabelle kaputt
|
||||
|
||||
@content
|
||||
``` {.hljs .lang-tex}
|
||||
\begin{table}[h]
|
||||
\begin{tabular}{lrcl} \toprule
|
||||
Sprache & Autor & Erscheinungsjahr & Aktuelle Version \\
|
||||
\midrule
|
||||
C++ & Bjarne Stroustrup & 1985 & C++17 \\
|
||||
C++ & Bjarne Stroustrup & 1985 & C++ 17 \\
|
||||
Java & James Gosling & 1998 & 13 \\
|
||||
Python & Guido van Rossum & 1991 & 3.8.0 \\
|
||||
\bottomrule
|
||||
@ -152,9 +149,9 @@ Hinweise zu `longtable`
|
||||
\label{<label>}
|
||||
\end{longtable}
|
||||
```
|
||||
* ++Die `longtable`-Umgebung vereint die `tabular`-Umgebung und die `table`-Umgebung.
|
||||
* ++Titel und Label können deshalb direkt unter dem Tabelleninhalt stehen.
|
||||
* ++Sofern das Paket `booktabs` eingebunden ist, stehen seine Features auch in `longtable` zur Verfügung.
|
||||
* ++ Die `longtable`-Umgebung vereint die `tabular`-Umgebung und die `table`-Umgebung.
|
||||
* ++ Titel und Label können deshalb direkt unter dem Tabelleninhalt stehen.
|
||||
* ++ Sofern das Paket `booktabs` eingebunden ist, stehen seine Features auch in `longtable` zur Verfügung.
|
||||
|
||||
|
||||
@slide(layout=content-only)
|
||||
@ -231,5 +228,5 @@ Tabellen setzen
|
||||
@content
|
||||
* Bindet die Dateien `seitenaufbau.tex` und `schriften.tex` ein.
|
||||
* Tabelle 6 in Abschnitt 7 veranschaulicht die vordefinierten Schriftgrade. Fügt eine zusätzliche **rechtsbündige Spalte** ein, in der ihr die Schriftgrößen durchnummeriert.
|
||||
* ++Fügt außerdem eine **Überschriftenzeile** ein, die ihr per `\midrule` vom Rest der Tabelle trennt. Die Spaltenüberschriften können zum Beispiel »Nr.«, »Befehl« und »Beispiel« heißen.
|
||||
* ++ Fügt außerdem eine **Überschriftenzeile** ein, die ihr per `\midrule` vom Rest der Tabelle trennt. Die Spaltenüberschriften können zum Beispiel »Nr.«, »Befehl« und »Beispiel« heißen.
|
||||
|
||||
|
||||
@ -51,7 +51,7 @@ Column definitions
|
||||
</tr>
|
||||
<tr class="fragment">
|
||||
<td>c</td>
|
||||
<td>centered column</td>
|
||||
<td>centred column</td>
|
||||
</tr>
|
||||
<tr class="fragment">
|
||||
<td>r</td>
|
||||
@ -59,7 +59,7 @@ Column definitions
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
++Vertical separator lines and double horizontal lines are frowned upon by typographers and should be avoided.
|
||||
++ Vertical separator lines and double horizontal lines are frowned upon by typographers and should be avoided.
|
||||
|
||||
@preview
|
||||
{.thin-padding}
|
||||
@ -82,9 +82,9 @@ Table content
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
```
|
||||
* ++Lines are separated by ’`&`’.
|
||||
* ++Rows are ended by ‘`\\`’.
|
||||
* ++`\toprule`, `\midrule` and `\bottomrule` structure the table.
|
||||
* ++ Columns are separated by ’`&`’.
|
||||
* ++ Rows are ended by ‘`\\`’.
|
||||
* ++ `\toprule`, `\midrule` and `\bottomrule` structure the table.
|
||||
|
||||
@preview
|
||||
{.thin-padding}
|
||||
@ -95,15 +95,12 @@ Table content
|
||||
@title
|
||||
The entire table
|
||||
|
||||
@todo
|
||||
Doppel-Plus in der Tabelle kaputt
|
||||
|
||||
@content
|
||||
``` {.hljs .lang-tex}
|
||||
\begin{table}[h]
|
||||
\begin{tabular}{lrcl} \toprule
|
||||
Language & Author & Year & Version \\
|
||||
\midrule C++ & Bjarne Stroustrup & 1985 & C++17 \\
|
||||
\midrule C++ & Bjarne Stroustrup & 1985 & C++ 17 \\
|
||||
Java & James Gosling & 1998 & 13 \\
|
||||
Python & Guido van Rossum & 1991 & 3.8.0 \\
|
||||
\bottomrule
|
||||
@ -112,7 +109,7 @@ Doppel-Plus in der Tabelle kaputt
|
||||
\end{table}
|
||||
```
|
||||
|
||||
<p data-category="Note">`@{}` to the left and right of a column defnition removes the padding of the corresponding column.</p>
|
||||
<p data-category="Note">`@{}` to the left and right of a column definition removes the padding of the corresponding column.</p>
|
||||
|
||||
<p data-category="Example">`\begin{tabular}{@{}lrcl@{}}` limits the row separators to the width of the table content</p>
|
||||
|
||||
@ -151,9 +148,9 @@ Notes on `longtable`
|
||||
\label{<label>}
|
||||
\end{longtable}
|
||||
```
|
||||
* ++The `longtable` environment merges the `tabular` and `table` enviroments.
|
||||
* ++Caption and label can therefore be inserted directly under the table content.
|
||||
* ++As long as the `booktabs` package is used, its features are also provided in `longtable`.
|
||||
* ++ The `longtable` environment merges the `tabular` and `table` environments.
|
||||
* ++ Caption and label can therefore be inserted directly under the table content.
|
||||
* ++ As long as the `booktabs` package is used, its features are also provided in `longtable`.
|
||||
|
||||
|
||||
@slide(layout=content-only)
|
||||
@ -229,6 +226,6 @@ Typesetting tables
|
||||
|
||||
@content
|
||||
* Include the files `seitenaufbau.tex` and `schriften.tex`.
|
||||
* Table 6 in section 7 illustrates the predefined font sizes. Insert an additional **right-justified column** in which you number the number the sizes consecutively.
|
||||
* ++Add a **table header** separated from the rest of the table by a `\midrule`. The column headings may be something like “no.,” “command,” and “example.”
|
||||
* ++ Table 6 in section 7 illustrates the predefined font sizes. Insert an additional **right-justified column** in which you number the number the sizes consecutively.
|
||||
* ++ Add a **table header** separated from the rest of the table by a `\midrule`. The column headings may be something like “no.,” “command,” and “example.”
|
||||
|
||||
|
||||
@ -141,15 +141,15 @@ Label müssen **eindeutig** sein. Zur Strukturierung ist das Voranstellen von K
|
||||
Dinge, die zu beachten sind
|
||||
|
||||
@content
|
||||
* ++Durch `\cref` eingefügte Passagen tauchen in einigen Dokumentklassen erst dann auf Deutsch auf, wenn bereits in der Dokumentklasse die Sprache festgelegt wurde:
|
||||
* ++ Durch `\cref` eingefügte Passagen tauchen in einigen Dokumentklassen erst dann auf Deutsch auf, wenn bereits in der Dokumentklasse die Sprache festgelegt wurde:
|
||||
|
||||
``` {.hljs .lang-tex}
|
||||
\documentclass[ngerman]{article}
|
||||
```
|
||||
|
||||
* ++Beschriftungen (`\caption{…}`) müssen, von Abschnitten abgesehen, **immer und vor dem Label** vergeben werden.
|
||||
* ++ Beschriftungen (`\caption{…}`) müssen, von Abschnitten abgesehen, **immer und vor dem Label** vergeben werden.
|
||||
|
||||
* ++Bei Abschnitten wird das Label direkt hinter dem Befehl angefügt.
|
||||
* ++ Bei Abschnitten wird das Label direkt hinter dem Befehl angefügt.
|
||||
|
||||
``` {.hljs .lang-tex}
|
||||
\section{Hinweise}\label{sec:hinweise}
|
||||
@ -162,17 +162,17 @@ Dinge, die zu beachten sind
|
||||
Weiterführend
|
||||
|
||||
@content
|
||||
* ++Wurde vor dem Paket `cleveref` das Paket `hyperref` eingebunden, entsteht ein **klickbarer Link** im fertigen PDF.
|
||||
* ++Mehrere Referenzen können in `\cref` kommagetrennt angegeben werden.
|
||||
* ++ Wurde vor dem Paket `cleveref` das Paket `hyperref` eingebunden, entsteht ein **klickbarer Link** im fertigen PDF.
|
||||
* ++ Mehrere Referenzen können in `\cref` kommagetrennt angegeben werden.
|
||||
|
||||
``` {.hljs .lang-tex}
|
||||
\section{Ein Einstieg}
|
||||
\label{sec:section1}
|
||||
% …
|
||||
Hier sei verwiesen auf
|
||||
\cref{sec:section1,sec:section2,
|
||||
sec:section3,sec:section5}.
|
||||
```
|
||||
``` {.hljs .lang-tex}
|
||||
\section{Ein Einstieg}
|
||||
\label{sec:section1}
|
||||
% …
|
||||
Hier sei verwiesen auf
|
||||
\cref{sec:section1,sec:section2,
|
||||
sec:section3,sec:section5}.
|
||||
```
|
||||
|
||||
@preview
|
||||

|
||||
@ -188,10 +188,10 @@ Referenzen einfügen
|
||||
|
||||
@content
|
||||
* Schreibt eine **Fußnote** zu einem beliebigen Wort.
|
||||
* ++Fügt auf der zweiten Seite des Dokuments einen Absatz zum LaTeX-Wochenende ein, in dem ihr mit `\cref` auf einige der Stellen **verweist,** an denen ihr zuletzt gearbeitet habt. Ggf. müsst ihr dafür zunächst Label vergeben.
|
||||
* ++Hüllt die **Listings aus Aufgabe 9** (Abschnitt 2.4) in eine `figure`-Umgebung.
|
||||
* ++Ergänzt jeweils ein **Label** und eine **Bildunterschrift**.
|
||||
* ++Ersetzt die im Fließtext darüber vergebenen Nummern durch **Verweise** auf die Listings.
|
||||
* ++ Fügt auf der zweiten Seite des Dokuments einen Absatz zum LaTeX-Wochenende ein, in dem ihr mit `\cref` auf einige der Stellen **verweist,** an denen ihr zuletzt gearbeitet habt. Ggf. müsst ihr dafür zunächst Label vergeben.
|
||||
* ++ Hüllt die **Listings aus Aufgabe 9** (Abschnitt 2.4) in eine `figure`-Umgebung.
|
||||
* ++ Ergänzt jeweils ein **Label** und eine **Bildunterschrift**.
|
||||
* ++ Ersetzt die im Fließtext darüber vergebenen Nummern durch **Verweise** auf die Listings.
|
||||
|
||||
|
||||
|
||||
|
||||
@ -144,38 +144,37 @@ Labels have to be **unambiguous.** For clarity, certain prefixes are common, and
|
||||
Things to consider
|
||||
|
||||
@content
|
||||
* ++Passages inserted via `\cref` use the language specified at the document class:
|
||||
|
||||
* ++ Passages inserted via `\cref` use the language specified at the document class:
|
||||
|
||||
``` {.hljs .lang-tex}
|
||||
\documentclass[english]{article}
|
||||
```
|
||||
|
||||
* ++Apart from sections, referenced elements need captions (`\caption{…}`), and the **captions have to be placed before the label.**
|
||||
* ++ Apart from sections, referenced elements need captions (`\caption{…}`), and the **captions have to be placed before the label.**
|
||||
|
||||
* ++For sections, the label is inserted directly after the section command.
|
||||
* ++ For sections, the label is inserted directly after the section command.
|
||||
|
||||
``` {.hljs .lang-tex}
|
||||
\section{Notes}\label{sec:notes}
|
||||
```
|
||||
|
||||
|
||||
@slide(layout=content-and-preview)
|
||||
|
||||
@title
|
||||
A few more things
|
||||
|
||||
@content
|
||||
* ++If the `hyperref` package is used before `cleveref`, cross-references appear as **clickable links** in the PDF document.
|
||||
* ++`\cref` can take multiple references at once, separated by commas.
|
||||
* ++ If the `hyperref` package is used before `cleveref`, cross-references appear as **clickable links** in the PDF document.
|
||||
* ++ `\cref` can take multiple references at once, separated by commas.
|
||||
|
||||
``` {.hljs .lang-tex}
|
||||
\section{An introduction}
|
||||
\label{sec:section1}
|
||||
% …
|
||||
Reference be made to
|
||||
\cref{sec:section1,sec:section2,
|
||||
sec:section3,sec:section5}.
|
||||
```
|
||||
``` {.hljs .lang-tex}
|
||||
\section{An introduction}
|
||||
\label{sec:section1}
|
||||
% …
|
||||
Reference be made to
|
||||
\cref{sec:section1,sec:section2,
|
||||
sec:section3,sec:section5}.
|
||||
```
|
||||
|
||||
@preview
|
||||

|
||||
@ -191,10 +190,10 @@ Inserting references
|
||||
|
||||
@content
|
||||
* Write a **footnote** for a word of your choice.
|
||||
* ++On the second page of the document, insert a paragraph about the LaTeX weekend with `\cref` **references** to some of the sections you’ve been working on. You might have to assign labels first.
|
||||
* ++Wrap a `figure` environment around the **listings from task 9** (section 2.4).
|
||||
* ++Add a **label** and **caption** to each of them.
|
||||
* ++Replace the reference numbers in the surrounding paragraphs by actual **references** to the listings.
|
||||
* ++ On the second page of the document, insert a paragraph about the LaTeX weekend with `\cref` **references** to some of the sections you’ve been working on. You might have to assign labels first.
|
||||
* ++ Wrap a `figure` environment around the **listings from task 9** (section 2.4).
|
||||
* ++ Add a **label** and **caption** to each of them.
|
||||
* ++ Replace the reference numbers in the surrounding paragraphs by actual **references** to the listings.
|
||||
|
||||
|
||||
|
||||
|
||||
@ -44,10 +44,10 @@ Wie wird das verwendet?
|
||||
@content
|
||||
Durch BibTeX wird LaTeX um einige Befehle zum Zitieren erweitert. Außerdem benötigt wird das Paket `natbib`.
|
||||
|
||||
* ++Zitieren einer Quelle: `\cite{<quelle>}`
|
||||
* ++Zitieren einer Seite: `\cite[S. 15]{<quelle>}`
|
||||
* ++Verweis auf die genutzte `.bib`-Datei: `\bibliography{<.bib-datei>}`
|
||||
* ++Angabe des genutzten Zitierstils: <br/>`\bibliographystyle{<zitierstil>}`
|
||||
* ++ Zitieren einer Quelle: `\cite{<quelle>}`
|
||||
* ++ Zitieren einer Seite: `\cite[S. 15]{<quelle>}`
|
||||
* ++ Verweis auf die genutzte `.bib`-Datei: `\bibliography{<.bib-datei>}`
|
||||
* ++ Angabe des genutzten Zitierstils: <br/>`\bibliographystyle{<zitierstil>}`
|
||||
|
||||
> Zwei Dinge sind unendlich. Das Universum und die Auswahl an Zitierstilen.<cite>Unbekannt</cite>
|
||||
|
||||
@ -114,9 +114,9 @@ Ein Literaturverzeichnis erstellen und einfügen
|
||||
* Leslie Lamport (1994): LaTeX. A Document Preparation System.
|
||||
* Dilip Datta (2017): LaTeX in 24 Hours. A Practical Guide for Scientific Writing.
|
||||
* Frank Mittelbach / Michel Goossens (2012): Der LaTeX-Begleiter.
|
||||
* ++Fügt die BibTeX-Einträge in der BibTeX-Datei `l2kurz.bib` ein.
|
||||
* ++ Fügt die BibTeX-Einträge in der BibTeX-Datei `l2kurz.bib` ein.
|
||||
<!-- <li class="fragment">Wählt einen Bibliographierstil aus und füge den entsprechenden Befehl per <code>\bibliographystyle{}</code> in deine LaTeX-Datei für das Skript ein.</li> -->
|
||||
<!-- <li class="fragment">Füge das Literaturverzeichnis über <code>\bibliography{}</code> in deine LaTeX-Datei ein.</li> -->
|
||||
* ++Zitiert die 3 Handbücher an geeigneter Stelle im Skript, damit sie im Literaturverzeichnis erscheinen.
|
||||
* ++Sucht nun die Stelle, an der das Literaturverzeichnis erstellt wird. Probiert einen anderen Bibliographierstil aus und vergleicht, was sich im PDF verändert.
|
||||
* ++ Zitiert die 3 Handbücher an geeigneter Stelle im Skript, damit sie im Literaturverzeichnis erscheinen.
|
||||
* ++ Sucht nun die Stelle, an der das Literaturverzeichnis erstellt wird. Probiert einen anderen Bibliographierstil aus und vergleicht, was sich im PDF verändert.
|
||||
|
||||
|
||||
@ -44,12 +44,12 @@ How is it used?
|
||||
@content
|
||||
BibTeX adds some citation commands to LaTeX. In addition, we need the `natbib` package.
|
||||
|
||||
* ++Citing a source: `\cite{<source>}`
|
||||
* ++Citing a page: `\cite[p. 15]{<source>}`
|
||||
* ++Referencing the `.bib` file: `\bibliography{<.bib file>}`
|
||||
* ++Choosing a citation style: <br/>`\bibliographystyle{<citation style>}`
|
||||
* ++ Citing a source: `\cite{<source>}`
|
||||
* ++ Citing a page: `\cite[p. 15]{<source>}`
|
||||
* ++ Referencing the `.bib` file: `\bibliography{<.bib file>}`
|
||||
* ++ Choosing a citation style: <br/>`\bibliographystyle{<citation style>}`
|
||||
|
||||
> Two things are infinite: the universe and the assortment of citation styles.<cite>Unbekannt</cite>
|
||||
> Two things are infinite: the universe and the assortment of citation styles.<cite>Unknown</cite>
|
||||
|
||||
|
||||
@slide(layout=preview-only)
|
||||
@ -115,10 +115,10 @@ Creating and inserting references
|
||||
* Leslie Lamport (1994): LaTeX. A Document Preparation System.
|
||||
* Dilip Datta (2017): LaTeX in 24 Hours. A Practical Guide for Scientific Writing.
|
||||
* Frank Mittelbach / Michel Goossens (2012): Der LaTeX-Begleiter.
|
||||
* ++Add the BibTex entries to the BibTeX file named `l2kurz.bib`.
|
||||
* ++ Add the BibTex entries to the BibTeX file named `l2kurz.bib`.
|
||||
<!-- <li class="fragment">Wählt einen Bibliographierstil aus und füge den entsprechenden Befehl per <code>\bibliographystyle{}</code> in deine LaTeX-Datei für das Skript ein.</li> -->
|
||||
<!-- <li class="fragment">Füge das Literaturverzeichnis über <code>\bibliography{}</code> in deine LaTeX-Datei ein.</li> -->
|
||||
* ++Cite the three handbook at appropriate places in the document so that they appear in the list of references.
|
||||
* ++Now try and find the passage that creates the list of references. Choose another bibliography style and compare the changes in the PDF.
|
||||
* ++ Cite the three handbook at appropriate places in the document so that they appear in the list of references.
|
||||
* ++ Now try and find the passage that creates the list of references. Choose another bibliography style and compare the changes in the PDF.
|
||||
|
||||
|
||||
|
||||
@ -31,7 +31,7 @@ The “Comprehensive TeX Archive Network” is the central source for LaTeX pack
|
||||
@content
|
||||
Overleaf is a collaborative online LaTeX editor.
|
||||
|
||||
It also offers a multiple tutorials and templates for different occations (CV, theses, …): <a href="https://www.overleaf.com/templates">»Templates«</a>.
|
||||
It also offers a multiple tutorials and templates for different occasions (CV, theses, …): <a href="https://www.overleaf.com/templates">»Templates«</a>.
|
||||
|
||||

|
||||
|
||||
|
||||
@ -286,57 +286,58 @@
|
||||
<use xlink:href="#glyph2-19" x="5.174376" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-20" x="19.498602" y="64.888"/>
|
||||
<use xlink:href="#glyph2-19" x="24.479902" y="64.888"/>
|
||||
<use xlink:href="#glyph2-18" x="27.247512" y="64.888"/>
|
||||
<use xlink:href="#glyph2-20" x="18.024137" y="64.888"/>
|
||||
<use xlink:href="#glyph2-19" x="23.005437" y="64.888"/>
|
||||
<use xlink:href="#glyph2-18" x="25.773047" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="36.301523" y="64.888"/>
|
||||
<use xlink:href="#glyph2-22" x="41.282823" y="64.888"/>
|
||||
<use xlink:href="#glyph2-21" x="34.209377" y="64.888"/>
|
||||
<use xlink:href="#glyph2-22" x="39.190677" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="51.96273" y="64.888"/>
|
||||
<use xlink:href="#glyph2-19" x="55.892976" y="64.888"/>
|
||||
<use xlink:href="#glyph2-5" x="49.382417" y="64.888"/>
|
||||
<use xlink:href="#glyph2-19" x="53.312663" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-23" x="70.217202" y="64.888"/>
|
||||
<use xlink:href="#glyph2-16" x="77.689152" y="64.888"/>
|
||||
<use xlink:href="#glyph2-10" x="82.670452" y="64.888"/>
|
||||
<use xlink:href="#glyph2-24" x="86.572803" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="94.874637" y="64.888"/>
|
||||
<use xlink:href="#glyph2-25" x="99.855937" y="64.888"/>
|
||||
<use xlink:href="#glyph2-26" x="102.623548" y="64.888"/>
|
||||
<use xlink:href="#glyph2-27" x="105.944082" y="64.888"/>
|
||||
<use xlink:href="#glyph2-3" x="113.139072" y="64.888"/>
|
||||
<use xlink:href="#glyph2-15" x="115.906682" y="64.888"/>
|
||||
<use xlink:href="#glyph2-2" x="119.781137" y="64.888"/>
|
||||
<use xlink:href="#glyph2-23" x="66.162424" y="64.888"/>
|
||||
<use xlink:href="#glyph2-16" x="73.634374" y="64.888"/>
|
||||
<use xlink:href="#glyph2-10" x="78.615674" y="64.888"/>
|
||||
<use xlink:href="#glyph2-24" x="82.518025" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="90.819859" y="64.888"/>
|
||||
<use xlink:href="#glyph2-25" x="95.801159" y="64.888"/>
|
||||
<use xlink:href="#glyph2-26" x="98.568769" y="64.888"/>
|
||||
<use xlink:href="#glyph2-27" x="101.889304" y="64.888"/>
|
||||
<use xlink:href="#glyph2-3" x="109.084294" y="64.888"/>
|
||||
<use xlink:href="#glyph2-12" x="111.851904" y="64.888"/>
|
||||
<use xlink:href="#glyph2-15" x="117.387125" y="64.888"/>
|
||||
<use xlink:href="#glyph2-2" x="121.26158" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="131.014965" y="64.888"/>
|
||||
<use xlink:href="#glyph2-16" x="136.550186" y="64.888"/>
|
||||
<use xlink:href="#glyph2-4" x="141.531486" y="64.888"/>
|
||||
<use xlink:href="#glyph2-26" x="147.066706" y="64.888"/>
|
||||
<use xlink:href="#glyph2-13" x="150.387241" y="64.888"/>
|
||||
<use xlink:href="#glyph2-10" x="155.922461" y="64.888"/>
|
||||
<use xlink:href="#glyph2-9" x="159.824812" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="164.253187" y="64.888"/>
|
||||
<use xlink:href="#glyph2-28" x="169.234487" y="64.888"/>
|
||||
<use xlink:href="#glyph2-3" x="174.492748" y="64.888"/>
|
||||
<use xlink:href="#glyph2-4" x="177.260358" y="64.888"/>
|
||||
<use xlink:href="#glyph2-20" x="182.795579" y="64.888"/>
|
||||
<use xlink:href="#glyph2-4" x="131.997277" y="64.888"/>
|
||||
<use xlink:href="#glyph2-16" x="137.532498" y="64.888"/>
|
||||
<use xlink:href="#glyph2-4" x="142.513798" y="64.888"/>
|
||||
<use xlink:href="#glyph2-26" x="148.049019" y="64.888"/>
|
||||
<use xlink:href="#glyph2-13" x="151.369553" y="64.888"/>
|
||||
<use xlink:href="#glyph2-10" x="156.904774" y="64.888"/>
|
||||
<use xlink:href="#glyph2-9" x="160.807124" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="165.2355" y="64.888"/>
|
||||
<use xlink:href="#glyph2-28" x="170.2168" y="64.888"/>
|
||||
<use xlink:href="#glyph2-3" x="175.47506" y="64.888"/>
|
||||
<use xlink:href="#glyph2-4" x="178.24267" y="64.888"/>
|
||||
<use xlink:href="#glyph2-20" x="183.777891" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="193.465523" y="64.888"/>
|
||||
<use xlink:href="#glyph2-6" x="197.395769" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="202.930989" y="64.888"/>
|
||||
<use xlink:href="#glyph2-8" x="207.912289" y="64.888"/>
|
||||
<use xlink:href="#glyph2-9" x="212.340665" y="64.888"/>
|
||||
<use xlink:href="#glyph2-5" x="216.769041" y="64.888"/>
|
||||
<use xlink:href="#glyph2-5" x="193.959668" y="64.888"/>
|
||||
<use xlink:href="#glyph2-6" x="197.889914" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="203.425134" y="64.888"/>
|
||||
<use xlink:href="#glyph2-8" x="208.406434" y="64.888"/>
|
||||
<use xlink:href="#glyph2-9" x="212.83481" y="64.888"/>
|
||||
<use xlink:href="#glyph2-5" x="217.263186" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="226.397894" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="230.826269" y="64.888"/>
|
||||
<use xlink:href="#glyph2-4" x="235.807569" y="64.888"/>
|
||||
<use xlink:href="#glyph2-8" x="226.393909" y="64.888"/>
|
||||
<use xlink:href="#glyph2-7" x="230.822284" y="64.888"/>
|
||||
<use xlink:href="#glyph2-4" x="235.803584" y="64.888"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="0.746" y="76.843"/>
|
||||
@ -510,58 +511,59 @@
|
||||
<use xlink:href="#glyph2-18" x="22.388752" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-9" x="32.090332" y="147.031"/>
|
||||
<use xlink:href="#glyph2-19" x="36.518708" y="147.031"/>
|
||||
<use xlink:href="#glyph2-9" x="31.16381" y="147.031"/>
|
||||
<use xlink:href="#glyph2-19" x="35.592186" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-20" x="40.950072" y="147.031"/>
|
||||
<use xlink:href="#glyph2-19" x="45.931372" y="147.031"/>
|
||||
<use xlink:href="#glyph2-18" x="48.698983" y="147.031"/>
|
||||
<use xlink:href="#glyph2-20" x="40.023551" y="147.031"/>
|
||||
<use xlink:href="#glyph2-19" x="45.004851" y="147.031"/>
|
||||
<use xlink:href="#glyph2-18" x="47.772461" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="58.400562" y="147.031"/>
|
||||
<use xlink:href="#glyph2-22" x="63.381862" y="147.031"/>
|
||||
<use xlink:href="#glyph2-21" x="56.557481" y="147.031"/>
|
||||
<use xlink:href="#glyph2-22" x="61.538781" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="70.026917" y="147.031"/>
|
||||
<use xlink:href="#glyph2-19" x="73.957162" y="147.031"/>
|
||||
<use xlink:href="#glyph2-5" x="68.173873" y="147.031"/>
|
||||
<use xlink:href="#glyph2-19" x="72.104119" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-23" x="89.825592" y="147.031"/>
|
||||
<use xlink:href="#glyph2-16" x="97.297542" y="147.031"/>
|
||||
<use xlink:href="#glyph2-10" x="102.278842" y="147.031"/>
|
||||
<use xlink:href="#glyph2-24" x="106.181192" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="114.483027" y="147.031"/>
|
||||
<use xlink:href="#glyph2-25" x="119.464327" y="147.031"/>
|
||||
<use xlink:href="#glyph2-26" x="122.231937" y="147.031"/>
|
||||
<use xlink:href="#glyph2-27" x="125.552472" y="147.031"/>
|
||||
<use xlink:href="#glyph2-3" x="132.747461" y="147.031"/>
|
||||
<use xlink:href="#glyph2-15" x="135.515072" y="147.031"/>
|
||||
<use xlink:href="#glyph2-2" x="139.389527" y="147.031"/>
|
||||
<use xlink:href="#glyph2-23" x="85.770813" y="147.031"/>
|
||||
<use xlink:href="#glyph2-16" x="93.242763" y="147.031"/>
|
||||
<use xlink:href="#glyph2-10" x="98.224063" y="147.031"/>
|
||||
<use xlink:href="#glyph2-24" x="102.126414" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="110.428248" y="147.031"/>
|
||||
<use xlink:href="#glyph2-25" x="115.409548" y="147.031"/>
|
||||
<use xlink:href="#glyph2-26" x="118.177159" y="147.031"/>
|
||||
<use xlink:href="#glyph2-27" x="121.497693" y="147.031"/>
|
||||
<use xlink:href="#glyph2-3" x="128.692683" y="147.031"/>
|
||||
<use xlink:href="#glyph2-12" x="131.460293" y="147.031"/>
|
||||
<use xlink:href="#glyph2-15" x="136.995514" y="147.031"/>
|
||||
<use xlink:href="#glyph2-2" x="140.869969" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="151.14141" y="147.031"/>
|
||||
<use xlink:href="#glyph2-16" x="156.67663" y="147.031"/>
|
||||
<use xlink:href="#glyph2-4" x="161.65793" y="147.031"/>
|
||||
<use xlink:href="#glyph2-26" x="167.193151" y="147.031"/>
|
||||
<use xlink:href="#glyph2-13" x="170.513685" y="147.031"/>
|
||||
<use xlink:href="#glyph2-10" x="176.048906" y="147.031"/>
|
||||
<use xlink:href="#glyph2-9" x="179.951256" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="184.379632" y="147.031"/>
|
||||
<use xlink:href="#glyph2-28" x="189.360932" y="147.031"/>
|
||||
<use xlink:href="#glyph2-3" x="194.619192" y="147.031"/>
|
||||
<use xlink:href="#glyph2-4" x="151.874657" y="147.031"/>
|
||||
<use xlink:href="#glyph2-16" x="157.409878" y="147.031"/>
|
||||
<use xlink:href="#glyph2-4" x="162.391178" y="147.031"/>
|
||||
<use xlink:href="#glyph2-26" x="167.926398" y="147.031"/>
|
||||
<use xlink:href="#glyph2-13" x="171.246933" y="147.031"/>
|
||||
<use xlink:href="#glyph2-10" x="176.782153" y="147.031"/>
|
||||
<use xlink:href="#glyph2-9" x="180.684504" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="185.112879" y="147.031"/>
|
||||
<use xlink:href="#glyph2-28" x="190.094179" y="147.031"/>
|
||||
<use xlink:href="#glyph2-3" x="195.35244" y="147.031"/>
|
||||
<use xlink:href="#glyph2-4" x="198.12005" y="147.031"/>
|
||||
<use xlink:href="#glyph2-20" x="203.65527" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="197.37684" y="147.031"/>
|
||||
<use xlink:href="#glyph2-20" x="202.912061" y="147.031"/>
|
||||
<use xlink:href="#glyph2-5" x="214.116" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="214.110023" y="147.031"/>
|
||||
<use xlink:href="#glyph2-6" x="218.040269" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="223.575489" y="147.031"/>
|
||||
<use xlink:href="#glyph2-8" x="228.556789" y="147.031"/>
|
||||
<use xlink:href="#glyph2-9" x="232.985165" y="147.031"/>
|
||||
<use xlink:href="#glyph2-5" x="237.413541" y="147.031"/>
|
||||
<use xlink:href="#glyph2-6" x="218.036284" y="147.031"/>
|
||||
<use xlink:href="#glyph2-7" x="223.571504" y="147.031"/>
|
||||
<use xlink:href="#glyph2-8" x="228.552804" y="147.031"/>
|
||||
<use xlink:href="#glyph2-9" x="232.98118" y="147.031"/>
|
||||
<use xlink:href="#glyph2-5" x="237.409556" y="147.031"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="0.746" y="158.986"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
@ -286,57 +286,58 @@
|
||||
<use xlink:href="#glyph2-19" x="144.174376" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-20" x="158.498602" y="204.778"/>
|
||||
<use xlink:href="#glyph2-19" x="163.479902" y="204.778"/>
|
||||
<use xlink:href="#glyph2-18" x="166.247512" y="204.778"/>
|
||||
<use xlink:href="#glyph2-20" x="157.024137" y="204.778"/>
|
||||
<use xlink:href="#glyph2-19" x="162.005437" y="204.778"/>
|
||||
<use xlink:href="#glyph2-18" x="164.773047" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="175.301523" y="204.778"/>
|
||||
<use xlink:href="#glyph2-22" x="180.282823" y="204.778"/>
|
||||
<use xlink:href="#glyph2-21" x="173.209377" y="204.778"/>
|
||||
<use xlink:href="#glyph2-22" x="178.190677" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="190.96273" y="204.778"/>
|
||||
<use xlink:href="#glyph2-19" x="194.892976" y="204.778"/>
|
||||
<use xlink:href="#glyph2-5" x="188.382417" y="204.778"/>
|
||||
<use xlink:href="#glyph2-19" x="192.312663" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-23" x="209.217202" y="204.778"/>
|
||||
<use xlink:href="#glyph2-16" x="216.689152" y="204.778"/>
|
||||
<use xlink:href="#glyph2-10" x="221.670452" y="204.778"/>
|
||||
<use xlink:href="#glyph2-24" x="225.572803" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="233.874637" y="204.778"/>
|
||||
<use xlink:href="#glyph2-25" x="238.855937" y="204.778"/>
|
||||
<use xlink:href="#glyph2-26" x="241.623548" y="204.778"/>
|
||||
<use xlink:href="#glyph2-27" x="244.944082" y="204.778"/>
|
||||
<use xlink:href="#glyph2-3" x="252.139072" y="204.778"/>
|
||||
<use xlink:href="#glyph2-15" x="254.906682" y="204.778"/>
|
||||
<use xlink:href="#glyph2-2" x="258.781137" y="204.778"/>
|
||||
<use xlink:href="#glyph2-23" x="205.162424" y="204.778"/>
|
||||
<use xlink:href="#glyph2-16" x="212.634374" y="204.778"/>
|
||||
<use xlink:href="#glyph2-10" x="217.615674" y="204.778"/>
|
||||
<use xlink:href="#glyph2-24" x="221.518025" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="229.819859" y="204.778"/>
|
||||
<use xlink:href="#glyph2-25" x="234.801159" y="204.778"/>
|
||||
<use xlink:href="#glyph2-26" x="237.568769" y="204.778"/>
|
||||
<use xlink:href="#glyph2-27" x="240.889304" y="204.778"/>
|
||||
<use xlink:href="#glyph2-3" x="248.084294" y="204.778"/>
|
||||
<use xlink:href="#glyph2-12" x="250.851904" y="204.778"/>
|
||||
<use xlink:href="#glyph2-15" x="256.387125" y="204.778"/>
|
||||
<use xlink:href="#glyph2-2" x="260.26158" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="270.014965" y="204.778"/>
|
||||
<use xlink:href="#glyph2-16" x="275.550186" y="204.778"/>
|
||||
<use xlink:href="#glyph2-4" x="280.531486" y="204.778"/>
|
||||
<use xlink:href="#glyph2-26" x="286.066706" y="204.778"/>
|
||||
<use xlink:href="#glyph2-13" x="289.387241" y="204.778"/>
|
||||
<use xlink:href="#glyph2-10" x="294.922461" y="204.778"/>
|
||||
<use xlink:href="#glyph2-9" x="298.824812" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="303.253187" y="204.778"/>
|
||||
<use xlink:href="#glyph2-28" x="308.234487" y="204.778"/>
|
||||
<use xlink:href="#glyph2-3" x="313.492748" y="204.778"/>
|
||||
<use xlink:href="#glyph2-4" x="316.260358" y="204.778"/>
|
||||
<use xlink:href="#glyph2-20" x="321.795579" y="204.778"/>
|
||||
<use xlink:href="#glyph2-4" x="270.997277" y="204.778"/>
|
||||
<use xlink:href="#glyph2-16" x="276.532498" y="204.778"/>
|
||||
<use xlink:href="#glyph2-4" x="281.513798" y="204.778"/>
|
||||
<use xlink:href="#glyph2-26" x="287.049019" y="204.778"/>
|
||||
<use xlink:href="#glyph2-13" x="290.369553" y="204.778"/>
|
||||
<use xlink:href="#glyph2-10" x="295.904774" y="204.778"/>
|
||||
<use xlink:href="#glyph2-9" x="299.807124" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="304.2355" y="204.778"/>
|
||||
<use xlink:href="#glyph2-28" x="309.2168" y="204.778"/>
|
||||
<use xlink:href="#glyph2-3" x="314.47506" y="204.778"/>
|
||||
<use xlink:href="#glyph2-4" x="317.24267" y="204.778"/>
|
||||
<use xlink:href="#glyph2-20" x="322.777891" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="332.465523" y="204.778"/>
|
||||
<use xlink:href="#glyph2-6" x="336.395769" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="341.930989" y="204.778"/>
|
||||
<use xlink:href="#glyph2-8" x="346.912289" y="204.778"/>
|
||||
<use xlink:href="#glyph2-9" x="351.340665" y="204.778"/>
|
||||
<use xlink:href="#glyph2-5" x="355.769041" y="204.778"/>
|
||||
<use xlink:href="#glyph2-5" x="332.959668" y="204.778"/>
|
||||
<use xlink:href="#glyph2-6" x="336.889914" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="342.425134" y="204.778"/>
|
||||
<use xlink:href="#glyph2-8" x="347.406434" y="204.778"/>
|
||||
<use xlink:href="#glyph2-9" x="351.83481" y="204.778"/>
|
||||
<use xlink:href="#glyph2-5" x="356.263186" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="365.397894" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="369.826269" y="204.778"/>
|
||||
<use xlink:href="#glyph2-4" x="374.807569" y="204.778"/>
|
||||
<use xlink:href="#glyph2-8" x="365.393909" y="204.778"/>
|
||||
<use xlink:href="#glyph2-7" x="369.822284" y="204.778"/>
|
||||
<use xlink:href="#glyph2-4" x="374.803584" y="204.778"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-2" x="139.746" y="216.733"/>
|
||||
@ -510,58 +511,59 @@
|
||||
<use xlink:href="#glyph2-18" x="161.388752" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-9" x="171.090332" y="286.921"/>
|
||||
<use xlink:href="#glyph2-19" x="175.518708" y="286.921"/>
|
||||
<use xlink:href="#glyph2-9" x="170.16381" y="286.921"/>
|
||||
<use xlink:href="#glyph2-19" x="174.592186" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-20" x="179.950072" y="286.921"/>
|
||||
<use xlink:href="#glyph2-19" x="184.931372" y="286.921"/>
|
||||
<use xlink:href="#glyph2-18" x="187.698983" y="286.921"/>
|
||||
<use xlink:href="#glyph2-20" x="179.023551" y="286.921"/>
|
||||
<use xlink:href="#glyph2-19" x="184.004851" y="286.921"/>
|
||||
<use xlink:href="#glyph2-18" x="186.772461" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-21" x="197.400562" y="286.921"/>
|
||||
<use xlink:href="#glyph2-22" x="202.381862" y="286.921"/>
|
||||
<use xlink:href="#glyph2-21" x="195.557481" y="286.921"/>
|
||||
<use xlink:href="#glyph2-22" x="200.538781" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="209.026917" y="286.921"/>
|
||||
<use xlink:href="#glyph2-19" x="212.957162" y="286.921"/>
|
||||
<use xlink:href="#glyph2-5" x="207.173873" y="286.921"/>
|
||||
<use xlink:href="#glyph2-19" x="211.104119" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-23" x="228.825592" y="286.921"/>
|
||||
<use xlink:href="#glyph2-16" x="236.297542" y="286.921"/>
|
||||
<use xlink:href="#glyph2-10" x="241.278842" y="286.921"/>
|
||||
<use xlink:href="#glyph2-24" x="245.181192" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="253.483027" y="286.921"/>
|
||||
<use xlink:href="#glyph2-25" x="258.464327" y="286.921"/>
|
||||
<use xlink:href="#glyph2-26" x="261.231937" y="286.921"/>
|
||||
<use xlink:href="#glyph2-27" x="264.552472" y="286.921"/>
|
||||
<use xlink:href="#glyph2-3" x="271.747461" y="286.921"/>
|
||||
<use xlink:href="#glyph2-15" x="274.515072" y="286.921"/>
|
||||
<use xlink:href="#glyph2-2" x="278.389527" y="286.921"/>
|
||||
<use xlink:href="#glyph2-23" x="224.770813" y="286.921"/>
|
||||
<use xlink:href="#glyph2-16" x="232.242763" y="286.921"/>
|
||||
<use xlink:href="#glyph2-10" x="237.224063" y="286.921"/>
|
||||
<use xlink:href="#glyph2-24" x="241.126414" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="249.428248" y="286.921"/>
|
||||
<use xlink:href="#glyph2-25" x="254.409548" y="286.921"/>
|
||||
<use xlink:href="#glyph2-26" x="257.177159" y="286.921"/>
|
||||
<use xlink:href="#glyph2-27" x="260.497693" y="286.921"/>
|
||||
<use xlink:href="#glyph2-3" x="267.692683" y="286.921"/>
|
||||
<use xlink:href="#glyph2-12" x="270.460293" y="286.921"/>
|
||||
<use xlink:href="#glyph2-15" x="275.995514" y="286.921"/>
|
||||
<use xlink:href="#glyph2-2" x="279.869969" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="290.14141" y="286.921"/>
|
||||
<use xlink:href="#glyph2-16" x="295.67663" y="286.921"/>
|
||||
<use xlink:href="#glyph2-4" x="300.65793" y="286.921"/>
|
||||
<use xlink:href="#glyph2-26" x="306.193151" y="286.921"/>
|
||||
<use xlink:href="#glyph2-13" x="309.513685" y="286.921"/>
|
||||
<use xlink:href="#glyph2-10" x="315.048906" y="286.921"/>
|
||||
<use xlink:href="#glyph2-9" x="318.951256" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="323.379632" y="286.921"/>
|
||||
<use xlink:href="#glyph2-28" x="328.360932" y="286.921"/>
|
||||
<use xlink:href="#glyph2-3" x="333.619192" y="286.921"/>
|
||||
<use xlink:href="#glyph2-4" x="290.874657" y="286.921"/>
|
||||
<use xlink:href="#glyph2-16" x="296.409878" y="286.921"/>
|
||||
<use xlink:href="#glyph2-4" x="301.391178" y="286.921"/>
|
||||
<use xlink:href="#glyph2-26" x="306.926398" y="286.921"/>
|
||||
<use xlink:href="#glyph2-13" x="310.246933" y="286.921"/>
|
||||
<use xlink:href="#glyph2-10" x="315.782153" y="286.921"/>
|
||||
<use xlink:href="#glyph2-9" x="319.684504" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="324.112879" y="286.921"/>
|
||||
<use xlink:href="#glyph2-28" x="329.094179" y="286.921"/>
|
||||
<use xlink:href="#glyph2-3" x="334.35244" y="286.921"/>
|
||||
<use xlink:href="#glyph2-4" x="337.12005" y="286.921"/>
|
||||
<use xlink:href="#glyph2-20" x="342.65527" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-4" x="336.37684" y="286.921"/>
|
||||
<use xlink:href="#glyph2-20" x="341.912061" y="286.921"/>
|
||||
<use xlink:href="#glyph2-5" x="353.116" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-5" x="353.110023" y="286.921"/>
|
||||
<use xlink:href="#glyph2-6" x="357.040269" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="362.575489" y="286.921"/>
|
||||
<use xlink:href="#glyph2-8" x="367.556789" y="286.921"/>
|
||||
<use xlink:href="#glyph2-9" x="371.985165" y="286.921"/>
|
||||
<use xlink:href="#glyph2-5" x="376.413541" y="286.921"/>
|
||||
<use xlink:href="#glyph2-6" x="357.036284" y="286.921"/>
|
||||
<use xlink:href="#glyph2-7" x="362.571504" y="286.921"/>
|
||||
<use xlink:href="#glyph2-8" x="367.552804" y="286.921"/>
|
||||
<use xlink:href="#glyph2-9" x="371.98118" y="286.921"/>
|
||||
<use xlink:href="#glyph2-5" x="376.409556" y="286.921"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-8" x="139.746" y="298.876"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 72 KiB |
@ -11,10 +11,10 @@
|
||||
\section*{Spaces}
|
||||
\subsection*{Normal spaces only:}
|
||||
Thin spaces are used in abbreviations and before units, e. g., 10 s.
|
||||
Normal-with non-breaking spaces can help keep honorary titles and names on one line: Dr. Fooboar.
|
||||
Normal-width non-breaking spaces can help keep honorary titles and names on one line: Dr. Fooboar.
|
||||
|
||||
\subsection*{Different spaces:}
|
||||
Thin spaces are used in abbreviations and before units, e.\,g., 10\,s.
|
||||
Normal-with non-breaking spaces can help keep honorary titles and names on one line: Dr.~Fooboar.
|
||||
Normal-width non-breaking spaces can help keep honorary titles and names on one line: Dr.~Fooboar.
|
||||
}
|
||||
\end{document}
|
||||
|
||||
|
Before Width: | Height: | Size: 165 KiB After Width: | Height: | Size: 165 KiB |
|
Before Width: | Height: | Size: 166 KiB After Width: | Height: | Size: 165 KiB |
@ -10,7 +10,7 @@
|
||||
|
||||
\section{Ingredients}
|
||||
\begin{compactitem}
|
||||
\item lasagna noodles
|
||||
\item lasagne noodles
|
||||
\item crushed tomatoes, carrots, peas, onions
|
||||
\item oregano, basil, rosemary, salt, pepper
|
||||
\item mozzarella cheese
|
||||
@ -24,13 +24,13 @@
|
||||
\item add crushed tomatoes, carrots, and peas and let the sauce boil
|
||||
\item add herbs and spices
|
||||
\item create a béchamel sauce from milk, salt, and flour
|
||||
\item stack up béchamel sauuce, lasagna noodles and the vegetable sauce in a baking dish
|
||||
\item stack up béchamel sauce, lasagne noodles and the vegetable sauce in a baking dish
|
||||
\item top with slices of mozzarella cheese and bake
|
||||
\end{compactenum}
|
||||
|
||||
\section{Glossary}
|
||||
\begin{compactdesc}
|
||||
\item [Béchamel sauce] Béchamel sauce, also known as white sauce, is made from a white roux (butter and flour) and milk. It has been considered, since the seventeenth century, one of the mother sauces of French cuisine. (c.f. \url{https://www.wikiwand.com/en/B%C3%A9chamel_sauce})
|
||||
\item [Lasagne] Lasagne (singular lasagna) are a type of wide, flat pasta, possibly one of the oldest types of pasta. Lasagne, or the singular lasagna, commonly refers to an Italian cuisine dish made with stacked layers of this flat pasta alternated with sauces and ingredients such as meats, tomato sauce and other vegetables, cheese (which may include ricotta and parmesan), and seasonings and spices such as garlic, oregano and basil. (c.f. \url{https://en.wikipedia.org/wiki/Lasagne})
|
||||
\item [Béchamel sauce] Béchamel sauce, also known as white sauce, is made from a white roux (butter and flour) and milk. It has been considered, since the seventeenth century, one of the mother sauces of French cuisine. (cf. \url{https://www.wikiwand.com/en/B%C3%A9chamel_sauce})
|
||||
\item [Lasagne] Lasagne (singular lasagna) are a type of wide, flat pasta, possibly one of the oldest types of pasta. Lasagne, or the singular lasagna, commonly refers to an Italian cuisine dish made with stacked layers of this flat pasta alternated with sauces and ingredients such as meats, tomato sauce and other vegetables, cheese (which may include ricotta and parmesan), and seasonings and spices such as garlic, oregano and basil. (cf. \url{https://en.wikipedia.org/wiki/Lasagne})
|
||||
\end{compactdesc}
|
||||
\end{document}
|
||||
|
||||
@ -422,102 +422,103 @@
|
||||
<use xlink:href="#glyph1-7" x="34.118676" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="41.934335" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="45.864581" y="31.781"/>
|
||||
<use xlink:href="#glyph1-28" x="50.292957" y="31.781"/>
|
||||
<use xlink:href="#glyph1-9" x="42.14355" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="46.073796" y="31.781"/>
|
||||
<use xlink:href="#glyph1-28" x="50.502171" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-7" x="55.272264" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="59.70064" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="55.481479" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="59.909855" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-17" x="64.96687" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="68.841325" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="73.269701" y="31.781"/>
|
||||
<use xlink:href="#glyph1-17" x="65.176085" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="69.05054" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="77.688114" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="73.468953" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="77.897329" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-17" x="82.954345" y="31.781"/>
|
||||
<use xlink:href="#glyph1-4" x="86.8288" y="31.781"/>
|
||||
<use xlink:href="#glyph1-17" x="83.163559" y="31.781"/>
|
||||
<use xlink:href="#glyph1-4" x="87.038014" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="95.751304" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="100.17968" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="104.608056" y="31.781"/>
|
||||
<use xlink:href="#glyph1-3" x="96.169734" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="100.598109" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="105.026485" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-17" x="109.864324" y="31.781"/>
|
||||
<use xlink:href="#glyph1-10" x="113.738779" y="31.781"/>
|
||||
<use xlink:href="#glyph1-20" x="119.273999" y="31.781"/>
|
||||
<use xlink:href="#glyph1-29" x="123.17635" y="31.781"/>
|
||||
<use xlink:href="#glyph1-17" x="110.282753" y="31.781"/>
|
||||
<use xlink:href="#glyph1-10" x="114.157208" y="31.781"/>
|
||||
<use xlink:href="#glyph1-20" x="119.692428" y="31.781"/>
|
||||
<use xlink:href="#glyph1-29" x="123.594779" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="127.607714" y="31.781"/>
|
||||
<use xlink:href="#glyph1-11" x="128.026143" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="133.782534" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="138.763834" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="144.299054" y="31.781"/>
|
||||
<use xlink:href="#glyph1-12" x="134.45999" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="139.44129" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="144.976511" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="152.114714" y="31.781"/>
|
||||
<use xlink:href="#glyph1-19" x="157.096014" y="31.781"/>
|
||||
<use xlink:href="#glyph1-12" x="153.001385" y="31.781"/>
|
||||
<use xlink:href="#glyph1-19" x="157.982685" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-17" x="163.537831" y="31.781"/>
|
||||
<use xlink:href="#glyph1-4" x="167.412286" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="172.947507" y="31.781"/>
|
||||
<use xlink:href="#glyph1-17" x="164.633717" y="31.781"/>
|
||||
<use xlink:href="#glyph1-4" x="168.508172" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="174.043393" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="180.763166" y="31.781"/>
|
||||
<use xlink:href="#glyph1-12" x="189.065001" y="31.781"/>
|
||||
<use xlink:href="#glyph1-17" x="194.046301" y="31.781"/>
|
||||
<use xlink:href="#glyph1-4" x="197.920756" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="203.455977" y="31.781"/>
|
||||
<use xlink:href="#glyph1-20" x="207.884352" y="31.781"/>
|
||||
<use xlink:href="#glyph1-6" x="182.068267" y="31.781"/>
|
||||
<use xlink:href="#glyph1-12" x="190.370102" y="31.781"/>
|
||||
<use xlink:href="#glyph1-17" x="195.351402" y="31.781"/>
|
||||
<use xlink:href="#glyph1-4" x="199.225857" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="204.761077" y="31.781"/>
|
||||
<use xlink:href="#glyph1-20" x="209.189453" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="215.173987" y="31.781"/>
|
||||
<use xlink:href="#glyph1-5" x="219.104233" y="31.781"/>
|
||||
<use xlink:href="#glyph1-10" x="224.085533" y="31.781"/>
|
||||
<use xlink:href="#glyph1-3" x="229.620753" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="234.049129" y="31.781"/>
|
||||
<use xlink:href="#glyph1-9" x="238.477504" y="31.781"/>
|
||||
<use xlink:href="#glyph1-9" x="216.688302" y="31.781"/>
|
||||
<use xlink:href="#glyph1-5" x="220.618548" y="31.781"/>
|
||||
<use xlink:href="#glyph1-10" x="225.599848" y="31.781"/>
|
||||
<use xlink:href="#glyph1-3" x="231.135068" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="235.563444" y="31.781"/>
|
||||
<use xlink:href="#glyph1-9" x="239.99182" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="245.804997" y="31.781"/>
|
||||
<use xlink:href="#glyph1-19" x="250.786297" y="31.781"/>
|
||||
<use xlink:href="#glyph1-12" x="247.528527" y="31.781"/>
|
||||
<use xlink:href="#glyph1-19" x="252.509827" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-30" x="257.218151" y="31.781"/>
|
||||
<use xlink:href="#glyph1-30" x="259.150896" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="262.894841" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="266.797191" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="271.225567" y="31.781"/>
|
||||
<use xlink:href="#glyph1-3" x="276.760787" y="31.781"/>
|
||||
<use xlink:href="#glyph1-20" x="264.827585" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="268.729936" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="273.158311" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="280.91021" y="31.781"/>
|
||||
<use xlink:href="#glyph1-3" x="278.683569" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="289.832715" y="31.781"/>
|
||||
<use xlink:href="#glyph1-10" x="294.261091" y="31.781"/>
|
||||
<use xlink:href="#glyph1-16" x="299.796311" y="31.781"/>
|
||||
<use xlink:href="#glyph1-9" x="302.563921" y="31.781"/>
|
||||
<use xlink:href="#glyph1-16" x="306.494167" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="309.261777" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="314.796998" y="31.781"/>
|
||||
<use xlink:href="#glyph1-26" x="319.225374" y="31.781"/>
|
||||
<use xlink:href="#glyph1-4" x="282.842955" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="326.635556" y="31.781"/>
|
||||
<use xlink:href="#glyph1-3" x="330.510011" y="31.781"/>
|
||||
<use xlink:href="#glyph1-26" x="334.938386" y="31.781"/>
|
||||
<use xlink:href="#glyph1-19" x="337.705997" y="31.781"/>
|
||||
<use xlink:href="#glyph1-26" x="340.750567" y="31.781"/>
|
||||
<use xlink:href="#glyph1-3" x="291.974674" y="31.781"/>
|
||||
<use xlink:href="#glyph1-10" x="296.40305" y="31.781"/>
|
||||
<use xlink:href="#glyph1-16" x="301.93827" y="31.781"/>
|
||||
<use xlink:href="#glyph1-9" x="304.70588" y="31.781"/>
|
||||
<use xlink:href="#glyph1-16" x="308.636126" y="31.781"/>
|
||||
<use xlink:href="#glyph1-14" x="311.403736" y="31.781"/>
|
||||
<use xlink:href="#glyph1-7" x="316.938957" y="31.781"/>
|
||||
<use xlink:href="#glyph1-26" x="321.367333" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="329.395196" y="31.781"/>
|
||||
<use xlink:href="#glyph1-3" x="333.269651" y="31.781"/>
|
||||
<use xlink:href="#glyph1-19" x="337.698027" y="31.781"/>
|
||||
<use xlink:href="#glyph1-26" x="340.742597" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="24.709" y="43.737"/>
|
||||
@ -1057,111 +1058,110 @@
|
||||
<use xlink:href="#glyph1-9" x="65.779819" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="74.56185" y="123.438"/>
|
||||
<use xlink:href="#glyph1-14" x="79.54315" y="123.438"/>
|
||||
<use xlink:href="#glyph1-18" x="85.078371" y="123.438"/>
|
||||
<use xlink:href="#glyph1-5" x="72.838321" y="123.438"/>
|
||||
<use xlink:href="#glyph1-14" x="77.819621" y="123.438"/>
|
||||
<use xlink:href="#glyph1-18" x="83.354841" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="95.455415" y="123.438"/>
|
||||
<use xlink:href="#glyph1-33" x="99.385661" y="123.438"/>
|
||||
<use xlink:href="#glyph1-16" x="104.920881" y="123.438"/>
|
||||
<use xlink:href="#glyph1-3" x="107.688492" y="123.438"/>
|
||||
<use xlink:href="#glyph1-7" x="112.116867" y="123.438"/>
|
||||
<use xlink:href="#glyph1-9" x="116.545243" y="123.438"/>
|
||||
<use xlink:href="#glyph1-9" x="92.028281" y="123.438"/>
|
||||
<use xlink:href="#glyph1-33" x="95.958526" y="123.438"/>
|
||||
<use xlink:href="#glyph1-16" x="101.493747" y="123.438"/>
|
||||
<use xlink:href="#glyph1-3" x="104.261357" y="123.438"/>
|
||||
<use xlink:href="#glyph1-7" x="108.689733" y="123.438"/>
|
||||
<use xlink:href="#glyph1-9" x="113.118109" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="125.327275" y="123.438"/>
|
||||
<use xlink:href="#glyph1-10" x="129.257521" y="123.438"/>
|
||||
<use xlink:href="#glyph1-3" x="134.792741" y="123.438"/>
|
||||
<use xlink:href="#glyph1-9" x="120.176611" y="123.438"/>
|
||||
<use xlink:href="#glyph1-10" x="124.106856" y="123.438"/>
|
||||
<use xlink:href="#glyph1-3" x="129.642077" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="138.942164" y="123.438"/>
|
||||
<use xlink:href="#glyph1-4" x="133.7915" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="149.329171" y="123.438"/>
|
||||
<use xlink:href="#glyph1-9" x="154.310471" y="123.438"/>
|
||||
<use xlink:href="#glyph1-5" x="142.464939" y="123.438"/>
|
||||
<use xlink:href="#glyph1-9" x="147.446239" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-32" x="163.092503" y="123.438"/>
|
||||
<use xlink:href="#glyph1-5" x="168.073803" y="123.438"/>
|
||||
<use xlink:href="#glyph1-20" x="173.055103" y="123.438"/>
|
||||
<use xlink:href="#glyph1-8" x="176.957453" y="123.438"/>
|
||||
<use xlink:href="#glyph1-16" x="179.725063" y="123.438"/>
|
||||
<use xlink:href="#glyph1-3" x="182.492674" y="123.438"/>
|
||||
<use xlink:href="#glyph1-11" x="186.921049" y="123.438"/>
|
||||
<use xlink:href="#glyph1-32" x="154.504742" y="123.438"/>
|
||||
<use xlink:href="#glyph1-5" x="159.486042" y="123.438"/>
|
||||
<use xlink:href="#glyph1-20" x="164.467342" y="123.438"/>
|
||||
<use xlink:href="#glyph1-8" x="168.369692" y="123.438"/>
|
||||
<use xlink:href="#glyph1-16" x="171.137302" y="123.438"/>
|
||||
<use xlink:href="#glyph1-3" x="173.904913" y="123.438"/>
|
||||
<use xlink:href="#glyph1-11" x="178.333288" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="194.919025" y="123.438"/>
|
||||
<use xlink:href="#glyph1-20" x="199.900325" y="123.438"/>
|
||||
<use xlink:href="#glyph1-7" x="203.802675" y="123.438"/>
|
||||
<use xlink:href="#glyph1-32" x="208.231051" y="123.438"/>
|
||||
<use xlink:href="#glyph1-5" x="213.212351" y="123.438"/>
|
||||
<use xlink:href="#glyph1-14" x="218.193651" y="123.438"/>
|
||||
<use xlink:href="#glyph1-12" x="223.728871" y="123.438"/>
|
||||
<use xlink:href="#glyph1-12" x="184.278968" y="123.438"/>
|
||||
<use xlink:href="#glyph1-20" x="189.260268" y="123.438"/>
|
||||
<use xlink:href="#glyph1-7" x="193.162618" y="123.438"/>
|
||||
<use xlink:href="#glyph1-32" x="197.590994" y="123.438"/>
|
||||
<use xlink:href="#glyph1-5" x="202.572294" y="123.438"/>
|
||||
<use xlink:href="#glyph1-14" x="207.553594" y="123.438"/>
|
||||
<use xlink:href="#glyph1-12" x="213.088815" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="233.561958" y="123.438"/>
|
||||
<use xlink:href="#glyph1-14" x="238.543258" y="123.438"/>
|
||||
<use xlink:href="#glyph1-18" x="244.078478" y="123.438"/>
|
||||
<use xlink:href="#glyph1-5" x="221.198371" y="123.438"/>
|
||||
<use xlink:href="#glyph1-14" x="226.179671" y="123.438"/>
|
||||
<use xlink:href="#glyph1-18" x="231.714892" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-23" x="254.465485" y="123.438"/>
|
||||
<use xlink:href="#glyph1-5" x="260.000705" y="123.438"/>
|
||||
<use xlink:href="#glyph1-9" x="264.982005" y="123.438"/>
|
||||
<use xlink:href="#glyph1-16" x="268.912251" y="123.438"/>
|
||||
<use xlink:href="#glyph1-8" x="271.679861" y="123.438"/>
|
||||
<use xlink:href="#glyph1-26" x="274.447472" y="123.438"/>
|
||||
<use xlink:href="#glyph1-23" x="240.388331" y="123.438"/>
|
||||
<use xlink:href="#glyph1-5" x="245.923552" y="123.438"/>
|
||||
<use xlink:href="#glyph1-9" x="250.904852" y="123.438"/>
|
||||
<use xlink:href="#glyph1-16" x="254.835097" y="123.438"/>
|
||||
<use xlink:href="#glyph1-8" x="257.602708" y="123.438"/>
|
||||
<use xlink:href="#glyph1-26" x="260.370318" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="286.231235" y="123.438"/>
|
||||
<use xlink:href="#glyph1-3" x="290.10569" y="123.438"/>
|
||||
<use xlink:href="#glyph1-26" x="294.534066" y="123.438"/>
|
||||
<use xlink:href="#glyph1-19" x="297.301676" y="123.438"/>
|
||||
<use xlink:href="#glyph1-26" x="300.346247" y="123.438"/>
|
||||
<use xlink:href="#glyph1-22" x="267.501547" y="123.438"/>
|
||||
<use xlink:href="#glyph1-3" x="271.376002" y="123.438"/>
|
||||
<use xlink:href="#glyph1-19" x="275.804378" y="123.438"/>
|
||||
<use xlink:href="#glyph1-26" x="278.848948" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="312.131" y="123.438"/>
|
||||
<use xlink:href="#glyph2-2" x="317.361365" y="123.438"/>
|
||||
<use xlink:href="#glyph2-2" x="322.59173" y="123.438"/>
|
||||
<use xlink:href="#glyph2-3" x="327.822095" y="123.438"/>
|
||||
<use xlink:href="#glyph2-4" x="333.05246" y="123.438"/>
|
||||
<use xlink:href="#glyph2-5" x="338.282825" y="123.438"/>
|
||||
<use xlink:href="#glyph2-1" x="285.979" y="123.438"/>
|
||||
<use xlink:href="#glyph2-2" x="291.209365" y="123.438"/>
|
||||
<use xlink:href="#glyph2-2" x="296.43973" y="123.438"/>
|
||||
<use xlink:href="#glyph2-3" x="301.670095" y="123.438"/>
|
||||
<use xlink:href="#glyph2-4" x="306.90046" y="123.438"/>
|
||||
<use xlink:href="#glyph2-5" x="312.130825" y="123.438"/>
|
||||
<use xlink:href="#glyph2-6" x="317.36119" y="123.438"/>
|
||||
<use xlink:href="#glyph2-6" x="322.591555" y="123.438"/>
|
||||
<use xlink:href="#glyph2-17" x="327.82192" y="123.438"/>
|
||||
<use xlink:href="#glyph2-12" x="333.052285" y="123.438"/>
|
||||
<use xlink:href="#glyph2-8" x="338.28265" y="123.438"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="24.709" y="135.393"/>
|
||||
<use xlink:href="#glyph2-6" x="29.939365" y="135.393"/>
|
||||
<use xlink:href="#glyph2-17" x="35.16973" y="135.393"/>
|
||||
<use xlink:href="#glyph2-12" x="40.400095" y="135.393"/>
|
||||
<use xlink:href="#glyph2-8" x="45.63046" y="135.393"/>
|
||||
<use xlink:href="#glyph2-7" x="50.860825" y="135.393"/>
|
||||
<use xlink:href="#glyph2-9" x="56.09119" y="135.393"/>
|
||||
<use xlink:href="#glyph2-10" x="61.321555" y="135.393"/>
|
||||
<use xlink:href="#glyph2-9" x="66.55192" y="135.393"/>
|
||||
<use xlink:href="#glyph2-3" x="71.782285" y="135.393"/>
|
||||
<use xlink:href="#glyph2-17" x="77.01265" y="135.393"/>
|
||||
<use xlink:href="#glyph2-13" x="82.243015" y="135.393"/>
|
||||
<use xlink:href="#glyph2-9" x="87.47338" y="135.393"/>
|
||||
<use xlink:href="#glyph2-11" x="92.703745" y="135.393"/>
|
||||
<use xlink:href="#glyph2-8" x="97.93411" y="135.393"/>
|
||||
<use xlink:href="#glyph2-15" x="103.164475" y="135.393"/>
|
||||
<use xlink:href="#glyph2-27" x="108.39484" y="135.393"/>
|
||||
<use xlink:href="#glyph2-28" x="113.625205" y="135.393"/>
|
||||
<use xlink:href="#glyph2-7" x="24.709" y="135.393"/>
|
||||
<use xlink:href="#glyph2-9" x="29.939365" y="135.393"/>
|
||||
<use xlink:href="#glyph2-10" x="35.16973" y="135.393"/>
|
||||
<use xlink:href="#glyph2-9" x="40.400095" y="135.393"/>
|
||||
<use xlink:href="#glyph2-3" x="45.63046" y="135.393"/>
|
||||
<use xlink:href="#glyph2-17" x="50.860825" y="135.393"/>
|
||||
<use xlink:href="#glyph2-13" x="56.09119" y="135.393"/>
|
||||
<use xlink:href="#glyph2-9" x="61.321555" y="135.393"/>
|
||||
<use xlink:href="#glyph2-11" x="66.55192" y="135.393"/>
|
||||
<use xlink:href="#glyph2-8" x="71.782285" y="135.393"/>
|
||||
<use xlink:href="#glyph2-15" x="77.01265" y="135.393"/>
|
||||
<use xlink:href="#glyph2-27" x="82.243015" y="135.393"/>
|
||||
<use xlink:href="#glyph2-28" x="87.47338" y="135.393"/>
|
||||
<use xlink:href="#glyph2-6" x="92.703745" y="135.393"/>
|
||||
<use xlink:href="#glyph2-7" x="97.93411" y="135.393"/>
|
||||
<use xlink:href="#glyph2-9" x="103.164475" y="135.393"/>
|
||||
<use xlink:href="#glyph2-10" x="108.39484" y="135.393"/>
|
||||
<use xlink:href="#glyph2-9" x="113.625205" y="135.393"/>
|
||||
<use xlink:href="#glyph2-6" x="118.85557" y="135.393"/>
|
||||
<use xlink:href="#glyph2-7" x="124.085935" y="135.393"/>
|
||||
<use xlink:href="#glyph2-9" x="129.3163" y="135.393"/>
|
||||
<use xlink:href="#glyph2-10" x="134.546665" y="135.393"/>
|
||||
<use xlink:href="#glyph2-9" x="139.77703" y="135.393"/>
|
||||
<use xlink:href="#glyph2-6" x="145.007395" y="135.393"/>
|
||||
<use xlink:href="#glyph2-29" x="150.23776" y="135.393"/>
|
||||
<use xlink:href="#glyph2-11" x="155.468125" y="135.393"/>
|
||||
<use xlink:href="#glyph2-4" x="160.69849" y="135.393"/>
|
||||
<use xlink:href="#glyph2-11" x="165.928855" y="135.393"/>
|
||||
<use xlink:href="#glyph2-28" x="171.15922" y="135.393"/>
|
||||
<use xlink:href="#glyph2-12" x="176.389585" y="135.393"/>
|
||||
<use xlink:href="#glyph2-17" x="181.61995" y="135.393"/>
|
||||
<use xlink:href="#glyph2-29" x="124.085935" y="135.393"/>
|
||||
<use xlink:href="#glyph2-11" x="129.3163" y="135.393"/>
|
||||
<use xlink:href="#glyph2-4" x="134.546665" y="135.393"/>
|
||||
<use xlink:href="#glyph2-11" x="139.77703" y="135.393"/>
|
||||
<use xlink:href="#glyph2-28" x="145.007395" y="135.393"/>
|
||||
<use xlink:href="#glyph2-12" x="150.23776" y="135.393"/>
|
||||
<use xlink:href="#glyph2-17" x="155.468125" y="135.393"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-25" x="186.85" y="135.393"/>
|
||||
<use xlink:href="#glyph1-25" x="160.698" y="135.393"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 111 KiB After Width: | Height: | Size: 111 KiB |
@ -422,102 +422,103 @@
|
||||
<use xlink:href="#glyph1-7" x="159.118676" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="166.934335" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="170.864581" y="159.671"/>
|
||||
<use xlink:href="#glyph1-28" x="175.292957" y="159.671"/>
|
||||
<use xlink:href="#glyph1-9" x="167.14355" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="171.073796" y="159.671"/>
|
||||
<use xlink:href="#glyph1-28" x="175.502171" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-7" x="180.272264" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="184.70064" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="180.481479" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="184.909855" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-17" x="189.96687" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="193.841325" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="198.269701" y="159.671"/>
|
||||
<use xlink:href="#glyph1-17" x="190.176085" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="194.05054" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="202.688114" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="198.468953" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="202.897329" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-17" x="207.954345" y="159.671"/>
|
||||
<use xlink:href="#glyph1-4" x="211.8288" y="159.671"/>
|
||||
<use xlink:href="#glyph1-17" x="208.163559" y="159.671"/>
|
||||
<use xlink:href="#glyph1-4" x="212.038014" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="220.751304" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="225.17968" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="229.608056" y="159.671"/>
|
||||
<use xlink:href="#glyph1-3" x="221.169734" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="225.598109" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="230.026485" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-17" x="234.864324" y="159.671"/>
|
||||
<use xlink:href="#glyph1-10" x="238.738779" y="159.671"/>
|
||||
<use xlink:href="#glyph1-20" x="244.273999" y="159.671"/>
|
||||
<use xlink:href="#glyph1-29" x="248.17635" y="159.671"/>
|
||||
<use xlink:href="#glyph1-17" x="235.282753" y="159.671"/>
|
||||
<use xlink:href="#glyph1-10" x="239.157208" y="159.671"/>
|
||||
<use xlink:href="#glyph1-20" x="244.692428" y="159.671"/>
|
||||
<use xlink:href="#glyph1-29" x="248.594779" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="252.607714" y="159.671"/>
|
||||
<use xlink:href="#glyph1-11" x="253.026143" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="258.782534" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="263.763834" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="269.299054" y="159.671"/>
|
||||
<use xlink:href="#glyph1-12" x="259.45999" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="264.44129" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="269.976511" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="277.114714" y="159.671"/>
|
||||
<use xlink:href="#glyph1-19" x="282.096014" y="159.671"/>
|
||||
<use xlink:href="#glyph1-12" x="278.001385" y="159.671"/>
|
||||
<use xlink:href="#glyph1-19" x="282.982685" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-17" x="288.537831" y="159.671"/>
|
||||
<use xlink:href="#glyph1-4" x="292.412286" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="297.947507" y="159.671"/>
|
||||
<use xlink:href="#glyph1-17" x="289.633717" y="159.671"/>
|
||||
<use xlink:href="#glyph1-4" x="293.508172" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="299.043393" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="305.763166" y="159.671"/>
|
||||
<use xlink:href="#glyph1-12" x="314.065001" y="159.671"/>
|
||||
<use xlink:href="#glyph1-17" x="319.046301" y="159.671"/>
|
||||
<use xlink:href="#glyph1-4" x="322.920756" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="328.455977" y="159.671"/>
|
||||
<use xlink:href="#glyph1-20" x="332.884352" y="159.671"/>
|
||||
<use xlink:href="#glyph1-6" x="307.068267" y="159.671"/>
|
||||
<use xlink:href="#glyph1-12" x="315.370102" y="159.671"/>
|
||||
<use xlink:href="#glyph1-17" x="320.351402" y="159.671"/>
|
||||
<use xlink:href="#glyph1-4" x="324.225857" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="329.761077" y="159.671"/>
|
||||
<use xlink:href="#glyph1-20" x="334.189453" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="340.173987" y="159.671"/>
|
||||
<use xlink:href="#glyph1-5" x="344.104233" y="159.671"/>
|
||||
<use xlink:href="#glyph1-10" x="349.085533" y="159.671"/>
|
||||
<use xlink:href="#glyph1-3" x="354.620753" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="359.049129" y="159.671"/>
|
||||
<use xlink:href="#glyph1-9" x="363.477504" y="159.671"/>
|
||||
<use xlink:href="#glyph1-9" x="341.688302" y="159.671"/>
|
||||
<use xlink:href="#glyph1-5" x="345.618548" y="159.671"/>
|
||||
<use xlink:href="#glyph1-10" x="350.599848" y="159.671"/>
|
||||
<use xlink:href="#glyph1-3" x="356.135068" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="360.563444" y="159.671"/>
|
||||
<use xlink:href="#glyph1-9" x="364.99182" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="370.804997" y="159.671"/>
|
||||
<use xlink:href="#glyph1-19" x="375.786297" y="159.671"/>
|
||||
<use xlink:href="#glyph1-12" x="372.528527" y="159.671"/>
|
||||
<use xlink:href="#glyph1-19" x="377.509827" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-30" x="382.218151" y="159.671"/>
|
||||
<use xlink:href="#glyph1-30" x="384.150896" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="387.894841" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="391.797191" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="396.225567" y="159.671"/>
|
||||
<use xlink:href="#glyph1-3" x="401.760787" y="159.671"/>
|
||||
<use xlink:href="#glyph1-20" x="389.827585" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="393.729936" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="398.158311" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="405.91021" y="159.671"/>
|
||||
<use xlink:href="#glyph1-3" x="403.683569" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="414.832715" y="159.671"/>
|
||||
<use xlink:href="#glyph1-10" x="419.261091" y="159.671"/>
|
||||
<use xlink:href="#glyph1-16" x="424.796311" y="159.671"/>
|
||||
<use xlink:href="#glyph1-9" x="427.563921" y="159.671"/>
|
||||
<use xlink:href="#glyph1-16" x="431.494167" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="434.261777" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="439.796998" y="159.671"/>
|
||||
<use xlink:href="#glyph1-26" x="444.225374" y="159.671"/>
|
||||
<use xlink:href="#glyph1-4" x="407.842955" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="451.635556" y="159.671"/>
|
||||
<use xlink:href="#glyph1-3" x="455.510011" y="159.671"/>
|
||||
<use xlink:href="#glyph1-26" x="459.938386" y="159.671"/>
|
||||
<use xlink:href="#glyph1-19" x="462.705997" y="159.671"/>
|
||||
<use xlink:href="#glyph1-26" x="465.750567" y="159.671"/>
|
||||
<use xlink:href="#glyph1-3" x="416.974674" y="159.671"/>
|
||||
<use xlink:href="#glyph1-10" x="421.40305" y="159.671"/>
|
||||
<use xlink:href="#glyph1-16" x="426.93827" y="159.671"/>
|
||||
<use xlink:href="#glyph1-9" x="429.70588" y="159.671"/>
|
||||
<use xlink:href="#glyph1-16" x="433.636126" y="159.671"/>
|
||||
<use xlink:href="#glyph1-14" x="436.403736" y="159.671"/>
|
||||
<use xlink:href="#glyph1-7" x="441.938957" y="159.671"/>
|
||||
<use xlink:href="#glyph1-26" x="446.367333" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="454.395196" y="159.671"/>
|
||||
<use xlink:href="#glyph1-3" x="458.269651" y="159.671"/>
|
||||
<use xlink:href="#glyph1-19" x="462.698027" y="159.671"/>
|
||||
<use xlink:href="#glyph1-26" x="465.742597" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="149.709" y="171.627"/>
|
||||
@ -1057,111 +1058,110 @@
|
||||
<use xlink:href="#glyph1-9" x="190.779819" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="199.56185" y="251.328"/>
|
||||
<use xlink:href="#glyph1-14" x="204.54315" y="251.328"/>
|
||||
<use xlink:href="#glyph1-18" x="210.078371" y="251.328"/>
|
||||
<use xlink:href="#glyph1-5" x="197.838321" y="251.328"/>
|
||||
<use xlink:href="#glyph1-14" x="202.819621" y="251.328"/>
|
||||
<use xlink:href="#glyph1-18" x="208.354841" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="220.455415" y="251.328"/>
|
||||
<use xlink:href="#glyph1-33" x="224.385661" y="251.328"/>
|
||||
<use xlink:href="#glyph1-16" x="229.920881" y="251.328"/>
|
||||
<use xlink:href="#glyph1-3" x="232.688492" y="251.328"/>
|
||||
<use xlink:href="#glyph1-7" x="237.116867" y="251.328"/>
|
||||
<use xlink:href="#glyph1-9" x="241.545243" y="251.328"/>
|
||||
<use xlink:href="#glyph1-9" x="217.028281" y="251.328"/>
|
||||
<use xlink:href="#glyph1-33" x="220.958526" y="251.328"/>
|
||||
<use xlink:href="#glyph1-16" x="226.493747" y="251.328"/>
|
||||
<use xlink:href="#glyph1-3" x="229.261357" y="251.328"/>
|
||||
<use xlink:href="#glyph1-7" x="233.689733" y="251.328"/>
|
||||
<use xlink:href="#glyph1-9" x="238.118109" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="250.327275" y="251.328"/>
|
||||
<use xlink:href="#glyph1-10" x="254.257521" y="251.328"/>
|
||||
<use xlink:href="#glyph1-3" x="259.792741" y="251.328"/>
|
||||
<use xlink:href="#glyph1-9" x="245.176611" y="251.328"/>
|
||||
<use xlink:href="#glyph1-10" x="249.106856" y="251.328"/>
|
||||
<use xlink:href="#glyph1-3" x="254.642077" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-4" x="263.942164" y="251.328"/>
|
||||
<use xlink:href="#glyph1-4" x="258.7915" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="274.329171" y="251.328"/>
|
||||
<use xlink:href="#glyph1-9" x="279.310471" y="251.328"/>
|
||||
<use xlink:href="#glyph1-5" x="267.464939" y="251.328"/>
|
||||
<use xlink:href="#glyph1-9" x="272.446239" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-32" x="288.092503" y="251.328"/>
|
||||
<use xlink:href="#glyph1-5" x="293.073803" y="251.328"/>
|
||||
<use xlink:href="#glyph1-20" x="298.055103" y="251.328"/>
|
||||
<use xlink:href="#glyph1-8" x="301.957453" y="251.328"/>
|
||||
<use xlink:href="#glyph1-16" x="304.725063" y="251.328"/>
|
||||
<use xlink:href="#glyph1-3" x="307.492674" y="251.328"/>
|
||||
<use xlink:href="#glyph1-11" x="311.921049" y="251.328"/>
|
||||
<use xlink:href="#glyph1-32" x="279.504742" y="251.328"/>
|
||||
<use xlink:href="#glyph1-5" x="284.486042" y="251.328"/>
|
||||
<use xlink:href="#glyph1-20" x="289.467342" y="251.328"/>
|
||||
<use xlink:href="#glyph1-8" x="293.369692" y="251.328"/>
|
||||
<use xlink:href="#glyph1-16" x="296.137302" y="251.328"/>
|
||||
<use xlink:href="#glyph1-3" x="298.904913" y="251.328"/>
|
||||
<use xlink:href="#glyph1-11" x="303.333288" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="319.919025" y="251.328"/>
|
||||
<use xlink:href="#glyph1-20" x="324.900325" y="251.328"/>
|
||||
<use xlink:href="#glyph1-7" x="328.802675" y="251.328"/>
|
||||
<use xlink:href="#glyph1-32" x="333.231051" y="251.328"/>
|
||||
<use xlink:href="#glyph1-5" x="338.212351" y="251.328"/>
|
||||
<use xlink:href="#glyph1-14" x="343.193651" y="251.328"/>
|
||||
<use xlink:href="#glyph1-12" x="348.728871" y="251.328"/>
|
||||
<use xlink:href="#glyph1-12" x="309.278968" y="251.328"/>
|
||||
<use xlink:href="#glyph1-20" x="314.260268" y="251.328"/>
|
||||
<use xlink:href="#glyph1-7" x="318.162618" y="251.328"/>
|
||||
<use xlink:href="#glyph1-32" x="322.590994" y="251.328"/>
|
||||
<use xlink:href="#glyph1-5" x="327.572294" y="251.328"/>
|
||||
<use xlink:href="#glyph1-14" x="332.553594" y="251.328"/>
|
||||
<use xlink:href="#glyph1-12" x="338.088815" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="358.561958" y="251.328"/>
|
||||
<use xlink:href="#glyph1-14" x="363.543258" y="251.328"/>
|
||||
<use xlink:href="#glyph1-18" x="369.078478" y="251.328"/>
|
||||
<use xlink:href="#glyph1-5" x="346.198371" y="251.328"/>
|
||||
<use xlink:href="#glyph1-14" x="351.179671" y="251.328"/>
|
||||
<use xlink:href="#glyph1-18" x="356.714892" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-23" x="379.465485" y="251.328"/>
|
||||
<use xlink:href="#glyph1-5" x="385.000705" y="251.328"/>
|
||||
<use xlink:href="#glyph1-9" x="389.982005" y="251.328"/>
|
||||
<use xlink:href="#glyph1-16" x="393.912251" y="251.328"/>
|
||||
<use xlink:href="#glyph1-8" x="396.679861" y="251.328"/>
|
||||
<use xlink:href="#glyph1-26" x="399.447472" y="251.328"/>
|
||||
<use xlink:href="#glyph1-23" x="365.388331" y="251.328"/>
|
||||
<use xlink:href="#glyph1-5" x="370.923552" y="251.328"/>
|
||||
<use xlink:href="#glyph1-9" x="375.904852" y="251.328"/>
|
||||
<use xlink:href="#glyph1-16" x="379.835097" y="251.328"/>
|
||||
<use xlink:href="#glyph1-8" x="382.602708" y="251.328"/>
|
||||
<use xlink:href="#glyph1-26" x="385.370318" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="411.231235" y="251.328"/>
|
||||
<use xlink:href="#glyph1-3" x="415.10569" y="251.328"/>
|
||||
<use xlink:href="#glyph1-26" x="419.534066" y="251.328"/>
|
||||
<use xlink:href="#glyph1-19" x="422.301676" y="251.328"/>
|
||||
<use xlink:href="#glyph1-26" x="425.346247" y="251.328"/>
|
||||
<use xlink:href="#glyph1-22" x="392.501547" y="251.328"/>
|
||||
<use xlink:href="#glyph1-3" x="396.376002" y="251.328"/>
|
||||
<use xlink:href="#glyph1-19" x="400.804378" y="251.328"/>
|
||||
<use xlink:href="#glyph1-26" x="403.848948" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="437.131" y="251.328"/>
|
||||
<use xlink:href="#glyph2-2" x="442.361365" y="251.328"/>
|
||||
<use xlink:href="#glyph2-2" x="447.59173" y="251.328"/>
|
||||
<use xlink:href="#glyph2-3" x="452.822095" y="251.328"/>
|
||||
<use xlink:href="#glyph2-4" x="458.05246" y="251.328"/>
|
||||
<use xlink:href="#glyph2-5" x="463.282825" y="251.328"/>
|
||||
<use xlink:href="#glyph2-1" x="410.979" y="251.328"/>
|
||||
<use xlink:href="#glyph2-2" x="416.209365" y="251.328"/>
|
||||
<use xlink:href="#glyph2-2" x="421.43973" y="251.328"/>
|
||||
<use xlink:href="#glyph2-3" x="426.670095" y="251.328"/>
|
||||
<use xlink:href="#glyph2-4" x="431.90046" y="251.328"/>
|
||||
<use xlink:href="#glyph2-5" x="437.130825" y="251.328"/>
|
||||
<use xlink:href="#glyph2-6" x="442.36119" y="251.328"/>
|
||||
<use xlink:href="#glyph2-6" x="447.591555" y="251.328"/>
|
||||
<use xlink:href="#glyph2-17" x="452.82192" y="251.328"/>
|
||||
<use xlink:href="#glyph2-12" x="458.052285" y="251.328"/>
|
||||
<use xlink:href="#glyph2-8" x="463.28265" y="251.328"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-6" x="149.709" y="263.283"/>
|
||||
<use xlink:href="#glyph2-6" x="154.939365" y="263.283"/>
|
||||
<use xlink:href="#glyph2-17" x="160.16973" y="263.283"/>
|
||||
<use xlink:href="#glyph2-12" x="165.400095" y="263.283"/>
|
||||
<use xlink:href="#glyph2-8" x="170.63046" y="263.283"/>
|
||||
<use xlink:href="#glyph2-7" x="175.860825" y="263.283"/>
|
||||
<use xlink:href="#glyph2-9" x="181.09119" y="263.283"/>
|
||||
<use xlink:href="#glyph2-10" x="186.321555" y="263.283"/>
|
||||
<use xlink:href="#glyph2-9" x="191.55192" y="263.283"/>
|
||||
<use xlink:href="#glyph2-3" x="196.782285" y="263.283"/>
|
||||
<use xlink:href="#glyph2-17" x="202.01265" y="263.283"/>
|
||||
<use xlink:href="#glyph2-13" x="207.243015" y="263.283"/>
|
||||
<use xlink:href="#glyph2-9" x="212.47338" y="263.283"/>
|
||||
<use xlink:href="#glyph2-11" x="217.703745" y="263.283"/>
|
||||
<use xlink:href="#glyph2-8" x="222.93411" y="263.283"/>
|
||||
<use xlink:href="#glyph2-15" x="228.164475" y="263.283"/>
|
||||
<use xlink:href="#glyph2-27" x="233.39484" y="263.283"/>
|
||||
<use xlink:href="#glyph2-28" x="238.625205" y="263.283"/>
|
||||
<use xlink:href="#glyph2-7" x="149.709" y="263.283"/>
|
||||
<use xlink:href="#glyph2-9" x="154.939365" y="263.283"/>
|
||||
<use xlink:href="#glyph2-10" x="160.16973" y="263.283"/>
|
||||
<use xlink:href="#glyph2-9" x="165.400095" y="263.283"/>
|
||||
<use xlink:href="#glyph2-3" x="170.63046" y="263.283"/>
|
||||
<use xlink:href="#glyph2-17" x="175.860825" y="263.283"/>
|
||||
<use xlink:href="#glyph2-13" x="181.09119" y="263.283"/>
|
||||
<use xlink:href="#glyph2-9" x="186.321555" y="263.283"/>
|
||||
<use xlink:href="#glyph2-11" x="191.55192" y="263.283"/>
|
||||
<use xlink:href="#glyph2-8" x="196.782285" y="263.283"/>
|
||||
<use xlink:href="#glyph2-15" x="202.01265" y="263.283"/>
|
||||
<use xlink:href="#glyph2-27" x="207.243015" y="263.283"/>
|
||||
<use xlink:href="#glyph2-28" x="212.47338" y="263.283"/>
|
||||
<use xlink:href="#glyph2-6" x="217.703745" y="263.283"/>
|
||||
<use xlink:href="#glyph2-7" x="222.93411" y="263.283"/>
|
||||
<use xlink:href="#glyph2-9" x="228.164475" y="263.283"/>
|
||||
<use xlink:href="#glyph2-10" x="233.39484" y="263.283"/>
|
||||
<use xlink:href="#glyph2-9" x="238.625205" y="263.283"/>
|
||||
<use xlink:href="#glyph2-6" x="243.85557" y="263.283"/>
|
||||
<use xlink:href="#glyph2-7" x="249.085935" y="263.283"/>
|
||||
<use xlink:href="#glyph2-9" x="254.3163" y="263.283"/>
|
||||
<use xlink:href="#glyph2-10" x="259.546665" y="263.283"/>
|
||||
<use xlink:href="#glyph2-9" x="264.77703" y="263.283"/>
|
||||
<use xlink:href="#glyph2-6" x="270.007395" y="263.283"/>
|
||||
<use xlink:href="#glyph2-29" x="275.23776" y="263.283"/>
|
||||
<use xlink:href="#glyph2-11" x="280.468125" y="263.283"/>
|
||||
<use xlink:href="#glyph2-4" x="285.69849" y="263.283"/>
|
||||
<use xlink:href="#glyph2-11" x="290.928855" y="263.283"/>
|
||||
<use xlink:href="#glyph2-28" x="296.15922" y="263.283"/>
|
||||
<use xlink:href="#glyph2-12" x="301.389585" y="263.283"/>
|
||||
<use xlink:href="#glyph2-17" x="306.61995" y="263.283"/>
|
||||
<use xlink:href="#glyph2-29" x="249.085935" y="263.283"/>
|
||||
<use xlink:href="#glyph2-11" x="254.3163" y="263.283"/>
|
||||
<use xlink:href="#glyph2-4" x="259.546665" y="263.283"/>
|
||||
<use xlink:href="#glyph2-11" x="264.77703" y="263.283"/>
|
||||
<use xlink:href="#glyph2-28" x="270.007395" y="263.283"/>
|
||||
<use xlink:href="#glyph2-12" x="275.23776" y="263.283"/>
|
||||
<use xlink:href="#glyph2-17" x="280.468125" y="263.283"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-25" x="311.85" y="263.283"/>
|
||||
<use xlink:href="#glyph1-25" x="285.698" y="263.283"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 112 KiB After Width: | Height: | Size: 112 KiB |
@ -8,8 +8,8 @@
|
||||
\thispagestyle{empty}
|
||||
|
||||
\begin{description}
|
||||
\item [Béchamel sauce] Béchamel sauce, also known as white sauce, is made from a white roux (butter and flour) and milk. It has been considered, since the seventeenth century, one of the mother sauces of French cuisine. (c.f. \url{https://www.wikiwand.com/en/B%C3%A9chamel_sauce})
|
||||
\item [Lasagne] Lasagne (singular lasagna) are a type of wide, flat pasta, possibly one of the oldest types of pasta. Lasagne, or the singular lasagna, commonly refers to an Italian cuisine dish made with stacked layers of this flat pasta alternated with sauces and ingredients such as meats, tomato sauce and other vegetables, cheese (which may include ricotta and parmesan), and seasonings and spices such as garlic, oregano and basil. (c.f. \url{https://en.wikipedia.org/wiki/Lasagne})
|
||||
\item [Béchamel sauce] Béchamel sauce, also known as white sauce, is made from a white roux (butter and flour) and milk. It has been considered, since the seventeenth century, one of the mother sauces of French cuisine. (cf. \url{https://www.wikiwand.com/en/B%C3%A9chamel_sauce})
|
||||
\item [Lasagne] Lasagne (singular lasagna) are a type of wide, flat pasta, possibly one of the oldest types of pasta. Lasagne, or the singular lasagna, commonly refers to an Italian cuisine dish made with stacked layers of this flat pasta alternated with sauces and ingredients such as meats, tomato sauce and other vegetables, cheese (which may include ricotta and parmesan), and seasonings and spices such as garlic, oregano and basil. (cf. \url{https://en.wikipedia.org/wiki/Lasagne})
|
||||
\end{description}
|
||||
|
||||
\end{document}
|
||||
|
||||
@ -376,90 +376,91 @@
|
||||
<use xlink:href="#glyph0-5" x="29.644634" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="38.688682" y="87.572"/>
|
||||
<use xlink:href="#glyph0-24" x="44.223903" y="87.572"/>
|
||||
<use xlink:href="#glyph0-14" x="39.236625" y="87.572"/>
|
||||
<use xlink:href="#glyph0-24" x="44.771846" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-21" x="53.544911" y="87.572"/>
|
||||
<use xlink:href="#glyph0-21" x="54.630835" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-27" x="59.359085" y="87.572"/>
|
||||
<use xlink:href="#glyph0-3" x="63.78746" y="87.572"/>
|
||||
<use xlink:href="#glyph0-27" x="60.445008" y="87.572"/>
|
||||
<use xlink:href="#glyph0-3" x="64.873384" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="67.936883" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="73.472104" y="87.572"/>
|
||||
<use xlink:href="#glyph0-12" x="78.453404" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="86.755239" y="87.572"/>
|
||||
<use xlink:href="#glyph0-18" x="91.183614" y="87.572"/>
|
||||
<use xlink:href="#glyph0-15" x="69.022807" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="74.558027" y="87.572"/>
|
||||
<use xlink:href="#glyph0-12" x="79.539327" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="87.841162" y="87.572"/>
|
||||
<use xlink:href="#glyph0-18" x="92.269538" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="97.737013" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="101.667258" y="87.572"/>
|
||||
<use xlink:href="#glyph0-14" x="106.648558" y="87.572"/>
|
||||
<use xlink:href="#glyph0-14" x="112.183779" y="87.572"/>
|
||||
<use xlink:href="#glyph0-3" x="117.718999" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="122.147375" y="87.572"/>
|
||||
<use xlink:href="#glyph0-23" x="126.575751" y="87.572"/>
|
||||
<use xlink:href="#glyph0-8" x="99.360916" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="103.291162" y="87.572"/>
|
||||
<use xlink:href="#glyph0-14" x="108.272462" y="87.572"/>
|
||||
<use xlink:href="#glyph0-3" x="113.807683" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="118.236058" y="87.572"/>
|
||||
<use xlink:href="#glyph0-23" x="122.664434" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-18" x="133.2487" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="136.01631" y="87.572"/>
|
||||
<use xlink:href="#glyph0-8" x="140.99761" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="144.927856" y="87.572"/>
|
||||
<use xlink:href="#glyph0-31" x="149.909156" y="87.572"/>
|
||||
<use xlink:href="#glyph0-6" x="154.890456" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="160.425677" y="87.572"/>
|
||||
<use xlink:href="#glyph0-18" x="130.01484" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="132.782451" y="87.572"/>
|
||||
<use xlink:href="#glyph0-8" x="137.763751" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="141.693996" y="87.572"/>
|
||||
<use xlink:href="#glyph0-31" x="146.675296" y="87.572"/>
|
||||
<use xlink:href="#glyph0-6" x="151.656596" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="157.191817" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="169.192765" y="87.572"/>
|
||||
<use xlink:href="#glyph0-4" x="174.727985" y="87.572"/>
|
||||
<use xlink:href="#glyph0-6" x="165.943961" y="87.572"/>
|
||||
<use xlink:href="#glyph0-4" x="171.479181" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="179.988238" y="87.572"/>
|
||||
<use xlink:href="#glyph0-4" x="176.739434" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="185.248491" y="87.572"/>
|
||||
<use xlink:href="#glyph0-18" x="190.783711" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="193.551322" y="87.572"/>
|
||||
<use xlink:href="#glyph0-8" x="197.979697" y="87.572"/>
|
||||
<use xlink:href="#glyph0-13" x="181.999687" y="87.572"/>
|
||||
<use xlink:href="#glyph0-18" x="187.534908" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="190.302518" y="87.572"/>
|
||||
<use xlink:href="#glyph0-8" x="194.730894" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="205.695731" y="87.572"/>
|
||||
<use xlink:href="#glyph0-6" x="210.677031" y="87.572"/>
|
||||
<use xlink:href="#glyph0-13" x="216.212252" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="202.984908" y="87.572"/>
|
||||
<use xlink:href="#glyph0-6" x="207.966208" y="87.572"/>
|
||||
<use xlink:href="#glyph0-13" x="213.501428" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-17" x="225.53326" y="87.572"/>
|
||||
<use xlink:href="#glyph0-15" x="229.407715" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="234.942936" y="87.572"/>
|
||||
<use xlink:href="#glyph0-17" x="223.37038" y="87.572"/>
|
||||
<use xlink:href="#glyph0-15" x="227.244835" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="232.780056" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="243.1571" y="87.572"/>
|
||||
<use xlink:href="#glyph0-9" x="241.5322" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="248.136407" y="87.572"/>
|
||||
<use xlink:href="#glyph0-31" x="252.564783" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="257.546083" y="87.572"/>
|
||||
<use xlink:href="#glyph0-17" x="261.974459" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="265.848914" y="87.572"/>
|
||||
<use xlink:href="#glyph0-21" x="270.830214" y="87.572"/>
|
||||
<use xlink:href="#glyph0-18" x="276.365434" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="279.133045" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="246.52147" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="287.347208" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="291.277454" y="87.572"/>
|
||||
<use xlink:href="#glyph0-14" x="296.258754" y="87.572"/>
|
||||
<use xlink:href="#glyph0-3" x="301.793974" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="306.22235" y="87.572"/>
|
||||
<use xlink:href="#glyph0-31" x="250.939883" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="255.921183" y="87.572"/>
|
||||
<use xlink:href="#glyph0-17" x="260.349558" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="264.224014" y="87.572"/>
|
||||
<use xlink:href="#glyph0-21" x="269.205314" y="87.572"/>
|
||||
<use xlink:href="#glyph0-18" x="274.740534" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="277.508144" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="314.436514" y="87.572"/>
|
||||
<use xlink:href="#glyph0-6" x="317.204124" y="87.572"/>
|
||||
<use xlink:href="#glyph0-8" x="286.270251" y="87.572"/>
|
||||
<use xlink:href="#glyph0-16" x="290.200497" y="87.572"/>
|
||||
<use xlink:href="#glyph0-14" x="295.181797" y="87.572"/>
|
||||
<use xlink:href="#glyph0-3" x="300.717017" y="87.572"/>
|
||||
<use xlink:href="#glyph0-10" x="305.145393" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="326.535095" y="87.572"/>
|
||||
<use xlink:href="#glyph0-7" x="313.897537" y="87.572"/>
|
||||
<use xlink:href="#glyph0-6" x="316.665148" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="326.534099" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-21" x="12.709" y="99.527"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
@ -376,90 +376,91 @@
|
||||
<use xlink:href="#glyph0-5" x="166.644634" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="175.688682" y="215.462"/>
|
||||
<use xlink:href="#glyph0-24" x="181.223903" y="215.462"/>
|
||||
<use xlink:href="#glyph0-14" x="176.236625" y="215.462"/>
|
||||
<use xlink:href="#glyph0-24" x="181.771846" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-21" x="190.544911" y="215.462"/>
|
||||
<use xlink:href="#glyph0-21" x="191.630835" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-27" x="196.359085" y="215.462"/>
|
||||
<use xlink:href="#glyph0-3" x="200.78746" y="215.462"/>
|
||||
<use xlink:href="#glyph0-27" x="197.445008" y="215.462"/>
|
||||
<use xlink:href="#glyph0-3" x="201.873384" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-15" x="204.936883" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="210.472104" y="215.462"/>
|
||||
<use xlink:href="#glyph0-12" x="215.453404" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="223.755239" y="215.462"/>
|
||||
<use xlink:href="#glyph0-18" x="228.183614" y="215.462"/>
|
||||
<use xlink:href="#glyph0-15" x="206.022807" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="211.558027" y="215.462"/>
|
||||
<use xlink:href="#glyph0-12" x="216.539327" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="224.841162" y="215.462"/>
|
||||
<use xlink:href="#glyph0-18" x="229.269538" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="234.737013" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="238.667258" y="215.462"/>
|
||||
<use xlink:href="#glyph0-14" x="243.648558" y="215.462"/>
|
||||
<use xlink:href="#glyph0-14" x="249.183779" y="215.462"/>
|
||||
<use xlink:href="#glyph0-3" x="254.718999" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="259.147375" y="215.462"/>
|
||||
<use xlink:href="#glyph0-23" x="263.575751" y="215.462"/>
|
||||
<use xlink:href="#glyph0-8" x="236.360916" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="240.291162" y="215.462"/>
|
||||
<use xlink:href="#glyph0-14" x="245.272462" y="215.462"/>
|
||||
<use xlink:href="#glyph0-3" x="250.807683" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="255.236058" y="215.462"/>
|
||||
<use xlink:href="#glyph0-23" x="259.664434" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-18" x="270.2487" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="273.01631" y="215.462"/>
|
||||
<use xlink:href="#glyph0-8" x="277.99761" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="281.927856" y="215.462"/>
|
||||
<use xlink:href="#glyph0-31" x="286.909156" y="215.462"/>
|
||||
<use xlink:href="#glyph0-6" x="291.890456" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="297.425677" y="215.462"/>
|
||||
<use xlink:href="#glyph0-18" x="267.01484" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="269.782451" y="215.462"/>
|
||||
<use xlink:href="#glyph0-8" x="274.763751" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="278.693996" y="215.462"/>
|
||||
<use xlink:href="#glyph0-31" x="283.675296" y="215.462"/>
|
||||
<use xlink:href="#glyph0-6" x="288.656596" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="294.191817" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="306.192765" y="215.462"/>
|
||||
<use xlink:href="#glyph0-4" x="311.727985" y="215.462"/>
|
||||
<use xlink:href="#glyph0-6" x="302.943961" y="215.462"/>
|
||||
<use xlink:href="#glyph0-4" x="308.479181" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-4" x="316.988238" y="215.462"/>
|
||||
<use xlink:href="#glyph0-4" x="313.739434" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-13" x="322.248491" y="215.462"/>
|
||||
<use xlink:href="#glyph0-18" x="327.783711" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="330.551322" y="215.462"/>
|
||||
<use xlink:href="#glyph0-8" x="334.979697" y="215.462"/>
|
||||
<use xlink:href="#glyph0-13" x="318.999687" y="215.462"/>
|
||||
<use xlink:href="#glyph0-18" x="324.534908" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="327.302518" y="215.462"/>
|
||||
<use xlink:href="#glyph0-8" x="331.730894" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="342.695731" y="215.462"/>
|
||||
<use xlink:href="#glyph0-6" x="347.677031" y="215.462"/>
|
||||
<use xlink:href="#glyph0-13" x="353.212252" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="339.984908" y="215.462"/>
|
||||
<use xlink:href="#glyph0-6" x="344.966208" y="215.462"/>
|
||||
<use xlink:href="#glyph0-13" x="350.501428" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-17" x="362.53326" y="215.462"/>
|
||||
<use xlink:href="#glyph0-15" x="366.407715" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="371.942936" y="215.462"/>
|
||||
<use xlink:href="#glyph0-17" x="360.37038" y="215.462"/>
|
||||
<use xlink:href="#glyph0-15" x="364.244835" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="369.780056" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-9" x="380.1571" y="215.462"/>
|
||||
<use xlink:href="#glyph0-9" x="378.5322" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="385.136407" y="215.462"/>
|
||||
<use xlink:href="#glyph0-31" x="389.564783" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="394.546083" y="215.462"/>
|
||||
<use xlink:href="#glyph0-17" x="398.974459" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="402.848914" y="215.462"/>
|
||||
<use xlink:href="#glyph0-21" x="407.830214" y="215.462"/>
|
||||
<use xlink:href="#glyph0-18" x="413.365434" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="416.133045" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="383.52147" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-8" x="424.347208" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="428.277454" y="215.462"/>
|
||||
<use xlink:href="#glyph0-14" x="433.258754" y="215.462"/>
|
||||
<use xlink:href="#glyph0-3" x="438.793974" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="443.22235" y="215.462"/>
|
||||
<use xlink:href="#glyph0-31" x="387.939883" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="392.921183" y="215.462"/>
|
||||
<use xlink:href="#glyph0-17" x="397.349558" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="401.224014" y="215.462"/>
|
||||
<use xlink:href="#glyph0-21" x="406.205314" y="215.462"/>
|
||||
<use xlink:href="#glyph0-18" x="411.740534" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="414.508144" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-7" x="451.436514" y="215.462"/>
|
||||
<use xlink:href="#glyph0-6" x="454.204124" y="215.462"/>
|
||||
<use xlink:href="#glyph0-8" x="423.270251" y="215.462"/>
|
||||
<use xlink:href="#glyph0-16" x="427.200497" y="215.462"/>
|
||||
<use xlink:href="#glyph0-14" x="432.181797" y="215.462"/>
|
||||
<use xlink:href="#glyph0-3" x="437.717017" y="215.462"/>
|
||||
<use xlink:href="#glyph0-10" x="442.145393" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="463.535095" y="215.462"/>
|
||||
<use xlink:href="#glyph0-7" x="450.897537" y="215.462"/>
|
||||
<use xlink:href="#glyph0-6" x="453.665148" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-16" x="463.534099" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-21" x="149.709" y="227.417"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
@ -13,7 +13,7 @@
|
||||
\item add crushed tomatoes, carrots, and peas and let the sauce boil
|
||||
\item add herbs and spices
|
||||
\item create a béchamel sauce from milk, salt, and flour
|
||||
\item stack up béchamel sauuce, lasagna noodles and the vegetable sauce in a baking dish
|
||||
\item stack up béchamel sauce, lasagne noodles and the vegetable sauce in a baking dish
|
||||
\item top with slices of mozzarella cheese and bake
|
||||
\end{enumerate}
|
||||
|
||||
|
||||
@ -1,257 +1,254 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="181pt" height="108pt" viewBox="0 0 181 108" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="182pt" height="108pt" viewBox="0 0 182 108" version="1.1">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.421875 -2.5 C 4.421875 -3.5625 3.53125 -4.421875 2.5 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.5 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -0.5625 C 3.5625 -0.5625 4.421875 -1.453125 4.421875 -2.5 Z M 4.421875 -2.5 "/>
|
||||
<path style="stroke:none;" d="M 5.3125 -2.296875 C 5.3125 -3.09375 4.671875 -3.734375 3.875 -3.734375 C 3.09375 -3.734375 2.4375 -3.09375 2.4375 -2.296875 C 2.4375 -1.515625 3.09375 -0.875 3.875 -0.875 C 4.671875 -0.875 5.3125 -1.515625 5.3125 -2.296875 Z M 5.3125 -2.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 2.03125 -0.015625 C 2.03125 -0.640625 1.78125 -1.0625 1.390625 -1.0625 C 1.03125 -1.0625 0.859375 -0.78125 0.859375 -0.53125 C 0.859375 -0.265625 1.03125 0 1.390625 0 C 1.53125 0 1.671875 -0.0625 1.78125 -0.15625 C 1.796875 0.625 1.53125 1.234375 1.09375 1.703125 C 1.03125 1.765625 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.890625 1.0625 1.921875 1.109375 1.921875 C 1.234375 1.921875 2.03125 1.140625 2.03125 -0.015625 Z M 2.03125 -0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.765625 -3.984375 3.921875 -3.8125 3.921875 -3.5625 C 3.921875 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.875 L 1.75 -3.546875 C 1.703125 -3.65625 1.6875 -3.6875 1.6875 -3.734375 C 1.6875 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.5 0 L 2.25 0.59375 C 2.03125 1.140625 1.75 1.828125 1.109375 1.828125 C 1.0625 1.828125 0.828125 1.828125 0.640625 1.640625 C 0.953125 1.609375 1.03125 1.390625 1.03125 1.21875 C 1.03125 0.96875 0.84375 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.6875 0.609375 2.046875 1.109375 2.046875 C 1.734375 2.046875 2.140625 1.46875 2.375 0.90625 L 4.140625 -3.34375 C 4.390625 -3.984375 4.90625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<symbol overflow="visible" id="glyph0-21">
|
||||
<path style="stroke:none;" d="M 4 -1.859375 L 3.75 -1.859375 C 3.65625 -0.6875 3.453125 -0.25 2.296875 -0.25 L 1.109375 -0.25 L 3.890625 -4 C 3.984375 -4.109375 3.984375 -4.125 3.984375 -4.171875 C 3.984375 -4.296875 3.890625 -4.296875 3.71875 -4.296875 L 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.734375 -3.703125 0.921875 -4.078125 2.015625 -4.078125 L 3.15625 -4.078125 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.828125 0 Z M 4 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-21">
|
||||
<symbol overflow="visible" id="glyph0-22">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.578125 -0.3125 4.46875 -0.3125 4.46875 -0.75 L 4.46875 -6.921875 L 4.109375 -6.859375 C 4.078125 -6.859375 4.0625 -6.875 4.03125 -6.890625 C 3.703125 -7.03125 3.296875 -7.03125 3.1875 -7.03125 C 2.140625 -7.03125 1.0625 -6.46875 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.390625 -0.03125 L 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 L 3.8125 -3.984375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.046875 -0.3125 L 3.046875 0 L 4.140625 -0.03125 Z M 3.8125 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.34375 2.4375 -6.8125 3.1875 -6.8125 C 3.265625 -6.8125 3.53125 -6.8125 3.8125 -6.71875 C 3.734375 -6.671875 3.5625 -6.578125 3.5625 -6.3125 C 3.5625 -6.140625 3.65625 -5.984375 3.8125 -5.9375 Z M 3.8125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-22">
|
||||
<symbol overflow="visible" id="glyph0-23">
|
||||
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="7.871"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="9.709" y="7.871"/>
|
||||
<use xlink:href="#glyph1-2" x="12.47661" y="7.871"/>
|
||||
<use xlink:href="#glyph1-3" x="17.45791" y="7.871"/>
|
||||
<use xlink:href="#glyph1-2" x="21.388156" y="7.871"/>
|
||||
<use xlink:href="#glyph1-4" x="26.369456" y="7.871"/>
|
||||
<use xlink:href="#glyph1-5" x="31.350756" y="7.871"/>
|
||||
<use xlink:href="#glyph1-2" x="36.885977" y="7.871"/>
|
||||
<use xlink:href="#glyph0-2" x="10.709" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="13.47661" y="7.871"/>
|
||||
<use xlink:href="#glyph0-4" x="18.45791" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="22.388156" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="27.369456" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="32.350756" y="7.871"/>
|
||||
<use xlink:href="#glyph0-7" x="37.885977" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="45.184822" y="7.871"/>
|
||||
<use xlink:href="#glyph1-6" x="50.720043" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="45.631898" y="7.871"/>
|
||||
<use xlink:href="#glyph0-8" x="51.167119" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="55.980296" y="7.871"/>
|
||||
<use xlink:href="#glyph0-8" x="56.427371" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-7" x="61.240549" y="7.871"/>
|
||||
<use xlink:href="#glyph1-1" x="66.775769" y="7.871"/>
|
||||
<use xlink:href="#glyph1-8" x="69.543379" y="7.871"/>
|
||||
<use xlink:href="#glyph1-3" x="73.971755" y="7.871"/>
|
||||
<use xlink:href="#glyph0-9" x="61.687624" y="7.871"/>
|
||||
<use xlink:href="#glyph0-2" x="67.222845" y="7.871"/>
|
||||
<use xlink:href="#glyph0-7" x="69.990455" y="7.871"/>
|
||||
<use xlink:href="#glyph0-4" x="74.418831" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="27.796"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="27.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="9.709" y="27.796"/>
|
||||
<use xlink:href="#glyph1-10" x="14.137376" y="27.796"/>
|
||||
<use xlink:href="#glyph1-11" x="18.039726" y="27.796"/>
|
||||
<use xlink:href="#glyph1-3" x="23.574947" y="27.796"/>
|
||||
<use xlink:href="#glyph1-12" x="27.505192" y="27.796"/>
|
||||
<use xlink:href="#glyph1-8" x="33.040413" y="27.796"/>
|
||||
<use xlink:href="#glyph1-7" x="37.468789" y="27.796"/>
|
||||
<use xlink:href="#glyph0-10" x="10.709" y="27.796"/>
|
||||
<use xlink:href="#glyph0-11" x="15.137376" y="27.796"/>
|
||||
<use xlink:href="#glyph0-12" x="19.039726" y="27.796"/>
|
||||
<use xlink:href="#glyph0-4" x="24.574947" y="27.796"/>
|
||||
<use xlink:href="#glyph0-13" x="28.505192" y="27.796"/>
|
||||
<use xlink:href="#glyph0-7" x="34.040413" y="27.796"/>
|
||||
<use xlink:href="#glyph0-9" x="38.468789" y="27.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="46.321555" y="27.796"/>
|
||||
<use xlink:href="#glyph1-6" x="50.19601" y="27.796"/>
|
||||
<use xlink:href="#glyph1-14" x="55.17731" y="27.796"/>
|
||||
<use xlink:href="#glyph1-2" x="63.479145" y="27.796"/>
|
||||
<use xlink:href="#glyph1-13" x="68.460445" y="27.796"/>
|
||||
<use xlink:href="#glyph1-6" x="72.3349" y="27.796"/>
|
||||
<use xlink:href="#glyph0-14" x="47.321555" y="27.796"/>
|
||||
<use xlink:href="#glyph0-8" x="51.19601" y="27.796"/>
|
||||
<use xlink:href="#glyph0-15" x="56.17731" y="27.796"/>
|
||||
<use xlink:href="#glyph0-3" x="64.479145" y="27.796"/>
|
||||
<use xlink:href="#glyph0-14" x="69.460445" y="27.796"/>
|
||||
<use xlink:href="#glyph0-8" x="73.3349" y="27.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="77.595153" y="27.796"/>
|
||||
<use xlink:href="#glyph1-3" x="82.023528" y="27.796"/>
|
||||
<use xlink:href="#glyph1-15" x="85.953774" y="27.796"/>
|
||||
<use xlink:href="#glyph0-7" x="78.595153" y="27.796"/>
|
||||
<use xlink:href="#glyph0-4" x="83.023528" y="27.796"/>
|
||||
<use xlink:href="#glyph0-16" x="86.953774" y="27.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="92.03893" y="27.796"/>
|
||||
<use xlink:href="#glyph1-2" x="96.467306" y="27.796"/>
|
||||
<use xlink:href="#glyph1-10" x="101.448606" y="27.796"/>
|
||||
<use xlink:href="#glyph1-10" x="105.350956" y="27.796"/>
|
||||
<use xlink:href="#glyph1-6" x="109.253307" y="27.796"/>
|
||||
<use xlink:href="#glyph1-13" x="114.234607" y="27.796"/>
|
||||
<use xlink:href="#glyph1-3" x="118.109062" y="27.796"/>
|
||||
<use xlink:href="#glyph1-15" x="122.039308" y="27.796"/>
|
||||
<use xlink:href="#glyph0-10" x="93.03893" y="27.796"/>
|
||||
<use xlink:href="#glyph0-3" x="97.467306" y="27.796"/>
|
||||
<use xlink:href="#glyph0-11" x="102.448606" y="27.796"/>
|
||||
<use xlink:href="#glyph0-11" x="106.350956" y="27.796"/>
|
||||
<use xlink:href="#glyph0-8" x="110.253307" y="27.796"/>
|
||||
<use xlink:href="#glyph0-14" x="115.234607" y="27.796"/>
|
||||
<use xlink:href="#glyph0-4" x="119.109062" y="27.796"/>
|
||||
<use xlink:href="#glyph0-16" x="123.039308" y="27.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="128.124464" y="27.796"/>
|
||||
<use xlink:href="#glyph0-17" x="129.124464" y="27.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="133.938637" y="27.796"/>
|
||||
<use xlink:href="#glyph1-2" x="138.367013" y="27.796"/>
|
||||
<use xlink:href="#glyph1-3" x="143.348313" y="27.796"/>
|
||||
<use xlink:href="#glyph1-15" x="147.278558" y="27.796"/>
|
||||
<use xlink:href="#glyph0-7" x="134.938637" y="27.796"/>
|
||||
<use xlink:href="#glyph0-3" x="139.367013" y="27.796"/>
|
||||
<use xlink:href="#glyph0-4" x="144.348313" y="27.796"/>
|
||||
<use xlink:href="#glyph0-16" x="148.278558" y="27.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="153.363714" y="27.796"/>
|
||||
<use xlink:href="#glyph1-5" x="158.345014" y="27.796"/>
|
||||
<use xlink:href="#glyph1-17" x="163.880235" y="27.796"/>
|
||||
<use xlink:href="#glyph1-6" x="166.647845" y="27.796"/>
|
||||
<use xlink:href="#glyph1-5" x="171.629145" y="27.796"/>
|
||||
<use xlink:href="#glyph1-3" x="177.164366" y="27.796"/>
|
||||
<use xlink:href="#glyph0-8" x="154.363714" y="27.796"/>
|
||||
<use xlink:href="#glyph0-6" x="159.345014" y="27.796"/>
|
||||
<use xlink:href="#glyph0-18" x="164.880235" y="27.796"/>
|
||||
<use xlink:href="#glyph0-8" x="167.647845" y="27.796"/>
|
||||
<use xlink:href="#glyph0-6" x="172.629145" y="27.796"/>
|
||||
<use xlink:href="#glyph0-4" x="178.164366" y="27.796"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="47.722"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="47.722"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="9.709" y="47.722"/>
|
||||
<use xlink:href="#glyph1-10" x="14.6903" y="47.722"/>
|
||||
<use xlink:href="#glyph1-8" x="18.59265" y="47.722"/>
|
||||
<use xlink:href="#glyph1-4" x="23.021026" y="47.722"/>
|
||||
<use xlink:href="#glyph1-2" x="28.002326" y="47.722"/>
|
||||
<use xlink:href="#glyph1-5" x="32.983626" y="47.722"/>
|
||||
<use xlink:href="#glyph1-6" x="38.518847" y="47.722"/>
|
||||
<use xlink:href="#glyph1-15" x="43.500147" y="47.722"/>
|
||||
<use xlink:href="#glyph0-8" x="10.709" y="47.722"/>
|
||||
<use xlink:href="#glyph0-11" x="15.6903" y="47.722"/>
|
||||
<use xlink:href="#glyph0-7" x="19.59265" y="47.722"/>
|
||||
<use xlink:href="#glyph0-5" x="24.021026" y="47.722"/>
|
||||
<use xlink:href="#glyph0-3" x="29.002326" y="47.722"/>
|
||||
<use xlink:href="#glyph0-6" x="33.983626" y="47.722"/>
|
||||
<use xlink:href="#glyph0-8" x="39.518847" y="47.722"/>
|
||||
<use xlink:href="#glyph0-16" x="44.500147" y="47.722"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="49.585303" y="47.722"/>
|
||||
<use xlink:href="#glyph1-2" x="55.120523" y="47.722"/>
|
||||
<use xlink:href="#glyph1-3" x="60.101823" y="47.722"/>
|
||||
<use xlink:href="#glyph1-17" x="64.032069" y="47.722"/>
|
||||
<use xlink:href="#glyph1-1" x="66.799679" y="47.722"/>
|
||||
<use xlink:href="#glyph1-15" x="69.56729" y="47.722"/>
|
||||
<use xlink:href="#glyph0-19" x="50.585303" y="47.722"/>
|
||||
<use xlink:href="#glyph0-3" x="56.120523" y="47.722"/>
|
||||
<use xlink:href="#glyph0-4" x="61.101823" y="47.722"/>
|
||||
<use xlink:href="#glyph0-18" x="65.032069" y="47.722"/>
|
||||
<use xlink:href="#glyph0-2" x="67.799679" y="47.722"/>
|
||||
<use xlink:href="#glyph0-16" x="70.56729" y="47.722"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="75.652446" y="47.722"/>
|
||||
<use xlink:href="#glyph1-6" x="79.554796" y="47.722"/>
|
||||
<use xlink:href="#glyph1-3" x="84.536096" y="47.722"/>
|
||||
<use xlink:href="#glyph1-8" x="88.466342" y="47.722"/>
|
||||
<use xlink:href="#glyph1-14" x="92.894717" y="47.722"/>
|
||||
<use xlink:href="#glyph1-2" x="101.196552" y="47.722"/>
|
||||
<use xlink:href="#glyph1-10" x="106.177852" y="47.722"/>
|
||||
<use xlink:href="#glyph1-19" x="110.080202" y="47.722"/>
|
||||
<use xlink:href="#glyph0-11" x="76.652446" y="47.722"/>
|
||||
<use xlink:href="#glyph0-8" x="80.554796" y="47.722"/>
|
||||
<use xlink:href="#glyph0-4" x="85.536096" y="47.722"/>
|
||||
<use xlink:href="#glyph0-7" x="89.466342" y="47.722"/>
|
||||
<use xlink:href="#glyph0-15" x="93.894717" y="47.722"/>
|
||||
<use xlink:href="#glyph0-3" x="102.196552" y="47.722"/>
|
||||
<use xlink:href="#glyph0-11" x="107.177852" y="47.722"/>
|
||||
<use xlink:href="#glyph0-20" x="111.080202" y="47.722"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="114.511567" y="47.722"/>
|
||||
<use xlink:href="#glyph0-16" x="115.511567" y="47.722"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="120.596723" y="47.722"/>
|
||||
<use xlink:href="#glyph1-2" x="124.526969" y="47.722"/>
|
||||
<use xlink:href="#glyph1-1" x="129.508269" y="47.722"/>
|
||||
<use xlink:href="#glyph1-13" x="132.275879" y="47.722"/>
|
||||
<use xlink:href="#glyph1-15" x="136.150334" y="47.722"/>
|
||||
<use xlink:href="#glyph0-4" x="121.596723" y="47.722"/>
|
||||
<use xlink:href="#glyph0-3" x="125.526969" y="47.722"/>
|
||||
<use xlink:href="#glyph0-2" x="130.508269" y="47.722"/>
|
||||
<use xlink:href="#glyph0-14" x="133.275879" y="47.722"/>
|
||||
<use xlink:href="#glyph0-16" x="137.150334" y="47.722"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="142.23549" y="47.722"/>
|
||||
<use xlink:href="#glyph0-17" x="143.23549" y="47.722"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="148.049664" y="47.722"/>
|
||||
<use xlink:href="#glyph1-16" x="152.478039" y="47.722"/>
|
||||
<use xlink:href="#glyph1-16" x="158.01326" y="47.722"/>
|
||||
<use xlink:href="#glyph0-7" x="149.049664" y="47.722"/>
|
||||
<use xlink:href="#glyph0-17" x="153.478039" y="47.722"/>
|
||||
<use xlink:href="#glyph0-17" x="159.01326" y="47.722"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="163.827433" y="47.722"/>
|
||||
<use xlink:href="#glyph1-10" x="168.255809" y="47.722"/>
|
||||
<use xlink:href="#glyph0-7" x="164.827433" y="47.722"/>
|
||||
<use xlink:href="#glyph0-11" x="169.255809" y="47.722"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="67.647"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="67.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="9.709" y="67.647"/>
|
||||
<use xlink:href="#glyph1-6" x="18.010835" y="67.647"/>
|
||||
<use xlink:href="#glyph1-20" x="22.992135" y="67.647"/>
|
||||
<use xlink:href="#glyph1-20" x="27.42051" y="67.647"/>
|
||||
<use xlink:href="#glyph1-2" x="31.848886" y="67.647"/>
|
||||
<use xlink:href="#glyph1-10" x="36.830186" y="67.647"/>
|
||||
<use xlink:href="#glyph1-8" x="40.732536" y="67.647"/>
|
||||
<use xlink:href="#glyph1-1" x="45.160912" y="67.647"/>
|
||||
<use xlink:href="#glyph1-1" x="47.928522" y="67.647"/>
|
||||
<use xlink:href="#glyph1-2" x="50.696133" y="67.647"/>
|
||||
<use xlink:href="#glyph0-15" x="10.709" y="67.647"/>
|
||||
<use xlink:href="#glyph0-8" x="19.010835" y="67.647"/>
|
||||
<use xlink:href="#glyph0-21" x="23.992135" y="67.647"/>
|
||||
<use xlink:href="#glyph0-21" x="28.42051" y="67.647"/>
|
||||
<use xlink:href="#glyph0-3" x="32.848886" y="67.647"/>
|
||||
<use xlink:href="#glyph0-11" x="37.830186" y="67.647"/>
|
||||
<use xlink:href="#glyph0-7" x="41.732536" y="67.647"/>
|
||||
<use xlink:href="#glyph0-2" x="46.160912" y="67.647"/>
|
||||
<use xlink:href="#glyph0-2" x="48.928522" y="67.647"/>
|
||||
<use xlink:href="#glyph0-3" x="51.696133" y="67.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="58.994978" y="67.647"/>
|
||||
<use xlink:href="#glyph0-10" x="59.994978" y="67.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="63.144401" y="67.647"/>
|
||||
<use xlink:href="#glyph1-8" x="68.679622" y="67.647"/>
|
||||
<use xlink:href="#glyph1-8" x="73.107998" y="67.647"/>
|
||||
<use xlink:href="#glyph1-3" x="77.536373" y="67.647"/>
|
||||
<use xlink:href="#glyph1-8" x="81.466619" y="67.647"/>
|
||||
<use xlink:href="#glyph0-13" x="64.144401" y="67.647"/>
|
||||
<use xlink:href="#glyph0-7" x="69.679622" y="67.647"/>
|
||||
<use xlink:href="#glyph0-7" x="74.107998" y="67.647"/>
|
||||
<use xlink:href="#glyph0-4" x="78.536373" y="67.647"/>
|
||||
<use xlink:href="#glyph0-7" x="82.466619" y="67.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="87.572"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-21" x="9.709" y="87.572"/>
|
||||
<use xlink:href="#glyph1-6" x="15.244221" y="87.572"/>
|
||||
<use xlink:href="#glyph1-11" x="20.225521" y="87.572"/>
|
||||
<use xlink:href="#glyph1-10" x="25.760741" y="87.572"/>
|
||||
<use xlink:href="#glyph0-22" x="10.709" y="87.572"/>
|
||||
<use xlink:href="#glyph0-8" x="16.244221" y="87.572"/>
|
||||
<use xlink:href="#glyph0-12" x="21.225521" y="87.572"/>
|
||||
<use xlink:href="#glyph0-11" x="26.760741" y="87.572"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="107.498"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="107.498"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="9.709" y="107.498"/>
|
||||
<use xlink:href="#glyph1-17" x="18.010835" y="107.498"/>
|
||||
<use xlink:href="#glyph1-1" x="20.778445" y="107.498"/>
|
||||
<use xlink:href="#glyph1-22" x="23.546055" y="107.498"/>
|
||||
<use xlink:href="#glyph0-15" x="10.709" y="107.498"/>
|
||||
<use xlink:href="#glyph0-18" x="19.010835" y="107.498"/>
|
||||
<use xlink:href="#glyph0-2" x="21.778445" y="107.498"/>
|
||||
<use xlink:href="#glyph0-23" x="24.546055" y="107.498"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
@ -6,252 +6,249 @@
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.421875 -2.5 C 4.421875 -3.5625 3.53125 -4.421875 2.5 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.5 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -0.5625 C 3.5625 -0.5625 4.421875 -1.453125 4.421875 -2.5 Z M 4.421875 -2.5 "/>
|
||||
<path style="stroke:none;" d="M 5.3125 -2.296875 C 5.3125 -3.09375 4.671875 -3.734375 3.875 -3.734375 C 3.09375 -3.734375 2.4375 -3.09375 2.4375 -2.296875 C 2.4375 -1.515625 3.09375 -0.875 3.875 -0.875 C 4.671875 -0.875 5.3125 -1.515625 5.3125 -2.296875 Z M 5.3125 -2.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 2.03125 -0.015625 C 2.03125 -0.640625 1.78125 -1.0625 1.390625 -1.0625 C 1.03125 -1.0625 0.859375 -0.78125 0.859375 -0.53125 C 0.859375 -0.265625 1.03125 0 1.390625 0 C 1.53125 0 1.671875 -0.0625 1.78125 -0.15625 C 1.796875 0.625 1.53125 1.234375 1.09375 1.703125 C 1.03125 1.765625 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.890625 1.0625 1.921875 1.109375 1.921875 C 1.234375 1.921875 2.03125 1.140625 2.03125 -0.015625 Z M 2.03125 -0.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.765625 -3.984375 3.921875 -3.8125 3.921875 -3.5625 C 3.921875 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.875 L 1.75 -3.546875 C 1.703125 -3.65625 1.6875 -3.6875 1.6875 -3.734375 C 1.6875 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.5 0 L 2.25 0.59375 C 2.03125 1.140625 1.75 1.828125 1.109375 1.828125 C 1.0625 1.828125 0.828125 1.828125 0.640625 1.640625 C 0.953125 1.609375 1.03125 1.390625 1.03125 1.21875 C 1.03125 0.96875 0.84375 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.6875 0.609375 2.046875 1.109375 2.046875 C 1.734375 2.046875 2.140625 1.46875 2.375 0.90625 L 4.140625 -3.34375 C 4.390625 -3.984375 4.90625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<symbol overflow="visible" id="glyph0-21">
|
||||
<path style="stroke:none;" d="M 4 -1.859375 L 3.75 -1.859375 C 3.65625 -0.6875 3.453125 -0.25 2.296875 -0.25 L 1.109375 -0.25 L 3.890625 -4 C 3.984375 -4.109375 3.984375 -4.125 3.984375 -4.171875 C 3.984375 -4.296875 3.890625 -4.296875 3.71875 -4.296875 L 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.734375 -3.703125 0.921875 -4.078125 2.015625 -4.078125 L 3.15625 -4.078125 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.828125 0 Z M 4 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-21">
|
||||
<symbol overflow="visible" id="glyph0-22">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.578125 -0.3125 4.46875 -0.3125 4.46875 -0.75 L 4.46875 -6.921875 L 4.109375 -6.859375 C 4.078125 -6.859375 4.0625 -6.875 4.03125 -6.890625 C 3.703125 -7.03125 3.296875 -7.03125 3.1875 -7.03125 C 2.140625 -7.03125 1.0625 -6.46875 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.390625 -0.03125 L 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 L 3.8125 -3.984375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.046875 -0.3125 L 3.046875 0 L 4.140625 -0.03125 Z M 3.8125 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.34375 2.4375 -6.8125 3.1875 -6.8125 C 3.265625 -6.8125 3.53125 -6.8125 3.8125 -6.71875 C 3.734375 -6.671875 3.5625 -6.578125 3.5625 -6.3125 C 3.5625 -6.140625 3.65625 -5.984375 3.8125 -5.9375 Z M 3.8125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-22">
|
||||
<symbol overflow="visible" id="glyph0-23">
|
||||
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="135.761"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="149.709" y="135.761"/>
|
||||
<use xlink:href="#glyph1-2" x="152.47661" y="135.761"/>
|
||||
<use xlink:href="#glyph1-3" x="157.45791" y="135.761"/>
|
||||
<use xlink:href="#glyph1-2" x="161.388156" y="135.761"/>
|
||||
<use xlink:href="#glyph1-4" x="166.369456" y="135.761"/>
|
||||
<use xlink:href="#glyph1-5" x="171.350756" y="135.761"/>
|
||||
<use xlink:href="#glyph1-2" x="176.885977" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="149.709" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="152.47661" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="157.45791" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="161.388156" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="166.369456" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="171.350756" y="135.761"/>
|
||||
<use xlink:href="#glyph0-7" x="176.885977" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="185.184822" y="135.761"/>
|
||||
<use xlink:href="#glyph1-6" x="190.720043" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="184.631898" y="135.761"/>
|
||||
<use xlink:href="#glyph0-8" x="190.167119" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="195.980296" y="135.761"/>
|
||||
<use xlink:href="#glyph0-8" x="195.427371" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-7" x="201.240549" y="135.761"/>
|
||||
<use xlink:href="#glyph1-1" x="206.775769" y="135.761"/>
|
||||
<use xlink:href="#glyph1-8" x="209.543379" y="135.761"/>
|
||||
<use xlink:href="#glyph1-3" x="213.971755" y="135.761"/>
|
||||
<use xlink:href="#glyph0-9" x="200.687624" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="206.222845" y="135.761"/>
|
||||
<use xlink:href="#glyph0-7" x="208.990455" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="213.418831" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="155.686"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="155.686"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="149.709" y="155.686"/>
|
||||
<use xlink:href="#glyph1-10" x="154.137376" y="155.686"/>
|
||||
<use xlink:href="#glyph1-11" x="158.039726" y="155.686"/>
|
||||
<use xlink:href="#glyph1-3" x="163.574947" y="155.686"/>
|
||||
<use xlink:href="#glyph1-12" x="167.505192" y="155.686"/>
|
||||
<use xlink:href="#glyph1-8" x="173.040413" y="155.686"/>
|
||||
<use xlink:href="#glyph1-7" x="177.468789" y="155.686"/>
|
||||
<use xlink:href="#glyph0-10" x="149.709" y="155.686"/>
|
||||
<use xlink:href="#glyph0-11" x="154.137376" y="155.686"/>
|
||||
<use xlink:href="#glyph0-12" x="158.039726" y="155.686"/>
|
||||
<use xlink:href="#glyph0-4" x="163.574947" y="155.686"/>
|
||||
<use xlink:href="#glyph0-13" x="167.505192" y="155.686"/>
|
||||
<use xlink:href="#glyph0-7" x="173.040413" y="155.686"/>
|
||||
<use xlink:href="#glyph0-9" x="177.468789" y="155.686"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="186.321555" y="155.686"/>
|
||||
<use xlink:href="#glyph1-6" x="190.19601" y="155.686"/>
|
||||
<use xlink:href="#glyph1-14" x="195.17731" y="155.686"/>
|
||||
<use xlink:href="#glyph1-2" x="203.479145" y="155.686"/>
|
||||
<use xlink:href="#glyph1-13" x="208.460445" y="155.686"/>
|
||||
<use xlink:href="#glyph1-6" x="212.3349" y="155.686"/>
|
||||
<use xlink:href="#glyph0-14" x="186.321555" y="155.686"/>
|
||||
<use xlink:href="#glyph0-8" x="190.19601" y="155.686"/>
|
||||
<use xlink:href="#glyph0-15" x="195.17731" y="155.686"/>
|
||||
<use xlink:href="#glyph0-3" x="203.479145" y="155.686"/>
|
||||
<use xlink:href="#glyph0-14" x="208.460445" y="155.686"/>
|
||||
<use xlink:href="#glyph0-8" x="212.3349" y="155.686"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="217.595153" y="155.686"/>
|
||||
<use xlink:href="#glyph1-3" x="222.023528" y="155.686"/>
|
||||
<use xlink:href="#glyph1-15" x="225.953774" y="155.686"/>
|
||||
<use xlink:href="#glyph0-7" x="217.595153" y="155.686"/>
|
||||
<use xlink:href="#glyph0-4" x="222.023528" y="155.686"/>
|
||||
<use xlink:href="#glyph0-16" x="225.953774" y="155.686"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="232.03893" y="155.686"/>
|
||||
<use xlink:href="#glyph1-2" x="236.467306" y="155.686"/>
|
||||
<use xlink:href="#glyph1-10" x="241.448606" y="155.686"/>
|
||||
<use xlink:href="#glyph1-10" x="245.350956" y="155.686"/>
|
||||
<use xlink:href="#glyph1-6" x="249.253307" y="155.686"/>
|
||||
<use xlink:href="#glyph1-13" x="254.234607" y="155.686"/>
|
||||
<use xlink:href="#glyph1-3" x="258.109062" y="155.686"/>
|
||||
<use xlink:href="#glyph1-15" x="262.039308" y="155.686"/>
|
||||
<use xlink:href="#glyph0-10" x="232.03893" y="155.686"/>
|
||||
<use xlink:href="#glyph0-3" x="236.467306" y="155.686"/>
|
||||
<use xlink:href="#glyph0-11" x="241.448606" y="155.686"/>
|
||||
<use xlink:href="#glyph0-11" x="245.350956" y="155.686"/>
|
||||
<use xlink:href="#glyph0-8" x="249.253307" y="155.686"/>
|
||||
<use xlink:href="#glyph0-14" x="254.234607" y="155.686"/>
|
||||
<use xlink:href="#glyph0-4" x="258.109062" y="155.686"/>
|
||||
<use xlink:href="#glyph0-16" x="262.039308" y="155.686"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="268.124464" y="155.686"/>
|
||||
<use xlink:href="#glyph0-17" x="268.124464" y="155.686"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="273.938637" y="155.686"/>
|
||||
<use xlink:href="#glyph1-2" x="278.367013" y="155.686"/>
|
||||
<use xlink:href="#glyph1-3" x="283.348313" y="155.686"/>
|
||||
<use xlink:href="#glyph1-15" x="287.278558" y="155.686"/>
|
||||
<use xlink:href="#glyph0-7" x="273.938637" y="155.686"/>
|
||||
<use xlink:href="#glyph0-3" x="278.367013" y="155.686"/>
|
||||
<use xlink:href="#glyph0-4" x="283.348313" y="155.686"/>
|
||||
<use xlink:href="#glyph0-16" x="287.278558" y="155.686"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="293.363714" y="155.686"/>
|
||||
<use xlink:href="#glyph1-5" x="298.345014" y="155.686"/>
|
||||
<use xlink:href="#glyph1-17" x="303.880235" y="155.686"/>
|
||||
<use xlink:href="#glyph1-6" x="306.647845" y="155.686"/>
|
||||
<use xlink:href="#glyph1-5" x="311.629145" y="155.686"/>
|
||||
<use xlink:href="#glyph1-3" x="317.164366" y="155.686"/>
|
||||
<use xlink:href="#glyph0-8" x="293.363714" y="155.686"/>
|
||||
<use xlink:href="#glyph0-6" x="298.345014" y="155.686"/>
|
||||
<use xlink:href="#glyph0-18" x="303.880235" y="155.686"/>
|
||||
<use xlink:href="#glyph0-8" x="306.647845" y="155.686"/>
|
||||
<use xlink:href="#glyph0-6" x="311.629145" y="155.686"/>
|
||||
<use xlink:href="#glyph0-4" x="317.164366" y="155.686"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="175.612"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="175.612"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="149.709" y="175.612"/>
|
||||
<use xlink:href="#glyph1-10" x="154.6903" y="175.612"/>
|
||||
<use xlink:href="#glyph1-8" x="158.59265" y="175.612"/>
|
||||
<use xlink:href="#glyph1-4" x="163.021026" y="175.612"/>
|
||||
<use xlink:href="#glyph1-2" x="168.002326" y="175.612"/>
|
||||
<use xlink:href="#glyph1-5" x="172.983626" y="175.612"/>
|
||||
<use xlink:href="#glyph1-6" x="178.518847" y="175.612"/>
|
||||
<use xlink:href="#glyph1-15" x="183.500147" y="175.612"/>
|
||||
<use xlink:href="#glyph0-8" x="149.709" y="175.612"/>
|
||||
<use xlink:href="#glyph0-11" x="154.6903" y="175.612"/>
|
||||
<use xlink:href="#glyph0-7" x="158.59265" y="175.612"/>
|
||||
<use xlink:href="#glyph0-5" x="163.021026" y="175.612"/>
|
||||
<use xlink:href="#glyph0-3" x="168.002326" y="175.612"/>
|
||||
<use xlink:href="#glyph0-6" x="172.983626" y="175.612"/>
|
||||
<use xlink:href="#glyph0-8" x="178.518847" y="175.612"/>
|
||||
<use xlink:href="#glyph0-16" x="183.500147" y="175.612"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="189.585303" y="175.612"/>
|
||||
<use xlink:href="#glyph1-2" x="195.120523" y="175.612"/>
|
||||
<use xlink:href="#glyph1-3" x="200.101823" y="175.612"/>
|
||||
<use xlink:href="#glyph1-17" x="204.032069" y="175.612"/>
|
||||
<use xlink:href="#glyph1-1" x="206.799679" y="175.612"/>
|
||||
<use xlink:href="#glyph1-15" x="209.56729" y="175.612"/>
|
||||
<use xlink:href="#glyph0-19" x="189.585303" y="175.612"/>
|
||||
<use xlink:href="#glyph0-3" x="195.120523" y="175.612"/>
|
||||
<use xlink:href="#glyph0-4" x="200.101823" y="175.612"/>
|
||||
<use xlink:href="#glyph0-18" x="204.032069" y="175.612"/>
|
||||
<use xlink:href="#glyph0-2" x="206.799679" y="175.612"/>
|
||||
<use xlink:href="#glyph0-16" x="209.56729" y="175.612"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-10" x="215.652446" y="175.612"/>
|
||||
<use xlink:href="#glyph1-6" x="219.554796" y="175.612"/>
|
||||
<use xlink:href="#glyph1-3" x="224.536096" y="175.612"/>
|
||||
<use xlink:href="#glyph1-8" x="228.466342" y="175.612"/>
|
||||
<use xlink:href="#glyph1-14" x="232.894717" y="175.612"/>
|
||||
<use xlink:href="#glyph1-2" x="241.196552" y="175.612"/>
|
||||
<use xlink:href="#glyph1-10" x="246.177852" y="175.612"/>
|
||||
<use xlink:href="#glyph1-19" x="250.080202" y="175.612"/>
|
||||
<use xlink:href="#glyph0-11" x="215.652446" y="175.612"/>
|
||||
<use xlink:href="#glyph0-8" x="219.554796" y="175.612"/>
|
||||
<use xlink:href="#glyph0-4" x="224.536096" y="175.612"/>
|
||||
<use xlink:href="#glyph0-7" x="228.466342" y="175.612"/>
|
||||
<use xlink:href="#glyph0-15" x="232.894717" y="175.612"/>
|
||||
<use xlink:href="#glyph0-3" x="241.196552" y="175.612"/>
|
||||
<use xlink:href="#glyph0-11" x="246.177852" y="175.612"/>
|
||||
<use xlink:href="#glyph0-20" x="250.080202" y="175.612"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="254.511567" y="175.612"/>
|
||||
<use xlink:href="#glyph0-16" x="254.511567" y="175.612"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="260.596723" y="175.612"/>
|
||||
<use xlink:href="#glyph1-2" x="264.526969" y="175.612"/>
|
||||
<use xlink:href="#glyph1-1" x="269.508269" y="175.612"/>
|
||||
<use xlink:href="#glyph1-13" x="272.275879" y="175.612"/>
|
||||
<use xlink:href="#glyph1-15" x="276.150334" y="175.612"/>
|
||||
<use xlink:href="#glyph0-4" x="260.596723" y="175.612"/>
|
||||
<use xlink:href="#glyph0-3" x="264.526969" y="175.612"/>
|
||||
<use xlink:href="#glyph0-2" x="269.508269" y="175.612"/>
|
||||
<use xlink:href="#glyph0-14" x="272.275879" y="175.612"/>
|
||||
<use xlink:href="#glyph0-16" x="276.150334" y="175.612"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="282.23549" y="175.612"/>
|
||||
<use xlink:href="#glyph0-17" x="282.23549" y="175.612"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="288.049664" y="175.612"/>
|
||||
<use xlink:href="#glyph1-16" x="292.478039" y="175.612"/>
|
||||
<use xlink:href="#glyph1-16" x="298.01326" y="175.612"/>
|
||||
<use xlink:href="#glyph0-7" x="288.049664" y="175.612"/>
|
||||
<use xlink:href="#glyph0-17" x="292.478039" y="175.612"/>
|
||||
<use xlink:href="#glyph0-17" x="298.01326" y="175.612"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="303.827433" y="175.612"/>
|
||||
<use xlink:href="#glyph1-10" x="308.255809" y="175.612"/>
|
||||
<use xlink:href="#glyph0-7" x="303.827433" y="175.612"/>
|
||||
<use xlink:href="#glyph0-11" x="308.255809" y="175.612"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="195.537"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="195.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="149.709" y="195.537"/>
|
||||
<use xlink:href="#glyph1-6" x="158.010835" y="195.537"/>
|
||||
<use xlink:href="#glyph1-20" x="162.992135" y="195.537"/>
|
||||
<use xlink:href="#glyph1-20" x="167.42051" y="195.537"/>
|
||||
<use xlink:href="#glyph1-2" x="171.848886" y="195.537"/>
|
||||
<use xlink:href="#glyph1-10" x="176.830186" y="195.537"/>
|
||||
<use xlink:href="#glyph1-8" x="180.732536" y="195.537"/>
|
||||
<use xlink:href="#glyph1-1" x="185.160912" y="195.537"/>
|
||||
<use xlink:href="#glyph1-1" x="187.928522" y="195.537"/>
|
||||
<use xlink:href="#glyph1-2" x="190.696133" y="195.537"/>
|
||||
<use xlink:href="#glyph0-15" x="149.709" y="195.537"/>
|
||||
<use xlink:href="#glyph0-8" x="158.010835" y="195.537"/>
|
||||
<use xlink:href="#glyph0-21" x="162.992135" y="195.537"/>
|
||||
<use xlink:href="#glyph0-21" x="167.42051" y="195.537"/>
|
||||
<use xlink:href="#glyph0-3" x="171.848886" y="195.537"/>
|
||||
<use xlink:href="#glyph0-11" x="176.830186" y="195.537"/>
|
||||
<use xlink:href="#glyph0-7" x="180.732536" y="195.537"/>
|
||||
<use xlink:href="#glyph0-2" x="185.160912" y="195.537"/>
|
||||
<use xlink:href="#glyph0-2" x="187.928522" y="195.537"/>
|
||||
<use xlink:href="#glyph0-3" x="190.696133" y="195.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="198.994978" y="195.537"/>
|
||||
<use xlink:href="#glyph0-10" x="198.994978" y="195.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="203.144401" y="195.537"/>
|
||||
<use xlink:href="#glyph1-8" x="208.679622" y="195.537"/>
|
||||
<use xlink:href="#glyph1-8" x="213.107998" y="195.537"/>
|
||||
<use xlink:href="#glyph1-3" x="217.536373" y="195.537"/>
|
||||
<use xlink:href="#glyph1-8" x="221.466619" y="195.537"/>
|
||||
<use xlink:href="#glyph0-13" x="203.144401" y="195.537"/>
|
||||
<use xlink:href="#glyph0-7" x="208.679622" y="195.537"/>
|
||||
<use xlink:href="#glyph0-7" x="213.107998" y="195.537"/>
|
||||
<use xlink:href="#glyph0-4" x="217.536373" y="195.537"/>
|
||||
<use xlink:href="#glyph0-7" x="221.466619" y="195.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="215.462"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-21" x="149.709" y="215.462"/>
|
||||
<use xlink:href="#glyph1-6" x="155.244221" y="215.462"/>
|
||||
<use xlink:href="#glyph1-11" x="160.225521" y="215.462"/>
|
||||
<use xlink:href="#glyph1-10" x="165.760741" y="215.462"/>
|
||||
<use xlink:href="#glyph0-22" x="149.709" y="215.462"/>
|
||||
<use xlink:href="#glyph0-8" x="155.244221" y="215.462"/>
|
||||
<use xlink:href="#glyph0-12" x="160.225521" y="215.462"/>
|
||||
<use xlink:href="#glyph0-11" x="165.760741" y="215.462"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="235.388"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="235.388"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="149.709" y="235.388"/>
|
||||
<use xlink:href="#glyph1-17" x="158.010835" y="235.388"/>
|
||||
<use xlink:href="#glyph1-1" x="160.778445" y="235.388"/>
|
||||
<use xlink:href="#glyph1-22" x="163.546055" y="235.388"/>
|
||||
<use xlink:href="#glyph0-15" x="149.709" y="235.388"/>
|
||||
<use xlink:href="#glyph0-18" x="158.010835" y="235.388"/>
|
||||
<use xlink:href="#glyph0-2" x="160.778445" y="235.388"/>
|
||||
<use xlink:href="#glyph0-23" x="163.546055" y="235.388"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
@ -9,7 +9,7 @@
|
||||
\thispagestyle{empty}
|
||||
|
||||
\begin{itemize}
|
||||
\item lasagna noodles
|
||||
\item lasagne noodles
|
||||
\item crushed tomatoes, carrots, peas, onions
|
||||
\item oregano, basil, rosemary, salt, pepper
|
||||
\item mozzarella cheese
|
||||
|
||||
@ -1,317 +1,314 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="108pt" height="178pt" viewBox="0 0 108 178" version="1.1">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="109pt" height="178pt" viewBox="0 0 109 178" version="1.1">
|
||||
<defs>
|
||||
<g>
|
||||
<symbol overflow="visible" id="glyph0-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.421875 -2.5 C 4.421875 -3.5625 3.53125 -4.421875 2.5 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.5 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -0.5625 C 3.5625 -0.5625 4.421875 -1.453125 4.421875 -2.5 Z M 4.421875 -2.5 "/>
|
||||
<path style="stroke:none;" d="M 5.3125 -2.296875 C 5.3125 -3.09375 4.671875 -3.734375 3.875 -3.734375 C 3.09375 -3.734375 2.4375 -3.09375 2.4375 -2.296875 C 2.4375 -1.515625 3.09375 -0.875 3.875 -0.875 C 4.671875 -0.875 5.3125 -1.515625 5.3125 -2.296875 Z M 5.3125 -2.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 4 -1.859375 L 3.75 -1.859375 C 3.65625 -0.6875 3.453125 -0.25 2.296875 -0.25 L 1.109375 -0.25 L 3.890625 -4 C 3.984375 -4.109375 3.984375 -4.125 3.984375 -4.171875 C 3.984375 -4.296875 3.890625 -4.296875 3.71875 -4.296875 L 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.734375 -3.703125 0.921875 -4.078125 2.015625 -4.078125 L 3.15625 -4.078125 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.828125 0 Z M 4 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.8125 -3.984375 3.921875 -3.75 3.921875 -3.5625 C 3.921875 -3.46875 3.90625 -3.421875 3.875 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.5625 C 1.671875 -3.6875 1.671875 -3.734375 1.671875 -3.734375 C 1.671875 -3.984375 2.0625 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.625 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.765625 0.109375 2.796875 0.015625 2.84375 -0.078125 L 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-21">
|
||||
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-22">
|
||||
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-23">
|
||||
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-24">
|
||||
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-25">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.765625 -3.984375 3.921875 -3.8125 3.921875 -3.5625 C 3.921875 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.875 L 1.75 -3.546875 C 1.703125 -3.65625 1.6875 -3.6875 1.6875 -3.734375 C 1.6875 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.5 0 L 2.25 0.59375 C 2.03125 1.140625 1.75 1.828125 1.109375 1.828125 C 1.0625 1.828125 0.828125 1.828125 0.640625 1.640625 C 0.953125 1.609375 1.03125 1.390625 1.03125 1.21875 C 1.03125 0.96875 0.84375 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.6875 0.609375 2.046875 1.109375 2.046875 C 1.734375 2.046875 2.140625 1.46875 2.375 0.90625 L 4.140625 -3.34375 C 4.390625 -3.984375 4.90625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-26">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.578125 -0.3125 4.46875 -0.3125 4.46875 -0.75 L 4.46875 -6.921875 L 4.109375 -6.859375 C 4.078125 -6.859375 4.0625 -6.875 4.03125 -6.890625 C 3.703125 -7.03125 3.296875 -7.03125 3.1875 -7.03125 C 2.140625 -7.03125 1.0625 -6.46875 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.390625 -0.03125 L 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 L 3.8125 -3.984375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.046875 -0.3125 L 3.046875 0 L 4.140625 -0.03125 Z M 3.8125 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.34375 2.4375 -6.8125 3.1875 -6.8125 C 3.265625 -6.8125 3.53125 -6.8125 3.8125 -6.71875 C 3.734375 -6.671875 3.5625 -6.578125 3.5625 -6.3125 C 3.5625 -6.140625 3.65625 -5.984375 3.8125 -5.9375 Z M 3.8125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-27">
|
||||
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 4 -1.859375 L 3.75 -1.859375 C 3.65625 -0.6875 3.453125 -0.25 2.296875 -0.25 L 1.109375 -0.25 L 3.890625 -4 C 3.984375 -4.109375 3.984375 -4.125 3.984375 -4.171875 C 3.984375 -4.296875 3.890625 -4.296875 3.71875 -4.296875 L 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.734375 -3.703125 0.921875 -4.078125 2.015625 -4.078125 L 3.15625 -4.078125 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.828125 0 Z M 4 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.8125 -3.984375 3.921875 -3.75 3.921875 -3.5625 C 3.921875 -3.46875 3.90625 -3.421875 3.875 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.5625 C 1.671875 -3.6875 1.671875 -3.734375 1.671875 -3.734375 C 1.671875 -3.984375 2.0625 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.625 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.765625 0.109375 2.796875 0.015625 2.84375 -0.078125 L 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-21">
|
||||
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-22">
|
||||
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-23">
|
||||
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-24">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.765625 -3.984375 3.921875 -3.8125 3.921875 -3.5625 C 3.921875 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.875 L 1.75 -3.546875 C 1.703125 -3.65625 1.6875 -3.6875 1.6875 -3.734375 C 1.6875 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.5 0 L 2.25 0.59375 C 2.03125 1.140625 1.75 1.828125 1.109375 1.828125 C 1.0625 1.828125 0.828125 1.828125 0.640625 1.640625 C 0.953125 1.609375 1.03125 1.390625 1.03125 1.21875 C 1.03125 0.96875 0.84375 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.6875 0.609375 2.046875 1.109375 2.046875 C 1.734375 2.046875 2.140625 1.46875 2.375 0.90625 L 4.140625 -3.34375 C 4.390625 -3.984375 4.90625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-25">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.578125 -0.3125 4.46875 -0.3125 4.46875 -0.75 L 4.46875 -6.921875 L 4.109375 -6.859375 C 4.078125 -6.859375 4.0625 -6.875 4.03125 -6.890625 C 3.703125 -7.03125 3.296875 -7.03125 3.1875 -7.03125 C 2.140625 -7.03125 1.0625 -6.46875 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.390625 -0.03125 L 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 L 3.8125 -3.984375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.046875 -0.3125 L 3.046875 0 L 4.140625 -0.03125 Z M 3.8125 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.34375 2.4375 -6.8125 3.1875 -6.8125 C 3.265625 -6.8125 3.53125 -6.8125 3.8125 -6.71875 C 3.734375 -6.671875 3.5625 -6.578125 3.5625 -6.3125 C 3.5625 -6.140625 3.65625 -5.984375 3.8125 -5.9375 Z M 3.8125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-26">
|
||||
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 5.71875 -2.546875 L 5.71875 -2.90625 L 0 -2.90625 L 0 -2.546875 Z M 5.71875 -2.546875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="7.871"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="9.709" y="7.871"/>
|
||||
<use xlink:href="#glyph1-2" x="12.47661" y="7.871"/>
|
||||
<use xlink:href="#glyph1-3" x="17.45791" y="7.871"/>
|
||||
<use xlink:href="#glyph1-2" x="21.388156" y="7.871"/>
|
||||
<use xlink:href="#glyph1-4" x="26.369456" y="7.871"/>
|
||||
<use xlink:href="#glyph1-5" x="31.350756" y="7.871"/>
|
||||
<use xlink:href="#glyph1-2" x="36.885977" y="7.871"/>
|
||||
<use xlink:href="#glyph0-2" x="10.709" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="13.47661" y="7.871"/>
|
||||
<use xlink:href="#glyph0-4" x="18.45791" y="7.871"/>
|
||||
<use xlink:href="#glyph0-3" x="22.388156" y="7.871"/>
|
||||
<use xlink:href="#glyph0-5" x="27.369456" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="32.350756" y="7.871"/>
|
||||
<use xlink:href="#glyph0-7" x="37.885977" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="45.184822" y="7.871"/>
|
||||
<use xlink:href="#glyph1-6" x="50.720043" y="7.871"/>
|
||||
<use xlink:href="#glyph0-6" x="45.631898" y="7.871"/>
|
||||
<use xlink:href="#glyph0-8" x="51.167119" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="55.980296" y="7.871"/>
|
||||
<use xlink:href="#glyph0-8" x="56.427371" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-7" x="61.240549" y="7.871"/>
|
||||
<use xlink:href="#glyph1-1" x="66.775769" y="7.871"/>
|
||||
<use xlink:href="#glyph1-8" x="69.543379" y="7.871"/>
|
||||
<use xlink:href="#glyph1-3" x="73.971755" y="7.871"/>
|
||||
<use xlink:href="#glyph0-9" x="61.687624" y="7.871"/>
|
||||
<use xlink:href="#glyph0-2" x="67.222845" y="7.871"/>
|
||||
<use xlink:href="#glyph0-7" x="69.990455" y="7.871"/>
|
||||
<use xlink:href="#glyph0-4" x="74.418831" y="7.871"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="19.826"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="9.709" y="19.826"/>
|
||||
<use xlink:href="#glyph1-6" x="18.010835" y="19.826"/>
|
||||
<use xlink:href="#glyph1-10" x="22.992135" y="19.826"/>
|
||||
<use xlink:href="#glyph1-10" x="27.42051" y="19.826"/>
|
||||
<use xlink:href="#glyph1-2" x="31.848886" y="19.826"/>
|
||||
<use xlink:href="#glyph1-11" x="36.830186" y="19.826"/>
|
||||
<use xlink:href="#glyph1-8" x="40.732536" y="19.826"/>
|
||||
<use xlink:href="#glyph1-1" x="45.160912" y="19.826"/>
|
||||
<use xlink:href="#glyph1-1" x="47.928522" y="19.826"/>
|
||||
<use xlink:href="#glyph1-2" x="50.696133" y="19.826"/>
|
||||
<use xlink:href="#glyph0-10" x="10.709" y="19.826"/>
|
||||
<use xlink:href="#glyph0-8" x="19.010835" y="19.826"/>
|
||||
<use xlink:href="#glyph0-11" x="23.992135" y="19.826"/>
|
||||
<use xlink:href="#glyph0-11" x="28.42051" y="19.826"/>
|
||||
<use xlink:href="#glyph0-3" x="32.848886" y="19.826"/>
|
||||
<use xlink:href="#glyph0-12" x="37.830186" y="19.826"/>
|
||||
<use xlink:href="#glyph0-7" x="41.732536" y="19.826"/>
|
||||
<use xlink:href="#glyph0-2" x="46.160912" y="19.826"/>
|
||||
<use xlink:href="#glyph0-2" x="48.928522" y="19.826"/>
|
||||
<use xlink:href="#glyph0-3" x="51.696133" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="58.994978" y="19.826"/>
|
||||
<use xlink:href="#glyph0-13" x="59.994978" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="63.144401" y="19.826"/>
|
||||
<use xlink:href="#glyph1-8" x="68.679622" y="19.826"/>
|
||||
<use xlink:href="#glyph1-8" x="73.107998" y="19.826"/>
|
||||
<use xlink:href="#glyph1-3" x="77.536373" y="19.826"/>
|
||||
<use xlink:href="#glyph1-8" x="81.466619" y="19.826"/>
|
||||
<use xlink:href="#glyph0-14" x="64.144401" y="19.826"/>
|
||||
<use xlink:href="#glyph0-7" x="69.679622" y="19.826"/>
|
||||
<use xlink:href="#glyph0-7" x="74.107998" y="19.826"/>
|
||||
<use xlink:href="#glyph0-4" x="78.536373" y="19.826"/>
|
||||
<use xlink:href="#glyph0-7" x="82.466619" y="19.826"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="31.781"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="9.709" y="31.781"/>
|
||||
<use xlink:href="#glyph0-15" x="10.709" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="14.688307" y="31.781"/>
|
||||
<use xlink:href="#glyph1-4" x="19.116683" y="31.781"/>
|
||||
<use xlink:href="#glyph1-8" x="24.097983" y="31.781"/>
|
||||
<use xlink:href="#glyph1-15" x="28.526359" y="31.781"/>
|
||||
<use xlink:href="#glyph1-2" x="32.400814" y="31.781"/>
|
||||
<use xlink:href="#glyph1-16" x="37.382114" y="31.781"/>
|
||||
<use xlink:href="#glyph1-1" x="42.917335" y="31.781"/>
|
||||
<use xlink:href="#glyph1-8" x="45.684945" y="31.781"/>
|
||||
<use xlink:href="#glyph1-3" x="50.113321" y="31.781"/>
|
||||
<use xlink:href="#glyph0-7" x="15.688307" y="31.781"/>
|
||||
<use xlink:href="#glyph0-5" x="20.116683" y="31.781"/>
|
||||
<use xlink:href="#glyph0-7" x="25.097983" y="31.781"/>
|
||||
<use xlink:href="#glyph0-16" x="29.526359" y="31.781"/>
|
||||
<use xlink:href="#glyph0-3" x="33.400814" y="31.781"/>
|
||||
<use xlink:href="#glyph0-17" x="38.382114" y="31.781"/>
|
||||
<use xlink:href="#glyph0-2" x="43.917335" y="31.781"/>
|
||||
<use xlink:href="#glyph0-7" x="46.684945" y="31.781"/>
|
||||
<use xlink:href="#glyph0-4" x="51.113321" y="31.781"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="20.917" y="43.737"/>
|
||||
<use xlink:href="#glyph1-1" x="21.917" y="43.737"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="31.626" y="43.737"/>
|
||||
<use xlink:href="#glyph1-11" x="36.054376" y="43.737"/>
|
||||
<use xlink:href="#glyph1-17" x="39.956726" y="43.737"/>
|
||||
<use xlink:href="#glyph1-3" x="45.491947" y="43.737"/>
|
||||
<use xlink:href="#glyph1-13" x="49.422192" y="43.737"/>
|
||||
<use xlink:href="#glyph1-8" x="54.957413" y="43.737"/>
|
||||
<use xlink:href="#glyph1-7" x="59.385789" y="43.737"/>
|
||||
<use xlink:href="#glyph0-13" x="32.626" y="43.737"/>
|
||||
<use xlink:href="#glyph0-12" x="37.054376" y="43.737"/>
|
||||
<use xlink:href="#glyph0-18" x="40.956726" y="43.737"/>
|
||||
<use xlink:href="#glyph0-4" x="46.491947" y="43.737"/>
|
||||
<use xlink:href="#glyph0-14" x="50.422192" y="43.737"/>
|
||||
<use xlink:href="#glyph0-7" x="55.957413" y="43.737"/>
|
||||
<use xlink:href="#glyph0-9" x="60.385789" y="43.737"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="68.238555" y="43.737"/>
|
||||
<use xlink:href="#glyph1-6" x="72.11301" y="43.737"/>
|
||||
<use xlink:href="#glyph1-9" x="77.09431" y="43.737"/>
|
||||
<use xlink:href="#glyph1-2" x="85.396145" y="43.737"/>
|
||||
<use xlink:href="#glyph1-15" x="90.377445" y="43.737"/>
|
||||
<use xlink:href="#glyph1-6" x="94.2519" y="43.737"/>
|
||||
<use xlink:href="#glyph0-16" x="69.238555" y="43.737"/>
|
||||
<use xlink:href="#glyph0-8" x="73.11301" y="43.737"/>
|
||||
<use xlink:href="#glyph0-10" x="78.09431" y="43.737"/>
|
||||
<use xlink:href="#glyph0-3" x="86.396145" y="43.737"/>
|
||||
<use xlink:href="#glyph0-16" x="91.377445" y="43.737"/>
|
||||
<use xlink:href="#glyph0-8" x="95.2519" y="43.737"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="99.512153" y="43.737"/>
|
||||
<use xlink:href="#glyph1-3" x="103.940528" y="43.737"/>
|
||||
<use xlink:href="#glyph0-7" x="100.512153" y="43.737"/>
|
||||
<use xlink:href="#glyph0-4" x="104.940528" y="43.737"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="20.917" y="55.692"/>
|
||||
<use xlink:href="#glyph1-1" x="21.917" y="55.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="31.626" y="55.692"/>
|
||||
<use xlink:href="#glyph1-2" x="36.054376" y="55.692"/>
|
||||
<use xlink:href="#glyph1-11" x="41.035676" y="55.692"/>
|
||||
<use xlink:href="#glyph1-11" x="44.938026" y="55.692"/>
|
||||
<use xlink:href="#glyph1-6" x="48.840377" y="55.692"/>
|
||||
<use xlink:href="#glyph1-15" x="53.821677" y="55.692"/>
|
||||
<use xlink:href="#glyph1-3" x="57.696132" y="55.692"/>
|
||||
<use xlink:href="#glyph0-13" x="32.626" y="55.692"/>
|
||||
<use xlink:href="#glyph0-3" x="37.054376" y="55.692"/>
|
||||
<use xlink:href="#glyph0-12" x="42.035676" y="55.692"/>
|
||||
<use xlink:href="#glyph0-12" x="45.938026" y="55.692"/>
|
||||
<use xlink:href="#glyph0-8" x="49.840377" y="55.692"/>
|
||||
<use xlink:href="#glyph0-16" x="54.821677" y="55.692"/>
|
||||
<use xlink:href="#glyph0-4" x="58.696132" y="55.692"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="20.917" y="67.647"/>
|
||||
<use xlink:href="#glyph1-1" x="21.917" y="67.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="31.626" y="67.647"/>
|
||||
<use xlink:href="#glyph0-19" x="32.626" y="67.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="37.440173" y="67.647"/>
|
||||
<use xlink:href="#glyph1-2" x="41.868549" y="67.647"/>
|
||||
<use xlink:href="#glyph1-3" x="46.849849" y="67.647"/>
|
||||
<use xlink:href="#glyph0-7" x="38.440173" y="67.647"/>
|
||||
<use xlink:href="#glyph0-3" x="42.868549" y="67.647"/>
|
||||
<use xlink:href="#glyph0-4" x="47.849849" y="67.647"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="20.917" y="79.602"/>
|
||||
<use xlink:href="#glyph1-1" x="21.917" y="79.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="31.626" y="79.602"/>
|
||||
<use xlink:href="#glyph1-5" x="36.6073" y="79.602"/>
|
||||
<use xlink:href="#glyph1-19" x="42.142521" y="79.602"/>
|
||||
<use xlink:href="#glyph1-6" x="44.910131" y="79.602"/>
|
||||
<use xlink:href="#glyph1-5" x="49.891431" y="79.602"/>
|
||||
<use xlink:href="#glyph1-3" x="55.426651" y="79.602"/>
|
||||
<use xlink:href="#glyph0-8" x="32.626" y="79.602"/>
|
||||
<use xlink:href="#glyph0-6" x="37.6073" y="79.602"/>
|
||||
<use xlink:href="#glyph0-20" x="43.142521" y="79.602"/>
|
||||
<use xlink:href="#glyph0-8" x="45.910131" y="79.602"/>
|
||||
<use xlink:href="#glyph0-6" x="50.891431" y="79.602"/>
|
||||
<use xlink:href="#glyph0-4" x="56.426651" y="79.602"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="91.557"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="91.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="9.709" y="91.557"/>
|
||||
<use xlink:href="#glyph1-8" x="15.244221" y="91.557"/>
|
||||
<use xlink:href="#glyph1-11" x="19.672596" y="91.557"/>
|
||||
<use xlink:href="#glyph1-16" x="23.574947" y="91.557"/>
|
||||
<use xlink:href="#glyph1-3" x="29.110167" y="91.557"/>
|
||||
<use xlink:href="#glyph0-14" x="10.709" y="91.557"/>
|
||||
<use xlink:href="#glyph0-7" x="16.244221" y="91.557"/>
|
||||
<use xlink:href="#glyph0-12" x="20.672596" y="91.557"/>
|
||||
<use xlink:href="#glyph0-17" x="24.574947" y="91.557"/>
|
||||
<use xlink:href="#glyph0-4" x="30.110167" y="91.557"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="18.896" y="103.513"/>
|
||||
<use xlink:href="#glyph1-21" x="23.8773" y="103.513"/>
|
||||
<use xlink:href="#glyph0-21" x="19.896" y="103.513"/>
|
||||
<use xlink:href="#glyph0-22" x="24.8773" y="103.513"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="31.62621" y="103.513"/>
|
||||
<use xlink:href="#glyph1-11" x="36.60751" y="103.513"/>
|
||||
<use xlink:href="#glyph1-8" x="40.509861" y="103.513"/>
|
||||
<use xlink:href="#glyph1-4" x="44.938236" y="103.513"/>
|
||||
<use xlink:href="#glyph1-2" x="49.919536" y="103.513"/>
|
||||
<use xlink:href="#glyph1-5" x="54.900836" y="103.513"/>
|
||||
<use xlink:href="#glyph1-6" x="60.436057" y="103.513"/>
|
||||
<use xlink:href="#glyph0-8" x="32.62621" y="103.513"/>
|
||||
<use xlink:href="#glyph0-12" x="37.60751" y="103.513"/>
|
||||
<use xlink:href="#glyph0-7" x="41.509861" y="103.513"/>
|
||||
<use xlink:href="#glyph0-5" x="45.938236" y="103.513"/>
|
||||
<use xlink:href="#glyph0-3" x="50.919536" y="103.513"/>
|
||||
<use xlink:href="#glyph0-6" x="55.900836" y="103.513"/>
|
||||
<use xlink:href="#glyph0-8" x="61.436057" y="103.513"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="18.896" y="115.468"/>
|
||||
<use xlink:href="#glyph1-21" x="23.8773" y="115.468"/>
|
||||
<use xlink:href="#glyph0-23" x="19.896" y="115.468"/>
|
||||
<use xlink:href="#glyph0-22" x="24.8773" y="115.468"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="31.62621" y="115.468"/>
|
||||
<use xlink:href="#glyph1-2" x="37.161431" y="115.468"/>
|
||||
<use xlink:href="#glyph1-3" x="42.142731" y="115.468"/>
|
||||
<use xlink:href="#glyph1-19" x="46.072977" y="115.468"/>
|
||||
<use xlink:href="#glyph1-1" x="48.840587" y="115.468"/>
|
||||
<use xlink:href="#glyph0-17" x="32.62621" y="115.468"/>
|
||||
<use xlink:href="#glyph0-3" x="38.161431" y="115.468"/>
|
||||
<use xlink:href="#glyph0-4" x="43.142731" y="115.468"/>
|
||||
<use xlink:href="#glyph0-20" x="47.072977" y="115.468"/>
|
||||
<use xlink:href="#glyph0-2" x="49.840587" y="115.468"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-23" x="18.896" y="127.423"/>
|
||||
<use xlink:href="#glyph1-21" x="23.8773" y="127.423"/>
|
||||
<use xlink:href="#glyph0-24" x="19.896" y="127.423"/>
|
||||
<use xlink:href="#glyph0-22" x="24.8773" y="127.423"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="31.62621" y="127.423"/>
|
||||
<use xlink:href="#glyph1-6" x="35.528561" y="127.423"/>
|
||||
<use xlink:href="#glyph1-3" x="40.509861" y="127.423"/>
|
||||
<use xlink:href="#glyph1-8" x="44.440106" y="127.423"/>
|
||||
<use xlink:href="#glyph1-9" x="48.868482" y="127.423"/>
|
||||
<use xlink:href="#glyph1-2" x="57.170317" y="127.423"/>
|
||||
<use xlink:href="#glyph1-11" x="62.151617" y="127.423"/>
|
||||
<use xlink:href="#glyph1-24" x="66.053967" y="127.423"/>
|
||||
<use xlink:href="#glyph0-12" x="32.62621" y="127.423"/>
|
||||
<use xlink:href="#glyph0-8" x="36.528561" y="127.423"/>
|
||||
<use xlink:href="#glyph0-4" x="41.509861" y="127.423"/>
|
||||
<use xlink:href="#glyph0-7" x="45.440106" y="127.423"/>
|
||||
<use xlink:href="#glyph0-10" x="49.868482" y="127.423"/>
|
||||
<use xlink:href="#glyph0-3" x="58.170317" y="127.423"/>
|
||||
<use xlink:href="#glyph0-12" x="63.151617" y="127.423"/>
|
||||
<use xlink:href="#glyph0-25" x="67.053967" y="127.423"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="139.378"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="139.378"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-25" x="9.709" y="139.378"/>
|
||||
<use xlink:href="#glyph1-6" x="15.244221" y="139.378"/>
|
||||
<use xlink:href="#glyph1-17" x="20.225521" y="139.378"/>
|
||||
<use xlink:href="#glyph1-11" x="25.760741" y="139.378"/>
|
||||
<use xlink:href="#glyph0-26" x="10.709" y="139.378"/>
|
||||
<use xlink:href="#glyph0-8" x="16.244221" y="139.378"/>
|
||||
<use xlink:href="#glyph0-18" x="21.225521" y="139.378"/>
|
||||
<use xlink:href="#glyph0-12" x="26.760741" y="139.378"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="151.333"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="151.333"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="9.709" y="151.333"/>
|
||||
<use xlink:href="#glyph1-19" x="18.010835" y="151.333"/>
|
||||
<use xlink:href="#glyph1-1" x="20.778445" y="151.333"/>
|
||||
<use xlink:href="#glyph1-26" x="23.546055" y="151.333"/>
|
||||
<use xlink:href="#glyph0-10" x="10.709" y="151.333"/>
|
||||
<use xlink:href="#glyph0-20" x="19.010835" y="151.333"/>
|
||||
<use xlink:href="#glyph0-2" x="21.778445" y="151.333"/>
|
||||
<use xlink:href="#glyph0-27" x="24.546055" y="151.333"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="163.288"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="163.288"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="9.709" y="163.288"/>
|
||||
<use xlink:href="#glyph1-2" x="13.639246" y="163.288"/>
|
||||
<use xlink:href="#glyph1-1" x="18.620546" y="163.288"/>
|
||||
<use xlink:href="#glyph1-15" x="21.388156" y="163.288"/>
|
||||
<use xlink:href="#glyph0-4" x="10.709" y="163.288"/>
|
||||
<use xlink:href="#glyph0-3" x="14.639246" y="163.288"/>
|
||||
<use xlink:href="#glyph0-2" x="19.620546" y="163.288"/>
|
||||
<use xlink:href="#glyph0-16" x="22.388156" y="163.288"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="-0.254" y="175.244"/>
|
||||
<use xlink:href="#glyph0-1" x="-2.022" y="175.244"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="9.709" y="175.244"/>
|
||||
<use xlink:href="#glyph0-19" x="10.709" y="175.244"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="15.523173" y="175.244"/>
|
||||
<use xlink:href="#glyph1-18" x="19.951549" y="175.244"/>
|
||||
<use xlink:href="#glyph1-18" x="25.48677" y="175.244"/>
|
||||
<use xlink:href="#glyph0-7" x="16.523173" y="175.244"/>
|
||||
<use xlink:href="#glyph0-19" x="20.951549" y="175.244"/>
|
||||
<use xlink:href="#glyph0-19" x="26.48677" y="175.244"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="31.29098" y="175.244"/>
|
||||
<use xlink:href="#glyph1-11" x="35.719356" y="175.244"/>
|
||||
<use xlink:href="#glyph0-7" x="32.29098" y="175.244"/>
|
||||
<use xlink:href="#glyph0-12" x="36.719356" y="175.244"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
@ -6,312 +6,309 @@
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-1">
|
||||
<path style="stroke:none;" d="M 4.421875 -2.5 C 4.421875 -3.5625 3.53125 -4.421875 2.5 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.5 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -0.5625 C 3.5625 -0.5625 4.421875 -1.453125 4.421875 -2.5 Z M 4.421875 -2.5 "/>
|
||||
<path style="stroke:none;" d="M 5.3125 -2.296875 C 5.3125 -3.09375 4.671875 -3.734375 3.875 -3.734375 C 3.09375 -3.734375 2.4375 -3.09375 2.4375 -2.296875 C 2.4375 -1.515625 3.09375 -0.875 3.875 -0.875 C 4.671875 -0.875 5.3125 -1.515625 5.3125 -2.296875 Z M 5.3125 -2.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-2">
|
||||
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-3">
|
||||
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-4">
|
||||
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-5">
|
||||
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-6">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-7">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-8">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-9">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-10">
|
||||
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-11">
|
||||
<path style="stroke:none;" d="M 4 -1.859375 L 3.75 -1.859375 C 3.65625 -0.6875 3.453125 -0.25 2.296875 -0.25 L 1.109375 -0.25 L 3.890625 -4 C 3.984375 -4.109375 3.984375 -4.125 3.984375 -4.171875 C 3.984375 -4.296875 3.890625 -4.296875 3.71875 -4.296875 L 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.734375 -3.703125 0.921875 -4.078125 2.015625 -4.078125 L 3.15625 -4.078125 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.828125 0 Z M 4 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-12">
|
||||
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-13">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-14">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-15">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.8125 -3.984375 3.921875 -3.75 3.921875 -3.5625 C 3.921875 -3.46875 3.90625 -3.421875 3.875 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.5625 C 1.671875 -3.6875 1.671875 -3.734375 1.671875 -3.734375 C 1.671875 -3.984375 2.0625 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.625 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.765625 0.109375 2.796875 0.015625 2.84375 -0.078125 L 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-16">
|
||||
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-17">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-18">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-19">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-20">
|
||||
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-21">
|
||||
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-22">
|
||||
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-23">
|
||||
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-24">
|
||||
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-25">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.765625 -3.984375 3.921875 -3.8125 3.921875 -3.5625 C 3.921875 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.875 L 1.75 -3.546875 C 1.703125 -3.65625 1.6875 -3.6875 1.6875 -3.734375 C 1.6875 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.5 0 L 2.25 0.59375 C 2.03125 1.140625 1.75 1.828125 1.109375 1.828125 C 1.0625 1.828125 0.828125 1.828125 0.640625 1.640625 C 0.953125 1.609375 1.03125 1.390625 1.03125 1.21875 C 1.03125 0.96875 0.84375 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.6875 0.609375 2.046875 1.109375 2.046875 C 1.734375 2.046875 2.140625 1.46875 2.375 0.90625 L 4.140625 -3.34375 C 4.390625 -3.984375 4.90625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-26">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.578125 -0.3125 4.46875 -0.3125 4.46875 -0.75 L 4.46875 -6.921875 L 4.109375 -6.859375 C 4.078125 -6.859375 4.0625 -6.875 4.03125 -6.890625 C 3.703125 -7.03125 3.296875 -7.03125 3.1875 -7.03125 C 2.140625 -7.03125 1.0625 -6.46875 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.390625 -0.03125 L 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 L 3.8125 -3.984375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.046875 -0.3125 L 3.046875 0 L 4.140625 -0.03125 Z M 3.8125 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.34375 2.4375 -6.8125 3.1875 -6.8125 C 3.265625 -6.8125 3.53125 -6.8125 3.8125 -6.71875 C 3.734375 -6.671875 3.5625 -6.578125 3.5625 -6.3125 C 3.5625 -6.140625 3.65625 -5.984375 3.8125 -5.9375 Z M 3.8125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph0-27">
|
||||
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-1">
|
||||
<path style="stroke:none;" d="M 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.4375 -0.03125 Z M 2.546875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-2">
|
||||
<path style="stroke:none;" d="M 4.8125 -0.890625 L 4.8125 -1.453125 L 4.5625 -1.453125 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.84375 -0.703125 3.84375 -0.75 L 3.84375 -2.734375 C 3.84375 -3.15625 3.84375 -3.546875 3.484375 -3.921875 C 3.09375 -4.3125 2.59375 -4.46875 2.109375 -4.46875 C 1.296875 -4.46875 0.609375 -4 0.609375 -3.34375 C 0.609375 -3.046875 0.8125 -2.875 1.0625 -2.875 C 1.34375 -2.875 1.53125 -3.078125 1.53125 -3.328125 C 1.53125 -3.453125 1.46875 -3.78125 1.015625 -3.78125 C 1.28125 -4.140625 1.78125 -4.25 2.09375 -4.25 C 2.578125 -4.25 3.15625 -3.859375 3.15625 -2.96875 L 3.15625 -2.609375 C 2.640625 -2.578125 1.9375 -2.546875 1.3125 -2.25 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.578125 0.109375 3.03125 -0.296875 3.21875 -0.75 C 3.265625 -0.359375 3.53125 0.0625 4 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.15625 -1.390625 C 3.15625 -0.453125 2.4375 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.09375 -0.453125 1.09375 -0.953125 C 1.09375 -1.5 1.5 -2.328125 3.15625 -2.390625 Z M 3.15625 -1.390625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-3">
|
||||
<path style="stroke:none;" d="M 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.203125 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 Z M 3.59375 -1.28125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-4">
|
||||
<path style="stroke:none;" d="M 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 Z M 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 Z M 4.171875 0.78125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-5">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-6">
|
||||
<path style="stroke:none;" d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 Z M 3.875 -2.21875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-7">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 L 3.78125 0.109375 Z M 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -1.171875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-8">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 Z M 3.484375 -2.515625 L 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 3.484375 -2.515625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-9">
|
||||
<path style="stroke:none;" d="M 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.109375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-10">
|
||||
<path style="stroke:none;" d="M 4 -1.859375 L 3.75 -1.859375 C 3.65625 -0.6875 3.453125 -0.25 2.296875 -0.25 L 1.109375 -0.25 L 3.890625 -4 C 3.984375 -4.109375 3.984375 -4.125 3.984375 -4.171875 C 3.984375 -4.296875 3.890625 -4.296875 3.71875 -4.296875 L 0.53125 -4.296875 L 0.421875 -2.6875 L 0.671875 -2.6875 C 0.734375 -3.703125 0.921875 -4.078125 2.015625 -4.078125 L 3.15625 -4.078125 L 0.375 -0.3125 C 0.28125 -0.203125 0.28125 -0.1875 0.28125 -0.140625 C 0.28125 0 0.34375 0 0.53125 0 L 3.828125 0 Z M 4 -1.859375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-11">
|
||||
<path style="stroke:none;" d="M 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 Z M 3.625 -3.796875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-12">
|
||||
<path style="stroke:none;" d="M 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 Z M 4.140625 -1.1875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-13">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.765625 -3.453125 L 1.75 -3.453125 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 L 1.453125 -0.03125 L 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 L 4.21875 -0.03125 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-14">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.8125 -3.984375 3.921875 -3.75 3.921875 -3.5625 C 3.921875 -3.46875 3.90625 -3.421875 3.875 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.5625 C 1.671875 -3.6875 1.671875 -3.734375 1.671875 -3.734375 C 1.671875 -3.984375 2.0625 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.625 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.765625 0.109375 2.796875 0.015625 2.84375 -0.078125 L 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-15">
|
||||
<path style="stroke:none;" d="M 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 Z M 3.3125 -1.234375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-16">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 L 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-17">
|
||||
<path style="stroke:none;" d="M 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 L 3.890625 0.109375 Z M 5.328125 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-18">
|
||||
<path style="stroke:none;" d="M 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-19">
|
||||
<path style="stroke:none;" d="M 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 L 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 Z M 1.90625 -6.015625 C 1.90625 -6.296875 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.5 1.375 -5.5 C 1.71875 -5.5 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-20">
|
||||
<path style="stroke:none;" d="M 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 L 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 Z M 4.171875 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-21">
|
||||
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-22">
|
||||
<path style="stroke:none;" d="M 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 L 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 Z M 4.46875 -1.734375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-23">
|
||||
<path style="stroke:none;" d="M 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 Z M 4.5625 -1.703125 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-24">
|
||||
<path style="stroke:none;" d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 L 3.453125 -4.296875 L 3.453125 -3.984375 C 3.765625 -3.984375 3.921875 -3.8125 3.921875 -3.5625 C 3.921875 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.875 L 1.75 -3.546875 C 1.703125 -3.65625 1.6875 -3.6875 1.6875 -3.734375 C 1.6875 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.5 0 L 2.25 0.59375 C 2.03125 1.140625 1.75 1.828125 1.109375 1.828125 C 1.0625 1.828125 0.828125 1.828125 0.640625 1.640625 C 0.953125 1.609375 1.03125 1.390625 1.03125 1.21875 C 1.03125 0.96875 0.84375 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.6875 0.609375 2.046875 1.109375 2.046875 C 1.734375 2.046875 2.140625 1.46875 2.375 0.90625 L 4.140625 -3.34375 C 4.390625 -3.984375 4.90625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-25">
|
||||
<path style="stroke:none;" d="M 5.25 0 L 5.25 -0.3125 C 4.578125 -0.3125 4.46875 -0.3125 4.46875 -0.75 L 4.46875 -6.921875 L 4.109375 -6.859375 C 4.078125 -6.859375 4.0625 -6.875 4.03125 -6.890625 C 3.703125 -7.03125 3.296875 -7.03125 3.1875 -7.03125 C 2.140625 -7.03125 1.0625 -6.46875 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.390625 -0.03125 L 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 L 3.8125 -3.984375 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.046875 -0.3125 L 3.046875 0 L 4.140625 -0.03125 Z M 3.8125 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.34375 2.4375 -6.8125 3.1875 -6.8125 C 3.265625 -6.8125 3.53125 -6.8125 3.8125 -6.71875 C 3.734375 -6.671875 3.5625 -6.578125 3.5625 -6.3125 C 3.5625 -6.140625 3.65625 -5.984375 3.8125 -5.9375 Z M 3.8125 -4.296875 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph1-26">
|
||||
<path style="stroke:none;" d="M 5.09375 0 L 5.09375 -0.3125 C 4.71875 -0.3125 4.5 -0.3125 4.125 -0.84375 L 2.859375 -2.625 C 2.84375 -2.640625 2.796875 -2.703125 2.796875 -2.734375 C 2.796875 -2.765625 3.515625 -3.375 3.609375 -3.453125 C 4.234375 -3.953125 4.65625 -3.984375 4.859375 -3.984375 L 4.859375 -4.296875 C 4.578125 -4.265625 4.453125 -4.265625 4.171875 -4.265625 C 3.8125 -4.265625 3.1875 -4.28125 3.046875 -4.296875 L 3.046875 -3.984375 C 3.234375 -3.984375 3.34375 -3.875 3.34375 -3.734375 C 3.34375 -3.53125 3.203125 -3.421875 3.125 -3.34375 L 1.71875 -2.140625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 L 1.359375 -0.03125 L 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.6875 -0.3125 1.6875 -0.75 L 1.6875 -1.78125 L 2.328125 -2.328125 C 3.09375 -1.28125 3.515625 -0.71875 3.515625 -0.53125 C 3.515625 -0.34375 3.34375 -0.3125 3.15625 -0.3125 L 3.15625 0 L 4.234375 -0.03125 C 4.515625 -0.03125 4.8125 -0.015625 5.09375 0 Z M 5.09375 0 "/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-0">
|
||||
<path style="stroke:none;" d=""/>
|
||||
</symbol>
|
||||
<symbol overflow="visible" id="glyph2-1">
|
||||
<path style="stroke:none;" d="M 5.71875 -2.546875 L 5.71875 -2.90625 L 0 -2.90625 L 0 -2.546875 Z M 5.71875 -2.546875 "/>
|
||||
</symbol>
|
||||
</g>
|
||||
</defs>
|
||||
<g id="surface1">
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="135.761"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="149.709" y="135.761"/>
|
||||
<use xlink:href="#glyph1-2" x="152.47661" y="135.761"/>
|
||||
<use xlink:href="#glyph1-3" x="157.45791" y="135.761"/>
|
||||
<use xlink:href="#glyph1-2" x="161.388156" y="135.761"/>
|
||||
<use xlink:href="#glyph1-4" x="166.369456" y="135.761"/>
|
||||
<use xlink:href="#glyph1-5" x="171.350756" y="135.761"/>
|
||||
<use xlink:href="#glyph1-2" x="176.885977" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="149.709" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="152.47661" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="157.45791" y="135.761"/>
|
||||
<use xlink:href="#glyph0-3" x="161.388156" y="135.761"/>
|
||||
<use xlink:href="#glyph0-5" x="166.369456" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="171.350756" y="135.761"/>
|
||||
<use xlink:href="#glyph0-7" x="176.885977" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-5" x="185.184822" y="135.761"/>
|
||||
<use xlink:href="#glyph1-6" x="190.720043" y="135.761"/>
|
||||
<use xlink:href="#glyph0-6" x="184.631898" y="135.761"/>
|
||||
<use xlink:href="#glyph0-8" x="190.167119" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="195.980296" y="135.761"/>
|
||||
<use xlink:href="#glyph0-8" x="195.427371" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-7" x="201.240549" y="135.761"/>
|
||||
<use xlink:href="#glyph1-1" x="206.775769" y="135.761"/>
|
||||
<use xlink:href="#glyph1-8" x="209.543379" y="135.761"/>
|
||||
<use xlink:href="#glyph1-3" x="213.971755" y="135.761"/>
|
||||
<use xlink:href="#glyph0-9" x="200.687624" y="135.761"/>
|
||||
<use xlink:href="#glyph0-2" x="206.222845" y="135.761"/>
|
||||
<use xlink:href="#glyph0-7" x="208.990455" y="135.761"/>
|
||||
<use xlink:href="#glyph0-4" x="213.418831" y="135.761"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="147.716"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="149.709" y="147.716"/>
|
||||
<use xlink:href="#glyph1-6" x="158.010835" y="147.716"/>
|
||||
<use xlink:href="#glyph1-10" x="162.992135" y="147.716"/>
|
||||
<use xlink:href="#glyph1-10" x="167.42051" y="147.716"/>
|
||||
<use xlink:href="#glyph1-2" x="171.848886" y="147.716"/>
|
||||
<use xlink:href="#glyph1-11" x="176.830186" y="147.716"/>
|
||||
<use xlink:href="#glyph1-8" x="180.732536" y="147.716"/>
|
||||
<use xlink:href="#glyph1-1" x="185.160912" y="147.716"/>
|
||||
<use xlink:href="#glyph1-1" x="187.928522" y="147.716"/>
|
||||
<use xlink:href="#glyph1-2" x="190.696133" y="147.716"/>
|
||||
<use xlink:href="#glyph0-10" x="149.709" y="147.716"/>
|
||||
<use xlink:href="#glyph0-8" x="158.010835" y="147.716"/>
|
||||
<use xlink:href="#glyph0-11" x="162.992135" y="147.716"/>
|
||||
<use xlink:href="#glyph0-11" x="167.42051" y="147.716"/>
|
||||
<use xlink:href="#glyph0-3" x="171.848886" y="147.716"/>
|
||||
<use xlink:href="#glyph0-12" x="176.830186" y="147.716"/>
|
||||
<use xlink:href="#glyph0-7" x="180.732536" y="147.716"/>
|
||||
<use xlink:href="#glyph0-2" x="185.160912" y="147.716"/>
|
||||
<use xlink:href="#glyph0-2" x="187.928522" y="147.716"/>
|
||||
<use xlink:href="#glyph0-3" x="190.696133" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="198.994978" y="147.716"/>
|
||||
<use xlink:href="#glyph0-13" x="198.994978" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="203.144401" y="147.716"/>
|
||||
<use xlink:href="#glyph1-8" x="208.679622" y="147.716"/>
|
||||
<use xlink:href="#glyph1-8" x="213.107998" y="147.716"/>
|
||||
<use xlink:href="#glyph1-3" x="217.536373" y="147.716"/>
|
||||
<use xlink:href="#glyph1-8" x="221.466619" y="147.716"/>
|
||||
<use xlink:href="#glyph0-14" x="203.144401" y="147.716"/>
|
||||
<use xlink:href="#glyph0-7" x="208.679622" y="147.716"/>
|
||||
<use xlink:href="#glyph0-7" x="213.107998" y="147.716"/>
|
||||
<use xlink:href="#glyph0-4" x="217.536373" y="147.716"/>
|
||||
<use xlink:href="#glyph0-7" x="221.466619" y="147.716"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="159.671"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-14" x="149.709" y="159.671"/>
|
||||
<use xlink:href="#glyph0-15" x="149.709" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="154.688307" y="159.671"/>
|
||||
<use xlink:href="#glyph1-4" x="159.116683" y="159.671"/>
|
||||
<use xlink:href="#glyph1-8" x="164.097983" y="159.671"/>
|
||||
<use xlink:href="#glyph1-15" x="168.526359" y="159.671"/>
|
||||
<use xlink:href="#glyph1-2" x="172.400814" y="159.671"/>
|
||||
<use xlink:href="#glyph1-16" x="177.382114" y="159.671"/>
|
||||
<use xlink:href="#glyph1-1" x="182.917335" y="159.671"/>
|
||||
<use xlink:href="#glyph1-8" x="185.684945" y="159.671"/>
|
||||
<use xlink:href="#glyph1-3" x="190.113321" y="159.671"/>
|
||||
<use xlink:href="#glyph0-7" x="154.688307" y="159.671"/>
|
||||
<use xlink:href="#glyph0-5" x="159.116683" y="159.671"/>
|
||||
<use xlink:href="#glyph0-7" x="164.097983" y="159.671"/>
|
||||
<use xlink:href="#glyph0-16" x="168.526359" y="159.671"/>
|
||||
<use xlink:href="#glyph0-3" x="172.400814" y="159.671"/>
|
||||
<use xlink:href="#glyph0-17" x="177.382114" y="159.671"/>
|
||||
<use xlink:href="#glyph0-2" x="182.917335" y="159.671"/>
|
||||
<use xlink:href="#glyph0-7" x="185.684945" y="159.671"/>
|
||||
<use xlink:href="#glyph0-4" x="190.113321" y="159.671"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="160.917" y="171.627"/>
|
||||
<use xlink:href="#glyph1-1" x="160.917" y="171.627"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="171.626" y="171.627"/>
|
||||
<use xlink:href="#glyph1-11" x="176.054376" y="171.627"/>
|
||||
<use xlink:href="#glyph1-17" x="179.956726" y="171.627"/>
|
||||
<use xlink:href="#glyph1-3" x="185.491947" y="171.627"/>
|
||||
<use xlink:href="#glyph1-13" x="189.422192" y="171.627"/>
|
||||
<use xlink:href="#glyph1-8" x="194.957413" y="171.627"/>
|
||||
<use xlink:href="#glyph1-7" x="199.385789" y="171.627"/>
|
||||
<use xlink:href="#glyph0-13" x="171.626" y="171.627"/>
|
||||
<use xlink:href="#glyph0-12" x="176.054376" y="171.627"/>
|
||||
<use xlink:href="#glyph0-18" x="179.956726" y="171.627"/>
|
||||
<use xlink:href="#glyph0-4" x="185.491947" y="171.627"/>
|
||||
<use xlink:href="#glyph0-14" x="189.422192" y="171.627"/>
|
||||
<use xlink:href="#glyph0-7" x="194.957413" y="171.627"/>
|
||||
<use xlink:href="#glyph0-9" x="199.385789" y="171.627"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-15" x="208.238555" y="171.627"/>
|
||||
<use xlink:href="#glyph1-6" x="212.11301" y="171.627"/>
|
||||
<use xlink:href="#glyph1-9" x="217.09431" y="171.627"/>
|
||||
<use xlink:href="#glyph1-2" x="225.396145" y="171.627"/>
|
||||
<use xlink:href="#glyph1-15" x="230.377445" y="171.627"/>
|
||||
<use xlink:href="#glyph1-6" x="234.2519" y="171.627"/>
|
||||
<use xlink:href="#glyph0-16" x="208.238555" y="171.627"/>
|
||||
<use xlink:href="#glyph0-8" x="212.11301" y="171.627"/>
|
||||
<use xlink:href="#glyph0-10" x="217.09431" y="171.627"/>
|
||||
<use xlink:href="#glyph0-3" x="225.396145" y="171.627"/>
|
||||
<use xlink:href="#glyph0-16" x="230.377445" y="171.627"/>
|
||||
<use xlink:href="#glyph0-8" x="234.2519" y="171.627"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="239.512153" y="171.627"/>
|
||||
<use xlink:href="#glyph1-3" x="243.940528" y="171.627"/>
|
||||
<use xlink:href="#glyph0-7" x="239.512153" y="171.627"/>
|
||||
<use xlink:href="#glyph0-4" x="243.940528" y="171.627"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="160.917" y="183.582"/>
|
||||
<use xlink:href="#glyph1-1" x="160.917" y="183.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-12" x="171.626" y="183.582"/>
|
||||
<use xlink:href="#glyph1-2" x="176.054376" y="183.582"/>
|
||||
<use xlink:href="#glyph1-11" x="181.035676" y="183.582"/>
|
||||
<use xlink:href="#glyph1-11" x="184.938026" y="183.582"/>
|
||||
<use xlink:href="#glyph1-6" x="188.840377" y="183.582"/>
|
||||
<use xlink:href="#glyph1-15" x="193.821677" y="183.582"/>
|
||||
<use xlink:href="#glyph1-3" x="197.696132" y="183.582"/>
|
||||
<use xlink:href="#glyph0-13" x="171.626" y="183.582"/>
|
||||
<use xlink:href="#glyph0-3" x="176.054376" y="183.582"/>
|
||||
<use xlink:href="#glyph0-12" x="181.035676" y="183.582"/>
|
||||
<use xlink:href="#glyph0-12" x="184.938026" y="183.582"/>
|
||||
<use xlink:href="#glyph0-8" x="188.840377" y="183.582"/>
|
||||
<use xlink:href="#glyph0-16" x="193.821677" y="183.582"/>
|
||||
<use xlink:href="#glyph0-4" x="197.696132" y="183.582"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="160.917" y="195.537"/>
|
||||
<use xlink:href="#glyph1-1" x="160.917" y="195.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="171.626" y="195.537"/>
|
||||
<use xlink:href="#glyph0-19" x="171.626" y="195.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="177.440173" y="195.537"/>
|
||||
<use xlink:href="#glyph1-2" x="181.868549" y="195.537"/>
|
||||
<use xlink:href="#glyph1-3" x="186.849849" y="195.537"/>
|
||||
<use xlink:href="#glyph0-7" x="177.440173" y="195.537"/>
|
||||
<use xlink:href="#glyph0-3" x="181.868549" y="195.537"/>
|
||||
<use xlink:href="#glyph0-4" x="186.849849" y="195.537"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph2-1" x="160.917" y="207.492"/>
|
||||
<use xlink:href="#glyph1-1" x="160.917" y="207.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="171.626" y="207.492"/>
|
||||
<use xlink:href="#glyph1-5" x="176.6073" y="207.492"/>
|
||||
<use xlink:href="#glyph1-19" x="182.142521" y="207.492"/>
|
||||
<use xlink:href="#glyph1-6" x="184.910131" y="207.492"/>
|
||||
<use xlink:href="#glyph1-5" x="189.891431" y="207.492"/>
|
||||
<use xlink:href="#glyph1-3" x="195.426651" y="207.492"/>
|
||||
<use xlink:href="#glyph0-8" x="171.626" y="207.492"/>
|
||||
<use xlink:href="#glyph0-6" x="176.6073" y="207.492"/>
|
||||
<use xlink:href="#glyph0-20" x="182.142521" y="207.492"/>
|
||||
<use xlink:href="#glyph0-8" x="184.910131" y="207.492"/>
|
||||
<use xlink:href="#glyph0-6" x="189.891431" y="207.492"/>
|
||||
<use xlink:href="#glyph0-4" x="195.426651" y="207.492"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="219.447"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="219.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-13" x="149.709" y="219.447"/>
|
||||
<use xlink:href="#glyph1-8" x="155.244221" y="219.447"/>
|
||||
<use xlink:href="#glyph1-11" x="159.672596" y="219.447"/>
|
||||
<use xlink:href="#glyph1-16" x="163.574947" y="219.447"/>
|
||||
<use xlink:href="#glyph1-3" x="169.110167" y="219.447"/>
|
||||
<use xlink:href="#glyph0-14" x="149.709" y="219.447"/>
|
||||
<use xlink:href="#glyph0-7" x="155.244221" y="219.447"/>
|
||||
<use xlink:href="#glyph0-12" x="159.672596" y="219.447"/>
|
||||
<use xlink:href="#glyph0-17" x="163.574947" y="219.447"/>
|
||||
<use xlink:href="#glyph0-4" x="169.110167" y="219.447"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-20" x="158.896" y="231.403"/>
|
||||
<use xlink:href="#glyph1-21" x="163.8773" y="231.403"/>
|
||||
<use xlink:href="#glyph0-21" x="158.896" y="231.403"/>
|
||||
<use xlink:href="#glyph0-22" x="163.8773" y="231.403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-6" x="171.62621" y="231.403"/>
|
||||
<use xlink:href="#glyph1-11" x="176.60751" y="231.403"/>
|
||||
<use xlink:href="#glyph1-8" x="180.509861" y="231.403"/>
|
||||
<use xlink:href="#glyph1-4" x="184.938236" y="231.403"/>
|
||||
<use xlink:href="#glyph1-2" x="189.919536" y="231.403"/>
|
||||
<use xlink:href="#glyph1-5" x="194.900836" y="231.403"/>
|
||||
<use xlink:href="#glyph1-6" x="200.436057" y="231.403"/>
|
||||
<use xlink:href="#glyph0-8" x="171.62621" y="231.403"/>
|
||||
<use xlink:href="#glyph0-12" x="176.60751" y="231.403"/>
|
||||
<use xlink:href="#glyph0-7" x="180.509861" y="231.403"/>
|
||||
<use xlink:href="#glyph0-5" x="184.938236" y="231.403"/>
|
||||
<use xlink:href="#glyph0-3" x="189.919536" y="231.403"/>
|
||||
<use xlink:href="#glyph0-6" x="194.900836" y="231.403"/>
|
||||
<use xlink:href="#glyph0-8" x="200.436057" y="231.403"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-22" x="158.896" y="243.358"/>
|
||||
<use xlink:href="#glyph1-21" x="163.8773" y="243.358"/>
|
||||
<use xlink:href="#glyph0-23" x="158.896" y="243.358"/>
|
||||
<use xlink:href="#glyph0-22" x="163.8773" y="243.358"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-16" x="171.62621" y="243.358"/>
|
||||
<use xlink:href="#glyph1-2" x="177.161431" y="243.358"/>
|
||||
<use xlink:href="#glyph1-3" x="182.142731" y="243.358"/>
|
||||
<use xlink:href="#glyph1-19" x="186.072977" y="243.358"/>
|
||||
<use xlink:href="#glyph1-1" x="188.840587" y="243.358"/>
|
||||
<use xlink:href="#glyph0-17" x="171.62621" y="243.358"/>
|
||||
<use xlink:href="#glyph0-3" x="177.161431" y="243.358"/>
|
||||
<use xlink:href="#glyph0-4" x="182.142731" y="243.358"/>
|
||||
<use xlink:href="#glyph0-20" x="186.072977" y="243.358"/>
|
||||
<use xlink:href="#glyph0-2" x="188.840587" y="243.358"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-23" x="158.896" y="255.313"/>
|
||||
<use xlink:href="#glyph1-21" x="163.8773" y="255.313"/>
|
||||
<use xlink:href="#glyph0-24" x="158.896" y="255.313"/>
|
||||
<use xlink:href="#glyph0-22" x="163.8773" y="255.313"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-11" x="171.62621" y="255.313"/>
|
||||
<use xlink:href="#glyph1-6" x="175.528561" y="255.313"/>
|
||||
<use xlink:href="#glyph1-3" x="180.509861" y="255.313"/>
|
||||
<use xlink:href="#glyph1-8" x="184.440106" y="255.313"/>
|
||||
<use xlink:href="#glyph1-9" x="188.868482" y="255.313"/>
|
||||
<use xlink:href="#glyph1-2" x="197.170317" y="255.313"/>
|
||||
<use xlink:href="#glyph1-11" x="202.151617" y="255.313"/>
|
||||
<use xlink:href="#glyph1-24" x="206.053967" y="255.313"/>
|
||||
<use xlink:href="#glyph0-12" x="171.62621" y="255.313"/>
|
||||
<use xlink:href="#glyph0-8" x="175.528561" y="255.313"/>
|
||||
<use xlink:href="#glyph0-4" x="180.509861" y="255.313"/>
|
||||
<use xlink:href="#glyph0-7" x="184.440106" y="255.313"/>
|
||||
<use xlink:href="#glyph0-10" x="188.868482" y="255.313"/>
|
||||
<use xlink:href="#glyph0-3" x="197.170317" y="255.313"/>
|
||||
<use xlink:href="#glyph0-12" x="202.151617" y="255.313"/>
|
||||
<use xlink:href="#glyph0-25" x="206.053967" y="255.313"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="267.268"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="267.268"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-25" x="149.709" y="267.268"/>
|
||||
<use xlink:href="#glyph1-6" x="155.244221" y="267.268"/>
|
||||
<use xlink:href="#glyph1-17" x="160.225521" y="267.268"/>
|
||||
<use xlink:href="#glyph1-11" x="165.760741" y="267.268"/>
|
||||
<use xlink:href="#glyph0-26" x="149.709" y="267.268"/>
|
||||
<use xlink:href="#glyph0-8" x="155.244221" y="267.268"/>
|
||||
<use xlink:href="#glyph0-18" x="160.225521" y="267.268"/>
|
||||
<use xlink:href="#glyph0-12" x="165.760741" y="267.268"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="279.223"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="279.223"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-9" x="149.709" y="279.223"/>
|
||||
<use xlink:href="#glyph1-19" x="158.010835" y="279.223"/>
|
||||
<use xlink:href="#glyph1-1" x="160.778445" y="279.223"/>
|
||||
<use xlink:href="#glyph1-26" x="163.546055" y="279.223"/>
|
||||
<use xlink:href="#glyph0-10" x="149.709" y="279.223"/>
|
||||
<use xlink:href="#glyph0-20" x="158.010835" y="279.223"/>
|
||||
<use xlink:href="#glyph0-2" x="160.778445" y="279.223"/>
|
||||
<use xlink:href="#glyph0-27" x="163.546055" y="279.223"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="291.178"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="291.178"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-3" x="149.709" y="291.178"/>
|
||||
<use xlink:href="#glyph1-2" x="153.639246" y="291.178"/>
|
||||
<use xlink:href="#glyph1-1" x="158.620546" y="291.178"/>
|
||||
<use xlink:href="#glyph1-15" x="161.388156" y="291.178"/>
|
||||
<use xlink:href="#glyph0-4" x="149.709" y="291.178"/>
|
||||
<use xlink:href="#glyph0-3" x="153.639246" y="291.178"/>
|
||||
<use xlink:href="#glyph0-2" x="158.620546" y="291.178"/>
|
||||
<use xlink:href="#glyph0-16" x="161.388156" y="291.178"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-1" x="139.746" y="303.134"/>
|
||||
<use xlink:href="#glyph0-1" x="136.978" y="303.134"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-18" x="149.709" y="303.134"/>
|
||||
<use xlink:href="#glyph0-19" x="149.709" y="303.134"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="155.523173" y="303.134"/>
|
||||
<use xlink:href="#glyph1-18" x="159.951549" y="303.134"/>
|
||||
<use xlink:href="#glyph1-18" x="165.48677" y="303.134"/>
|
||||
<use xlink:href="#glyph0-7" x="155.523173" y="303.134"/>
|
||||
<use xlink:href="#glyph0-19" x="159.951549" y="303.134"/>
|
||||
<use xlink:href="#glyph0-19" x="165.48677" y="303.134"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-8" x="171.29098" y="303.134"/>
|
||||
<use xlink:href="#glyph1-11" x="175.719356" y="303.134"/>
|
||||
<use xlink:href="#glyph0-7" x="171.29098" y="303.134"/>
|
||||
<use xlink:href="#glyph0-12" x="175.719356" y="303.134"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
@ -9,7 +9,7 @@
|
||||
\thispagestyle{empty}
|
||||
|
||||
\begin{compactitem}
|
||||
\item lasagna noodles
|
||||
\item lasagne noodles
|
||||
\item mozzarella cheese
|
||||
\item vegetables \begin{compactitem}
|
||||
\item crushed tomatoes
|
||||
|
||||
@ -457,68 +457,69 @@
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-23" x="101.258285" y="23.669"/>
|
||||
<use xlink:href="#glyph0-18" x="104.508904" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="109.710612" y="23.669"/>
|
||||
<use xlink:href="#glyph0-29" x="109.710612" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="113.286412" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-29" x="114.909928" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="118.485728" y="23.669"/>
|
||||
<use xlink:href="#glyph0-33" x="120.434426" y="23.669"/>
|
||||
<use xlink:href="#glyph0-8" x="129.537115" y="23.669"/>
|
||||
<use xlink:href="#glyph0-31" x="134.08846" y="23.669"/>
|
||||
<use xlink:href="#glyph0-25" x="142.540786" y="23.669"/>
|
||||
<use xlink:href="#glyph0-26" x="148.392857" y="23.669"/>
|
||||
<use xlink:href="#glyph0-34" x="154.244927" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-33" x="125.633742" y="23.669"/>
|
||||
<use xlink:href="#glyph0-8" x="134.736432" y="23.669"/>
|
||||
<use xlink:href="#glyph0-31" x="139.287776" y="23.669"/>
|
||||
<use xlink:href="#glyph0-25" x="147.740103" y="23.669"/>
|
||||
<use xlink:href="#glyph0-26" x="153.592173" y="23.669"/>
|
||||
<use xlink:href="#glyph0-34" x="159.444244" y="23.669"/>
|
||||
<use xlink:href="#glyph0-12" x="161.392941" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="167.894179" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="166.592258" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="173.093495" y="23.669"/>
|
||||
<use xlink:href="#glyph0-26" x="176.34531" y="23.669"/>
|
||||
<use xlink:href="#glyph0-27" x="182.19738" y="23.669"/>
|
||||
<use xlink:href="#glyph0-34" x="185.447999" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-26" x="181.544626" y="23.669"/>
|
||||
<use xlink:href="#glyph0-27" x="187.396697" y="23.669"/>
|
||||
<use xlink:href="#glyph0-34" x="190.647316" y="23.669"/>
|
||||
<use xlink:href="#glyph0-10" x="192.607968" y="23.669"/>
|
||||
<use xlink:href="#glyph0-29" x="198.460039" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="197.807285" y="23.669"/>
|
||||
<use xlink:href="#glyph0-29" x="203.659355" y="23.669"/>
|
||||
<use xlink:href="#glyph0-31" x="205.933234" y="23.669"/>
|
||||
<use xlink:href="#glyph0-2" x="214.385561" y="23.669"/>
|
||||
<use xlink:href="#glyph0-3" x="220.886798" y="23.669"/>
|
||||
<use xlink:href="#glyph0-18" x="224.137417" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-31" x="211.132551" y="23.669"/>
|
||||
<use xlink:href="#glyph0-2" x="219.584877" y="23.669"/>
|
||||
<use xlink:href="#glyph0-3" x="226.086115" y="23.669"/>
|
||||
<use xlink:href="#glyph0-18" x="229.336734" y="23.669"/>
|
||||
<use xlink:href="#glyph0-2" x="229.016334" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="234.215651" y="23.669"/>
|
||||
<use xlink:href="#glyph0-23" x="239.414967" y="23.669"/>
|
||||
<use xlink:href="#glyph0-35" x="242.665586" y="23.669"/>
|
||||
<use xlink:href="#glyph0-17" x="251.438312" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-23" x="244.614284" y="23.669"/>
|
||||
<use xlink:href="#glyph0-35" x="247.864903" y="23.669"/>
|
||||
<use xlink:href="#glyph0-17" x="256.637628" y="23.669"/>
|
||||
<use xlink:href="#glyph0-31" x="256.967592" y="23.669"/>
|
||||
<use xlink:href="#glyph0-36" x="265.419918" y="23.669"/>
|
||||
<use xlink:href="#glyph0-36" x="271.271989" y="23.669"/>
|
||||
<use xlink:href="#glyph0-27" x="277.124059" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-31" x="262.166908" y="23.669"/>
|
||||
<use xlink:href="#glyph0-36" x="270.619235" y="23.669"/>
|
||||
<use xlink:href="#glyph0-36" x="276.471305" y="23.669"/>
|
||||
<use xlink:href="#glyph0-27" x="282.323376" y="23.669"/>
|
||||
<use xlink:href="#glyph0-3" x="284.272073" y="23.669"/>
|
||||
<use xlink:href="#glyph0-4" x="287.522692" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="289.47139" y="23.669"/>
|
||||
<use xlink:href="#glyph0-4" x="292.722009" y="23.669"/>
|
||||
<use xlink:href="#glyph0-10" x="296.047945" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="301.247262" y="23.669"/>
|
||||
<use xlink:href="#glyph0-11" x="307.099332" y="23.669"/>
|
||||
<use xlink:href="#glyph0-14" x="313.60057" y="23.669"/>
|
||||
<use xlink:href="#glyph0-15" x="316.851189" y="23.669"/>
|
||||
<use xlink:href="#glyph0-11" x="301.88806" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="326.925836" y="23.669"/>
|
||||
<use xlink:href="#glyph0-11" x="332.777906" y="23.669"/>
|
||||
<use xlink:href="#glyph0-6" x="339.279144" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="344.480852" y="23.669"/>
|
||||
<use xlink:href="#glyph0-14" x="308.401253" y="23.669"/>
|
||||
<use xlink:href="#glyph0-15" x="311.651872" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="321.726519" y="23.669"/>
|
||||
<use xlink:href="#glyph0-11" x="327.57859" y="23.669"/>
|
||||
<use xlink:href="#glyph0-6" x="334.079828" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="339.281535" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="0.409" y="63.598"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 152 KiB |
@ -457,68 +457,69 @@
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-23" x="175.258285" y="96.559"/>
|
||||
<use xlink:href="#glyph0-18" x="178.508904" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="183.710612" y="96.559"/>
|
||||
<use xlink:href="#glyph0-29" x="183.710612" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="187.286412" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-29" x="188.909928" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="192.485728" y="96.559"/>
|
||||
<use xlink:href="#glyph0-33" x="194.434426" y="96.559"/>
|
||||
<use xlink:href="#glyph0-8" x="203.537115" y="96.559"/>
|
||||
<use xlink:href="#glyph0-31" x="208.08846" y="96.559"/>
|
||||
<use xlink:href="#glyph0-25" x="216.540786" y="96.559"/>
|
||||
<use xlink:href="#glyph0-26" x="222.392857" y="96.559"/>
|
||||
<use xlink:href="#glyph0-34" x="228.244927" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-33" x="199.633742" y="96.559"/>
|
||||
<use xlink:href="#glyph0-8" x="208.736432" y="96.559"/>
|
||||
<use xlink:href="#glyph0-31" x="213.287776" y="96.559"/>
|
||||
<use xlink:href="#glyph0-25" x="221.740103" y="96.559"/>
|
||||
<use xlink:href="#glyph0-26" x="227.592173" y="96.559"/>
|
||||
<use xlink:href="#glyph0-34" x="233.444244" y="96.559"/>
|
||||
<use xlink:href="#glyph0-12" x="235.392941" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="241.894179" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="240.592258" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="247.093495" y="96.559"/>
|
||||
<use xlink:href="#glyph0-26" x="250.34531" y="96.559"/>
|
||||
<use xlink:href="#glyph0-27" x="256.19738" y="96.559"/>
|
||||
<use xlink:href="#glyph0-34" x="259.447999" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-26" x="255.544626" y="96.559"/>
|
||||
<use xlink:href="#glyph0-27" x="261.396697" y="96.559"/>
|
||||
<use xlink:href="#glyph0-34" x="264.647316" y="96.559"/>
|
||||
<use xlink:href="#glyph0-10" x="266.607968" y="96.559"/>
|
||||
<use xlink:href="#glyph0-29" x="272.460039" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="271.807285" y="96.559"/>
|
||||
<use xlink:href="#glyph0-29" x="277.659355" y="96.559"/>
|
||||
<use xlink:href="#glyph0-31" x="279.933234" y="96.559"/>
|
||||
<use xlink:href="#glyph0-2" x="288.385561" y="96.559"/>
|
||||
<use xlink:href="#glyph0-3" x="294.886798" y="96.559"/>
|
||||
<use xlink:href="#glyph0-18" x="298.137417" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-31" x="285.132551" y="96.559"/>
|
||||
<use xlink:href="#glyph0-2" x="293.584877" y="96.559"/>
|
||||
<use xlink:href="#glyph0-3" x="300.086115" y="96.559"/>
|
||||
<use xlink:href="#glyph0-18" x="303.336734" y="96.559"/>
|
||||
<use xlink:href="#glyph0-2" x="303.016334" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="308.215651" y="96.559"/>
|
||||
<use xlink:href="#glyph0-23" x="313.414967" y="96.559"/>
|
||||
<use xlink:href="#glyph0-35" x="316.665586" y="96.559"/>
|
||||
<use xlink:href="#glyph0-17" x="325.438312" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-23" x="318.614284" y="96.559"/>
|
||||
<use xlink:href="#glyph0-35" x="321.864903" y="96.559"/>
|
||||
<use xlink:href="#glyph0-17" x="330.637628" y="96.559"/>
|
||||
<use xlink:href="#glyph0-31" x="330.967592" y="96.559"/>
|
||||
<use xlink:href="#glyph0-36" x="339.419918" y="96.559"/>
|
||||
<use xlink:href="#glyph0-36" x="345.271989" y="96.559"/>
|
||||
<use xlink:href="#glyph0-27" x="351.124059" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-31" x="336.166908" y="96.559"/>
|
||||
<use xlink:href="#glyph0-36" x="344.619235" y="96.559"/>
|
||||
<use xlink:href="#glyph0-36" x="350.471305" y="96.559"/>
|
||||
<use xlink:href="#glyph0-27" x="356.323376" y="96.559"/>
|
||||
<use xlink:href="#glyph0-3" x="358.272073" y="96.559"/>
|
||||
<use xlink:href="#glyph0-4" x="361.522692" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="363.47139" y="96.559"/>
|
||||
<use xlink:href="#glyph0-4" x="366.722009" y="96.559"/>
|
||||
<use xlink:href="#glyph0-10" x="370.047945" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="375.247262" y="96.559"/>
|
||||
<use xlink:href="#glyph0-11" x="381.099332" y="96.559"/>
|
||||
<use xlink:href="#glyph0-14" x="387.60057" y="96.559"/>
|
||||
<use xlink:href="#glyph0-15" x="390.851189" y="96.559"/>
|
||||
<use xlink:href="#glyph0-11" x="375.88806" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="400.925836" y="96.559"/>
|
||||
<use xlink:href="#glyph0-11" x="406.777906" y="96.559"/>
|
||||
<use xlink:href="#glyph0-6" x="413.279144" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="418.480852" y="96.559"/>
|
||||
<use xlink:href="#glyph0-14" x="382.401253" y="96.559"/>
|
||||
<use xlink:href="#glyph0-15" x="385.651872" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="395.726519" y="96.559"/>
|
||||
<use xlink:href="#glyph0-11" x="401.57859" y="96.559"/>
|
||||
<use xlink:href="#glyph0-6" x="408.079828" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="413.281535" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="74.409" y="136.488"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 152 KiB |
@ -1,5 +1,5 @@
|
||||
This is BibTeX, Version 0.99d (TeX Live 2019/Debian)
|
||||
Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
|
||||
This is BibTeX, Version 0.99d (TeX Live 2020)
|
||||
Capacity: max_strings=200000, hash_size=200000, hash_prime=170003
|
||||
The top-level auxiliary file: bibtex-alpha-example.aux
|
||||
The style file: alpha.bst
|
||||
Database file #1: collection.bib
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
|
||||
This text thrives on prominently-placed citations (e.\thinspace g. \cite{Frank1957}) of much more prominent literary works \cite[c.\thinspace f.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
|
||||
This text thrives on prominently-placed citations (e.\thinspace g. \cite{Frank1957}) of much more prominent literary works \cite[cf.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
|
||||
\bibliographystyle{alpha}
|
||||
\bibliography{collection}
|
||||
|
||||
|
||||
@ -1,22 +0,0 @@
|
||||
\begin{thebibliography}{Haw88}
|
||||
|
||||
\bibitem[Fra57]{Frank1957}
|
||||
Anne Frank.
|
||||
\newblock {\em Das Tagebuch der Anne Frank}.
|
||||
\newblock Fischer-B{\"u}cherei. Fischer ; Fischer, Frankfurt/M. ; Frankfurt/M.,
|
||||
1957.
|
||||
\newblock EST: Het Achterhuis (dt.).
|
||||
|
||||
\bibitem[Haw88]{Hawking1988}
|
||||
Stephen~W. Hawking.
|
||||
\newblock {\em Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des
|
||||
Universums}.
|
||||
\newblock Rowohlt, Reinbek bei Hamburg, 23.-42. tsd. edition, 1988.
|
||||
\newblock 238 S. : Ill., graph. Darst.
|
||||
|
||||
\bibitem[Orw57]{Orwell1957}
|
||||
George Orwell.
|
||||
\newblock {\em 1984}.
|
||||
\newblock Diana-Verl., Konstanz, 1957.
|
||||
|
||||
\end{thebibliography}
|
||||
@ -1,46 +0,0 @@
|
||||
This is BibTeX, Version 0.99d (TeX Live 2017/Debian)
|
||||
Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
|
||||
The top-level auxiliary file: bibtex-alpha.aux
|
||||
The style file: alpha.bst
|
||||
Database file #1: collection.bib
|
||||
You've used 3 entries,
|
||||
2543 wiz_defined-function locations,
|
||||
582 strings with 4843 characters,
|
||||
and the built_in function-call counts, 882 in all, are:
|
||||
= -- 82
|
||||
> -- 24
|
||||
< -- 3
|
||||
+ -- 6
|
||||
- -- 6
|
||||
* -- 47
|
||||
:= -- 160
|
||||
add.period$ -- 12
|
||||
call.type$ -- 3
|
||||
change.case$ -- 13
|
||||
chr.to.int$ -- 3
|
||||
cite$ -- 3
|
||||
duplicate$ -- 48
|
||||
empty$ -- 76
|
||||
format.name$ -- 12
|
||||
if$ -- 180
|
||||
int.to.chr$ -- 1
|
||||
int.to.str$ -- 0
|
||||
missing$ -- 6
|
||||
newline$ -- 20
|
||||
num.names$ -- 9
|
||||
pop$ -- 19
|
||||
preamble$ -- 1
|
||||
purify$ -- 18
|
||||
quote$ -- 0
|
||||
skip$ -- 30
|
||||
stack$ -- 0
|
||||
substring$ -- 21
|
||||
swap$ -- 3
|
||||
text.length$ -- 3
|
||||
text.prefix$ -- 3
|
||||
top$ -- 0
|
||||
type$ -- 12
|
||||
warning$ -- 0
|
||||
while$ -- 6
|
||||
width$ -- 5
|
||||
write$ -- 47
|
||||
|
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 151 KiB After Width: | Height: | Size: 38 KiB |
@ -1,21 +0,0 @@
|
||||
\begin{thebibliography}{}
|
||||
|
||||
\bibitem[\protect\astroncite{Frank}{1957}]{Frank1957}
|
||||
Frank, A. (1957).
|
||||
\newblock {\em Das Tagebuch der Anne Frank}.
|
||||
\newblock Fischer-B{\"u}cherei. Fischer ; Fischer, Frankfurt/M. ; Frankfurt/M.
|
||||
\newblock EST: Het Achterhuis (dt.).
|
||||
|
||||
\bibitem[\protect\astroncite{Hawking}{1988}]{Hawking1988}
|
||||
Hawking, S.~W. (1988).
|
||||
\newblock {\em Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des
|
||||
Universums}.
|
||||
\newblock Rowohlt, Reinbek bei Hamburg, 23.-42. tsd. edition.
|
||||
\newblock 238 S. : Ill., graph. Darst.
|
||||
|
||||
\bibitem[\protect\astroncite{Orwell}{1957}]{Orwell1957}
|
||||
Orwell, G. (1957).
|
||||
\newblock {\em 1984}.
|
||||
\newblock Diana-Verl., Konstanz.
|
||||
|
||||
\end{thebibliography}
|
||||
@ -1,46 +1,51 @@
|
||||
This is BibTeX, Version 0.99d (TeX Live 2019/Debian)
|
||||
Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
|
||||
This is BibTeX, Version 0.99d (TeX Live 2020)
|
||||
Capacity: max_strings=200000, hash_size=200000, hash_prime=170003
|
||||
The top-level auxiliary file: bibtex-apa-example.aux
|
||||
The style file: apa.bst
|
||||
Database file #1: collection.bib
|
||||
I couldn't open style file apa.bst
|
||||
---line 7 of file bibtex-apa-example.aux
|
||||
: \bibstyle{apa
|
||||
: }
|
||||
I'm skipping whatever remains of this command
|
||||
I found no style file---while reading file bibtex-apa-example.aux
|
||||
You've used 3 entries,
|
||||
1940 wiz_defined-function locations,
|
||||
497 strings with 4106 characters,
|
||||
and the built_in function-call counts, 901 in all, are:
|
||||
= -- 88
|
||||
> -- 21
|
||||
< -- 3
|
||||
+ -- 6
|
||||
- -- 6
|
||||
* -- 63
|
||||
:= -- 171
|
||||
add.period$ -- 12
|
||||
call.type$ -- 3
|
||||
change.case$ -- 16
|
||||
chr.to.int$ -- 3
|
||||
cite$ -- 3
|
||||
duplicate$ -- 42
|
||||
empty$ -- 70
|
||||
format.name$ -- 9
|
||||
if$ -- 176
|
||||
int.to.chr$ -- 1
|
||||
0 wiz_defined-function locations,
|
||||
91 strings with 583 characters,
|
||||
and the built_in function-call counts, 0 in all, are:
|
||||
= -- 0
|
||||
> -- 0
|
||||
< -- 0
|
||||
+ -- 0
|
||||
- -- 0
|
||||
* -- 0
|
||||
:= -- 0
|
||||
add.period$ -- 0
|
||||
call.type$ -- 0
|
||||
change.case$ -- 0
|
||||
chr.to.int$ -- 0
|
||||
cite$ -- 0
|
||||
duplicate$ -- 0
|
||||
empty$ -- 0
|
||||
format.name$ -- 0
|
||||
if$ -- 0
|
||||
int.to.chr$ -- 0
|
||||
int.to.str$ -- 0
|
||||
missing$ -- 6
|
||||
newline$ -- 20
|
||||
num.names$ -- 9
|
||||
pop$ -- 16
|
||||
preamble$ -- 1
|
||||
purify$ -- 18
|
||||
missing$ -- 0
|
||||
newline$ -- 0
|
||||
num.names$ -- 0
|
||||
pop$ -- 0
|
||||
preamble$ -- 0
|
||||
purify$ -- 0
|
||||
quote$ -- 0
|
||||
skip$ -- 31
|
||||
skip$ -- 0
|
||||
stack$ -- 0
|
||||
substring$ -- 36
|
||||
swap$ -- 6
|
||||
substring$ -- 0
|
||||
swap$ -- 0
|
||||
text.length$ -- 0
|
||||
text.prefix$ -- 0
|
||||
top$ -- 0
|
||||
type$ -- 12
|
||||
type$ -- 0
|
||||
warning$ -- 0
|
||||
while$ -- 6
|
||||
while$ -- 0
|
||||
width$ -- 0
|
||||
write$ -- 47
|
||||
write$ -- 0
|
||||
(There were 2 error messages)
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
|
||||
This text thrives on prominently-placed citations (e.\thinspace g. \cite{Frank1957}) of much more prominent literary works \cite[c.\thinspace f.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
|
||||
This text thrives on prominently-placed citations (e.\thinspace g. \cite{Frank1957}) of much more prominent literary works \cite[cf.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
|
||||
\bibliographystyle{apa}
|
||||
\bibliography{collection}
|
||||
|
||||
|
||||
@ -1,21 +0,0 @@
|
||||
\begin{thebibliography}{}
|
||||
|
||||
\bibitem[\protect\astroncite{Frank}{1957}]{Frank1957}
|
||||
Frank, A. (1957).
|
||||
\newblock {\em Das Tagebuch der Anne Frank}.
|
||||
\newblock Fischer-B{\"u}cherei. Fischer ; Fischer, Frankfurt/M. ; Frankfurt/M.
|
||||
\newblock EST: Het Achterhuis (dt.).
|
||||
|
||||
\bibitem[\protect\astroncite{Hawking}{1988}]{Hawking1988}
|
||||
Hawking, S.~W. (1988).
|
||||
\newblock {\em Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des
|
||||
Universums}.
|
||||
\newblock Rowohlt, Reinbek bei Hamburg, 23.-42. tsd. edition.
|
||||
\newblock 238 S. : Ill., graph. Darst.
|
||||
|
||||
\bibitem[\protect\astroncite{Orwell}{1957}]{Orwell1957}
|
||||
Orwell, G. (1957).
|
||||
\newblock {\em 1984}.
|
||||
\newblock Diana-Verl., Konstanz.
|
||||
|
||||
\end{thebibliography}
|
||||
@ -1,46 +0,0 @@
|
||||
This is BibTeX, Version 0.99d (TeX Live 2017/Debian)
|
||||
Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
|
||||
The top-level auxiliary file: bibtex-apa.aux
|
||||
The style file: apa.bst
|
||||
Database file #1: collection.bib
|
||||
You've used 3 entries,
|
||||
1940 wiz_defined-function locations,
|
||||
497 strings with 4090 characters,
|
||||
and the built_in function-call counts, 901 in all, are:
|
||||
= -- 88
|
||||
> -- 21
|
||||
< -- 3
|
||||
+ -- 6
|
||||
- -- 6
|
||||
* -- 63
|
||||
:= -- 171
|
||||
add.period$ -- 12
|
||||
call.type$ -- 3
|
||||
change.case$ -- 16
|
||||
chr.to.int$ -- 3
|
||||
cite$ -- 3
|
||||
duplicate$ -- 42
|
||||
empty$ -- 70
|
||||
format.name$ -- 9
|
||||
if$ -- 176
|
||||
int.to.chr$ -- 1
|
||||
int.to.str$ -- 0
|
||||
missing$ -- 6
|
||||
newline$ -- 20
|
||||
num.names$ -- 9
|
||||
pop$ -- 16
|
||||
preamble$ -- 1
|
||||
purify$ -- 18
|
||||
quote$ -- 0
|
||||
skip$ -- 31
|
||||
stack$ -- 0
|
||||
substring$ -- 36
|
||||
swap$ -- 6
|
||||
text.length$ -- 0
|
||||
text.prefix$ -- 0
|
||||
top$ -- 0
|
||||
type$ -- 12
|
||||
warning$ -- 0
|
||||
while$ -- 6
|
||||
width$ -- 0
|
||||
write$ -- 47
|
||||
@ -483,109 +483,106 @@
|
||||
<use xlink:href="#glyph0-5" x="48.198716" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="55.98992" y="23.669"/>
|
||||
<use xlink:href="#glyph0-3" x="59.240539" y="23.669"/>
|
||||
<use xlink:href="#glyph0-5" x="62.491158" y="23.669"/>
|
||||
<use xlink:href="#glyph0-6" x="67.042503" y="23.669"/>
|
||||
<use xlink:href="#glyph0-8" x="72.24421" y="23.669"/>
|
||||
<use xlink:href="#glyph0-17" x="76.795555" y="23.669"/>
|
||||
<use xlink:href="#glyph0-8" x="82.647625" y="23.669"/>
|
||||
<use xlink:href="#glyph0-15" x="87.19897" y="23.669"/>
|
||||
<use xlink:href="#glyph0-14" x="56.384442" y="23.669"/>
|
||||
<use xlink:href="#glyph0-3" x="59.635061" y="23.669"/>
|
||||
<use xlink:href="#glyph0-5" x="62.88568" y="23.669"/>
|
||||
<use xlink:href="#glyph0-6" x="67.437024" y="23.669"/>
|
||||
<use xlink:href="#glyph0-8" x="72.638732" y="23.669"/>
|
||||
<use xlink:href="#glyph0-17" x="77.190076" y="23.669"/>
|
||||
<use xlink:href="#glyph0-8" x="83.042147" y="23.669"/>
|
||||
<use xlink:href="#glyph0-15" x="87.593492" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-32" x="96.616081" y="23.669"/>
|
||||
<use xlink:href="#glyph0-32" x="97.393169" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="104.733662" y="23.669"/>
|
||||
<use xlink:href="#glyph0-8" x="110.585732" y="23.669"/>
|
||||
<use xlink:href="#glyph0-24" x="115.137077" y="23.669"/>
|
||||
<use xlink:href="#glyph0-4" x="121.314329" y="23.669"/>
|
||||
<use xlink:href="#glyph0-10" x="105.522705" y="23.669"/>
|
||||
<use xlink:href="#glyph0-8" x="111.374775" y="23.669"/>
|
||||
<use xlink:href="#glyph0-24" x="115.92612" y="23.669"/>
|
||||
<use xlink:href="#glyph0-4" x="122.103372" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-20" x="129.170091" y="23.669"/>
|
||||
<use xlink:href="#glyph0-18" x="133.721435" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="138.923143" y="23.669"/>
|
||||
<use xlink:href="#glyph0-20" x="130.353655" y="23.669"/>
|
||||
<use xlink:href="#glyph0-18" x="134.905" y="23.669"/>
|
||||
<use xlink:href="#glyph0-30" x="140.106708" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="143.682508" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-30" x="144.122459" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="147.69826" y="23.669"/>
|
||||
<use xlink:href="#glyph0-33" x="150.555552" y="23.669"/>
|
||||
<use xlink:href="#glyph0-8" x="159.658242" y="23.669"/>
|
||||
<use xlink:href="#glyph0-32" x="164.209586" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-33" x="154.188738" y="23.669"/>
|
||||
<use xlink:href="#glyph0-8" x="163.291427" y="23.669"/>
|
||||
<use xlink:href="#glyph0-32" x="167.842772" y="23.669"/>
|
||||
<use xlink:href="#glyph0-6" x="172.339122" y="23.669"/>
|
||||
<use xlink:href="#glyph0-14" x="177.54083" y="23.669"/>
|
||||
<use xlink:href="#glyph0-14" x="180.791449" y="23.669"/>
|
||||
<use xlink:href="#glyph0-34" x="184.042068" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="175.972308" y="23.669"/>
|
||||
<use xlink:href="#glyph0-14" x="181.174015" y="23.669"/>
|
||||
<use xlink:href="#glyph0-14" x="184.424634" y="23.669"/>
|
||||
<use xlink:href="#glyph0-34" x="187.675253" y="23.669"/>
|
||||
<use xlink:href="#glyph0-25" x="190.927067" y="23.669"/>
|
||||
<use xlink:href="#glyph0-26" x="196.779138" y="23.669"/>
|
||||
<use xlink:href="#glyph0-27" x="202.631208" y="23.669"/>
|
||||
<use xlink:href="#glyph0-28" x="208.483278" y="23.669"/>
|
||||
<use xlink:href="#glyph0-34" x="214.335349" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-25" x="194.165731" y="23.669"/>
|
||||
<use xlink:href="#glyph0-26" x="200.017801" y="23.669"/>
|
||||
<use xlink:href="#glyph0-27" x="205.869872" y="23.669"/>
|
||||
<use xlink:href="#glyph0-28" x="211.721942" y="23.669"/>
|
||||
<use xlink:href="#glyph0-34" x="217.574012" y="23.669"/>
|
||||
<use xlink:href="#glyph0-12" x="221.268169" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="227.769407" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="224.195998" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="230.697236" y="23.669"/>
|
||||
<use xlink:href="#glyph0-28" x="236.124896" y="23.669"/>
|
||||
<use xlink:href="#glyph0-29" x="241.976967" y="23.669"/>
|
||||
<use xlink:href="#glyph0-34" x="246.528311" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-28" x="238.921218" y="23.669"/>
|
||||
<use xlink:href="#glyph0-29" x="244.773288" y="23.669"/>
|
||||
<use xlink:href="#glyph0-34" x="249.324633" y="23.669"/>
|
||||
<use xlink:href="#glyph0-10" x="253.461132" y="23.669"/>
|
||||
<use xlink:href="#glyph0-30" x="259.313202" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="255.946618" y="23.669"/>
|
||||
<use xlink:href="#glyph0-30" x="261.798688" y="23.669"/>
|
||||
<use xlink:href="#glyph0-32" x="266.523383" y="23.669"/>
|
||||
<use xlink:href="#glyph0-2" x="274.97571" y="23.669"/>
|
||||
<use xlink:href="#glyph0-3" x="281.476948" y="23.669"/>
|
||||
<use xlink:href="#glyph0-18" x="284.727566" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-32" x="268.614348" y="23.669"/>
|
||||
<use xlink:href="#glyph0-2" x="277.066674" y="23.669"/>
|
||||
<use xlink:href="#glyph0-3" x="283.567912" y="23.669"/>
|
||||
<use xlink:href="#glyph0-18" x="286.818531" y="23.669"/>
|
||||
<use xlink:href="#glyph0-2" x="289.606484" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="291.697448" y="23.669"/>
|
||||
<use xlink:href="#glyph0-35" x="299.742102" y="23.669"/>
|
||||
<use xlink:href="#glyph0-17" x="308.514828" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-35" x="301.438545" y="23.669"/>
|
||||
<use xlink:href="#glyph0-17" x="310.211271" y="23.669"/>
|
||||
<use xlink:href="#glyph0-32" x="314.032153" y="23.669"/>
|
||||
<use xlink:href="#glyph0-24" x="322.484479" y="23.669"/>
|
||||
<use xlink:href="#glyph0-3" x="328.661731" y="23.669"/>
|
||||
<use xlink:href="#glyph0-11" x="331.91235" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-32" x="315.740551" y="23.669"/>
|
||||
<use xlink:href="#glyph0-24" x="324.192877" y="23.669"/>
|
||||
<use xlink:href="#glyph0-3" x="330.370129" y="23.669"/>
|
||||
<use xlink:href="#glyph0-11" x="333.620748" y="23.669"/>
|
||||
<use xlink:href="#glyph0-22" x="340.121986" y="23.669"/>
|
||||
<use xlink:href="#glyph0-22" x="338.425543" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-20" x="349.213915" y="23.669"/>
|
||||
<use xlink:href="#glyph0-25" x="353.76526" y="23.669"/>
|
||||
<use xlink:href="#glyph0-26" x="359.61733" y="23.669"/>
|
||||
<use xlink:href="#glyph0-20" x="347.900039" y="23.669"/>
|
||||
<use xlink:href="#glyph0-25" x="352.451383" y="23.669"/>
|
||||
<use xlink:href="#glyph0-26" x="358.303454" y="23.669"/>
|
||||
<use xlink:href="#glyph0-36" x="364.155524" y="23.669"/>
|
||||
<use xlink:href="#glyph0-36" x="370.007595" y="23.669"/>
|
||||
<use xlink:href="#glyph0-29" x="375.859665" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-36" x="365.457445" y="23.669"/>
|
||||
<use xlink:href="#glyph0-36" x="371.309516" y="23.669"/>
|
||||
<use xlink:href="#glyph0-29" x="377.161586" y="23.669"/>
|
||||
<use xlink:href="#glyph0-3" x="384.04539" y="23.669"/>
|
||||
<use xlink:href="#glyph0-4" x="387.296009" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="384.95279" y="23.669"/>
|
||||
<use xlink:href="#glyph0-4" x="388.203409" y="23.669"/>
|
||||
<use xlink:href="#glyph0-10" x="395.534338" y="23.669"/>
|
||||
<use xlink:href="#glyph0-11" x="401.386408" y="23.669"/>
|
||||
<use xlink:href="#glyph0-14" x="407.887646" y="23.669"/>
|
||||
<use xlink:href="#glyph0-15" x="411.138265" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="396.059171" y="23.669"/>
|
||||
<use xlink:href="#glyph0-11" x="401.911241" y="23.669"/>
|
||||
<use xlink:href="#glyph0-14" x="408.412479" y="23.669"/>
|
||||
<use xlink:href="#glyph0-15" x="411.663098" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="421.080209" y="23.669"/>
|
||||
<use xlink:href="#glyph0-11" x="426.932279" y="23.669"/>
|
||||
<use xlink:href="#glyph0-6" x="433.433517" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="438.635225" y="23.669"/>
|
||||
<use xlink:href="#glyph0-10" x="420.949897" y="23.669"/>
|
||||
<use xlink:href="#glyph0-11" x="426.801968" y="23.669"/>
|
||||
<use xlink:href="#glyph0-6" x="433.303205" y="23.669"/>
|
||||
<use xlink:href="#glyph0-21" x="438.504913" y="23.669"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="0.409" y="63.598"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 170 KiB After Width: | Height: | Size: 170 KiB |
@ -483,109 +483,106 @@
|
||||
<use xlink:href="#glyph0-5" x="122.198716" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-14" x="129.98992" y="96.559"/>
|
||||
<use xlink:href="#glyph0-3" x="133.240539" y="96.559"/>
|
||||
<use xlink:href="#glyph0-5" x="136.491158" y="96.559"/>
|
||||
<use xlink:href="#glyph0-6" x="141.042503" y="96.559"/>
|
||||
<use xlink:href="#glyph0-8" x="146.24421" y="96.559"/>
|
||||
<use xlink:href="#glyph0-17" x="150.795555" y="96.559"/>
|
||||
<use xlink:href="#glyph0-8" x="156.647625" y="96.559"/>
|
||||
<use xlink:href="#glyph0-15" x="161.19897" y="96.559"/>
|
||||
<use xlink:href="#glyph0-14" x="130.384442" y="96.559"/>
|
||||
<use xlink:href="#glyph0-3" x="133.635061" y="96.559"/>
|
||||
<use xlink:href="#glyph0-5" x="136.88568" y="96.559"/>
|
||||
<use xlink:href="#glyph0-6" x="141.437024" y="96.559"/>
|
||||
<use xlink:href="#glyph0-8" x="146.638732" y="96.559"/>
|
||||
<use xlink:href="#glyph0-17" x="151.190076" y="96.559"/>
|
||||
<use xlink:href="#glyph0-8" x="157.042147" y="96.559"/>
|
||||
<use xlink:href="#glyph0-15" x="161.593492" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-32" x="170.616081" y="96.559"/>
|
||||
<use xlink:href="#glyph0-32" x="171.393169" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="178.733662" y="96.559"/>
|
||||
<use xlink:href="#glyph0-8" x="184.585732" y="96.559"/>
|
||||
<use xlink:href="#glyph0-24" x="189.137077" y="96.559"/>
|
||||
<use xlink:href="#glyph0-4" x="195.314329" y="96.559"/>
|
||||
<use xlink:href="#glyph0-10" x="179.522705" y="96.559"/>
|
||||
<use xlink:href="#glyph0-8" x="185.374775" y="96.559"/>
|
||||
<use xlink:href="#glyph0-24" x="189.92612" y="96.559"/>
|
||||
<use xlink:href="#glyph0-4" x="196.103372" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-20" x="203.170091" y="96.559"/>
|
||||
<use xlink:href="#glyph0-18" x="207.721435" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="212.923143" y="96.559"/>
|
||||
<use xlink:href="#glyph0-20" x="204.353655" y="96.559"/>
|
||||
<use xlink:href="#glyph0-18" x="208.905" y="96.559"/>
|
||||
<use xlink:href="#glyph0-30" x="214.106708" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="217.682508" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-30" x="218.122459" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="221.69826" y="96.559"/>
|
||||
<use xlink:href="#glyph0-33" x="224.555552" y="96.559"/>
|
||||
<use xlink:href="#glyph0-8" x="233.658242" y="96.559"/>
|
||||
<use xlink:href="#glyph0-32" x="238.209586" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-33" x="228.188738" y="96.559"/>
|
||||
<use xlink:href="#glyph0-8" x="237.291427" y="96.559"/>
|
||||
<use xlink:href="#glyph0-32" x="241.842772" y="96.559"/>
|
||||
<use xlink:href="#glyph0-6" x="246.339122" y="96.559"/>
|
||||
<use xlink:href="#glyph0-14" x="251.54083" y="96.559"/>
|
||||
<use xlink:href="#glyph0-14" x="254.791449" y="96.559"/>
|
||||
<use xlink:href="#glyph0-34" x="258.042068" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-6" x="249.972308" y="96.559"/>
|
||||
<use xlink:href="#glyph0-14" x="255.174015" y="96.559"/>
|
||||
<use xlink:href="#glyph0-14" x="258.424634" y="96.559"/>
|
||||
<use xlink:href="#glyph0-34" x="261.675253" y="96.559"/>
|
||||
<use xlink:href="#glyph0-25" x="264.927067" y="96.559"/>
|
||||
<use xlink:href="#glyph0-26" x="270.779138" y="96.559"/>
|
||||
<use xlink:href="#glyph0-27" x="276.631208" y="96.559"/>
|
||||
<use xlink:href="#glyph0-28" x="282.483278" y="96.559"/>
|
||||
<use xlink:href="#glyph0-34" x="288.335349" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-25" x="268.165731" y="96.559"/>
|
||||
<use xlink:href="#glyph0-26" x="274.017801" y="96.559"/>
|
||||
<use xlink:href="#glyph0-27" x="279.869872" y="96.559"/>
|
||||
<use xlink:href="#glyph0-28" x="285.721942" y="96.559"/>
|
||||
<use xlink:href="#glyph0-34" x="291.574012" y="96.559"/>
|
||||
<use xlink:href="#glyph0-12" x="295.268169" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="301.769407" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-12" x="298.195998" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="304.697236" y="96.559"/>
|
||||
<use xlink:href="#glyph0-28" x="310.124896" y="96.559"/>
|
||||
<use xlink:href="#glyph0-29" x="315.976967" y="96.559"/>
|
||||
<use xlink:href="#glyph0-34" x="320.528311" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-28" x="312.921218" y="96.559"/>
|
||||
<use xlink:href="#glyph0-29" x="318.773288" y="96.559"/>
|
||||
<use xlink:href="#glyph0-34" x="323.324633" y="96.559"/>
|
||||
<use xlink:href="#glyph0-10" x="327.461132" y="96.559"/>
|
||||
<use xlink:href="#glyph0-30" x="333.313202" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="329.946618" y="96.559"/>
|
||||
<use xlink:href="#glyph0-30" x="335.798688" y="96.559"/>
|
||||
<use xlink:href="#glyph0-32" x="340.523383" y="96.559"/>
|
||||
<use xlink:href="#glyph0-2" x="348.97571" y="96.559"/>
|
||||
<use xlink:href="#glyph0-3" x="355.476948" y="96.559"/>
|
||||
<use xlink:href="#glyph0-18" x="358.727566" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-32" x="342.614348" y="96.559"/>
|
||||
<use xlink:href="#glyph0-2" x="351.066674" y="96.559"/>
|
||||
<use xlink:href="#glyph0-3" x="357.567912" y="96.559"/>
|
||||
<use xlink:href="#glyph0-18" x="360.818531" y="96.559"/>
|
||||
<use xlink:href="#glyph0-2" x="363.606484" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-2" x="365.697448" y="96.559"/>
|
||||
<use xlink:href="#glyph0-35" x="373.742102" y="96.559"/>
|
||||
<use xlink:href="#glyph0-17" x="382.514828" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-35" x="375.438545" y="96.559"/>
|
||||
<use xlink:href="#glyph0-17" x="384.211271" y="96.559"/>
|
||||
<use xlink:href="#glyph0-32" x="388.032153" y="96.559"/>
|
||||
<use xlink:href="#glyph0-24" x="396.484479" y="96.559"/>
|
||||
<use xlink:href="#glyph0-3" x="402.661731" y="96.559"/>
|
||||
<use xlink:href="#glyph0-11" x="405.91235" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-32" x="389.740551" y="96.559"/>
|
||||
<use xlink:href="#glyph0-24" x="398.192877" y="96.559"/>
|
||||
<use xlink:href="#glyph0-3" x="404.370129" y="96.559"/>
|
||||
<use xlink:href="#glyph0-11" x="407.620748" y="96.559"/>
|
||||
<use xlink:href="#glyph0-22" x="414.121986" y="96.559"/>
|
||||
<use xlink:href="#glyph0-22" x="412.425543" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-20" x="423.213915" y="96.559"/>
|
||||
<use xlink:href="#glyph0-25" x="427.76526" y="96.559"/>
|
||||
<use xlink:href="#glyph0-26" x="433.61733" y="96.559"/>
|
||||
<use xlink:href="#glyph0-20" x="421.900039" y="96.559"/>
|
||||
<use xlink:href="#glyph0-25" x="426.451383" y="96.559"/>
|
||||
<use xlink:href="#glyph0-26" x="432.303454" y="96.559"/>
|
||||
<use xlink:href="#glyph0-36" x="438.155524" y="96.559"/>
|
||||
<use xlink:href="#glyph0-36" x="444.007595" y="96.559"/>
|
||||
<use xlink:href="#glyph0-29" x="449.859665" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-36" x="439.457445" y="96.559"/>
|
||||
<use xlink:href="#glyph0-36" x="445.309516" y="96.559"/>
|
||||
<use xlink:href="#glyph0-29" x="451.161586" y="96.559"/>
|
||||
<use xlink:href="#glyph0-3" x="458.04539" y="96.559"/>
|
||||
<use xlink:href="#glyph0-4" x="461.296009" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-3" x="458.95279" y="96.559"/>
|
||||
<use xlink:href="#glyph0-4" x="462.203409" y="96.559"/>
|
||||
<use xlink:href="#glyph0-10" x="469.534338" y="96.559"/>
|
||||
<use xlink:href="#glyph0-11" x="475.386408" y="96.559"/>
|
||||
<use xlink:href="#glyph0-14" x="481.887646" y="96.559"/>
|
||||
<use xlink:href="#glyph0-15" x="485.138265" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="470.059171" y="96.559"/>
|
||||
<use xlink:href="#glyph0-11" x="475.911241" y="96.559"/>
|
||||
<use xlink:href="#glyph0-14" x="482.412479" y="96.559"/>
|
||||
<use xlink:href="#glyph0-15" x="485.663098" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph0-10" x="495.080209" y="96.559"/>
|
||||
<use xlink:href="#glyph0-11" x="500.932279" y="96.559"/>
|
||||
<use xlink:href="#glyph0-6" x="507.433517" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="512.635225" y="96.559"/>
|
||||
<use xlink:href="#glyph0-10" x="494.949897" y="96.559"/>
|
||||
<use xlink:href="#glyph0-11" x="500.801968" y="96.559"/>
|
||||
<use xlink:href="#glyph0-6" x="507.303205" y="96.559"/>
|
||||
<use xlink:href="#glyph0-21" x="512.504913" y="96.559"/>
|
||||
</g>
|
||||
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
|
||||
<use xlink:href="#glyph1-1" x="74.409" y="136.488"/>
|
||||
|
||||
|
Before Width: | Height: | Size: 171 KiB After Width: | Height: | Size: 170 KiB |
@ -1,5 +1,5 @@
|
||||
This is BibTeX, Version 0.99d (TeX Live 2019/Debian)
|
||||
Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
|
||||
This is BibTeX, Version 0.99d (TeX Live 2020)
|
||||
Capacity: max_strings=200000, hash_size=200000, hash_prime=170003
|
||||
The top-level auxiliary file: bibtex-natdin-example.aux
|
||||
The style file: natdin.bst
|
||||
Reallocated singl_function (elt_size=4) to 100 items from 50.
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
\begin{document}
|
||||
\thispagestyle{empty}
|
||||
|
||||
This text thrives on prominently-placed citations (e.\thinspace g. \cite{Frank1957}) of much more prominent literary works \cite[c.\thinspace f.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
|
||||
This text thrives on prominently-placed citations (e.\thinspace g. \cite{Frank1957}) of much more prominent literary works \cite[cf.][p. 7]{Orwell1957}, of which \cite{Hawking1988} is only one.
|
||||
\bibliographystyle{natdin}
|
||||
\bibliography{collection}
|
||||
|
||||
|
||||
@ -1,36 +0,0 @@
|
||||
\begin{thebibliography}{3}
|
||||
|
||||
% this bibliography is generated by nd24.bst [3.0c2] from 2005-12-21
|
||||
|
||||
\providecommand{\natexlab}[1]{#1}
|
||||
\providecommand{\url}[1]{\texttt{#1}}
|
||||
\makeatletter
|
||||
\newcommand{\dinatlabel}[1]%
|
||||
{\ifNAT@numbers\else\NAT@biblabelnum{#1}\fi}
|
||||
\makeatother
|
||||
\expandafter\ifx\csname urlstyle\endcsname\relax
|
||||
\providecommand{\doi}[1]{doi: #1}\else
|
||||
\providecommand{\doi}{doi: \begingroup \urlstyle{rm}\Url}\fi
|
||||
|
||||
\bibitem[Frank(1957)]{Frank1957}
|
||||
\dinatlabel{Frank 1957} \textsc{Frank}, Anne:
|
||||
\newblock \emph{Das Tagebuch der Anne Frank}.
|
||||
\newblock Frankfurt/M. ; Frankfurt/M. : Fischer ; Fischer, 1957
|
||||
(Fischer-B{\"u}cherei). --
|
||||
\newblock EST: Het Achterhuis (dt.)
|
||||
|
||||
\bibitem[Hawking(1988)]{Hawking1988}
|
||||
\dinatlabel{Hawking 1988} \textsc{Hawking}, Stephen~W.:
|
||||
\newblock \emph{Eine kurze Geschichte der Zeit. Die Suche nach der Urkraft des
|
||||
Universums}.
|
||||
\newblock 23.-42. Tsd.
|
||||
\newblock Reinbek bei Hamburg : Rowohlt, 1988. --
|
||||
\newblock ISBN 3498028847. --
|
||||
\newblock 238 S. : Ill., graph. Darst.
|
||||
|
||||
\bibitem[Orwell(1957)]{Orwell1957}
|
||||
\dinatlabel{Orwell 1957} \textsc{Orwell}, George:
|
||||
\newblock \emph{1984}.
|
||||
\newblock Konstanz : Diana-Verl., 1957
|
||||
|
||||
\end{thebibliography}
|
||||
@ -1,51 +0,0 @@
|
||||
This is BibTeX, Version 0.99d (TeX Live 2017/Debian)
|
||||
Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
|
||||
The top-level auxiliary file: bibtex-natdin.aux
|
||||
The style file: natdin.bst
|
||||
Reallocated singl_function (elt_size=4) to 100 items from 50.
|
||||
Reallocated singl_function (elt_size=4) to 100 items from 50.
|
||||
Reallocated wiz_functions (elt_size=4) to 6000 items from 3000.
|
||||
Reallocated singl_function (elt_size=4) to 100 items from 50.
|
||||
Reallocated singl_function (elt_size=4) to 100 items from 50.
|
||||
Database file #1: collection.bib
|
||||
You've used 3 entries,
|
||||
4728 wiz_defined-function locations,
|
||||
907 strings with 6720 characters,
|
||||
and the built_in function-call counts, 1562 in all, are:
|
||||
= -- 149
|
||||
> -- 30
|
||||
< -- 30
|
||||
+ -- 37
|
||||
- -- 10
|
||||
* -- 104
|
||||
:= -- 282
|
||||
add.period$ -- 4
|
||||
call.type$ -- 3
|
||||
change.case$ -- 12
|
||||
chr.to.int$ -- 3
|
||||
cite$ -- 3
|
||||
duplicate$ -- 55
|
||||
empty$ -- 134
|
||||
format.name$ -- 18
|
||||
if$ -- 311
|
||||
int.to.chr$ -- 1
|
||||
int.to.str$ -- 1
|
||||
missing$ -- 12
|
||||
newline$ -- 34
|
||||
num.names$ -- 12
|
||||
pop$ -- 19
|
||||
preamble$ -- 1
|
||||
purify$ -- 18
|
||||
quote$ -- 0
|
||||
skip$ -- 78
|
||||
stack$ -- 0
|
||||
substring$ -- 96
|
||||
swap$ -- 7
|
||||
text.length$ -- 4
|
||||
text.prefix$ -- 0
|
||||
top$ -- 0
|
||||
type$ -- 24
|
||||
warning$ -- 0
|
||||
while$ -- 13
|
||||
width$ -- 0
|
||||
write$ -- 57
|
||||